@font-face {
  font-family: "Lao";
  src: url("../font/lao.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "bileha";
  src: url("../font/bileha.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "ral";
  src: url("../font/ral.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/********** Template CSS **********/

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Button ***/
.btn {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand,
.navbar .navbar-phone {
  height: 70px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 25px;
  padding: 25px 0;
  color: var(--bs-dark);
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.logoclass {
  width: 100px;
}

/*** Header ***/
.owl-carousel-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  /*background: rgba(0, 0, 0, 0.4);*/
  /*background: linear-gradient( to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);*/
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 600px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
}

.header-carousel .owl-dots {
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}

.header-carousel .owl-dots .owl-dot.active {
  width: 60px;
  height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.page-header {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-header .page-header-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

/*** Scrolling ***/
.scrolling {
  white-space: nowrap;
}

.scrolling-text {
  display: inline-block;
  animation: scroll-left 20s linear infinite;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}

.scrolling-text:hover {
  animation-play-state: paused;
}

.scrolling-text span {
  display: inline-block;
  margin-right: 30px;
}

.scrolling-text span i {
  color: var(--bs-white);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.scrolling-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 60px;
  /* spacing between items */
}

.scrolling-text span {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
}

/* Dot between items */
.scrolling-text span::after {
  content: "•";
  position: absolute;
  right: -35px;
  font-size: 22px;
  font-weight: bold;
}

/* Remove dot from last item */
.scrolling-text span:last-child::after {
  display: none;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  /*background: linear-gradient(to right, rgba(251, 245, 234, 1) 0%, rgba(251, 245, 234, 0) 100%);*/
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  /*background: linear-gradient(to left, rgba(251, 245, 234, 1) 0%, rgba(251, 245, 234, 0) 100%);*/
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 480px;
  top: 290px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  z-index: 1;
}

@media (max-width: 576px) {
  .testimonial-carousel .owl-nav {
    width: 300px;
    top: 380px;
  }
}

.testimonial-carousel:hover .owl-nav {
  width: 450px;
}

@media (max-width: 576px) {
  .testimonial-carousel:hover .owl-nav {
    width: 350px;
}
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--bs-primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--bs-dark);
}

.testimonial-carousel .testimonial-img img {
  width: 350px;
  height: 350px;
  transition: 0.5s;
  transform: scale(0.85);
}

/* Active Center Slide Image */
.testimonial-carousel .owl-item.center .testimonial-img img {
  transform: scale(1.1);
}

.testimonial-carousel .testimonial-img .btn-square {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
  margin-bottom: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}

/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
    max-width: 100% !important;
  }

  .contact-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.contact-form .help-block ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* =========================
   Footer
========================= */

.footer-section {
  min-height: 450px;
}

.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.footer-logo {
  max-width: 200px;
}

.footer-social {
  transition: 0.3s;
}

.footer-social:hover {
  transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 991px) {
  .footer-section {
    text-align: center;
  }

  .footer-logo {
    max-width: 150px;
  }
  .header-carousel .owl-dots .owl-dot {
  display: none;
    }
}


/* Desktop */
.legacy-img1 {
    width: 100%;
    height: 528px;
    object-fit: cover;
    display: block;
}
@media (min-width: 1920px) {
    .legacy-img1 {
        height: 630px;
    }
}

/* Large Tablets & Small Laptops */
@media (max-width: 1199.98px) {
    .legacy-img1 {
        height: 380px;
    }
}

/* iPad Portrait & Landscape */
@media (max-width: 991.98px) {
    .legacy-img1 {
        height: 380px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .legacy-img1 {
        height: auto;
        object-fit: contain;
    }
}

.counter-box {
  background: #fff;
  padding: 25px 35px;
  min-height: 120px;
}

@media (max-width: 991.98px) {

    .counter-box h3 {
        font-size: 1rem;
    }

    .counter-box h2 {
        font-size: 2rem;
    }

}

/* =========================
   Feature Grid
========================= */

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  height: 280px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.feature-overlay {
  position: absolute;
  left: 0;
  bottom: 100px;
  width: 100%;
  text-align: center;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}

.feature-overlay span {
  display: block;
  margin-bottom: 8px;
}

.feature-card:hover img {
  transform: scale(1.08);
}

/* =========================
   Responsive
========================= */

.tea-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #005c3b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.4s;
  line-height: 1;
}

.tea-btn-icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transform: rotate(45deg);
  transition: 0.4s;
}

.tea-btn:hover {
  color: #fff;
}

.tea-btn:hover .tea-btn-icon {
  transform: rotate(90deg);
}

/* =========================
   Video CTA
========================= */

.video-cta {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Light Button Version */

.tea-btn-light {
  background: #f7f0e6;
  color: #005c3b;
}

.tea-btn-light:hover {
  color: #005c3b;
}

.tea-btn-light .tea-btn-icon {
  background: #005c3b;
  color: #fff;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .video-cta {
    height: 600px;
  }
}

@media (max-width: 576px) {
  .video-cta {
    height: 500px;
  }
}

/* =========================
   Packaging Section
========================= */

.pack-box {
  max-width: 320px;
  margin: auto;
}

.pack-shape {
  width: 200px;
  height: 160px;
  background: #fff;
  border-radius: 180px 180px 25px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  /* centers the shape */
}

.pack-shape h3 {
  color: #005c3b;
  margin-top: 50px;
}

.pack-box span {
  display: block;
  color: #666;
}

.pack-box h4 {
  color: #111;
}

.legacy-img-wrapper1 {
  position: relative;
}

.legacy-img-wrapper1::after {
  /*content: "";*/
  /*position: absolute;*/
  /*top: -110px;*/
  /*left: -40px;*/
  /*width: 120px;*/
  /*height: 120px;*/
  /*background: url('../img/leaf.png') no-repeat center;*/
  /*background-size: contain;*/
  /*z-index: 1;*/
}

.legacy-img-wrapper2 {
  position: relative;
}

.legacy-img-wrapper2::after {
  /*content: "";*/
  /*position: absolute;*/
  /*bottom: 170px;*/
  /*right: -90px;*/
  /*width: 160px;*/
  /*height: 160px;*/
  /*background: url('../img/teabag.png') no-repeat center;*/
  /*background-size: contain;*/
  /*z-index: 1;*/
}

.bg1 {
  background: url(../img/bg1.png) center center / 100% 100% no-repeat;
}

.bg2 {
  background: url(../img/bg2.png) center center / 100% 100% no-repeat;
}

.bg3 {
  background: url(../img/bg3.png) center center / 100% 100% no-repeat;
}

.bg4 {
  background: url(../img/bg4.png) center center / 100% 100% no-repeat;
}

/* Responsive */

@media (max-width: 991px) {
  .bg1,
  .bg2,
  .bg3,
  .bg4 {
    background-size: cover;
    background-position: center;
  }
}

.addcard {
  border-radius: 40px;
  height: 100%;
}

img.roundimg {
  width: 350px;
}

/* iPad Portrait (Vertical) */
@media only screen
and (min-width: 768px)
and (max-width: 1024px)
and (orientation: portrait) {

    img.roundimg {
        width: 250px;
    }

}

/* iPad Landscape (Horizontal) */
@media only screen
and (min-width: 768px)
and (max-width: 1366px)
and (orientation: landscape) {

    img.roundimg {
        width: 250px;
    }

}

/* =========================
   GOOGLE TRANSLATE FIXES
========================= */

#google_translate_element {
  position: absolute;
  left: -99999px;
  top: -99999px;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0 !important;
}

.skiptranslate iframe {
  display: none !important;
}

.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget img {
  display: none !important;
}

.goog-te-gadget {
  font-size: 0 !important;
}

/* Prevent language selector from translating */
.notranslate,
.notranslate * {
  translate: no;
}

/* =========================
   LANGUAGE BUTTON
========================= */

.language-dropdown {
  display: flex;
  align-items: center;
}

.language-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 150px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid #e8e8e8;
  border-radius: 50px;
  background: #fff;
  color: #1d1d1d;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.language-btn:hover {
  border-color: #d9d9d9;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.language-btn:focus {
  box-shadow: none;
  outline: none;
}

.language-btn::after {
  margin-left: 12px;
}

/* Selected language */

.selected-language {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.selected-language .fi {
  border-radius: 3px;
  overflow: hidden;
}

/* =========================
   DROPDOWN
========================= */

.language-menu {
  width: 230px;
  border: none;
  overflow: hidden;
  margin-top: 0px !important;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  padding: 10px;
}

.language-menu .dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-radius: 14px;
  color: #2a2a2a;
  transition: all 0.25s ease;
}

.language-menu .dropdown-item:hover {
  background: #f5f5f5;
  padding-left: 24px;
}

.language-menu .dropdown-item.active {
  background: #f5d9c8;
  color: #000;
}

.language-menu .fi {
  font-size: 20px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991.98px) {
  .language-dropdown {
    width: 100%;
    margin-top: 15px;
    display: block;
  }

  .language-btn {
    width: 100%;
    min-width: 100%;
  }

  .language-menu {
    width: 100%;
  }

}
