:root {
  --animate-duration: 1000ms;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Assistant", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.25;
}

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

a {
  color: #788e72;
  text-decoration: none;
}
a:hover {
  color: #e5efe7;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Only necessary with horizontal scrolling */
html[data-scroll-orientation=horizontal] body {
  width: -moz-fit-content;
  width: fit-content;
}
html[data-scroll-orientation=horizontal] [data-scroll-container] {
  display: flex;
}

/* ===== Base Classes ===== */
.ff-primary {
  font-family: "Assistant", sans-serif;
}

.ff-secondary {
  font-family: "Comfortaa", sans-serif;
}

/* =======================================
============ Header Area Styles ==========
======================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  margin: 20px 20px 0;
  transition: all 320ms ease-in-out;
}

.navbar {
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  opacity: 1;
  box-shadow: 0px 0px 34px rgba(122, 122, 122, 0.22);
  background: linear-gradient(111deg, rgb(255, 255, 255) 17.44%, rgb(255, 255, 255) 103.95%);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  padding: 8px 0;
}

.navbar-brand {
  padding: 0;
}

.logo {
  width: 140px;
  position: relative;
  z-index: 2;
}

.navbar-nav {
  font-family: "Comfortaa", sans-serif;
}
.navbar-nav .nav-link {
  color: #a7a8a8;
  position: relative;
}
.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/dots.svg) no-repeat;
  background-size: contain;
  background-position: left;
  height: 4px;
  opacity: 0;
  display: none;
}
.navbar-nav .nav-link.active {
  font-weight: 600;
}
.navbar-nav .nav-link.active::before {
  opacity: 1;
  display: inline-block;
}
.navbar-nav .nav-link:hover {
  color: #000;
}

.nav-item {
  padding: 10px 0;
}

.navbar-toggler {
  padding: 0;
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.dropdown {
  position: relative;
}

.dropdown-toggle-icon {
  position: absolute;
  top: 3px;
  right: 8px;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 99;
}
.dropdown-toggle-icon::after {
  content: "";
  display: inline-block;
  height: 14px;
  width: 14px;
  border: 0;
  border-right: 2px solid #788e72;
  border-top: 2px solid #788e72;
  transform: rotate(135deg);
}

.navbar-collapse {
  padding: 15px 0 0 0;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  padding: 10px;
  border-radius: 12px;
  margin-top: 20px;
}

.dropdown-item {
  padding: 15px 10px 15px 10px;
  border-radius: 8px;
  background-color: transparent;
  transition: all 320ms ease-in-out;
  font-size: 15.5px;
  min-width: unset;
}
.dropdown-item:hover, .dropdown-item:active, .dropdown-item.active {
  background-color: #e5efe7;
  color: #000;
}

@media all and (min-width: 760px) {
  .navbar {
    border-radius: 36px;
    padding: 10px;
  }
  .logo {
    width: 170px;
  }
}
@media all and (min-width: 992px) {
  .navbar {
    padding: 0 15px;
    border-radius: 56px;
  }
  .logo {
    width: 200px;
  }
  .navbar-nav {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .navbar-nav .nav-link {
    font-size: 18px;
  }
  .navbar-nav .nav-link::before {
    background-position: center;
    height: 10px;
  }
  .nav-item {
    padding: 20px 0;
  }
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown-toggle-icon {
    display: none;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    top: 80px;
    left: 8px;
    padding: 10px;
    margin-top: 0;
  }
  .dropdown-item {
    padding: 15px;
    font-size: 18px;
  }
  .navbar-collapse {
    padding: 0;
  }
}
@media all and (min-width: 1200px) {
  .navbar-nav {
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
}
@media all and (min-width: 1700px) {
  .navbar {
    padding: 0 25px;
  }
  .logo {
    width: 240px;
  }
  .navbar-nav {
    -moz-column-gap: 55px;
         column-gap: 55px;
  }
  .navbar-nav .nav-link {
    font-size: 20px;
  }
  .nav-item {
    padding: 30px 0;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    top: 100px;
  }
}
/* =======================================
============ Footer Area Styles ==========
======================================= */
.footer {
  background-color: #788e72;
  color: #fff;
  font-family: "Comfortaa", sans-serif;
}
.footer a {
  color: #fff;
}

.ftr-top {
  padding: 30px 0 50px 0;
}

.ftr-logo {
  display: block;
  width: 220px;
  margin-bottom: 15px;
}
.ftr-logo img {
  filter: brightness(3);
}

.ftr-logo-area p {
  font-size: 14px;
  line-height: 1.42857;
  margin-bottom: 15px;
}

.follow-list-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.follow-list-area span {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  line-height: 1;
}

.follow-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.follow-list li a {
  display: block;
  width: 40px;
}

.single-ftr-item {
  margin-top: 40px;
}

.ftr-item-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}

.ftr-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  row-gap: 10px;
}
.ftr-list a {
  font-size: 16px;
  line-height: 1.42857;
}

.contact-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  row-gap: 15px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-list li img {
  margin-right: 10px;
  width: 20px;
  position: relative;
  top: -0.5px;
}
.contact-list li a {
  font-size: 16px;
  line-height: 1.42857;
}
.contact-list li a address {
  line-height: 1.42857;
}

.ftr-btm {
  padding: 15px 0;
  border-top: 1px solid #c2c2c2;
  text-align: center;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  row-gap: 10px;
}
.ftr-btm p {
  margin-bottom: 0;
  line-height: 1;
}
.ftr-btm p img {
  width: 15px;
}

@media all and (min-width: 760px) {
  .ftr-top {
    padding: 50px 0;
  }
  .single-ftr-item {
    padding-left: 12px;
  }
  .ftr-btm {
    justify-content: space-between;
    flex-direction: row;
  }
}
@media all and (min-width: 992px) {
  .single-ftr-item {
    padding-left: 80px;
  }
}
@media all and (min-width: 1200px) {
  .ftr-top {
    padding: 80px 0;
  }
  .ftr-logo {
    width: 280px;
    margin-bottom: 20px;
  }
  .ftr-logo-area p {
    margin-bottom: 20px;
    max-width: 90%;
  }
  .single-ftr-item {
    padding-left: 0;
  }
  .ftr-item-title {
    margin-bottom: 25px;
  }
  .ftr-list {
    row-gap: 15px;
  }
  .ftr-list a {
    font-size: 14px;
  }
  .contact-list li a {
    font-size: 14px;
  }
}
@media all and (min-width: 1400px) {
  .ftr-top {
    padding: 100px 0;
  }
  .ftr-logo {
    width: 300px;
  }
  .ftr-logo-area p {
    margin-bottom: 30px;
    max-width: 82%;
  }
  .ftr-item-title {
    margin-bottom: 30px;
  }
  .ftr-list {
    row-gap: 18px;
  }
  .ftr-list a {
    font-size: 15px;
  }
  .contact-list li a {
    font-size: 15px;
  }
}
@media all and (min-width: 1700px) {
  .ftr-logo {
    width: 340px;
  }
  .ftr-logo-area p {
    max-width: 80%;
    font-size: 16px;
  }
  .follow-list-area {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .follow-list-area span {
    font-size: 18px;
  }
  .follow-list li a {
    width: 48px;
  }
  .ftr-item-title {
    font-size: 22px;
  }
  .ftr-list {
    row-gap: 20px;
  }
  .ftr-list a {
    font-size: 16px;
  }
  .contact-list li a {
    font-size: 16px;
  }
}
/* =======================================
============ Banner Area Styles ==========
======================================= */
.hm-banner-sec {
  height: 100vh;
  width: 100%;
}

.banner-vdo {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  outline: 0;
}

/* =======================================
======= Home About Us Area Styles ========
======================================= */
.sec-spacing {
  margin: 60px 0;
}

.sec-title {
  font-family: "Comfortaa", sans-serif;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 15px;
}

.sec-tagline {
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 15px;
}

.sec-description {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 15px;
}

.hm-about-banner-area {
  margin-top: 40px;
  padding: 40px 20px 20px 20px;
  background: url(../img/foam-bkgd.png) no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.hm-about-banner-area::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(57, 75, 62, 0.66);
  z-index: 0;
}

.hm-about-banner-content,
.hm-about-banner-img {
  position: relative;
  z-index: 1;
}

.sec-cta {
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: all 320ms ease-in-out;
}
.sec-cta .cta-arrow {
  margin-left: 15px;
  background-color: #a0bf97;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  padding: 10px;
  transition: all 320ms ease-in-out;
  transform: none;
}
.sec-cta:hover {
  color: #fff;
}
.sec-cta:hover .cta-arrow {
  background-color: #788e72;
  transform: rotate(45deg);
}

.hm-about-banner-img {
  margin-top: 60px;
}

@media all and (min-width: 760px) {
  .sec-spacing {
    margin: 90px 0;
  }
  .sec-title {
    font-size: 38px;
    margin-bottom: 20px;
  }
  .sec-tagline {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .sec-description {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .hm-about-banner-area {
    padding: 40px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .sec-cta {
    font-size: 18px;
  }
  .sec-cta .cta-arrow {
    height: 34px;
    width: 34px;
    padding: 11px;
  }
  .hm-about-banner-img {
    margin-top: 0;
    width: 300px;
    position: relative;
    top: 30px;
  }
}
@media all and (min-width: 992px) {
  .sec-spacing {
    margin: 110px 0;
  }
  .hm-about-sec .sec-content {
    margin-left: 29%;
  }
  .hm-about-banner-area {
    padding: 40px 60px;
  }
  .hm-about-banner-img {
    width: 460px;
  }
  .hm-about-banner-content .sec-tagline {
    max-width: 66%;
  }
}
@media all and (min-width: 1200px) {
  .sec-spacing {
    margin: 130px 0;
  }
  .sec-title {
    font-size: 46px;
  }
  .sec-description {
    font-size: 18px;
  }
  .hm-about-banner-area {
    padding: 60px 50px 60px 70px;
    margin-top: 50px;
  }
  .hm-about-banner-area .sec-cta {
    margin-top: 30px;
  }
  .hm-about-banner-content .sec-tagline {
    max-width: 56%;
  }
  .hm-about-banner-img {
    width: 520px;
  }
}
@media all and (min-width: 1400px) {
  .sec-spacing {
    margin: 150px 0;
  }
  .hm-about-sec .sec-content {
    margin-left: 43%;
  }
  .sec-title {
    font-size: 50px;
  }
  .sec-description {
    font-size: 19px;
  }
  .sec-tagline {
    font-size: 22px;
  }
  .hm-about-banner-area {
    padding: 60px;
  }
  .hm-about-banner-area .sec-cta {
    margin-top: 40px;
  }
  .sec-cta {
    font-size: 22px;
  }
  .sec-cta .cta-arrow {
    height: 38px;
    width: 38px;
    padding: 12px;
  }
  .hm-about-banner-img {
    width: 600px;
    top: 45px;
  }
}
@media all and (min-width: 1700px) {
  .sec-spacing {
    margin: 180px 0;
  }
  .hm-about-sec .sec-content {
    margin-left: 47.5%;
  }
  .sec-title {
    font-size: 60px;
  }
  .sec-description {
    font-size: 20px;
  }
  .hm-about-banner-area {
    padding: 80px;
    margin-top: 60px;
  }
  .hm-about-banner-content .sec-tagline {
    max-width: 68%;
  }
  .hm-about-banner-img {
    width: 650px;
  }
}
/* =======================================
==== Home Benefits Slider Area Styles ====
======================================= */
.benefit-slider-area {
  margin-top: 25px;
}

.hmBenefitSlider .swiper-wrapper {
  align-items: center;
}
.hmBenefitSlider .swiper-slide {
  transform: scale(0.8);
  transition: all 320ms ease-in-out;
}
.hmBenefitSlider .swiper-slide.swiper-slide-active {
  transform: scale(1);
}

.dot-pagination {
  display: none;
}

.benefit-box {
  background-color: #e5efe7;
  border-radius: 10px;
  padding: 30px 20px 30px 25px;
}

.benefit-icon {
  width: 90px;
}

.benefit-content {
  margin-top: 40px;
}
.benefit-content span {
  font-family: "Comfortaa", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  display: block;
  margin-bottom: 10px;
}
.benefit-content p {
  font-size: 14px;
  margin-bottom: 0;
}

@media all and (min-width: 760px) {
  .hm-benefit-sec {
    position: relative;
  }
  .hm-benefit-sec .sec-content {
    max-width: 40%;
  }
  .hmBenefitSlider .swiper-slide {
    transform: scale(0.55);
  }
  .hmBenefitSlider .swiper-slide.swiper-slide-active {
    margin-right: 0 !important;
  }
  .benefit-slider-area {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58%;
    left: 45%;
    margin-top: 0;
  }
  .dot-pagination {
    position: relative;
    left: 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 25px;
  }
  .dot-pagination .swiper-pagination-bullet {
    height: 8px;
    background-color: #c9cfd8;
    width: 8px;
    opacity: 1;
    transition: all 320ms ease-in-out;
  }
  .dot-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #788e72;
    height: 12px;
    width: 12px;
  }
}
@media all and (min-width: 992px) {
  .hm-benefit-sec {
    position: relative;
    margin: 150px 0;
  }
  .hm-benefit-sec .sec-content {
    max-width: 35%;
  }
  .benefit-slider-area {
    width: 60%;
    left: 40%;
  }
  .hmBenefitSlider .swiper-slide.swiper-slide-active {
    margin-right: -15px !important;
  }
  .benefit-box {
    padding: 50px 30px 50px 35px;
  }
}
@media all and (min-width: 1200px) {
  .hm-benefit-sec {
    margin: 200px 0;
  }
  .hm-benefit-sec .sec-content {
    max-width: 31%;
  }
  .dot-pagination {
    margin-top: 40px;
  }
  .dot-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
  }
  .dot-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    height: 14px;
    width: 14px;
  }
  .hmBenefitSlider .swiper-slide {
    transform: scale(0.45);
  }
  .hmBenefitSlider .swiper-slide.swiper-slide-active {
    margin-right: 0;
  }
  .benefit-box {
    padding: 75px 40px;
  }
  .benefit-icon {
    width: 130px;
  }
  .benefit-content {
    margin-top: 50px;
  }
  .benefit-content span {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 1400px) {
  .hm-benefit-sec {
    margin: 250px 0;
  }
  .benefit-icon {
    width: 160px;
  }
  .benefit-content {
    margin-top: 70px;
  }
  .benefit-content span {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .benefit-content p {
    font-size: 19px;
  }
}
@media all and (min-width: 1700px) {
  .hm-benefit-sec {
    margin: 300px 0;
  }
  .hmBenefitSlider .swiper-slide {
    transform: scale(0.52);
  }
  .hmBenefitSlider .swiper-slide.swiper-slide-active {
    margin-right: 0 !important;
  }
  .benefit-box {
    padding: 100px 60px;
  }
  .benefit-content p {
    font-size: 20px;
  }
}
/* =======================================
======= Home Products Area Styles ========
======================================= */
.hm-product-flex-area .row {
  --bs-gutter-y: 14px;
  --bs-gutter-x: 14px;
}
.hm-product-flex-area .row > * {
  --bs-gutter-x: 14px;
}
.hm-product-flex-area .flex-spacing {
  margin-top: 28px;
}

.hm-product-item {
  position: relative;
  height: 100%;
}
.hm-product-item .hm-product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Comfortaa", sans-serif;
  font-size: 18px;
  line-height: 1.42857;
  color: #fff;
  opacity: 0;
  transform: scale(0);
  transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
}
.hm-product-item:hover .hm-product-overlay {
  opacity: 1;
  transform: scale(1);
}

@media all and (min-width: 992px) {
  .hm-product-flex-area {
    margin-top: 40px;
  }
  .hm-product-item .hm-product-overlay {
    font-size: 22px;
  }
}
@media all and (min-width: 1200px) {
  .hm-product-flex-area .row {
    --bs-gutter-y: 20px;
    --bs-gutter-x: 20px;
  }
  .hm-product-flex-area .row > * {
    --bs-gutter-x: 20px;
  }
  .hm-product-flex-area .flex-spacing {
    margin-top: 40px;
  }
  .hm-product-item .hm-product-overlay {
    font-size: 24px;
  }
}
/* =======================================
====== Home Innovation Area Styles =======
======================================= */
.innovation-flex-area {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  row-gap: 20px;
}

.innovation-single-item {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  z-index: 1;
}
.innovation-single-item::before, .innovation-single-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  transition: opacity 0.5s ease;
}
.innovation-single-item::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 1;
}
.innovation-single-item::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000 100%);
  opacity: 0;
}
.innovation-single-item:hover::before {
  opacity: 0;
}
.innovation-single-item:hover::after {
  opacity: 1;
}
.innovation-single-item:hover .innovation-content {
  transform: translateY(0);
}
.innovation-single-item:hover .innovation-content p {
  opacity: 1;
}
.innovation-single-item:hover .innovation-img {
  transform: scale(1.1);
}

.innovation-img {
  transform: scale(1);
  transition: all 320ms ease-in-out;
  height: 100%;
}

.innovation-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  color: #fff;
  transform: translateY(calc(100% - 183px));
  z-index: 2;
  transition: all 320ms ease-in-out;
}
.innovation-content img {
  height: 60px;
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.innovation-content span {
  font-family: "Comfortaa", sans-serif;
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin: 18px 0 20px 0;
}
.innovation-content p {
  opacity: 0;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.42857;
  transition: all 320ms ease-in-out;
}
.innovation-content p b {
  font-weight: 600;
}
.innovation-content p:not(:last-of-type) {
  margin-bottom: 13px;
}

@media all and (min-width: 760px) {
  .innovation-flex-area {
    flex-direction: row;
  }
}
@media all and (min-width: 992px) {
  .innovation-cta .sec-cta {
    min-width: 100%;
    justify-content: flex-end;
  }
  .innovation-flex-area {
    row-gap: 0;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .innovation-content {
    transform: translateY(calc(100% - 190px));
  }
}
@media all and (min-width: 1400px) {
  .innovation-content {
    padding: 40px 40px 55px 40px;
    transform: translateY(calc(100% - 220px));
  }
  .innovation-content img {
    height: 70px;
    width: 70px;
  }
  .innovation-content span {
    font-size: 26px;
  }
  .innovation-content p {
    font-size: 17px;
  }
}
@media all and (min-width: 1700px) {
  .innovation-flex-area {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .innovation-content span {
    font-size: 30px;
    margin: 25px 0 30px 0;
  }
  .innovation-content p {
    font-size: 18px;
  }
}
/* ================================================
========== Contact Us Form Area Styles ============
================================================ */
.contact-sec {
  margin: 115px 0;
}

.contact-container .contact-title {
  margin-bottom: 50px;
}
.contact-container .contact-title p {
  line-height: 1.35;
}

.contact-form .single-form-item {
  margin-bottom: 12px;
}
.contact-form .single-form-item .form-lable {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 9px;
}
.contact-form .single-form-item .form-control {
  border-color: #b0bfb9;
  padding: 0.594rem 0.9rem;
  line-height: 1;
}
.contact-form .single-form-item .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(120, 142, 114, 0.45);
  border-color: #b0bfb9;
}
.contact-form .single-form-item .form-check-input {
  border-color: #b0bfb9;
}
.contact-form .single-form-item .form-check-input:focus {
  box-shadow: none;
}
.contact-form .single-form-item .form-check-input:checked {
  background-color: #788e72;
}
.contact-form .single-form-item .form-check-label {
  font-size: 15px;
  line-height: 1.75;
}
.contact-form .single-form-item .form-check-label a {
  font-weight: 700;
  transition: all 320ms ease-in-out;
}
.contact-form .single-form-item .form-check-label a:hover {
  color: #788e72;
}
.contact-form .sec-cta {
  border: none;
  background-color: transparent;
  color: #000;
  font-weight: 700;
  margin-top: 20px;
}

@media all and (min-width: 760px) {
  .contact-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .contact-container .contact-title {
    margin-bottom: 0;
    width: 50%;
  }
  .contact-form {
    width: 56%;
    margin-top: 26px;
  }
  .contact-form .single-form-item {
    margin-bottom: 16px;
  }
  .contact-form .single-form-item .form-lable {
    font-size: 16px;
  }
  .contact-form .single-form-item .form-check-label {
    font-size: 16px;
    line-height: 1.6;
  }
  .contact-form .sec-cta {
    font-size: 18px;
  }
}
@media all and (min-width: 992px) {
  .contact-sec {
    margin: 130px 0 90px;
  }
  .contact-form {
    width: 48%;
  }
}
@media all and (min-width: 1200px) {
  .contact-sec {
    margin: 160px 0 90px;
  }
  .contact-container .contact-title p {
    font-size: 18px;
  }
  .contact-form {
    width: 44%;
  }
  .contact-form .single-form-item {
    margin-bottom: 18px;
  }
  .contact-form .single-form-item .form-lable {
    font-size: 18px;
  }
  .contact-form .single-form-item .form-check-label {
    font-size: 18px;
    line-height: 1.3;
  }
  .contact-form .sec-cta {
    font-size: 20px;
  }
}
@media all and (min-width: 1400px) {
  .contact-sec {
    margin: 180px 0 90px;
  }
  .contact-container {
    -moz-column-gap: 4%;
         column-gap: 4%;
  }
  .contact-form {
    width: 50%;
  }
  .contact-form .single-form-item {
    margin-bottom: 20px;
  }
}
@media all and (min-width: 1600px) {
  .contact-container {
    -moz-column-gap: 10%;
         column-gap: 10%;
  }
  .contact-form {
    width: 42%;
  }
  .contact-form .single-form-item {
    margin-bottom: 22px;
  }
}
@media all and (min-width: 1700px) {
  .contact-sec {
    margin: 195px 0 90px;
  }
  .contact-form .single-form-item {
    margin-bottom: 24px;
  }
}
/* ================================================
======== Contact Us Location Area Styles ==========
================================================ */
.loc-sec {
  padding: 70px 0;
  background-color: #f0f7f3;
}

.loc-title {
  margin-bottom: 50px;
}

.loc-list {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}
.loc-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.loc-list li img {
  width: 23px;
  margin-right: 10px;
}
.loc-list li h4 {
  font-family: "Comfortaa", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #788e72;
}
.loc-list li a {
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  color: #000;
  line-height: 1.42857;
}
.loc-list .number-details {
  margin-top: 10px;
}
.loc-list .number-details li img {
  width: 16px;
  margin-right: 5px;
}

@media all and (max-width: 371px) {
  .loc-list li a {
    font-size: 13.5px;
  }
}
@media all and (min-width: 760px) {
  .loc-title {
    margin-bottom: 0;
  }
  .loc-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .loc-details .locations {
    margin-top: 15px;
    width: 50%;
  }
  .loc-list li h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .loc-list li a {
    font-size: 16px;
  }
  .loc-list .number-details {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
@media all and (min-width: 992px) {
  .loc-sec {
    padding: 100px 0;
  }
  .loc-details .locations {
    width: 48%;
  }
  .loc-list .number-details {
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .loc-list .number-details li {
    display: flex;
    justify-content: flex-start;
  }
  .loc-list .number-details li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .loc-list .number-details li img {
    width: 19px;
    margin-right: 10px;
  }
}
@media all and (min-width: 1200px) {
  .loc-details .locations {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 75%;
  }
  .loc-list li h4 {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .loc-list .number-details {
    -moz-column-gap: 16px;
         column-gap: 16px;
    margin-top: 15px;
  }
}
@media all and (min-width: 1400px) {
  .loc-details .locations {
    width: 100%;
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
}
@media all and (min-width: 1700px) {
  .loc-sec {
    padding: 130px 0;
  }
  .loc-list li h4 {
    font-size: 24px;
  }
}
/* ================================================
========== About Us Banner Area Styles ============
================================================ */
.banner-spacing {
  padding-top: 120px;
  position: relative;
}

.banner-bkgd::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #e5efe7;
  z-index: 1;
}

.banner-container {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-family: "Comfortaa", sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.banner-description {
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 20px;
  padding-right: 10px;
}

.banner-content {
  padding-bottom: 20px;
}
.banner-content .breadcrumb {
  align-items: center;
  margin-bottom: 10px;
}
.banner-content .breadcrumb .close-arrow {
  border: none;
  background-color: transparent;
  transform: rotate(-133deg);
  opacity: 0.5;
  margin-right: 10px;
}
.banner-content .breadcrumb .close-arrow img {
  height: 18px;
}
.banner-content .breadcrumb .breadcrumb-item {
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  color: #000;
}
.banner-content .breadcrumb .breadcrumb-item.active {
  font-weight: 700;
}
.banner-content .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, "-");
}
.banner-content .breadcrumb .breadcrumb-item a:hover {
  color: #788e72;
}
.banner-content .abt-bnr-img {
  height: 128px;
  width: auto;
}

.about-b-content {
  padding-bottom: 41px;
}

.banner-img img {
  -o-object-fit: contain;
     object-fit: contain;
}

.bn-ht {
  height: 201px;
}

.b-ht {
  height: 220px;
}

.t-ht {
  height: 167px;
}

.mbn-img {
  width: 100%;
  margin: auto;
}

@media all and (max-width: 576px) and (min-height: 670px) and (max-height: 750px) {
  .banner-spacing {
    padding-top: 150px;
  }
  .banner-description {
    font-size: 15px;
  }
  .banner-img {
    padding-top: 18px;
  }
  .about-b-content {
    padding-bottom: 56px;
  }
}
@media all and (min-width: 760px) {
  .banner-spacing {
    padding-top: 140px;
  }
  .banner-bkgd::after {
    width: 240px;
  }
  .banner-container {
    align-items: flex-end;
  }
  .banner-content {
    padding-bottom: 85px;
  }
  .banner-content .breadcrumb {
    margin-bottom: 17px;
  }
  .banner-title {
    font-size: 38px;
  }
  .banner-description {
    font-size: 16px;
  }
  .banner-img {
    position: relative;
    left: -40%;
    width: 140%;
    max-width: 140%;
  }
  .about-b-content {
    padding-bottom: 170px;
  }
  .bn-ht {
    height: 260px;
  }
  .t-ht {
    height: 243px;
  }
  .mbn-img {
    width: 300px;
    left: -40px;
  }
}
@media all and (min-width: 992px) {
  .banner-spacing {
    padding-top: 180px;
  }
  .banner-bkgd::after {
    width: 360px;
  }
  .banner-description {
    line-height: 1.4;
    margin-bottom: 25px;
  }
  .banner-content {
    padding-bottom: 135px;
  }
  .banner-content .breadcrumb .close-arrow {
    margin-right: 10px;
  }
  .banner-content .breadcrumb .close-arrow img {
    height: 30px;
  }
  .banner-content .breadcrumb .breadcrumb-item {
    font-size: 18px;
  }
  .banner-content .abt-bnr-img {
    height: 210px;
    width: auto;
  }
  .banner-img {
    left: -10%;
    width: 110%;
    max-width: 110%;
  }
  .about-b-content {
    padding-bottom: 250px;
  }
  .bn-ht {
    height: 400px;
  }
  .b-ht {
    height: 335px;
  }
  .t-ht {
    height: 410px;
  }
  .mbn-img {
    width: 400px;
    left: 0;
    margin-right: 0;
  }
}
@media all and (min-width: 1200px) {
  .banner-bkgd::after {
    width: 420px;
  }
  .banner-title {
    font-size: 46px;
    margin-bottom: 15px;
  }
  .banner-description {
    font-size: 17px;
    margin-bottom: 45px;
  }
  .banner-content {
    padding-bottom: 180px;
  }
  .banner-content .breadcrumb {
    margin-bottom: 20px;
    --bs-breadcrumb-item-padding-x: 0.65rem;
  }
  .banner-content .breadcrumb .close-arrow {
    margin-right: 14px;
  }
  .banner-content .breadcrumb .close-arrow img {
    height: 34px;
  }
  .about-b-content {
    padding-bottom: 255px;
  }
  .bn-ht {
    height: 415px;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
  }
  .b-ht {
    height: 402px;
  }
  .t-ht {
    height: 490px;
  }
  .mbn-img {
    width: 460px;
  }
}
@media all and (min-width: 1400px) {
  .banner-spacing {
    padding-top: 200px;
  }
  .banner-title {
    font-size: 50px;
  }
  .banner-description {
    font-size: 19px;
  }
  .banner-content {
    padding-bottom: 220px;
  }
  .banner-content .breadcrumb {
    margin-bottom: 25px;
    --bs-breadcrumb-item-padding-x: 0.75rem;
  }
  .banner-content .breadcrumb .breadcrumb-item {
    font-size: 20px;
  }
  .banner-img {
    top: -40px;
    max-width: 100%;
    width: 100%;
    left: 0;
  }
  .bn-ht {
    top: 0;
  }
  .mbn-img {
    width: 500px;
    top: 0;
  }
}
@media all and (min-width: 1700px) {
  .banner-spacing {
    padding-top: 250px;
  }
  .banner-bkgd::after {
    width: 610px;
  }
  .banner-title {
    font-size: 60px;
  }
  .banner-description {
    font-size: 20px;
    max-width: 86%;
  }
  .banner-content {
    padding-bottom: 250px;
  }
  .banner-content .breadcrumb .breadcrumb-item {
    font-size: 22px;
  }
  .banner-content .breadcrumb .close-arrow {
    position: relative;
    top: -3px;
    margin-right: 20px;
  }
  .banner-content .banner-img {
    top: 0;
  }
  .banner-content .abt-bnr-img {
    height: 300px;
  }
  .about-b-content {
    padding-bottom: 255px;
  }
  .bn-ht {
    height: 460px;
  }
  .b-ht {
    height: 410px;
  }
  .t-ht {
    height: 635px;
  }
  .mbn-img {
    width: 598px;
  }
}
/* ================================================
======= About Us Company Value Area Styles ========
================================================ */
.company-values .value-cards {
  display: grid;
}

.card-item {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 500px;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff 0%, #ebedec 38%, #788e72 100%);
  transition: background 0.8s ease-in-out;
}
.card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-image: url(../img/foam-bkgd.png);
  background-size: cover;
  background-position: center;
  transition: transform 1050ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.1;
}
.card-item .card-title {
  margin: 30px 0 15px;
}
.card-item:hover, .card-item:focus {
  align-items: center;
  background: linear-gradient(to bottom, #bfd0c7 0%, #b0bfb9 43%, #788e72 100%);
}
.card-item:hover .card-content, .card-item:focus .card-content {
  transform: translateY(0);
}
.card-item:hover .card-detail, .card-item:focus .card-detail {
  opacity: 1;
  transform: translateY(0);
}
.card-item:hover::before {
  transform: scale(1.1);
}

.card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
  transform: translateY(calc(100% - 270px));
}
.card-content img {
  height: 120px;
  width: auto;
}

.card-detail {
  opacity: 0;
  transform: translateY(16px);
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), opacity 700ms cubic-bezier(0.19, 1, 0.22, 1);
  margin-bottom: 0;
}

@media all and (min-width: 576px) {
  .card-item {
    height: 650px;
  }
  .card-detail {
    padding: 0 50px;
  }
}
@media all and (min-width: 760px) {
  .card-item {
    height: 680px;
  }
  .card-item .card-content {
    transform: translateY(calc(100% - 300px));
  }
}
@media all and (min-width: 992px) {
  .company-values .value-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-item {
    height: 560px;
  }
  .card-detail {
    padding: 0;
  }
}
@media all and (min-width: 1200px) {
  .card-item {
    height: 660px;
  }
  .card-item .card-content {
    transform: translateY(calc(100% - 350px));
  }
  .card-item .card-content img {
    height: 145px;
  }
  .card-detail {
    padding: 15px;
  }
}
@media all and (min-width: 1700px) {
  .card-item {
    height: 709px;
  }
}
/* ================================================
======= About Us Our Story Area Styles ========
================================================ */
@media all and (min-width: 992px) {
  .ab-story-container {
    justify-content: space-between;
  }
}
/* ================================================
========= About Us Our Team Area Styles ==========
================================================ */
.our-team {
  padding: 60px 0;
  background-color: #f0f7f3;
}

.ot-pr-cards {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-top: 50px;
}

.pr-card .pr-detail {
  margin-top: 25px;
}
.pr-card .pr-detail h4 {
  font-size: 22px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
}
.pr-card .pr-detail span {
  font-size: 16px;
}
.pr-card .social-pr {
  height: 25px;
}
.pr-card .top-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.pr-card .top-info .n-post {
  color: #000;
}

@media all and (min-width: 576px) {
  .pr-card .pr-detail h4 {
    font-size: 18px;
  }
  .pr-card .pr-detail span {
    font-size: 15px;
  }
}
@media all and (min-width: 760px) {
  .our-team {
    padding: 100px 0;
  }
  .ot-top-area {
    text-align: center;
  }
  .ot-pr-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 70px 50px;
  }
  .pr-card {
    width: calc(50% - 25px);
  }
  .pr-card .pr-detail p {
    display: -webkit-box;
    line-clamp: 7;
    -webkit-line-clamp: 7;
    box-orient: vertical;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
  }
}
@media all and (min-width: 992px) {
  .our-team {
    padding: 115px 0;
  }
  .pr-card {
    width: calc(33.3333333333% - 34px);
  }
}
@media all and (min-width: 1200px) {
  .our-team {
    padding: 130px 0;
  }
  .ot-pr-cards {
    gap: 90px 75px;
    margin-top: 70px;
  }
  .pr-card {
    width: calc(33.3333333333% - 50px);
  }
  .pr-card .pr-detail {
    margin-top: 30px;
  }
  .pr-card .pr-detail h4 {
    font-size: 20px;
  }
  .pr-card .pr-detail span {
    font-size: 16px;
  }
  .pr-card .top-info {
    margin-bottom: 21px;
  }
  .pr-card .social-pr {
    height: 27px;
  }
}
@media all and (min-width: 1400px) {
  .ot-pr-cards {
    gap: 95px 88px;
  }
  .pr-card {
    width: calc(33.3333333333% - 59px);
  }
}
@media all and (min-width: 1600px) {
  .our-team {
    padding: 150px 0;
  }
  .ot-pr-cards {
    margin-top: 83px;
  }
  .pr-card .pr-detail h4 {
    font-size: 22px;
  }
}
/* ================================================
======== About Us Our Clinte Area Styles ==========
================================================ */
.cnt-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 25px;
}
.cnt-logos .cnt-logo {
  width: calc(50% - 7px);
}

@media all and (min-width: 760px) {
  .cnt-top {
    text-align: center;
  }
  .cnt-logos {
    gap: 15px;
    margin-top: 30px;
  }
  .cnt-logos .cnt-logo {
    width: calc(33.3333333333% - 10px);
  }
}
@media all and (min-width: 992px) {
  .cnt-logos {
    gap: 16px;
  }
  .cnt-logos .cnt-logo {
    width: calc(33.3333333333% - 11px);
  }
}
@media all and (min-width: 1200px) {
  .cnt-logos {
    -moz-column-gap: 45px;
         column-gap: 45px;
    max-width: 80%;
    margin: 0 auto;
    margin-top: 45px;
  }
  .cnt-logos .cnt-logo {
    width: calc(33.3333333333% - 30px);
  }
}
@media all and (min-width: 1600px) {
  .cnt-logos {
    margin-top: 55px;
    max-width: 90%;
  }
}
/* ================================================
======== About Us Connect Us Area Styles ==========
================================================ */
.connect-top-area {
  margin-bottom: 50px;
}

.connect-items {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.connect-items .connect-item .sec-cta {
  font-size: 15.9px;
  font-weight: 700;
  color: #000;
}
.connect-items .connect-item p {
  font-size: 14px;
  line-height: 1.35;
  margin-top: 10px;
}

@media all and (min-width: 576px) {
  .connect-items {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 20px;
  }
  .connect-items .connect-item {
    width: calc(50% - 10px);
  }
}
@media all and (min-width: 760px) {
  .connect-items {
    gap: 30px 21px;
  }
  .connect-items .connect-item {
    width: calc(33.3333333333% - 14px);
  }
  .connect-items .connect-item .sec-cta {
    font-size: 18px;
  }
  .connect-items .connect-item p {
    font-size: 15px;
    margin-top: 14px;
  }
  .connect-items .connect-item p br {
    display: none;
  }
}
@media all and (min-width: 992px) {
  .connect-top-area {
    margin-bottom: 80px;
  }
  .connect-items {
    gap: 0 37px;
  }
  .connect-items .connect-item {
    width: calc(33.3333333333% - 25px);
  }
}
@media all and (min-width: 1200px) {
  .connect-top-area {
    margin-bottom: 90px;
  }
  .connect-items {
    margin-left: 160px;
    gap: 0 46px;
  }
  .connect-items .connect-item {
    width: calc(33.3333333333% - 31px);
  }
  .connect-items .connect-item .sec-cta {
    font-size: 19px;
  }
  .connect-items .connect-item p {
    font-size: 16px;
    margin-top: 17px;
  }
}
@media all and (min-width: 1400px) {
  .connect-items {
    margin-left: 200px;
    gap: 0 100px;
    justify-content: flex-end;
  }
  .connect-items .connect-item {
    width: calc(33.3333333333% - 77px);
  }
}
@media all and (min-width: 1600px) {
  .connect-top-area {
    margin-bottom: 150px;
  }
  .connect-items {
    gap: 0 115px;
    margin-left: 230px;
  }
  .connect-items .connect-item {
    width: calc(33.3333333333% - 117px);
  }
  .connect-items .connect-item .sec-cta {
    font-size: 19.5px;
  }
}
/* =======================================================
======== Products Media & Materials Area Styles ==========
======================================================= */
.media-and-materials {
  margin-top: 100px;
}

.media-sec {
  width: 100%;
}
.media-sec .media-vdo {
  position: relative;
}
.media-sec .media-vdo #productVideo {
  width: 100%;
  cursor: pointer;
}
.media-sec .sec-cta {
  color: #000;
  margin-top: 30px;
}

.media-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.media-controls .control-button {
  background-color: transparent;
  border: none;
}
.media-controls .control-button img {
  width: 30px;
}

.hidden {
  display: none;
}

.materials-sec {
  background-color: #e5efe7;
  padding: 30px 15px 60px;
  margin-top: 50px;
}
.materials-sec .m-sec-slide .m-sec-img {
  width: 86%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.materials-sec .m-sec-slide .m-sec-content .sec-title {
  color: #788e72;
}
.materials-sec .swiper-material {
  position: relative;
  bottom: -17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #788e72;
  height: 1px;
  width: 95%;
  margin: 0 auto;
}
.materials-sec .swiper-material .swiper-pagination-bullet {
  height: 8px;
  width: 8px;
  opacity: 1;
  background: #bfd0c7;
  margin: 0;
}
.materials-sec .swiper-material .swiper-pagination-bullet-active {
  height: 11px;
  width: 11px;
  background: #788e72;
}

@media all and (min-width: 760px) {
  .media-materials-container {
    display: flex;
    justify-content: space-between;
  }
  .media-sec {
    width: 35%;
  }
  .materials-sec {
    width: 60%;
    margin-top: 0;
    padding: 35px 25px 70px;
  }
  .materials-sec .m-sec-slide .m-sec-img {
    width: 75%;
    margin: 0 0 40px;
  }
}
@media all and (min-width: 992px) {
  .media-and-materials {
    margin-top: 130px;
  }
  .materials-sec {
    padding: 35px 25px 0px;
  }
  .materials-sec .swiper-material {
    bottom: 30px;
  }
  .materials-sec .swiper-material .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
  }
  .materials-sec .swiper-material .swiper-pagination-bullet-active {
    height: 16px;
    width: 16px;
  }
  .materials-sec .m-sec-slide {
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding-bottom: 80px;
  }
  .materials-sec .m-sec-slide .m-sec-img {
    width: 45%;
    position: absolute;
    left: 0;
    top: 35px;
    margin: 0;
  }
  .materials-sec .m-sec-slide .m-sec-img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .materials-sec .m-sec-slide .m-sec-content {
    width: 68%;
    text-align: right;
  }
  .materials-sec .m-sec-slide .m-sec-content .sec-title {
    margin-bottom: 0;
  }
  .materials-sec .m-sec-slide .m-sec-content .sec-description {
    font-size: 16px;
    margin-left: 70px;
  }
}
@media all and (min-width: 1200px) {
  .media-sec .sec-cta {
    margin-top: 40px;
  }
  .materials-sec {
    padding: 40px 30px 0 25px;
  }
  .materials-sec .swiper-material {
    bottom: 40px;
  }
  .materials-sec .m-sec-slide {
    padding-bottom: 175px;
  }
  .materials-sec .m-sec-slide .m-sec-img {
    width: 50%;
  }
}
@media all and (min-width: 1400px) {
  .media-and-materials {
    margin-top: 150px;
  }
  .media-sec {
    width: 30%;
  }
  .materials-sec {
    width: 66%;
  }
  .materials-sec .m-sec-slide {
    padding-bottom: 225px;
  }
  .materials-sec .m-sec-slide .m-sec-img {
    left: 25px;
  }
  .materials-sec .m-sec-slide .m-sec-content .sec-description {
    font-size: 18px;
    margin-left: 150px;
  }
}
@media all and (min-width: 1600px) {
  .materials-sec {
    padding: 55px 36px 0 31px;
  }
  .materials-sec .m-sec-slide {
    padding-bottom: 270px;
  }
  .materials-sec .m-sec-slide .m-sec-content .sec-description {
    margin-left: 195px;
  }
}
/* =======================================================
=========== Products product info Area Styles ============
======================================================= */
.product-item-first-sec {
  margin-top: 50px;
}

.p-info-container {
  margin-bottom: 30px;
}
.p-info-container .p-info-content {
  margin-top: 30px;
}

@media all and (min-width: 760px) {
  .product-item-first-sec {
    position: relative;
    margin-top: 0;
  }
  .p-info-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
  }
  .p-info-container .p-info-img {
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
  }
  .p-info-container .p-info-img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-info-container .p-info-content {
    width: 50%;
    margin-top: 50px;
    padding: 0 20px 30px 30px;
  }
}
@media all and (min-width: 992px) {
  .p-info-container .p-info-content {
    padding: 0 20px 90px 60px;
    margin-top: 70px;
  }
}
@media all and (min-width: 1200px) {
  .p-info-container .p-info-content {
    padding: 0 35px 100px 60px;
    margin-top: 100px;
  }
}
@media all and (min-width: 1400px) {
  .p-info-container .p-info-content {
    padding: 0px 45px 180px 80px;
    margin-top: 140px;
  }
  .p-info-container .p-info-img img {
    -o-object-position: top;
       object-position: top;
  }
}
@media all and (min-width: 1700px) {
  .p-info-container .p-info-content {
    padding: 0px 50px 220px 90px;
  }
}
/* =======================================================
=========== Products process info Area Styles ============
======================================================= */
.p-process-sec {
  margin-bottom: 60px;
}

.p-process-single-item {
  margin-top: 50px;
}

.p-process-content {
  margin: 30px 0;
}

@media all and (min-width: 760px) {
  .p-process-sec {
    margin-bottom: 100px;
  }
  .p-process-single-item {
    display: flex;
    margin-top: 0;
  }
  .p-process-single-item .p-process-img {
    width: 50%;
  }
  .p-process-single-item .p-process-img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-process-single-item .p-process-content {
    width: 50%;
    margin: 0;
    padding: 30px 20px 10px;
  }
}
@media all and (min-width: 992px) {
  .p-process-single-item .p-process-content {
    padding: 70px 30px 50px;
  }
}
@media all and (min-width: 1200px) {
  .p-process-sec {
    margin-bottom: 130px;
  }
  .p-process-single-item .p-process-content {
    padding: 80px 65px;
  }
}
@media all and (min-width: 1700px) {
  .p-process-sec {
    margin-bottom: 160px;
  }
  .p-process-single-item .p-process-content {
    padding: 68px 70px 90px 70px;
  }
}
/* =======================================================
=========== Products process video Area Styles ===========
======================================================= */
.p-video-container {
  position: relative;
  height: 30dvh;
}
.p-video-container #processVideo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.p-video-container .media-controls .control-button img {
  width: 40px;
}

@media all and (min-width: 760px) {
  .p-video-container {
    height: 36dvh;
  }
}
@media all and (min-width: 992px) {
  .p-video-container {
    height: 63dvh;
  }
}
@media all and (min-width: 1200px) {
  .p-video-container {
    height: 72dvh;
  }
  .p-video-container .media-controls .control-button img {
    width: 60px;
  }
}
@media all and (min-width: 1400px) {
  .p-video-container {
    height: 80dvh;
  }
}
@media all and (min-width: 1700px) {
  .p-video-container .media-controls .control-button img {
    width: 75px;
  }
}
/* =======================================================
=========== Products Product Tabs Area Styles ============
======================================================= */
.p-tab-container .tab-images {
  margin-bottom: 25px;
  height: 450px;
}
.p-tab-container .tab-images .tab-img {
  transition: all 320ms ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-tab-container .tab-details .accordion {
  --bs-accordion-btn-icon-width: 1.7rem;
}
.p-tab-container .tab-details .accordion-button {
  font-family: "Comfortaa", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #b3b3b3;
  --bs-accordion-btn-padding-x: 10px;
}
.p-tab-container .tab-details .accordion-button:focus {
  box-shadow: none;
}
.p-tab-container .tab-details .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  font-weight: 700;
  color: #788e72;
}
.p-tab-container .tab-details .accordion-button::after {
  background-image: url(../img/accordian-arrow.svg);
  opacity: 0.6;
}
.p-tab-container .tab-details .accordion-button:not(.collapsed)::after {
  background-image: url(../img/accordian-arrow.svg);
  transform: rotate(45deg);
  opacity: 1;
}
.p-tab-container .tab-details .sec-cta {
  margin-top: 25px;
  font-weight: 700;
}
.p-tab-container .accordion-body {
  --bs-accordion-body-padding-y: 0;
  --bs-accordion-body-padding-x: 10px;
}

@media all and (min-width: 575px) {
  .p-tab-container .tab-images {
    height: 500px;
  }
}
@media all and (min-width: 760px) {
  .p-tab-container {
    display: flex;
    margin-top: 35px;
  }
  .p-tab-container .tab-images {
    margin-bottom: 0;
    width: 50%;
  }
  .p-tab-container .tab-details {
    padding-left: 20px;
    width: 62%;
  }
  .p-tab-container .tab-details .accordion-button {
    --bs-accordion-btn-padding-x: 16px;
  }
  .p-tab-container .accordion-body {
    --bs-accordion-body-padding-x: 16px;
  }
}
@media all and (min-width: 992px) {
  .p-tab-container {
    margin-top: 45px;
  }
  .p-tab-container .tab-images {
    height: 610px;
  }
  .p-tab-container .tab-details {
    padding-left: 30px;
  }
  .p-tab-container .tab-details .accordion-button {
    font-size: 22px;
    padding: 25px 30px;
  }
  .p-tab-container .tab-details .accordion-button::after {
    --bs-accordion-btn-icon-width: 2.15rem;
  }
  .p-tab-container .tab-details .accordion-body {
    --bs-accordion-body-padding-x: 30px;
    padding-bottom: 20px;
  }
}
@media all and (min-width: 1200px) {
  .p-tab-container {
    margin-top: 55px;
  }
  .p-tab-container .tab-images {
    height: 680px;
  }
  .p-tab-container .tab-details {
    width: 55%;
    padding-left: 40px;
  }
  .p-tab-container .tab-details .accordion-button {
    font-size: 27px;
  }
  .p-tab-container .tab-details .accordion-button::after {
    --bs-accordion-btn-icon-width: 2.4rem;
  }
}
@media all and (min-width: 1400px) {
  .p-tab-container {
    margin-top: 65px;
  }
  .p-tab-container .tab-images {
    height: 780px;
  }
  .p-tab-container .tab-details {
    padding-left: 50px;
  }
  .p-tab-container .tab-details .accordion-button {
    font-size: 28px;
  }
  .p-tab-container .tab-details .accordion-button::after {
    --bs-accordion-btn-icon-width: 2.65rem;
  }
}
@media all and (min-width: 1700px) {
  .p-tab-container .tab-images {
    height: 800px;
  }
  .p-tab-container .tab-details {
    padding-left: 50px;
  }
  .p-tab-container .tab-details .accordion-button {
    font-size: 35px;
  }
  .p-tab-container .tab-details .accordion-button:not(.collapsed) {
    font-size: 35px;
  }
}
/* =======================================================
========= Products Home Decor Slider Area Starts =========
======================================================= */
.pd-slider-sec {
  margin: 90px 0;
  background-color: #f0f7f3;
  padding: 60px 0 40px;
}

.pd-slider .swiper-slide {
  width: calc(74% - 20px);
  height: 380px;
  overflow: visible;
  transition: all 340ms ease-in-out;
  transform: scale(0.8);
}
.pd-slider .swiper-slide .pd-slide-img {
  height: 100%;
}
.pd-slider .swiper-slide .pd-slide-img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.pd-slider .swiper-slide.swiper-slide-active {
  transform: scale(1);
}
.pd-slider .swiper-pd {
  position: relative;
  bottom: -30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
.pd-slider .swiper-pd .swiper-pagination-bullet {
  height: 8px;
  width: 8px;
  background: #bfd0c7;
}
.pd-slider .swiper-pd .swiper-pagination-bullet-active {
  height: 12px;
  width: 12px;
  background: #788e72;
}

@media all and (min-width: 760px) {
  .pd-slider-sec {
    margin: 120px 0;
    padding: 90px 0 70px;
  }
  .pd-slider .swiper-slide {
    height: 100%;
  }
  .pd-slider .swiper-pd {
    bottom: -45px;
    margin-bottom: 46px;
  }
}
@media all and (min-width: 992px) {
  .pd-slider-sec {
    padding: 100px 0 70px;
  }
  .pd-slider .swiper-slide {
    height: 100%;
  }
  .pd-slider .swiper-pd {
    bottom: -55px;
    margin-bottom: 55px;
  }
}
@media all and (min-width: 1200px) {
  .pd-slider-sec {
    padding: 120px 0 70px;
  }
  .pd-slider .swiper-pd {
    bottom: -65px;
    margin-bottom: 65px;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  .pd-slider .swiper-pd .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
  }
  .pd-slider .swiper-pd .swiper-pagination-bullet-active {
    height: 16px;
    width: 16px;
  }
}
@media all and (min-width: 1400px) {
  .pd-slider-sec {
    padding: 132px 0 70px;
  }
}
/* =======================================================
====== Products Home Decor Advantages Area Starts ========
======================================================= */
.pd-top-area {
  margin-bottom: 40px;
}
.pd-top-area .pd-link {
  margin-top: 50px;
}
.pd-top-area .pd-link .sec-title {
  font-weight: 700;
}
.pd-top-area .pd-link p {
  margin-top: 8px;
}

.pd-items-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
}
.pd-items-container .pd-item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
  padding-top: 30px;
}
.pd-items-container .pd-item img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  display: block;
  margin-bottom: 50px;
}
.pd-items-container .pd-item p {
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
}

@media all and (min-width: 760px) {
  .pd-top-area {
    display: flex;
    justify-content: space-between;
  }
  .pd-top-area .pd-title {
    width: 68%;
  }
  .pd-items-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pd-items-container .pd-item {
    width: calc(33.3333333333% - 15px);
    padding-top: 70px;
  }
  .pd-items-container .pd-item p {
    font-size: 18px;
  }
  .pd-items-container .pd-item img {
    margin-bottom: 60px;
  }
}
@media all and (min-width: 992px) {
  .pd-top-area .pd-title {
    width: 61%;
  }
  .pd-items-container .pd-item {
    width: calc(25% - 15px);
    padding-top: 80px;
  }
  .pd-items-container .pd-item p {
    font-size: 20px;
    padding-bottom: 15px;
  }
  .pd-items-container .pd-item img {
    margin-bottom: 70px;
  }
}
@media all and (min-width: 1200px) {
  .pd-top-area {
    margin-bottom: 50px;
  }
  .pd-top-area .pd-title {
    width: 66%;
  }
  .pd-items-container .pd-item {
    width: calc(25% - 20px);
    padding-top: 100px;
  }
  .pd-items-container .pd-item img {
    height: 90px;
    width: 90px;
    margin-bottom: 95px;
  }
  .pd-items-container .pd-item p {
    font-size: 24px;
  }
}
@media all and (min-width: 1400px) {
  .pd-top-area .pd-title {
    width: 59%;
  }
  .pd-items-container .pd-item {
    padding-top: 120px;
  }
  .pd-items-container .pd-item img {
    height: 100px;
    width: 100px;
    margin-bottom: 110px;
  }
}
@media all and (min-width: 1700px) {
  .pd-top-area .pd-title {
    width: 54%;
  }
  .pd-items-container .pd-item p {
    font-size: 30px;
    padding-bottom: 35px;
  }
}
/* =======================================================
======= Products Home Decor Gallery Area Starts ==========
======================================================= */
.pd-gallery {
  background-color: #f0f7f3;
  padding: 60px 0;
}

.g-top-area {
  margin-bottom: 30px;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.gallery-container .gallery-item img {
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}
.gallery-container .gallery-item .gallery-title {
  font-family: "Comfortaa", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #788e72;
}
.gallery-container .gallery-item p {
  font-size: 15px;
  display: -webkit-box;
  line-clamp: 7;
  -webkit-line-clamp: 7;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media all and (min-width: 760px) {
  .g-top-area {
    margin-bottom: 45px;
    text-align: center;
  }
  .gallery-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  .gallery-container .gallery-item {
    width: calc(50% - 20px);
  }
  .gallery-container .gallery-item img {
    height: 400px;
    margin-bottom: 25px;
  }
  .gallery-container .gallery-item .gallery-title {
    font-size: 20px;
  }
  .gallery-container .gallery-item .ht {
    height: 50px;
  }
  .gallery-container .gallery-item p {
    font-size: 16px;
  }
}
@media all and (min-width: 992px) {
  .pd-gallery {
    padding: 110px 0;
  }
  .gallery-container {
    gap: 45px;
    justify-content: center;
  }
  .gallery-container .gallery-item {
    width: calc(33.3333333333% - 30px);
  }
  .gallery-container .gallery-item img {
    height: 340px;
  }
  .gallery-container .gallery-item .gallery-title {
    font-size: 22px;
  }
}
@media all and (min-width: 1200px) {
  .gallery-container .gallery-item {
    width: calc(25% - 34px);
  }
  .gallery-container .gallery-item .ht {
    height: 52px;
  }
}
@media all and (min-width: 1400px) {
  .gallery-container .gallery-item img {
    height: 370px;
  }
}
@media all and (min-width: 1700px) {
  .gallery-container {
    gap: 60px;
  }
  .gallery-container .gallery-item {
    width: calc(25% - 45px);
  }
  .gallery-container .gallery-item img {
    height: 420px;
  }
  .gallery-container .gallery-item .gallery-title {
    font-size: 24px;
  }
  .gallery-container .gallery-item .ht {
    height: 58px;
  }
}
/* =======================================================
======= Materials Material Spotlight Area Starts =========
======================================================= */
.material-spotlight-sec {
  margin-top: 80px;
  padding: 60px 0;
  background-color: #f0f7f3;
}

.materials-item-container {
  margin-bottom: 50px;
}
.materials-item-container .m-item-content {
  margin-bottom: 30px;
}

.materials-item-bottom .m-bottom-items {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.materials-item-bottom .m-bottom-items li {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: flex-start;
}
.materials-item-bottom .m-bottom-items li .mb-img {
  width: 60px;
}
.materials-item-bottom .m-bottom-items li .mb-cont {
  width: 70%;
}
.materials-item-bottom .m-bottom-items li .mb-cont span {
  font-family: "Comfortaa", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #788e72;
}
.materials-item-bottom .m-bottom-items li .mb-cont p {
  margin-bottom: 0;
  font-size: 14px;
}

@media all and (min-width: 760px) {
  .material-spotlight-sec {
    padding: 100px 0 80px;
    margin-top: 100px;
  }
  .materials-item-container {
    display: flex;
    margin-bottom: 80px;
  }
  .materials-item-container .m-item-content {
    width: 50%;
    margin-bottom: 0;
    padding-right: 25px;
  }
  .materials-item-container .m-item-content .sec-cta {
    margin-top: 35px;
  }
  .materials-item-container .m-item-img {
    width: 50%;
  }
  .materials-item-container .m-item-img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .materials-item-bottom .m-bottom-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .materials-item-bottom .m-bottom-items li {
    width: 50%;
  }
  .materials-item-bottom .m-bottom-items li .mb-cont {
    width: 80%;
  }
}
@media all and (min-width: 992px) {
  .materials-item-container .m-item-content {
    padding: 0 35px 20px 0;
  }
  .materials-item-bottom .m-bottom-items li {
    width: 33.3333333333%;
  }
  .materials-item-bottom .m-bottom-items li .mb-cont {
    width: 77%;
  }
  .materials-item-bottom .m-bottom-items li .mb-cont p {
    margin-top: 5px;
  }
}
@media all and (min-width: 1200px) {
  .material-spotlight-sec {
    padding: 120px 0 88px;
    margin-top: 110px;
  }
  .materials-item-container {
    margin-bottom: 100px;
  }
  .materials-item-container .m-item-content {
    padding: 0 55px 40px 0;
  }
  .materials-item-bottom .m-bottom-items {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .materials-item-bottom .m-bottom-items li {
    width: calc(33.3333333333% - 10px);
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .materials-item-bottom .m-bottom-items li .mb-cont {
    width: 75%;
  }
  .materials-item-bottom .m-bottom-items li .mb-cont span {
    font-size: 20px;
  }
  .materials-item-bottom .m-bottom-items li .mb-cont p {
    font-size: 16px;
  }
  .materials-item-bottom .m-bottom-items li .mb-img {
    width: 70px;
  }
}
@media all and (min-width: 1400px) {
  .materials-item-container {
    margin-bottom: 125px;
  }
  .materials-item-container .m-item-content {
    padding: 0 70px 50px 0;
  }
  .materials-item-bottom .m-bottom-items {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .materials-item-bottom .m-bottom-items li {
    width: calc(33.3333333333% - 7px);
  }
  .materials-item-bottom .m-bottom-items li .mb-cont span {
    font-size: 22px;
  }
  .materials-item-bottom .m-bottom-items li .mb-cont p {
    font-size: 18px;
  }
}
@media all and (min-width: 1400px) {
  .materials-item-container .m-item-content {
    padding: 0 105px 50px 0;
  }
}
@media all and (min-width: 1700px) {
  .material-spotlight-sec {
    margin-top: 125px;
  }
  .materials-item-bottom .m-bottom-items li {
    width: calc(33.3333333333% - 7px);
  }
  .materials-item-bottom .m-bottom-items li .mb-cont {
    width: 72%;
  }
  .materials-item-bottom .m-bottom-items li .mb-cont span {
    font-size: 24px;
  }
  .materials-item-bottom .m-bottom-items li .mb-cont p {
    font-size: 20px;
  }
  .materials-item-bottom .m-bottom-items li .mb-img {
    width: 86px;
  }
}
/* =======================================================
========== Materials Material Tabs Area Starts ===========
======================================================= */
.m-tab-container .nav-pills {
  background-color: #e5efe7;
  margin-bottom: 0;
  padding: 0 0;
}
.m-tab-container .nav-pills .nav-link {
  font-family: "Comfortaa", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #788e72;
  text-align: left;
  padding: 25px;
  position: relative;
  background-color: transparent;
  transition: all 320ms ease-in-out;
  border-radius: 0;
}
.m-tab-container .nav-pills .nav-link:not(:last-of-type)::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #c9c7cb;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.6;
}
.m-tab-container .nav-pills .nav-link span {
  font-size: 14px;
  display: block;
  font-weight: 300;
}
.m-tab-container .nav-pills .nav-link.active {
  font-weight: 700;
  color: #fff;
  background-color: #788e72;
}

.tab-content .m-content-area .inner-content {
  margin-top: 20px;
}
.tab-content .m-content-area .inner-content .tab-title {
  font-family: "Comfortaa", sans-serif;
  color: #788e72;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.tab-content .m-content-area .inner-content .sec-description {
  margin-bottom: 25px;
}
.tab-content .m-content-area .inner-content .sec-cta {
  font-weight: 700;
}

@media all and (min-width: 760px) {
  .m-tabs-sec {
    position: relative;
  }
  .m-tab-container {
    display: flex;
    justify-content: space-between;
  }
  .m-tab-container .nav-pills {
    width: 50%;
    background-color: unset;
    padding: 55px 0;
  }
  .m-tab-container .nav-pills::before {
    content: "";
    width: 50%;
    height: 100%;
    background-color: #e5efe7;
    position: absolute;
    left: 0;
    top: 0;
  }
  .m-tab-container .nav-pills .nav-link {
    padding: 30px 0;
  }
  .m-tab-container .nav-pills .nav-link.active {
    background-color: transparent;
    color: #788e72;
  }
  .tab-content {
    width: 49%;
  }
  .tab-content .m-content-area .inner-content {
    padding: 0 15px;
  }
}
@media all and (min-width: 992px) {
  .m-tab-container .nav-pills {
    padding: 55px 0;
  }
  .m-tab-container .nav-pills .nav-link {
    font-size: 30px;
    padding: 40px 0;
  }
  .m-tab-container .nav-pills .nav-link span {
    font-size: 16px;
  }
  .tab-content .m-content-area .inner-content {
    margin-top: 30px;
    padding: 0 25px;
  }
  .tab-content .m-content-area .inner-content .tab-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 1200px) {
  .m-tab-container .nav-pills {
    padding: 70px 0;
  }
  .m-tab-container .nav-pills .nav-link {
    font-size: 35px;
    padding: 50px 0;
  }
  .m-tab-container .nav-pills .nav-link span {
    font-size: 18px;
  }
  .tab-content .m-content-area .inner-content {
    margin-top: 35px;
    padding: 0 40px 0 29px;
  }
  .tab-content .m-content-area .inner-content .tab-title {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
@media all and (min-width: 1400px) {
  .m-tab-container .nav-pills {
    padding: 80px 0;
  }
  .tab-content .m-content-area .inner-content {
    margin-top: 40px;
    padding: 0 70px 0 39px;
  }
}
@media all and (min-width: 1700px) {
  .m-tab-container .nav-pills {
    padding: 90px 0;
  }
  .m-tab-container .nav-pills .nav-link {
    font-size: 40px;
    padding: 60px 0;
  }
  .m-tab-container .nav-pills .nav-link span {
    font-size: 20px;
  }
  .tab-content .m-content-area .inner-content {
    padding: 0 90px 0 29px;
  }
  .tab-content .m-content-area .inner-content .tab-title {
    font-size: 40px;
  }
}
.max-char {
  max-width: 20ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media all and (min-width: 760px) {
  .max-char {
    max-width: 25ch;
  }
}
@media all and (min-width: 992px) {
  .max-char {
    max-width: 20ch;
  }
}
@media all and (min-width: 1200px) {
  .max-char {
    max-width: 60ch;
  }
}
@media all and (min-width: 1700px) {
  .mt-banner-sec .banner-description {
    max-width: 91%;
  }
}/*# sourceMappingURL=style.css.map */