body {
  font-family: "Galano Grotesque";
}

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

a {
  color: inherit;
}

.p10 {
  padding: 3rem 0;
}

.banner-bg {
  position: absolute;
  top: 0;
  z-index: -1;
}

.banner {
  position: relative;
  margin-top: -80px;
  height: 100vh;
}

.banner-bg img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

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

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

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

.header-wrapper {
  position: relative;
  height: 80px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  color: white;
}

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

.header-left img {
  max-width: 250px;
}

li.whatsap {
  color: #92CB7A;
}

li.telegram {
  color: #70B0EE;
}

#toggle {
  display: none;
}

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

.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
**/
.header-right .nav {
  position: fixed;
  width: 25%;
  height: 100%;
  background-color: black;
  top: -100%;
  left: 0;
  right: 0;
  cursor: pointer;
  bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  transform: scale(0);
}

.nav-wrapper {
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
}

.header-right nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 3rem;
  align-items: center;
}

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

.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;
}

.header-right nav a:hover {
  color: white;
}

.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);
}

.header-right {
  position: relative;
}

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

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

.banner .right {
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.banner-wrapper .title {
  font-size: 46px;
  font-weight: 600;
}

.banner-wrapper .desc {
  font-size: 20px;
  line-height: 24px;
  font-weight: 350;
}

.butons ul {
  font-size: 18px;
  max-width: 450px;
}

.butons ul li {
  background: white;
  color: black;
  padding: 7px 14px;
  margin: 4px;
  display: inline-flex;
  font-weight: 600;
  border: solid 1px black;
}

.butons ul li:hover {
  color: white;
  background: #92CB7A;
  border: solid 1px #92CB7A;
}

.mouse {
  position: absolute;
  width: 27px;
  height: 38px;
  bottom: 40px;
  left: 50%;
  margin-left: -12px;
  border-radius: 15px;
  border: 2px solid white;
  animation: intro 1s;
}

.scroll {
  display: block;
  width: 4px;
  height: 4px;
  margin: 6px auto;
  border-radius: 4px;
  background: white;
  animation: finger 1s infinite;
}

@-moz-keyframes intro {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes intro {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-o-keyframes intro {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-moz-keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

@-webkit-keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

@-o-keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.section-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.section-title-wrapper .title {
  font-size: 36px;
  font-weight: 600;
  max-width: 546px;
  text-align: center;
}

.section-title-wrapper .desc {
  font-size: 22px;
  font-weight: 350;
  text-align: center;
}

.section-title {
  margin: 1rem 0 2rem;
}

.section-title-wrapper .title span {
  font-weight: 400;
}

.mb {
  margin-bottom: 1rem;
}

.consultancy-box {
  display: flex;
  align-items: center;
  box-shadow: 0px 4px 20px rgba(202, 202, 202, 0.2);
  border-radius: 5px;
  gap: 1rem;
  padding: 1rem;
  justify-content: center;
  transition: all 0.3s;
}

.consultancy-box .icon img {
  width: 62px;
  height: 90px;
  object-fit: contain;
}

.consultancy-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.consultancy-box-wrapper .title {
  font-size: 20px;
  font-weight: 500;
}

.consultancy-box-wrapper .desc {
  font-weight: 350;
  font-size: 18px;
  width: 350px;
}

.consultancy-box:hover {
  scale: 1.06;
}

section.parallax1 img {
  width: 100vw;
}

section.parallax1 {
  position: relative;
}

.slogan {
  position: absolute;
  top: 40%;
  left: 30%;
  font-weight: 350;
  gap: 1rem;
  color: white;
  font-size: 24px;
  display: flex;
  max-width: 611px;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.about-us .picture img {
  width: 85%;
}

.about-us .left .left-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
}

.about-us .left .left-wrapper .title {
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  /* or 119% */
  letter-spacing: -0.03em;
  color: #000000;
}

.about-us .left .left-wrapper .desc {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  /* or 125% */
  letter-spacing: -0.03em;
  color: #000000;
}

.about-us .left .left-wrapper .btn-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.about-us .picture {
  margin: auto;
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

button.dark-btn {
  font-size: 18px;
  padding: 10px 15px;
  font-weight: 500;
  background: #000000;
  border-radius: 5px;
  color: white;
  min-width: 160px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid black;
}

button.dark-btn:hover {
  background: white;
  color: black;
}

button.light-btn {
  font-size: 18px;
  padding: 10px 15px;
  font-weight: 500;
  background: white;
  border-radius: 5px;
  color: black;
  cursor: pointer;
  min-width: 160px;
  transition: all 0.3s;
  border: 2px solid black;
}

button.light-btn:hover {
  color: white;
  background: black;
}

.about-button i {
  font-size: 30px;
  background: white;
  color: #92CB7A;
  padding: 0.5rem;
  display: flex;
  border-radius: 50%;
  border: 2px solid #92CB7A;
  cursor: pointer;
  transition: all 0.3s;
  align-items: center;
}

.about-button i:hover {
  color: white;
  background: #92CB7A;
}

.infoSwiper {
  position: relative;
}

.about-us .left .left-wrapper .subtitle {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.03em;
  color: #92CB7A;
}

.about-button {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  z-index: 9;
  position: absolute;
  bottom: 0;
  right: 0;
  gap: 1rem;
}

section.parallax2 {
  position: relative;
  min-height: 30vh;
}

.parallax2 .bg {
  position: absolute;
  z-index: -1;
}

.parallax2 .bg img {
  width: 100vw;
  min-height: 30vh;
}

.parallax2 .left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  min-height: 30vh;
  justify-content: center;
  color: white;
  justify-content: center;
}

.parallax2 .left .title {
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.parallax2 .left .desc {
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #F4FAFE;
}

button.wp-btn {
  font-size: 18px;
  padding: 10px 15px;
  font-weight: 500;
  align-items: center;
  display: flex;
  gap: 0.5rem;
  background: #92CB7A;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  max-width: 210px;
  transition: all 0.3s;
  justify-content: center;
}

section.faq {
  padding: 5rem 0px;
  background: rgb(245, 244, 249);
  position: relative;
}

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

.faqwell .item {
  background: rgb(255, 255, 255);
  padding: 20px 14px;
  margin-bottom: 14px;
  box-shadow: 0px 4px 20px rgba(202, 202, 202, 0.2);
  border-radius: 5px;
  cursor: pointer;
  margin: 1rem;
}

.faqwell .item .fs-head {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: rgb(60, 61, 63);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faqwell .item .fs-head .plusminus .minus {
  display: none;
  color: #94C783;
}

.faqwell .item .fs-content {
  padding-top: 12px;
  margin-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.063);
  display: none;
  font-weight: 350;
  font-size: 20px;
  line-height: 24px;
}

.faq-wrapper {
  position: relative;
  z-index: 3;
}

.grid img {
  width: 100%;
  cursor: pointer;
}

#lightbox {
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
}

.gallery-button {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 100%;
  margin: 1rem 0;
}

.galery {
  position: relative;
}

.gallery-button i {
  font-size: 45px;
}

.footer-parallax {
  background: #92CB7A;
  color: white;
  margin-top: 2rem;
}

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

.footer-parallax .left .title {
  font-size: 40px;
  line-height: 60px;
  letter-spacing: -0.03em;
}

.footer-parallax .left .desc {
  font-size: 20px;
  font-weight: 350;
}

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

.footer-parallax .right {
  margin-top: -4rem;
  display: flex;
  justify-content: end;
}

.kirpi img {
  width: 100%;
}

form#contact {
  display: flex;
  gap: 0.5rem;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: none;
  background: #FFF;
  padding: 10px 15px;
  border-radius: 5px;
  outline: none;
  font-size: 20px;
  outline: none;
}

form#contact fieldset {
  padding: 0;
}

ul.social {
  display: flex;
  gap: 1rem;
  font-size: 32px;
}

ul.footer-menu-desc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 17px;
  margin: 1rem 0;
  font-weight: 400;
}

.footer-logo img {
  max-width: 249px;
}

.footer-menu .title {
  font-size: 26px;
  font-weight: 800;
}

.footer-menu {
  position: relative;
  z-index: 9999;
  display: flex;
  height: 100%;
  background: #1F1F1F;
  color: white;
  padding: 2rem 0;
}

ul.footer-menu-desc li a {
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
}

ul.footer-menu-desc li a:hover {
  color: #655f5f;
}

.left-nav-bar .social {
  flex-direction: column;
  padding: 1rem;
  align-items: center;
  font-size: 34px;
  gap: 0.3rem;
}

.footer-menu-desc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

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

.footer-menu-desc .subdesc {
  font-weight: 350;
}

.footer-bottom .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-form-area .item1 {
  margin: 15px 0;
}

input.form-item {
  height: 60%;
}

.contact-form .item1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

input.form-item,
input#start,
textarea {
  border: none;
  font-weight: 500;
  height: 100%;
  width: 97%;
  padding: 1rem;
  margin: auto;
  outline: none;
  border-radius: 10px;
  background: #F2F2F2;
  font-size: 18px;
}

.contact-form-area {
  margin: auto;
}

.contact-form .form-btn {
  align-items: center;
  text-align: center;
}

.fare i {
  font-size: 45px;
  color: #515E6B;
}

.fare {
  margin: 4rem;
}

.about-detail .title {
  font-weight: 700;
  font-size: 30px;
  line-height: 65px;
  /* identical to box height, or 217% */
  letter-spacing: -0.03em;
  color: #000000;
}

.about-detail .desc p {
  font-style: normal;
  font-weight: 350;
  font-size: 20px;
  line-height: 25px;
  /* or 125% */
  letter-spacing: -0.03em;
  margin: 1rem 0;
  color: #000000;
}

.product-box {
  display: flex;
  flex-direction: column;
  max-width: 90%;
  cursor: pointer;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  transition: all 0.3s;
  margin: auto;
}

.product-box .produc-picture img {
  max-width: 90%;
}

.produc-picture {
  box-shadow: 0px 4px 20px rgba(202, 202, 202, 0.2);
  border-radius: 5px;
  text-align: center;
  padding: 3rem 0;
}
.produc-picture img {
  width: 100%;
}
.product-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.product-wrapper .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  /* identical to box height, or 125% */
  letter-spacing: -0.03em;
  color: #000000;
}

.product-wrapper .desc {
  font-weight: 300;
  font-size: 17px;
  line-height: 20px;
  /* or 118% */
  text-align: center;
  letter-spacing: -0.03em;

  /* 1 */
  color: #000000;
}
.product-box:hover {
  scale: 1.1;
}

.product-wrapper .dark-btn {
  border-radius: 15px;
  max-width: 81px;
  min-width: 98px !important;
}
.product-detail.wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}

.product-detail.wrapper .title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 26px;
  font-weight: 600;
}

.product-detail.wrapper .title span {
  font-weight: 400;
  font-size: 20px;
}

.product-detail.wrapper .desc span {
  font-weight: 400;
  font-size: 20px;
}

.product-detail.wrapper .desc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
/* or 120% */
  letter-spacing: -0.03em;
}
.product-detail.wrapper .btn-wrapper {
  display: flex;
  gap: 1rem;
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  .header-center {
    display: none;

  }

  .header-center {
    display: none;
  }

  .p10 {
    padding: 2rem 0;
  }

  .section-title-wrapper .title {
    font-size: 28px;
  }

  .section-title-wrapper .desc {
    font-size: 18px;
  }

  .fare {
    margin: 2rem;
  }

  .footer-parallax .left {
    gap: 0.5rem;
  }

  .footer-parallax .left .title {
    font-size: 28px;
    line-height: 30px;
  }

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

  .footer-parallax .right {
    margin-top: 0;
  }

  button.dark-btn {
    min-width: 100px;
    font-size: 16px;
  }

  .header-right .nav {
    width: 75%;
  }

  .header-left img {
    max-width: 150px;
  }

  header.detail {
    padding: 0;
  }

  .consultancy-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .consultancy-box-wrapper {
    align-items: center;
    text-align: center;
  }

  .consultancy-box:hover {
    scale: none;
  }

  section.parallax1 img {
    height: 38vh;
    object-fit: cover;
  }

  .slogan {
    top: 20%;
    left: 3%;
  }

  .about-us .left .left-wrapper .title {
    font-size: 24px;
    line-height: 26px;
  }

  .about-us .left .left-wrapper .desc {
    font-size: 18px;
    line-height: 22px;
  }

  .about-us .left .left-wrapper {
    margin-bottom: 1rem;
  }

  .parallax2 .left .title {
    font-size: 28px;
  }

  .parallax2 .left .desc {
    font-size: 16px;
    max-width: 200px;
    text-align: center;
  }

  button.wp-btn {
    max-width: 140px;
    font-size: 16px;
  }

  .parallax2 .bg img {
    object-fit: cover;
  }

  .about-button i {
    font-size: 20px;
  }

  .about-button {
    gap: 0.5rem;
  }

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

  .faqwell .item .fs-content {
    font-size: 16px;
    line-height: 20px;
  }

  .faqwell {
    margin-bottom: 25px;
  }

  .about-detail .desc p {
    font-size: 18px;
    line-height: 22px;
  }
}

@media only screen and (min-width: 568px) and (max-width: 768px) {
  .header-center {
    display: none;
  }
  .footer-parallax .right {
    margin-top: 0;
}

.header-right .nav {
    width: 50%;
}
section.parallax1 img {
  height: 32vh;
  object-fit: cover;
}

.slogan {
  top: 30%;
  left: 8%;
}
.about-us .left .left-wrapper {
  margin-bottom: 2rem;
}
section.parallax1 img {
  height: 32vh;
  object-fit: cover;
}

.slogan {
  top: 30%;
  left: 8%;
}

.about-us .left .left-wrapper {
  margin-bottom: 2rem;
}

.parallax2 .bg img {
  object-fit: cover;
}

.parallax2 .left .desc {
  font-size: 18px;
}

.about-us .left .left-wrapper .title {
  font-size: 32px;
  line-height: 36px;
}

.about-us .left .left-wrapper .desc {
  font-size: 18px;
  line-height: 22px;
}

.about-us .picture img {
  width: 75%;
  text-align: start;
  align-items: center;
  display: flex;
  margin: 0 1rem;
}
.p10 {
  padding: 2rem 0;
}

}