/* Fonts */


@font-face {
  font-family: 'Nexa-Trial';
  src: url('../font/Nexa-Trial-Regular.ttf')
}
@font-face {
  font-family: 'Nexa-Trial-Bold';
  src: url('../font/Nexa-Trial-Bold.ttf')
}
@font-face {
  font-family: 'Nexa-Trial-Light';
  src: url('../font/Nexa-Trial-Light.ttf')
}
@font-face {
  font-family: 'Nexa-Trial-Black';
  src: url('../font/Nexa-Trial-Black.ttf')
}





:root {
  --font-default: 'IBM Plex Sans Arabic','Nexa-Trial';
  --font-primary:  'IBM Plex Sans Arabic','Nexa-Trial';
  --font-secondary: 'IBM Plex Sans Arabic','Nexa-Trial';
  --font-light: 'IBM Plex Sans Arabic','Nexa-Trial-Light';
  --font-Black: 'IBM Plex Sans Arabic','Nexa-Trial-Black';
}

/* Global Colors */
:root {
  --color-default: #212529;
  --color-default-rgb: 33, 37, 41;
  --color-background: #ffffff;
  --color-background-rgb: 255, 255, 255;
  --color-primary: #B57098;
  --color-primary-rgb: 232, 69, 69;
  --color-secondary: #6E7079;
  --color-secondary-rgb: 50, 53, 58;
  --color-box-background: #ffffff;
  --color-box-background-rgb: 255, 255, 255;
  --color-inverse: #ffffff;
  --color-inverse-rgb: 255, 255, 255;
  --color-dwonload: #f6f6f8;
  --color-primary-2: #7E5B6F;
}

/* Nav Menu Colors */
:root {
  --color-nav: #3a3939;
  --color-nav-hover: #e84545;
  --color-nav-dropdown: #3a3939;
  --color-nav-dropdown-hover: #e84545;
  --color-nav-dropdown-background: #ffffff;
  --color-nav-mobile-background: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--color-default);
  background-color: var(--color-background);
  font-family: var(--font-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(var(--color-primary-rgb), 0.7);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
p{
  color: var(--color-secondary);
}
section {
  color: var(--color-default);
  background-color: var(--color-background);
  padding: 60px 0;
  overflow: clip;
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
}

.section-title h2 {
  color: var(--color-primary-2);
  font-size: 1.8rem;
  font-weight: 600;
}
.section-title p {
  margin-bottom: 0;
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 30px;
}
@media (max-width: 992px) {
  .section-title h2 {
    font-size: 1.5rem;
  }
  .section-title p {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .section-title {
    padding-bottom: 50px;
  }
  .section-title h2 {
    font-size: 1.2rem;
    line-height: 30px;
  }
  .section-title p {
    font-size: 18px;
  }
}
/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --color-box-background: rgba(var(--color-default-rgb), .05);
  color: var(--color-default);
  background-color: var(--color-background);
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-secondary);
}

.page-title nav {
  background-color: var(--color-box-background);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--color-default-rgb), 0.3);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --color-background: #ffffff;
  --color-inverse: #ffffff;
  color: var(--color-default);
  background-color: var(--color-background);
   padding: 15px 0; 
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 80px;
  margin-right: 6px;
}

.social {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.social .icon {
  background: #ffffff1a;
  border-radius: 17px;
  transition: .3s all;
   width: 47px;
   height: 47px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.social .icon:hover {
  background: #ffffff33;

}

.social .icon .instagram,
.social .icon .tiktok {
  padding: 7px;
}


@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }
  
}
@media (max-width: 992px) {
  .social .icon img{
    height: 30px;
  }
  .social {
    gap: .3rem;
    margin-inline-end: .9rem;
  }
  .header{
    padding:0; 
  }
  .social .icon {
    border-radius: 15px;
     width: 40px;
     height: 40px;
  }

}

/* Global Header on page scroll
------------------------------*/
.scrolled .header {
  --color-background: #ffffff;
  --color-secondary: #444444;
  --color-nav: #444444;
  --color-nav-hover: #e84545;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}

/* Home Page Custom Header
------------------------------*/
.index-page .header {
  --color-background: rgba(255, 255, 255, 0);
  --color-secondary: #ffffff;
  --color-nav: rgba(255, 255, 255, 0.515);
  --color-nav-hover: #ffffff;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
  --color-background: rgb(0, 0, 0);
  --color-secondary: #444444;
  --color-nav-hover: #d83535;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--color-nav);
    padding: 18px 12px;
    font-size: 18px;
    font-family: var(--font-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;    
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
  }

   .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--color-nav-dropdown-background);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

   .dropdown ul li {
    min-width: 60px;
  }

   .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-nav-dropdown);
  }

   .dropdown ul a i {
    font-size: 12px;
  }

   .dropdown ul a:hover,
   .dropdown ul .active:hover,
   .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

   .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

   .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

   .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

   .megamenu {
    position: static;
  }

   .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--color-nav-dropdown-background);
    box-shadow: 0px 0px 20px rgba(var(--color-default-rgb), 0.1);
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

   .megamenu ul li {
    flex: 1;
  }

   .megamenu ul li a,
   .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--color-nav-dropdown);
  }

   .megamenu ul li a:hover,
   .megamenu ul li .active,
   .megamenu ul li .active:hover {
    color: var(--color-primary);
  }

   .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

   .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(var(--color-default-rgb), 0.15);
  }
}
.dropdown-web li{
  list-style-type: none;
}
.dropdown-web li .show {
color: var(--color-nav);
}


/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--color-nav);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--color-nav-mobile-background);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--color-default-rgb), 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--color-nav-dropdown);
    padding: 10px 20px;
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--color-primary-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--color-primary);
    color: var(--color-inverse);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--color-primary);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--color-primary);
    color: var(--color-inverse);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul,
  .navmenu .megamenu ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--color-nav-dropdown-background);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul,
  .navmenu .megamenu ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active,
  .navmenu .megamenu>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


.pages .navmenu a, .pages .navmenu a:focus {
  color: #727682;
}

.pages .navmenu li:hover>a, .pages .navmenu .active, .pages .navmenu .active:focus {
  color: #000000 !important;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 15px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #8A4074;
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--color-background);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--color-primary);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
}

#preloader div:nth-child(1) {
  left: calc(47.5% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(47.5% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(47.5% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(47.5% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

@media (max-width: 500px) {
  #preloader div:nth-child(1) {
    left: calc(42% + 8px);
  }
  
  #preloader div:nth-child(2) {
    left: calc(42% + 8px);
  }
  
  #preloader div:nth-child(3) {
    left: calc(42% + 32px);
  }
  
  #preloader div:nth-child(4) {
    left: calc(42% + 56px);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  --color-background: #F6F7F8;
  --color-box-background: #eaeaea;
  color: var(--color-default);
  background-color: var(--color-background);
  font-size: 14px;
  padding-bottom: 50px;
}

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

.footer .footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 50px;
  width: 100%;
  font-family: var(--font-default);
  font-size: .75rem;
  font-weight: 500;
}

.footer .footer-about .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  /*  max-height: 40px; */
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--color-secondary);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--font-primary);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--font-primary);
}


.footer h4 {
  color: #1C1D22;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 16px;
}

/* .footer .footer-links .social {
 display: inline-block;
}  */

.footer .footer-links {
  margin-bottom: 30px;
}
.footer .social .icon{
  width: 52px;
  height: 52px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: .9rem 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .icon,
.footer .icon:hover {
  background: #fff;
}

.footer .footer-links ul a {
  color: var(--color-secondary);
  display: inline-block;
  line-height: 1;
  font-weight: 500;
  font-size: 1rem;
}

.footer .footer-links ul a:hover {
  color: var(--color-primary);
}



@media (max-width: 920px) {

  .footer .social .icon img{
    height: 40px;
  }

  .footer .twitter , .footer .facebook{
    height: 52px !important;
  }

}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.hero {
  --color-default: #ffffff;
  --color-default-rgb: 255, 255, 255;
  --color-background: #000000;
  --color-background-rgb: 0, 0, 0;
  width: 100%;
  min-height: 100vh;
  padding: 160px 0 80px 0;
  margin-top: -110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 1200px) {
  .hero {
    margin-top: -90px;
  }
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}


.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 7.5rem;
  font-weight: 300;
  text-align: center;
  letter-spacing: 2rem;
  background: linear-gradient(174.77deg, #FDE3EE -57.2%, #8A4074 89.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

}


/* Features Section - Home Page
------------------------------*/
.product {
  padding-top: 0;
}
.product img{
  max-width: 77% !important;
}
#product-1 {
  background: rgb(246, 246, 248);
  background: linear-gradient(90deg, rgba(246, 246, 248, 1) 55%, rgba(255, 255, 255, 1) 45%);
}
#product-1 img{
  max-width: 70% !important;
}

#product-2 {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 42%, rgba(246, 246, 248, 1) 30%);
  margin-bottom: 4rem;
}

.product .product-item {
  color: rgba(var(--color-default-rgb), 0.8);
}

.product .product-item+.product-item {
  margin-top: 100px;
}


.product .product-item h3 {
  color:#7e5b6f;
  font-weight: 400;
  font-size: 45px;
}

.product .product-item p {
  line-height: 46.7px;
  font-size: 22px;
  color: rgba(110, 112, 121, 1);
  font-family: var(--font-light);
}

@media (max-width: 640px) {}

@media (max-width: 768px) {
  .product .product-item+.product-item {
    margin-top: 40px;
  }
  .product .product-item h3 {
    font-size: 33px;
  }
  
  .product .product-item p {
    line-height: 40.7px;
    font-size: 19px;
  }
}
@media (max-width: 992px) {
  #product-1-mobile , #product-2-mobile{
    background:rgba(246, 246, 248, 1) ;
  }
  #product-1 , #product-2{
    background: none;
  }
}
/* Call-to-action Section - Home Page
------------------------------*/
.call-to-action {
  --color-default: #ffffff;
   background-image: url(../img/cta.svg);
/*   background: #2C2E30;*/
   padding: 9.2rem 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.call-to-action h3 {
  font-size: 57px;
  font-family: var(--font-light);
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}

.call-to-action p {
  color: var(--color-inverse);
  font-size: 1.4rem;
  font-family: 400;
  line-height: 2.4rem;
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--color-inverse);
  color: var(--color-inverse);
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}
/* .call-to-action img{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
   top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
} */
@media (max-width: 1200px) {
  .call-to-action {
    padding: 7.5rem 0;
    background-size: 100%;
    background-repeat: no-repeat;
    }
    .call-to-action h3 {
      font-size: 40px;
    }
    .call-to-action p {
      font-size: 1.3rem;
      line-height: 1.9rem;
     font-family: var(--font-light)
    }
}
@media (max-width: 920px) {
  .call-to-action {
    padding: 4.5rem 0;
    }
    .call-to-action h3 {
      font-size: 33px;
      margin-bottom: .3rem;
    }
    .call-to-action p {
      font-size: 1.2rem;
      line-height: 1.4rem;
     font-family: var(--font-light)
    }
}
@media (max-width: 768px) {
  .call-to-action h3 {
    font-size: 21px;
    margin-bottom: .5rem;
  }
  .call-to-action {
  padding: 1.4rem 0;
  background-size: 100%;
  background-repeat: no-repeat;
  }
  .call-to-action p {
    font-size: .8rem;
    line-height: 1.4rem;
   font-family: var(--font-light)
  }
}
/* dwonload-sec Section - Home Page
------------------------------*/
.dwonload-sec {
  margin: 5rem 0 7rem 0;
}

.dwonload-sec h4 {
  font-size: 2.4rem;
  color: var(--color-primary-2);
  font-weight: 500;
}

.dwonload-sec p {
  font-size: 1.3rem;
  color: var(--color-secondary);
  margin: 1.8rem 0;
}

.dwonload-sec .dwonload-btn {
  background: #fff;
  width: 100%;
  background: var(--color-dwonload);
  color: var(--color-secondary);
  border-radius: 30px;
  padding: 1.3rem 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.2rem;
}

.dwonload-sec .dwonload-btn img {
  width: 2rem;
  margin-inline-end: .5rem;
}

@media (max-width: 768px) {
  .dwonload-sec h4 {
    font-size: 2.2rem;
    
  }
  
  .dwonload-sec p {
    font-size: 1.1rem;
    margin: 1.5rem 0;
  }
  .dwonload-sec {
    margin: 0 0 4rem 0;
  }
  .dwonload-sec {
    padding: 30px 0;
  }
}


/* carosal-sec Section - Home Page
------------------------------*/
.carosal-sec{
padding: 90px 0;
}
.carosal-sec .container-fluid{
  padding-inline-start: 4.8rem;
}
.swiper-slide-prev{
  margin-inline-start: 47%;
}

.swiper-slide{
  background: linear-gradient(#fff, #fff) padding-box,
  linear-gradient(120deg, rgba(237, 230, 224, .4), rgba(126, 91, 111, .7)) border-box;
  border: 2px solid transparent;
  border-radius: 40px;
}

.carosal-sec .info h3 {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 32px;
}

.carosal-sec .testimonials-carousel,
.carosal-sec .testimonials-slider {
  overflow: hidden;
}

.carosal-sec .item {
  box-sizing: content-box;
  min-height: 170px;
  position: relative;
  margin: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: start;
}

.carosal-sec .item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--color-background);
  margin-right: 10px;
}

.carosal-sec .item h3 {
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.carosal-sec .item h4 {
  color: rgba(var(--color-default-rgb), 0.5);
  font-size: 14px;
  margin: 0;
}

.carosal-sec .item .icon {
  background: linear-gradient(120.77deg, #e2e2e2 -57.2%, #93939304 89.88%);
  padding: .8rem;
  border-radius: 1.5rem;
}

.carosal-sec .item .icon img{
  width: 3rem;
}

.carosal-sec .item .stars {
  margin: 10px 0;
}

.carosal-sec .item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.carosal-sec .item .quote-icon-left,
.carosal-sec .item .quote-icon-right {
  color: rgba(var(--color-primary-rgb), 0.4);
  font-size: 26px;
  line-height: 0;
}

.carosal-sec .item p {
  margin: 15px auto 15px auto;
  color:#545659 ;
  font-weight: 500;
}

.carosal-sec .swiper-wrapper {
  height: auto;
}

.split{
width: 100%;
height: .5rem;
background: var(--color-dwonload);
}
@media (max-width: 767px) {

  .carosal-sec .testimonials-carousel,
  .carosal-sec .testimonials-slider {
    overflow: hidden;
  }

  .carosal-sec .item {
    margin: 15px;
  }

  .carosal-sec .item h3 {
    font-size: 16px;
    margin: 10px 0 5px 0;
  }
  
  .carosal-sec .item h4 {
    font-size: 13px;
  }
  .carosal-sec{
    padding: 60px 0;
    }
    .swiper-slide-prev{
      margin-inline-start: 0%;
    }
}



/*--------------------------------------------------------------
# Page Title 
--------------------------------------------------------------*/

.page-title .heading {
  padding: 40px 0 0 0;
}

.page-title .heading h1 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #2C2D33;
}
.page-title .split{
  background: rgba(var(--color-default-rgb), 0.1);
  height: 1px;
  width: 65%;
}

@media (max-width: 768px) {
  .page-title .heading h1 {
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------------------
# pages
--------------------------------------------------------------*/
.pages .header .icon{
 background: #ececec;
}
.pages .page-content .img{
background: url(../img/about-us.svg);
background-position: center;
background-size: cover;
height: 50vh;
display: flex;
justify-content: center;
align-items: center;
}
.pages .page-content .img p {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}
.pages .page-content p {
  line-height: 37px;
  font-size: 18px;
  color: var(--color-secondary);
}
@media (max-width: 768px) {
  .pages .page-content .img p {
    font-size: 18px;
  }
  .pages .page-content p {
    line-height: 30px;
    font-size: 16px;
  }
}
/* Faq Section - Home Page
------------------------------*/
.faq h3 {
  color: #261F22;
  font-weight: 600;
  font-size: 1.2rem;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(var(--color-default-rgb), 0.1);
  overflow: hidden;
  /* transition: .3s all ease-in-out; */
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  color: #a6a8b1;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 0 30px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3:hover {
  color: #261F22;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  margin-inline-start: 30px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 23px;
  left: 0;
  font-size: 25px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: var(--color-primary);
  font-family: var(--font-Black);
  font-weight: 700;
}

.faq .faq-container .faq-active h3 {
  color: #261F22;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

/* .faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
} */

.close{
  display: none;
  transition: .6s all;
}
.faq-active .open {
  display: none;
  transition: .6s all;
}
.faq-active .close{
  display: block;
}
@media (max-width: 768px) {
  .faq h3{
    font-size: 1rem;
    line-height: 28px;
  }
  .faq .faq-container .faq-item h3{
    font-size: 1rem;

  }
}