/*----------global---------*/
:root {
  --bs-primary-text-emphasis: #1D4ED8;
}

.btn-primary {
  background: linear-gradient(180deg, #7456FB 0%, #006CF2 100%);
  display: inline-flex;
  align-items: center;
  border: 0;
  transition: 0.3s;
}
.btn-primary:hover {
  background: linear-gradient(270deg, #7456FB 0%, #006CF2 100%);
}
.btn-primary.with-icon-before {
  position: relative;
}
.btn-primary.with-icon-before::before {
  content: url(../icons/arrow-right.svg);
  line-height: 0;
  width: 24px;
  text-align: center;
}
.btn-primary.with-icon-after {
  position: relative;
}
.btn-primary.with-icon-after::after {
  content: url(../icons/arrow-right.svg);
  transform: scaleX(-1);
  line-height: 0;
  width: 24px;
  text-align: center;
}
.btn-primary.bg-blue {
  background: #2563EB;
  font-size: 0.875rem;
}

.btn-outline-primary {
  --bs-btn-color: #2563EB;
  --bs-btn-hover-color: #2563EB;
  --bs-btn-active-color: #2563EB;
  --bs-btn-disabled-color: #2563EB;
  position: relative;
  background: transparent;
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  overflow: hidden;
}
.btn-outline-primary:hover {
  background: #EFF6FF;
}
.btn-outline-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(180deg, #7456FB 0%, #006CF2 100%);
  border-radius: 100px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.btn-outline-primary.with-icon-before {
  position: relative;
}
.btn-outline-primary.with-icon-before::before {
  content: url(../icons/arrow-right.svg);
  line-height: 0;
  width: 24px;
  text-align: center;
}
.btn-outline-primary.with-icon-after {
  position: relative;
}
.btn-outline-primary.with-icon-after::after {
  content: url(../icons/arrow-left.svg);
  line-height: 0;
  width: 24px;
  text-align: center;
}

.btn-outline-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #FFFFFF1A;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #FFFFFF1A;
  --bs-btn-active-border-color: #fff;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-border-color: #fff;
}

.accordion {
  --bs-accordion-btn-icon: url("../icons/plus-circle.svg");
  --bs-accordion-btn-active-icon: url("../icons/minus-circle.svg");
  --bs-accordion-bg: transparent;
  --bs-accordion-active-bg: rgb(255, 255, 255, 0.5);
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-padding-y: 24px;
}
.accordion .accordion-collapse.show {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 24px 24px !important;
}
.accordion .accordion-button {
  font-size: 1.25rem;
  font-weight: 500;
}
.accordion .accordion-button:focus {
  box-shadow: none;
}
.accordion .accordion-body {
  color: #334155;
  font-weight: 400;
}
.accordion .accordion-button:not(.collapsed) {
  border-radius: 24px 24px 0 0 !important;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/rubik/Rubik-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/rubik/Rubik-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/rubik/Rubik-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/rubik/Rubik-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/rubik/Rubik-Bold.ttf") format("truetype");
}
/*------*/
body {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
}

@font-face {
  font-family: "OpenDyslexic";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/OpenDyslexic-Regular.woff2") format("woff");
}
html {
  font-size: 16px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

body {
  background-image: url(../icons/page-bg.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 767px) {
  body {
    background-size: cover;
    background-attachment: local;
  }
}

.gap-20 {
  gap: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.p-20 {
  padding: 20px;
}

.max-700 {
  max-width: 700px;
}

.max-650 {
  max-width: 650px;
}

.rounded-12 {
  border-radius: 12px;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-32 {
  margin-top: 32px;
}

.max-900 {
  max-width: 900px;
}

.max-1024 {
  max-width: 1024px;
}

.rounded-24 {
  border-radius: 24px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-40 {
  margin-bottom: 40px;
}

.rounded-100 {
  border-radius: 100px;
}

.gap-32 {
  gap: 32px;
}

.mb-60 {
  margin-bottom: 60px;
}

.my-80 {
  margin: 80px 0;
}

.pt-160 {
  padding-top: 160px;
}
@media (max-width: 767px) {
  .pt-160 {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .overflow-y-hidden-mobile {
    overflow-y: hidden;
  }
}

.translate-y-80 {
  transform: translateY(-80px);
}

.pb-160 {
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .pb-160 {
    padding-bottom: 100px;
  }
}

.pb-60 {
  padding-bottom: 60px;
}

.max-1040 {
  max-width: 1040px;
}

.max-540 {
  max-width: 540px;
}

.shadow {
  box-shadow: 0 16px 32px -4px rgba(12, 12, 13, 0.1019607843);
}

.center-all {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn {
  padding: 10px 20px;
  border-radius: 100px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-60 {
  margin-top: 60px;
}

.py-60 {
  padding: 60px 0;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.p-32 {
  padding: 32px;
}

.gy-60 {
  --bs-gutter-y: 60px;
}

.fs-6 {
  font-size: 1.125rem;
}

.py-160 {
  padding: 160px 0;
}
@media (max-width: 991px) {
  .py-160 {
    padding: 120px 0;
  }
}
@media (max-width: 767px) {
  .py-160 {
    padding: 100px 0;
  }
}

p {
  font-size: 1.0625rem;
}

@media (max-width: 767px) {
  .pb-m-60 {
    padding-bottom: 60px !important;
  }
}

.request-meet {
  background: linear-gradient(90deg, #FFFFFF 0%, #BFDBFE 100%);
  color: #2563EB !important;
  border: 0;
  transition: 0.4s;
}
.request-meet:hover {
  background: linear-gradient(90deg, #EEF5FF 0%, #93C5FD 100%) !important;
}
.request-meet::after {
  content: url(../icons/arrow-left.svg);
  line-height: 0;
  width: 24px;
  text-align: center;
}

.box-item {
  padding: 32px;
  box-shadow: 0 16px 32px -4px rgba(12, 12, 13, 0.1019607843);
}
.box-item .image {
  position: relative;
  background: transparent;
  border-radius: 15px;
  z-index: 1;
  overflow: hidden;
  height: 64px;
  width: 64px;
}
.box-item .image::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  background: linear-gradient(180deg, #B6D1FF 0%, #448AFF 28.5%, #4E81ED 81%, #A8C4FF 100%);
  border-radius: 50%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.box-item P {
  color: #020617;
}
.box-item h6 {
  font-size: 3.125rem;
  background: linear-gradient(180deg, #7456FB 0%, #006CF2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.title h2 {
  font-size: 5rem;
  margin-bottom: 35px;
  font-weight: 700;
}
@media (max-width: 1399px) {
  .title h2 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .title h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .title h2 {
    font-size: 2rem !important;
  }
}
.title h2 span {
  background: linear-gradient(90deg, #2563EB 0%, #7456FB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 15px;
}
.title p {
  font-size: 1.25rem;
  color: #1E293B;
}
.title h3 {
  font-size: 3.75rem;
  color: #020617;
}
@media (max-width: 1399px) {
  .title h3 {
    font-size: 3rem;
  }
}

.bg-world {
  background: linear-gradient(180deg, #7456FB 0%, #006CF2 100%), url(../icons/map.png);
  background-blend-mode: overlay;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.bg-wave-blue,
.bg-wave-short {
  background: linear-gradient(180deg, #7456FB 0%, #006CF2 100%);
}
@media (min-width: 768px) {
  .bg-wave-blue::before,
  .bg-wave-short::before {
    content: "";
    background-image: url(../icons/waves-3.svg);
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .bg-wave-short::before {
    background-image: url(../icons/waves-short.svg);
  }
}

.with-circle-shadow-top {
  position: relative;
  overflow: hidden;
}
.with-circle-shadow-top .container {
  position: relative;
  z-index: 1;
}
.with-circle-shadow-top::after {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  background-color: #3D4AB0;
  top: -50px;
  left: 15%;
  box-shadow: 0px 0px 250px 300px #3D4AB0;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .with-circle-shadow-top::after {
    left: 0;
    right: 0;
    margin: auto;
  }
}

.with-circle-shadow-bottom {
  position: relative;
  overflow: hidden;
}
.with-circle-shadow-bottom .container {
  position: relative;
  z-index: 1;
}
.with-circle-shadow-bottom::after {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  background-color: #38236E;
  bottom: 0;
  right: 0;
  box-shadow: 0px 0px 250px 300px #38236E;
  border-radius: 50%;
}

.with-circle-shadow-middle {
  position: relative;
  overflow: hidden;
}
.with-circle-shadow-middle .container {
  position: relative;
  z-index: 1;
}
.with-circle-shadow-middle::before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  background-color: #33338B;
  top: 50%;
  right: 0;
  box-shadow: 0px 0px 250px 300px #33338B;
  border-radius: 50%;
}

.icon-card {
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.1019607843);
  transition: 0.35s;
}
.icon-card:hover {
  background-color: #fff;
}
.icon-card:hover h5 {
  color: #020617 !important;
}
.icon-card:hover p {
  color: #334155 !important;
}
.icon-card:hover .border-white::before {
  background: linear-gradient(180deg, #7456FB 0%, #006CF2 100%);
}
.icon-card:hover:hover .svg-icon img {
  opacity: 0;
}
.icon-card:hover:hover .svg-icon::after {
  background: linear-gradient(180deg, #7456FB 0%, #006CF2 100%);
}
.icon-card .border-white {
  position: relative;
  background: transparent;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  overflow: hidden;
  width: 90px;
  height: 90px;
}
.icon-card .border-white::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(180deg, #B6D1FF 0%, #FFFFFF 25%, #FFFFFF 75%, #A8C4FF 100%);
  border-radius: 100px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.icon-card .svg-icon {
  position: relative;
  --mask-url: url("");
}
.icon-card .svg-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-mask: var(--mask-url) no-repeat center;
  mask: var(--mask-url) no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: transparent;
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
}
.icon-card .svg-icon img {
  display: block;
  width: 50px;
  height: 50px;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .boxes-section.translate-middle-y {
    transform: translateY(-90px) !important;
  }
}
@media (max-width: 767px) {
  .boxes-section .row {
    --bs-gutter-y: 32px;
  }
}

.row.gy-32 {
  --bs-gutter-y: 32px;
}

.nav-tabs {
  --bs-nav-tabs-border-width: 0;
  gap: 20px;
  flex-wrap: wrap;
}
.nav-tabs .nav-link {
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  padding: 16px 24px;
  border-radius: 500px;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: -0.2px;
}

.disabilitiesChart .chart-image {
  width: 320px;
}
.disabilitiesChart .chart-image h5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.disabilitiesChart .colors {
  border: 2px solid white;
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 50%;
}
.disabilitiesChart .color-1 {
  background-color: #998BFF;
}
.disabilitiesChart .color-2 {
  background-color: #FF8F87;
}
.disabilitiesChart .color-3 {
  background-color: #59D7F0;
}
.disabilitiesChart .color-4 {
  background-color: #FFAE4C;
}
.disabilitiesChart .color-5 {
  background-color: #537FF1;
}
.disabilitiesChart .color-6 {
  background-color: #5BE490;
}

/*-----layout------*/
header {
  left: 0;
  right: 0;
  z-index: 9999;
  --bs-nav-link-hover-color: #fff;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
  border-radius: 0 0 24px 24px;
}
header.scrolled::before {
  opacity: 1;
}
header .navbar {
  --bs-navbar-padding-y: 12px;
  --bs-navbar-brand-margin-end: 40px;
  --bs-navbar-nav-link-padding-x: 0;
}
header .navbar .navbar-nav {
  --bs-nav-link-color: #fff;
  --bs-nav-link-hover-color: #fff;
  gap: 32px;
}
header .navbar .nav-link {
  position: relative;
}
header .navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: var(--bs-nav-link-hover-color);
  transition: width 0.3s ease-in-out;
  transform: translateX(-50%);
}
header .navbar .nav-link:hover::after {
  width: 100%;
}
header .navbar-toggler {
  border: 0;
}
header .navbar-toggler:focus {
  box-shadow: none;
}
header .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  z-index: 999999;
  float: right;
}
@media (max-width: 400px) {
  header .hamburger-toggle {
    width: 40px;
    height: 40px;
  }
}
header .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
header .hamburger span {
  width: 100%;
  height: 2px;
  position: absolute;
  background: #fff;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}
header .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}
header .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
header .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}
header .hamburger.active span {
  position: absolute;
  margin: 0;
}
header .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
header .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
header .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}
header.scrolled {
  --bs-nav-link-hover-color: #2563EB;
}
header.scrolled .navbar-nav {
  --bs-nav-link-color: #020617;
  --bs-nav-link-hover-color: #2563EB;
}
header.scrolled .nav-link:focus,
header.scrolled .nav-link:hover {
  color: var(--bs-nav-link-hover-color) !important;
}
header.scrolled .login_lang a {
  color: #020617 !important;
}
header.scrolled .login_lang a img {
  filter: brightness(0);
}
header.scrolled .btn-outline-light {
  border: 1px solid #2563EB;
  background: #EFF6FF;
  color: #2563EB;
}
header.scrolled .request-meet {
  background: linear-gradient(90deg, #EEF5FF 0%, #93C5FD 100%);
}
header.scrolled .hamburger span {
  background: #475569;
}

.menu-opened header {
  background-color: #fff;
  height: 100%;
}
.menu-opened header .navbar-nav {
  --bs-nav-link-color: #020617;
  --bs-nav-link-hover-color: #2563EB;
}
.menu-opened header .login_lang a {
  color: #020617 !important;
}
.menu-opened header .login_lang a img {
  filter: brightness(0);
}
.menu-opened header .btn-outline-light {
  border: 1px solid #2563EB;
  background: #EFF6FF;
  color: #2563EB;
}
.menu-opened header .request-meet {
  background: linear-gradient(90deg, #EEF5FF 0%, #93C5FD 100%);
}
.menu-opened header .hamburger span {
  background: #475569;
}

footer h6 {
  font-size: 1.125rem;
  color: 172554;
}
footer li a {
  color: #172554;
  transition: 0.3s;
}
footer li a:hover {
  color: #2563EB;
}
footer li a span {
  unicode-bidi: plaintext;
}
footer hr {
  border-color: #93C5FD;
  opacity: 1;
  margin: 32px 0;
}
footer .copyrights p {
  font-size: 14px;
}
footer .copyrights a {
  color: #172554;
  transition: 0.3s;
}
footer .copyrights a:hover {
  color: #2563EB;
}

/*-----component------*/
.hero-section {
  min-height: 850px;
}
.hero-section.image-bottom {
  align-items: end !important;
}
@media (max-width: 767px) {
  .hero-section.image-bottom {
    padding-bottom: 0;
  }
}
.hero-section.image-bottom .text {
  padding: 70px 0;
}
@media (max-width: 991px) {
  .hero-section.image-bottom .text {
    padding: 160px 0 70px;
  }
}
@media (max-width: 767px) {
  .hero-section.image-bottom .text {
    padding: 24px 0 10px;
  }
}
.hero-section.h-750 {
  min-height: 800px;
}
@media (max-width: 991px) {
  .hero-section.h-750 {
    min-height: auto;
  }
}
.hero-section .image {
  max-width: 500px;
}
@media (max-width: 767px) {
  .hero-section {
    padding: 100px 0 180px;
  }
}
.hero-section h1 {
  font-size: 3.25rem;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2rem;
  }
}
.hero-section p {
  margin-bottom: 40px;
  font-size: 1.0625rem;
}
@media (max-width: 767px) {
  .hero-section .row {
    --bs-gutter-y: 60px;
  }
}

.inner-hero {
  min-height: 470px;
  padding: 150px 0 80px;
}
.inner-hero h1 {
  font-size: 3.4375rem;
}
@media (max-width: 991px) {
  .inner-hero h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .inner-hero h1 {
    font-size: 2rem;
  }
}
.inner-hero.knowledge-single {
  background: linear-gradient(180deg, #7456FB 0%, #006CF2 100%);
}
.inner-hero.knowledge-single .knowledge-image {
  top: 0;
  bottom: 0;
  left: 0;
}
.inner-hero.knowledge-single .knowledge-image img {
  opacity: 0.3;
  object-position: center;
}

.clients .title {
  max-width: 1040px;
}
.clients .clients-logo {
  gap: 70px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .clients .clients-logo {
    gap: 30px;
  }
}
.clients .clients-logo .image {
  flex: 0 0 calc(25% - 70px);
}
@media (max-width: 1199px) {
  .clients .clients-logo .image {
    flex: 0 0 calc(33% - 18px);
  }
}
@media (max-width: 767px) {
  .clients .clients-logo .image {
    flex: 0 0 calc(50% - 35px);
  }
}

.all-clients-page .image {
  height: 110px;
  padding: 20px;
}

.text-image .image {
  max-width: 580px;
}
.text-image h6 {
  color: #2563EB;
}
.text-image h2 {
  color: #172554;
  font-size: 3.75rem;
}
@media (max-width: 991px) {
  .text-image h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .text-image h2 {
    font-size: 2rem;
  }
}
.text-image p {
  color: #334155;
}
@media (max-width: 767px) {
  .text-image .row {
    --bs-gutter-y: 60px;
  }
}
@media (max-width: 767px) {
  .text-image .buttons {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .awards-section .title h2 {
    margin-bottom: 80px;
  }
}
.awards-section .swiper-container {
  margin-right: -20%;
}
@media (max-width: 767px) {
  .awards-section .swiper-container {
    margin-right: 80px;
  }
}
@media (max-width: 575px) {
  .awards-section .swiper-container {
    margin-right: 0;
  }
}
.awards-section .swiper-container img {
  border-radius: 24px;
  width: 100%;
}
.awards-section .swiper-awards .swiper-button-prev:after,
.awards-section .swiper-awards .swiper-rtl .swiper-button-next:after {
  content: url(../icons/swiper-arrow.svg);
}
.awards-section .swiper-awards .swiper-button-next:after,
.awards-section .swiper-awards .swiper-rtl .swiper-button-prev:after {
  transform: scaleX(-1);
  content: url(../icons/swiper-arrow.svg);
}
.awards-section .swiper-awards .swiper-button-next,
.awards-section .swiper-awards .swiper-button-prev {
  background: #FFFFFF;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 4px solid #BFDBFE;
}
@media (max-width: 1199px) {
  .awards-section .swiper-awards .swiper-button-next,
  .awards-section .swiper-awards .swiper-button-prev {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 767px) {
  .testimonial {
    margin-top: 144px;
  }
}
.testimonial .quote-right {
  right: 0;
  bottom: 40px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial .quote-right {
    right: -20px;
  }
}
@media (min-width: 860px) and (max-width: 1199px) {
  .testimonial .quote-right {
    right: -64px;
  }
}
@media (min-width: 768px) and (max-width: 1120px) {
  .testimonial .quote-right {
    bottom: -68px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .testimonial .quote-right {
    bottom: -90px;
  }
}
.testimonial .quote-left {
  left: 0;
  top: 40px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial .quote-left {
    left: -20px;
  }
}
@media (min-width: 860px) and (max-width: 1199px) {
  .testimonial .quote-left {
    left: -64px;
  }
}
@media (min-width: 768px) and (max-width: 1120px) {
  .testimonial .quote-left {
    top: -68px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .testimonial .quote-left {
    top: -90px;
  }
}
.testimonial .testi-card {
  background: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid #FFFFFF;
  box-shadow: 0px 6px 35px 0px rgba(71, 85, 105, 0.1490196078);
}
@media (max-width: 575px) {
  .testimonial [class^=col]:first-child {
    width: 90%;
  }
}

.knowledge-center .card {
  height: 100%;
  padding: 20px;
  transition: 0.3s;
  border-radius: 24px;
  background: transparent;
}
.knowledge-center .card:hover {
  background-color: #fff;
  box-shadow: 0 16px 32px -4px rgba(12, 12, 13, 0.1019607843);
}
.knowledge-center .card .image {
  clip-path: border-box;
  height: 250px;
  margin-bottom: 35px;
}
.knowledge-center .card p {
  color: #334155;
  font-weight: 500;
}

.knowledge-hero input[type=search] {
  width: 100%;
  border-radius: 100px;
  border: 0 !important;
  outline: 0;
  min-height: 49px;
  padding: 12px 0;
  padding-inline-start: 60px;
  padding-bottom: 16px;
  background-image: url(../icons/search.svg);
  background-size: 29px;
  background-repeat: no-repeat;
  background-position: right 20px center;
  font-size: 1.25rem;
  box-shadow: 0 16px 32px -4px rgba(12, 12, 13, 0.1019607843);
}
.knowledge-hero input[type=search]::placeholder {
  color: #334155;
}

.request-meet-section {
  background-image: url(../icons/bg-request.svg);
  padding: 350px 0 75px;
  background-size: cover;
  background-position: center;
  min-height: 700px;
  background-repeat: no-repeat;
  background-position: top;
}
@media (max-width: 575px) {
  .request-meet-section {
    background-image: url(../icons/CTA-mobile.svg);
    min-height: 530px;
    padding: 250px 0 75px;
  }
}
.request-meet-section h2 {
  font-size: 4.3rem;
}
@media (max-width: 1399px) {
  .request-meet-section h2 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .request-meet-section h2 {
    font-size: 2.5rem;
  }
}
.request-meet-section .image-muneer {
  top: -60px;
  left: 0;
  right: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .request-meet-section .image-muneer img {
    width: 90px;
  }
}

@media (min-width: 992px) {
  .muneer-positions > div {
    min-height: 1270px;
  }
}
.muneer-positions .icon-active {
  display: none;
}
.muneer-positions .nav-link.active .icon-white {
  display: none;
}
.muneer-positions .nav-link.active .icon-active {
  display: inline-block;
}
.muneer-positions .option-content h3 {
  font-size: 3.75rem;
}
@media (max-width: 767px) {
  .muneer-positions .option-content h3 {
    font-size: 2rem;
  }
}
.muneer-positions .option-content .positions .item {
  background: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid #FFFFFF;
}
.muneer-positions .option-content .positions .item p {
  font-family: 0.875rem;
}
.muneer-positions .position-absolute.bottom {
  bottom: 0;
}
.muneer-positions .position-absolute.left {
  left: 0;
}
.muneer-positions .dropdown .btn {
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  text-align: start;
  border: 0;
}
.muneer-positions .dropdown .btn:focus, .muneer-positions .dropdown .btn:active {
  box-shadow: none;
  border: 0;
}
.muneer-positions .dropdown .dropdown-menu {
  width: 100%;
  border-radius: 24px;
  margin-top: 3px !important;
  border: 0;
}
.muneer-positions .dropdown .dropdown-item {
  font-size: 1.125rem;
}
.muneer-positions .dropdown .dropdown-toggle::after {
  background-image: url(../icons/chevron-down.svg);
  border: 0;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  position: absolute;
  left: 17px;
}

.dyslexia-section .text-overlay-container {
  position: relative;
  overflow: hidden;
  max-width: 820px;
}
.dyslexia-section .text-base,
.dyslexia-section .text-overlay {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 40px;
  line-height: 1.5;
  margin: 0;
  user-select: text;
}
@media (max-width: 767px) {
  .dyslexia-section .text-base,
  .dyslexia-section .text-overlay {
    padding: 7px;
  }
}
.dyslexia-section .text-overlay {
  font-family: "OpenDyslexic";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
}
.dyslexia-section .slider-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 92%;
  height: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.dyslexia-section .slider {
  width: 100%;
  height: 5px;
  background: none;
  border-radius: 10px;
  position: relative;
}
.dyslexia-section .slider-thumb {
  width: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(#2563eb, #7456fb);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dyslexia-section .slider-thumb svg {
  position: absolute;
  width: 50px;
  height: 50px;
  fill: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dyslexia-section .slider-thumb svg rect {
  stroke: url(#paint0_linear_1317_2803);
  stroke-width: 2;
  stroke-linecap: round;
}
.dyslexia-section .slider-thumb svg path {
  stroke: url(#paint1_linear_1317_2803);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dyslexia-section .slider-compare {
  padding: 1rem;
  border-radius: 1rem;
  border-width: 2px;
  border-style: dashed;
  border-color: #7456fb;
}

@media (max-width: 575px) {
  .arrow-image {
    transform: rotate(90deg);
    margin: 100px 0;
  }
}

.contact-us-section .contacts-email a {
  color: #172554;
}
.contact-us-section .contact-form .form-control {
  min-height: 38px;
  border-color: #CBD5E1;
  border-radius: 100px;
}
.contact-us-section .contact-form [type=email] {
  text-align: right;
}
.contact-us-section .contact-form label {
  font-weight: 500 !important;
  font-size: 0.875rem;
}
.contact-us-section .contact-form textarea.form-control {
  border-radius: 12px;
}
.contact-us-section .contact-form .with-icon-before::before {
  content: url(../icons/send.svg);
}

.faq-section h2 {
  color: #172554;
  font-size: 5rem;
}
@media (max-width: 767px) {
  .faq-section h2 {
    font-size: 3rem;
  }
}/*# sourceMappingURL=style.css.map */