@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
@import "../fonts/LyonArabic/stylesheet.css";
html {
  font-family: "Open Sans", sans-serif;
  font-display: swap;
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html,
html *,
body,
body * {
  cursor: none;
}

.cursor-dot,
.cursor-dot-outline {
  z-index: 99999;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #52A3B6;
}

.cursor-dot-outline {
  width: 40px;
  height: 40px;
  background-color: rgba(125, 186, 200, 0.5);
}

@keyframes zzz {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes moveGradient {
  50% {
    background-position: 100% 50%;
  }
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Lyon Arabic Disp App";
}

/* GENERAL */
html, body {
  font-family: "Open Sans", sans-serif;
  font-display: swap;
  font-size: 14px;
  width: 100%;
}

body {
  position: relative;
  direction: rtl;
  overflow-x: hidden;
  font-family: "Lyon Arabic Disp App Reg";
}
body::after {
  content: "";
  inset: 0;
  background: linear-gradient(to bottom, #3A224C, #002814);
  z-index: 1;
  position: absolute;
}
body.about-us::after {
  background: linear-gradient(to bottom, #002814, #3A224C);
}

.mobile-menu {
  display: none;
}

header {
  position: absolute;
  top: 18px;
  right: 0;
  left: 0;
  z-index: 100;
}
header .mobile-toogle {
  display: none;
}
@media (max-width: 575px) {
  header .mobile-toogle {
    display: inline;
  }
}
@media (max-width: 575px) {
  header {
    padding: 0 25px;
  }
}
header .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo img {
  max-width: 98px;
}
header .logo img:hover {
  animation: zzz 0.3s linear infinite; /* Fast and continuous shaking */
}
header .menu {
  padding: 25px;
}
@media (max-width: 575px) {
  header .menu {
    display: none;
  }
}
header .menu ul {
  display: flex;
}
header .menu ul li a {
  padding: 20px 25px;
  font-size: 25px;
  line-height: 0;
  color: white;
  font-family: "Lyon Arabic Disp App";
  position: relative;
  -moz-transition: ease 0.35s all;
  -o-transition: ease 0.35s all;
  -webkit-transition: ease 0.35s all;
  transition: ease 0.35s all;
  overflow: hidden;
  display: inline-block;
  height: 50px;
  padding-bottom: 9px;
  height: 47px;
  line-height: 4.1px;
}
header .menu ul li a:hover {
  line-height: 78px;
  outline-width: 0;
}
header .menu ul li a::before {
  content: attr(data-text);
  color: #DEEFF5;
  position: absolute;
  top: -23.9px;
}
header .cta {
  text-align: center;
}
@media (max-width: 575px) {
  header .cta {
    display: none;
  }
}
header .cta a {
  font-size: 26px;
  background: #A5B783;
  padding: 2px 16px;
  padding-bottom: 7px;
  display: inline-block;
  color: white;
  font-family: "Lyon Arabic Disp App";
  position: relative;
  overflow: hidden;
  z-index: 999;
}
header .cta a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #703D87;
  transform: translateX(-100%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
header .cta a:hover {
  outline-width: 0;
  color: white;
}
header .cta a:hover:before {
  transform: translateX(0);
}
.hero {
  min-height: 600px;
  justify-content: center;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 99;
  overflow: hidden;
}
.hero .hero-bg {
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  animation: zoomInOut 15s infinite ease-in-out;
}
@media (max-width: 575px) {
  .hero {
    min-height: 500px;
  }
  .hero.about {
    min-height: 600px;
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #3A224C;
  opacity: 0.7;
}
.hero.about::after {
  background: #002814;
}
.hero .page-title {
  z-index: 99;
  position: relative;
  text-align: center;
}
.hero .page-title h1 {
  font-size: 100px;
  font-family: "Lyon Arabic Disp App";
  color: wheat;
}
@media (max-width: 575px) {
  .hero .page-title h1 {
    font-size: 60px;
  }
}
.hero .page-title p {
  font-size: 27px;
  color: white;
  margin-top: 28px;
  text-align: center;
  max-width: 780px;
}
@media (max-width: 575px) {
  .hero .page-title p {
    text-align: justify;
    font-size: 20px;
    line-height: 37px;
    text-align-last: center;
    padding: 0 15px;
  }
}

.section-hero-icon {
  position: relative;
}
.section-hero-icon .hero-icon {
  z-index: 99;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -30px;
  margin: 0 auto;
  width: 180px;
  transition: transform 1s ease-in-out; /* 1-second smooth transition */
}
@media (max-width: 575px) {
  .section-hero-icon .hero-icon {
    bottom: -20px;
    width: 110px;
  }
}
.section-hero-icon .hero-icon:hover {
  transform: rotate(180deg); /* Rotates the element 45 degrees on hover */
}

.about {
  padding: 45px 0;
  padding-top: 85px;
}
@media (max-width: 575px) {
  .about {
    padding: 0 25px;
    margin-top: 0;
  }
}
.about .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.about .container .content .article {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 575px) {
  .about .container .content .article {
    margin-top: 40px;
  }
}
.about .container .content .article h3 {
  font-size: 65px;
  color: #A5B783;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .about .container .content .article h3 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .about .container .content .article h3 {
    margin-bottom: 0;
  }
}
.about .container .content .article p {
  max-width: 988px;
  font-size: 30px;
  text-align: justify;
  margin-top: 15px;
  color: white;
  line-height: 57px;
  text-align-last: center;
}
@media (max-width: 575px) {
  .about .container .content .article p {
    font-size: 20px;
    line-height: 37px;
  }
}
.about .container .content .feautres {
  padding: 55px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 575px) {
  .about .container .content .feautres {
    padding: 0px;
    margin-top: 25px;
    margin-bottom: 5px;
  }
  .about .container .content .feautres.home-feautres {
    margin-bottom: 55px;
  }
}
.about .container .content .feautres h3 {
  font-size: 65px;
  color: #A5B783;
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .about .container .content .feautres h3 {
    font-size: 35px;
  }
}
.about .container .content .feautres .boxes {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .about .container .content .feautres .boxes {
    flex-direction: column;
  }
}
.about .container .content .feautres .boxes .box {
  border-right: 2px solid #a5b783;
  width: 50%;
  padding: 0 15px;
  background-image: url(/media/imgs/box-img.svg);
  background-repeat: no-repeat;
  background-size: 150px;
  background-position: center;
}
@media (max-width: 575px) {
  .about .container .content .feautres .boxes .box {
    width: 100%;
    margin-top: 55px;
    border: 0;
  }
}
.about .container .content .feautres .boxes .box:first-child {
  border: 0;
}
@media (max-width: 575px) {
  .about .container .content .feautres .boxes .box:first-child {
    margin-top: 0px;
  }
}
.about .container .content .feautres .boxes .box h5 {
  font-size: 65px;
  color: #A5B783;
  text-align: center;
}
@media (max-width: 575px) {
  .about .container .content .feautres .boxes .box h5 {
    font-size: 35px;
  }
}
.about .container .content .feautres .boxes .box p {
  max-width: 988px;
  font-size: 30px;
  text-align: justify;
  margin-top: 15px;
  color: white;
  line-height: 57px;
  text-align-last: center;
  text-align: center;
  color: white;
}
@media (max-width: 575px) {
  .about .container .content .feautres .boxes .box p {
    font-size: 20px;
    line-height: 37px;
  }
}
.about .container .content .feautres a {
  text-align: center;
  background: #668238;
  padding: 3px 11px;
  padding-bottom: 8px;
  display: inline-block;
  color: white;
  font-size: 34px;
  font-family: "Lyon Arabic Disp App";
  position: relative;
}
@media (max-width: 575px) {
  .about .container .content .feautres a {
    font-size: 24px;
  }
}
.about .container .content .feautres a::after, .about .container .content .feautres a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 3px;
  background: rgb(208, 249, 199);
  transition: 0.4s;
}
.about .container .content .feautres a::after {
  top: inherit;
  left: inherit;
  bottom: 0px;
  right: 0px;
}
.about .container .content .feautres a:hover {
  color: rgb(208, 249, 199);
  background: transparent;
}
.about .container .content .feautres a:hover::after, .about .container .content .feautres a:hover::before {
  width: 100%;
  transition: 0.7s;
}

.stats .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.stats .container h2 {
  font-size: 65px;
  color: #A5B783;
  text-align: center;
  margin-bottom: 75px;
}
@media (max-width: 575px) {
  .stats .container h2 {
    font-size: 35px;
  }
}
.stats .container .stats-container {
  display: flex;
  justify-content: space-between;
  margin: 45px 0;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .stats .container .stats-container {
    margin-bottom: 0px;
    justify-content: center;
  }
}
.stats .container .stats-container .stat-item {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20%;
  margin-bottom: 45px;
  text-align: center;
}
@media (max-width: 575px) {
  .stats .container .stats-container .stat-item {
    width: 50%;
  }
}
.stats .container .stats-container .stat-item .icon {
  width: 150px;
  height: 150px;
  border-radius: 500%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 15px;
  border: 1px solid #c1a130;
  position: relative;
}
.stats .container .stats-container .stat-item .icon:hover {
  border: 10px solid #c1a130;
  transition: 0.8s;
}
.stats .container .stats-container .stat-item .icon::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 500%;
  border: 1px solid #c1a130;
}
.stats .container .stats-container .stat-item .icon img {
  width: 45px;
}
.stats .container .stats-container .stat-item .number {
  font-size: 25px;
  color: #c1a130;
  direction: ltr;
  font-weight: bold;
  margin-top: 10px;
}
.stats .container .stats-container .stat-item .label {
  font-size: 35px;
  color: white;
  font-family: "Lyon Arabic Disp App";
}
@media (max-width: 575px) {
  .stats .container .stats-container .stat-item .label {
    font-size: 29px;
  }
}
.stats .container .stats-container .stat-item .description {
  font-size: 20px;
  color: white;
}
@media (max-width: 575px) {
  .stats .container .stats-container .stat-item .description {
    font-size: 17px;
    margin-top: 7px;
  }
}
.stats .container .cta {
  text-align: center;
  margin-top: 85px;
}
@media (max-width: 575px) {
  .stats .container .cta {
    margin-top: 0;
  }
}
.stats .container .cta a {
  text-align: center;
  background: #668238;
  padding: 3px 11px;
  padding-bottom: 8px;
  display: inline-block;
  color: white;
  font-size: 34px;
  font-family: "Lyon Arabic Disp App";
  position: relative;
}
@media (max-width: 575px) {
  .stats .container .cta a {
    font-size: 24px;
  }
}
.stats .container .cta a::after, .stats .container .cta a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 3px;
  background: rgb(208, 249, 199);
  transition: 0.4s;
}
.stats .container .cta a::after {
  top: inherit;
  left: inherit;
  bottom: 0px;
  right: 0px;
}
.stats .container .cta a:hover {
  color: rgb(208, 249, 199);
  background: transparent;
}
.stats .container .cta a:hover::after, .stats .container .cta a:hover::before {
  width: 100%;
  transition: 0.7s;
}

.welcome-section {
  text-align: center;
  padding: 60px 0;
  margin-top: 55px;
}
@media (max-width: 575px) {
  .welcome-section.second-welcome {
    margin-top: 0;
    padding-top: 0;
  }
}
.welcome-section .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  background-image: url(/media/imgs/welcome.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.welcome-section .container h2 {
  font-size: 65px;
  color: #A5B783;
  text-align: center;
}
@media (max-width: 575px) {
  .welcome-section .container h2 {
    font-size: 35px;
  }
}
.welcome-section .container .welcome-content {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.welcome-section .container .welcome-content .image-container img {
  max-width: 130px;
  margin-top: 55px;
  margin-bottom: 5px;
}
.welcome-section .container .welcome-content .image-container h3 {
  color: #C1A130;
  font-size: 18px;
}
.welcome-section .container .welcome-content .image-container .position {
  color: #C1A130;
  font-size: 18px;
}
@media (max-width: 575px) {
  .welcome-section .container .welcome-content .text-container {
    padding: 35px;
    padding-top: 0;
    margin-bottom: 0;
  }
}
.welcome-section .container .welcome-content .text-container p {
  font-size: 30px;
  line-height: 50px;
  color: white;
  margin-bottom: 45px;
  margin-top: 25px;
  max-width: 1080px;
  text-align: justify;
  text-align-last: center;
}
@media (max-width: 575px) {
  .welcome-section .container .welcome-content .text-container p {
    font-size: 19px;
    line-height: 40px;
  }
}
.welcome-section .container .cta {
  margin-top: 25px;
  text-align: center;
}
.welcome-section .container .cta a {
  text-align: center;
  background: #668238;
  padding: 3px 11px;
  padding-bottom: 8px;
  display: inline-block;
  color: white;
  font-size: 34px;
  font-family: "Lyon Arabic Disp App";
  position: relative;
  background-color: #703D87;
}
@media (max-width: 575px) {
  .welcome-section .container .cta a {
    font-size: 24px;
  }
}
.welcome-section .container .cta a::after, .welcome-section .container .cta a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 3px;
  background: rgb(208, 249, 199);
  transition: 0.4s;
}
.welcome-section .container .cta a::after {
  top: inherit;
  left: inherit;
  bottom: 0px;
  right: 0px;
}
.welcome-section .container .cta a:hover {
  color: rgb(208, 249, 199);
  background: transparent;
}
.welcome-section .container .cta a:hover::after, .welcome-section .container .cta a:hover::before {
  width: 100%;
  transition: 0.7s;
}

.partners-section {
  margin-bottom: 65px;
}
.partners-section .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.partners-section .container h2 {
  font-size: 65px;
  color: #A5B783;
  color: #9E80B2;
}
@media (max-width: 575px) {
  .partners-section .container h2 {
    font-size: 35px;
  }
}
.partners-section .container h3 {
  font-size: 29px;
  color: white;
  margin-bottom: 15px;
}
.partners-section .container .initiative-partners {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .partners-section .container .initiative-partners {
    flex-direction: column;
  }
}
.partners-section .container .initiative-partners img {
  background: white;
  padding: 10px 30px;
  border: 4px solid #703D87;
  height: 100px;
}
@media (max-width: 575px) {
  .partners-section .container .initiative-partners img {
    height: initial;
    max-width: 220px;
  }
}
.partners-section .container .initiative-partners img:hover {
  animation: float 0.5s ease-in-out infinite;
}
.partners-section .container .main-partners {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .partners-section .container .main-partners {
    flex-direction: column;
  }
}
.partners-section .container .main-partners img {
  background: white;
  padding: 10px 30px;
  border: 4px solid #703D87;
  height: 100px;
}
@media (max-width: 575px) {
  .partners-section .container .main-partners img {
    height: initial;
    max-width: 220px;
  }
}
.partners-section .container .main-partners img:hover {
  animation: float 0.5s ease-in-out infinite;
}
.partners-section .container .organizing-partner {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .partners-section .container .organizing-partner {
    flex-direction: column;
  }
}
.partners-section .container .organizing-partner img {
  background: white;
  padding: 10px 30px;
  border: 4px solid #703D87;
  height: 100px;
}
@media (max-width: 575px) {
  .partners-section .container .organizing-partner img {
    height: initial;
    max-width: 220px;
  }
}
.partners-section .container .organizing-partner img:hover {
  animation: float 0.5s ease-in-out infinite;
}
.partners-section .cta {
  text-align: center;
}
.partners-section .cta a {
  text-align: center;
  background: #668238;
  padding: 3px 11px;
  padding-bottom: 8px;
  display: inline-block;
  color: white;
  font-size: 34px;
  font-family: "Lyon Arabic Disp App";
  position: relative;
  background-color: #703D87;
}
@media (max-width: 575px) {
  .partners-section .cta a {
    font-size: 24px;
  }
}
.partners-section .cta a::after, .partners-section .cta a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 3px;
  background: rgb(208, 249, 199);
  transition: 0.4s;
}
.partners-section .cta a::after {
  top: inherit;
  left: inherit;
  bottom: 0px;
  right: 0px;
}
.partners-section .cta a:hover {
  color: rgb(208, 249, 199);
  background: transparent;
}
.partners-section .cta a:hover::after, .partners-section .cta a:hover::before {
  width: 100%;
  transition: 0.7s;
}
.contact-form .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.contact-form .container h2 {
  font-size: 65px;
  color: #A5B783;
  text-align: center;
  color: #9E80B2;
}
@media (max-width: 575px) {
  .contact-form .container h2 {
    font-size: 35px;
  }
}
footer {
  overflow: hidden;
  text-align: center;
  background: url(/media/imgs/footer/bg.svg);
  height: 361px;
  z-index: 99999;
  position: relative;
  background-size: 920px;
  background-repeat: repeat-x;
  background-position: -530px 175px;
  padding-top: 55px;
}
@media (max-width: 575px) {
  footer {
    margin-top: 30px;
    height: 200px;
    padding-top: 0;
    background-position: -920px 45px;
  }
}
footer .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
footer p {
  margin-top: 125px;
  color: white;
  font-size: 23px;
}
@media (max-width: 575px) {
  footer p {
    margin-top: 95px;
  }
}
footer .social ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 45px 0;
  gap: 15px;
}
@media (max-width: 575px) {
  footer .social ul {
    margin-top: 0;
  }
}
footer .social ul li a img {
  width: 55px;
}
@media (max-width: 575px) {
  footer .social ul li a img {
    width: 37px;
  }
}
footer .social ul li a img:hover {
  background: #ffffff;
  border-radius: 55px;
  transform: rotateZ(45deg);
}

.target {
  margin-bottom: 55px;
}
.target .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.target .container h3 {
  font-size: 65px;
  color: #A5B783;
  text-align: center;
}
@media (max-width: 575px) {
  .target .container h3 {
    font-size: 35px;
  }
}
.target .container .img-box {
  margin-top: 45px;
}
.target .container .img-box .img-elements {
  background: #703D87;
  max-width: 840px;
  margin: 0 auto;
}
.target .container .img-box .img-elements ul {
  display: flex;
  padding: 15px;
  flex-wrap: wrap;
}
.target .container .img-box .img-elements ul li {
  color: white;
  font-size: 18px;
  width: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.target .container .img-box .img-elements ul li.rowad {
  padding-right: 45px;
}
@media (max-width: 575px) {
  .target .container .img-box .img-elements ul li.rowad {
    padding-right: initial;
  }
}
@media (max-width: 575px) {
  .target .container .img-box .img-elements ul li {
    width: 100%;
  }
}
.target .container .img-box .img-elements ul li:not(:first-child, :nth-child(2)) {
  width: calc(33.3333333333% - 15px);
  margin-bottom: 0;
  margin-left: 15px;
  min-width: 253px;
}
@media (max-width: 575px) {
  .target .container .img-box .img-elements ul li:not(:first-child, :nth-child(2)) {
    width: 100%;
    margin-bottom: 25px;
  }
}
.target .container .img-box .img-elements ul li img {
  width: 30px;
}
.target .container .img-box .img-elements .people {
  width: 100%;
  position: relative;
  bottom: -5px;
}
.media-buttons {
  padding: 55px 0;
  padding-top: 120px;
}
.media-buttons .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.media-buttons .container ul {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.media-buttons .container ul li {
  text-align: center;
  margin-bottom: 48px;
}
.media-buttons .container ul li .icon img {
  width: 65px;
}
.media-buttons .container ul li a {
  font-size: 34px;
  background: #A5B783;
  padding: 2px 16px;
  padding-bottom: 7px;
  display: inline-block;
  color: white;
  font-family: "Lyon Arabic Disp App";
  margin-top: 15px;
}
.about-list {
  padding: 55px 0;
  padding-top: 120px;
}
.about-list .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.about-list .container h3 {
  font-size: 65px;
  color: #A5B783;
  text-align: center;
}
@media (max-width: 575px) {
  .about-list .container h3 {
    font-size: 35px;
  }
}
.about-list .container ul {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin-top: 45px;
}
.about-list .container ul li {
  text-align: center;
  margin-bottom: 48px;
}
.about-list .container ul li .icon img {
  width: 50px;
}
.about-list .container ul li h5 {
  font-size: 27px;
  color: #668238;
  font-family: "Lyon Arabic Disp App";
  margin-top: 15px;
}
.about-list .container ul li h6 {
  font-size: 18px;
  color: white;
  margin-top: 15px;
  font-weight: 100;
}
@media (max-width: 575px) {
  .about-list .container ul li h6 {
    max-width: 70%;
    margin: 0 auto;
    margin-top: 17px;
  }
}

.new-experience .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.new-experience h3 {
  font-size: 65px;
  color: #A5B783;
  text-align: center;
}
@media (max-width: 575px) {
  .new-experience h3 {
    font-size: 35px;
  }
}
.new-experience .experience {
  background: #703D87;
  display: flex;
  flex-wrap: wrap;
  margin-top: 35px;
}
@media (max-width: 575px) {
  .new-experience .experience {
    flex-direction: column;
  }
}
.new-experience .experience .infos {
  width: 70%;
  padding-right: 45px;
  justify-content: center;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .new-experience .experience .infos {
    width: 100%;
    padding-right: 5px;
  }
}
.new-experience .experience .infos ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .new-experience .experience .infos ul {
    flex-direction: column;
    margin-bottom: 0px;
  }
}
.new-experience .experience .infos ul li {
  width: 50%;
  align-items: center;
  gap: 15px;
  display: flex;
}
@media (max-width: 575px) {
  .new-experience .experience .infos ul li {
    width: 100%;
    margin-bottom: 25px;
  }
}
.new-experience .experience .infos ul li:first-child {
  width: 100%;
  margin-bottom: 35px;
}
.new-experience .experience .infos ul li:last-child {
  width: 50%;
  justify-content: center;
}
@media (max-width: 575px) {
  .new-experience .experience .infos ul li:last-child {
    width: 100%;
    margin-bottom: 25px;
    justify-content: start;
  }
}
.new-experience .experience .infos ul li .from {
  width: 50%;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 32px;
  color: white;
}
@media (max-width: 575px) {
  .new-experience .experience .infos ul li .from {
    font-size: 22px;
  }
}
.new-experience .experience .infos ul li .from span {
  font-size: 55px;
  color: #C1A130;
}
@media (max-width: 575px) {
  .new-experience .experience .infos ul li .from span {
    font-size: 35px;
  }
}
.new-experience .experience .infos ul li .from label {
  min-width: 140px;
  font-size: 20px;
  margin-top: 6px;
}
.new-experience .experience .infos ul li .to {
  width: 50%;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 32px;
  color: white;
}
@media (max-width: 575px) {
  .new-experience .experience .infos ul li .to {
    font-size: 22px;
  }
}
.new-experience .experience .infos ul li .to span {
  font-size: 55px;
  color: #C1A130;
}
@media (max-width: 575px) {
  .new-experience .experience .infos ul li .to span {
    font-size: 35px;
  }
}
.new-experience .experience .infos ul li .to label {
  min-width: 140px;
  font-size: 20px;
  margin-top: 6px;
}
.new-experience .experience .infos ul li span.info {
  font-size: 32px;
  text-align: center;
  color: white;
}
@media (max-width: 575px) {
  .new-experience .experience .infos ul li span.info {
    font-size: 22px;
  }
}
.new-experience .experience .infos ul li img {
  width: 45px;
}
@media (max-width: 575px) {
  .new-experience .experience .infos ul li img {
    width: 35px;
  }
}
.new-experience .experience .img {
  width: 30%;
}
@media (max-width: 575px) {
  .new-experience .experience .img {
    width: 100%;
  }
}
.new-experience .experience .img .location {
  height: 100%;
  position: relative;
}
.new-experience .experience .img .location:before {
  position: absolute;
  background: #703d87;
  z-index: 9999999;
  inset: 0;
  opacity: 0.6;
  content: "";
}
.new-experience .experience .img .location img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.startigie-table {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 55px;
}
.startigie-table .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.startigie-table .container h3 {
  font-size: 65px;
  color: #A5B783;
  text-align: center;
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .startigie-table .container h3 {
    font-size: 35px;
  }
}
.startigie-table .container ul li {
  background: white;
  margin-bottom: 20px;
  font-size: 24px;
  width: 750px;
  height: 82px;
  background-size: cover;
  background-repeat: repeat-x;
  line-height: 72px;
  padding-right: 76px;
  position: relative;
}
@media (max-width: 575px) {
  .startigie-table .container ul li {
    width: initial;
    padding-left: 23px;
  }
}
.startigie-table .container ul li img {
  width: 27px;
  margin-left: 15px;
  position: relative;
  top: 6px;
}
@media (max-width: 575px) {
  .startigie-table .container ul li img {
    display: none;
  }
}
.startigie-table .container ul li::before {
  content: "";
  width: 45px;
  height: 45px;
  position: absolute;
  top: 25px;
  right: 15px;
  background-repeat: no-repeat;
}
.startigie-table .container ul li::after {
  content: "";
  width: 35px;
  height: 45px;
  position: absolute;
  top: 25px;
  left: 15px;
  background-repeat: no-repeat;
}
.startigie-table .container ul li span {
  margin-left: 30px;
  font-family: "Lyon Arabic Disp App";
  font-size: 29px;
}
.startigie-table .container ul li:first-child {
  background-image: url(/media/imgs/startigie-table/1.svg);
  color: #668238;
}
.startigie-table .container ul li:first-child::before {
  background-image: url(/media/imgs/startigie-table/before1.svg);
}
.startigie-table .container ul li:first-child::after {
  background-image: url(/media/imgs/startigie-table/after1.svg);
}
.startigie-table .container ul li:nth-child(2) {
  background-image: url(/media/imgs/startigie-table/2.svg);
  color: #A37866;
}
.startigie-table .container ul li:nth-child(2)::before {
  background-image: url(/media/imgs/startigie-table/before2.svg);
}
.startigie-table .container ul li:nth-child(2)::after {
  background-image: url(/media/imgs/startigie-table/after2.svg);
}
.startigie-table .container ul li:last-child {
  background-image: url(/media/imgs/startigie-table/3.svg);
  color: #6F3C86;
}
.startigie-table .container ul li:last-child::before {
  background-image: url(/media/imgs/startigie-table/before3.svg);
}
.startigie-table .container ul li:last-child::after {
  background-image: url(/media/imgs/startigie-table/after3.svg);
}
@media (max-width: 575px) {
  .startigie-table .container ul li label {
    display: none;
  }
}

.life-quality {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 55px;
}
.life-quality .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.life-quality .container h3 {
  font-size: 65px;
  color: #A5B783;
  text-align: center;
}
@media (max-width: 575px) {
  .life-quality .container h3 {
    font-size: 35px;
  }
}
.life-quality .container p {
  max-width: 988px;
  font-size: 30px;
  text-align: justify;
  margin-top: 15px;
  color: white;
  line-height: 57px;
  text-align-last: center;
}
@media (max-width: 575px) {
  .life-quality .container p {
    font-size: 20px;
    line-height: 37px;
  }
}
.partners {
  padding: 55px;
}
.partners .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.partners .container .partner {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 65px;
}
.partners .container .partner h2 {
  font-size: 65px;
  color: #A5B783;
  text-align: center;
}
@media (max-width: 575px) {
  .partners .container .partner h2 {
    font-size: 35px;
  }
}
.partners .container .partner .box {
  border: 1px solid rebeccapurple;
  padding: 72px 30px;
  position: relative;
  margin-top: 115px;
}
.partners .container .partner .box .logo {
  width: 290px;
  height: 80px;
  position: absolute;
  background: #C1A130;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: -46px;
  align-items: center;
  display: flex;
  padding: 0 26px;
  justify-content: center;
}
@media (max-width: 575px) {
  .partners .container .partner .box .logo {
    max-width: 200px;
    padding: 8px;
  }
}
.partners .container .partner .box .logo img {
  width: 100%;
}
.partners .container .partner .box .description {
  font-size: 29px;
  color: white;
}
@media (max-width: 575px) {
  .partners .container .partner .box .description {
    font-size: 20px;
  }
}
.partners .container .partner .box .social {
  display: flex;
  position: absolute;
  left: 30px;
  bottom: -18px;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.contact-section {
  padding: 75px;
}
@media (max-width: 575px) {
  .contact-section {
    padding: 25px 5px;
  }
}
.contact-section .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.contact-section .container .heading h3 {
  font-size: 65px;
  color: #A5B783;
  text-align: center;
}
@media (max-width: 575px) {
  .contact-section .container .heading h3 {
    font-size: 35px;
  }
}
.contact-section .container .form-heading {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 55px;
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .contact-section .container .form-heading img {
    max-width: 150px;
  }
}
.contact-section .container .form-heading span {
  font-size: 36px;
  background: #43632B;
  padding: 2px 36px;
  padding-bottom: 7px;
  display: inline-block;
  color: white;
  font-family: "Lyon Arabic Disp App";
  margin-top: 25px;
}
@media (max-width: 575px) {
  .contact-section .container .form-heading span {
    font-size: 24px;
  }
}
.contact-section .container .form-heading span.last {
  background-color: #5E3774;
}
.contact-section .container .form-container {
  max-width: 700px;
  margin: auto;
  background-color: #43632B;
  padding: 20px 45px;
  position: relative;
}
@media (max-width: 575px) {
  .contact-section .container .form-container {
    padding: 20px 5px;
  }
}
.contact-section .container .form-container::before, .contact-section .container .form-container::after {
  position: absolute;
  background-image: url(/media/imgs/contact/icons-form.svg);
  background-repeat: no-repeat;
  width: 33px;
  height: 146px;
  content: "";
}
.contact-section .container .form-container::before {
  top: 25px;
  left: 5px;
}
.contact-section .container .form-container::after {
  bottom: 25px;
  left: 5px;
}
.contact-section .container .form-container .form-group {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 5px;
  gap: 15px;
}
@media (max-width: 575px) {
  .contact-section .container .form-container .form-group {
    flex-direction: column;
    margin-bottom: 0px;
  }
}
.contact-section .container .form-container .form-group textarea {
  width: 100%;
  height: 150px;
  border: none;
  color: white;
  outline: none;
  resize: none;
}
.contact-section .container .form-container .form-group .form-label {
  flex: 1;
  padding: 24px 15px;
  background-color: #31451f;
  text-align: right;
  color: white;
  font-size: 20px;
}
@media (max-width: 575px) {
  .contact-section .container .form-container .form-group .form-label {
    width: 100%;
    padding: 10px;
    background-color: transparent;
  }
}
.contact-section .container .form-container .form-group .form-input {
  flex: 2;
  background-color: #31451f;
  border: none;
  padding: 24px 15px;
  outline: none;
  width: 100%;
  color: white;
  font-size: 20px;
  font-family: "Lyon Arabic Disp App Reg";
}
.contact-section .container .form-container .form-group .form-input::placeholder {
  color: white;
}
.contact-section .container .form-container .form-group .form-input:focus {
  border-bottom: 2px solid white;
}
.contact-section .container .form-container .form-group .checkbox-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .contact-section .container .form-container .form-group .checkbox-group {
    flex-direction: column;
    align-items: start;
  }
}
.contact-section .container .form-container .form-group .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contact-section .container .form-container .form-group .checkbox-group input {
  accent-color: white;
}
.contact-section .container .form-container .form-group .full-width {
  width: 100%;
}
.contact-section .container .form-container .form-group button {
  width: 100%;
  display: block;
  background: #31451f;
  border: 0;
  padding: 15px 0;
  font-size: 23px;
  font-family: "Lyon Arabic Disp App Reg";
  color: white;
}
.contact-section .container .form-container.contact-form-container {
  background-color: #5E3774;
}
.contact-section .container .form-container.contact-form-container .form-input, .contact-section .container .form-container.contact-form-container .form-label {
  background-color: #3B1E4B;
}
.contact-section .container .form-container.contact-form-container::after, .contact-section .container .form-container.contact-form-container::before {
  background-image: url(/media/imgs/contact/icons-form-contact.svg);
}
.contact-section .container .form-container.contact-form-container button {
  background-color: #3B1E4B;
}
@media (max-width: 575px) {
  .contact-section .container .form-container.contact-form-container .form-label {
    background-color: transparent;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #352247;
  z-index: 999;
  justify-content: right;
  padding-right: 45px;
  align-items: center;
  height: calc(100vh - 0px);
  display: none;
}
.mobile-menu .menu-logo {
  position: absolute;
  top: 20px;
  right: 30px;
  max-width: 98px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu ul li {
  display: block;
  width: 100%;
  padding: 15px;
}
.mobile-menu ul li a {
  color: white;
  font-size: 35px !important;
}
.mobile-menu .close {
  position: absolute;
  left: 30px;
  top: 40px;
  transform: rotate(180deg);
}
.mobile-menu .close svg {
  stroke: #D04055 !important;
}
.mobile-menu .cta a {
  position: absolute;
  bottom: 100px;
  display: block;
  width: 80%;
  background: #703D87;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 14px 5px;
  color: white;
  font-size: 17px;
  text-align: center;
}

.contact-cta {
  position: relative;
}
.contact-cta::before, .contact-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  z-index: 9999;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-cta::before {
  background-image: url(/media/imgs/contact-cta/1.svg);
}
.contact-cta::after {
  background-image: url(/media/imgs/contact-cta/2.svg);
  top: initial;
  left: initial;
  bottom: 0;
  right: 0;
}
.contact-cta .container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.contact-cta .container .heading h3 {
  font-size: 65px;
  color: #A5B783;
  text-align: center;
  color: #9E80B2;
}
@media (max-width: 575px) {
  .contact-cta .container .heading h3 {
    font-size: 35px;
  }
}
.contact-cta .container .cta-item {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.contact-cta .container .cta-item .item {
  width: 50%;
  text-align: center;
  padding: 95px 0;
  padding-bottom: 10px;
  position: relative;
}
@media (max-width: 575px) {
  .contact-cta .container .cta-item .item {
    padding-top: 35px;
  }
}
.contact-cta .container .cta-item .item a {
  text-align: center;
  background: #668238;
  padding: 3px 11px;
  padding-bottom: 8px;
  display: inline-block;
  color: white;
  font-size: 34px;
  font-family: "Lyon Arabic Disp App";
  position: relative;
}
@media (max-width: 575px) {
  .contact-cta .container .cta-item .item a {
    font-size: 24px;
  }
}
.contact-cta .container .cta-item .item a::after, .contact-cta .container .cta-item .item a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 3px;
  background: rgb(208, 249, 199);
  transition: 0.4s;
}
.contact-cta .container .cta-item .item a::after {
  top: inherit;
  left: inherit;
  bottom: 0px;
  right: 0px;
}
.contact-cta .container .cta-item .item a:hover {
  color: rgb(208, 249, 199);
  background: transparent;
}
.contact-cta .container .cta-item .item a:hover::after, .contact-cta .container .cta-item .item a:hover::before {
  width: 100%;
  transition: 0.7s;
}
.contact-cta .container .cta-item .item:first-child a {
  background-color: #57603F;
}
.contact-cta .container .cta-item .item:last-child a {
  background-color: #64367A;
}