@font-face {
  font-family: "AvenirNextLTPro-Regular";
  src: url("/frontend/fonts/avenir-next/AvenirNextLTPro-Regular.otf");
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro-Bold";
  src: url("/frontend/fonts/avenir-next/AvenirNextLTPro-Bold.otf");
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro-It";
  src: url("/frontend/fonts/avenir-next/AvenirNextLTPro-It.otf");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "AvenirNextLTPro-Regular", sans-serif !important;
  max-width: 1920px;
  margin: 0 auto !important;
}

.container {
  max-width: 1620px;
  margin: 0 auto;
}

.body-container {
  max-width: 1420px;
  padding: 0 20px;
  margin: 0 auto;
  transition: 0.1s;
}

@media screen and (max-width: 1520px) {
  .body-container {
    max-width: 1220px;
  }
}
@media screen and (max-width: 1224px) {
  .body-container {
    max-width: 992px;
  }
}
@media screen and (max-width: 1020px) {
  .body-container {
    max-width: 800px;
  }
}
@media screen and (max-width: 776px) {
  .body-container {
    max-width: 740px;
  }
}
.big-btn {
  padding: 16px 50px;
  font-family: "AvenirNextLTPro-Regular", sans-serif !important;
  background: #B2CA00;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
  border: 2px solid #B2CA00;
  letter-spacing: 4px;
  border-radius: 5px;
  color: #FFF;
  text-decoration: none;
  transition: 0.1s ease-in-out;
}
.big-btn:hover {
  background: #FFF;
  color: #B2CA00;
}

.custom-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
  position: sticky;
  top: 16px;
  z-index: 1000;
  max-width: 1720px;
  margin: 0 auto;
  margin-top: 16px;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  opacity: 1;
  -webkit-backdrop-filter: blur(37px);
          backdrop-filter: blur(37px);
  transition: 0.1s;
}
.custom-navbar .logo img {
  width: 100%;
  max-width: 150px;
  transition: 0.1s;
}
.custom-navbar .nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin-bottom: 0;
  gap: 60px;
  transition: 0.2s ease-in-out;
}
.custom-navbar .nav-list .menu-dropdown {
  position: relative;
}
.custom-navbar .nav-list .menu-dropdown.activedropdown .dropdown-wrapper {
  opacity: 1;
  pointer-events: all;
}
.custom-navbar .nav-list .menu-dropdown.activedropdown .dropdown-wrapper > .megamenu-list {
  display: block;
  position: relative;
}
.custom-navbar .nav-list .menu-dropdown:hover .dropdown-wrapper {
  opacity: 1;
  pointer-events: all;
  z-index: 50;
}
.custom-navbar .nav-list .menu-dropdown:hover .dropdown-wrapper > .megamenu-list {
  display: block;
  position: relative;
}
.custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list {
  list-style: none;
  background: #FFF;
  max-height: 300px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: none;
}
.custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list .menu-list {
  height: 300px;
  overflow: auto;
  list-style: none;
}
.custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list .menu-list::-webkit-scrollbar {
  display: none;
}
.custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list::-webkit-scrollbar {
  display: none;
}
.custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list.last li a::before {
  content: none;
}
.custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list li {
  width: 300px;
}
.custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list li a {
  display: inline-block;
  padding: 16px 24px 16px 20px;
  font-weight: 500;
  width: 100%;
  position: relative;
  font-size: 16px;
  transition: 0.1s;
}
.custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list li a::before {
  content: "\f054";
  font-family: "FontAwesome";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list li a.nosubmenu::before {
  content: none;
}
.custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 65%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background: #f0f0f0;
}
.custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list li.active, .custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list li:hover {
  background: #f0f0f0;
}
.custom-navbar .nav-list .menu-dropdown .dropdown-wrapper .megamenu-list li:hover > .megamenu-list {
  display: block;
  position: absolute;
  left: 100%;
  top: 0;
  width: 300px;
  max-height: 600px;
  height: auto;
  box-shadow: 0px 1px 20px rgba(12, 31, 46, 0.050);
}
.custom-navbar .nav-list li .nav-home-link {
  display: flex;
  padding: 12px 20px;
  display: flex;
  background: #FAFFEA;
  border: 0.5px solid #A4CE3C;
  border-radius: 7px;
}
.custom-navbar .nav-list li a,
.custom-navbar .nav-list li span {
  text-decoration: none;
  cursor: pointer;
  color: #4B4B4B;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
  display: inline-block;
}
.custom-navbar .nav-list .menu-close {
  display: none;
}
.custom-navbar .nav-list .secondlogocontainer {
  display: none;
  margin-top: 150px;
}

.custom-navbar .nav-input-wrapper {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
  padding: 5.5px 0;
}
.custom-navbar .nav-input-wrapper .input {
  width: 100%;
  height: 40px;
  padding: 0 20px;
  max-width: 480px;
  border: 1px solid #d6d6d6;
  border-right: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-radius: 8px 0 0 8px;
  transition: 0.1s;
}
.custom-navbar .nav-input-wrapper .search {
  border-radius: 0 8px 8px 0;
  border: 1px solid #d0d0d0;
  background: #FFF;
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
}
.custom-navbar .nav-list-icons {
  display: flex;
  align-items: center;
  justify-content: end;
  list-style: none;
  margin-bottom: 0;
}
.custom-navbar .nav-list-icons .nav-search {
  padding: 0 8px;
  cursor: pointer;
}
.custom-navbar .nav-list-icons li {
  position: relative;
}
.custom-navbar .nav-list-icons li .count {
  position: absolute;
  top: -8px;
  right: 6px;
  background: #e73037;
  color: #fff;
  width: 20px;
  height: 20px;
  font-size: 13px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
}
.custom-navbar .nav-list-icons .menu-icon {
  position: relative;
  padding: 10px 0;
}
.custom-navbar .nav-list-icons .menu-icon:hover .menu-items {
  display: block;
}
.custom-navbar .nav-list-icons li a {
  padding: 0 12px;
  height: auto;
  display: inline-block;
}
.custom-navbar .nav-list-icons li a img {
  width: 24px;
}
.custom-navbar .nav-list-icons li .menu {
  display: none;
}
.custom-navbar .nav-list-icons li .menu-items {
  position: absolute;
  right: 0px;
  top: 48px;
  background: #FFF;
  display: none;
  transition: 0.1s;
}
.custom-navbar .nav-list-icons li .menu-items ul {
  list-style: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}
.custom-navbar .nav-list-icons li .menu-items ul::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 28px;
  width: 10px;
  height: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: rotate(45deg);
  background: #FFF;
}
.custom-navbar .nav-list-icons li .menu-items ul li a {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #FFF;
  color: #211F1F;
  width: 260px;
  padding: 16px 20px;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid #EEE;
  transition: 0.1s;
}
.custom-navbar .nav-list-icons li .menu-items ul li a img {
  max-width: 16px;
}
.custom-navbar .nav-list-icons li .menu-items ul li a:hover {
  color: #A4CE3C;
}
.custom-navbar .nav-list-icons li:last-child a {
  padding-right: 0;
}
.custom-navbar .secondlogo {
  display: flex;
  align-items: center;
  justify-content: baseline;
  flex-direction: column;
  gap: 12px;
}
.custom-navbar .secondlogo a img {
  width: 100%;
  max-width: 114px;
  height: auto;
}
.nav-list .showonmobile {
  display: none;
}

.nav-list.active {
  width: 80% !important;
  z-index: 999;
  padding: 32px;
  display: flex !important;
  align-items: flex-start;
  justify-content: flex-start;
  background: #FFF;
  flex-direction: column;
  gap: 0px !important;
  box-shadow: 0 20px 20px rgba(0,0,0,0.1);
}
.nav-list.active .menu-dropdown .nav-link .fa-solid {
  display: none;
}
.nav-list.active .menu-dropdown .dropdown-wrapper {
  display: none !important;
}
.nav-list.active .logins {
  margin-bottom: 16px;
}
.nav-list.active .logins a {
  text-decoration: none;
  padding: 12px 20px;
  margin-right: 12px;
  border-radius: 8px;
  background: #B2CA00;
  color: #FFF;
  display: inline-block;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.1);
}
.nav-list.active .secondlogocontainer .secondlogo {
  flex-direction: row;
}
.nav-list.active .menu-close {
  display: block;
  position: absolute;
  cursor: pointer;
  top: 32px;
  right: 20px;
}
.nav-list.active .menu-close span {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  padding: 0px 5px;
  font-weight: 600;
  font-size: 20px;
  background: #e5e5e5;
  border-radius: 50%;
}



.dropdown-wrapper {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: 0.15s;
  position: absolute;
  top: 48px;
  left: -40px;
  max-height: 600px;
  box-shadow: 0px 1px 20px rgba(12, 31, 46, 0.0509803922);
  border: 1px solid rgba(0, 0, 0, 0);
}

@media screen and (max-width: 1640px) {
  .custom-navbar .nav-list {
    gap: 16px;
  }
}
@media screen and (max-width: 1420px) {
  
}
@media screen and (max-width: 1280px) {
  .custom-navbar {
    border-radius: 0;
    top: 0;
    margin-top: 0;
    gap: 20px;
  }
  .custom-navbar .nav-list {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    height:100vh;
    width: 0;
  }
  .custom-navbar .nav-list li {
    display: block !important;
  }
  .nav-list.active .secondlogocontainer .secondlogo {
    display: flex !important;
  }
  .nav-list.active .secondlogocontainer .secondlogo a {
    padding: 16px 8px;
  }
  .custom-navbar .menu-icon {
    display: none;
  }
  .custom-navbar .nav-list-icons li .menu {
    display: block;
  }
  .custom-navbar .secondlogo {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .custom-navbar .nav-list-icons .nav-search {
    padding: 12px 0;
  }
  .custom-navbar .nav-list-icons .nav-search .input-wrapper {
    max-width: 360px;
    padding: 0 20px;
  }
  .custom-navbar .nav-list-icons .nav-search:hover .input-wrapper,
  .custom-navbar .nav-list-icons .nav-search:focus .input-wrapper,
  .custom-navbar .nav-list-icons .nav-search:active .input-wrapper {
    right: 0px;
    top: 68px;
  }
}
@media screen and (max-width: 600px) {
  .custom-navbar .logo img {
    width: 150px;
  }
  .custom-navbar .nav-input-wrapper {
    position: absolute;
    width: 360px;
    top: 70px;
    right: 20px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .custom-navbar .nav-list-icons li a {
    padding: 0 20px;
  }
}
.header-wrapper {
  background: url("../assets/img/header_bg.png");
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-wrapper:has(.header.img-wrapper) {
  height: auto;
}
.header-wrapper .header {
  position: relative;
}
.header-wrapper .header img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-wrapper .header .title {
  position: absolute;
  bottom: 40px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 12px 20px;
  background: #333;
  color: #f9f9f9;
  left: 0;
  right: 0;
  z-index: 6;
}
.header-wrapper .owl-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}
.header-wrapper .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background: #A4CE3C;
  border-radius: 50%;
  margin: 0 8px;
}
.header-wrapper .owl-dots .owl-dot.active {
  position: relative;
}
.header-wrapper .owl-dots .owl-dot.active::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: -3px;
  top: -3px;
  border: 1px solid #A4CE3C;
  border-radius: 50%;
}

@media screen and (max-width: 1560px) {
  .header-wrapper .header {
    padding: 0 80px;
  }
}
@media screen and (max-width: 1200px) {
  .header-wrapper {
    height: auto;
  }
  .header-wrapper .header {
    height: auto;
    padding: 0;
  }
  .header-wrapper .header img {
    height: auto;
  }
}
.full-header-bg {
  background: radial-gradient(#FFFFFF, #f8ffe6), url("../assets/img/header_bg.png") !important;
  background-size: cover !important;
  padding: 40px 12px !important;
}

@media screen and (max-width: 600px) {
  .header-wrapper .header {
    position: static;
  }
  .header-wrapper .header .title {
    position: static;
  }
}
.breadcrumbs-wrapper {
  background: #FBFBFB;
}
.breadcrumbs-wrapper .breadcrumbs {
  display: flex;
  align-items: center;
  padding: 16px 0;
}
.breadcrumbs-wrapper .breadcrumbs .crumb:last-child .link::after {
  content: "";
}
.breadcrumbs-wrapper .left-crumbs {
  display: flex;
  align-items: center;
  flex: 1;
}
.breadcrumbs-wrapper .crumb .link {
  text-decoration: none;
  color: #383838;
  font-size: 15px;
  margin-right: 26px;
  position: relative;
  transition: 0.1s;
}
.breadcrumbs-wrapper .crumb .link:hover {
  color: #A4CE3C;
}
.breadcrumbs-wrapper .crumb .link::after {
  content: "\f054";
  font-family: "FontAwesome";
  position: absolute;
  color: #888;
  top: -2px;
  right: -16px;
}
.breadcrumbs-wrapper .crumb.active {
  flex: 1;
}
.breadcrumbs-wrapper .crumb.active .link {
  color: #A4CE3C;
}
.breadcrumbs-wrapper .crumb.home {
  margin-right: 0;
  position: relative;
}
.breadcrumbs-wrapper .crumb.home::after {
  content: "\f053" !important;
  font-family: "FontAwesome";
  position: absolute;
  color: #888;
  top: 2px;
  left: -16px;
}

.green-breadcrumb {
  background: #E7EDD5 !important;
}

.transparent {
  background: transparent !important;
}

@media screen and (max-width: 1224px) {
  .breadcrumbs-wrapper {
    display: none;
  }
}
.features-section {
  background: #FAFAFA;
  display: grid;
  grid-template-columns: 240px 240px 240px 240px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 120px;
  padding: 16px;
}
.features-section .feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

@media screen and (max-width: 1440px) {
  .features-section {
    grid-template-columns: repeat(4, 200px);
    gap: 24px 60px;
  }
}
@media screen and (max-width: 992px) {
  .features-section {
    grid-template-columns: repeat(2, 180px);
    gap: 24px 60px;
  }
  .features-section .feature {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .features-section {
    grid-template-columns: repeat(2, 150px);
    gap: 24px 16px;
  }
  .features-section .feature {
    flex-direction: column;
  }
}
/* Events Section*/
.events {
  margin-top: 52px;
  position: relative;
}
.events .events-title-wrapper {
  margin-bottom: 20px;
  transition: 0.1s;
}
.events .events-title-wrapper h2 {
  font-size: 35px;
  font-weight: 600;
}
.events .owl-dots {
  position: absolute;
  top: -50px;
  right: 0;
}
.events .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background: #A4CE3C;
  border-radius: 50%;
  margin: 0 20px;
}
.events .owl-dots .owl-dot.active {
  position: relative;
}
.events .owl-dots .owl-dot.active::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: -3px;
  top: -3px;
  border: 1px solid #A4CE3C;
  border-radius: 50%;
}
.events .owl-nav {
  position: absolute;
  top: -55px;
  right: 0;
  display: none;
}
.events .owl-nav .owl-prev span,
.events .owl-nav .owl-next span {
  display: inline-block;
  padding: 7px 14px;
  margin-left: 8px;
  font-size: 16px;
  background: #A4CE3C;
  color: #FFF;
}
.events .event-carousel .item {
  margin-left: 2px;
  margin-right: 18px;
}

@media screen and (max-width: 600px) {
  .events .events-title-wrapper h2 {
    font-size: 20px;
  }
  .events .events-title-wrapper .buttons {
    display: none;
  }
  .events .owl-dots {
    display: none;
  }
  .events .owl-nav {
    display: block;
  }
}
/* Tabs */
.tabs {
  margin-top: 16px;
  display: flex;
  align-items: center;
}
.tabs .tab {
  background: #FAFAFA;
  padding: 12px 16px;
  display: inline-block;
  color: #A4CE3C;
  border: 1px solid rgba(56, 56, 56, 0.1098039216);
}
.tabs .tab.active {
  background: #B2CA00;
  color: #FFF;
  position: relative;
  border: none;
}
.tabs .tab.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
  background: #B2CA00;
}

/* Top Products */
.product-wrapper {
  margin: 60px auto;
}
.product-wrapper .product-container .title {
  font-size: 35px;
  font-weight: 600;
  color: #1B2437;
}
.product-wrapper .product-container .product-list {
  margin-top: 20px;
  position: relative;
}
.product-wrapper .product-container .product-list.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
.product-wrapper .product-container .product-list.grid .product {
  margin: 0;
}
.product-wrapper .product-container .product-list .product {
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 8px;
  margin: 0 12px;
}
.product-wrapper .product-container .product-list .product .img-wrapper {
  position: relative;
}
.product-wrapper .product-container .product-list .product .img-wrapper .product-image {
  width: 100%;
  height: 190px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.product-wrapper .product-container .product-list .product .img-wrapper .img-tag {
  position: absolute;
  top: 8px;
  left: 10px;
  background: #658AE5;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 16px;
  color: #FFF;
}
.product-wrapper .product-container .product-list .product .img-wrapper .scheme {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FF7C7C;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 5px;
  color: #FFF;
}
.product-wrapper .product-container .product-list .product .img-wrapper .btns {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transition: 0.1s ease-in-out;
}
.product-wrapper .product-container .product-list .product .img-wrapper .btns a {
  width: 100%;
}
.product-wrapper .product-container .product-list .product:hover .img-wrapper .btns {
  opacity: 1;
  pointer-events: all;
}
.product-wrapper .product-container .product-list .product .product-title {
  margin-top: 12px;
  font-size: 1em;
  color: #383838;
}
.product-wrapper .product-container .product-list .product .product-model {
  font-family: "Poppins", sans-serif;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
}
.product-wrapper .product-container .product-list .product .product-model .number {
  font-weight: 400;
  margin-left: 8px;
}
.product-wrapper .product-container .product-list .product .price-wrapper {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}
.product-wrapper .product-container .product-list .product .price-wrapper a {
  color: #B2CA00;
}
.product-wrapper .product-container .product-list .product .price-wrapper .stock-info {
  color: #A4CE3C;
}
.product-wrapper .product-container .product-list .product .addCart-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.product-wrapper .product-container .product-list .product .addCart-wrapper .cart-btn .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 14px;
  background: #B2CA00;
  color: #FFF;
  transition: 0.1s;
}
.product-wrapper .product-container .product-list .product .addCart-wrapper .cart-btn .btn img {
  width: 19px;
}
.product-wrapper .product-container .product-list .product .addCart-wrapper .cart-btn .btn:hover {
  background: #6F901F;
}
.product-wrapper .product-container .product-list .owl-dots {
  position: absolute;
  top: -50px;
  right: 0;
}
.product-wrapper .product-container .product-list .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background: #A4CE3C;
  border-radius: 50%;
  margin: 0 20px;
}
.product-wrapper .product-container .product-list .owl-dots .owl-dot.active {
  position: relative;
}
.product-wrapper .product-container .product-list .owl-dots .owl-dot.active::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: -3px;
  top: -3px;
  border: 1px solid #A4CE3C;
  border-radius: 50%;
}
.product-wrapper .product-container .product-list .owl-nav {
  position: absolute;
  top: -55px;
  right: 0;
  display: none;
}
.product-wrapper .product-container .product-list .owl-nav .owl-prev span,
.product-wrapper .product-container .product-list .owl-nav .owl-next span {
  display: inline-block;
  padding: 7px 14px;
  margin-left: 8px;
  font-size: 16px;
  background: #A4CE3C;
  color: #FFF;
}

@media screen and (max-width: 1224px) {
  .product-wrapper .product-container .product-list.grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1020px) {
  .product-wrapper .product-container .product-list.grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 660px) {
  .product-wrapper .product-container .title {
    font-size: 20px;
  }
  .product-wrapper .product-container .product-list .product {
    margin: 4px;
  }
  .product-wrapper .product-container .product-list.grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 850px) {
  .product-wrapper .product-container .owl-dots {
    display: none;
  }
  .product-wrapper .product-container .owl-nav {
    display: block;
  }
  .product-wrapper .product-container .product-list.trending {
    margin-top: 80px;
  }
  .product-wrapper .product-container .product-list.trending .owl-nav {
    display: block;
  }
}
/* Home Special Offers */
.home-special-offers-wrapper {
  margin-top: 60px;
}
.home-special-offers-wrapper .title {
  font-size: 32px;
  transition: 0.1s;
}
.home-special-offers-wrapper .home-special-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.home-special-offers-wrapper .home-special-section .left-side {
  box-shadow: 0px 0px 30px rgba(140, 140, 140, 0.1019607843);
  padding: 24px;
}
.home-special-offers-wrapper .home-special-section .left-side .products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product {
  padding: 20px;
  box-shadow: 0px 0px 30px rgba(140, 140, 140, 0.1019607843);
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .img-wrapper {
  position: relative;
  background: #f6f6f6;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .img-wrapper img {
  width: 100%;
  max-width: 240px;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .img-wrapper .new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #658AE5;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 5px;
  color: #FFF;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .img-wrapper .scheme {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FF7C7C;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 5px;
  color: #FFF;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .img-wrapper .btns {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transition: 0.1s ease-in-out;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product:hover .img-wrapper .btns {
  opacity: 1;
  pointer-events: all;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .product-title {
  margin-top: 12px;
  font-size: 1.1em;
  font-weight: 600;
  color: #383838;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .product-model {
  font-family: "Poppins", sans-serif;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .product-model .number {
  font-weight: 400;
  margin-left: 8px;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .price-wrapper {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .price-wrapper a {
  color: #B2CA00;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .price-wrapper .stock-info {
  color: #A4CE3C;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .addCart-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .addCart-wrapper .cart-btn .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 14px;
  background: #B2CA00;
  color: #FFF;
  transition: 0.1s;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .addCart-wrapper .cart-btn .btn img {
  width: 19px;
}
.home-special-offers-wrapper .home-special-section .left-side .products .product .addCart-wrapper .cart-btn .btn:hover {
  background: #6F901F;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right {
  padding: 20px;
  box-shadow: 0px 0px 30px rgba(140, 140, 140, 0.1019607843);
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .img-wrapper {
  position: relative;
  text-align: center;
  background: #f6f6f6;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .img-wrapper img {
  width: 100%;
  max-width: 480px;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .img-wrapper .btns {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transition: 0.1s ease-in-out;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right:hover .img-wrapper .btns {
  opacity: 1;
  pointer-events: all;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .product-title {
  margin-top: 12px;
  font-size: 1.4em;
  color: #383838;
  font-weight: 600;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .product-model {
  font-family: "Poppins", sans-serif;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .product-model .number {
  font-weight: 400;
  margin-left: 8px;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .price-wrapper {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .price-wrapper a {
  color: #B2CA00;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .price-wrapper .stock-info {
  color: #A4CE3C;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .addCart-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .addCart-wrapper .cart-btn .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 14px;
  background: #B2CA00;
  color: #FFF;
  transition: 0.1s;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .addCart-wrapper .cart-btn .btn img {
  width: 19px;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .addCart-wrapper .cart-btn .btn:hover {
  background: #6F901F;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .seperator {
  margin: 20px 0;
  border-top: 1px solid #f0f0f0;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .text {
  font-size: 13px;
  color: #cfcfcf;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .timer-wrapper {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .timer-wrapper .timer {
  text-align: center;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .timer-wrapper .timer .time {
  width: 62px;
  height: 62px;
  display: grid;
  place-content: center;
  background: #F2F4F5;
  color: #191919;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
}
.home-special-offers-wrapper .home-special-section .right-side .product-right .timer-wrapper .timer .text {
  margin-top: 8px;
}

@media screen and (max-width: 1520px) {
  .home-special-offers-wrapper .home-special-section .left-side .products .product .addCart-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1020px) {
  .home-special-offers-wrapper .home-special-section {
    grid-template-columns: 2fr 1fr;
  }
  .home-special-offers-wrapper .home-special-section .right-side .product-right .addCart-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .home-special-offers-wrapper .home-special-section .right-side .product-right .timer-wrapper {
    flex-direction: column;
    gap: 20px !important;
  }
}
@media screen and (max-width: 767px) {
  .home-special-offers-wrapper .home-special-section {
    grid-template-columns: 1fr;
  }
  .home-special-offers-wrapper .home-special-section .left-side {
    padding: 0;
  }
  .home-special-offers-wrapper .home-special-section .right-side {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .home-special-offers-wrapper .title {
    font-size: 20px;
  }
  .home-special-offers-wrapper .home-special-section .left-side .products {
    grid-template-columns: 1fr;
  }
  .home-special-offers-wrapper .home-special-section .left-side .products .img-wrapper {
    text-align: center;
  }
}
/* DASK product */
.dask-wrapper {
  background: url("../assets/img/dask_bg.png"), #f7f7f7;
  margin-top: 40px;
}
.dask-wrapper .dask {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px 0;
}
.dask-wrapper .dask .left-side {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.dask-wrapper .dask .left-side h1 {
  color: #A4CE3C;
  font-size: 80px;
  font-family: "AvenirNextLTPro-Bold", sans-serif !important;
  font-weight: 900;
  letter-spacing: 1px;
}
.dask-wrapper .dask .left-side .subtitle {
  font-size: 40px;
  font-family: "AvenirNextLTPro-Bold", sans-serif !important;
  font-weight: 900;
  color: #7D7D7D;
}
.dask-wrapper .dask .left-side .text {
  font-size: 20px;
  margin-top: 20px;
}
.dask-wrapper .dask .left-side .big-btn {
  margin-top: 24px;
  width: -moz-fit-content;
  width: fit-content;
}
.dask-wrapper .dask .right-side {
  text-align: center;
}
.dask-wrapper .dask .right-side img {
  max-width: 490px;
  transition: 0.1s;
}

@media screen and (max-width: 992px) {
  .dask-wrapper .dask {
    grid-template-columns: 3fr 2fr;
  }
  .dask-wrapper .dask .right-side {
    display: flex;
    align-items: center;
  }
  .dask-wrapper .dask .right-side img {
    max-width: 300px;
  }
}
@media screen and (max-width: 600px) {
  .dask-wrapper .dask {
    grid-template-columns: 1fr;
  }
  .dask-wrapper .dask .left-side {
    order: 2;
    text-align: center;
    justify-content: center;
  }
  .dask-wrapper .dask .left-side h1 {
    font-size: 40px;
  }
  .dask-wrapper .dask .left-side .subtitle {
    font-size: 24px;
  }
  .dask-wrapper .dask .left-side .text {
    font-size: 20px;
  }
  .dask-wrapper .dask .left-side .big-btn {
    margin: 24px auto;
  }
  .dask-wrapper .dask .right-side {
    order: 1;
    justify-content: center;
  }
}
/* Testimonial Section*/
.testimonial-wrapper {
  margin-top: 50px;
}
.testimonial-wrapper .title {
  font-size: 35px;
}
.testimonial-wrapper .testimonial {
  margin-top: 24px;
  position: relative;
}
.testimonial-wrapper .testimonial .owl-dots {
  position: absolute;
  top: -50px;
  right: 0;
}
.testimonial-wrapper .testimonial .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background: #A4CE3C;
  border-radius: 50%;
  margin: 0 20px;
}
.testimonial-wrapper .testimonial .owl-dots .owl-dot.active {
  position: relative;
}
.testimonial-wrapper .testimonial .owl-dots .owl-dot.active::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: -4px;
  top: -4px;
  border: 1px solid #A4CE3C;
  border-radius: 50%;
}
.testimonial-wrapper .testimonial .owl-nav {
  position: absolute;
  top: -55px;
  right: 0;
  display: none;
}
.testimonial-wrapper .testimonial .owl-nav .owl-prev span,
.testimonial-wrapper .testimonial .owl-nav .owl-next span {
  display: inline-block;
  padding: 7px 14px;
  margin-left: 8px;
  font-size: 16px;
  background: #A4CE3C;
  color: #FFF;
}
.testimonial-wrapper .testimonial .testimonial-carousel {
  margin-top: 24px;
}
.testimonial-wrapper .testimonial .item {
  padding: 30px 60px;
  background: #f7f7f7;
  text-align: center;
}
.testimonial-wrapper .testimonial .item h2 {
  color: #B2CA00;
  font-size: 40px;
  position: relative;
}
.testimonial-wrapper .testimonial .item h2::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 6px;
  bottom: -20px;
  left: 50%;
  border-radius: 20px;
  transform: translateX(-50%);
  background: linear-gradient(to left, #7D7D7D, rgba(125, 125, 125, 0.2));
}
.testimonial-wrapper .testimonial .item .testimonial-content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.testimonial-wrapper .testimonial .item .testimonial-content .left-side {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-wrapper .testimonial .item .testimonial-content .left-side p {
  font-size: 25px;
  color: #5C5B5B;
  font-weight: 500;
}
.testimonial-wrapper .testimonial .item .testimonial-content .right-side {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.testimonial-wrapper .testimonial .item .testimonial-content .right-side img {
  width: 190px;
}
.testimonial-wrapper .testimonial .item .testimonial-content .right-side .name {
  color: #A4CE3C;
  font-size: 24px;
}
.testimonial-wrapper .testimonial .item .testimonial-content .right-side .designation {
  color: #7D7D7D;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .testimonial-wrapper .title {
    font-size: 24px;
  }
  .testimonial-wrapper .testimonial .owl-dots {
    display: none;
  }
  .testimonial-wrapper .testimonial .owl-nav {
    display: block;
  }
  .testimonial-wrapper .testimonial-carousel .item {
    padding: 20px;
  }
  .testimonial-wrapper .testimonial-carousel .item h2 {
    font-size: 18px;
  }
  .testimonial-wrapper .testimonial-carousel .item .testimonial-content {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .testimonial-wrapper .testimonial-carousel .item .testimonial-content .left-side p {
    font-size: 18px;
  }
}
/* Blog Video*/
.video-wrapper {
  margin-top: 40px;
}
.video-wrapper .videos-wrapper,
.video-wrapper .blog-wrapper {
  margin-top: 24px;
}
.video-wrapper .videos-wrapper .video,
.video-wrapper .videos-wrapper .blog,
.video-wrapper .blog-wrapper .video,
.video-wrapper .blog-wrapper .blog {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #f9f9f9;
  margin: 0 12px;
}
.video-wrapper .videos-wrapper .video .img-wrapper,
.video-wrapper .videos-wrapper .blog .img-wrapper,
.video-wrapper .blog-wrapper .video .img-wrapper,
.video-wrapper .blog-wrapper .blog .img-wrapper {
  position: relative;
}
.video-wrapper .videos-wrapper .video .img-wrapper.hide-after::before,
.video-wrapper .videos-wrapper .blog .img-wrapper.hide-after::before,
.video-wrapper .blog-wrapper .video .img-wrapper.hide-after::before,
.video-wrapper .blog-wrapper .blog .img-wrapper.hide-after::before {
  content: none;
}
.video-wrapper .videos-wrapper .video .img-wrapper iframe,
.video-wrapper .videos-wrapper .blog .img-wrapper iframe,
.video-wrapper .blog-wrapper .video .img-wrapper iframe,
.video-wrapper .blog-wrapper .blog .img-wrapper iframe {
  display: none;
}
.video-wrapper .videos-wrapper .video .img-wrapper img,
.video-wrapper .videos-wrapper .blog .img-wrapper img,
.video-wrapper .blog-wrapper .video .img-wrapper img,
.video-wrapper .blog-wrapper .blog .img-wrapper img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-wrapper .videos-wrapper .video .img-wrapper::before,
.video-wrapper .videos-wrapper .blog .img-wrapper::before,
.video-wrapper .blog-wrapper .video .img-wrapper::before,
.video-wrapper .blog-wrapper .blog .img-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: url("../assets/img/vid-play_icon.png");
}
.video-wrapper .videos-wrapper .video .name-wrapper,
.video-wrapper .videos-wrapper .blog .name-wrapper,
.video-wrapper .blog-wrapper .video .name-wrapper,
.video-wrapper .blog-wrapper .blog .name-wrapper {
  margin-top: 16px;
  font-size: 15px;
  color: #D0D0D0;
}
.video-wrapper .videos-wrapper .video .name-wrapper .name,
.video-wrapper .videos-wrapper .blog .name-wrapper .name,
.video-wrapper .blog-wrapper .video .name-wrapper .name,
.video-wrapper .blog-wrapper .blog .name-wrapper .name {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
.video-wrapper .videos-wrapper .video .vid-subtitle,
.video-wrapper .videos-wrapper .blog .vid-subtitle,
.video-wrapper .blog-wrapper .video .vid-subtitle,
.video-wrapper .blog-wrapper .blog .vid-subtitle {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.4;
  color: #383838;
}
.video-wrapper .videos-wrapper .video .text,
.video-wrapper .videos-wrapper .blog .text,
.video-wrapper .blog-wrapper .video .text,
.video-wrapper .blog-wrapper .blog .text {
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.2;
  color: #383838;
}
.video-wrapper.seminarspage {
  margin-top: 0;
}
.video-wrapper .videos-wrapper .video {
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.062745098);
  display: flex;
  flex-direction: column;
}
.video-wrapper .blog-wrapper {
  display: none;
}
.video-wrapper .blog-wrapper .blog .img-wrapper::before {
  content: none;
}

/* Subscribe Section */
.subscribe-wrapper {
  background: url("../assets/img/subscribe_bg.png");
  margin-top: 70px;
  padding: 70px 20px;
}
.subscribe-wrapper .subscribe {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 32px;
  background: #FFF;
  text-align: center;
}
.subscribe-wrapper .subscribe .title {
  font-size: 32px;
  font-weight: 600;
  color: #32353C;
}
.subscribe-wrapper .subscribe .text {
  margin-top: 16px;
  font-size: 20px;
  color: #32353C;
}
.subscribe-wrapper .subscribe .sub-form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.subscribe-wrapper .subscribe .sub-form .input {
  width: 460px;
  padding: 18px 24px;
  border: 1px solid #A4CE3C;
}
.subscribe-wrapper .subscribe .sub-form .btn {
  font-family: "AvenirNextLTPro-Regular", sans-serif !important;
  background: #A4CE3C;
  color: #FFF;
  border: 0;
  font-size: 20px;
  padding: 15px 24px;
}
.subscribe-wrapper .subscribe .sub-text {
  margin-top: 28px;
  font-size: 20px;
  color: #000000;
}

@media screen and (max-width: 767px) {
  .subscribe-wrapper {
    padding: 40px 20px;
  }
  .subscribe-wrapper .subscribe {
    padding: 20px;
  }
  .subscribe-wrapper .subscribe .sub-form {
    flex-direction: column;
    gap: 12px;
  }
  .subscribe-wrapper .subscribe .sub-form .input {
    width: 100%;
  }
  .subscribe-wrapper .subscribe .sub-form .btn {
    width: 100%;
  }
}
/* Footer Section */
.footer-wrapper {
  background: #EFEFF4;
  padding: 40px 0;
}
.footer-wrapper .footer {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr 3fr;
  gap: 10px;
}
.footer-wrapper .footer .footer-1 .title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-wrapper .footer .footer-1 .contact-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 80px;
  margin-bottom: 10px;
}
.footer-wrapper .footer .footer-1 .contact-wrapper .text {
  font-size: 17px;
  text-decoration: none;
  line-height: 1.5;
  font-weight: 600;
  color: #383838;
}
.footer-wrapper .footer .socials {
  display: flex;
  gap: 16px;
}
.footer-wrapper .footer .footer-subsection .title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-wrapper .footer .footer-subsection .footer-links {
  list-style: none;
}
.footer-wrapper .footer .footer-subsection .footer-links li .link {
  margin: 5px 0;
  display: inline-block;
  color: #000000;
  font-size: 17px;
  text-decoration: none;
}
.footer-wrapper .footer .footer-subsection .footer-links li .link:hover {
  text-decoration: underline;
}
.footer-wrapper .footer .footer-subsection .footer-links li:first-child .link {
  margin-top: 0;
}

@media screen and (max-width: 992px) {
  .footer-wrapper .footer {
    grid-template-columns: 1fr 1fr;
    gap: 60px 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer-wrapper {
    padding: 20px 0;
  }
  .footer-wrapper .footer {
    grid-template-columns: auto;
    gap: 20px 10px;
  }
  .footer-wrapper .footer .footer-subsection .title {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .footer-wrapper .footer .categories {
    grid-column: 1/3;
    order: 1;
  }
  .footer-wrapper .footer .categories .footer-links li {
    display: inline-block;
    border-right: 1px solid #383838;
    margin-bottom: 12px;
    margin-right: 12px;
  }
  .footer-wrapper .footer .categories .footer-links li .link {
    margin: 0;
    margin-right: 12px;
    font-size: 15px;
  }
  .footer-wrapper .footer .useful-links {
    grid-column: 1/2;
    order: 2;
  }
  .footer-wrapper .footer .useful-links .footer-links li .link {
    margin-bottom: 6px;
    margin-top: 6px;
    font-size: 15px;
  }
  .footer-wrapper .footer .information {
    grid-column: 2/3;
    order: 3;
  }
  .footer-wrapper .footer .information .footer-links li .link {
    margin-bottom: 6px;
    margin-top: 6px;
    font-size: 15px;
  }
  .footer-wrapper .footer .footer-1 {
    grid-column: 1/3;
    order: 4;
  }
  .footer-wrapper .footer .footer-1 .title {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .footer-wrapper .footer .footer-1 .contact-wrapper {
    padding-right: 0;
    margin-bottom: 12px;
    gap: 16px;
  }
  .footer-wrapper .footer .footer-1 .contact-wrapper .text {
    font-size: 15px;
  }
}
/* Credits Section */
.credits-wrapper {
  background: #EFEFF4;
  padding: 2px 0;
  border-top: 1px solid #ddd;
}
.credits-wrapper .credits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5C5C5C;
  font-size: 15px;
}
.credits-wrapper .credits a {
  color: inherit;
}
.credits-wrapper .credits a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .credits-wrapper {
    padding: 16px 0;
  }
  .credits-wrapper .credits {
    flex-direction: column;
  }
}
.counter-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.counter-wrapper .btn {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #A4CE3C;
  border-radius: 8px;
  cursor: pointer;
  color: #B2CA00;
  background: #FFF;
  font-size: 24px;
  line-height: 24px;
  padding: 0;
  transition: 0.1s;
}
.counter-wrapper .btn:hover {
  background: #A4CE3C;
  color: #FFF;
}
.counter-wrapper .text {
  border: none;
  width: 32px;
  font-size: 16px;
  font-family: "AvenirNextLTPro-Regular", sans-serif;
  font-weight: 400;
  text-align: center;
  outline: none;
}
.counter-wrapper .text:focus, .counter-wrapper .text:active {
  border-bottom: 2px solid #A4CE3C;
}
.counter-wrapper .text::-webkit-inner-spin-button, .counter-wrapper .text::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

/* Form */
.form-wrapper {
  background: #F7F7F7;
  max-width: 750px;
  width: 100%;
  margin: 80px auto;
  padding: 45px;
  transition: 0.1s;
}
.form-wrapper .title {
  font-size: 25px;
  line-height: 34px;
  color: #343232;
  text-align: center;
  font-weight: 400;
}
.form-wrapper .subtext {
  margin-top: 10px;
  color: #727272;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  text-wrap: balance;
}
.form-wrapper .subtext .theme {
  color: #A4CE3C;
}
.form-wrapper .form .input-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  margin: 0 auto;
  margin-top: 15px;
}
.form-wrapper .form .input-wrapper label,
.form-wrapper .form .input-wrapper .label {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 6px;
}
.form-wrapper .form .input-wrapper label .required-star,
.form-wrapper .form .input-wrapper .label .required-star {
  color: #BE0000;
}
.form-wrapper .form .input-wrapper .input {
  padding: 12px 15px;
  color: #4A4A4A;
  outline: none;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  box-shadow: transparent;
  transition: 0.1s;
}
.form-wrapper .form .input-wrapper .input:hover, .form-wrapper .form .input-wrapper .input:active, .form-wrapper .form .input-wrapper .input:focus {
  border: 1px solid #A4CE3C;
  box-shadow: 0 4px 8px rgba(164, 206, 60, 0.1);
}
.form-wrapper .form .input-wrapper .radio-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.form-wrapper .form .input-wrapper .radio-wrapper .radio {
  width: 20px;
  height: 20px;
  accent-color: #729a0d;
}
.form-wrapper .form .input-wrapper .radio-wrapper label {
  margin-bottom: 0;
}
.form-wrapper .form .file-upload-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  margin: 0 auto;
  margin-top: 15px;
}
.form-wrapper .form .file-upload-wrapper .fileName {
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.form-wrapper .form .file-upload-wrapper .label {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 6px;
}
.form-wrapper .form .file-upload-wrapper .label .required-star {
  color: #BE0000;
}
.form-wrapper .form .file-upload-wrapper .filebutton {
  display: inline-block;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed #C5DB84;
  padding: 12px 0;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  border-radius: 9px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
}
.form-wrapper .form .file-upload-wrapper .file {
  display: none;
}
.form-wrapper .form .otp-wrapper {
  margin-top: 20px;
  text-align: center;
  color: #515151;
  font-size: 17px;
}
.form-wrapper .form .otp-wrapper .inputs {
  margin-top: 20px;
}
.form-wrapper .form .otp-wrapper .inputs input {
  border: 0;
  border-bottom: 2px solid #ddd;
  background: #f7f7f7;
  text-align: center;
  max-width: 32px;
  font-size: 20px;
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number], input[type=tel] {
  -moz-appearance: textfield;
}

.form-wrapper .form .otp-wrapper .inputs input::-webkit-outer-spin-button, .form-wrapper .form .otp-wrapper .inputs input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-wrapper .form .otp-wrapper .inputs input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.form-wrapper .form .forgot-pass {
  margin-top: 15px;
  text-align: center;
}
.form-wrapper .form .forgot-pass a {
  color: #383838;
  font-size: 14px;
}
.form-wrapper .form .conditions-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 350px;
  margin: 0 auto;
  margin-top: 16px;
}
.form-wrapper .form .conditions-wrapper .checkbox {
  accent-color: #729a0d;
  width: 20px;
  height: 20px;
  border: 1px solid #444;
}
.form-wrapper .form .conditions-wrapper label {
  flex: 1;
  color: #444444;
  font-size: 12px;
}
.form-wrapper .form .conditions-wrapper label .link {
  color: #A4CE3C;
}
.form-wrapper .form .btn-wrapper {
  margin-top: 20px;
  text-align: center;
}
.form-wrapper .form .btn-wrapper .btn {
  max-width: 250px;
  width: 100%;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-family: "AvenirNextLTPro-Regular", sans-serif;
  padding: 16px;
  font-size: 20px;
  font-weight: 500;
  background: #A4CE3C;
  color: #FFF;
}
.form-wrapper .form .btn-wrapper .btn.disabled {
  background: #E4F0C5;
  color: #BBCC8D;
}
.form-wrapper .form .seperator {
  max-width: 350px;
  width: 100%;
  margin: 20px auto;
  position: relative;
  text-align: center;
}
.form-wrapper .form .seperator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: #D2D2D2;
  width: calc(50% - 20px);
  height: 1px;
}
.form-wrapper .form .seperator::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  background: #D2D2D2;
  width: calc(50% - 20px);
  height: 1px;
}

@media screen and (max-width: 600px) {
  .form-wrapper {
    padding: 20px;
    margin: 0 auto;
    margin-bottom: 60px;
  }
  .form-wrapper .subtext {
    text-wrap: inherit;
  }
}
.product-item-wrapper {
  margin: 60px auto;
  padding: 0 20px;
  transition: 0.1s;
}
.product-item-wrapper .main-prod {
  display: grid;
  grid-template-columns: 40% 45%;
  gap: 80px;
}
.product-item-wrapper .main-prod .left-side {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.product-item-wrapper .main-prod .left-side .img-wrapper img {
  width: 100%;
}
.product-item-wrapper .main-prod .left-side .product-item-carousel .item {
  max-width: 100%;
  max-height: 400px;
}
.product-item-wrapper .main-prod .left-side .product-item-carousel .item img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-item-wrapper .main-prod .left-side .product-item-carousel-nav {
  margin-top: 20px;
}
.product-item-wrapper .main-prod .left-side .product-item-carousel-nav .owl-item.current {
  border: 1px solid #A4CE3C;
  border-radius: 4px;
}
.product-item-wrapper .main-prod .left-side .product-item-carousel-nav .item {
  margin: 4px;
}
.product-item-wrapper .main-prod .right-side .product-title {
  font-size: 30px;
  font-weight: 500;
  transition: 0.1s;
}
.product-item-wrapper .main-prod .right-side .product-info {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-item-wrapper .main-prod .right-side .product-info .product-left {
  display: flex;
  align-items: center;
  gap: 32px;
}
.product-item-wrapper .main-prod .right-side .product-info .product-left .product-info-title {
  font-size: 15px;
  color: #171717;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.product-item-wrapper .main-prod .right-side .product-info .product-left .product-info-title .number {
  font-weight: 400;
  color: #6D6D6D;
}
.product-item-wrapper .main-prod .right-side .product-info .product-right .stock-info {
  display: inline-block;
  padding: 8px 18px;
  background: #EBF4D6;
  color: #6F901F;
}
.product-item-wrapper .main-prod .right-side .product-seperator {
  margin: 20px 0;
  border-top: 1px solid #f8f8f8;
}
.product-item-wrapper .main-prod .right-side .text {
  margin-top: 8px;
  color: #383838;
  line-height: 22px;
}
.product-item-wrapper .main-prod .right-side input.text {
  margin-top: 0;
}
.product-item-wrapper .main-prod .right-side .speaker-info .speaker-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #101010;
}
.product-item-wrapper .main-prod .right-side .speaker-info .speaker-name {
  font-weight: 600;
  font-size: 18px;
}
.product-item-wrapper .main-prod .right-side .date-seminar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.product-item-wrapper .main-prod .right-side .date-seminar span {
  font-size: 14px;
  color: #333333;
  display: flex;
  align-items: center;
}
.product-item-wrapper .main-prod .right-side .date-seminar span img {
  margin-right: 8px;
}
.product-item-wrapper .main-prod .right-side .location {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-item-wrapper .main-prod .right-side .seminar-event-info {
  display: flex;
  align-items: center;
  gap: 24px;
}
.product-item-wrapper .main-prod .right-side .seminar-event-info .info {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-item-wrapper .main-prod .right-side .seminar-event-info .info span {
  font-size: 14px;
  color: #101010;
}
.product-item-wrapper .main-prod .right-side .seminar-event-info .info .name {
  font-size: 18px;
  color: #7D7D7D;
}
.product-item-wrapper .main-prod .right-side .date-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.product-item-wrapper .main-prod .right-side .deal-options-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
}
.product-item-wrapper .main-prod .right-side .deal-options-wrapper .deal-options-left .deal-options-title {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}
.product-item-wrapper .main-prod .right-side .deal-options-wrapper .deal-options-left .deal-option {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-item-wrapper .main-prod .right-side .deal-options-wrapper .deal-options-left .deal-option .deal-option-text {
  font-size: 18px;
  color: #101010;
  font-weight: 600;
}
.product-item-wrapper .main-prod .right-side .deal-options-wrapper .deal-options-left .deal-option .counter-wrapper {
  margin-top: 0;
}
.product-item-wrapper .main-prod .right-side .deal-options-wrapper .deal-options-left .deal-option .counter-wrapper .btn {
  border: 1px solid #ddd;
}
.product-item-wrapper .main-prod .right-side .deal-options-wrapper .deal-options-right {
  text-align: center;
}
.product-item-wrapper .main-prod .right-side .deal-options-wrapper .deal-options-right .stock-info {
  display: inline-block;
  padding: 8px 18px;
  background: #EBF4D6;
  color: #6F901F;
}
.product-item-wrapper .main-prod .right-side .product-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.product-item-wrapper .main-prod .right-side .product-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-item-wrapper .main-prod .right-side .product-features .feature img {
  max-width: 35px;
}
.product-item-wrapper .main-prod .right-side .product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-item-wrapper .main-prod .right-side .product-price .product-price-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-item-wrapper .main-prod .right-side .product-price .product-price-left .price {
  color: #101010;
  font-weight: 500;
  font-size: 25px;
  line-height: 23px;
}
.product-item-wrapper .main-prod .right-side .product-price .product-price-left .counter-wrapper {
  margin-top: 0;
}
.product-item-wrapper .main-prod .right-side .product-price .product-price-right .btn {
  background: #EBF4D6;
  border-radius: 6px;
  color: #6F901F;
  border: 0;
  display: inline-block;
  padding: 12px 40px;
  font-size: 18px;
  font-family: "AvenirNextLTPro-Regular", sans-serif;
}
.product-item-wrapper .main-prod .right-side .product-buttons {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.product-item-wrapper .main-prod .right-side .product-buttons .big-btn {
  letter-spacing: 0;
  font-size: 16px;
  max-width: 250px;
  padding: 16px;
  width: 100%;
  font-family: "AvenirNextLTPro-Regular", sans-serif;
  border: 2px solid #A4CE3C;
  transition: 0.1s;
}
.product-item-wrapper .main-prod .right-side .product-buttons .big-btn:hover {
  background: #FFF;
  color: #A4CE3C;
}
.product-item-wrapper .main-prod .right-side .product-buttons .light {
  background: #FFF;
  color: #A4CE3C;
  border: 2px solid #A4CE3C;
  transition: 0.1s;
}
.product-item-wrapper .main-prod .right-side .product-buttons .light:hover {
  background: #A4CE3C;
  border: 2px solid #A4CE3C;
  color: #FFF;
}
.product-item-wrapper .product-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
}
.product-item-wrapper .product-tabs .product-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  border-right: 1px solid #EBEBEB;
  cursor: pointer;
  background: #F7F7F7;
  color: #BABABA;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0px 0px 8px 8px;
}
.product-item-wrapper .product-tabs .product-tab.active, .product-item-wrapper .product-tabs .product-tab:hover {
  background: #EBEBEB;
  color: #4B4B4B;
}
.product-item-wrapper .product-tabs .product-tab:last-of-type {
  border-right: 0;
}
.product-item-wrapper .product-top-features {
  margin-top: 32px;
}
.product-item-wrapper .product-top-features .product-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 60px;
}
.product-item-wrapper .product-top-features .features {
  margin-bottom: 20px;
}
.product-item-wrapper .product-top-features .features .feature-title {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.product-item-wrapper .product-top-features .features .feature-description {
  font-size: 16px;
  line-height: 23px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.product-item-wrapper .product-description {
  margin-top: 32px;
}
.product-item-wrapper .product-description .title {
  font-size: 25px;
  color: #383838;
  font-weight: 500;
}
.product-item-wrapper .product-description .text-description {
  margin-top: 8px;
  color: #383838;
  font-size: 16px;
  line-height: 22px;
}
.product-item-wrapper .product-specification {
  margin-top: 32px;
}
.product-item-wrapper .product-specification .title {
  font-size: 25px;
  color: #383838;
  font-weight: 500;
  margin-bottom: 12px;
}
.product-item-wrapper .product-specification table {
  width: 100% !important;
  border-collapse: collapse;
  border: 1px solid #333;
}
.product-item-wrapper .product-specification table tr td {
  min-width: 150px;
  padding: 12px;
  border: 1px solid #ddd;
}
.product-item-wrapper .product-specification table tr td:nth-child(1) {
  background: #f0f0f0;
}
.product-item-wrapper .product-description,
.product-item-wrapper .product-specification {
  display: none;
  overflow: auto;
}

@media screen and (max-width: 1224px) {
  .product-item-wrapper .main-prod {
    grid-template-columns: repeat(2, calc(50% - 16px));
  }
}
@media screen and (max-width: 992px) {
  .product-item-wrapper {
    margin: 60px auto;
  }
  .product-item-wrapper .main-prod {
    grid-template-columns: repeat(1, 100%);
  }
  .product-item-wrapper .main-prod .left-side {
    text-align: center;
  }
  .product-item-wrapper .main-prod .left-side img {
    max-width: 460px;
    margin: 0 auto;
  }
  .product-item-wrapper .main-prod .right-side .product-features .feature {
    justify-content: center;
  }
  .product-item-wrapper .product-top-features .product-features-grid {
    gap: 20px;
  }
  .product-item-wrapper .product-top-features .product-features-grid .features {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .product-item-wrapper .product-tabs .product-tab {
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
  }
  .product-item-wrapper .product-tabs .product-tab img {
    max-width: 24px;
  }
  .product-item-wrapper .product-top-features .product-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .product-item-wrapper {
    padding: 0;
  }
  .product-item-wrapper .main-prod {
    gap: 20px;
  }
  .product-item-wrapper .main-prod .right-side .product-title {
    font-size: 20px;
  }
  .product-item-wrapper .main-prod .right-side .product-info .product-left {
    flex-direction: column;
    gap: 8px;
  }
  .product-item-wrapper .main-prod .right-side .product-features .feature {
    flex-direction: column;
    text-align: center;
  }
  .product-item-wrapper .main-prod .right-side .seminar-event-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .product-item-wrapper .main-prod .right-side .product-price {
    flex-direction: column;
    gap: 20px;
  }
  .product-item-wrapper .main-prod .right-side .product-price .product-price-left {
    width: 100%;
    justify-content: space-between;
  }
  .product-item-wrapper .main-prod .right-side .product-price .product-price-right .btn {
    padding: 12px;
  }
  .product-item-wrapper .main-prod .right-side .product-buttons {
    margin-top: 20px;
    flex-direction: column;
    gap: 16px;
  }
  .product-item-wrapper .main-prod .right-side .product-buttons .big-btn {
    padding: 16px;
  }
  .product-item-wrapper .product-tabs .product-tab {
    padding: 20px 8px;
  }
  .product-item-wrapper .product-top-features .product-features-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .product-item-wrapper .main-prod .right-side .deal-options-wrapper .deal-options-left .deal-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
  }
}
.page-item.active .page-link {
  background: #A4CE3C !important;
  border-color: #A4CE3C !important;
  color: #FFF !important;
}
.page-item .page-link {
  color: #A4CE3C !important;
}
.page-item .page-link:hover {
  color: #FFF !important;
  background-color: #A4CE3C !important;
  border-color: #A4CE3C !important;
}

.cart-wrapper {
  padding: 25px 0;
  min-height: calc(100vh - 90px);
}
.cart-wrapper .cart .cart-map {
  padding: 32px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.cart-wrapper .cart .cart-map .map-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cart-wrapper .cart .cart-map .map-item.active .map-item-title {
  color: #A4CE3C;
}
.cart-wrapper .cart .cart-map .map-item.active .icon::after {
  border: 1px solid #A4CE3C;
}
.cart-wrapper .cart .cart-map .map-item .icon {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
}
.cart-wrapper .cart .cart-map .map-item .icon::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #DDDDDD;
}
.cart-wrapper .cart .cart-map .map-item .map-item-title {
  font-size: 16px;
  color: #DDDDDD;
}
.cart-wrapper .cart .cart-map .map-item .arrow {
  margin-left: 30px;
}
.cart-wrapper .cart .cart-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-top: 20px;
  transition: 0.1s;
}
.cart-wrapper .cart .cart-info .cart-left-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cart-wrapper .cart .cart-info .cart-left-side .selected-items {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-radius: 8px;
  border: 1px solid #DDDDDD;
}
.cart-wrapper .cart .cart-info .cart-left-side .selected-items input {
  accent-color: #3c841f;
  width: 24px;
  height: 24px;
}
.cart-wrapper .cart .cart-info .cart-left-side .selected-items label {
  margin-left: 32px;
  color: #000000;
  font-size: 15px;
  flex: 1;
}
.cart-wrapper .cart .cart-info .cart-left-side .selected-items .select-items-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}
.cart-wrapper .cart .cart-info .cart-left-side .selected-items .select-items-info .remove {
  color: #FF3535;
}
.cart-wrapper .cart .cart-info .cart-left-side .selected-items .select-items-info .seperator {
  color: #EDEDED;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-radius: 8px;
  border: 1px solid #DDDDDD;
  transition: 0.1s;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side {
  display: flex;
  align-items: center;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .radio {
  accent-color: #3c841f;
  min-width: 24px;
  height: 24px;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .product-img {
  width: 112px;
  height: 112px;
  margin-left: 32px;
  background: #F6F6F6;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 40px;
  max-width: 400px;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .cart-item-info .title {
  font-size: 19px;
  color: #383838;
  font-weight: 700;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .cart-item-info p {
  margin-bottom: 0;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .cart-item-info .size select {
  border: 0;
  width: 68px;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .cart-item-info .price {
  color: #A4CE3C;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .cart-item-info .cart-desc {
  position: relative;
  transition: 2s ease-in-out;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .cart-item-info .cart-desc .desc-link {
  color: #A4CE3C;
  text-decoration: underline;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .cart-item-info .cart-desc .hidden-content {
  height: 0;
  overflow: hidden;
  transition: 0.1s ease-in-out;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .cart-item-info .cart-desc .hidden-content.show-content {
  height: -moz-fit-content;
  height: fit-content;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .right-side {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .right-side .counter-wrapper {
  margin-top: 0;
  margin-right: 20px;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .right-side .icon-wrapper {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D1D1D6;
  border-radius: 8px;
}
.cart-wrapper .cart .cart-info .cart-left-side .cart-item .right-side .icon-wrapper img {
  width: 12px;
}
.cart-wrapper .cart .cart-info .cart-right-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-wrapper .cart .cart-info .cart-right-side .bill-details {
  display: flex;
  flex-direction: column;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  overflow: hidden;
}
.cart-wrapper .cart .cart-info .cart-right-side .bill-details .item {
  padding: 20px 24px;
  border-bottom: 1px solid #DDDDDD;
  color: #787878;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-wrapper .cart .cart-info .cart-right-side .bill-details .title {
  background: #A4CE3C;
  color: #FFF;
  font-size: 18px;
}
.cart-wrapper .cart .cart-info .cart-right-side .cart-btn {
  padding: 16px;
  background: #A4CE3C;
  display: inline-block;
  color: #FFF;
  font-size: 20px;
  border: 2px solid #A4CE3C;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
}
.cart-wrapper .cart .cart-info .cart-right-side .cart-btn.light {
  background: #FFF;
  color: #A4CE3C;
}

.modal {
  z-index: 10000;
}

.modal .modal-footer .btn-primary {
  background: #A4CE3C;
  border: 1px solid #A4CE3C;
}

.modal .modal-footer .btn-secondary {
  border: 1px solid #A4CE3C;
  background: #FFF;
  color: #A4CE3C;
}

.modal-body {
  max-height: 60vh;
  overflow: auto;
}

@media screen and (max-width: 1224px) {
  .cart-wrapper {
    min-height: auto;
  }
  .cart-wrapper .cart .cart-info {
    grid-template-columns: 3fr 2fr;
  }
  .cart-wrapper .cart .cart-info .cart-left-side .cart-item {
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
  }
  .cart-wrapper .cart .cart-info .cart-left-side .cart-item .right-side {
    padding-left: 56px;
  }
}
@media screen and (max-width: 992px) {
  .cart-wrapper .cart .cart-info {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .cart-wrapper .cart .cart-map .map-item .map-item-title {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .cart-wrapper .cart .cart-map {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
  .cart-wrapper .cart .cart-map .map-item .map-item-title {
    display: block;
  }
  .cart-wrapper .cart .cart-map .map-item .arrow {
    margin-left: 12px;
    width: 28px;
    transform: rotate(90deg);
  }
  .cart-wrapper .cart .cart-map .map-item .icon {
    width: 40px;
    height: 40px;
  }
  .cart-wrapper .cart .cart-map .map-item .icon::after {
    width: 40px;
    height: 40px;
  }
  .cart-wrapper .cart .cart-map .map-item .icon img {
    width: 24px;
  }
  .cart-wrapper .cart .cart-info .cart-left-side .selected-items {
    display: none;
  }
  .cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side {
    align-items: flex-start;
  }
  .cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .radio {
    display: none;
  }
  .cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .product-img {
    margin-left: 0;
    width: 80px;
    height: 80px;
  }
  .cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .cart-item-info {
    margin-left: 24px;
  }
  .cart-wrapper .cart .cart-info .cart-left-side .cart-item .left-side .cart-item-info .title {
    font-size: 16px;
  }
  .cart-wrapper .cart .cart-info .cart-left-side .cart-item .right-side {
    padding-left: 0;
    flex-direction: row-reverse;
  }
}
.empty-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  flex-direction: column;
}
.empty-section img {
  max-width: 320px;
  transition: 0.1s;
}
.empty-section .title {
  margin-top: 20px;
  font-weight: 900;
  font-size: 35px;
  text-align: center;
  text-wrap: balance;
  transition: 0.1s;
}
.empty-section .subtitle {
  font-size: 20px;
  margin-top: 4px;
}
.empty-section .btn {
  max-width: 250px;
  width: 100%;
  padding: 18px 0;
  margin-top: 50px;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  background: #A4CE3C;
  color: #FFF;
  text-align: center;
}

@media screen and (max-width: 820px) {
  .empty-section .title {
    font-size: 24px;
  }
  .empty-section img {
    max-width: 250px;
  }
}
.header-form {
  padding: 32px 40px;
  background: #FFF;
  box-shadow: 0px 33px 36px rgba(0, 0, 0, 0.062745098);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header-form .form-title {
  color: #A4CE3C;
  font-size: 32px;
  font-weight: 500;
}
.header-form form {
  margin-top: 20px;
}
.header-form .input-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.header-form .input-group .input-wrapper {
  flex: 1;
  width: 100%;
}
.header-form .input-group .input-wrapper .input, .header-form .input-group .input-wrapper textarea {
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #DDD;
  font-size: 16px;
}
.header-form .input-group .input-wrapper textarea {
  height: 140px;
}
.header-form .button-group {
  margin-top: 20px;
  text-align: center;
}
.header-form .button-group .btn {
  padding: 16px 40px;
  display: inline-block;
  background: #A4CE3C;
  color: #FFF;
  border: none;
  margin: 0 auto;
  font-size: 16px;
  border-radius: 8px;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .header-form {
    padding: 20px 8px;
  }
  .header-form .input-group {
    flex-direction: column;
  }
}
.our-locations {
  margin: 50px 0;
}
.our-locations .title {
  text-align: center;
  font-size: 40px;
}
.our-locations .location-wrapper {
  margin-top: 32px;
}
.our-locations .location {
  padding: 20px 24px;
  box-shadow: 0px 13px 36px rgba(0, 0, 0, 0.0588235294);
  border: 2px solid rgba(40, 110, 205, 0.1411764706);
  border-radius: 10px;
  background: #FFF;
  margin: 0 24px;
  height: 450px;
}
.our-locations .location .location-title {
  color: #113773;
  font-size: 24px;
}
.our-locations .location .text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.5px;
}
.our-locations .location .address-info-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.our-locations .location .address-info-wrapper img {
  max-width: 32px;
  width: 100%;
  height: 32px;
}
.our-locations .location .address-info-wrapper .info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.our-locations .location .address-info-wrapper .info-wrapper .info-title {
  font-size: 18px;
  font-weight: 600;
  color: #3B3B3B;
}
.our-locations .location .address-info-wrapper .info-wrapper .info-content {
  color: #A4CE3C;
  text-decoration: none;
}

.find-us {
  margin: 60px 0;
  margin-bottom: 70px;
}
.find-us .title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}
.find-us .iframe-map {
  margin-top: 40px;
  width: 100%;
  height: 550px;
}

@media screen and (max-width: 1224px) {
  .our-locations .location {
    margin: 0 12px;
    box-shadow: none;
  }
}
@media screen and (max-width: 600px) {
  .our-locations .location {
    margin: 0 4px;
  }
}
.title-header {
  background: #E7EDD5;
}
.title-header .page-title {
  padding: 20px 0;
  color: #7D7D7D;
  font-size: 32px;
}
.title-header p {
  margin-bottom: 0;
  padding-bottom: 20px;
}

.page-content {
  padding: 80px 0;
}
.page-content .about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 32px;
}
.page-content .about-grid .left-side {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-content .about-grid .left-side img {
  box-shadow: 20px -20px 0 #C5DB84;
  border-radius: 24px;
  max-width: 400px;
  transition: 0.1s ease-in-out;
}
.page-content .about-grid .left-side img:hover {
  box-shadow: 0 4px 32px #f5ffd4;
}
.page-content .about-grid .right-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-content .about-grid .right-side .btn {
  width: 250px;
  padding: 16px 0;
  background: #A4CE3C;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
}
.page-content .title {
  font-size: 40px;
  margin-bottom: 24px;
}
.page-content .text {
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 16px;
}
.page-content .privacy-title {
  position: relative;
  padding-left: 32px;
  margin-bottom: 24px;
  font-weight: 600;
}
.page-content .privacy-title::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0px;
  width: 16px;
  height: 16px;
  background: #A4CE3C;
  border-radius: 50%;
}
.page-content .features {
  margin: 60px 0;
}
.page-content .features .item {
  padding: 20px;
  margin: 0 20px;
  box-shadow: 0px 3px 36px rgba(0, 0, 0, 0.0509803922);
  border-radius: 8px;
}
.page-content .features .item img {
  max-width: 115px;
  margin: 0 auto;
}
.page-content .features .item .feature-title {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 400;
  color: #A4CE3C;
  text-align: center;
}
.page-content .features .item .feature-desc {
  text-align: center;
  color: #4B4B4B;
  font-size: 14px;
  line-height: 20px;
  margin-top: 12px;
}

@media screen and (max-width: 992px) {
  .page-content .about-grid {
    grid-template-columns: 1fr;
  }
  .page-content .about-grid .left-side img {
    max-width: 350px;
  }
}
.trainings-wrapper {
  margin: 60px auto;
}
.trainings-wrapper .no-content {
  border-left: 5px solid #B2CA00;
  background: #f5f5f5;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 20px;
}
.trainings-wrapper .sec-title {
  font-size: 35px;
  color: #1B2437;
  font-weight: 600;
}
.trainings-wrapper .trainings-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.trainings-wrapper .trainings-grid .trainings-box {
  padding: 20px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.062745098);
  border-radius: 10px;
}
.trainings-wrapper .trainings-grid .trainings-box .img-wrapper {
  position: relative;
}
.trainings-wrapper .trainings-grid .trainings-box .img-wrapper img {
  max-height: 220px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.trainings-wrapper .trainings-grid .trainings-box .img-wrapper .time {
  font-size: 16px;
  padding: 5px 20px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  border-radius: 6px;
  position: absolute;
  top: 8px;
  left: 8px;
}
.trainings-wrapper .trainings-grid .trainings-box .img-wrapper .event-type {
  font-size: 14px;
  padding: 4px 12px;
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  position: absolute;
  bottom: 8px;
  right: 8px;
}
.trainings-wrapper .trainings-grid .trainings-box .img-wrapper .event-type::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: #A4CE3C;
  border-radius: 50%;
}
.trainings-wrapper .trainings-grid .trainings-box .title {
  font-weight: 600;
  font-size: 20px;
  margin-top: 8px;
  color: #101010;
}
.trainings-wrapper .trainings-grid .trainings-box .title span {
  font-size: 15px;
  font-weight: 400;
  color: #D0D0D0;
  margin-right: 4px;
}
.trainings-wrapper .trainings-grid .trainings-box .subtitle {
  color: #383838;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 8px;
}
.trainings-wrapper .trainings-grid .trainings-box .text {
  font-size: 13px;
  line-height: 1.5;
  color: #383838;
  margin-top: 6px;
}
.trainings-wrapper .trainings-grid .trainings-box .seminar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.trainings-wrapper .trainings-grid .trainings-box .seminar-info span {
  font-size: 14px;
  color: #333333;
  display: flex;
  align-items: center;
}
.trainings-wrapper .trainings-grid .trainings-box .seminar-info span img {
  margin-right: 8px;
}
.trainings-wrapper .trainings-grid .trainings-box .location {
  color: #333333;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trainings-wrapper .trainings-grid .trainings-box .price-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trainings-wrapper .trainings-grid .trainings-box .price-wrapper .price {
  font-weight: 600;
}
.trainings-wrapper .trainings-grid .trainings-box .price-wrapper .seat-info {
  color: #6F901F;
}
.trainings-wrapper .trainings-grid .trainings-box .seperator {
  margin: 20px 0;
  border-top: #707070;
}
.trainings-wrapper .trainings-grid .trainings-box .date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333333;
}
.trainings-wrapper .trainings-grid .trainings-box .btn-wrappers {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.trainings-wrapper .trainings-grid .trainings-box .btn-wrappers .btn {
  flex: 1;
  text-align: center;
  font-family: "AvenirNextLTPro-Regular", sans-serif;
  background: #A4CE3C;
  color: #FFF;
  padding: 15px;
  text-decoration: none;
  border: 2px solid #A4CE3C;
  border-radius: 5px;
  transition: 0.1s ease-in-out;
}
.trainings-wrapper .trainings-grid .trainings-box .btn-wrappers .btn:hover {
  background: #FFF;
  border: 2px solid #A4CE3C;
  color: #A4CE3C;
}
.trainings-wrapper .trainings-grid .trainings-box .btn-wrappers .btn.light {
  background: #FFF;
  border: 2px solid #A4CE3C;
  color: #A4CE3C;
}
.trainings-wrapper .trainings-grid .trainings-box .btn-wrappers .btn.light:hover {
  background: #A4CE3C;
  color: #FFF;
}

.product-wrapper .trainings-wrapper {
  margin: 0;
}

#trending-trainings {
  display: none;
}

@media screen and (max-width: 992px) {
  .trainings-wrapper .trainings-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .trainings-wrapper .trainings-grid {
    grid-template-columns: 1fr;
  }
}
.key-leaders-wrapper {
  margin-top: 40px;
  margin-bottom: 60px;
}
.key-leaders-wrapper .key-leaders {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.key-leaders-wrapper .key-leaders .leader {
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.0784313725);
  border-radius: 15px;
  text-align: center;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
}
.key-leaders-wrapper .key-leaders .leader .img-wrapper img {
  width: 280px;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  background: #FFF;
  border-radius: 50%;
  border: 12px solid #A4CE3C;
}
.key-leaders-wrapper .key-leaders .leader .name {
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
  flex: 1;
}
.key-leaders-wrapper .key-leaders .leader .text {
  margin-top: 16px;
  text-wrap: balance;
}
.key-leaders-wrapper .key-leaders .leader .big-btn {
  display: inline-block;
  margin-top: 20px;
  border: 2px solid #B2CA00;
  cursor: pointer;
  transition: 0.1s;
}
.key-leaders-wrapper .key-leaders .leader .big-btn:hover {
  background: #FFF;
  color: #B2CA00;
}

.modal-screen {
  background: rgba(210, 210, 210, 0.2) 0% 0% no-repeat padding-box;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-screen .modal-body {
  max-width: 700px;
  max-height: 550px;
  overflow-y: auto;
  background: #FFF;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  position: relative;
}
.modal-screen .modal-body .close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #333;
  cursor: pointer;
  color: #FFF;
  width: 28px;
  height: 28px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.modal-screen .modal-body .img-wrapper img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  border: 6px solid #A4CE3C;
}
.modal-screen .modal-body .name {
  font-size: 24px;
  font-weight: 600;
  margin-top: 16px;
}
.modal-screen .modal-body .text {
  margin-top: 12px;
  line-height: 1.5;
}

@media screen and (max-width: 1260px) {
  .key-leaders-wrapper .key-leaders {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 820px) {
  .key-leaders-wrapper .key-leaders {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .key-leaders-wrapper .key-leaders .leader .img-wrapper {
    margin: 0 auto;
    max-width: 250px;
  }
  .key-leaders-wrapper .key-leaders .leader .img-wrapper img {
    width: 250px;
    height: 250px;
  }
}
.profile-wrapper {
  min-height: calc(100vh - 180px);
  margin-top: 60px;
}
.profile-wrapper .profile form {
  max-width: 800px;
}
.profile-wrapper .profile .input-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.profile-wrapper .profile .input-group .input-wrapper {
  flex: 1;
  margin-top: 12px;
}
.profile-wrapper .profile .input-group .input-wrapper .input {
  font-family: "AvenirNextLTPro-Regular", sans-serif;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  width: 100%;
  padding: 13px 20px;
  margin-top: 8px;
}
.profile-wrapper .profile .input-group .input-wrapper .input:focus {
  outline: none;
}
.profile-wrapper .profile .input-group .input-wrapper .radio-wrapper {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.profile-wrapper .profile .input-group .input-wrapper .radio-wrapper input[type=radio] {
  accent-color: #A4CE3C;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
.profile-wrapper .profile .input-group .input-wrapper .radio-wrapper label {
  margin-right: 24px;
}
.profile-wrapper .profile .input-group .input-wrapper.password-wrapper {
  position: relative;
}
.profile-wrapper .profile .input-group .input-wrapper.password-wrapper button {
  position: absolute;
  right: 20px;
  bottom: 12px;
  border: none;
  background: #FFF;
}
.profile-wrapper .profile .big-btn {
  border: 0;
  letter-spacing: 2px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

.address-wrapper {
  margin: 80px auto;
  min-height: calc(100vh - 120px);
}
.address-wrapper .addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.address-wrapper .addresses .address {
  background: #F7F7F7;
  padding: 24px 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.1s;
}
.address-wrapper .addresses .address .address-label {
  display: flex;
  align-items: center;
  gap: 20px;
}
.address-wrapper .addresses .address .address-label input {
  width: 24px;
  height: 24px;
  accent-color: #A4CE3C;
}
.address-wrapper .addresses .address .address-label .payment-type {
  font-size: 16px;
  font-weight: 600;
}
.address-wrapper .addresses .address .address-label .small {
  font-size: 13px;
}
.address-wrapper .addresses .address .address-label .address-info {
  display: flex;
  flex-direction: column;
  max-width: 450px;
  width: 100%;
}
.address-wrapper .addresses .address .address-label .address-info .address-title {
  color: #383838;
  font-weight: 600;
  margin-bottom: 8px;
}
.address-wrapper .addresses .address .address-label .address-info .street-address {
  font-size: 14px;
  max-width: 340px;
  color: #4f4f4f;
}
.address-wrapper .addresses .address .buttons .btn {
  margin-left: 24px;
  display: inline-block;
  text-decoration: none;
  color: #222;
  font-weight: 600;
}
.address-wrapper .addresses .address .buttons .btn:hover {
  text-decoration: underline;
}
.address-wrapper .addresses .add-address-btn {
  margin-top: 30px;
  border: 2px solid #A4CE3C;
  color: #A4CE3C;
  padding: 18px 40px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.1s;
}
.address-wrapper .addresses .add-address-btn:hover {
  background: #A4CE3C;
  color: #FFF;
}

@media screen and (max-width: 1224px) {
  .address-wrapper .addresses {
    grid-template-columns: 1fr;
  }
  .address-wrapper .addresses .address {
    flex-direction: column;
    align-items: flex-start;
  }
  .address-wrapper .addresses .address .buttons {
    margin-left: 42px;
    margin-top: 12px;
  }
  .address-wrapper .addresses .address .buttons .btn {
    margin-left: 0;
    margin-right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .address-wrapper .addresses .address .address-label {
    gap: 8px;
  }
}
@media screen and (max-width: 540px) {
  .address-wrapper .addresses .address {
    padding: 16px 20px;
  }
}
.orders-wrapper {
  margin-top: 40px;
  margin-bottom: 60px;
  min-height: calc(100vh - 120px);
}
.orders-wrapper .title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.orders-wrapper .title-container .title {
  font-size: 32px;
  transition: 0.1s;
}
.orders-wrapper .title-container .select {
  padding: 12px 40px;
  border: 2px solid #A4CE3C;
  border-radius: 8px;
  color: #A4CE3C;
  font-size: 16px;
  font-family: "AvenirNextLTPro-Regular", sans-serif;
  transition: 0.1s;
}
.orders-wrapper .title-container .select option {
  padding: 4px 8px;
}
.orders-wrapper .order {
  display: grid;
  grid-template-columns: 2fr 10fr 3fr;
  gap: 20px;
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.0509803922);
  border-radius: 8px;
  margin-top: 20px;
  padding: 15px;
  transition: 0.1s;
}
.orders-wrapper .order .img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F3F3;
}
.orders-wrapper .order .img-wrapper img {
  width: 100%;
  max-width: 166px;
}
.orders-wrapper .order .order-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.orders-wrapper .order .order-info .name {
  font-size: 18px;
  font-weight: 600;
}
.orders-wrapper .order .order-info .model-sku {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 12px;
}
.orders-wrapper .order .order-info .model-sku .product-info-title {
  font-size: 15px;
  color: #171717;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.orders-wrapper .order .order-info .model-sku .product-info-title .number {
  font-weight: 400;
  color: #6D6D6D;
}
.orders-wrapper .order .order-info .price-wrapper {
  margin-top: 12px;
}
.orders-wrapper .order .order-info .price-wrapper .price {
  font-size: 18px;
  font-weight: 600;
}
.orders-wrapper .order .order-info .price-wrapper .quantity {
  font-size: 14px;
  margin-left: 32px;
}
.orders-wrapper .order .order-info .additional-info {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 12px;
}
.orders-wrapper .order .order-info .additional-info .bold {
  font-weight: 600;
}
.orders-wrapper .order .btns-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.orders-wrapper .order .btns-wrapper .btn {
  max-width: 250px;
  width: 100%;
  display: inline-block;
  padding: 18px;
  font-size: 18px;
  color: #FFF;
  background: #A4CE3C;
  border: 2px solid #A4CE3C;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.1s;
}
.orders-wrapper .order .btns-wrapper .btn:hover {
  background: #FFF;
  border: 2px solid #A4CE3C;
  color: #A4CE3C;
}
.orders-wrapper .order .btns-wrapper .btn.white-bg {
  margin-top: 20px;
  background: #FFF;
  color: #A4CE3C;
}
.orders-wrapper .order .btns-wrapper .btn.white-bg:hover {
  background: #A4CE3C;
  color: #FFF;
}
.orders-wrapper .order .btns-wrapper .link {
  margin-top: 20px;
  color: #A4CE3C;
}

@media screen and (max-width: 1280px) {
  .orders-wrapper .order {
    grid-template-columns: 1fr 3fr;
    gap: 32px 20px;
  }
  .orders-wrapper .order .btns-wrapper {
    grid-column: 1/3;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
  }
  .orders-wrapper .order .btns-wrapper .link,
  .orders-wrapper .order .btns-wrapper .white-bg {
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 1020px) {
  .orders-wrapper .order .order-info .additional-info {
    flex-wrap: wrap;
    gap: 12px 32px;
  }
}
@media screen and (max-width: 600px) {
  .orders-wrapper .order {
    grid-template-columns: 2fr 3fr;
  }
}
@media screen and (max-width: 520px) {
  .orders-wrapper .title-container .title {
    font-size: 24px;
  }
  .orders-wrapper .title-container .select {
    padding: 12px 24px;
  }
  .orders-wrapper .order {
    grid-template-columns: 1fr;
  }
  .orders-wrapper .order .img-wrapper {
    height: 200px;
  }
  .orders-wrapper .order .btns-wrapper {
    grid-column: auto;
    flex-direction: column;
  }
}
.category-wrapper {
  margin-top: 60px;
  margin-bottom: 60px;
}
.category-wrapper .categories-container {
  /* display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 24px; */
}
.category-wrapper .categories-container .left-side .categories {
  border: 1px solid #F0F0F0;
  margin-bottom: 20px;
}
.category-wrapper .categories-container .left-side .categories .title {
  background: #F2FADD;
  padding: 16px 24px;
  font-size: 24px;
  color: #A4CE3C;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category-wrapper .categories-container .left-side .categories .title span {
  font-size: 16px;
  transition: 0.2s ease-out;
}
.category-wrapper .categories-container .left-side .categories .title.active span {
  transform: rotate(180deg);
}
.category-wrapper .categories-container .left-side .categories .list {
  list-style: none;
  margin-bottom: 0;
  max-height: 400px !important;
  overflow: auto;
  transition: 0.2s ease-out;
}
.category-wrapper .categories-container .left-side .categories .list .list-item {
  padding: 12px 24px;
}
.category-wrapper .categories-container .left-side .categories .list .list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.category-wrapper .categories-container .left-side .categories .list .list-item label input {
  width: 24px;
  height: 24px;
  accent-color: #A4CE3C;
}
.category-wrapper .categories-container .left-side .btns {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.category-wrapper .categories-container .left-side .btns .big-btn {
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  border: 2px solid #A4CE3C;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: none;
  transition: 0.1s;
}
.category-wrapper .categories-container .left-side .btns .big-btn:hover {
  background: #FFF;
  color: #A4CE3C;
}
.category-wrapper .categories-container .left-side .btns .link {
  text-decoration: underline;
  color: #A4CE3C;
}
.category-wrapper .categories-container .right-side .categories-container-products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  height: -moz-fit-content;
  height: fit-content;
}
.category-wrapper .categories-container .right-side .categories-container-products .product {
  border: 1px solid #f9f9f9;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.02);
}
.category-wrapper .categories-container .right-side .categories-container-products .product .img-wrapper {
  position: relative;
  height:260px
}
.category-wrapper .categories-container .right-side .categories-container-products .product .img-wrapper .product-image {
  width: 100%;
  height: 260px;
  -o-object-fit: contain;
     object-fit: contain;
}
.category-wrapper .categories-container .right-side .categories-container-products .product .img-wrapper .img-tag {
  position: absolute;
  top: 8px;
  left: 10px;
  background: #658AE5;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 16px;
  color: #FFF;
}
.category-wrapper .categories-container .right-side .categories-container-products .product .img-wrapper .btns {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transition: 0.1s ease-in-out;
}
.category-wrapper .categories-container .right-side .categories-container-products .product:hover .img-wrapper .btns {
  opacity: 1;
  pointer-events: all;
}
.category-wrapper .categories-container .right-side .categories-container-products .product .product-title {
  margin-top: 12px;
  font-size: 1em;
  color: #383838;
}
.category-wrapper .categories-container .right-side .categories-container-products .product .product-model {
  font-family: "Poppins", sans-serif;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
}
.category-wrapper .categories-container .right-side .categories-container-products .product .product-model .number {
  font-weight: 400;
  margin-left: 8px;
}
.category-wrapper .categories-container .right-side .categories-container-products .product .price-wrapper {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}
.category-wrapper .categories-container .right-side .categories-container-products .product .price-wrapper a {
  color: #B2CA00;
}
.category-wrapper .categories-container .right-side .categories-container-products .product .price-wrapper .stock-info {
  color: #A4CE3C;
}
.category-wrapper .categories-container .right-side .categories-container-products .product .addCart-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.category-wrapper .categories-container .right-side .categories-container-products .product .addCart-wrapper .cart-btn .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 14px;
  border: none;
  background: #B2CA00;
  color: #FFF;
}
.category-wrapper .categories-container .right-side .categories-container-products .product .addCart-wrapper .cart-btn .btn img {
  width: 19px;
}

@media screen and (max-width: 1220px) {
  .category-wrapper .categories-container {
    /* grid-template-columns: 1fr 2fr; */
  }
  .category-wrapper .categories-container .right-side .categories-container-products {
    /* grid-template-columns: 1fr 1fr; */
  }
}
@media screen and (max-width: 992px) {
  .category-wrapper {
    margin-top: 20px;
  }
  .category-wrapper .categories-container {
    /* grid-template-columns: 1fr 3fr; */
  }
  .category-wrapper .categories-container .right-side .categories-container-products {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .category-wrapper .categories-container {
    /* grid-template-columns: 1fr; */
  }
  .category-wrapper .categories-container .right-side .categories-container-products {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .category-wrapper {
    margin-top: 0;
  }
  .category-wrapper .categories-container {
    /* grid-template-columns: 1fr; */
  }
  .category-wrapper .categories-container.seminarspage {
    display: flex;
    flex-direction: column;
}
  .category-wrapper .categories-container .right-side .categories-container-products {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=home.css.map */