@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap");
.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  color: #000;
}

.background-black {
  background: #000;
}

.font-white {
  color: #fff;
}

.background-white {
  background: #fff;
}

.font-red {
  color: #aa0607;
}

.background-red {
  background: #aa0607;
}

.font-gray {
  color: #828282;
}

.background-gray {
  background: #828282;
}

.font-darkprimary {
  color: #dfa000;
}

.background-darkprimary {
  background: #dfa000;
}

.font-primary {
  color: #fab816;
}

.background-primary {
  background: #fab816;
}

.font-lightprimary {
  color: #fce099;
}

.background-lightprimary {
  background: #fce099;
}

.font-secondary {
  color: #059EA1;
}

.background-secondary {
  background: #059EA1;
}

.font-lightsecondary {
  color: #abfafc;
}

.background-lightsecondary {
  background: #abfafc;
}

.font-darksecondary {
  color: #046e70;
}

.background-darksecondary {
  background: #046e70;
}

.font-lightgray {
  color: #e7eefa;
}

.background-lightgray {
  background: #e7eefa;
}

.font-lightgradient {
  color: linear-gradient(270deg, #e9defa 0%, rgba(251, 252, 219, 0.5) 100%);
}

.background-lightgradient {
  background: linear-gradient(270deg, #e9defa 0%, rgba(251, 252, 219, 0.5) 100%);
}

body.rtl {
  text-align: right;
  direction: rtl;
  font-family: "Noto Sans Arabic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
body.rtl p {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
}
body.rtl ul li {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 170%;
  letter-spacing: 0.01rem;
  padding-bottom: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

body.fade-out {
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-weight: 700;
}

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

a {
  text-decoration: none;
}

p {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 170%;
  letter-spacing: 0.01rem;
  color: #828282;
}

ul li {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 170%;
  letter-spacing: 0.01rem;
  padding-bottom: 10px;
}

.custom-container {
  width: 90%;
  margin: 0 auto;
}

.default-btn, .primary-btn-border, .secondary-btn, .primary-btn {
  font-size: 16px;
  text-align: center;
  padding: 10px 25px;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  display: inline-block;
  border-radius: 50px;
}

.primary-btn {
  background: #fab816;
  color: #000;
}
.primary-btn:hover {
  background: rgb(216.3571428571, 155.0714285714, 4.6428571429);
}

.secondary-btn {
  background: #059EA1;
  color: #fff;
}
.secondary-btn:hover {
  background: rgb(3.4638554217, 109.4578313253, 111.5361445783);
}

.primary-btn-border {
  background: none;
  color: #000;
  border: 1px solid #046e70;
}
.primary-btn-border:hover {
  background: #046e70;
  color: #fff;
  order: 1px solid #046e70;
}

.fixed-top-nav .navbar-brand img {
  width: 90px !important;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  border-radius: 0px;
  width: 20px;
  height: 3px;
}

header {
  background: #fff;
  position: relative;
  height: 80px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
@media (max-width: 996px) {
  header {
    height: 60px;
  }
}
@media (max-width: 1200px) {
  header .navbar-mobile .nav-link {
    display: block !important;
    background: rgb(5.3072289157, 167.7084337349, 170.8927710843);
    padding: 10px 15px !important;
    margin-bottom: 10px;
    color: #000;
  }
}
header .navbar-nav {
  margin-top: -15px;
}
@media (max-width: 1200px) {
  header .navbar-nav .nav-item .navbar-nav {
    margin-left: 0 !important;
    width: 90%;
  }
}
header .navbar {
  background: none;
}
header .navbar .nav-link {
  font-size: 16px;
}
header .navbar .navbar-brand img {
  width: 110px;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
@media (max-width: 1200px) {
  header .navbar .navbar-brand img {
    width: 92px;
  }
}
header .navbar .activenav {
  display: block;
  color: #059EA1;
  padding: 10px !important;
}
@media (max-width: 1200px) {
  header .navbar .activenav {
    text-decoration: none;
    background: #fab816;
    padding: 10px 15px;
    margin-bottom: 10px;
  }
}
header .navbar .nav-link:hover {
  color: #fce099 !important;
}
header .navbar .dropdown .navbar-nav {
  padding: 25px;
  box-shadow: 2px 2px 10px #828282;
  -moz-box-shadow: 2px 2px 10px #828282;
  -webkit-box-shadow: 2px 2px 10px #828282;
  -ms-box-shadow: 2px 2px 10px #828282;
}
header .navbar .dropdown .navbar-nav .nav-link:hover {
  background: #fab816;
  color: #000 !important;
}
header .navbar .dropdown .activenav {
  display: block;
  padding: 7px 15px;
}
header .navbar .dropdown .activenav .caret {
  border-top: 4px solid #fce099;
}
header .navbar .activesubnav {
  background: #fab816;
  color: #000 !important;
  display: block;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}
header .langlink {
  font-size: 30px !important;
  padding: 0 30px !important;
}
@media (max-width: 1200px) {
  header .langlink {
    background: none !important;
  }
}

@media (max-width: 1200px) {
  .navbar-toggler:focus {
    box-shadow: none;
  }
}

.homebanner {
  height: 100%;
}
.homebanner img {
  width: 100%;
}

.makesUnique {
  background: #059EA1;
  padding: 50px 0;
  margin-bottom: 70px;
  color: #fff;
  position: relative;
}
@media (max-width: 996px) {
  .makesUnique {
    padding: 25px 0;
    margin-bottom: 32px;
  }
}
.makesUnique p {
  color: #fff;
}
.makesUnique:after {
  content: "";
  width: 100%;
  height: 25px;
  background: url(../img/about-bottom-pattern.png) repeat-x bottom;
  position: absolute;
  bottom: -14px;
}

.highlets {
  background: url(../img/numbersbg.png) no-repeat 0 0;
  background-size: cover;
  background-attachment: fixed;
  padding: 200px 0;
}
@media (max-width: 996px) {
  .highlets {
    padding: 50px 0;
  }
}
.highlets .highlet-col {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .highlets .highlet-col {
    margin-bottom: 40px;
  }
}
.highlets .highlet-col h2 {
  font-size: clamp(5rem, 10vw, 10rem);
  color: #fff;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 100%;
}
.highlets .highlet-col h5 {
  color: #fff;
}

.programs {
  padding: 50px 0;
}
@media (max-width: 996px) {
  .programs {
    padding: 25px 0;
  }
}
.programs .swiper-slide {
  padding: 3rem 2rem;
  min-height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eaf9ff;
}
.programs .swiper-slide .icomoon {
  top: 2px;
}

.reasonto-choose {
  background: linear-gradient(257deg, rgba(255, 243, 233, 0.5) 0%, rgba(255, 246, 215, 0.5) 100%);
  padding: 80px 0;
}
@media (max-width: 768px) {
  .reasonto-choose {
    padding: 50px 0;
  }
}
.reasonto-choose .lt-item {
  margin-right: -80px;
  z-index: 10;
  position: relative;
}
@media (max-width: 768px) {
  .reasonto-choose .lt-item {
    margin-right: 0;
  }
}
.reasonto-choose .rt-item {
  margin-left: -70px;
  z-index: 10;
  position: relative;
}
@media (max-width: 768px) {
  .reasonto-choose .rt-item {
    margin-left: 0;
  }
}

footer {
  background: black;
  padding: 60px 0 0 0;
  font-size: 14px;
  color: #fff;
}
footer .footer-brand img {
  width: 125px;
}
footer p {
  font-size: 14px;
  color: #fff;
}
footer .footerSocial a {
  width: 40px;
  height: 40px;
  background: #059EA1;
  margin-right: 10px;
  transition: all 0.2 ease;
  -moz-transition: all 0.2 ease;
  -webkit-transition: all 0.2 ease;
  -ms-transition: all 0.2 ease;
  -o-transition: all 0.2 ease;
}
footer .footerSocial a .icomoon {
  font-size: 17px;
  color: #000;
}
footer .footerSocial a:hover {
  background: rgb(216.3571428571, 155.0714285714, 4.6428571429);
}
footer .footerSocial a:hover .icomoon {
  color: #fff;
}
footer h4 {
  padding-bottom: 2rem;
}
footer .footerLinks {
  margin: bottom 25px;
}
@media (max-width: 996px) {
  footer .footerLinks {
    margin-bottom: 15px;
  }
}
footer .footerLinks li {
  padding-bottom: 15px;
}
footer .footerLinks li a {
  color: #fff;
}
footer .footerLinks li a:hover {
  text-decoration: underline;
  color: #fab816;
}
footer .movetop {
  background: #059EA1;
  color: #fab816;
  border-radius: 50px;
  text-align: center;
  line-height: 30px;
  position: fixed;
  border: 1px solid transparent;
  padding: 8px;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 10;
  width: 45px;
  height: 45px;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  display: none;
}
footer .movetop:hover {
  background-color: #fab816;
  text-decoration: none;
}
footer .movetop:hover .icomoon {
  color: #fff;
}
footer .movetop .icomoon {
  font-size: 20px;
  color: #fff;
}

.reasonto-choose .chooseitem .icon {
  background: #fff;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.reasonto-choose .chooseitem .icon .icomoon {
  font-size: 3rem;
}
.reasonto-choose .chooseitem article {
  width: 80%;
}
.reasonto-choose .chooseitem article p {
  font-size: 14px;
}
.reasonto-choose .lt-item article {
  padding-right: 25px;
}
.reasonto-choose .rt-item article {
  padding-left: 25px;
}

.testimonials {
  padding: 20px 0;
  background: #059EA1;
  color: #fff;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 30px 0;
  }
}
.testimonials .textmonials-col {
  background: url(../img/quotebg.png) no-repeat center center;
  padding: 20px 0;
}

.blogs-home {
  background: #eaf9ff;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .blogs-home {
    padding: 30px 0;
  }
}
.blogs-home .blogitem {
  overflow: hidden;
  border-radius: 15px;
  height: 100%;
  background: #fff;
}
@media (max-width: 768px) {
  .blogs-home .blogitem {
    height: auto;
    margin-bottom: 15px;
  }
}
.blogs-home .blogitem figure {
  overflow: hidden;
}
.blogs-home .blogitem figure img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  height: 100%;
}
.blogs-home .blogitem article {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.blogs-home .blogitem:hover img {
  transform: scale(1.1);
}
.blogs-home .blogitem:hover h5 {
  color: #059EA1;
}

.grid-gallery .row img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 200px;
}

.contact-section {
  padding: 30px 0;
}
.contact-section input:focus {
  box-shadow: none;
}

.about-section p {
  text-align: justify;
}/*# sourceMappingURL=style.css.map */