@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@400;700&display=swap");
:root {
  --swiper-theme-color: #4B804A;
}

::-moz-selection {
  background-color: #4B804A;
  color: #fff;
}

::selection {
  background-color: #4B804A;
  color: #fff;
}

@media (max-width: 575.98px) {
  html {
    font-size: 0.9rem;
  }
}

body {
  position: relative;
}

main {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.bg-cover {
  background-size: cover;
  width: 100%;
  height: 0;
  display: block;
  background-position: 50% 50%;
}

svg {
  max-width: 100%;
  height: auto;
}

article {
  position: relative;
  overflow: hidden;
}

.fancybox__container {
  z-index: 9900;
}

.vr {
  opacity: 1;
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
}

.left-aside {
  width: 100%;
  overflow-y: auto;
  z-index: 9999;
  background: #B9B973;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 5%;
}
.left-aside .side-right .social-list {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}
.left-aside .side-right .social-list svg {
  font-size: 3rem !important;
}
.left-aside .side-right .social-list svg.fa-line {
  font-size: 2.7rem !important;
}
.left-aside .navbar-brand {
  width: 100%;
  max-width: 300px;
}
.left-aside .navbar-brand svg {
  width: 100%;
}
.left-aside .onoffcanvas-toggler {
  margin-left: auto;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.left-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 575.98px) {
  .left-aside {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem 0;
  }
}

.left-aside-close-row {
  text-align: right;
  padding: 5px;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.left-aside-close-row .left-aside-close {
  display: inline-block;
  cursor: pointer;
}

.is-open .left-menu > li {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
}

.left-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.left-menu > li {
  -webkit-transform: translate(-100px, 0);
      -ms-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
  opacity: 0;
  -webkit-transition: 0;
  transition: 0;
}
.left-menu li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  font-size: 2.5rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
.left-menu a {
  display: block;
  position: relative;
  padding: 0.8rem;
  outline: 0;
  text-decoration: none;
  color: #fff;
}
.left-menu a[href="#"] .arrows, .left-menu a[href=""] .arrows {
  display: none;
}
.left-menu a[href="#"] .arrows:before, .left-menu a[href=""] .arrows:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.left-menu a:hover {
  color: #4B804A;
}
.left-menu a:focus {
  color: #4B804A;
}
.left-menu a:active {
  color: #4B804A;
}
.left-menu a.has-submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 0;
}
.left-menu a.has-submenu span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.left-menu a.has-submenu .arrows {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.left-menu a.has-submenu .arrows:after {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.left-menu a.has-submenu .arrows[aria-expanded=true]:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.left-menu ul {
  padding-left: 1rem;
}
.left-menu li.mm-active > a {
  color: #4B804A;
}
.left-menu ul {
  position: relative;
}
.left-menu ul:before {
  content: "";
  display: block;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.1;
  z-index: -1;
  left: 0;
  top: 0;
  position: absolute;
  display: block;
}
.left-menu ul[class*=mm-col]:before {
  visibility: visible;
}

.onoffcanvas-drawer.is-open {
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.sidebar-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sidebar-nav .metismenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sidebar-nav .metismenu li + li {
  margin-top: 5px;
}
.sidebar-nav .metismenu > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.sidebar-nav .metismenu a {
  position: relative;
  display: block;
  color: #00120B;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: none;
}
.sidebar-nav .metismenu a:hover {
  color: #4B804A;
  text-decoration: none;
}
.sidebar-nav .metismenu a:focus {
  color: #4B804A;
  text-decoration: none;
}
.sidebar-nav .metismenu a:active {
  color: #4B804A;
  text-decoration: none;
}
.sidebar-nav .metismenu ul {
  padding-left: 1rem;
}
.sidebar-nav .metismenu .mm-active > a {
  color: #4B804A;
  text-decoration: none;
  border-radius: 3px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 9000;
  background-color: #fff;
}
.navbar * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991.98px) {
  .navbar .navbar-brand {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.navbar .navbar-logo--social-icon .social-list {
  display: none;
}
@media (max-width: 991.98px) {
  .navbar .navbar-logo--social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
  }
  .navbar .navbar-logo--social-icon .navbar-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 1rem;
  }
  .navbar .navbar-logo--social-icon .social-list {
    background-color: #4B804A;
  }
  .navbar .navbar-logo--social-icon .social-list li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .navbar .navbar-logo--social-icon .social-list li a {
    display: block;
    padding: 8px 8px;
  }
  .navbar .navbar-logo--social-icon .social-list li + li {
    margin-top: -8px;
  }
}

.navbar-toggler {
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.navbar-toggler .hamburger {
  width: 15px;
  height: 8px;
  position: relative;
  top: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar-toggler .hamburger:before, .navbar-toggler .hamburger:after {
  content: "";
  display: block;
  height: 2px;
  border-radius: 50rem;
  background-color: #4B804A;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand {
    width: 200px;
  }
}
.navbar .navbar-nav .nav-item {
  margin-left: 1rem;
  margin-right: 0;
  position: relative;
}
.navbar .navbar-nav .nav-item:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #B9B973;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}
@media (min-width: 992px) {
  .navbar .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  display: block;
  color: #4B804A;
}
.navbar .navbar-nav .nav-item .nav-link span {
  display: block;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.navbar .navbar-nav .nav-item:hover, .navbar .navbar-nav .nav-item.active {
  color: #4B804A;
}
.navbar .navbar-nav .nav-item:hover:after, .navbar .navbar-nav .nav-item.active:after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.dropdown-menu {
  min-width: 180px;
  text-align: center;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.dropdown-menu > li:hover a, .dropdown-menu > li.active a {
  background-color: #4B804A;
  color: #fff;
}

.nav-right .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav-right .lang a {
  display: block;
  border-radius: 5px;
  border: 1px solid #000;
  color: inherit;
  width: 2.3rem;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
}
.nav-right .lang a:hover {
  background-color: #4B804A;
  color: #fff;
}
.nav-right .lang a.active {
  color: #fff;
  background-color: #000;
}
.nav-right .lang a + a {
  margin-left: -5px;
}

.loader-mesk {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 9998;
}
.loader-mesk.finish {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100vw;
  height: 100vh;
  background: #fff;
  opacity: 1;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.preloader .preloader_inner {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.preloader .mesk {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.swiper-pagination .swiper-pagination-bullet {
  width: 45px;
  height: 5px;
  background-color: #fff;
  border-radius: 0;
  opacity: 1;
  outline: none;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #4B804A;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  cursor: pointer;
  z-index: 1000;
  width: auto;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  outline: none;
  background: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: none;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #4B804A;
  color: #fff;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.slider-small .swiper-slide {
  cursor: pointer;
}
.slider-small .swiper-slide:hover, .slider-small .swiper-slide.swiper-slide-thumb-active {
  opacity: 0.5;
}

/*!
 * Lavalamp 
 * https://lavalamp.magicmediamuse.com/
 */
.lavalamp {
  position: relative;
}
.lavalamp__item {
  z-index: 5;
  position: relative;
}
.lavalamp__object {
  position: absolute;
  top: 0;
  left: 0;
}
.lavalamp__object:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='15' viewBox='0 0 27 15'%3E%3Cg id='组_19' data-name='组 19' transform='translate(-894.967 -22.001)'%3E%3Ccircle id='椭圆_1' data-name='椭圆 1' cx='7.5' cy='7.5' r='7.5' transform='translate(894.967 22.001)' fill='%23cea614'/%3E%3Ccircle id='椭圆_2' data-name='椭圆 2' cx='7.5' cy='7.5' r='7.5' transform='translate(906.967 22.001)' fill='%231936c0'/%3E%3C/g%3E%3C/svg%3E%0A");
  display: inline-block;
  left: 50%;
  top: 1rem;
  margin: auto;
  position: relative;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.lavalamp__object {
  /**
   * Custom easing transitions
   */
  -webkit-transition-property: -webkit-transform, width, height;
  -webkit-transition-property: width, height, -webkit-transform;
  transition-property: width, height, -webkit-transform;
  transition-property: transform, width, height;
  transition-property: transform, width, height, -webkit-transform;
}
.lavalamp__object.ease {
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.lavalamp__object.ease-in {
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.lavalamp__object.ease-out {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.lavalamp__object.ease-in-out {
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.lavalamp__object.linear {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.lavalamp__object.easeInQuad {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.lavalamp__object.easeInCubic {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.lavalamp__object.easeInQuart {
  -webkit-transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.lavalamp__object.easeInQuint {
  -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.lavalamp__object.easeInSine {
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
.lavalamp__object.easeInExpo {
  -webkit-transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}
.lavalamp__object.easeInCirc {
  -webkit-transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.lavalamp__object.easeInBack {
  -webkit-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.lavalamp__object.easeOutQuad {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lavalamp__object.easeOutCubic {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.lavalamp__object.easeOutQuart {
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lavalamp__object.easeOutQuint {
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.lavalamp__object.easeOutSine {
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
.lavalamp__object.easeOutExpo {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.lavalamp__object.easeOutCirc {
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.lavalamp__object.easeOutBack {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.lavalamp__object.easeInOutQuad {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.lavalamp__object.easeInOutCubic {
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.lavalamp__object.easeInOutQuart {
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.lavalamp__object.easeInOutQuint {
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.lavalamp__object.easeInOutSine {
  -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.lavalamp__object.easeInOutExpo {
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.lavalamp__object.easeInOutCirc {
  -webkit-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.lavalamp__object.easeInOutBack {
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.font-dosis {
  font-family: "Dosis", sans-serif;
}

.fs-12 {
  font-size: 0.75rem;
}

.fsr-12 {
  font-size: 0.75rem;
}

.fs-13 {
  font-size: 0.8125rem;
}

.fsr-13 {
  font-size: 0.8125rem;
}

.fs-14, #nav-top .search-item .search-input input {
  font-size: 0.875rem;
}

.fsr-14 {
  font-size: 0.875rem;
}

.fs-18, .mega-menu [class*=container] ul.product-mega-menu > li > a {
  font-size: 1.125rem;
}

.fsr-18 {
  font-size: 1.125rem;
}

.fs-20 {
  font-size: 1.25rem;
}

.fsr-20 {
  font-size: 1.25rem;
}

.fs-22 {
  font-size: 1.375rem;
}

.fsr-22 {
  font-size: calc(1.2625rem + 0.15vw);
}
@media (min-width: 1200px) {
  .fsr-22 {
    font-size: 1.375rem;
  }
}

.fs-24 {
  font-size: 1.5rem;
}

.fsr-24 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .fsr-24 {
    font-size: 1.5rem;
  }
}

.fs-25 {
  font-size: 1.5625rem;
}

.fsr-25 {
  font-size: calc(1.28125rem + 0.375vw);
}
@media (min-width: 1200px) {
  .fsr-25 {
    font-size: 1.5625rem;
  }
}

.fs-27 {
  font-size: 1.6875rem;
}

.fsr-27 {
  font-size: calc(1.29375rem + 0.525vw);
}
@media (min-width: 1200px) {
  .fsr-27 {
    font-size: 1.6875rem;
  }
}

.fs-28 {
  font-size: 1.75rem;
}

.fsr-28 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  .fsr-28 {
    font-size: 1.75rem;
  }
}

.fs-30, .whats-list li .icon {
  font-size: 1.875rem;
}

.fsr-30 {
  font-size: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .fsr-30 {
    font-size: 1.875rem;
  }
}

.fs-35 {
  font-size: 2.1875rem;
}

.fsr-35 {
  font-size: calc(1.34375rem + 1.125vw);
}
@media (min-width: 1200px) {
  .fsr-35 {
    font-size: 2.1875rem;
  }
}

.fs-34 {
  font-size: 2.125rem;
}

.fsr-34 {
  font-size: calc(1.3375rem + 1.05vw);
}
@media (min-width: 1200px) {
  .fsr-34 {
    font-size: 2.125rem;
  }
}

.fs-40 {
  font-size: 2.5rem;
}

.fsr-40 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .fsr-40 {
    font-size: 2.5rem;
  }
}

.fs-45 {
  font-size: 2.8125rem;
}

.fsr-45 {
  font-size: calc(1.40625rem + 1.875vw);
}
@media (min-width: 1200px) {
  .fsr-45 {
    font-size: 2.8125rem;
  }
}

.fs-50 {
  font-size: 3.125rem;
}

.fsr-50 {
  font-size: calc(1.4375rem + 2.25vw);
}
@media (min-width: 1200px) {
  .fsr-50 {
    font-size: 3.125rem;
  }
}

.fs-55 {
  font-size: 3.4375rem;
}

.fsr-55 {
  font-size: calc(1.46875rem + 2.625vw);
}
@media (min-width: 1200px) {
  .fsr-55 {
    font-size: 3.4375rem;
  }
}

.fs-72 {
  font-size: 4.5rem;
}

.fsr-72 {
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .fsr-72 {
    font-size: 4.5rem;
  }
}

.fs-80 {
  font-size: 5rem;
}

.fsr-80 {
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .fsr-80 {
    font-size: 5rem;
  }
}

.fs-110 {
  font-size: 6.875rem;
}

.fsr-110 {
  font-size: calc(1.8125rem + 6.75vw);
}
@media (min-width: 1200px) {
  .fsr-110 {
    font-size: 6.875rem;
  }
}

.fs-160 {
  font-size: 10rem;
}

.fsr-160 {
  font-size: calc(2.125rem + 10.5vw);
}
@media (min-width: 1200px) {
  .fsr-160 {
    font-size: 10rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-12 {
    font-size: 0.75rem;
  }
  .fsr-sm-12 {
    font-size: 0.75rem;
  }
  .fs-sm-13 {
    font-size: 0.8125rem;
  }
  .fsr-sm-13 {
    font-size: 0.8125rem;
  }
  .fs-sm-14 {
    font-size: 0.875rem;
  }
  .fsr-sm-14 {
    font-size: 0.875rem;
  }
  .fs-sm-18 {
    font-size: 1.125rem;
  }
  .fsr-sm-18 {
    font-size: 1.125rem;
  }
  .fs-sm-20 {
    font-size: 1.25rem;
  }
  .fsr-sm-20 {
    font-size: 1.25rem;
  }
  .fs-sm-22 {
    font-size: 1.375rem;
  }
  .fsr-sm-22 {
    font-size: calc(1.2625rem + 0.15vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-24 {
    font-size: 1.5rem;
  }
  .fsr-sm-24 {
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-25 {
    font-size: 1.5625rem;
  }
  .fsr-sm-25 {
    font-size: calc(1.28125rem + 0.375vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-25 {
    font-size: 1.5625rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-27 {
    font-size: 1.6875rem;
  }
  .fsr-sm-27 {
    font-size: calc(1.29375rem + 0.525vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-27 {
    font-size: 1.6875rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-28 {
    font-size: 1.75rem;
  }
  .fsr-sm-28 {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-28 {
    font-size: 1.75rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-30 {
    font-size: 1.875rem;
  }
  .fsr-sm-30 {
    font-size: calc(1.3125rem + 0.75vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-35 {
    font-size: 2.1875rem;
  }
  .fsr-sm-35 {
    font-size: calc(1.34375rem + 1.125vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-35 {
    font-size: 2.1875rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-34 {
    font-size: 2.125rem;
  }
  .fsr-sm-34 {
    font-size: calc(1.3375rem + 1.05vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-34 {
    font-size: 2.125rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-40 {
    font-size: 2.5rem;
  }
  .fsr-sm-40 {
    font-size: calc(1.375rem + 1.5vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-40 {
    font-size: 2.5rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-45 {
    font-size: 2.8125rem;
  }
  .fsr-sm-45 {
    font-size: calc(1.40625rem + 1.875vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-45 {
    font-size: 2.8125rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-50 {
    font-size: 3.125rem;
  }
  .fsr-sm-50 {
    font-size: calc(1.4375rem + 2.25vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-50 {
    font-size: 3.125rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-55 {
    font-size: 3.4375rem;
  }
  .fsr-sm-55 {
    font-size: calc(1.46875rem + 2.625vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-55 {
    font-size: 3.4375rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-72 {
    font-size: 4.5rem;
  }
  .fsr-sm-72 {
    font-size: calc(1.575rem + 3.9vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-72 {
    font-size: 4.5rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-80 {
    font-size: 5rem;
  }
  .fsr-sm-80 {
    font-size: calc(1.625rem + 4.5vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-80 {
    font-size: 5rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-110 {
    font-size: 6.875rem;
  }
  .fsr-sm-110 {
    font-size: calc(1.8125rem + 6.75vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-110 {
    font-size: 6.875rem;
  }
}
@media (min-width: 576px) {
  .fs-sm-160 {
    font-size: 10rem;
  }
  .fsr-sm-160 {
    font-size: calc(2.125rem + 10.5vw);
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .fsr-sm-160 {
    font-size: 10rem;
  }
}
@media (min-width: 768px) {
  .fs-md-12 {
    font-size: 0.75rem;
  }
  .fsr-md-12 {
    font-size: 0.75rem;
  }
  .fs-md-13 {
    font-size: 0.8125rem;
  }
  .fsr-md-13 {
    font-size: 0.8125rem;
  }
  .fs-md-14 {
    font-size: 0.875rem;
  }
  .fsr-md-14 {
    font-size: 0.875rem;
  }
  .fs-md-18 {
    font-size: 1.125rem;
  }
  .fsr-md-18 {
    font-size: 1.125rem;
  }
  .fs-md-20 {
    font-size: 1.25rem;
  }
  .fsr-md-20 {
    font-size: 1.25rem;
  }
  .fs-md-22 {
    font-size: 1.375rem;
  }
  .fsr-md-22 {
    font-size: calc(1.2625rem + 0.15vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 768px) {
  .fs-md-24 {
    font-size: 1.5rem;
  }
  .fsr-md-24 {
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .fs-md-25 {
    font-size: 1.5625rem;
  }
  .fsr-md-25 {
    font-size: calc(1.28125rem + 0.375vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-25 {
    font-size: 1.5625rem;
  }
}
@media (min-width: 768px) {
  .fs-md-27 {
    font-size: 1.6875rem;
  }
  .fsr-md-27 {
    font-size: calc(1.29375rem + 0.525vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-27 {
    font-size: 1.6875rem;
  }
}
@media (min-width: 768px) {
  .fs-md-28 {
    font-size: 1.75rem;
  }
  .fsr-md-28 {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-28 {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .fs-md-30 {
    font-size: 1.875rem;
  }
  .fsr-md-30 {
    font-size: calc(1.3125rem + 0.75vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 768px) {
  .fs-md-35 {
    font-size: 2.1875rem;
  }
  .fsr-md-35 {
    font-size: calc(1.34375rem + 1.125vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-35 {
    font-size: 2.1875rem;
  }
}
@media (min-width: 768px) {
  .fs-md-34 {
    font-size: 2.125rem;
  }
  .fsr-md-34 {
    font-size: calc(1.3375rem + 1.05vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-34 {
    font-size: 2.125rem;
  }
}
@media (min-width: 768px) {
  .fs-md-40 {
    font-size: 2.5rem;
  }
  .fsr-md-40 {
    font-size: calc(1.375rem + 1.5vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-40 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .fs-md-45 {
    font-size: 2.8125rem;
  }
  .fsr-md-45 {
    font-size: calc(1.40625rem + 1.875vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-45 {
    font-size: 2.8125rem;
  }
}
@media (min-width: 768px) {
  .fs-md-50 {
    font-size: 3.125rem;
  }
  .fsr-md-50 {
    font-size: calc(1.4375rem + 2.25vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-50 {
    font-size: 3.125rem;
  }
}
@media (min-width: 768px) {
  .fs-md-55 {
    font-size: 3.4375rem;
  }
  .fsr-md-55 {
    font-size: calc(1.46875rem + 2.625vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-55 {
    font-size: 3.4375rem;
  }
}
@media (min-width: 768px) {
  .fs-md-72 {
    font-size: 4.5rem;
  }
  .fsr-md-72 {
    font-size: calc(1.575rem + 3.9vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-72 {
    font-size: 4.5rem;
  }
}
@media (min-width: 768px) {
  .fs-md-80 {
    font-size: 5rem;
  }
  .fsr-md-80 {
    font-size: calc(1.625rem + 4.5vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-80 {
    font-size: 5rem;
  }
}
@media (min-width: 768px) {
  .fs-md-110 {
    font-size: 6.875rem;
  }
  .fsr-md-110 {
    font-size: calc(1.8125rem + 6.75vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-110 {
    font-size: 6.875rem;
  }
}
@media (min-width: 768px) {
  .fs-md-160 {
    font-size: 10rem;
  }
  .fsr-md-160 {
    font-size: calc(2.125rem + 10.5vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .fsr-md-160 {
    font-size: 10rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-12 {
    font-size: 0.75rem;
  }
  .fsr-lg-12 {
    font-size: 0.75rem;
  }
  .fs-lg-13 {
    font-size: 0.8125rem;
  }
  .fsr-lg-13 {
    font-size: 0.8125rem;
  }
  .fs-lg-14 {
    font-size: 0.875rem;
  }
  .fsr-lg-14 {
    font-size: 0.875rem;
  }
  .fs-lg-18 {
    font-size: 1.125rem;
  }
  .fsr-lg-18 {
    font-size: 1.125rem;
  }
  .fs-lg-20 {
    font-size: 1.25rem;
  }
  .fsr-lg-20 {
    font-size: 1.25rem;
  }
  .fs-lg-22 {
    font-size: 1.375rem;
  }
  .fsr-lg-22 {
    font-size: calc(1.2625rem + 0.15vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-24 {
    font-size: 1.5rem;
  }
  .fsr-lg-24 {
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-25 {
    font-size: 1.5625rem;
  }
  .fsr-lg-25 {
    font-size: calc(1.28125rem + 0.375vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-25 {
    font-size: 1.5625rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-27 {
    font-size: 1.6875rem;
  }
  .fsr-lg-27 {
    font-size: calc(1.29375rem + 0.525vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-27 {
    font-size: 1.6875rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-28 {
    font-size: 1.75rem;
  }
  .fsr-lg-28 {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-28 {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-30 {
    font-size: 1.875rem;
  }
  .fsr-lg-30 {
    font-size: calc(1.3125rem + 0.75vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-35 {
    font-size: 2.1875rem;
  }
  .fsr-lg-35 {
    font-size: calc(1.34375rem + 1.125vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-35 {
    font-size: 2.1875rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-34 {
    font-size: 2.125rem;
  }
  .fsr-lg-34 {
    font-size: calc(1.3375rem + 1.05vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-34 {
    font-size: 2.125rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-40 {
    font-size: 2.5rem;
  }
  .fsr-lg-40 {
    font-size: calc(1.375rem + 1.5vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-40 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-45 {
    font-size: 2.8125rem;
  }
  .fsr-lg-45 {
    font-size: calc(1.40625rem + 1.875vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-45 {
    font-size: 2.8125rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-50 {
    font-size: 3.125rem;
  }
  .fsr-lg-50 {
    font-size: calc(1.4375rem + 2.25vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-50 {
    font-size: 3.125rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-55 {
    font-size: 3.4375rem;
  }
  .fsr-lg-55 {
    font-size: calc(1.46875rem + 2.625vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-55 {
    font-size: 3.4375rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-72 {
    font-size: 4.5rem;
  }
  .fsr-lg-72 {
    font-size: calc(1.575rem + 3.9vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-72 {
    font-size: 4.5rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-80 {
    font-size: 5rem;
  }
  .fsr-lg-80 {
    font-size: calc(1.625rem + 4.5vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-80 {
    font-size: 5rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-110 {
    font-size: 6.875rem;
  }
  .fsr-lg-110 {
    font-size: calc(1.8125rem + 6.75vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-110 {
    font-size: 6.875rem;
  }
}
@media (min-width: 992px) {
  .fs-lg-160 {
    font-size: 10rem;
  }
  .fsr-lg-160 {
    font-size: calc(2.125rem + 10.5vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .fsr-lg-160 {
    font-size: 10rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-12 {
    font-size: 0.75rem;
  }
  .fsr-xl-12 {
    font-size: 0.75rem;
  }
  .fs-xl-13 {
    font-size: 0.8125rem;
  }
  .fsr-xl-13 {
    font-size: 0.8125rem;
  }
  .fs-xl-14 {
    font-size: 0.875rem;
  }
  .fsr-xl-14 {
    font-size: 0.875rem;
  }
  .fs-xl-18 {
    font-size: 1.125rem;
  }
  .fsr-xl-18 {
    font-size: 1.125rem;
  }
  .fs-xl-20 {
    font-size: 1.25rem;
  }
  .fsr-xl-20 {
    font-size: 1.25rem;
  }
  .fs-xl-22 {
    font-size: 1.375rem;
  }
  .fsr-xl-22 {
    font-size: calc(1.2625rem + 0.15vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-24 {
    font-size: 1.5rem;
  }
  .fsr-xl-24 {
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-25 {
    font-size: 1.5625rem;
  }
  .fsr-xl-25 {
    font-size: calc(1.28125rem + 0.375vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-25 {
    font-size: 1.5625rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-27 {
    font-size: 1.6875rem;
  }
  .fsr-xl-27 {
    font-size: calc(1.29375rem + 0.525vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-27 {
    font-size: 1.6875rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-28 {
    font-size: 1.75rem;
  }
  .fsr-xl-28 {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-28 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-30 {
    font-size: 1.875rem;
  }
  .fsr-xl-30 {
    font-size: calc(1.3125rem + 0.75vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-35 {
    font-size: 2.1875rem;
  }
  .fsr-xl-35 {
    font-size: calc(1.34375rem + 1.125vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-35 {
    font-size: 2.1875rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-34 {
    font-size: 2.125rem;
  }
  .fsr-xl-34 {
    font-size: calc(1.3375rem + 1.05vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-34 {
    font-size: 2.125rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-40 {
    font-size: 2.5rem;
  }
  .fsr-xl-40 {
    font-size: calc(1.375rem + 1.5vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-40 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-45 {
    font-size: 2.8125rem;
  }
  .fsr-xl-45 {
    font-size: calc(1.40625rem + 1.875vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-45 {
    font-size: 2.8125rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-50 {
    font-size: 3.125rem;
  }
  .fsr-xl-50 {
    font-size: calc(1.4375rem + 2.25vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-50 {
    font-size: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-55 {
    font-size: 3.4375rem;
  }
  .fsr-xl-55 {
    font-size: calc(1.46875rem + 2.625vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-55 {
    font-size: 3.4375rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-72 {
    font-size: 4.5rem;
  }
  .fsr-xl-72 {
    font-size: calc(1.575rem + 3.9vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-72 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-80 {
    font-size: 5rem;
  }
  .fsr-xl-80 {
    font-size: calc(1.625rem + 4.5vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-80 {
    font-size: 5rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-110 {
    font-size: 6.875rem;
  }
  .fsr-xl-110 {
    font-size: calc(1.8125rem + 6.75vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-110 {
    font-size: 6.875rem;
  }
}
@media (min-width: 1200px) {
  .fs-xl-160 {
    font-size: 10rem;
  }
  .fsr-xl-160 {
    font-size: calc(2.125rem + 10.5vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .fsr-xl-160 {
    font-size: 10rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-12 {
    font-size: 0.75rem;
  }
  .fsr-xxl-12 {
    font-size: 0.75rem;
  }
  .fs-xxl-13 {
    font-size: 0.8125rem;
  }
  .fsr-xxl-13 {
    font-size: 0.8125rem;
  }
  .fs-xxl-14 {
    font-size: 0.875rem;
  }
  .fsr-xxl-14 {
    font-size: 0.875rem;
  }
  .fs-xxl-18 {
    font-size: 1.125rem;
  }
  .fsr-xxl-18 {
    font-size: 1.125rem;
  }
  .fs-xxl-20 {
    font-size: 1.25rem;
  }
  .fsr-xxl-20 {
    font-size: 1.25rem;
  }
  .fs-xxl-22 {
    font-size: 1.375rem;
  }
  .fsr-xxl-22 {
    font-size: calc(1.2625rem + 0.15vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-24 {
    font-size: 1.5rem;
  }
  .fsr-xxl-24 {
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-25 {
    font-size: 1.5625rem;
  }
  .fsr-xxl-25 {
    font-size: calc(1.28125rem + 0.375vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-25 {
    font-size: 1.5625rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-27 {
    font-size: 1.6875rem;
  }
  .fsr-xxl-27 {
    font-size: calc(1.29375rem + 0.525vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-27 {
    font-size: 1.6875rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-28 {
    font-size: 1.75rem;
  }
  .fsr-xxl-28 {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-28 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-30 {
    font-size: 1.875rem;
  }
  .fsr-xxl-30 {
    font-size: calc(1.3125rem + 0.75vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-35 {
    font-size: 2.1875rem;
  }
  .fsr-xxl-35 {
    font-size: calc(1.34375rem + 1.125vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-35 {
    font-size: 2.1875rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-34 {
    font-size: 2.125rem;
  }
  .fsr-xxl-34 {
    font-size: calc(1.3375rem + 1.05vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-34 {
    font-size: 2.125rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-40 {
    font-size: 2.5rem;
  }
  .fsr-xxl-40 {
    font-size: calc(1.375rem + 1.5vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-40 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-45 {
    font-size: 2.8125rem;
  }
  .fsr-xxl-45 {
    font-size: calc(1.40625rem + 1.875vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-45 {
    font-size: 2.8125rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-50 {
    font-size: 3.125rem;
  }
  .fsr-xxl-50 {
    font-size: calc(1.4375rem + 2.25vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-50 {
    font-size: 3.125rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-55 {
    font-size: 3.4375rem;
  }
  .fsr-xxl-55 {
    font-size: calc(1.46875rem + 2.625vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-55 {
    font-size: 3.4375rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-72 {
    font-size: 4.5rem;
  }
  .fsr-xxl-72 {
    font-size: calc(1.575rem + 3.9vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-72 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-80 {
    font-size: 5rem;
  }
  .fsr-xxl-80 {
    font-size: calc(1.625rem + 4.5vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-80 {
    font-size: 5rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-110 {
    font-size: 6.875rem;
  }
  .fsr-xxl-110 {
    font-size: calc(1.8125rem + 6.75vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-110 {
    font-size: 6.875rem;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-160 {
    font-size: 10rem;
  }
  .fsr-xxl-160 {
    font-size: calc(2.125rem + 10.5vw);
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  .fsr-xxl-160 {
    font-size: 10rem;
  }
}
.ls-1 {
  letter-spacing: 1px;
}

.ls-2 {
  letter-spacing: 2px;
}

.ls-3 {
  letter-spacing: 3px;
}

.ls-4 {
  letter-spacing: 4px;
}

.ls-5 {
  letter-spacing: 5px;
}

.big-title {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}
.big-title span {
  display: inline-block;
}

.v-title {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.v-title .t1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.v-title .t1 span {
  display: inline-block;
}
.v-title:after {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  margin: auto;
  margin-top: 1rem;
  background-color: #4B804A;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

[data-aos=v-title]:after {
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
}
[data-aos=v-title].aos-animate:after {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transition: 1s;
  transition: 1s;
}

.main-title {
  position: relative;
  padding-left: 2.5rem;
}
.main-title svg {
  position: absolute;
  left: 0;
  top: 0.3rem;
}

.main-title2 .t1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#back-to-top,
.right-icon {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #4B804A;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  #back-to-top,
  .right-icon {
    width: 30px;
    height: 30px;
  }
}

.btn:not(.more) {
  min-width: 180px;
}

#bread {
  background-color: rgba(185, 185, 115, 0.11);
}

.breadcrumb-item a {
  color: #888;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item:last-child {
  color: #4B804A;
}

.editor ol {
  list-style: decimal;
  padding-left: 25px;
}
.editor ul {
  list-style: inherit;
  padding-left: 25px;
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ratio img {
  max-width: 100%;
  max-height: 100%;
}
.ratio.cover img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

@media (max-width: 767.98px) {
  .aside-menu.deactive {
    display: none;
  }
  .aside-menu.active {
    display: block;
  }
}

@media (min-width: 768px) {
  .aside-list {
    max-width: 215px;
  }
}
.aside-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.aside-list a {
  display: block;
  padding: 0.6rem;
  color: inherit;
}
.aside-list > li {
  position: relative;
}
.aside-list > li:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #4B804A;
}
.aside-list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.aside-list > li > a:after {
  content: "\e4b2";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font: var(--fa-font-regular);
  display: none;
}
.aside-list > li > a [class*=fa] {
  margin-top: 3px;
  margin-left: 10px;
  display: none;
}
.aside-list > li:hover > a, .aside-list > li.mm-active > a {
  background-color: #4B804A;
  color: #fff;
}
.aside-list > li:hover > a [class*=fa], .aside-list > li.mm-active > a [class*=fa] {
  display: block;
}
.aside-list > li ul {
  padding-left: 1rem;
}
.aside-list > li ul li:hover > a, .aside-list > li ul li.mm-active > a {
  color: #4B804A;
}

.m-button {
  background-color: #4B804A;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 0.5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.m-button span {
  pointer-events: none;
}
.m-button:after {
  content: "\f107";
  font: var(--fa-font-solid);
  display: block;
  color: #fff;
}
.m-button [class*=fa] {
  position: absolute;
  right: 0.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-button.active {
  background-color: #B9B973;
}
.m-button.active [class*=fa] {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pages .pagination {
  --bs-pagination-padding-y: 0;
  --bs-pagination-padding-x: 0;
  --bs-pagination-border-width: 0;
  --bs-pagination-hover-bg: #4B804A;
  --bs-pagination-hover-color: #fff;
  --bs-pagination-disabled-bg: none;
}
.pages .pagination .page-item {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.pages .pagination .page-link {
  width: 1.5rem;
  height: 2rem;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#right-float-box {
  position: fixed;
  z-index: 8000;
  right: 0;
  bottom: 50px;
}
#right-float-box .right-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.5rem;
}
#right-float-box .navar-line {
  background-color: #00c300;
  color: #fff;
}
#right-float-box .email {
  background-color: #000;
  color: #fff;
}
#right-float-box .phone {
  background-color: #4B804A;
  color: #fff;
}
#right-float-box #back-to-top {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#nav-top {
  font-size: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 1000;
}
@media (min-width: 992px) {
  #nav-top {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    font-size: 14px;
  }
}
#nav-top .search-item .search-input {
  position: relative;
}
#nav-top .search-item .search-input input {
  border-color: #E4E7EA;
  border-radius: 50rem;
  padding-top: 3px;
  padding-bottom: 3px;
}
#nav-top .search-item .search-input .search-t {
  position: absolute;
  right: 10px;
  top: 4px;
  cursor: pointer;
}
#nav-top .cart-num-item a:hover {
  color: #4B804A !important;
}

footer .logo-row svg {
  width: 350px;
}
footer .contact-list > [class*=col] {
  position: relative;
}
footer .contact-list > [class*=col]:before, footer .contact-list > [class*=col]:after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 26px;
  background-color: #4B804A;
  bottom: 0;
  margin: auto;
}
footer .contact-list > [class*=col]:before {
  left: 0;
}
footer .contact-list > [class*=col]:after {
  right: 0;
}
footer .contact-list > [class*=col] + [class*=col]:before {
  display: none;
}
@media (min-width: 768px) {
  footer:before {
    left: 60%;
  }
}
@media (min-width: 992px) {
  footer:before {
    left: 66%;
  }
}
@media (max-width: 767.98px) {
  footer:before {
    display: none;
  }
}
footer a {
  color: inherit;
}
footer a:hover {
  text-decoration: underline;
}
footer .copyright {
  color: #EDEDED;
}
footer .footer-nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1rem 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-rows: 3;
  gap: 1rem;
}
footer .footer-nav-row {
  position: relative;
}

.contact-list .icon {
  color: #4B804A;
}
.contact-list a:hover {
  color: #4B804A;
}

.inner-banner {
  position: relative;
}
.inner-banner:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-image: linear-gradient(110deg, white -100px, rgba(255, 255, 255, 0) 75%);
}
.inner-banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.inner-banner .inner-banner-txt {
  padding-top: 5%;
  padding-bottom: 5%;
  position: relative;
  z-index: 100;
}
.inner-banner .inner-banner-txt .page-header .t1 span,
.inner-banner .inner-banner-txt .page-header .t2 span {
  display: inline-block;
}
.inner-banner .inner-banner-txt .page-header .t1 {
  line-height: 1;
}
.inner-banner .inner-banner-txt .page-header .t1::first-letter {
  color: #B9B973;
}
.inner-banner .inner-banner-txt .page-header .t1 span:first-child {
  color: #B9B973;
}

.mega-menu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: absolute;
  position: fixed;
  z-index: 9001;
  background-color: rgba(255, 255, 255, 0.95);
  display: none;
  width: 100%;
}
.mega-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu [class*=container] ul.product-mega-menu {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 10%;
}
.mega-menu [class*=container] ul.product-mega-menu a:hover {
  text-decoration: underline;
}
.mega-menu [class*=container] ul.product-mega-menu > li > a {
  color: #4B804A;
  font-weight: bold;
  position: relative;
  display: block;
  margin-bottom: 1rem;
}
.mega-menu [class*=container] ul.product-mega-menu > li > a:before {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  background-color: #4B804A;
  position: absolute;
  left: -1rem;
  top: 0;
}
.mega-menu [class*=container] ul.product-mega-menu > li ul a {
  display: block;
  color: #00120B;
}
.mega-menu [class*=container] ul.product-mega-menu > li ul a:hover {
  color: #4B804A;
  text-decoration: underline;
}
.mega-menu [class*=container] ul.product-mega-menu ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 0.3rem 1fr 0.3rem 1fr 0.3rem 1fr 0.3rem 1fr;
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  grid-auto-rows: 3;
  gap: 0.3rem 1rem;
}
.mega-menu [class*=container] ul.brand-mega-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 10px;
  padding-right: 10px;
  gap: 2rem 0;
}
.mega-menu [class*=container] ul.brand-mega-menu > li {
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
}
.mega-menu [class*=container] ul.brand-mega-menu a {
  display: block;
  color: inherit;
}
.mega-menu [class*=container] ul.brand-mega-menu a:hover {
  color: #4B804A;
}
.mega-menu [class*=container] ul.brand-mega-menu .img-row {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 3px 10px;
}
.mega-menu [class*=container] ul.brand-mega-menu .txt-row {
  text-align: center;
  margin-top: 0.5rem;
}

#metismenu .nav-brand-mega-menu > ul.mm-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 0;
}
#metismenu .nav-brand-mega-menu > ul li {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  text-align: center;
}
#metismenu .nav-brand-mega-menu > ul li:first-child {
  margin-top: 0;
}
#metismenu .nav-brand-mega-menu > ul li a {
  display: block;
}
#metismenu .nav-brand-mega-menu > ul li a .img-row {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 3px 10px;
}
#metismenu .nav-brand-mega-menu > ul li a .txt-row {
  margin-top: 5px;
}

.btn {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn.btn-light:hover {
  background-color: #4B804A;
  color: #fff;
}

.more-btn-row {
  display: block;
  width: 100%;
  max-width: 170px;
  margin: auto;
}
.more-btn-row .more-btn {
  display: block;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid #00120B;
  color: #00120B;
  background-color: rgba(75, 128, 74, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.more-btn-row .more-btn:before {
  content: "";
  display: block;
  height: 0;
  padding-bottom: 100%;
}
.more-btn-row .more-btn:hover {
  border-color: #4B804A;
  background-color: #4B804A;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767.98px) {
  .more-btn-row {
    max-width: 100px;
  }
}
@media (max-width: 575.98px) {
  .more-btn-row {
    max-width: 70px;
  }
  .more-btn-row .more-btn {
    font-size: 1rem !important;
  }
}

@media (min-width: 992px) {
  #index .navbar {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
  }
  #index .navbar:not(.scroll) {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: rgba(255, 255, 255, 0);
  }
  #index .navbar:not(.scroll) .navbar-logo--social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
  }
  #index .navbar:not(.scroll) .navbar-logo--social-icon .navbar-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 1rem;
  }
  #index .navbar:not(.scroll) .navbar-logo--social-icon .social-list {
    background-color: #4B804A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #index .navbar:not(.scroll) .navbar-logo--social-icon .social-list li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #index .navbar:not(.scroll) .navbar-logo--social-icon .social-list li a {
    display: block;
    padding: 8px 8px;
  }
  #index .navbar:not(.scroll) .navbar-logo--social-icon .social-list li + li {
    margin-top: -8px;
  }
  #index .navbar:not(.scroll) .navbar-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #index .navbar:not(.scroll) .navbar-collapse {
    display: none !important;
  }
  #index .navbar:not(.scroll) #nav-right {
    display: none;
  }
  #index .navbar.scroll .navbar-logo--social-icon .social-list {
    display: none !important;
  }
}

#banner {
  position: relative;
}
#banner .swiper-slide {
  position: relative;
}
#banner .swiper-slide a {
  color: inherit;
}
#banner .banner-txt {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
#banner .banner-txt > [class*=container] {
  position: relative;
  z-index: 200;
}
#banner .banner-txt:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  background-image: linear-gradient(-115deg, rgba(255, 255, 255, 0.8) -800px, rgba(255, 255, 255, 0.04) 70%, rgba(255, 255, 255, 0) 100%);
}

#index-partner {
  background-image: url(../_img/index/partner_bg.jpg);
  min-height: 625px;
  background-size: cover;
  background-position: 50% 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#index-partner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  display: block;
  height: 40%;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, white), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, white 0, rgba(255, 255, 255, 0) 100%);
}
#index-partner .big-title {
  z-index: 200;
  line-height: 1;
  -webkit-transform: translate(0, -30%);
      -ms-transform: translate(0, -30%);
          transform: translate(0, -30%);
}
#index-partner > [class*=container] {
  position: relative;
  z-index: 300;
  height: 100%;
}
#index-partner > [class*=container] .row {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767.98px) {
  #index-partner {
    min-height: auto;
    height: auto;
    padding: 20% 0;
  }
  #index-partner:before {
    height: 100%;
  }
  #index-partner:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.3);
  }
}

#index-partner2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
#index-partner2 .txt-row {
  padding-bottom: 1.5rem;
}
#index-partner2 .img-row .img {
  position: relative;
}
#index-partner2 .img-row .img:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 20px solid #fff;
}
@media (min-width: 992px) {
  #index-partner2 {
    margin-top: -11rem;
  }
}
@media (max-width: 767.98px) {
  #index-partner2 .img-row .img:after {
    border-color: rgba(75, 128, 74, 0.5);
  }
}

.slider-title {
  white-space: nowrap;
  opacity: 0.2;
  overflow: hidden;
}

.service-step-row .icon .circle {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background-color: rgba(236, 236, 236, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}

.service-content-wrap .content-block {
  padding-right: 1.5rem;
}
.service-content-wrap .content-block:nth-child(2) {
  background-color: rgba(185, 185, 115, 0.11);
  margin-left: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-radius: 50px;
}

#what-is-service {
  background-color: rgba(185, 185, 115, 0.11);
}

.whats-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.whats-list li .icon:before {
  content: "\f058";
  font: var(--fa-font-solid);
  font-size: 30px;
  display: none;
}
.whats-list li:nth-child(odd) .icon {
  color: #4B804A;
}
.whats-list li:nth-child(even) .icon {
  color: #B9B973;
}

#service-qa {
  background-color: rgba(75, 128, 74, 0.11);
}
#service-qa .v-title:after {
  display: none;
}
#service-qa .v-title .t1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0.5;
}
#service-qa .v-title .t1 span {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.news-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 20px;
}

.news-list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.news-list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.news-list .news-item .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  color: inherit;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  border-radius: 10px;
}
.news-list .news-item .content .img-row,
.news-list .news-item .content .txt-row {
  width: 50%;
}
.news-list .news-item .content:hover .img-row img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 1s;
  transition: 1s;
}
.news-list .news-item .content:hover .txt-row .n-name {
  color: #4B804A;
}
.news-list .news-item .img-row {
  overflow: hidden;
  position: relative;
}
.news-list .news-item .img-row:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(185, 185, 115, 0.2);
}
.news-list .news-item .img-row img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news-list .news-item .txt-row {
  padding: 0.9rem 1.25rem;
  background-color: #fff;
}
.news-list .news-item .txt-row .cat--date {
  margin-bottom: 1.375rem;
}
.news-list .news-item .txt-row .n-name {
  line-height: 2rem;
  height: 6rem;
  overflow: hidden;
}
.news-list .news-item:nth-child(1) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/span 3;
}
@media (min-width: 992px) {
  .news-list .news-item:nth-child(1) .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: visible;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  .news-list .news-item:nth-child(1) .txt-row {
    margin-left: auto;
    margin-right: auto;
    margin-top: -3.5rem;
    position: relative;
    z-index: 500;
    width: calc(100% - 2rem);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  .news-list .news-item:nth-child(1) .img-row {
    position: relative;
    z-index: 200;
    width: 100%;
    border-radius: 10px;
  }
  .news-list .news-item:nth-child(1) .img-row .pic {
    --bs-aspect-ratio: 78.275%;
  }
}
.news-list .news-item:nth-child(2) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/span 1;
  -ms-grid-row: 1;
  grid-row: 1;
}
.news-list .news-item:nth-child(3) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/span 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
.news-list .news-item:nth-child(4) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/span 1;
  -ms-grid-row: 3;
  grid-row: 3;
}
.news-list .news-item:nth-child(n+5) {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}
@media (max-width: 991.98px) {
  .news-list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .news-list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .news-list .news-item {
    grid-row: auto !important;
    -ms-grid-column-span: 1 !important;
    grid-column: span 1 !important;
  }
}
@media (max-width: 767.98px) {
  .news-list .news-item .img-row .pic {
    height: 100%;
  }
  .news-list .news-item .txt-row .cat--date {
    font-size: 0.8rem;
  }
  .news-list .news-item .txt-row .n-name {
    font-size: 1rem;
    line-height: 1.3rem;
    height: 3.9rem;
  }
}

#news-cat {
  background-color: rgba(185, 185, 115, 0.11);
}
#news-cat .cat-slider .swiper-slide {
  width: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#news-cat .cat-slider .swiper-slide:hover a:after, #news-cat .cat-slider .swiper-slide.active a:after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#news-cat .cat-slider a {
  display: block;
  padding-bottom: 1rem;
  padding-top: 3px;
  color: inherit;
  position: relative;
}
#news-cat .cat-slider a:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #B9B973;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news-cat-title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.news-cat-title .t {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news-cat-title:before, .news-cat-title:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.news-cat-title:before {
  background-color: #4B804A;
}
.news-cat-title:after {
  background-color: #B9B973;
}

.news-inner-content .title--cat--date .title-row {
  background-color: #4B804A;
}
.news-inner-content .title--cat--date .cat--date-row {
  background-color: #B9B973;
}
@media (max-width: 767.98px) {
  .news-inner-content .title--cat--date {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .news-inner-content .title--cat--date .title-row {
    width: 100%;
  }
  .news-inner-content .title--cat--date .cat--date-row {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.news-cat-list .news-cat-item a {
  display: block;
  border: 1px solid #E4E7EA;
  padding: 0.5rem 1rem;
  color: #5c5c5c;
}
.news-cat-list .news-cat-item:hover a, .news-cat-list .news-cat-item.active a {
  border-color: #4B804A;
  color: #fff;
  background-color: #4B804A;
}

.form textarea.form-control {
  min-height: 180px;
}
.form .l-head {
  width: 100%;
  max-width: 4rem;
}
.form .form-floating label:after {
  display: none;
}
.form .form-floating.required label:before {
  content: "*";
  display: inline-block;
  position: absolute;
  right: 0;
  color: #4B804A;
}
.form .custom-file-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form .file-button {
  background-color: #939393;
  border: none;
  color: white;
  border-radius: 5px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
}
.form .file-name {
  margin-left: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

#contact #bread {
  position: relative;
}
#contact #bread:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background-color: #4B804A;
}
#contact article {
  position: relative;
}
#contact article:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background-color: #4B804A;
}

#contact-section1 {
  position: relative;
}
#contact-section1:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(185, 185, 115, 0.11);
  height: 100%;
  width: 40%;
}
@media (max-width: 767.98px) {
  #contact-section1:before {
    display: none;
  }
}

.contact-left .logo-row svg {
  width: 350px;
}
.contact-left .contact-list .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3rem;
  color: inherit;
}
.contact-left .contact-list .contact-item:hover {
  text-decoration: underline;
  color: #4B804A;
}
.contact-left .contact-list .contact-item .icon {
  width: 1.5rem;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */