body {
  font-family: "Poppins";
}

a:hover {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

a {
  color: inherit;
}

.p10 {
  padding: 4rem 0;
}

:root {
  --color1: #282B38;
  --color2: #056639;
  --color3: #E08433;
  --color4: #0B1E33;
  --accent-gray: #CECCCC;
}

.header-bottom {
  position: relative;
  z-index: 99999;
}

.header-bottom.fixed {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  align-items: center;
}

.header-top .adress {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
}

.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
  background-color: white;
}

.header-top .adress li {
  display: flex;
  gap: .5rem;
}

ul.social {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

ul.social i {
  font-size: 20px;
  transition: all .3s;
}

li.dropdown-item:hover .dropdown {
  display: block;
}

ul.dropdown {
  display: none;
  position: absolute;
  background: white;
  border-radius: 4px;
  z-index: 4;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin: auto;
  width: 148px;
  padding-bottom: .5rem;
}

li.dropdown-item {
  position: relative;
}

ul.dropdown li a {
  padding: 2px 1rem;
}

.language-picker {
  display: inline-block;
  position: relative;
  padding-top: 0.4rem;
  border-radius: 10px;
  color: white;
}

.js .language-picker__form {
  display: none;
}

.language-picker__button .icon {
  height: 16px;
  width: 16px;
  margin-left: .25rem;
  margin-left: var(--space-xxxs);
  fill: var(--color1);
}

.language-picker__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 93px;
  background-color: #fff;
  background-color: var(--color-bg);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .2), 0 1px 8px rgba(0, 0, 0, .1);
  box-shadow: var(--shadow-sm);
  padding: .375rem 0;
  padding: var(--space-xxs) 0;
  border-radius: .25em;
  z-index: 4;
  --space-unit: 1rem;
  --space-xxxxs: 0.125rem;
  --space-xxxs: 0.25rem;
  --space-xxs: 0.375rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.25rem;
  --space-xxl: 5.25rem;
  --space-xxxl: 8.5rem;
  --space-xxxxl: 13.75rem;
  --component-padding: 1.25rem;
  --component-padding: var(--space-md);
  font-size: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s .2s, opacity .2s, -webkit-transform .2s ease-out;
  transition: visibility 0s .2s, opacity .2s, transform .2s ease-out;
  transition: visibility 0s .2s, opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out;
}

.language-picker__button[aria-expanded=true]+.language-picker__dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  transition: opacity .2s, -webkit-transform .2s ease-out;
  transition: opacity .2s, transform .2s ease-out;
  transition: opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out;
  background: white;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.121569);
  color: black;
  border-radius: 10px;
}

.language-picker__item {
  text-decoration: none;
  padding: .5em 2em .5em 1.25em;
  padding: var(--space-xs) var(--space-lg) var(--space-xs) var(--space-md);
  color: #313135;
  color: var(--color-contrast-high)
}

.language-picker__item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: black;
}

.language-picker__item:hover {
  background-color: #f2f2f2;
  background-color: var(--color-contrast-lower)
}

.language-picker__item {
  position: relative;
  color: #8A8A8A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0.5rem;
  border-radius: 10px;
}

.language-picker__item[aria-selected=true]::after {
  content: '';
  position: absolute;
  top: 50%;
  display: none;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  right: .75rem;
  right: var(--space-sm);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNic+PHBvbHlsaW5lIHN0cm9rZS13aWR0aD0nMScgc3Ryb2tlPScjZmZmZmZmJyBmaWxsPSdub25lJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHBvaW50cz0nMSw5IDUsMTMgMTUsMyAnLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center
}

.language-picker__flag {
  display: block;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: .3rem;
  color: var(--color1);
  border-radius: 10px;
}

.language-picker__flag::before {
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: none;
  content: '';
  height: 38px;
  width: 38px;
  margin-right: .375rem;
  margin-right: var(--space-xxs);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

.language-picker__dropdown .language-picker__flag::before {
  margin-right: .5rem;
  margin-right: var(--space-xs)
}

.language-picker__flag--ru::before {
  background-image: url(../images/ru.png);
  background-size: contain;
}

.language-picker__flag--aze::before {
  background-image: url(../images/azer.png);
  background-size: contain;
}

.language-picker__flag--english::before {
  background-image: url(../images/en.png);
  background-size: contain;
}

.language-picker--hide-label .language-picker__button .icon {
  margin-left: 0
}

.language-picker--hide-label .language-picker__button em {
  display: none
}

.language-picker--hide-label .language-picker__button .language-picker__flag::before {
  margin-right: .25rem;
  margin-right: var(--space-xxxs)
}

.header-right {
  display: flex;
  align-items: end;
  gap: 1rem;
}

button.language-picker__button.btn.btn--subtle {
  background: none;
}

.language-picker__item:hover {
  background: #EBEBEB;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-top-wrapper {
  background: var(--color1);
  color: white;
}

.header-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  transition: all .3s;
}

.header-bottom-wrapper .logo img {
  max-width: 85%;
}

ul.header-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-weight: 500;
  position: relative;
  font-size: 18px;
  line-height: 27px;
  color: var(--color1);
}

button.red-btn {
  background: var(--color2);
  font-weight: 500;
  color: white;
  cursor: pointer;
  padding: 1rem;
  transition: all .3s;
  border-radius: 20px;
  font-size: 18px;
  border: var(--color1);
  text-align: center;
  min-width: 175px;
}

button.red-btn:hover {
  background: var(--color3);
}

ul.header-menu li {
  color: var(--color1);
  transition: all .3s;
}

ul.header-menu li:hover {
  color: var(--color2);
}

.mobile-menu .detail .header-wrapper {
  color: black;
}

.mobile-menu .detail {
  box-shadow: 0px 4px 30px rgba(204, 204, 204, 0.25);
  padding: 1rem 0;
}

.mobile-menu .detail .header-right .hamburger div {
  background: black;
}

.mobile-menu .header-wrapper {
  position: relative;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: white;
}

.mobile-menu .header-center ul {
  display: flex;
  gap: 2rem;
  font-size: 18px;
}

.mobile-menu .header-left img {
  width: 90px;
}


#toggle {
  display: none;
}

/**
  Hamburger
**/
.mobile-menu .header-right .hamburger {
  position: absolute;
  top: -1.5em;
  right: 0;
  cursor: pointer;
  width: 4em;
  height: 45px;
  z-index: 5;
}

.mobile-menu .header-right .hamburger div {
  position: relative;
  width: 2.4em;
  height: 3px;
  border-radius: 3px;
  background-color: white;
  margin-top: 8px;
  transition: all 0.3s ease-in-out;
}

/**
Nav Styles
**/
.mobile-menu .header-right .nav {
  position: fixed;
  width: 70%;
  height: 100%;
  background-color: #80172d;
  top: -100%;
  left: 0;
  right: 0;
  cursor: pointer;
  bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  transform: scale(0);
}

.mobile-menu .nav-wrapper {
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
  display: flex;
  justify-content: center;
}

.mobile-menu .header-right nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  margin: 1rem;
  overflow: hidden;
}

.mobile-menu .header-right nav a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 22px;
  display: inline-block;
  transition: color 0.2s ease-in-out;
}

.mobile-menu .header-right nav a:before {
  content: '';
  height: 0;
  position: absolute;
  width: 0.25em;
  background-color: white;
  left: -0.5em;
  transition: all 0.2s ease-in-out;
}

.mobile-menu .header-right nav a:hover {
  color: var(--color3);
}

.mobile-menu .header-right nav a:hover:before {
  height: 100%;
}

/**
Animations
**/
#toggle:checked+.hamburger .top-bun {
  transform: rotate(-45deg);
  margin-top: 25px;
}

#toggle:checked+.hamburger .bottom-bun {
  opacity: 0;
  transform: rotate(45deg);
}

#toggle:checked+.hamburger .meat {
  transform: rotate(45deg);
  margin-top: -3px;
}

#toggle:checked+.hamburger+.nav {
  top: 0;
  transform: scale(1);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 25px;
}

.header-right {
  position: relative;
}

header.mobile-menu {
  background: #80172d;
}

.nav-top img {
  width: 140px;
}

.header-right nav .mobil-w {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

header.mobile-menu {
  display: none;
}

@media only screen and (min-width: 320px) and (max-width: 568px) {
  header.destkop {
    display: none;
  }

  header.mobile-menu {
    display: block;
  }
}

ul.header-menu li a:before {
  content: '';
  height: 2px;
  background-color: var(--color2);
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

ul.header-menu li a:hover:before {
  width: 100%;

}

ul.header-menu li a {
  width: 100%;
  position: relative;
  display: flex;
}

.search-box {
  position: relative;
  width: 60px;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.search-box.active {
  width: 350px;
}

.search-box input {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 50px;
  background: #fff;
  outline: none;
  padding: 0 60px 0 20px;
  font-size: 18px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.search-box input.active {
  opacity: 1;
}

.search-box input::placeholder {
  color: #a6a6a6;
}

.search-box .search-icon {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 22px;
  color: var(--color4);
  cursor: pointer;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.search-box .search-icon.active {
  right: 5px;
  height: 50px;
  line-height: 50px;
  width: 50px;
  font-size: 20px;
  color: #fff;
  transform: translateY(-50%) rotate(360deg);
}

.search-box .cancel-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  color: var(--color2);
  cursor: pointer;
  transition: all 0.5s 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.search-box .cancel-icon.active {
  right: -5%;
  transform: translateY(-50%) rotate(360deg);
}

.search-box .search-data {
  text-align: center;
  padding-top: 7px;
  color: #fff;
  font-size: 18px;
  word-wrap: break-word;
}

.search-box .search-data.active {
  display: none;
}

.languagemenu {
  display: flex;
  margin: 0 auto;
  gap: 1rem;
}

.languagemenu a {
  float: none;
  /* display: table; */
  /* padding: 1em; */
  text-decoration: none;
}

.languagemenu img {
  display: inline;
  vertical-align: middle;
  border-radius: 50%;
}


.mouse-scroll__wrap {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  transform: translateX(-50%);
  z-index: 299;
  width: 30px;
  height: 50px
}

.mouse-scroll__wrap:before,
.mouse-scroll__wrap:after {
  content: "";
  position: absolute;
  width: 2px;
  transform: translateX(-50%);
  left: 50%;
  top: 100%
}

.mouse-scroll__wrap:before {
  margin-top: 2rem;
  height: 2rem;
  background-color: #fff
}


.mouse-scroll {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 25px;
  cursor: pointer
}

.mouse-scroll:before {
  position: absolute;
  left: 50%;
  content: "";
  width: 4px;
  height: 8px;
  background-color: #fff;
  margin-left: -2px;
  top: 8px;
  border-radius: 4px;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: scroll
}

@keyframes scroll {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(26px)
  }

  100% {
    transform: translateY(0)
  }
}

header.destkop {
  position: relative;
  background: white;
  z-index: 999;
}

section.slider {
  position: relative;
  width: 85vw;
  background: #056639;
  border-bottom-right-radius: 20px;
}

.fixed-social {
  display: flex;
  width: 15vw;
  float: right;
  justify-content: center;
  align-items: center;
  height: 65vh;
}

svg.icon {
  width: 32px;
  height: 32px;
  fill: #056639;
  margin-bottom: .5rem;
  padding-bottom: .5rem;
  transition: all ease 2s;
}

svg.icon:hover {
  fill: var(--color2);
  scale: 1.2;
}

.title {
  color: black;
  font-size: 40px;
  font-weight: 600;
}

.swipper-btn {
  /* display: flex; */
  /* flex-direction: row-reverse; */
  /* justify-content: start; */
  /* padding: 2rem 0; */
  /* gap: 1rem; */
  /* position: relative; */
  /* z-index: 9999; */
}

.desc {
  font-style: normal;
  font-weight: 350;
  font-size: 22px;
  line-height: 26px;
  /* or 118% */
  letter-spacing: -0.03em;
}

.link-border {
  display: inline-block;
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  color: black;
  padding: .75rem 1rem
}

.btn.link-border {
  border-width: 0;
  background-color: transparent;
  border-radius: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  outline: 0
}

.link-border span {
  display: inline-flex;
  font-size: 18px;
  align-items: center;
  gap: 4px;
  position: relative;
  transition: all .3s .1s ease;
  transform: translateX(-1rem)
}

.link-border:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 100%;
  width: 100%;
  height: 8px;
  transition: height .3s ease;
  background-color: var(--color2);
}

.link-border__left {
  text-align: right
}

.link-border__left::after,
.link-border__left::before {
  left: auto;
  right: 0
}

.link-border__left span {
  transform: translateX(1rem)
}

.link-border:hover {
  text-decoration: none
}

.link-border:hover span {
  transform: translateX(0);
  color: #fff
}

.link-border:hover:before {
  height: 100%;
  transition: height .3s ease
}

.d-none.d-lg-flex.block-media__direction {
  position: relative;
  gap: .5rem;
  cursor: pointer;
  z-index: 99;
  padding: 2rem 0;
  display: flex!important;
}

:root {
  --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 16px;
  margin-top: -1.5rem;
  z-index: 10;
  cursor: pointer;
  color: var(--color1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid var(--color1);
  border-radius: 50%
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #fff;
  background-color: var(--color1);
  border: 1px solid var(--color1);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  right: auto
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  left: auto
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #fff
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000
}

.swiper-button-lock {
  display: none
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0
}


#open-btn {
  position: fixed;
  top: 50%;
  cursor: pointer;
  right: 1%;
  width: 60px;
  height: 60px;
  background: #0AA5B5;
  color: white;
  transition: .5s;
  font-size: 26px;
  border-radius: 50%;
  z-index: 999;
  margin: auto;
  padding: 1rem;
}

#open-btn:hover {
  background-color: var(--color4);
  color: whÃ…Å¸te;
}

#modal {
  background-color: white;
  width: 90%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px;
  border-radius: 10px;
  animation-name: animateModal;
  animation-duration: .4s;
  z-index: 9;
}

#close-btn {
  font-size: 34px;
  position: absolute;
  top: 1%;
  right: 1%;
  color: var(--color3);
  margin: auto;
}

#close-btn:hover {
  cursor: pointer;
  color: var(--color2);
}

#modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background-color: rgb(0 0 0 / 62%);
}

#particles-js2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 99;
  background-position: 50% 50%;
}

img.flags {
  width: 306px;
  object-fit: contain;
  bottom: -2rem !important;
  height: 100% !important;
  overflow-y: hidden;
  justify-content: end;
}

.slider .left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.slider .left .slider-desc {
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 50px;
  /* or 100% */
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.slider .left .slider-subdesc {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  /* identical to box height, or 180% */
  display: flex;
  align-items: center;
  border-left: 1px solid white;
  padding-left: 1rem;
  color: white;
}

.mainSwiper {
  height: 61vh;
}

.slider .right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  height: 50vh;
}

.slider .right img {
  max-width: 290px;
  object-fit: scale-down;
  text-align: center;
  margin: auto;
}

.slider .bottom {
  display: flex;
  gap: 1rem;
  color: white;
  align-items: center;
}

.slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.slider-bg img {
  width: 100%;
  height: 100%;
}

.typewriter {
  width: 29.5ch;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid white;
  animation: cursor 1s step-start infinite,
    text 5s steps(18) alternate infinite;
}

@keyframes cursor {

  0%,
  100% {
    border-color: white;
  }
}

@keyframes text {
  0% {
    width: 0;
  }

  100% {
    width: 29.5ch;
  }
}

.slider .bottom .border {
  border-radius: 25px;
  border: solid 1px white;
  padding: 1rem 2rem;
}

.slider .swiper-button-next,
.slider .swiper-button-prev {
  color: white;
  border: 1px solid white;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  border: 1px solid var(--color1);
}

.up-down {
  animation: up-down linear 4s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: up-down linear 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: up-down linear 4s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: up-down linear 4s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: up-down linear 4s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes up-down {
  0% {
    transform: translate(1px, 20px);
  }

  24% {
    transform: translate(1px, 30px);
  }

  50% {
    transform: translate(1px, 12px);
  }

  74% {
    transform: translate(1px, 22px);
  }

  100% {
    transform: translate(1px, 22px);
  }
}

@-moz-keyframes up-down {
  0% {
    -moz-transform: translate(1px, 20px);
  }

  24% {
    -moz-transform: translate(1px, 30px);
  }

  50% {
    -moz-transform: translate(1px, 12px);
  }

  74% {
    -moz-transform: translate(1px, 22px);
  }

  100% {
    -moz-transform: translate(1px, 22px);
  }
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translate(1px, 20px);
  }

  24% {
    -webkit-transform: translate(1px, 30px);
  }

  50% {
    -webkit-transform: translate(1px, 12px);
  }

  74% {
    -webkit-transform: translate(1px, 22px);
  }

  100% {
    -webkit-transform: translate(1px, 22px);
  }
}

@-o-keyframes up-down {
  0% {
    -o-transform: translate(1px, 20px);
  }

  24% {
    -o-transform: translate(1px, 30px);
  }

  50% {
    -o-transform: translate(1px, 12px);
  }

  74% {
    -o-transform: translate(1px, 22px);
  }

  100% {
    -o-transform: translate(1px, 22px);
  }
}

@-ms-keyframes up-down {
  0% {
    -ms-transform: translate(1px, 20px);
  }

  24% {
    -ms-transform: translate(1px, 30px);
  }

  50% {
    -ms-transform: translate(1px, 12px);
  }

  74% {
    -ms-transform: translate(1px, 22px);
  }

  100% {
    -ms-transform: translate(1px, 22px);
  }
}

.right img {
  max-width: 100%;
  max-height: 100%;
}

.left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.subtitle {
  display: flex;
  align-items: center;
  color: var(--color2);
  gap: .5rem;
  font-size: 20px;
  font-weight: 600;
}

.why-box {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border-radius: 20px;
  background: #F9F8FB;
  transition: all .3s ease;
  border: 2px solid #f9f8fb;
  height: 100%;
}

.mb {
  margin: 1rem 0;
}

.why-box .icon {
  color: var(--color2);
  font-size: 40px;
}

.why-box .title {
  font-size: 22px;
  font-weight: 600;
}

.why-box:hover {
  border: 2px solid var(--color2);
}

.why-box .desc {
  font-size: 18px;
  line-height: 22px;
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 0px 4px 13px rgba(208, 208, 208, 0.25);
  border-radius: 30px;
  padding: 2rem;
  margin: .5rem;
  transition: all .3s ease;
}

.product-box img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  text-align: center;
  align-items: center;
  display: flex;
}

.product-box .title {
  font-size: 24px;
}

.product-box:hover {
  margin-top: 2rem;
  margin-bottom: -2rem;
}

.sayac-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  transition: all .5s ease;
  border-radius: 30px;
  padding: 1rem;
  border: 1px solid transparent;
}

.sayac-box:hover {
  border: 1px solid var(--color2);
}

.sayac-box img {
  max-width: 100%;
  max-height: 100%;
}

.blog-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-box .picture img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 30px;
}

.faqwell {
  margin-top: 20px;
  margin-bottom: 50px;
}


.faqwell .item .fs-head {
  color: var(--color1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  /* or 125% */
  letter-spacing: -0.03em;
}

.faqwell .item .fs-head .plusminus .minus {
  display: none;
}

.faqwell .item .fs-content {
  padding-top: 12px;
  margin-top: 15px;
  display: none;
  font-weight: 350;
  line-height: 22px;
  font-size: 16px;
}

.faqwell .item {
  box-shadow: 0px 4px 20px rgba(202, 202, 202, 0.2);
  border-radius: 5px;
  padding: 2rem;
  margin: 1rem 0;
}

.faqwell .item .fs-head i {
  font-size: 30px;
  color: var(--color2);
}

.gallery img {
  max-width: 100%;
  transition: all .3s ease;
}

.gallery img:hover {
  scale: .9;
}

.parallax .left {
  position: relative;
  background: #056639;
  padding: 5rem;
  color: white;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  z-index: 1;
  padding-left: 13rem;
}

.parallax .left .title {
  font-size: 30px;
  line-height: 34px;
  color: white;
}

button.white-btn {
  background: white;
  font-weight: 500;
  color: var(--color2);
  cursor: pointer;
  padding: 1rem;
  transition: all .3s;
  border-radius: 20px;
  font-size: 18px;
  border: 1px solid var(--color2);
  text-align: center;
  min-width: 175px;
}

button.white-btn:hover {
  background: #056639;
  border: 1px solid white;
  color: white;
}

.p-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
}

.p-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.parallax .right {
  position: relative;
  display: flex;
  justify-content: center;
}

.parallax .right img {
  position: absolute;
  bottom: 0;
  width: 105px;
}

.destkop-footer {
  background: var(--color1);
  color: white;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-item img {
  max-width: 121px;
}

.footer-item .title {
  font-size: 24px;
  color: white;
}

ul.footer-menu {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: 18px;
}

ul.footer-menu li a:hover {
  color: var(--color2);
}

ul.footer-menu li a {
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-item .desc {
  font-size: 18px;
}

.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  align-items: center;
}

.footer-bottom-wrap img {
  max-width: 210px;
}

.sec-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  /* or 125% */
  text-align: center;
  letter-spacing: -0.03em;

  /* 2 */
  color: #2E2E2E;
}

.sec-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  /* or 140% */
  text-align: center;
  letter-spacing: -0.03em;

  /* 2 */
  color: #2E2E2E;
}

.content figure img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.content p {
  max-width: 80%;
  margin: auto;
  padding: 1rem;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  /* or 120% */
  letter-spacing: -0.03em;
  color: #4A4B63;
}

.bg-2 {
  background-color: #f4f4f5;
}

.content .picture {
  display: flex;
  gap: 1rem;
}

.content .picture img {
  width: 100%;
  height: 100%;
}

form .item1 input {
  border: 1px solid #D0DBE2;
  margin-bottom: 1rem;
  padding: 1rem;
  outline: none;
  border-radius: 10px;
  width: 100%;
  background: white;
}

form.title {
  font-size: 30px;
  line-height: 47px;
  color: white;
  font-weight: 600;
}

form .desc {
  font-size: 14px;
  margin-bottom: 0.5rem;
  color: white;
}

form.item1 {
  padding: 5px;
}

form .check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0px 1rem;
  font-size: 14px;
}

form.check a {
  color: var(--color2);
  font-weight: 600;
}

form {
  position: relative;
}

form .subdesc {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  text-align: center;
}

form .subdesc a {
  color: var(--color2);
  text-decoration: underline;
  font-weight: 600;
}

form select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
  padding: 1rem;
  outline: none;
  -webkit-appearance: none;
}

textarea {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 1rem;
  border: 1px solid #D0DBE2;
  outline: none;
  border-radius: 10px;
  background: transparent;
}

form {
  padding: 2rem 0;
}

.contact-us .buttons {
  text-align: center;
}

.contact-us iframe {
  border-radius: 15px;
}

.bottom-item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  justify-content: center;
}

.bottom-item .icon {
  color: var(--color2);
  font-size: 55px;
}

.bottom-item .title {
  font-size: 24px;
  font-weight: 400;
}

.bottom-item .desc {
  text-align: center;
}

.br {
  border-right: 1px solid #8291A0;
}

.career-parallax .right {
  margin-top: -6rem;
}

.career-parallax {
  margin-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.mouse {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.bg-3 {
  background-color: #056639;
}

.white .title {
  color: white !important;
}

.white .desc {
  color: white;
}

.career-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
}

.career-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}

.welcome-wrapper .welcomeSwiper {
  background: #FFFFFF;
  /* 1 */
  box-shadow: 0px 4px 40px rgba(208, 208, 208, 0.25);
  border-radius: 30px;
  max-width: 70vw;
  align-items: start;
  display: flex;
}

.welcome-wrapper .welcomeSwiper .left,
.welcome-wrapper .welcomeSwiper .right {
  padding: 4rem;
}

.welcome-wrapper {
  display: flex;
  align-items: end;
  gap: 3rem;
}

.number {
  color: #E5E5E5;
  font-size: 68px;
  font-weight: 600;
}

.welcomeSwiper .right {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #E5E5E5;
}

.welcome-wrapper .swiper {
  margin-left: 0;
  margin-right: 0;
}

.welcome-wrapper .welcomeSwiper .left {
  padding-left: 12rem;
}

.welcome {
  position: relative;
  z-index: 2;
}

.welcome-bg {
  position: absolute;
  width: 100%;
  height: 130%;
  top: -36%;
  left: 0;
  right: 0;
  z-index: -1;
}

.welcome-bg img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.mr .swiper-button-next,
.mr .swiper-button-prev {
  color: white;
  border: 1px solid white;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  border: 1px solid var(--color1);
}

.mr {
  margin-top: 5rem;
}

.welcome .desc {
  text-align: center;
}

.product-box2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 0px 4px 13px rgba(208, 208, 208, 0.25);
  border-radius: 30px;
  padding: 2rem;
  margin: 0.5rem;
}

.product-box2 img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  text-align: center;
  align-items: center;
  display: flex;
}

.product-detail .slider-info {
  text-align: center;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: center;
  display: flex;
}

.swiper-slide.swiper-slide-thumb-active .product-box2 {
  border: .3px solid var(--color2);
  border-radius: 30px;
}

button.trns-btn {
  background: transparent;
  font-weight: 500;
  color: var(--color1);
  cursor: pointer;
  padding: 1rem;
  transition: all .3s;
  border-radius: 20px;
  font-size: 18px;
  border: 1px solid var(--color1);
  text-align: center;
  min-width: 175px;
}

button.trns-btn:hover {
  background: var(--color1);
  color: white;
}

.product-detail .left {
  justify-content: start;
  padding: 0 2rem;
}

.end-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.end-wrap .icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mySwiper2 .product-box2 {
  min-height: 324px;
  justify-content: center;
}

.down {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.down a {
  border: 1px solid #D0DBE2;
  margin-bottom: 0.5rem;
  padding: 1rem;
  outline: none;
  color: #75757594;
  border-radius: 10px;
  font-weight: 350;
  width: 70%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.down a i {
  color: var(--color2);
  font-size: 26px;
}

.file-chooser {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  font-size: 1rem;
  width: 100% !important;
  padding: 0;
}

.file-chooser * {
  box-sizing: inherit;
}

.file-chooser .file-chooser-input {
  border-right: none;
  font-size: inherit;
  cursor: default;
  white-space: pre;
  text-overflow: ellipsis;
  border: 1px solid #D0DBE2;
  margin-bottom: 0.5rem;
  outline: none;
  border-radius: 10px;
  width: 100%;
  background: white;
  padding: 1rem;
}

.file-chooser:after {
  content: url(/assets/images/file-arrow-down-fill.svg);
  position: absolute;
  top: 4px;
  right: 0;
  padding: 8px 10px;
  border: none;
  border-radius: 0 2px 2px 0;
  color: #767676;
  font-size: inherit;
  cursor: pointer;
  transition: background 0.25s;
}

.file-chooser .file-chooser-clear {
  position: absolute;
  right: 80px;
  background: none;
  border: none;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  transition: color 0.25s, opacity 0.25s;
}

.file-chooser .file-chooser-clear:after {
  content: '\00D7';
  font-size: 1.2rem;
  color: black;
}

.file-chooser .file-chooser-clear:hover {
  color: red;
}

.file-chooser:hover .file-chooser-clear {
  opacity: 1;
}

.file-chooser .file-chooser-hidden {
  display: none;
}

.slider-box {
  display: flex;
  width: 80%;
  position: absolute;
  z-index: 3;
  bottom: 1%;
  right: -13%;
}

.slider-box .product-box {
  flex-direction: row;
  padding: 2rem 1rem;
  align-items: center;
}

.slider-box .product-box img {width: 100%;}

.box-wrap {
  border-left: 1px solid #E5E5E5;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
button.dark-btn {
  background: var(--color1);
  font-weight: 500;
  color: white;
  cursor: pointer;
  padding: 1rem;
  transition: all .3s;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid var(--color1);
  text-align: center;
  min-width: 147px;
}

button.dark-btn:hover {
  background: var(--color2);
  border: 1px solid var(--color2);
}
.slider-box .product-box .title {
  font-size: 20px;
}

.slider-box .product-box .desc {
  font-size: 20px;
  line-height: 22px;
}
.hand-t {
  position: absolute;
  top: -90%;
  z-index: 9;
  left: 35%;
  width: 100%;
  height: 100%;
}

.hand-t img {
  width: 120px!important;
}
.video-details {
  aspect-ratio: 1.7777777778;
  max-width: 100%;
  max-height: 100%;

}

.video-details>.video-summary {
  list-style-type: none;
}

.video-details[open] .video-summary {
  display: none;
  width: 100%;
  height: 100%;
}

.video-summary::-webkit-details-marker,
.video-summary::marker {
  display: none;
  overflow: hidden;
  width: 0;
  color: transparent;
}

.youtube-video {
  aspect-ratio: 1.7777777778;
  width: 67vw;
  height: 100%;

}

.video-thumbnail {
  width: 100%;
  height: auto;
  border-collapse: collapse;
  object-fit: cover;
  max-height: 585px;

}

.video-section {
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: start;
}

.video-section .wrapper {
  display: flex;
  height: 100%;
  width: 70%;
  background: #056639;
  border-top-right-radius: 210px;
  justify-content: end;
}
/**Typeo CSS End**/
.video-custom {
position: relative;
z-index: 9;
}

.video-custom .poster-img {display: block;max-height: 100%;}

.video-custom video {position: absolute;left: 0px;top: 0px;right: 0;height: 100%;display: block;overflow: hidden;width: 100%;opacity: 0;border-top-right-radius: 136px;object-fit: cover;}

.video-custom .play-btn, .video-custom .pause-btn {
position: absolute;
left: 0px;
right: 0px;
bottom: 0px;
top: 0px;
margin: auto;
width: 60px;
height: 60px;
border-radius: 100%;
background-color: rgba(255, 255, 255, 0.5);
z-index: 3;
cursor: pointer;
transition: 0.5s all;
overflow: hidden;
}

.video-custom .pause-btn {
display: none;
}

.video-custom .play-btn i {
width: 0;
height: 0;
border-style: solid;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-left: 18px solid #056639;
border-right: 0;
position: absolute;
left: 0px;
right: 0px;
bottom: 0px;
top: 0px;
margin: auto;
}

.pause-btn i {
position: absolute;
left: -3px;
right: 0px;
bottom: 0px;
top: 2px;
margin: auto;
width: 16px;
height: 24px;
flex-flow: row wrap;
}

.pause-btn i:before {
content: '';
width: 4px;
height: 100%;
background-color: #000;
display: inline-block;
}

.pause-btn i:after {
content: '';
width: 4px;
height: 100%;
margin-left: 8px;
background-color: #000;
display: inline-block;
}

.playvideo .video-custom img {
opacity: 0;
}

.playvideo .video-custom video {
opacity: 1;
}

.video-custom .vplay {
display: none;
}

.video-custom:hover .vplay + .pause-btn {
display: block;
}

/***Volume Control***/
html:not(.playvideo) .sound-ctrl {
display: none;
}

.sound-ctrl {
position: absolute;
z-index: 2;
right: 14px;
bottom: 5px;
cursor: pointer;
}

.sound-ctrl .on-button {
display: none;
}

.sound-ctrl img {
opacity: 0;
}

.sound-ctrl .off-button, .sound-ctrl .on-button {
position: absolute;
left: 0px;
top: 0px;
font-size: 0px;
background-color: transparent;
border: none;
width: 100%;
height: 100%;
padding: 0px;
cursor: pointer;
}

.soundctrlshow .on-button {
display: block;
}

.soundctrlshow .off-button {
display: none;
}

.playvideo .video-custom .sound-ctrl img {
opacity: 1;
}

.soundctrlshow .on-button:before {
content: '';
position: absolute;
left: 12px;
top: -5px;
z-index: 10;
width: 3px;
height: 32px;
background-color: #fff;
transform: rotate(45deg);
}
.show-desc {
  display: none;
  font-style: normal;
  font-weight: 350;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.03em;
  padding: 1rem 0;
}
.fixed-wp .icon {
  width: 64px;
  height: 64px;
  background: #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 1rem;
}

.fixed-wp .icon i {
  font-size: 35px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-wp {
  position: fixed;
  top: 39%;
  cursor: pointer;
  color: white;
  right: 0%;
  transition: .5s;
  font-size: 26px;
  border-radius: 50%;
  z-index: 999;
  margin: auto;
  padding: 1rem;
}

@media only screen and (min-width: 320px) and (max-width: 568px) {
  .slider-box {
    display: none;
}

section.slider {
    width: 100%;
}

.slider .left .slider-desc {
    font-size: 28px;
    line-height: 28px;
}

.slider .bottom {
    flex-direction: column;
    align-items: start;
    gap: .5rem;
    justify-content: center;
    align-items: center;
}
.slider .right img {
    max-width: 180px;
}

.slider .right {
    height: 100%;
}

.fixed-social {
    height: 100%;
}
.video-section .wrapper {
  width: 100%;
}
.video-custom .poster-img {
  border-top-left-radius: 30px;
  width: 100%;
}

.video-custom video {
  border-top-left-radius: 30px;
}
.title {
    font-size: 26px;
    line-height: 28px;
}

.subtitle {
    font-size: 18px;
}

.desc {
    font-size: 18px;
    line-height: 26px;
}
.p10 {
    padding: 2rem 0;
}

.faqwell .item .fs-head i {
    font-size: 18px;
}

.footer-bottom-wrap {
    flex-direction: column;
    gap: 1rem;
}
.parallax .left {
  padding-left: 0;
  padding: 2rem;
}

.parallax .left .title {
  font-size: 22px;
  line-height: 24px;
}
.welcome-wrapper .welcomeSwiper {
  max-width: 100%;
}

.welcome-wrapper {
  flex-direction: column;
  gap: 1rem;
}

.welcome-wrapper .welcomeSwiper .left {
  padding-left: 0;
  width: 100%;
}

.welcome-wrapper .welcomeSwiper .left, .welcome-wrapper .welcomeSwiper .right {
  padding: 2rem;
  max-width: 100%;
  border-left: none;
  justify-content: start;
  align-items: start;
  text-align: start;
}

.welcome-bg {
  display: none;
}

.mr {
  margin-top: 1rem;
}

.mr .swiper-button-next, .mr .swiper-button-prev {
  color: var(--color1);
  border: 1px solid var(--color1);
}
.row {--bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.sayac-box {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.content .picture {
  flex-direction: column;
}

.content p {
  max-width: 100%;
  font-size: 18px;
  line-height: 22px;
}

.sec-title {
  font-size: 28px;
  line-height: 32px;
}
.career-parallax {
  margin-top: 4rem;
  margin-bottom: 1rem;
}
.welcome .desc {
  text-align: start;
}
.bottom-item .icon {
  font-size: 32px;
}
.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.end-wrap {
  align-items: start;
  gap: 2rem;
}

.end-wrap .icon {
  flex-direction: column;
  width: 50%;
  text-align: center;
}
.product-detail .left {
  padding: 0;
}
form .desc {
  display: none;
}
.parallax .right img {
  width: 85px;
}

.hand-t {
  left: 0;
}
#modal textarea {
  height: 94px!important;
}
  }

@media only screen and (min-width: 568px) and (max-width: 768px) {
  .slider-box {
    display: none;
}

section.slider {
    width: 100%;
}

.slider .left .slider-desc {
    font-size: 28px;
    line-height: 28px;
}

.slider .bottom {
    flex-direction: column;
    align-items: start;
    gap: .5rem;
    justify-content: center;
    align-items: center;
}
.slider .right img {
    max-width: 180px;
}

.slider .right {
    height: 100%;
}

.fixed-social {
    height: 100%;
}
.parallax .right img {
  width: 85px;
}

.hand-t {
  left: 0;
}
.title {
    font-size: 26px;
    line-height: 28px;
}

.subtitle {
    font-size: 18px;
}

.desc {
    font-size: 18px;
    line-height: 26px;
}
.p10 {
    padding: 2rem 0;
}

.faqwell .item .fs-head i {
    font-size: 18px;
}

.footer-bottom-wrap {
    flex-direction: column;
    gap: 1rem;
}
.parallax .left {
  padding-left: 0;
  padding: 2rem;
}

.parallax .left .title {
  font-size: 22px;
  line-height: 24px;
}
.welcome-wrapper .welcomeSwiper {
  max-width: 100%;
}

.welcome-wrapper {
  flex-direction: column;
  gap: 1rem;
}

.welcome-wrapper .welcomeSwiper .left {
  padding-left: 0;
  width: 100%;
}

.welcome-wrapper .welcomeSwiper .left, .welcome-wrapper .welcomeSwiper .right {
  padding: 2rem;
  max-width: 100%;
  border-left: none;
  justify-content: start;
  align-items: start;
  text-align: start;
}

.welcome-bg {
  display: none;
}
header.destkop {
  display: none;
}
header.mobile-menu {
  display: block;
}
.mr {
  margin-top: 1rem;
}

.mr .swiper-button-next, .mr .swiper-button-prev {
  color: var(--color1);
  border: 1px solid var(--color1);
}
.row {--bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.sayac-box {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.content .picture {
  flex-direction: column;
}

.content p {
  max-width: 100%;
  font-size: 18px;
  line-height: 22px;
}

.sec-title {
  font-size: 28px;
  line-height: 32px;
}
.career-parallax {
  margin-top: 4rem;
  margin-bottom: 1rem;
}
.welcome .desc {
  text-align: start;
}
.bottom-item .icon {
  font-size: 32px;
}
.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.end-wrap {
  align-items: start;
  gap: 2rem;
}
.video-section .wrapper {
  width: 100%;
}
.video-custom .poster-img {
  border-top-left-radius: 30px;
  width: 100%;
}

.video-custom video {
  border-top-left-radius: 30px;
}
.end-wrap .icon {
  flex-direction: column;
  width: 50%;
  text-align: center;
}
.product-detail .left {
  padding: 0;
}
form .desc {
  display: none;
}

#modal textarea {
  height: 94px!important;
}
  }
