@font-face {
  font-family: iransans;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/IRANSansX-Regular.woff2") format("woff2");
}
@font-face {
  font-family: iransans;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/IRANSansX-Medium.woff2") format("woff2");
}
@font-face {
  font-family: iransans;
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/IRANSansX-DemiBold.woff2") format("woff2");
}
@font-face {
  font-family: iransans;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/IRANSansX-Bold.woff2") format("woff2");
}
@font-face {
  font-family: arabic;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ARABIC_BOLD.woff2") format("woff2");
}
@font-face {
  font-family: arabic;
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/ARABIC_BLACK.woff2") format("woff2");
}
* {
  box-sizing: border-box;
  direction: rtl;
  padding: 0;
  margin: 0;
  outline: none;
  font-feature-settings: "ss02";
}

body {
  font-size: 14px;
  font-family: iransans;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}

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

p {
  margin: 0;
  padding: 0;
}

input {
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;
  background-color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

button {
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;
  background-color: inherit;
  color: inherit;
}

.text-justify {
  text-align: justify;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.C1600 {
  max-width: 1600px;
  margin: 0 auto;
}

.C1450 {
  max-width: 1450px;
  margin: 0 auto;
}

.C1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.ltr {
  direction: ltr;
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-center-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobileDrawer {
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.3490196078) 0px 5px 15px;
  width: 50vw;
  transform: translateX(100%);
  visibility: hidden;
  transition: all ease 0.3s;
  background-color: #c7dbf3;
  padding: 1.3rem;
}
.mobileDrawer.open {
  transform: translateX(0);
  visibility: visible;
}

#mobileDrawerBtn {
  width: 25px;
  height: 25px;
  background-color: transparent;
}

.mobileDrawer > ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobileDrawer > ul li.active {
  color: white;
  font-weight: 800;
  font-size: 16px;
}

.drawer-overlay {
  position: fixed;
  z-index: 90;
  background-color: rgba(0, 0, 0, 0.2549019608);
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

header {
  position: absolute;
  right: 50%;
  translate: 50%;
  top: 10px;
  z-index: 30;
}

.navContainer .divider {
  color: rgb(188, 188, 188);
}
.navContainer .rightSec ul {
  display: flex;
}

.FirstBanner {
  width: 100%;
  min-height: 750px;
  background-image: url("../image-icons/banner.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 3rem;
}
.FirstBanner .elipse1 {
  /* Ellipse 16 */
  position: absolute;
  width: 45rem;
  height: 45rem;
  border-radius: 50%;
  right: 50%;
  top: 50%;
  translate: 50% -50%;
  opacity: 0.4;
  border: 8rem solid rgba(255, 255, 255, 0.148);
}
.FirstBanner .elipse2 {
  /* Ellipse 16 */
  position: absolute;
  width: 80rem;
  height: 80rem;
  border-radius: 50%;
  right: 50%;
  top: 50%;
  translate: 50% -50%;
  opacity: 0.4;
  border: 13rem solid rgba(255, 255, 255, 0.171);
}
.FirstBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(187, 187, 187, 0.109) 30%, rgba(0, 0, 0, 0.967) 110%);
  z-index: 1;
}
.FirstBanner > * {
  position: relative;
  z-index: 2;
}

.FirstBanner .content {
  width: 100%;
  max-width: 1200px;
}
.FirstBanner .content .first > p {
  margin: 1.6rem 0;
  font-size: 1.1rem;
}
.FirstBanner .content .secondContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 463px;
  width: 100%;
}
.FirstBanner .content .secondContainer .btn-container {
  padding: 3px;
  border-radius: 18px;
  border: 1px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.252);
  width: 100%;
}
.FirstBanner .content .secondContainer .btn-container > button {
  width: 100%;
  height: 59px;
  background: #c5f122;
  border-radius: 20px;
  font-size: 1.2rem;
}
.FirstBanner .content .second {
  color: #ffffff;
  /* Frame 1000006686 */
  /* Auto layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px;
  gap: 22px;
  width: 100%;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(184, 204, 228, 0.78);
  -webkit-backdrop-filter: blur(5.6px);
          backdrop-filter: blur(5.6px);
  border-radius: 40px;
}
.FirstBanner .content .second > h6 {
  font-size: 1.2rem;
  color: white;
}
.FirstBanner .content .second > .txtInput {
  padding: 10px 16px;
  gap: 10px;
  width: 100%;
  height: 65px;
  background: #ffffff;
  border: 1px solid #18d0e8;
  border-radius: 20px;
}
.FirstBanner .content .second .modelInput {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  gap: 10px;
  width: 100%;
  height: 65px;
  background: #ffffff;
  border: 1px solid #18d0e8;
  border-radius: 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../image-icons/arrow-down-black.svg");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 1.2rem;
  padding-right: 2rem;
}
.FirstBanner .content .second .modelInputWrapper {
  position: relative;
}
.FirstBanner .content .second .modelInputWrapper > .label {
  position: absolute;
  bottom: 50%;
  right: 10px;
  translate: 0 50%;
  color: #000000;
  pointer-events: none;
}
.FirstBanner .content .second .modelInputWrapper > .label span {
  color: #9e9e9e;
}
.FirstBanner .content .second .modelInputWrapper.has-value .label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.FirstBanner .content .second .submit {
  height: 60px;
  background: #18d0e8;
  border-radius: 20px;
  font-size: 1rem;
}
.FirstBanner .banner-title {
  font-family: arabic;
  font-size: 5rem;
}
.FirstBanner .banner-title > span:nth-of-type(1) {
  color: #ffffff;
}
.FirstBanner .banner-title > span:nth-of-type(2) {
  color: #18d0e8;
  margin-top: -5rem;
  margin-right: -2rem;
}

.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* header */
.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  color: #fff;
  border-radius: 8px;
}

/* arrow */
.dropdown-header .arrow {
  transition: transform 0.3s ease;
}

/* content hidden by default */
.dropdown-content {
  position: absolute;
  top: 76%;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: #000000;
  border: 1px solid #18d0e8;
  border-radius: 8px;
  margin-top: 5px;
  display: none;
  z-index: 10;
}

/* list items */
.dropdown-content ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.dropdown-content li {
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.dropdown-content li:hover {
  background-color: #f0f0f0;
}

/* show content on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* rotate arrow on hover */
.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.logosContainer {
  gap: 5rem;
  padding: 2.7rem 2rem;
}
.logosContainer > div {
  color: #758598;
}

.CatsSectionContainer {
  padding: 2rem 1rem;
  background: linear-gradient(155deg, #deeaf8 0%, rgba(173, 216, 230, 0) 60%);
}

.CatsSec .view-all {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 15px;
  width: 120.33px;
  height: 43px;
  color: white;
  white-space: nowrap;
  background: radial-gradient(62.64% 90.36% at 50% 50%, #0b2d38 0%, #155063 100%);
  border-radius: 15px;
}
.CatsSec .headerTitle h6 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b2d38;
  font-family: arabic;
}
.CatsSec .headerTitle h6 .q1 {
  color: #ff8326;
}
.CatsSec .headerTitle > span {
  color: #9e9e9e;
}
.CatsSec .Utils {
  position: relative;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  z-index: 20;
  display: flex;
  height: 85px;
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 1rem;
  max-width: 1500px;
  height: 70px;
}
.CatsSec .Utils > .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: static;
}
.CatsSec .Utils .swiper-pagination-bullet {
  width: 25px;
  height: 6px;
  border-radius: 5px;
}
.CatsSec .Utils .swiper-pagination-bullet-active {
  width: 49px;
  height: 9px;
  background-color: #000000;
}
.CatsSec .Utils #categorySwiperNextBtn,
.CatsSec .Utils #carCategorySwiperNextBtn {
  rotate: 180deg;
}

.CategoriesSwiper .cat-card {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem;
  transition: all ease 0.3s;
  padding: 10px 10px 15px;
  border-radius: 20px;
}
.CategoriesSwiper .cat-card > img {
  width: 147px;
  height: 147px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  filter: drop-shadow(3px 28px 11px rgba(16, 91, 101, 0.01)) drop-shadow(1px 16px 10px rgba(16, 91, 101, 0.05)) drop-shadow(1px 7px 7px rgba(16, 91, 101, 0.09)) drop-shadow(0px 2px 4px rgba(16, 91, 101, 0.1));
}
.CategoriesSwiper .cat-card > span > img {
  opacity: 0;
  visibility: hidden;
  max-width: 0px;
  max-height: 0px;
  transition: all ease 0.2s;
}
.CategoriesSwiper .cat-card:hover {
  background: #cef9ff;
  box-shadow: 0px 39px 15px rgba(0, 0, 0, 0.01), 0px 22px 13px rgba(0, 0, 0, 0.05), 0px 10px 10px rgba(0, 0, 0, 0.09), 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.CategoriesSwiper .cat-card:hover > span > img {
  visibility: visible;
  opacity: 1;
  max-width: 12px;
  max-height: 12px;
  margin-right: 0.6rem;
}

.CarCatsSectionContainer .carCat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  gap: 0.9rem;
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  padding-bottom: 0.1rem;
  padding-right: 0.4rem;
  padding-left: 0.4rem;
  background: radial-gradient(109.31% 141.26% at 12.87% 9.23%, #effdff 0%, rgb(255, 255, 255) 80.88%);
  border: 2px solid #ffffff;
  box-shadow: 6px 29px 31.9px -23px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
}
.CarCatsSectionContainer .carCat-card:hover {
  background: radial-gradient(109.31% 141.26% at 12.87% 9.23%, rgba(202, 249, 255, 0.46) 30%, rgba(255, 255, 255, 0.72) 80.88%);
}
.CarCatsSectionContainer .carCat-card > img {
  width: 170px;
  height: 108px;
  -o-object-fit: cover;
     object-fit: cover;
}
.CarCatsSectionContainer .carCat-card > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem 2rem;
  border: 3px solid #ffffff;
  border-radius: 50px 50px 5px 5px;
  white-space: nowrap;
}
.CarCatsSectionContainer .carCat-card.green > div {
  background: linear-gradient(109.84deg, #e4ff7e 11.3%, #cdf82d 111.37%);
}
.CarCatsSectionContainer .carCat-card.blue1 > div {
  background: linear-gradient(98.64deg, #60edff -6.11%, #8df2ff 94.1%);
}
.CarCatsSectionContainer .carCat-card.blue2 > div {
  background: linear-gradient(109.84deg, #c7dbf3 11.3%, #18d0e8 111.37%);
}

.BrandsBox {
  width: 100%;
  max-width: 1206px;
  padding: 2rem;
  background: linear-gradient(179.84deg, #d0faff -5.77%, #dfdfdf 106.7%);
  border: 1px solid #18d0e8;
  -webkit-backdrop-filter: blur(26.8px);
          backdrop-filter: blur(26.8px);
  border-radius: 40px;
  margin: 0 auto;
}
.BrandsBox .topBar .titles h6 {
  font-family: arabic;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #0b2d38;
}
.BrandsBox .topBar .titles p {
  font-size: 16px;
  color: #0b2d38;
}
.BrandsBox .topBar .tabs {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 21px;
  width: 100%;
  max-width: 600px;
  background: #55ebff;
  border: 0.7px solid rgba(197, 241, 34, 0.22);
  box-shadow: 0px 12px 5px rgba(0, 0, 0, 0.01), 0px 7px 4px rgba(0, 0, 0, 0.05), 0px 3px 3px rgba(0, 0, 0, 0.09), 0px 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.BrandsBox .topBar .tabs button {
  width: 100%;
  max-width: 177px;
  white-space: nowrap;
  padding: 0.8rem 2rem;
  transition: all ease 0.3s;
  border-radius: 15px;
}
.BrandsBox .topBar .tabs button.active, .BrandsBox .topBar .tabs button:hover {
  box-shadow: -4px 31px 12px rgba(0, 0, 0, 0.01), -2px 17px 10px rgba(0, 0, 0, 0.03), -1px 8px 8px rgba(0, 0, 0, 0.04), 0px 2px 4px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}
.BrandsBox .brandCard {
  color: #107192;
  width: 122px;
  height: 151px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.41);
  border: 1px solid #ffffff;
  border-radius: 20px;
  transition: all ease 0.3s;
  padding-top: 1rem;
  padding-bottom: 0.2rem;
}
.BrandsBox .brandCard:hover {
  background: #ffffff;
  color: #9fc221;
  box-shadow: 0px 28px 11px rgba(0, 0, 0, 0.01), 0px 16px 9px rgba(0, 0, 0, 0.05), 0px 7px 7px rgba(0, 0, 0, 0.09), 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.BrandsBox .brandCard:hover button {
  background: #18d0e8;
}
.BrandsBox .brandCard:hover button span {
  max-width: 65px;
  max-height: 24px;
  visibility: visible;
  opacity: 1;
  margin-left: 5px;
}
.BrandsBox .brandCard:hover button svg {
  color: white !important;
}
.BrandsBox .brandCard button {
  display: flex;
  align-items: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
  height: 36px;
  border-radius: 12px;
  background-color: transparent;
}
.BrandsBox .brandCard button span {
  transition: all ease 0.3s;
  max-height: 0;
  max-width: 0;
  visibility: hidden;
  opacity: 0;
  font-size: 0.71rem;
  font-weight: 700;
  color: white;
}

.BrandsBox .view-all {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 15px;
  width: 120.33px;
  height: 43px;
  color: white;
  white-space: nowrap;
  background: #9fc221;
  border-radius: 15px;
}
.BrandsBox .Utils {
  position: relative;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  z-index: 20;
  display: flex;
  height: 85px;
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 1rem;
  max-width: 1500px;
  height: 70px;
}
.BrandsBox .Utils > .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: static;
}
.BrandsBox .Utils .swiper-pagination-bullet {
  width: 25px;
  height: 6px;
  border-radius: 5px;
  background-color: #ffffff;
  opacity: 1;
}
.BrandsBox .Utils .swiper-pagination-bullet-active {
  width: 49px;
  height: 9px;
  background-color: #9fc221;
}
.BrandsBox .Utils #Brands1SwiperNextBtn,
.BrandsBox .Utils #Brands2SwiperNextBtn,
.BrandsBox .Utils #Brands3SwiperNextBtn {
  rotate: 180deg;
}

.circleParent1,
.circleParent2 {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
  top: -80px;
  right: 50px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 13px 41px #b8cce4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circleParent1 .circleChil1,
.circleParent1 .circleChil2,
.circleParent2 .circleChil1,
.circleParent2 .circleChil2 {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 13px 41px #b8cce4;
}

.circleParent2 {
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
  top: 57% !important;
  left: 50px !important;
  right: auto;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}
.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.CarProductContainer {
  background-color: #18d0e8;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.CarProductContainer .elipse1 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35rem;
  height: 35rem;
  border-radius: 50%;
  left: -19rem;
  top: 40%;
  opacity: 0.4;
  border: 4.5rem solid rgba(255, 255, 255, 0.4078431373);
}
.CarProductContainer .elipse1 .elispeCHild {
  width: 84%;
  height: 84%;
  border: 4.5rem solid rgba(255, 255, 255, 0.406);
  border-radius: 50%;
}
.CarProductContainer .elipse2 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35rem;
  height: 35rem;
  border-radius: 50%;
  right: -6rem;
  bottom: 40%;
  opacity: 0.4;
  border: 4.5rem solid rgba(255, 255, 255, 0.406);
}
.CarProductContainer .elipse2 .elispeCHild {
  width: 84%;
  height: 84%;
  border: 4.5rem solid rgba(255, 255, 255, 0.406);
  border-radius: 50%;
}

.CarProductSec .title > h6 {
  font-size: 1.8rem;
  color: #252525;
  font-family: arabic;
}
.CarProductSec .title > h6 span {
  color: white;
}
.CarProductSec .title p {
  color: #252525;
}
.CarProductSec .Utils {
  position: relative;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  z-index: 20;
  display: flex;
  height: 85px;
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 1rem;
  max-width: 1500px;
  height: 70px;
}
.CarProductSec .Utils > .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: static;
}
.CarProductSec .Utils .swiper-pagination-bullet {
  width: 25px;
  height: 6px;
  border-radius: 5px;
  background-color: white;
  opacity: 1;
}
.CarProductSec .Utils .swiper-pagination-bullet-active {
  width: 49px;
  height: 9px;
  background-color: #252525;
}
.CarProductSec .Utils #CarProductSwiperNextBtn {
  rotate: 180deg;
}
.CarProductSec .view-all {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 15px;
  width: 120.33px;
  height: 43px;
  color: white;
  white-space: nowrap;
  background: #252525;
  border-radius: 15px;
}

.CarProductSwiper .card {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  justify-content: center;
  width: 280px;
  background: #e2fcff;
  border: 1.5px solid #ffffff;
  box-shadow: 0px 4px 6.7px rgba(0, 0, 0, 0.08);
  border-radius: 25px;
}
.CarProductSwiper .card > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 220px;
  height: 90px;
}
.CarProductSwiper .card .rate {
  color: #107192;
}
.CarProductSwiper .card .info {
  border-top: 1px solid #252525;
  padding-top: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2705882353);
  padding-bottom: 1rem;
  margin-top: 3rem;
  margin-bottom: 1.3rem;
  width: 100%;
}
.CarProductSwiper .card .infoName {
  color: #252525;
  font-size: 0.8rem;
}
.CarProductSwiper .card .buyBtn {
  padding: 7px 11px;
  width: 71px;
  height: 36px;
  background: #18d0e8;
  border-radius: 10px;
}
.CarProductSwiper .card .price {
  color: #107192;
}

.NewProductContainer .title > h6 {
  font-size: 1.8rem;
  color: #252525;
  font-family: arabic;
}
.NewProductContainer .title > h6 span {
  color: #18d0e8;
}
.NewProductContainer .title p {
  color: #9e9e9e;
}
.NewProductContainer .Utils {
  position: relative;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  z-index: 20;
  display: flex;
  height: 85px;
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 1rem;
  max-width: 1500px;
  height: 70px;
}
.NewProductContainer .Utils > .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: static;
}
.NewProductContainer .Utils .swiper-pagination-bullet {
  width: 25px;
  height: 6px;
  border-radius: 5px;
}
.NewProductContainer .Utils .swiper-pagination-bullet-active {
  width: 49px;
  height: 9px;
  background-color: #18d0e8;
}
.NewProductContainer .Utils #NewProductSwiperNextBtn {
  rotate: 180deg;
}
.NewProductContainer .view-all {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  width: 120.33px;
  height: 43px;
  color: #252525;
  white-space: nowrap;
  background: radial-gradient(62.64% 90.36% at 50% 50%, #c5f122 0%, #b3db1e 100%);
  border-radius: 15px;
}

.NewProductSwiper .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0px 10px;
  gap: 12px;
  overflow: hidden;
  width: 220px;
  height: 296px;
  margin: 0 auto;
  background: #ffffff;
  border: 0.7px solid #b8cce4;
  box-shadow: 0px 4px 6.7px rgba(0, 0, 0, 0.08);
  border-radius: 25px;
}
.NewProductSwiper .card > img {
  width: 100%;
  height: 145px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0392156863);
}
.NewProductSwiper .card .info span:nth-of-type(1) {
  font-size: 0.8rem;
}
.NewProductSwiper .card .info span:nth-of-type(2) {
  padding: 4px 10px;
  width: 57px;
  height: 30px;
  background: #e4e4e4;
  border-radius: 10px;
  color: #107192;
}
.NewProductSwiper .card .footer {
  border-top: 1px solid #b8cce4;
  padding-top: 0.9rem;
  width: 100%;
}
.NewProductSwiper .card .footer .buyBtn {
  padding: 7px 11px;
  width: 71px;
  height: 36px;
  background: #18d0e8;
  border-radius: 10px;
}
.NewProductSwiper .card .footer .price {
  font-weight: 400;
  font-size: 16px;
  color: #107192;
}
.NewProductSwiper .card .footer .price-second {
  font-weight: 400;
  font-size: 12px;
  color: #9e9e9e;
  text-decoration: line-through;
}

.FestivalSec {
  position: relative;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
  background: linear-gradient(95.24deg, #18d0e8 1.8%, #c5f122 98.2%);
  border: 1px solid #a7cfff;
  border-radius: 40px;
  min-height: 370px;
}
.FestivalSec .elipse {
  position: absolute;
  box-sizing: border-box;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 622.78px;
  height: 622.78px;
  bottom: 50%;
  translate: 0 50%;
  right: 2rem;
  opacity: 0.4;
  border: 59px solid rgba(255, 255, 255, 0.19);
}
.FestivalSec .elipse .elipse-child {
  border-radius: 50%;
  width: 85%;
  height: 85%;
  border: 59px solid rgba(255, 255, 255, 0.19);
}
.FestivalSec .content {
  width: 50%;
  height: 100%;
}
.FestivalSec .content > h6 {
  font-family: arabic;
  font-weight: 700;
  font-size: 34px;
  color: #000000;
}
.FestivalSec .content > p {
  font-size: 15px;
  line-height: 31px;
  text-align: justify;
  color: #000000;
  max-width: 400px;
}
.FestivalSec .content > button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 15px;
  width: 180px;
  height: 58px;
  background: radial-gradient(62.64% 90.36% at 50% 50%, #ffffff 0%, #f3ffc8 100%);
  border-radius: 20px;
}
.FestivalSec .images {
  position: relative;
  width: 50%;
  height: 370px;
}
.FestivalSec .images .card1 {
  position: absolute;
  width: 278.65px;
  height: 384.14px;
  border: 2px solid #ffffff;
  border-radius: 30px;
  transform: rotate(6.3deg);
  -o-object-fit: cover;
     object-fit: cover;
  left: 236.32px;
  top: 95px;
}
.FestivalSec .images .card2 {
  position: absolute;
  width: 278.65px;
  height: 384.14px;
  left: 60px;
  top: 52px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #ffffff;
  border-radius: 30px;
  transform: rotate(-7.37deg);
}

.KitsSec {
  max-width: 1300px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #a7cfff;
  border-radius: 40px;
  margin-top: 12rem;
  margin-bottom: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
}
.KitsSec .content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.KitsSec .content > h6 {
  color: #000000;
  font-family: arabic;
  font-size: 34px;
}
.KitsSec .content > h6 span {
  color: #b3db1e;
}
.KitsSec .content > p {
  font-size: 17px;
  color: #9e9e9e;
}
.KitsSec .content button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 15px;
  width: 180px;
  height: 54px;
  background: radial-gradient(62.64% 90.36% at 50% 50%, #c5f122 0%, #b3db1e 100%);
  border-radius: 20px;
}
.KitsSec .content .btn-container {
  background-color: #c5f122;
  padding: 5px;
  border-radius: 20px;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 4px 50px 20px rgba(0, 0, 0, 0.01), 2px 28px 17px rgba(0, 0, 0, 0.03), 1px 12px 12px rgba(0, 0, 0, 0.04), 0px 3px 7px rgba(0, 0, 0, 0.05);
}
.KitsSec .images {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.KitsSec .images > div {
  box-sizing: border-box;
  width: 244px;
  height: 268px;
  background: linear-gradient(162.12deg, #f3f8ff 10.17%, #e5f1ff 110.74%);
  border: 0.5px solid #b4d6ff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.KitsSec .images > div img {
  max-height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}
.KitsSec .images .img1 {
  margin-top: -3.2rem;
}
.KitsSec .images .img2 {
  margin-bottom: -7.5rem;
}
.KitsSec .images .img3 {
  margin-top: -4.5rem;
}

.StorageContainer {
  width: 100%;
  background: linear-gradient(124.46deg, #18d0e8 13.91%, #e8fcff 76.01%);
  position: relative;
  overflow: hidden;
}
.StorageContainer .elipse {
  box-sizing: border-box;
  position: absolute;
  width: 909.67px;
  height: 909.67px;
  bottom: 17%;
  left: -20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  border: 100px solid #8ff2ff;
  border-radius: 50%;
}
.StorageContainer .elipse .elipse-child {
  width: 80%;
  height: 80%;
  border: 100px solid #8ff2ff;
  border-radius: 50%;
}

.StorageSec {
  min-height: 500px;
  display: flex;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  z-index: 10;
}
.StorageSec .frame {
  align-self: flex-end;
  width: 100%;
  max-width: 800px;
}
.StorageSec .content > h4 {
  color: #000000;
  font-size: 3rem;
  font-family: arabic;
}
.StorageSec .content > h4 > span {
  position: relative;
  bottom: -3rem;
  right: -4.4rem;
}
.StorageSec .content > ul li {
  font-size: 15px;
  color: #000000;
  position: relative;
}
.StorageSec .content > ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #000000;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: -14px;
}
.StorageSec .content button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 15px;
  width: 225px;
  height: 61px;
  background: #272727;
  border-radius: 15px;
  color: #18d0e8;
  font-weight: 600;
  font-size: 15px;
}

.SalesProductSec .title > h6 {
  font-family: arabic;
  font-size: 28px;
  color: #000000;
}
.SalesProductSec .title > h6 span {
  color: #b3db1e;
}
.SalesProductSec .title > p {
  color: #9e9e9e;
}
.SalesProductSec .view-all {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 15px;
  width: 120.33px;
  height: 43px;
  color: white;
  white-space: nowrap;
  background: radial-gradient(62.64% 90.36% at 50% 50%, #18d0e8 0%, #19bacf 100%);
  border-radius: 15px;
}
.SalesProductSec .Utils {
  position: relative;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  z-index: 20;
  display: flex;
  height: 85px;
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 1rem;
  max-width: 1500px;
  height: 70px;
}
.SalesProductSec .Utils > .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: static;
}
.SalesProductSec .Utils .swiper-pagination-bullet {
  width: 25px;
  height: 6px;
  border-radius: 5px;
}
.SalesProductSec .Utils .swiper-pagination-bullet-active {
  width: 49px;
  height: 9px;
  background-color: #18d0e8;
}
.SalesProductSec .Utils #SalesProductSwiperNextBtn {
  rotate: 180deg;
}
.SalesProductSec .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0px 10px;
  gap: 12px;
  overflow: hidden;
  width: 220px;
  height: 296px;
  margin: 0 auto;
  background: #ffffff;
  border: 0.7px solid #b8cce4;
  box-shadow: 0px 4px 6.7px rgba(0, 0, 0, 0.08);
  border-radius: 25px;
}
.SalesProductSec .card > img {
  width: 100%;
  height: 145px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0392156863);
}
.SalesProductSec .card .info span:nth-of-type(1) {
  font-size: 0.8rem;
}
.SalesProductSec .card .info span:nth-of-type(2) {
  padding: 4px 10px;
  width: 57px;
  height: 30px;
  background: #e4e4e4;
  border-radius: 10px;
  color: #107192;
}
.SalesProductSec .card .footer {
  border-top: 1px solid #b8cce4;
  padding-top: 0.9rem;
  width: 100%;
}
.SalesProductSec .card .footer .buyBtn {
  padding: 7px 11px;
  width: 71px;
  height: 36px;
  background: #18d0e8;
  border-radius: 10px;
}
.SalesProductSec .card .footer .price {
  font-weight: 400;
  font-size: 16px;
  color: #107192;
}
.SalesProductSec .card .footer .price-second {
  font-weight: 400;
  font-size: 12px;
  color: #9e9e9e;
  text-decoration: line-through;
}
.SalesProductSec .card .callBack {
  width: 100%;
  background-color: #e3e3e3;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
}

.CoopSec {
  background: linear-gradient(95.24deg, #4de7fb 1.8%, #107192 98.2%);
  border: 1px solid #a7cfff;
  border-radius: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.CoopSec .elipse {
  position: absolute;
  box-sizing: border-box;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 580px;
  height: 580px;
  bottom: 50%;
  translate: 0 50%;
  right: 2rem;
  opacity: 0.4;
  border: 59px solid rgba(255, 255, 255, 0.19);
}
.CoopSec .elipse .elipse-child {
  border-radius: 50%;
  width: 85%;
  height: 85%;
  border: 59px solid rgba(255, 255, 255, 0.19);
}
.CoopSec .images {
  z-index: 10;
  position: relative;
  width: 100%;
  min-height: 328px;
}
.CoopSec .images .card1 {
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 70px;
  top: -30px;
  filter: drop-shadow(0px 67px 27px rgba(0, 0, 0, 0.02)) drop-shadow(0px 38px 23px rgba(0, 0, 0, 0.08)) drop-shadow(0px 17px 17px rgba(0, 0, 0, 0.13)) drop-shadow(0px 4px 9px rgba(0, 0, 0, 0.15));
}
.CoopSec .images .card2 {
  position: absolute;
  top: 120px;
  right: 70px;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
.CoopSec .content {
  z-index: 10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.CoopSec .content h6 {
  font-family: arabic;
  font-size: 1.5rem;
  color: #000000;
}
.CoopSec .content p {
  font-size: 0.8rem;
  line-height: 1.6rem;
  color: #000000;
  margin: 0 auto;
  max-width: 400px;
  font-weight: 400;
  text-align: justify;
}
.CoopSec .content > button {
  /* Frame 5 */
  /* Auto layout */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  gap: 10px;
  width: 180px;
  height: 50px;
  background: #ffffff;
  box-shadow: 4px 50px 20px rgba(0, 0, 0, 0.01), 2px 28px 17px rgba(0, 0, 0, 0.03), 1px 12px 12px rgba(0, 0, 0, 0.04), 0px 3px 7px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.OGProdcutSec .title > h6 {
  font-family: arabic;
  font-size: 28px;
  color: #000000;
}
.OGProdcutSec .title > h6 span {
  color: #18d0e8;
}
.OGProdcutSec .title > p {
  color: #9e9e9e;
}
.OGProdcutSec .view-all {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 15px;
  width: 120.33px;
  height: 43px;
  color: white;
  white-space: nowrap;
  background: radial-gradient(62.64% 90.36% at 50% 50%, #0b2d38 0%, #155063 100%);
  border-radius: 15px;
}
.OGProdcutSec .Utils {
  position: relative;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  z-index: 20;
  display: flex;
  height: 85px;
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 1rem;
  max-width: 1500px;
  height: 70px;
}
.OGProdcutSec .Utils > .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: static;
}
.OGProdcutSec .Utils .swiper-pagination-bullet {
  width: 25px;
  height: 6px;
  border-radius: 5px;
}
.OGProdcutSec .Utils .swiper-pagination-bullet-active {
  width: 49px;
  height: 9px;
  background-color: #000000;
}
.OGProdcutSec .Utils #OGProductSwiperNextBtn {
  rotate: 180deg;
}
.OGProdcutSec .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  width: 220px;
  margin: 0 auto;
  background: #ffffff;
  border: 0.7px solid #b8cce4;
  box-shadow: 0px 4px 6.7px rgba(0, 0, 0, 0.08);
  border-radius: 25px;
}
.OGProdcutSec .card > img {
  width: 100%;
  height: 145px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0392156863);
}
.OGProdcutSec .card .info span:nth-of-type(1) {
  font-size: 0.8rem;
}
.OGProdcutSec .card .info span:nth-of-type(2) {
  padding: 4px 10px;
  width: 57px;
  height: 30px;
  background: #e4e4e4;
  border-radius: 10px;
  color: #107192;
}
.OGProdcutSec .card .footer {
  border-top: 1px solid #b8cce4;
  padding-top: 0.9rem;
  width: 100%;
}
.OGProdcutSec .card .footer .buyBtn {
  padding: 7px 11px;
  width: 71px;
  height: 36px;
  background: #18d0e8;
  border-radius: 10px;
}
.OGProdcutSec .card .footer .price {
  font-weight: 400;
  font-size: 16px;
  color: #107192;
}
.OGProdcutSec .card .footer .price-second {
  font-weight: 400;
  font-size: 12px;
  color: #9e9e9e;
  text-decoration: line-through;
}
.OGProdcutSec .card .callBack {
  width: 100%;
  background-color: #e3e3e3;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
}

.FilterSec {
  position: relative;
  background: linear-gradient(95.53deg, #ffffff 5.29%, #faffe9 95.62%);
  border: 1px solid #a7cfff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.FilterSec .images {
  display: flex;
  align-items: center;
  min-height: 296.72px;
}
.FilterSec .images > div {
  box-sizing: border-box;
  width: 238.32px;
  height: 238.32px;
  background: linear-gradient(162.12deg, #f3f8ff 10.17%, #e5f1ff 110.74%);
  border: 0.5px solid #b4d6ff;
  box-shadow: 3px 4px 15.5px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.FilterSec .images .card1 {
  margin-right: -2rem;
  margin-bottom: -10rem;
}
.FilterSec .images .card2 {
  margin-right: -3rem;
  margin-top: -11rem;
}
.FilterSec .images .card3 {
  margin-right: -2rem;
  margin-bottom: -10rem;
}
.FilterSec .images .card4 {
  margin-right: -3rem;
  margin-top: -11rem;
}
.FilterSec .images img {
  width: 100%;
  height: 100%;
  max-width: 170px;
  max-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0px 68px 27px rgba(0, 0, 0, 0.02)) drop-shadow(0px 38px 23px rgba(0, 0, 0, 0.08)) drop-shadow(0px 17px 17px rgba(0, 0, 0, 0.13)) drop-shadow(0px 4px 9px rgba(0, 0, 0, 0.15));
}
.FilterSec .content {
  width: 100%;
  min-height: 200px;
}
.FilterSec .content h6 {
  font-family: arabic;
  font-size: 34px;
  color: #000000;
}
.FilterSec .content h6 span {
  color: #18d0e8;
}
.FilterSec .content p {
  color: #808080;
}
.FilterSec .content button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 15px;
  width: 200px;
  height: 58px;
  background: radial-gradient(62.64% 90.36% at 50% 50%, #18d0e8 0%, #50ebff 100%);
  border-radius: 20px;
}
.FilterSec .content .btn-container {
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px;
  background: #18d0e8;
  box-shadow: 4px 50px 20px rgba(0, 0, 0, 0.01), 2px 28px 17px rgba(0, 0, 0, 0.03), 1px 12px 12px rgba(0, 0, 0, 0.04), 0px 3px 7px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.ThreeCardsSec {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.ThreeCardsSec .card {
  width: 100%;
  overflow: hidden;
  max-width: 385px;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  transition: all ease 0.3s;
}
.ThreeCardsSec .card:hover {
  filter: drop-shadow(0px 76px 31px rgba(0, 0, 0, 0.03)) drop-shadow(0px 43px 26px rgba(0, 0, 0, 0.1)) drop-shadow(0px 19px 19px rgba(0, 0, 0, 0.17)) drop-shadow(0px 5px 11px rgba(0, 0, 0, 0.2));
}
.ThreeCardsSec .card:hover .cover .overlay {
  opacity: 1;
  visibility: visible;
}
.ThreeCardsSec .card.blue {
  background: linear-gradient(148.64deg, #18d0e8 4.82%, #107192 84.12%);
}
.ThreeCardsSec .card.blue .cover {
  border: 0.7px solid #4deaff;
}
.ThreeCardsSec .card.blue .content p {
  color: white;
}
.ThreeCardsSec .card.blue .content h6 {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.ThreeCardsSec .card.blue .content span {
  color: white;
}
.ThreeCardsSec .card.green {
  background: linear-gradient(213.92deg, #c5f122 7.91%, #9fc221 110.46%);
}
.ThreeCardsSec .card.green .cover {
  border: 0.7px solid #c5f122;
}
.ThreeCardsSec .card.green .content p {
  color: #000000;
}
.ThreeCardsSec .card.green .content h6 {
  color: #000000;
  border-bottom: 1px solid #000000;
}
.ThreeCardsSec .card.green .content span {
  color: #000000;
}
.ThreeCardsSec .card .cover {
  position: relative;
  width: 100%;
  max-width: 170px;
  min-width: 170px;
  height: 350px;
  overflow: hidden;
  border-radius: 10px 30px 30px 10px;
  box-shadow: -60px 0px 49.4px -42px rgba(0, 0, 0, 0.25);
}
.ThreeCardsSec .card .cover .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6980392157);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 30px 30px 10px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.ThreeCardsSec .card .cover .overlay .btn-container {
  padding: 4px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 4px 50px 20px rgba(0, 0, 0, 0.01), 2px 28px 17px rgba(0, 0, 0, 0.03), 1px 12px 12px rgba(0, 0, 0, 0.04), 0px 3px 7px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.ThreeCardsSec .card .cover .overlay button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 4px;
  width: 108px;
  height: 40px;
  background: #fdffff;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.ThreeCardsSec .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ThreeCardsSec .card .content {
  padding: 1.5rem 1rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}
.ThreeCardsSec .card .content h6 {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1rem;
  font-size: 24px;
  padding-bottom: 0.5rem;
}
.ThreeCardsSec .card .content p {
  line-height: 1.8rem;
  text-align: justify;
}
.ThreeCardsSec .card .content span {
  display: block;
  margin-top: auto;
  text-align: center;
  padding: 0;
  font-weight: 400;
  font-size: 85px;
  font-family: "Poppins", sans-serif;
}

.DiscountSec .title > h6 {
  font-size: 1.8rem;
  color: #252525;
  font-family: arabic;
}
.DiscountSec .title > h6 span {
  color: #ff3b3b;
}
.DiscountSec .title p {
  color: #9e9e9e;
}
.DiscountSec .Utils {
  position: relative;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  z-index: 20;
  display: flex;
  height: 85px;
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 1rem;
  max-width: 1500px;
  height: 70px;
}
.DiscountSec .Utils > .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: static;
}
.DiscountSec .Utils .swiper-pagination-bullet {
  width: 25px;
  height: 6px;
  border-radius: 5px;
}
.DiscountSec .Utils .swiper-pagination-bullet-active {
  width: 49px;
  height: 9px;
  background-color: #0b2d38;
}
.DiscountSec .Utils #DisProductSwiperNextBtn {
  rotate: 180deg;
}
.DiscountSec .view-all {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  width: 120.33px;
  height: 43px;
  color: #ffffff;
  white-space: nowrap;
  background: radial-gradient(62.64% 90.36% at 50% 50%, #0b2d38 0%, #155063 100%);
  border-radius: 15px;
}
.DiscountSec .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  width: 220px;
  margin: 0 auto;
  background: #ffffff;
  border: 0.7px solid #b8cce4;
  box-shadow: 0px 4px 6.7px rgba(0, 0, 0, 0.08);
  border-radius: 25px;
}
.DiscountSec .card > img {
  width: 100%;
  height: 145px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0392156863);
}
.DiscountSec .card .info span:nth-of-type(1) {
  font-size: 0.8rem;
}
.DiscountSec .card .info span:nth-of-type(2) {
  padding: 4px 10px;
  width: 57px;
  height: 30px;
  background: #e4e4e4;
  border-radius: 10px;
  color: #107192;
}
.DiscountSec .card .footer {
  border-top: 1px solid #b8cce4;
  padding-top: 0.9rem;
  padding-bottom: 0.4rem;
  width: 100%;
}
.DiscountSec .card .footer .buyBtn {
  padding: 7px 11px;
  width: 71px;
  height: 36px;
  background: #18d0e8;
  border-radius: 10px;
}
.DiscountSec .card .footer .discount {
  background-color: #ff3b3b;
  width: 40px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.DiscountSec .card .footer .price {
  font-weight: 400;
  font-size: 16px;
  color: #107192;
}
.DiscountSec .card .footer .price-second {
  font-weight: 400;
  font-size: 12px;
  color: #9e9e9e;
  text-decoration: line-through;
}
.DiscountSec .card .callBack {
  width: 100%;
  background-color: #e3e3e3;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
}

.BlogsSec .title > h6 {
  font-size: 1.8rem;
  color: #252525;
  font-family: arabic;
}
.BlogsSec .title > h6 span {
  color: #18d0e8;
}
.BlogsSec .title p {
  color: #9e9e9e;
}
.BlogsSec .Utils {
  position: relative;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  z-index: 20;
  display: flex;
  height: 85px;
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 1rem;
  max-width: 1500px;
  height: 70px;
}
.BlogsSec .Utils > .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: static;
}
.BlogsSec .Utils .swiper-pagination-bullet {
  width: 25px;
  height: 6px;
  border-radius: 5px;
}
.BlogsSec .Utils .swiper-pagination-bullet-active {
  width: 49px;
  height: 9px;
  background-color: #0b2d38;
}
.BlogsSec .Utils #BlogsSwiperNextBtn {
  rotate: 180deg;
}
.BlogsSec .view-all {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  width: 120.33px;
  height: 43px;
  color: #ffffff;
  white-space: nowrap;
  background: radial-gradient(62.64% 90.36% at 50% 50%, #0b2d38 0%, #155063 100%);
  border-radius: 15px;
}
.BlogsSec .cardContainer {
  padding: 8px;
  width: 285px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
}
.BlogsSec .cardContainer.blue {
  background: linear-gradient(319.33deg, rgba(255, 255, 255, 0) 82%, #e8fcff 91.09%), linear-gradient(253.34deg, rgba(255, 255, 255, 0) 81.51%, #18d0e8 96.81%), linear-gradient(57.85deg, rgba(255, 255, 255, 0) 76.34%, #18d0e8 88.16%), #e3fcff;
  border: 1px solid #acf5ff;
}
.BlogsSec .cardContainer.blue .card .footer button {
  background: linear-gradient(106.31deg, #18d0e8 17.85%, #47eaff 82.15%);
}
.BlogsSec .cardContainer.green {
  background: linear-gradient(9.95deg, rgba(255, 255, 255, 0) 75.66%, #e8fcff 94.41%), linear-gradient(165.32deg, rgba(255, 255, 255, 0) 82.08%, #c5f122 92.75%), linear-gradient(324.02deg, rgba(255, 255, 255, 0) 65.19%, #c5f122 82.91%), #f8ffe0;
  border: 1px solid #f1ffbc;
}
.BlogsSec .cardContainer.green .card .footer button {
  background: linear-gradient(106.31deg, #bde81d 17.85%, #c5f122 82.15%);
}
.BlogsSec .cardContainer .card {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  box-shadow: 3px 28px 11px rgba(16, 91, 101, 0.01), 1px 16px 10px rgba(16, 91, 101, 0.05), 1px 7px 7px rgba(16, 91, 101, 0.09), 0px 2px 4px rgba(16, 91, 101, 0.1);
}
.BlogsSec .cardContainer .card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.BlogsSec .cardContainer .card .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.BlogsSec .cardContainer .card .content h6 {
  font-size: 0.9rem;
  color: #252525;
  line-height: 1.5rem;
}
.BlogsSec .cardContainer .card .content p {
  font-size: 13px;
  text-align: justify;
  color: #9e9e9e;
  line-height: 1.6rem;
  overflow: hidden;
  min-height: 85px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.BlogsSec .cardContainer .card .footer {
  border-top: 1px solid #a4bedd;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.BlogsSec .cardContainer .card .footer button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 5px;
  width: 108.33px;
  height: 43px;
  background: linear-gradient(106.31deg, #18d0e8 17.85%, #47eaff 82.15%);
  border-radius: 15px;
}

.FeaturesSectionContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f9ff;
}

.FeaturesSec {
  position: relative;
  overflow: hidden;
  max-width: 1300px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.FeaturesSec .featureCard .txt h6 {
  font-size: 16px;
  color: #0b2d38;
}
.FeaturesSec .featureCard .txt p {
  font-size: 12px;
  color: #107192;
}
.FeaturesSec .divider {
  width: 1px;
  height: 28px;
  background-color: #d2d2d2;
}

footer {
  background-color: #0b2d38;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footerContainer {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.footerContainer .sec1 {
  display: flex;
  justify-content: space-between;
}
.footerContainer .sec1 > div {
  max-width: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footerContainer .sec1 > div .line {
  height: 3px;
  background-color: #c5f122;
  width: 30px;
  border-radius: 4px;
  display: block;
}
.footerContainer .sec1 > div .title {
  font-style: Bold;
  font-size: 16px;
  color: #c5f122;
}
.footerContainer .sec1 > div ul {
  color: white;
}
.footerContainer .sec1 > div ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footerContainer .sec1 > div ul li svg {
  flex-shrink: 0;
}
.footerContainer .sec2 {
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.footerContainer .sec2 .info {
  color: white;
  max-width: 530px;
}
.footerContainer .sec2 .info p {
  line-height: 1.6rem;
  text-align: justify;
}
.footerContainer .sec2 .info .img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  width: 81px;
  height: 90px;
  border-radius: 15px;
  overflow: hidden;
}
.footerContainer .sec2 .info .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footerContainer .sec2 .form {
  max-width: 400px;
  width: 100%;
}
.footerContainer .sec2 .form .line {
  height: 3px;
  background-color: #c5f122;
  width: 30px;
  border-radius: 4px;
  display: block;
}
.footerContainer .sec2 .form .title {
  font-style: Bold;
  font-size: 16px;
  color: #c5f122;
}
.footerContainer .sec2 .form > .txtInput {
  padding: 10px 16px;
  gap: 10px;
  width: 100%;
  height: 55px;
  background: #ffffff;
  border: 1px solid #18d0e8;
  border-radius: 15px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.footerContainer .sec2 .form .modelInput {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  gap: 10px;
  width: 100%;
  height: 55px;
  background: #ffffff;
  border: 1px solid #18d0e8;
  border-radius: 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../image-icons/arrow-down-black.svg");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 1.2rem;
  padding-right: 2rem;
}
.footerContainer .sec2 .form .modelInputWrapper {
  font-size: 0.8rem;
  position: relative;
}
.footerContainer .sec2 .form .modelInputWrapper > .label {
  position: absolute;
  bottom: 50%;
  right: 13px;
  translate: 0 50%;
  color: #000000;
  pointer-events: none;
}
.footerContainer .sec2 .form .modelInputWrapper > .label span {
  color: #9e9e9e;
}
.footerContainer .sec2 .form .modelInputWrapper.has-value .label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.footerContainer .sec2 .form .submit {
  height: 50px;
  background: #18d0e8;
  border-radius: 15px;
  font-size: 0.8rem;
}
.footerContainer .sec3 {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.bottom-sticky-btns {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bottom-sticky-btns .whatsapp {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.7rem;
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(1, 177, 86, 0.15);
  border: 1px solid #01b156;
  box-shadow: 0px 4px 11.9px rgba(99, 99, 99, 0.08);
  border-radius: 50%;
}
.bottom-sticky-btns .call {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.7rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50%;
  background: rgba(21, 164, 183, 0.15);
  border: 1px solid #0d636e;
  box-shadow: 0px 4px 11.9px rgba(99, 99, 99, 0.08);
}/*# sourceMappingURL=style.css.map */