/*===========================
     01.COMMON CSS 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lobster&display=swap");
:root {
  --white-color: #FFFFFF;
  --white-color2: #EEEEEE;
  --title-color: #1E1E1E;
  --title-color2: #A0A0A0;
  --title-color3: #191919;
  --paragraph-color: #595959;
  --primary-color: #E5E342;
  --alice-blue-color: #ECF7FF;
  --alabaster-color: #F8F6EE;
  --border-color: #eee;
  --font-dm-sans: "DM Sans", sans-serif;
  --font-lobster: "Lobster", sans-serif;
  --font-kanit: "Kanit", sans-serif;
  --font-eb-garamond: "EB Garamond", serif;
}

/*================================================
02. Mixins Css
=================================================*/
/*================================================
03. Global Css
=================================================*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

input {
  border: none;
  outline: none;
}

button {
  outline: none;
  border: none;
}

i.bx {
  vertical-align: middle;
}

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

a {
  text-decoration: none;
}

p {
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--paragraph-color);
}

.pt-120 {
  padding-top: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pt-120 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .pt-120 {
    padding-top: 90px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pb-120 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pt-90 {
  padding-top: 90px;
}
@media (max-width: 991px) {
  .pt-90 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pt-90 {
    padding-top: 70px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .pb-90 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-10 {
  padding-bottom: 10px;
}

.mt-120 {
  margin-top: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-120 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .mt-120 {
    margin-top: 90px;
  }
}

.mb-120 {
  margin-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mb-120 {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .mb-120 {
    margin-bottom: 90px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

.mt-100 {
  margin-top: 100px !important;
}
@media (max-width: 991px) {
  .mt-100 {
    margin-top: 80px !important;
  }
}

.mb-90 {
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .mb-90 {
    margin-bottom: 70px;
  }
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-10 {
  margin-bottom: 10px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pe-80 {
  padding-right: 80px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-110 {
  padding-left: 110px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .pl-110 {
    padding-left: 70px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .pl-110 {
    padding-left: 40px;
  }
}
@media (max-width: 1199px) {
  .pl-110 {
    padding-left: unset;
  }
}

.mb-60 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

.mb-70 {
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .mb-70 {
    margin-bottom: 40px;
  }
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-44 {
  margin-bottom: 44px;
}
@media (max-width: 991px) {
  .mb-44 {
    margin-bottom: 0px;
  }
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-60 {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .mt-60 {
    margin-top: 40px;
  }
}

.mt-70 {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .mt-70 {
    margin-top: 40px;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-btn {
  border-radius: 5px;
  background-color: var(--primary-color);
  font-family: var(--font-dm-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--title-color);
  line-height: 18.23px;
  line-height: 1;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}
.primary-btn .arrow {
  transform: rotate(0);
  transition: 0.5s;
}
.primary-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--white-color);
  transform-origin: right;
  transform: scalex(0);
  z-index: -1;
  transition: transform 0.7s;
}
.primary-btn:hover::after {
  transform: scalex(1);
  transform-origin: left;
}
.primary-btn:hover .arrow {
  transform: rotate(45deg);
}

.primary-btn2 {
  font-family: var(--font-dm-sans);
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
  background: var(--title-color);
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  gap: 95px;
  margin-top: 60px;
  display: inline-flex;
  letter-spacing: 0.04em;
}
.primary-btn2.offer-banner-btn {
  background: var(--primary-color);
  color: var(--title-color3);
  border: unset;
}
.primary-btn2.offer-banner-btn::after {
  background-color: var(--title-color);
}
.primary-btn2.offer-banner-btn svg path {
  stroke: var(--title-color);
}
.primary-btn2.offer-banner-btn:hover {
  color: var(--white-color);
}
.primary-btn2.offer-banner-btn:hover svg path {
  stroke: var(--white-color);
}
.primary-btn2 .arrow {
  transform: rotate(0);
  transition: 0.5s;
}
.primary-btn2::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  bottom: 0;
  background-color: var(--primary-color);
  transform: scale(0, 1);
  transform-origin: left;
  z-index: -1;
  transition: all 0.5s ease-out 0s;
}
.primary-btn2 svg path {
  stroke: var(--white-color);
}
.primary-btn2:hover {
  color: var(--title-color);
}
.primary-btn2:hover::after {
  transform: scale(1, 1);
}
.primary-btn2:hover svg path {
  stroke: var(--title-color);
}
.primary-btn2:hover .arrow {
  transform: rotate(45deg);
}

.primary-btn3 {
  font-family: var(--font-dm-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0em;
  text-align: left;
  background: #78EB54;
  color: var(--title-color);
  padding: 19px 38px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}
.primary-btn3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--white-color);
  border-radius: 100px;
  transform-origin: right;
  transform: scalex(0);
  z-index: -1;
  transition: transform 0.7s;
}
.primary-btn3 svg path {
  stroke: var(--title-color);
}
.primary-btn3 .arrow {
  transform: rotate(0);
  transition: 0.7s;
}
.primary-btn3:hover {
  color: var(--title-color);
}
.primary-btn3:hover::after {
  transform: scalex(1);
  transform-origin: left;
}
.primary-btn3:hover svg path {
  stroke: var(--title-color);
}
.primary-btn3:hover .arrow {
  transform: rotate(45deg);
}
.primary-btn3.buy-now-btn {
  padding: 15px 30px;
  background: var(--title-color);
  color: var(--white-color);
}
.primary-btn3.buy-now-btn::after {
  background-color: var(--primary-color);
}
.primary-btn3.buy-now-btn svg path {
  stroke: var(--white-color);
}
.primary-btn3.buy-now-btn:hover {
  color: var(--title-color);
}
.primary-btn3.buy-now-btn:hover svg path {
  stroke: var(--title-color);
}
.primary-btn3.buy-now-btn:hover .arrow {
  transform: rotate(45deg);
}

.primary-btn4 {
  font-family: var(--font-red-rose);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0em;
  text-align: left;
  background: #F5F5F5;
  color: var(--text-color);
  padding: 19px 38px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.7s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}
.primary-btn4::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  border-radius: 100px;
  transform-origin: right;
  transform: scalex(0);
  z-index: -1;
  transition: transform 0.7s;
}
.primary-btn4 svg path {
  stroke: var(--title-color);
}
.primary-btn4 .arrow {
  transform: rotate(0);
  transition: 0.7s;
}
.primary-btn4:hover {
  color: var(--title-color);
}
.primary-btn4:hover::after {
  transform: scalex(1);
  transform-origin: left;
}
.primary-btn4:hover svg path {
  stroke: var(--title-color);
}
.primary-btn4:hover .arrow {
  transform: rotate(45deg);
}

.section-title {
  max-width: 580px;
}
.section-title.style-2 {
  max-width: 630px;
}
.section-title span {
  font-family: var(--font-lobster);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: var(--title-color3);
  margin-bottom: 15px;
  display: inline-block;
}
.section-title h2 {
  font-family: var(--font-eb-garamond);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--title-color3);
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 35px;
  }
}
.section-title p {
  font-family: var(--font-dm-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  color: #000000;
  margin-bottom: 0;
}
.section-title ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}
@media (max-width: 767px) {
  .section-title ul {
    gap: 20px;
  }
}
.section-title ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  color: var(--title-color3);
}
.section-title ul li .icon {
  box-shadow: 2px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
  background: var(--white-color);
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*=====================================
  03.Header CSS
========================================*/
header.style-1 {
  position: absolute;
  width: 100%;
  z-index: 999;
  transition: all 0.8s ease-out 0s;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 5%;
}
@media (max-width: 767px) {
  header.style-1 {
    padding: 0;
  }
}
@media (max-width: 991px) {
  header.style-1 .company-logo {
    padding: 15px 0;
  }
}
header.style-1 .company-logo .logo-dark {
  display: block;
}
header.style-1 .company-logo .logo-light {
  display: none;
}
header.style-1 .nav-right .primary-btn {
  border-radius: 0;
}
@media (max-width: 991px) {
  header.style-1 .nav-right .primary-btn {
    display: none;
    visibility: hidden;
  }
}
header.style-1 .nav-right .mobile-menu-btn {
  display: none;
  visibility: hidden;
}
@media (max-width: 991px) {
  header.style-1 .nav-right .mobile-menu-btn {
    display: flex;
    width: 50px;
    flex-direction: column;
    align-items: end;
    visibility: visible;
    cursor: pointer;
    justify-content: center;
    position: relative;
  }
  header.style-1 .nav-right .mobile-menu-btn span {
    height: 3px;
    width: 25px;
    background-color: var(--white-color);
    display: flex;
    transition: transform 0.5s ease-in;
    position: absolute;
    top: 0px;
  }
  header.style-1 .nav-right .mobile-menu-btn span::before {
    transition-duration: 0.5s;
    position: absolute;
    width: 35px;
    height: 3px;
    background-color: var(--white-color);
    content: "";
    top: -10px;
    right: 0;
  }
  header.style-1 .nav-right .mobile-menu-btn span::after {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 3px;
    right: 0;
    background-color: var(--white-color);
    content: "";
    top: 10px;
  }
  header.style-1 .nav-right .mobile-menu-btn.active span {
    background-color: transparent;
  }
  header.style-1 .nav-right .mobile-menu-btn.active span::before {
    transform: rotateZ(45deg) translate(8px, 6px);
    width: 35px;
  }
  header.style-1 .nav-right .mobile-menu-btn.active span::after {
    transform: rotateZ(-45deg) translate(8px, -6px);
    width: 35px;
  }
}
header.style-1 .main-menu {
  display: inline-block;
  position: relative;
}
header.style-1 .main-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.style-1 .main-menu > ul > li {
  display: inline-block;
  position: relative;
  padding: 0 25px;
}
header.style-1 .main-menu > ul > li:hover i {
  color: var(--black-color2);
  font-size: 20px;
}
@media (min-width: 992px) {
  header.style-1 .main-menu > ul > li:first-child {
    padding-left: 0;
  }
  header.style-1 .main-menu > ul > li:first-child a {
    padding-left: 0;
  }
}
header.style-1 .main-menu > ul > li > a {
  color: var(--white-color);
  display: block;
  line-height: 1;
  letter-spacing: 0.4px;
  padding: 35px 0px;
  position: relative;
  font-family: var(--font-dm-sans);
  font-weight: 700;
  line-height: 18.23px;
  text-align: left;
  font-size: 14px;
  transition: all 0.5s ease-out 0s;
  text-transform: uppercase;
}
header.style-1 .main-menu > ul > li i {
  font-size: 20px;
  text-align: center;
  color: var(--title-color);
  font-style: normal;
  position: absolute;
  right: -5px;
  top: 35px;
  z-index: 999;
  cursor: pointer;
  display: none;
  transition: all 0.5s ease-out 0s;
  opacity: 0;
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li i {
    opacity: 1;
  }
}
header.style-1 .main-menu > ul > li i.active {
  color: var(--title-color);
}
header.style-1 .main-menu > ul > li i.active::before {
  content: "\f2ea";
}
header.style-1 .main-menu > ul > li ul.sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  margin: 0;
  display: none;
  min-width: 220px;
  background: var(--dark-white-color);
  box-shadow: 0px 30px 80px rgba(8, 0, 42, 0.08);
  text-align: left;
  transform-origin: top;
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li ul.sub-menu {
    box-shadow: none;
  }
}
header.style-1 .main-menu > ul > li ul.sub-menu > li {
  padding: 0;
  display: block;
  position: relative;
}
header.style-1 .main-menu > ul > li ul.sub-menu > li i {
  position: absolute;
  top: 14px;
  right: 6px;
  display: block;
  color: var(--title-color);
  font-size: 14px;
}
header.style-1 .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
  color: var(--title-color);
  opacity: 1;
  top: 14px;
  font-size: 14px;
  right: 10px;
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
    right: 0;
    top: 8px;
    font-size: 20px;
  }
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a {
  display: block;
  padding: 15px 15px;
  color: var(--title-color);
  font-weight: 400;
  font-family: var(--font-dm-sans);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.3;
  transition: all 0.4s ease-out 0s;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  background: linear-gradient(90deg, #fff, var(--primary-color1), #fff);
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease-in;
  z-index: 1;
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li > a {
    border-color: rgba(233, 228, 228, 0.5);
  }
  header.style-1 .main-menu > ul > li ul.sub-menu > li > a::before {
    background: linear-gradient(90deg, #ddd, #EFB93F, #ddd);
  }
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a:hover {
  color: var(--primary-color);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a:hover::before {
  transform: scale(1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a.active {
  color: var(--primary-color);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a.active::before {
  transform: scale(1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li:last-child a {
  border-bottom: none;
}
header.style-1 .main-menu > ul > li ul.sub-menu > li:last-child a::before {
  display: none;
}
header.style-1 .main-menu > ul > li ul.sub-menu > li:hover > a {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li:hover .dropdown-icon {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li.active > a {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li.active .dropdown-icon {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li .sub-menu {
  left: 220px;
  position: absolute;
  max-width: 230px;
  min-width: 215px;
  background: var(--dark-white-color);
  box-shadow: 0px 30px 80px rgba(8, 0, 42, 0.08);
  top: 0;
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li .sub-menu {
    box-shadow: none;
  }
}
header.style-1 .main-menu > ul > li ul.sub-menu > li .sub-menu::before {
  display: none;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li .sub-menu {
    position: unset;
    max-width: 230px;
    min-width: 215px;
    background: transparent;
    top: 0;
  }
}
header.style-1 .main-menu > ul > li ul.sub-menu > li .sub-menu > li i {
  display: block;
}
@media (min-width: 992px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li:hover > .sub-menu {
    display: block;
    animation: fade-down 0.45s linear;
  }
}
header.style-1 .main-menu > ul > li.menu-item-has-children {
  transition: all 0.55s ease-in-out;
}
@media (min-width: 992px) {
  header.style-1 .main-menu > ul > li:hover > ul.sub-menu {
    display: block;
    animation: fade-down 0.45s linear;
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: scaleY(0);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
  }
}
header.style-1 .main-menu > ul > li:hover > a {
  color: var(--primary-color);
}
header.style-1 .main-menu > ul > li:hover > a::after {
  transform-origin: left center;
  transform: scale(1, 1);
}
header.style-1 .main-menu > ul li.menu-item-has-children > i {
  display: block;
}
@media only screen and (max-width: 991px) {
  header.style-1 .dropdown-icon {
    color: var(--white-color);
  }
  header.style-1 .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    padding: 30px 20px !important;
    z-index: 99999;
    height: 100%;
    overflow: auto;
    background: var(--title-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in;
    border-right: 1px solid rgba(13, 23, 32, 0.0784313725);
  }
  header.style-1 .main-menu.show-menu {
    transform: translateX(0);
  }
  header.style-1 .main-menu .mobile-menu-logo {
    text-align: left;
    padding-top: 20px;
    display: block;
    padding-bottom: 8px;
  }
  header.style-1 .main-menu .menu-list {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  header.style-1 .main-menu > ul {
    float: none;
    text-align: left;
    padding: 5px 0px 20px 0;
  }
  header.style-1 .main-menu > ul li {
    display: block;
    position: relative;
    padding: 5px 5px;
  }
  header.style-1 .main-menu > ul li:first-child {
    padding-left: 5px;
  }
  header.style-1 .main-menu > ul li i {
    display: block;
    color: var(--title-color);
  }
  header.style-1 .main-menu > ul li a {
    padding: 10px 0;
    display: block;
    font-size: 1rem;
  }
  header.style-1 .main-menu > ul li ul.sub-menu {
    position: static;
    min-width: 200px;
    background: 0 0;
    border: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    transform: none;
    transition: none;
    display: none;
    margin-top: 0 !important;
    transform: translateY(0px);
    margin-left: 10px;
  }
  header.style-1 .main-menu > ul li ul.sub-menu > li {
    border-bottom: 1px solid transparent;
  }
  header.style-1 .main-menu > ul li ul.sub-menu > li a {
    font-size: 14px;
    padding: 12px 0px;
  }
  header.style-1 .main-menu > ul li ul.sub-menu > li a:hover {
    color: var(--primary-color);
    margin-left: 10px;
  }
  header.style-1 .main-menu > ul li ul.sub-menu > li a.active {
    color: var(--primary-color);
  }
  header.style-1 .main-menu > ul li ul.sub-menu > li i {
    color: var(--primary-color);
    right: -13px;
  }
  header.style-1 .main-menu > ul li .bi {
    top: 8px;
    font-size: 20px;
    color: var(--title-color);
  }
}

/*=====================================
  04.banner CSS
========================================*/
.banner-section {
  background-image: url(../image/banner-backgraound.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 245px 0 160px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .banner-section {
    padding: 195px 0 120px;
  }
}
@media (max-width: 1399px) {
  .banner-section {
    padding: 195px 0 120px;
  }
}
@media (max-width: 1199px) {
  .banner-section {
    background-position: 60%;
  }
}
@media (max-width: 576px) {
  .banner-section {
    padding: 160px 0 100px;
  }
}
.banner-section .banner-content-wrap .banner-content {
  max-width: 650px;
}
.banner-section .banner-content-wrap .banner-content img {
  margin-bottom: 13px;
}
@media (max-width: 576px) {
  .banner-section .banner-content-wrap .banner-content img {
    width: 55px;
  }
}
.banner-section .banner-content-wrap .banner-content h1 {
  font-family: var(--font-eb-garamond);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .banner-section .banner-content-wrap .banner-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 576px) {
  .banner-section .banner-content-wrap .banner-content h1 {
    font-size: 35px;
  }
}
.banner-section .banner-content-wrap .banner-content h1 span {
  color: #FFCB62;
}
.banner-section .banner-content-wrap .banner-content ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .banner-section .banner-content-wrap .banner-content ul {
    gap: 15px;
  }
}
.banner-section .banner-content-wrap .banner-content ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  background: var(--title-color);
  padding: 7px 24px;
  border-radius: 100px;
}
@media (max-width: 576px) {
  .banner-section .banner-content-wrap .banner-content ul li {
    font-size: 16px;
  }
}
.banner-section .banner-content-wrap .banner-btn {
  position: relative;
  display: flex;
  justify-content: center;
}
.banner-section .banner-content-wrap .banner-btn::before {
  content: url(../image/icon/shape.svg);
  position: absolute;
  top: -20%;
  left: 70%;
  transform: translate(20%, 70%);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-section .banner-content-wrap .banner-btn::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .banner-section .banner-content-wrap .banner-btn::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .banner-section .banner-content-wrap .banner-btn .primary-btn2 {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .banner-section .banner-content-wrap .banner-btn .primary-btn2 {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .banner-section .banner-content-wrap .banner-btn .primary-btn2 {
    margin-top: 30px;
  }
}

/*=====================================
  05.Demo section
========================================*/
.demo-section {
  scroll-margin-top: 60px;
}
.demo-section .demo-content .demo-image {
  background: #F0F0F0;
  padding: 15px 15px 0px 15px;
  border-radius: 20px 20px 0px 0px;
  transition: 0.35s;
  margin-bottom: 25px;
}
.demo-section .demo-content .demo-image img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}
.demo-section .demo-content .demo-image:hover {
  background: var(--title-color);
}
.demo-section .demo-content .demo-text h5 a {
  font-family: var(--font-eb-garamond);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  color: var(--title-color3);
  text-transform: uppercase;
  margin-bottom: 0;
}

/*=====================================
  06. Service menu section
========================================*/
.service-menu-service {
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 94px 0 0 0;
  scroll-margin-top: 60px;
}
.service-menu-service .sservice-menu-image {
  position: relative;
}
.service-menu-service .sservice-menu-image::before {
  content: url(../image/icon/shop-image-icon.svg);
  position: absolute;
  top: -20%;
  left: 17%;
  transform: translate(50%, 50%);
}
@media (max-width: 991px) {
  .service-menu-service .sservice-menu-image::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-menu-service .sservice-menu-image::before {
    display: none;
  }
}

.service-menu-bottom {
  overflow: hidden;
  display: flex;
  align-items: center;
}
.service-menu-bottom .marquee_text {
  background: #FFEBE0;
  height: 70px;
  display: flex;
  align-items: center;
}
.service-menu-bottom .js-marquee {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 767px) {
  .service-menu-bottom .js-marquee {
    gap: 15px;
  }
}
.service-menu-bottom h2 {
  font-family: var(--font-eb-garamond);
  font-size: 36px;
  font-weight: 500;
  text-align: left;
  line-height: 1;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: var(--title-color);
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 767px) {
  .service-menu-bottom h2 {
    font-size: 24px;
    gap: 15px;
  }
}

/*=====================================
  07. inner page section
========================================*/
.inner-page-section .inner-card img {
  border: 1px solid var(--white-color2);
  margin-bottom: 25px;
}
.inner-page-section .inner-card h5 {
  font-family: var(--font-eb-garamond);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  color: var(--title-color3);
  text-transform: uppercase;
  margin-bottom: 0;
}

.slider-btn-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 9px 38px;
}
.slider-btn-wrap .fractional-pagination.fraction-pagi {
  font-family: var(--font-dm-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--title-color);
}
.slider-btn-wrap .slider-btn {
  transition: 0.45s;
}
.slider-btn-wrap .slider-btn svg {
  stroke: var(--title-color);
  transition: 0.45s;
}
.slider-btn-wrap .slider-btn:hover svg {
  stroke: var(--primary-color);
}

/*=====================================
  08. Shop and blog  section
========================================*/
.shop-and-blog-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 110px 0;
}
.shop-and-blog-section .shop-section {
  border-bottom: 1px solid var(--white-color);
  padding-bottom: 55px;
}
.shop-and-blog-section .shop-section .shop-image {
  position: relative;
}
.shop-and-blog-section .shop-section .shop-image::before {
  content: url(../image/icon/shop-image-icon.svg);
  position: absolute;
  top: 0px;
  left: -30px;
  transform: translate(50%, 50%);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .shop-and-blog-section .shop-section .shop-image::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .shop-and-blog-section .shop-section .shop-image::before {
    display: none;
  }
}
.shop-and-blog-section .blog-section {
  margin-top: 65px;
}
.shop-and-blog-section .blog-section .blog-image {
  position: relative;
}
.shop-and-blog-section .blog-section .blog-image::before {
  content: url(../image/icon/shop-image-icon.svg);
  position: absolute;
  top: 0px;
  left: -30px;
  transform: translate(50%, 50%);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .shop-and-blog-section .blog-section .blog-image::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .shop-and-blog-section .blog-section .blog-image::before {
    display: none;
  }
}
.shop-and-blog-section .blog-section .image-bottom {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #056341;
  border-radius: 20px;
  border: 1px solid var(--white-color);
  padding: 20px 40px;
  max-width: 350px;
  position: absolute;
  top: 87%;
  left: 50%;
  transform: translate(-30%, -50%);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .shop-and-blog-section .blog-section .image-bottom {
    display: none;
  }
}
@media (max-width: 767px) {
  .shop-and-blog-section .blog-section .image-bottom {
    display: none;
  }
}
.shop-and-blog-section .blog-section .image-bottom .icon {
  box-shadow: 2px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
  background: var(--white-color);
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
}
.shop-and-blog-section .blog-section .image-bottom h6 {
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  color: var(--white-color);
  margin-bottom: 0;
}
.shop-and-blog-section .features {
  background: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 35px 30px;
  margin-top: 70px;
  max-width: 450px;
}
.shop-and-blog-section .features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: var(--title-color);
  margin-bottom: 34px;
}
.shop-and-blog-section .features li:last-child {
  margin-bottom: 0;
}
.shop-and-blog-section .features li .icon {
  background: #FFDEC9;
  width: 20px;
  height: 20px;
  border-radius: 23px;
  box-shadow: 2px 4px 24px 0px rgba(0, 0, 0, 0.0509803922);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}
.shop-and-blog-section .bottom-button-area {
  border: 1px solid #EEEEEE;
  background: var(--white-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
  margin-top: 70px;
  padding: 13px 15px;
  border-radius: 100px;
  justify-content: space-between;
  position: relative;
}
.shop-and-blog-section .bottom-button-area::before {
  content: url(../image/icon/shape.svg);
  position: absolute;
  top: -30%;
  left: 90%;
  transform: translate(50%, -20%);
}
@media (max-width: 1199px) {
  .shop-and-blog-section .bottom-button-area::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .shop-and-blog-section .bottom-button-area::before {
    display: none;
  }
}
@media (max-width: 576px) {
  .shop-and-blog-section .bottom-button-area {
    justify-content: center;
    display: inline-flex;
    flex-wrap: wrap;
  }
}
.shop-and-blog-section .bottom-button-area h5 {
  font-family: var(--font-eb-garamond);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  color: var(--title-color);
  margin-bottom: 0;
  padding-left: 30px;
}
@media (max-width: 576px) {
  .shop-and-blog-section .bottom-button-area h5 {
    font-size: 20px;
    padding-left: 0px;
  }
}

/*=====================================
  09. responsive section
========================================*/
.responsive-section .responsive-bottom {
  border: 1px solid #EEEEEE;
  border-bottom: 3px solid var(--white-color2);
  border-radius: 20px;
  padding: 30px;
}
.responsive-section .responsive-bottom .single-responsive {
  max-width: 150px;
  width: 100%;
}
.responsive-section .responsive-bottom .single-responsive .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
.responsive-section .responsive-bottom .single-responsive .icon svg {
  fill: var(--title-color);
}
.responsive-section .responsive-bottom .single-responsive .content {
  line-height: 1;
  max-width: 120px;
  margin: 0 auto;
}
.responsive-section .responsive-bottom .single-responsive .content p {
  font-family: var(--font-dm-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--title-color);
  margin-bottom: 0;
}

/*=====================================
  9.spa offer section
========================================*/
.offer-banner-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.offer-banner-section .offer-banner-content {
  max-width: 680px;
}
.offer-banner-section .offer-banner-content img {
  margin-bottom: 25px;
}
.offer-banner-section .offer-banner-content h2 {
  font-family: var(--font-eb-garamond);
  font-size: 45px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .offer-banner-section .offer-banner-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 576px) {
  .offer-banner-section .offer-banner-content h2 {
    font-size: 33px;
    line-height: 45px;
  }
}
.offer-banner-section .offer-banner-content h2 span {
  color: var(--primary-color);
}

/*=====================================
  10.flexibility section
========================================*/
.blog-site .blog-site-title span {
  font-family: var(--font-red-rose);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #000000;
  border: 1px solid #009045;
  border-radius: 1000px;
  padding: 3px 20px;
  margin-bottom: 20px;
  display: inline-block;
}
.blog-site .blog-site-title h2 {
  font-family: var(--font-red-rose);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--text-color);
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .blog-site .blog-site-title h2 {
    font-size: 40px;
  }
}
.blog-site .blog-site-content {
  background: #F0F0F0;
  border-radius: 20px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  height: 100%;
}
.blog-site .blog-site-content.tranparet-blog {
  background: transparent;
  border: 1px solid #EEEEEE;
}
.blog-site .blog-site-content .blog-text {
  margin-bottom: 20px;
}
.blog-site .blog-site-content .blog-text h4 {
  font-family: var(--font-eb-garamond);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .blog-site .blog-site-content .blog-text h4 {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .blog-site .blog-site-content .blog-text h4 {
    font-size: 28px;
  }
}
.blog-site .blog-site-content .blog-text p {
  font-family: var(--font-figtree);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: var(--paragraph-color);
  margin-bottom: 0;
}

/*=====================================
  11.footer section
========================================*/
.footer-section {
  background: var(--title-color);
  padding: 110px 0 30px 0px;
}
.footer-section .speed-content {
  max-width: 580px;
  margin: 0 auto;
}
.footer-section .speed-content img {
  margin-bottom: 25px;
}
.footer-section .speed-content h2 {
  font-family: var(--font-eb-garamond);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--white-color);
  margin-bottom: 0;
}
.footer-section .speed-content h2 span {
  color: #FFCB62;
}
@media (max-width: 767px) {
  .footer-section .speed-content h2 {
    font-size: 40px;
  }
}
.footer-section .speed-content .button-area {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 55px;
}
@media (max-width: 767px) {
  .footer-section .speed-content .button-area {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-section .footer-menu {
  position: relative;
  z-index: 999;
  border-top: 2px solid rgba(255, 255, 255, 0.1019607843);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1019607843);
  transition: all 0.8s ease-out 0s;
}
@media (max-width: 1199px) {
  .footer-section .footer-menu {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-menu {
    border-top: unset;
  }
}
.footer-section .footer-menu .menu-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-section .footer-menu .menu-wrapper {
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.footer-section .footer-menu .menu-wrapper .logo-sidebar {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 767px) {
  .footer-section .footer-menu .menu-wrapper .logo-sidebar {
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer-section .footer-menu .menu-wrapper .logo-sidebar .main-menu .menu-list {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer-section .footer-menu .menu-wrapper .logo-sidebar .main-menu .menu-list {
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
  }
}
.footer-section .footer-menu .menu-wrapper .logo-sidebar .main-menu .menu-list li {
  display: inline-block;
  position: relative;
  padding: 30px 8px;
}
@media (max-width: 1399px) {
  .footer-section .footer-menu .menu-wrapper .logo-sidebar .main-menu .menu-list li {
    padding: 26px 5px;
  }
}
@media (max-width: 576px) {
  .footer-section .footer-menu .menu-wrapper .logo-sidebar .main-menu .menu-list li {
    padding: 10px 0;
  }
}
.footer-section .footer-menu .menu-wrapper .logo-sidebar .main-menu .menu-list li a {
  font-family: var(--font-dm-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  color: var(--white-color);
  text-transform: uppercase;
  transition: 0.35s;
}
.footer-section .footer-menu .menu-wrapper .logo-sidebar .main-menu .menu-list li a:hover {
  color: var(--primary-color);
}
.footer-section .footer-menu .menu-wrapper .nav-right .footer-btn {
  font-family: var(--font-dm-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--white-color);
  background-color: #494646;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  gap: 8px;
  padding: 9px 23px;
  transition: 0.5s;
}
.footer-section .footer-menu .menu-wrapper .nav-right .footer-btn svg {
  stroke: var(--white-color);
  transition: 0.5s;
}
.footer-section .footer-menu .menu-wrapper .nav-right .footer-btn:hover {
  background-color: var(--primary-color);
  color: var(--title-color);
}
.footer-section .footer-menu .menu-wrapper .nav-right .footer-btn:hover svg {
  stroke: var(--title-color);
}
.footer-section .copyright-area {
  text-align: center;
  margin-top: 25px;
}
.footer-section .copyright-area p {
  font-family: var(--font-dm-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  color: #C4C4C4;
  margin-bottom: 0;
}
.footer-section .copyright-area p a {
  font-family: var(--font-dm-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  color: var(--white-color);
  transition: 0.35s;
}
.footer-section .copyright-area p a:hover {
  color: #78EB54;
}
@media (max-width: 767px) {
  .footer-section .copyright-area {
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=style.css.map */