/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*=============== GOOGLE FONTS ===============*/
/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
 */

/* @import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap"); */

@font-face {
  font-family: beIN;
  src: url("../Fonts/beIN_Normal.ttf") format("ttf");
}
/* @font-face {
  font-family: beIN;
  src: url("../Fonts/beIN_Black.ttf") format("ttf");
  font-weight: bold;
} */

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --main-color: #f4f4f9;
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);
  --section-background: #ececec;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  /* --body-font: "IBM Plex Sans Arabic", sans-serif; */
  --body-font: "beIN", sans-serif;

  --normal-font-size: 0.938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  /* background: url("../images/bg.jpg"); */
  background-size: cover;
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

.contact__us{
  margin: 2rem 0;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.full-wrapper {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.btn-contact__us {
  background: rgb(74,61,107);
background: -webkit-gradient(linear, left top, right top, from(rgba(74,61,107,1)), to(rgba(96,61,144,1)));
background: -o-linear-gradient(left, rgba(74,61,107,1) 0%, rgba(96,61,144,1) 100%);
background: linear-gradient(90deg, rgba(74,61,107,1) 0%, rgba(96,61,144,1) 100%);
  color: #fff;
  padding: 0.3rem 2rem;
  border-radius: 999999px;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: #ab95d394; */
  background-color: #f4f4f9;
  -webkit-box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3);
          box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3);
  z-index: 9999999999;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--black-color);
}
.nav__logo img {
  max-width: 10rem;
}

.nav__data {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  -webkit-transition: opacity 0.1s, -webkit-transform 0.4s;
  transition: opacity 0.1s, -webkit-transform 0.4s;
  -o-transition: opacity 0.1s, transform 0.4s;
  transition: opacity 0.1s, transform 0.4s;
  transition: opacity 0.1s, transform 0.4s, -webkit-transform 0.4s;
}

.nav__close {
  opacity: 0;
}

.nav__contact_us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}


/* Start Buttons */
.contact_us_btn ,
.more_btn{
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-size: 1.3rem;
  max-width: 15rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  
}

.contact__us-wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.contact_us_btn{
  background-color: #7344a2;
  color: #fff;
}

.more_btn{
  border: 1px solid #7344a2;
  color: #7344a2;
}


/* End Button */



/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: top 0.4s, opacity 0.3s;
    -o-transition: top 0.4s, opacity 0.3s;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--main-color);
    padding-top: 1rem;
  }
  .nav__contact_us {
    display: none;
  }

  .nav__data {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
}

@media (min-width: 1118px) {
  .nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav__link {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #7e5aab;
}

.nav__link:hover {
  background-color: hsl(0deg 0% 88.19%);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease-out;
  -o-transition: max-height 0.4s ease-out;
  transition: max-height 0.4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  -webkit-transition: max-height 0.4s ease-in;
  -o-transition: max-height 0.4s ease-in;
  transition: max-height 0.4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .full-wrapper {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .full-wrapper {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 1rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s, top 0.3s;
    -o-transition: opacity 0.3s, top 0.3s;
    transition: opacity 0.3s, top 0.3s;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: 0.5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    -webkit-transition: top 0.3s;
    -o-transition: top 0.3s;
    transition: top 0.3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    -webkit-transition: top 0.3s;
    -o-transition: top 0.3s;
    transition: top 0.3s;
  }
}

/* Start Landing Page */
.landing {
  position: relative;
}

@media(min-width:992px){

  .landing {
    margin-top: 3.5rem;
  }
}


.landing img {
  width: 100%;
  background-size: cover;
}

@media (max-width: 992px) {
  .landing img {
    margin-top: 3rem;
    aspect-ratio: 2 / 1;

  }
}

.landing__content {
  position: absolute;
  bottom: 20%;
  right: 0;
  color: #fff;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  .landing__content {
    position: absolute;
    top: 50%;
    right: -9px;
    color: #fff;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .landing__content {
    right: 8%;
  }
  .landing__content h4 {
    font-size: 2.2rem;
    
  }
  .landing__content h5 {
    font-size: 1.8rem;
  }
  .landing__content a {
    font-size: 1.3rem;
  }
}

.landing__content h5 {
  text-shadow: 2px 2px 2px #7e5aab;
  margin-bottom: 1rem;
  /* font-size: 1.8rem; */
}

@media (max-width: 768px) {
  .landing__content h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
  }
  .landing__content h5 {
    margin-bottom: 0;
    font-size: 0.9rem;
  }
 
}

.landing__content .btn-contact__us{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  color: #7e5aab;
  border-radius: 7px;
  /* font-size: 1.3rem; */
}

@media(max-width:768px){
  .landing__content .btn-contact__us{
    margin-top: 0.5rem;
  }
}




/* End  Landing Page */


/* End Video Section */

/* Start  Whatsapp Contact */
/* .whatsapp__contact{
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 60px;
  height: 60px;
  z-index: 9999999999;
}
.whatsapp__contact img{
  width: 60px;
  height: 60px;
} */

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 0;
  height: 0;
  padding: 27px;
  text-decoration: none;
  border-radius: 50%;
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  z-index: 9999999999999;
}

.btn-whatsapp-pulse i {
  font-size: 2.1rem;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    -webkit-box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
            box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    -webkit-box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
            box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* End Whatsapp Contact   */

/* Start Packages Section */
.packages__section{
  padding: 3rem 0;

}

.packages__section .packages__header{
  max-width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.packages__section .packages__header::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50% , -50%);
      -ms-transform: translate(-50% , -50%);
          transform: translate(-50% , -50%);
  width: 100%;
  height: 3px;
  background-color: #7e5aab;
}
.packages__section .packages__header img{
  max-width: 15rem;
  margin: 0 auto;
  display: inline-block;
  background-color: #fff;
  padding: 0 1.5rem;
  z-index: 99999;

}

@media(max-width:768px){
  .packages__section .packages__header img{
    max-width: 11rem;
  }
}

.packages__section  .packages__boxes{
  padding: 2rem 0;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.packages__section  .packages__boxes  .package__box p{
  margin-bottom: 0;
}

.packages__section  .packages__boxes  .package__box{
  text-align: center;
  background: rgb(188,105,210);
background: -o-linear-gradient(9deg, rgba(188,105,210,1) 0%, rgba(114,67,161,1) 50%);
background: linear-gradient(81deg, rgba(188,105,210,1) 0%, rgba(114,67,161,1) 50%);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
color: #fff;
padding: 1rem;
border-radius: 1rem;
}
/* End  Packages Section */


/* Start Offers */


.offers__section{
  background: #754387;
}

.offers__section .container-fluid{
  padding-right: 0;
}

.offers__section::-moz-selection{
  background: rgba(187, 134, 252, 0.5);
  color: #FFF;
}

.offers__section::selection{
  background: rgba(187, 134, 252, 0.5);
  color: #FFF;
}


.offers__section .container-fluid .topic{
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: rgb(188, 105, 210);
  background: -o-linear-gradient(9deg, rgba(188, 105, 210, 1) 0%, rgba(114, 67, 161, 1) 50%);
  background: linear-gradient(81deg, rgba(188, 105, 210, 1) 0%, rgba(114, 67, 161, 1) 50%);
  padding: 0.5rem 3rem;
  border-radius: 1rem;
  -webkit-transform: translateY(-1.5rem);
      -ms-transform: translateY(-1.5rem);
          transform: translateY(-1.5rem);
}

.offers__section .content input{
  display: none;
}

.offers__section .content{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.offers__section .content .list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 20%;
}

.offers__section .content .list label{
  cursor: pointer;
  height: 60px;
  line-height: 60px;
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  padding-right: 25px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 10;
}

.offers__section #home:checked ~ .list label.home,
.offers__section #blog:checked ~ .list label.blog,
.offers__section #help:checked ~ .list label.help,
.offers__section #code:checked ~ .list label.code,
.offers__section #about:checked ~ .list label.about{
  color: #fff;
}

.offers__section .content .slider{
  position: absolute;
  left: 0;
  top: 0;
  height: 4rem;
  width: 100%;
  border-radius: 999px 0 0 999px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #9153b6;

}

.offers__section #home:checked ~ .list .slider{
  top: 0;
}

.offers__section #blog:checked ~ .list .slider{
  top: 7px;
}

.offers__section #help:checked ~ .list .slider{
  top: 60px;
}

.offers__section #code:checked ~ .list .slider{
  top: 122px;
}

.offers__section #about:checked ~ .list .slider{
  top: 240px;
}

.offers__section .content .text-content{
  width: 80%;
  height: 100%;
  color: rgba(255, 255, 255, 0.7);
}

.offers__section .content .text{
  display: none;
}

.offers__section.offers__section .content .text .title{
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 500;
}

.offers__section .container .text p{
  text-align: justify;
}

.offers__section .content .text-content .home{
  display: block;
}



.home .swiper-slide{
  position: relative;
}
.home .teacher__image {
	display: block;
	overflow: hidden;
	position: relative;
	border-radius: 1px;
	margin: 0 auto;
  width: 100%;
    height: 100%;
}
.home .teacher__image  img {
  position: relative;
  width: 100% !important;
  height: 100% !important;
	top: -50px;
	height: auto;
	z-index: 0;
  margin:0;
  padding:0;
	-webkit-transition: top 11s;
	-o-transition: top 11s;
	-webkit-transition: bottom 11s;
	-o-transition: bottom 11s;
	transition: bottom 11s;
}
.home .teacher__image:hover img , 
.home .swiper-slide:hover img {
  top: 0;
  -webkit-transition: all 1s;
  -o-transition:  all 1s;
  transition:  all 1s;
}




.offers__section #home:checked ~ .text-content .home,
.offers__section #blog:checked ~ .text-content .blog,
.offers__section #help:checked ~ .text-content .help,
.offers__section #code:checked ~ .text-content .code,
.offers__section #about:checked ~ .text-content .about{
  display: block;
}

.offers__section #blog:checked ~ .text-content .home,
.offers__section #help:checked ~ .text-content .home,
.offers__section #code:checked ~ .text-content .home,
.offers__section #about:checked ~ .text-content .home{
  display: none;
}

.offers__section .content .list label:hover{
  color: #9153b6;
}




@media(max-width:768px){
  .offers__section .content{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offers__section .content .list{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
  .offers__section .content .list label{
    font-size: 0.8rem;
    padding-right:1rem;
  }
  .offers__section .content .slider{
    display: none;;
  }

  .offers__section .content .text-content {
    width:100%;
  }

  
}



/* End Offers */


/* Start Brands */
.brands {
  border-top: 1px solid #eee;
}

.brands .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.brands .brand__image img {
  max-width: 120px;
  background-size: cover;
  background-position: bottom bottom;
  -webkit-filter: grayscale(100%) opacity(60%);
          filter: grayscale(100%) opacity(60%);
}

@media (max-width: 768px) {
  .brands .brand__image img {
    max-width: 80px;
  }
  .brands {
    padding-bottom: 3rem !important;
  }
}

/* End Brands */


/* Start Partners */
.partners__section{
  background: #663d99;
  margin-top: 2rem;
 

}

.partners__section .swiper{
  padding: 4rem 1rem !important; 
}

@media(max-width:768px){
  .partners__section .swiper{
    padding: 6rem 1rem !important; 
  }
}

.partners__section .partners__header{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 1rem;
  border-radius: 8px;



}

 .topic{
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: rgb(188, 105, 210);
  background: -o-linear-gradient(9deg, rgba(188, 105, 210, 1) 0%, rgba(114, 67, 161, 1) 50%);
  background: linear-gradient(81deg, rgba(188, 105, 210, 1) 0%, rgba(114, 67, 161, 1) 50%);
  padding: 0.5rem 3rem;
  border-radius: 1rem;
  -webkit-transform: translateY(-1.5rem);
      -ms-transform: translateY(-1.5rem);
          transform: translateY(-1.5rem);
}


.partners__section .partners__header h3{
  background: rgb(188,105,210);
  background: -o-linear-gradient(9deg, #663d99 0%, rgba(114,67,161,1) 50%);
  background: linear-gradient(81deg, #663d99 0%, rgba(114,67,161,1) 50%);
  margin: 0 auto;
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 8px ;

  
}




.partners__section .partners__wrapper{
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit , minmax(200px , 1fr));
  gap: 2rem;
  row-gap: 2rem;
  padding: 2rem 0;

}

@media(max-width:768px){
  .partners__section .partners__wrapper{
    grid-template-columns: repeat(auto-fit , minmax(150px , 1fr));
  }
}



.partners__section .partners__wrapper .partner__box{
  position: relative;
  width: 9rem;
  height: 9rem;
  border-radius: 1rem;
  margin:  0 auto;
  z-index: 1; /* Ensure the main div has a higher z-index */
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.parent__box_shape{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ff8cff;
  -webkit-transform: rotate(13deg);
      -ms-transform: rotate(13deg);
          transform: rotate(13deg);
  border-radius: 1rem;
  z-index: -7;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}


.parent__box_content{

  content: "";
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: -1; /* Ensure the pseudo-element is behind the main div */
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}





.partners__section .partners__wrapper .partner__box .parent__box_content:hover{ 
  -webkit-transform: scale(1.1); 
      -ms-transform: scale(1.1); 
          transform: scale(1.1);
}


.partners__section .partners__wrapper .partner__box:hover .parent__box_shape{
  -webkit-transform: rotate(-48deg);
      -ms-transform: rotate(-48deg);
          transform: rotate(-48deg);
  background-color: #45d9d4;


}
.partners__section .partners__wrapper .partner__box:hover::after{
  -webkit-transform: rotate(50deg);
      -ms-transform: rotate(50deg);
          transform: rotate(50deg);
}


.partners__section .partners__wrapper .partner__box img{
  max-width: 100%;
  height: 100% ;
}

.partners__section .partners__wrapper .partner__box h5{
  font-size: 1rem;
  margin: 1.5rem 0;
  color: #9679b8;

}


/* End Partners*/
/* Start Stores Section */

.stores {
  background-color: #343055;
}
.stores h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
/* End  Stores Section */

/* Start Testimonails */
.testimonails {
  background-color:#663d99 ;
}

.testimonails .container{
  
  border-radius: 0.5rem;
}
.testimonails .swiper-wrapper {
}
.testimonails h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 4rem;
}

.testimonails p {
  line-height: 1.5;
  color: #777;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 0.5rem;
}
.swiper-slide {
  height: auto;
}

.testimonails .box {
  padding: 20px;
  -webkit-box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
          box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
  border-radius: 6px;
  position: relative;
  /* background-color: #886eab; */
  background-color: #2e2051;
}
.testimonails .box img {
  position: absolute;
  left: 50%;
  top: -44px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 10px solid var(--section-background);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.testimonails .box h3 {
  margin: 10px 0 10px;
  color: #fff;
  font-size: 1.2rem;
}
.testimonails .box .title {
  color: #777;
  margin-bottom: 10px;
  display: block;
}
.testimonails .box .rate .filled {
  color: #ffc107;
}
.testimonails .box p {
  line-height: 1.5;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Start Testimonails */

/* Start Content Section  */
.content__section{
  
}

.content__section p{
  color: #673D98;
  font-size: 1.3rem;
  padding: 2rem 0;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  line-height: 1.8;
  
}
/* End Content Section  */

/* Start Form Section */

.form__section {
  margin: 3rem 0;
}
.form__section .form__wrapper {
  max-width: 900px;
  margin: 0 auto;
  border: 5px solid rebeccapurple;
  padding: 1rem;
  border-radius: 2rem;
  background: #3a2661ad;
}
.form__section .form__header {
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.form__body .form__content {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media(max-width:768px){
  .form__body .form__content {
    padding: 1rem 0;
  }
}


.form__body .form__content p {
  color: #a5a5a5;
  font-size: 1.2rem;
  text-align: center;
}
.form__body .btn-contact__us {
  border-radius: 8px;
  padding: 0.3rem 1rem;
}
.form__body form label {
  color: #fff;
}
.form__body form input,
.form__body form input:focus,
.form__body form textarea,
.form__body form textarea:focus,
.form__body form select,
.form__body form select:focus {
  background-color: #886eab;
  border: #7e5aab;
  color: #fff;
}
.form-control:focus {
  -webkit-box-shadow: 0 0 0 0.25rem #7e5aab69;
          box-shadow: 0 0 0 0.25rem #7e5aab69;
}

.submit-form {
  /* border: none;
  outline: none; */
  /* background-color: transparent; */
  color: #fff;
  /* margin: 0.5rem 0; */
}
.submit-form:hover {
  color: #fff;
}

/* End  Form Section */

/* Start Footer Section */
footer {
  position: relative;


}


footer .footer {
  color: #fff;
  padding: 2rem 0;
  border-top: 1px solid #fff;
  position: relative;
  border-bottom: 1px solid #fff;
}

footer .footer img{
  max-width: 200px;
  margin-bottom: 1rem;
}

footer .footer h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem;
  border-radius: 8px;
  text-align: center;
}

footer .footer .paltform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .footer .paltform h4 {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0.3rem;
}

footer .footer .paltform img {
  border-radius: 8px;
  max-width: 250px;
}

@media (max-width: 768px) {
  footer .footer .paltform img {
    max-width: 185px;
  }
}
footer .about-us {
  font-size: 1.1rem;
}

footer .about-us p {
  padding: 0.5rem;
  border-radius: 7px;
}
footer .footer .social__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .footer .social__media ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 2rem;
}
footer .footer .social__media ul li i {
  font-size: 2rem;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

footer .footer .social__media ul li i:hover {
  color: #ffa308;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  font-weight: bold;
}

.footer__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: -99;
  overflow: hidden;
}

/* Footer Just for test */
@media (max-width: 768px) {


  footer{
    background: rgb(165,171,222);
background: -o-linear-gradient(283deg, rgba(165,171,222,1) 0%, rgba(125,120,214,1) 50%, rgba(107,69,158,1) 100%);
background: linear-gradient(167deg, rgba(165,171,222,1) 0%, rgba(125,120,214,1) 50%, rgba(107,69,158,1) 100%);
  }
  
  footer .footer .social__media ul {
    margin-top: 0;
  }


  footer .footer h3 {
    margin-top: 2rem;
  }
  footer .social__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .social__media ul {
    padding: 0;
  }
  

}

.footer__bottom {
  padding: 1rem;
  margin-bottom: 0;
}
.footer__bottom p {
  margin-bottom: 0;
  color: #fff;
}







:root {
  --color-text: navy;
  --color-bg: papayawhip;
  --color-bg-accent: #ecdcc0;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text: papayawhip;
    --color-bg: navy;
    --color-bg-accent: #7344a2;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}


.marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: var(--gap);
  -webkit-mask-image: -webkit-gradient(
    linear,
    left top, left bottom,
    from(var(--mask-direction, to right)),
    color-stop(hsl(0 0% 0% / 0)),
    color-stop(20%, hsl(0 0% 0% / 1)),
    color-stop(80%, hsl(0 0% 0% / 1)),
    to(hsl(0 0% 0% / 0))
  );
  -webkit-mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
          mask-image: -webkit-gradient(
    linear,
    left top, left bottom,
    from(var(--mask-direction, to right)),
    color-stop(hsl(0 0% 0% / 0)),
    color-stop(20%, hsl(0 0% 0% / 1)),
    color-stop(80%, hsl(0 0% 0% / 1)),
    to(hsl(0 0% 0% / 0))
  );
          mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

.marquee__group {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  -webkit-animation: scroll-x var(--duration) linear infinite;
          animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
}

.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.marquee--vertical .marquee__group {
  -webkit-animation-name: scroll-y;
          animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}

@-webkit-keyframes scroll-x {
  from {
    -webkit-transform: translateX(var(--scroll-start));
            transform: translateX(var(--scroll-start));
  }
  to {
    -webkit-transform: translateX(var(--scroll-end));
            transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-x {
  from {
    -webkit-transform: translateX(var(--scroll-start));
            transform: translateX(var(--scroll-start));
  }
  to {
    -webkit-transform: translateX(var(--scroll-end));
            transform: translateX(var(--scroll-end));
  }
}

@-webkit-keyframes scroll-y {
  from {
    -webkit-transform: translateY(var(--scroll-start));
            transform: translateY(var(--scroll-start));
  }
  to {
    -webkit-transform: translateY(var(--scroll-end));
            transform: translateY(var(--scroll-end));
  }
}

@keyframes scroll-y {
  from {
    -webkit-transform: translateY(var(--scroll-start));
            transform: translateY(var(--scroll-start));
  }
  to {
    -webkit-transform: translateY(var(--scroll-end));
            transform: translateY(var(--scroll-end));
  }
}

/* Element styles */
.marquee img {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: var(--size);
  fill: var(--color-text);
  background: var(--color-bg-accent);
  aspect-ratio: 16/9;
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
  min-width: 500px;
}

.marquee--vertical img {
  aspect-ratio: 1;
  width: calc(var(--size) / 1.5);
  padding: calc(var(--size) / 6);
}

/* Parent wrapper */
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
  margin: 3rem 0;
}

.wrapper--vertical {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100vh;
}

/* Toggle direction button */
.toggle {
  --size: 3rem;
  position: relative;
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: var(--size);
  height: var(--size);
  font: inherit;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 50%;
  color: inherit;
  background-color: var(--color-bg-accent);
  z-index: 1;
}

.toggle:focus-visible {
  -webkit-box-shadow: 0 0 0 2px var(--color-text);
          box-shadow: 0 0 0 2px var(--color-text);
}

.toggle span {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: calc(100% + 0.4em);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: fade 400ms 4s ease-out forwards;
          animation: fade 400ms 4s ease-out forwards;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.toggle img {
  --size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  fill: currentcolor;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
 
}

.toggle--vertical img {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
      -ms-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}

@-webkit-keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.ui-show{
  margin-bottom: 5rem;
}
.ui-show .swiper-slide{
  height: 25rem;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 8px;
  position: relative;
  width: 100%;
}

.ui-show .swiper-slide img{
  object-fit: cover;
overflow: hidden;
transition: transform 1s ease-in-out;
width: 100%;
}

.ui-show .swiper-slide img:hover{
  transform: translateY(calc(-100% + 25rem));
  transition: transform 1s ease-in-out;
}