/** @format */

body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #222;
}
.title {
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.8rem;
}
.heading {
  font-size: 5.4rem;
  margin-bottom: 0.2rem;
  line-height: 1.2;
  font-weight: 600;
  color: #333;
  letter-spacing: -0.2rem;
  text-align: left;
}
.subheading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3c4cff;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 25em) {
  .subheading {
    margin-bottom: 1rem;
  }
}
.paragraph {
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 4rem;
  text-align: left;
}
.btn,
.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(34, 34, 34, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active,
.btn:focus {
  outline: none;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.5rem 1rem rgba(34, 34, 34, 0.2);
}
.btn--white {
  background-color: white;
  color: #3c4cff;
  border: 0.2rem #3c4cff solid;
}
.btn--white::after {
  background-color: #3c4cff;
}
.btn--green {
  background-color: #3c4cff;
  color: white;
}
.btn--green::after {
  background-color: #3c4cff;
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn--animated {
  -webkit-animation: moveInBottom 0.5s ease-out 0.75s;
  animation: moveInBottom 0.5s ease-out 0.75s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}
.btn--moreNews,
.btn--moreNews:link,
.btn--moreNews:visited {
  margin-top: 4rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: #3c4cff;
  border: 0.2rem #3c4cff solid;
}
.btn--moreNews:hover {
  background-color: #3c4cff;
  color: white;
}
.btn-Whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem;
  background: #3b982c;
  box-shadow: 0.2rem 0.4rem 1.4rem 0.3rem rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-Whatsapp--icon {
  font-size: 4rem;
  color: white;
}
.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
  .popup {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  background-color: white;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: table;
  overflow: hidden;
  padding: 2rem;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.25);
  transition: all 0.5s 0.2s;
}
@media only screen and (max-width: 56.25em) {
  .popup__content {
    width: 60%;
  }
}
@media only screen and (max-width: 37.5em) {
  .popup__content {
    width: 70%;
  }
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup__close:link,
.popup__close:visited {
  color: #353535;
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 4rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  line-height: 1;
}
.popup__close:hover {
  color: #f85c5c;
}
.popup__Title {
  padding-left: 2rem;
  color: #333;
  font-size: 3.4rem;
  font-weight: 700;
}
@media only screen and (max-width: 25em) {
  .popup__Title {
    font-size: 3rem;
  }
}
.popup__Para {
  padding-left: 2rem;
  color: #555;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 3rem;
  margin-top: 1rem;
}
@media only screen and (max-width: 25em) {
  .popup__Para {
    padding: 0 2rem;
  }
}
.popup__Buttons {
  display: flex;
  margin: 2rem 0 2rem 2rem;
  gap: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .popup__Buttons {
    gap: 1rem;
  }
}
.popup__Buttons--btn,
.popup__Buttons--btn:link,
.popup__Buttons--btn:visited {
  background-color: #3c4cff;
  color: white;
  padding: 0.51rem 2rem;
  outline: none;
  border: none;
  border-radius: 1rem;
  font-size: 1.8rem;
  cursor: pointer;
}
@media only screen and (max-width: 37.5em) {
  .popup__Buttons--btn,
  .popup__Buttons--btn:link,
  .popup__Buttons--btn:visited {
    font-size: 1.4rem;
  }
}
.popup__Buttons--btn:hover {
  background-color: #23267e;
}
.popup__Buttons .outline {
  background: transparent;
  border: 0.2rem solid #3c4cff;
  color: #3c4cff;
}
.popup__Buttons .outline:hover {
  background-color: #3c4cff;
  color: white;
}
.model {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.model .alert {
  background: #edf6ea;
  border: 0.2rem solid #49a02c;
  width: 40%;
  border-radius: 1rem;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
@media only screen and (max-width: 37.5em) {
  .model .alert {
    width: 80%;
  }
}
.model .alert_content--info {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.model .alert_content--info .alert_icon {
  background: #49a02c;
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem;
}
.model .alert_content--info .alert_icon .icon {
  color: white;
  font-size: 5rem;
}
.model .alert_content--info .alert_Title {
  font-size: 2rem;
  color: #49a02c;
  font-weight: 500;
  text-transform: capitalize;
}
.poup_form {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.poup_form .form_section {
  background: #dbdbdb;
  width: 40%;
  border-radius: 1rem;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
  padding: 6rem 6rem;
}
@media only screen and (max-width: 37.5em) {
  .poup_form .form_section {
    width: 80%;
  }
}
@media only screen and (max-width: 18.75em) {
  .poup_form .form_section {
    padding: 6rem 3rem;
  }
}
.poup_form .form_section form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.poup_form .form_section form .form_inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.poup_form .form_section form .submit-btn,
.poup_form .form_section form .submit-btn:link,
.poup_form .form_section form .submit-btn:visited {
  background-color: #333;
  color: white;
  padding: 1.4rem 0;
  outline: none;
  border: none;
  border-radius: 1rem;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.2s;
}
@media only screen and (max-width: 37.5em) {
  .poup_form .form_section form .submit-btn,
  .poup_form .form_section form .submit-btn:link,
  .poup_form .form_section form .submit-btn:visited {
    font-size: 1.4rem;
  }
}
.poup_form .form_section form .submit-btn:hover {
  background-color: #555;
}
.training_dropdown {
  display: inline-block;
  position: relative;
  font-size: 2rem;
  background: #3c4cff;
  padding: 2rem 4rem;
  border-radius: 5rem;
}
.training_dropdown .head {
  color: white;
}
.dropdown-content {
  display: none;
  position: absolute;
  border-radius: 1rem;
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
}
.training_dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: block;
  color: #555;
  padding: 1.5rem;
  text-decoration: none;
  background: white;
}
.dropdown-content .public_option:hover {
  color: white;
  background-color: #3c4cff;
}
.navbar_services {
  display: none;
  background: #0059ff;
  width: 60%;
  height: 100vh;
  position: fixed;
}
.navbar_services .navbar_services--container {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 6rem 4rem;
}
.navbar_services .item {
  margin: 0;
  padding: 0;
  padding: 1rem;
}
a {
  text-decoration: none;
}
li {
  list-style-type: none;
}
.navbar_services .link {
  color: white;
  font-size: 1.8rem;
  height: auto;
}
.sublist {
  background: trasparent;
  margin-left: 20rem;
  margin-top: -3rem;
}
.subitem {
  padding: 1rem;
}
.navbar_services li ul {
  display: none;
}
.navbar_services li:hover ul {
  display: block;
  position: absolute;
}
.content_inputs {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content_inputs .input_txt {
  font-size: 2.8rem;
  font-weight: 500;
  color: white;
  background: transparent;
}
@media only screen and (max-width: 18.75em) {
  .content_inputs .input_txt {
    width: 80%;
  }
}
.content_inputs .input_icon {
  font-size: 2.8rem;
  color: #6b6b6b;
  padding: 2rem;
  border: 0.2rem solid #6b6b6b;
  border-radius: 50%;
  cursor: pointer;
}
.content_inputs .input_icon:hover {
  color: white;
  border: 0.2rem solid white;
}
@media only screen and (max-width: 37.5em) {
  .content_inputs .input_icon {
    padding: 2rem;
  }
}
.content_line {
  border-bottom: 0.2rem solid #ebecfb;
  margin: 2rem 0 4rem 0;
}
.searchClose {
  visibility: hidden;
  width: 0rem;
  height: 100vh;
  background-color: #23267e;
  position: fixed;
  right: 0;
  bottom: 0;
  color: white;
  overflow: auto;
  transition: all 0.2s;
  padding: 4rem 8rem;
}
.searchOpen {
  width: 70rem;
  height: 100vh;
  background-color: #23267e;
  position: fixed;
  right: 0;
  bottom: 0;
  color: white;
  overflow: auto;
  transition: all 0.2s;
  z-index: 1999;
  padding: 4rem 8rem;
}
@media only screen and (max-width: 37.5em) {
  .searchOpen {
    width: 100%;
  }
}
@media only screen and (max-width: 18.75em) {
  .searchOpen {
    padding: 4rem;
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  overflow-x: hidden;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 25em) {
  html {
    font-size: 38%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
body {
  box-sizing: border-box;
  background: white;
  overflow: hidden;
}
.light_section {
  padding: 10rem 0 8rem 0;
  background: white;
}
@media only screen and (max-width: 37.5em) {
  .light_section {
    padding: 6rem 0;
  }
}
.blue_section {
  padding: 6rem 0;
  margin-bottom: 4.8rem;
  margin-top: 5rem;
  background: #ebecfb;
}
.blue_section:not(:last-child) {
  margin-bottom: 0;
}
@media only screen and (max-width: 37.5em) {
  .blue_section {
    padding: 4rem 0;
  }
}
.stat {
  height: 0.5rem;
  border-radius: 1rem;
}
.footer-icon {
  color: #ebecfb;
  height: 3.4rem;
  width: 3.4rem;
}
@media only screen and (max-width: 56.25em) {
  .footer-icon {
    height: 3.2rem;
    width: 3.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer-icon {
    height: 2.8rem;
    width: 2.8rem;
  }
}
a {
  text-decoration: none;
}
::-moz-selection {
  background: #7782fa;
  color: white;
}
::selection {
  background: #7782fa;
  color: white;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-8 {
  margin-bottom: 14rem;
}
@media only screen and (max-width: 37.5em) {
  .mb-8 {
    margin-bottom: 6rem;
  }
}
.m-0 {
  margin: 0;
}
.bg-blue {
  background: #ebecfb;
}
.m-t-2 {
  margin-top: 2rem;
}
.mt-6 {
  margin-top: 160rem;
}
.mt-8 {
  margin-top: 8rem;
}
.Container-Contant {
  margin: 0 auto;
  padding: 4rem 2rem;
  max-width: 120rem;
}
@media only screen and (max-width: 75em) {
  .Container-Contant {
    max-width: 100rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .Container-Contant {
    max-width: 90rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .Container-Contant {
    max-width: 60rem;
  }
}
@media only screen and (max-width: 25em) {
  .Container-Contant {
    max-width: 50rem;
  }
}
@media only screen and (max-width: 18.75em) {
  .Container-Contant {
    max-width: 40rem;
    padding: 4rem 1rem;
  }
}
.Container-Contant-Title {
  font-size: 5.4rem;
  font-weight: 800;
  color: #97afff;
  margin: 2rem 0;
}
@media only screen and (max-width: 37.5em) {
  .Container-Contant-Title {
    font-size: 4.2rem;
  }
}
.Container-Contant-descreption {
  font-size: 2rem;
  font-weight: 400;
  color: #333;
}
@media only screen and (max-width: 37.5em) {
  .Container-Contant-descreption {
    font-size: 1.8rem;
  }
}
.label {
  font-size: 1.8rem;
  color: #333;
  font-weight: 600;
}
.input_txt {
  padding: 1.4rem 2rem;
  border: none;
  border-radius: 0.8rem;
  outline: none;
}
.textarea_txt {
  padding: 1.4rem 2rem;
  border: none;
  border-radius: 0.8rem;
  outline: none;
}
.input_textarea {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-image {
  width: 100%;
}
.hero-image .image {
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: top;
}
@media only screen and (max-width: 75em) {
  .hero-image .image {
    height: 80vh;
  }
}
@media only screen and (max-width: 56.25em) {
  .hero-image .image {
    height: 70vh;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero-image .image {
    height: 60vh;
  }
}
@media only screen and (max-width: 25em) {
  .hero-image .image {
    height: 50vh;
  }
}
.hero_Sectio {
  background-image: linear-gradient(
      to right bottom,
      rgba(34, 34, 34, 0.2),
      rgba(58, 58, 58, 0.2)
    ),
    url(../img/hero/hero-small.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.hero_Sectio .Hero_slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .hero_Sectio .Hero_slider {
    height: 80vh;
  }
}
@media only screen and (max-width: 25em) {
  .hero_Sectio .Hero_slider {
    height: 70vh;
  }
}
.hero_Sectio .Hero_slider--slide .slide_img {
  max-width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  opacity: 0;
}
.hero_Sectio .Hero_slider--slide .slide_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .hero_Sectio .Hero_slider--slide .slide_content {
    top: 40%;
    left: 50%;
    transform: translate(-40%, -50%);
  }
}
@media only screen and (max-width: 18.75em) {
  .hero_Sectio .Hero_slider--slide .slide_content {
    top: 35%;
    left: 40%;
    transform: translate(-35%, -40%);
  }
}
.hero_Sectio .Hero_slider--slide .slide_content--heading {
  font-size: 7.2rem;
  margin-bottom: 1rem;
  line-height: 6rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.2rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 75em) {
  .hero_Sectio .Hero_slider--slide .slide_content--heading {
    font-size: 5.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero_Sectio .Hero_slider--slide .slide_content--heading {
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media only screen and (max-width: 18.75em) {
  .hero_Sectio .Hero_slider--slide .slide_content--heading {
    font-size: 4rem;
    line-height: 4rem;
  }
}
.hero_Sectio .Hero_slider--slide .slide_content--para {
  font-size: 2.4rem;
  color: white;
  text-transform: capitalize;
  letter-spacing: 0.75px;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 75em) {
  .hero_Sectio .Hero_slider--slide .slide_content--para {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .hero_Sectio .Hero_slider--slide .slide_content--para {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero_Sectio .Hero_slider--slide .slide_content--para {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
.hero_Sectio .Hero_slider--slide .slide_content--btn,
.hero_Sectio .Hero_slider--slide .slide_content--btn:link,
.hero_Sectio .Hero_slider--slide .slide_content--btn:visited {
  margin-top: 4rem;
  background-color: white;
  color: #23267e;
  border: 0.4rem solid #23267e;
  padding: 2rem 6rem;
  border-radius: 10rem;
  font-size: 2rem;
  font-weight: 600;
  transition: all 0.4s;
}
@media only screen and (max-width: 75em) {
  .hero_Sectio .Hero_slider--slide .slide_content--btn,
  .hero_Sectio .Hero_slider--slide .slide_content--btn:link,
  .hero_Sectio .Hero_slider--slide .slide_content--btn:visited {
    padding: 1.8rem 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .hero_Sectio .Hero_slider--slide .slide_content--btn,
  .hero_Sectio .Hero_slider--slide .slide_content--btn:link,
  .hero_Sectio .Hero_slider--slide .slide_content--btn:visited {
    border: 0.2rem solid #23267e;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero_Sectio .Hero_slider--slide .slide_content--btn,
  .hero_Sectio .Hero_slider--slide .slide_content--btn:link,
  .hero_Sectio .Hero_slider--slide .slide_content--btn:visited {
    padding: 1.8rem 5rem;
    font-size: 1.8rem;
  }
}
.hero_Sectio .Hero_slider--slide .slide_content--btn:hover {
  background-color: #3c4cff;
  color: white;
}
.hero_Section {
  background-image: linear-gradient(
      to right bottom,
      rgba(34, 34, 34, 0.2),
      rgba(58, 58, 58, 0.2)
    ),
    url(../img/hero/hero-small.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  height: 80vh;
}
.hero_Section .capsule_container {
  background: rgba(255, 255, 255, 0.274);
  border-radius: 0 50% 50% 0;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .hero_Section .capsule_container {
    width: 100%;
  }
}
.hero_Section .capsule_container .capsule {
  background: rgba(255, 255, 255, 0.541);
  height: 95%;
  border-radius: 0 50% 50% 0;
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero_Section .capsule_container .capsule_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10rem 0 6rem;
  gap: 2rem;
}
.hero_Section .capsule_container .capsule_item .heading {
  font-size: 5.4rem;
  margin-bottom: 0.2rem;
  line-height: 1.2;
  font-weight: 600;
  color: #23267e;
  letter-spacing: -0.2rem;
  text-align: left;
}
.hero_Section .capsule_container .capsule_item .para {
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
  text-align: left;
}
.hero_Section .capsule_container .capsule_item .btn,
.hero_Section .capsule_container .capsule_item .btn:link,
.hero_Section .capsule_container .capsule_item .btn:visited {
  background-color: white;
  color: #23267e;
  border: 0.2rem solid #23267e;
  padding: 1.4rem 4rem;
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.4s;
  display: inline;
  width: 30rem;
  text-align: center;
}
.hero_Section .capsule_container .capsule_item .btn:hover {
  background-color: #3c4cff;
  color: white;
}
.hero_Section .capsule_container .capsule .owl-dots {
  text-align: center;
  margin-top: 4rem;
  gap: 2rem;
}
.hero_Section .capsule_container .capsule .owl-dot {
  height: 1rem;
  width: 3rem;
  outline: none;
  transition: all 0.3s ease;
  background: white !important;
  margin: 0.4rem;
  border-radius: 0.8rem;
}
.hero_Section .capsule_container .capsule .owl-dot.active,
.hero_Section .capsule_container .capsule .owl-dot:hover {
  background: #23267e !important;
}
.header {
  justify-content: space-between;
  align-items: center;
  background-color: white;
  display: flex;
  height: 8rem;
  padding: 4.2rem 4.8rem;
  position: relative;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.077);
  z-index: 99;
}
.header .header__icons {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .header .header__icons {
    gap: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .header .header__icons {
    display: none;
  }
}
.header__logo {
  height: 8rem;
  display: inline-block;
}
@media only screen and (max-width: 37.5em) {
  .header__nav {
    background-color: #e4f4ff96;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in;
  }
}
.header__nav--list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .header__nav--list {
    gap: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .header__nav--list {
    flex-direction: column;
    gap: 4.8rem;
  }
}
.header__nav .hide {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .header__nav .hide {
    display: flex;
    gap: 4rem;
  }
}
.header__nav--link:link,
.header__nav--link:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  background-image: linear-gradient(to right, #3c4cff, #3c4cff 50%, #222 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 37.5em) {
  .header__nav--link:link,
  .header__nav--link:visited {
    font-weight: 700;
    font-size: 2.4rem;
  }
}
.header__nav--link:before {
  content: "";
  background: #3c4cff;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}
.header__nav--link:hover::before {
  width: 100%;
}
.header__nav--link:hover,
.header__nav--link:active {
  background-position: 0;
}
.header__nav--cta {
  display: inline-block;
}
.header__nav--cta:link,
.header__nav--cta:visited {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  background-color: #3c4cff;
  padding: 1rem 2rem;
  color: #222;
}
@media only screen and (max-width: 37.5em) {
  .header__nav--cta:link,
  .header__nav--cta:visited {
    padding: 1rem 4rem;
  }
}
.header__nav--cta:hover,
.header__nav--cta:active {
  background-color: #3c4cff;
}
@media only screen and (max-width: 37.5em) {
  .header__nav--cta {
    display: none;
  }
}
.header__btn--mobile {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
}
@media only screen and (max-width: 37.5em) {
  .header__btn--mobile {
    display: block;
    z-index: 1000;
  }
  .header__btn--mobile:focus {
    border-radius: 3px;
    outline: 4px solid rgba(34, 152, 230, 0.156);
    outline-offset: 2px;
  }
}
.header__btn--mobile-icon {
  height: 2.8rem;
  width: 2.8rem;
  color: #222;
}
.header__btn--mobile-icon[name="close-outline"] {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .nav-open .header__nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate(0);
    z-index: 100;
  }
}
@media only screen and (max-width: 37.5em) {
  .nav-open .header__btn--mobile-icon[name="close-outline"] {
    display: block;
  }
}
@media only screen and (max-width: 37.5em) {
  .nav-open .header__btn--mobile-icon[name="menu-outline"] {
    display: none;
  }
}
.sticky .header {
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: white;
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}
.sticky .hero {
  margin-top: 9.6rem;
}
.btn_icon {
  border: none;
  background: none;
  cursor: pointer;
}
.logo_hide {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .logo_hide {
    display: flex;
    gap: 4rem;
  }
}
.AbouUs-section {
  display: grid;
  margin: 0 auto;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 120rem;
  justify-items: center;
  padding: 0 4rem;
}
@media only screen and (max-width: 56.25em) {
  .AbouUs-section {
    max-width: 100rem;
    gap: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .AbouUs-section {
    grid-template-columns: 1fr;
    max-width: 60rem;
  }
}
@media only screen and (max-width: 25em) {
  .AbouUs-section {
    max-width: 60rem;
    gap: 2rem;
  }
}
@media only screen and (max-width: 18.75em) {
  .AbouUs-section {
    max-width: 40rem;
    gap: 2rem;
    padding: 0 0.51rem;
  }
}
.AbouUs-section img {
  border-radius: 0.8rem;
  width: 100%;
}
.AbouUs-section_container--heading {
  font-size: 5.4rem;
  margin-bottom: 3.2rem;
  line-height: 1.2;
  font-weight: 600;
  color: #222;
  letter-spacing: -0.2rem;
  text-align: left;
}
@media only screen and (max-width: 56.25em) {
  .AbouUs-section_container--heading {
    font-size: 4.2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .AbouUs-section_container--heading {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .AbouUs-section_container--heading {
    font-size: 2.8rem;
    line-height: 3rem;
  }
}
.AbouUs-section_container--paragraph {
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 4rem;
  text-align: left;
}
@media only screen and (max-width: 56.25em) {
  .AbouUs-section_container--paragraph {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .AbouUs-section_container--paragraph {
    line-height: 2.4rem;
  }
}
.AbouUs-section_container .btn--white {
  padding: 1rem 2rem;
}
.team_section {
  margin: 0 auto;
  max-width: 120rem;
  position: relative;
  padding: 4rem 0;
}
@media only screen and (max-width: 75em) {
  .team_section {
    padding: 4rem 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .team_section {
    padding: 4rem 6rem;
  }
}
.team_section--para {
  padding-right: 4rem;
}
.team_section--img {
  margin-top: 2rem;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 2px 2px 74px 5px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 37.5em) {
  .team_section--img {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 18.75em) {
  .team_section--img {
    margin-top: 0rem;
  }
}
.News_section {
  margin: 0 auto;
  max-width: 120rem;
  position: relative;
}
@media only screen and (max-width: 75em) {
  .News_section {
    max-width: 110rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .News_section {
    max-width: 90rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .News_section {
    max-width: 70rem;
  }
}
@media only screen and (max-width: 25em) {
  .News_section {
    max-width: 50rem;
  }
}
@media only screen and (max-width: 18.75em) {
  .News_section {
    max-width: 40rem;
  }
}
.News_section .title {
  margin-bottom: 4rem;
}
.News_section .title .heading {
  margin-bottom: 1.4rem;
}
.News_section .New_line {
  margin: 4.2rem 0;
}
.News_section .New_line .New {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6rem;
  margin-bottom: 3.6rem;
}
@media only screen and (max-width: 75em) {
  .News_section .New_line .New {
    gap: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .News_section .New_line .New {
    gap: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .News_section .New_line .New {
    flex-direction: column;
  }
}
.News_section .New_line .New_content {
  padding-right: 4rem;
}
.News_section .New_line .New_content--title,
.News_section .New_line .New_content--title:link,
.News_section .New_line .New_content--title:visited {
  font-size: 3.6rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 600;
  color: #3c4cff;
  letter-spacing: -0.2rem;
  text-align: left;
}
@media only screen and (max-width: 56.25em) {
  .News_section .New_line .New_content--title,
  .News_section .New_line .New_content--title:link,
  .News_section .New_line .New_content--title:visited {
    margin-bottom: 0rem;
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .News_section .New_line .New_content--title,
  .News_section .New_line .New_content--title:link,
  .News_section .New_line .New_content--title:visited {
    margin-bottom: 0rem;
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 25em) {
  .News_section .New_line .New_content--title,
  .News_section .New_line .New_content--title:link,
  .News_section .New_line .New_content--title:visited {
    line-height: 3rem;
  }
}
.News_section .New_line .New_content--title:hover {
  color: #23267e;
}
.News_section .New_line .New_content--para {
  font-size: 2rem;
  font-weight: 400;
  color: #555;
  margin: 2.4rem 0;
  text-align: left;
}
@media only screen and (max-width: 56.25em) {
  .News_section .New_line .New_content--para {
    font-size: 1.8rem;
    margin: 1.8rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .News_section .New_line .New_content--para {
    font-size: 1.4rem;
    margin: 1rem 0;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .News_section .New_line .New_content--para {
    line-height: 1.8rem;
  }
}
.News_section .New_line .New_img {
  border-radius: 1rem;
  width: 50rem;
  height: 25rem;
}
@media only screen and (max-width: 37.5em) {
  .News_section .New_line .New_img {
    width: 40rem;
    height: 20rem;
  }
}
@media only screen and (max-width: 25em) {
  .News_section .New_line .New_img {
    width: 100%;
    height: auto;
  }
}
.News_section .btn--moreNews,
.News_section .btn--moreNews:link,
.News_section .btn--moreNews:visited {
  margin-top: 4rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: #3c4cff;
  border: 2px #3c4cff solid;
}
.News_section .btn--moreNews:hover {
  background-color: #3c4cff;
  color: white;
}
.application-section {
  align-items: center;
  margin: 3.4rem auto;
  max-width: 125rem;
  padding: 0 3.2rem;
}
@media only screen and (max-width: 75em) {
  .application-section {
    max-width: 120rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .application-section {
    max-width: 100rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .application-section {
    max-width: 90rem;
  }
}
.application-section_level {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .application-section_level {
    grid-template-columns: 1fr;
  }
}
.application-section_level--box {
  text-align: center;
  padding: 0 4rem;
  justify-self: center;
}
@media only screen and (max-width: 37.5em) {
  .application-section_level--box {
    margin-bottom: 4rem;
  }
  .application-section_level--box:nth-child(1) {
    grid-row: 2;
  }
  .application-section_level--box:nth-child(5) {
    grid-row: 6;
  }
}
.application-section_level--box .marge {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 75em) {
  .application-section_level--box .marge {
    margin-bottom: 6rem;
  }
}
.application-section_level--box .marge .number {
  font-weight: 100;
  font-size: 12.4rem;
  color: rgba(0, 47, 255, 0.35);
  display: inline;
  letter-spacing: -1rem;
}
@media only screen and (max-width: 56.25em) {
  .application-section_level--box .marge .number {
    font-size: 10rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .application-section_level--box .marge .number {
    font-size: 12.4rem;
  }
}
.application-section_level--box .marge .title {
  font-weight: 800;
  font-size: 2.4rem;
  margin-top: -12rem;
  line-height: 4rem;
  text-transform: capitalize;
  color: #333;
}
@media only screen and (max-width: 56.25em) {
  .application-section_level--box .marge .title {
    margin-top: -10rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .application-section_level--box .marge .title {
    font-size: 3.2rem;
    margin-top: -13rem;
  }
}
.application-section_level--box .paragraph {
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 3rem;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .application-section_level--box .paragraph {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .application-section_level--box .paragraph {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.application-section_level--box .btn-service,
.application-section_level--box .btn-service:link,
.application-section_level--box .btn-service:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;
  color: #3c4cff;
  border: 0.2rem #3c4cff solid;
}
.application-section_level--box .btn-service:hover {
  background-color: #3c4cff;
  color: white;
}
.application-section_level--img {
  display: inline;
  justify-self: center;
}
.application-section_level img {
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .application-section_level img {
    width: 90%;
  }
}
.partners-section {
  margin: 0 auto;
  max-width: 120rem;
}
@media only screen and (max-width: 56.25em) {
  .partners-section {
    max-width: 100rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .partners-section {
    max-width: 80rem;
  }
}
@media only screen and (max-width: 25em) {
  .partners-section {
    max-width: 70rem;
  }
}
@media only screen and (max-width: 18.75em) {
  .partners-section {
    max-width: 60rem;
  }
}
.partners-section .heading-featured-in {
  font-weight: 700;
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 00.75px;
  text-align: center;
  margin-bottom: 4rem;
  color: #23267e;
}
@media only screen and (max-width: 18.75em) {
  .partners-section .heading-featured-in {
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
.partners-section .logos {
  display: flex;
  justify-content: space-around;
}
@media only screen and (max-width: 37.5em) {
  .partners-section .logos a img {
    width: 80%;
  }
}
.title_box .div_icon {
  padding: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .title_box .div_icon {
    margin-top: 6rem;
  }
}
.title_box .div_icon .iconright {
  width: 2rem;
  height: 2rem;
  float: right;
  cursor: pointer;
}
.current_title {
  font-size: 2.8rem;
  font-weight: 500;
  margin: 4rem 0 2rem 0;
  letter-spacing: -0.1rem;
  line-height: 3rem;
}
.current_info {
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.877);
  text-transform: capitalize;
}
.current_info .type {
  font-weight: 500;
  color: white;
}
.current_line {
  border-bottom: 0.2rem solid #ebecfb;
  margin: 2rem 0 4rem 0;
}
.our_location--title {
  font-size: 2.8rem;
  font-weight: 500;
  margin: 4rem 0 2rem 0;
  letter-spacing: -0.1rem;
  line-height: 3rem;
}
.our_location--map {
  width: 100%;
  height: 30rem;
}
.locationClose {
  visibility: hidden;
  width: 0rem;
  height: 100vh;
  background-color: #23267e;
  position: fixed;
  right: 0;
  bottom: 0;
  color: white;
  overflow: auto;
  transition: all 0.2s;
  padding: 4rem 8rem;
}
.locationOpen {
  width: 70rem;
  height: 100vh;
  background-color: #23267e;
  position: fixed;
  right: 0;
  bottom: 0;
  color: white;
  overflow: auto;
  transition: all 0.2s;
  z-index: 1999;
  padding: 4rem 8rem;
}
@media only screen and (max-width: 37.5em) {
  .locationOpen {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .locationOpen {
    width: 100%;
  }
}
.close_icon {
  color: #0e0e0e;
}
.client-section {
  margin: 0 auto;
  max-width: 120rem;
}
@media only screen and (max-width: 56.25em) {
  .client-section {
    max-width: 100rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .client-section {
    max-width: 80rem;
  }
}
@media only screen and (max-width: 25em) {
  .client-section {
    max-width: 70rem;
  }
}
.client-section .heading {
  font-weight: 700;
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 00.75px;
  text-align: center;
  margin-bottom: 5rem;
  color: #23267e;
}
.client-section .logos {
  display: flex;
  justify-content: space-around;
}
.client-section .logos a img {
  box-shadow: 0 1rem 2rem rgba(34, 34, 34, 0.2);
}
.client-section .owl-dots {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  background-color: rgba(0, 0, 0, 0.1);
}
.client-section .owl-dot {
  height: 0.1rem;
  outline: none;
  transition: all 0.3s ease;
  flex: auto;
}
.client-section .owl-dot.active,
.client-section .owl-dot:hover {
  background: rgba(0, 0, 0, 0.555) !important;
}
.footer {
  padding: 12.8rem;
  border-top: 2px solid #e0e0e0;
}
@media only screen and (max-width: 56.25em) {
  .footer {
    padding: 8rem;
  }
}
@media only screen and (max-width: 25em) {
  .footer {
    padding: 6rem 4rem 8rem 4rem;
  }
}
.footer .grid--footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .footer .grid--footer {
    grid-template-columns: 1.5fr 1fr;
    row-gap: 4rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
  }
}
.footer .grid--footer .logo-col {
  display: flex;
  flex-direction: column;
}
.footer .grid--footer .logo-col .footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}
.footer .grid--footer .logo-col .footer-logo .logo {
  height: 8rem;
  cursor: pointer;
}
.footer .grid--footer .logo-col .social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}
.footer .grid--footer .logo-col .social-links .footer-link,
.footer .grid--footer .logo-col .social-links .footer-link:link,
.footer .grid--footer .logo-col .social-links .footer-link:visited {
  font-size: 1.6rem;
  color: #767676;
  cursor: pointer;
}
.footer .grid--footer .logo-col .social-links .footer-link:hover,
.footer .grid--footer .logo-col .social-links .footer-link:active {
  color: #454cfc;
}
.footer .grid--footer .logo-col .social-links .footer-link .social-icon {
  width: 3.2rem;
  height: 3.2rem;
}
.footer .grid--footer .logo-col .copyright {
  font-size: 1.4rem;
  color: #767676;
  line-height: 1.6;
  margin-top: auto;
}
.footer .grid--footer .nav-col .footer-heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .footer .grid--footer .nav-col .footer-heading {
    margin-bottom: 2rem;
  }
}
.footer .grid--footer .nav-col .footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .footer .grid--footer .nav-col .footer-nav {
    gap: 1rem;
  }
}
.footer .grid--footer .nav-col .footer-nav .footer-link,
.footer .grid--footer .nav-col .footer-nav .footer-link:link,
.footer .grid--footer .nav-col .footer-nav .footer-link:visited {
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  cursor: pointer;
}
.footer .grid--footer .nav-col .footer-nav .footer-link:hover {
  color: #454cfc;
  font-weight: 500;
}
.banaSection {
  text-align: center;
  background: #ebecfb;
  padding: 4rem 0;
  margin-top: 6rem;
}
.banaSection_img {
  margin-bottom: 4rem;
}
.banaSection_para {
  margin: auto;
  width: 60%;
  font-size: 2rem;
  font-weight: 400;
  line-height: 4rem;
  color: #333;
}
@media only screen and (max-width: 75em) {
  .banaSection_para {
    font-size: 1.8rem;
    width: 80%;
  }
}
@media only screen and (max-width: 37.5em) {
  .banaSection_para {
    font-size: 1.8rem;
    width: 90%;
  }
}
.banaSection_para--green {
  color: #3c4cff;
  font-weight: 700;
}
.features_header {
  text-align: center;
  width: 120rem;
  margin: 0 auto;
  padding: 2rem 8rem;
}
.features_header--title {
  text-align: center;
}
.features_header--para {
  text-align: center;
  margin-top: 2rem;
}
@media only screen and (max-width: 75em) {
  .features_header {
    max-width: 100rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .features_header {
    max-width: 90rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .features_header {
    max-width: 60rem;
  }
}
@media only screen and (max-width: 25em) {
  .features_header {
    max-width: 50rem;
  }
}
@media only screen and (max-width: 18.75em) {
  .features_header {
    max-width: 40rem;
    padding: 4rem 1rem;
  }
}
.features_section--cardes {
  width: 120rem;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
}
@media only screen and (max-width: 75em) {
  .features_section--cardes {
    max-width: 100rem;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .features_section--cardes {
    max-width: 90rem;
    padding: 0 4rem;
    gap: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .features_section--cardes {
    flex-direction: column;
    padding: 0 6rem;
    max-width: 60rem;
  }
}
@media only screen and (max-width: 30em) {
  .features_section--cardes {
    padding: 0 6rem;
    max-width: 50rem;
  }
}
@media only screen and (max-width: 25em) {
  .features_section--cardes {
    max-width: 50rem;
  }
}
@media only screen and (max-width: 18.75em) {
  .features_section--cardes {
    max-width: 40rem;
    padding: 0 0.51rem;
  }
}
.features_section--cardes .card {
  background: white;
  text-align: center;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 6rem 4rem;
}
@media only screen and (max-width: 37.5em) {
  .features_section--cardes .card {
    flex-direction: column;
    width: 100%;
  }
}
.features_section--cardes .card_icon {
  width: 7.8rem;
}
.features_section--cardes .card_heading {
  font-weight: 700;
  font-size: 3.2rem;
}
.features_section--cardes .card_para {
  font-size: 1.6rem;
}
.all_news {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .all_news {
    gap: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .all_news {
    gap: 6rem;
    align-items: center;
  }
}
.all_news .item_new {
  display: flex;
  gap: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .all_news .item_new {
    gap: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .all_news .item_new {
    flex-direction: column;
    align-items: center;
  }
}
.all_news .item_new .img_news {
  width: 50rem;
  height: 25rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 56.25em) {
  .all_news .item_new .img_news {
    width: 45rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .all_news .item_new .img_news {
    width: 35rem;
    height: 20rem;
  }
}
@media only screen and (max-width: 25em) {
  .all_news .item_new .img_news {
    width: 100%;
    height: auto;
  }
}
.all_news .item_new .news_content--heading {
  font-size: 3.6rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 600;
  color: #14163a;
  letter-spacing: -0.2rem;
  text-align: left;
}
@media only screen and (max-width: 56.25em) {
  .all_news .item_new .news_content--heading {
    margin-bottom: 0rem;
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .all_news .item_new .news_content--heading {
    margin-bottom: 0rem;
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 25em) {
  .all_news .item_new .news_content--heading {
    line-height: 3rem;
  }
}
.all_news .item_new .news_content--para {
  font-size: 2rem;
  font-weight: 400;
  color: #555;
  margin: 2.4rem 0;
  text-align: left;
}
@media only screen and (max-width: 56.25em) {
  .all_news .item_new .news_content--para {
    font-size: 1.8rem;
    margin: 1.8rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .all_news .item_new .news_content--para {
    font-size: 1.4rem;
    margin: 1rem 0;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .all_news .item_new .news_content--para {
    line-height: 1.8rem;
  }
}
.all_news .item_new .news_content--link,
.all_news .item_new .news_content--link:link,
.all_news .item_new .news_content--link:visited {
  background: transparent;
  font-size: 1.8rem;
  color: #3c4cff;
  font-weight: 600;
  line-height: 3rem;
  border: 0.2rem solid #3c4cff;
  cursor: pointer;
}
@media only screen and (max-width: 56.25em) {
  .all_news .item_new .news_content--link,
  .all_news .item_new .news_content--link:link,
  .all_news .item_new .news_content--link:visited {
    padding: 1rem 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .all_news .item_new .news_content--link,
  .all_news .item_new .news_content--link:link,
  .all_news .item_new .news_content--link:visited {
    padding: 1rem 4rem;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 25em) {
  .all_news .item_new .news_content--link,
  .all_news .item_new .news_content--link:link,
  .all_news .item_new .news_content--link:visited {
    padding: 0.51rem 3rem;
  }
}
.all_news .item_new .news_content--link:hover {
  background: #3c4cff;
  color: white;
}
.new_details--head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 6rem 0 4rem 0;
}
.new_details--head .new-heading {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #333;
  letter-spacing: -0.2rem;
}
.new_details--head .new-date {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #555;
}
.container_Info {
  display: flex;
  gap: 6rem;
  align-items: center;
  margin: 4rem 0 2rem 0;
}
@media only screen and (max-width: 75em) {
  .container_Info {
    gap: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .container_Info {
    flex-direction: column;
    gap: 6rem;
  }
}
.container_Info .info_title {
  font-size: 3.2rem;
  color: #333;
  font-weight: 700;
}
.container_Info .info_desc {
  font-size: 2rem;
  font-weight: 400;
  color: #333;
}
.container_Info .info_line {
  border-bottom: 0.2rem solid #ebecfb;
  margin: 4rem 0;
}
.container_Info .info_location {
  display: flex;
  gap: 3rem;
  margin: 2rem 0;
  align-items: center;
}
.container_Info .info_location--icon {
  font-size: 4rem;
  color: #3c4cff;
}
.container_Info .info_location--desc .head {
  font-size: 2rem;
}
.container_Info .info_location--desc .address {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
}
.container_Info .form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #d6d6d6;
  width: 100%;
  padding: 4rem;
  border-radius: 1rem;
}
.container_Info .form_heading {
  font-size: 2.8rem;
  color: #333;
  font-weight: 700;
  line-height: 3.4rem;
  margin-bottom: 2rem;
}
.container_Info .form_inputs {
  display: flex;
  flex-direction: column;
}
.container_Info .form .submit-btn,
.container_Info .form .submit-btn:link,
.container_Info .form .submit-btn:visited {
  background-color: #333;
  color: white;
  padding: 2rem 0;
  outline: none;
  border: none;
  border-radius: 1rem;
  font-size: 1.8rem;
  margin-top: 2rem;
  cursor: pointer;
  transition: all 0.2s;
}
.container_Info .form .submit-btn:hover {
  background-color: #555;
}
.maps {
  margin: 4rem 0;
}
@media only screen and (max-width: 37.5em) {
  .maps {
    margin: 8rem 0 4rem 0;
  }
}
.maps_title {
  font-size: 3.2rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 2rem;
}
.maps iframe {
  width: 100%;
  height: 40rem;
  border: none;
  border-radius: 1rem;
}
.small-title {
  font-size: 3.2rem;
  color: #333;
  font-weight: 700;
  margin-top: 6rem;
}
.sevices_boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6rem 2rem;
  margin: 6rem 0;
}
@media only screen and (max-width: 37.5em) {
  .sevices_boxes {
    grid-template-columns: 1fr;
  }
}
.sevices_boxes-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sevices_boxes-box .sevices_image {
  width: 100%;
  border-radius: 1rem;
}
.sevices_boxes-box .sevices_title,
.sevices_boxes-box .sevices_title:link,
.sevices_boxes-box .sevices_title:visited {
  font-size: 3.2rem;
  color: #3c4cff;
  font-weight: 600;
  line-height: 3rem;
  cursor: pointer;
}
.sevices_boxes-box .sevices_title:hover {
  color: #23267e;
}
.service_details--head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 6rem 0 4rem 0;
}
.service_details--head .service-heading {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #333;
  letter-spacing: -0.2rem;
  margin-left: 4rem;
}
.join_content {
  margin: 4rem 0;
  display: flex;
}
.join_content--img {
  width: 50%;
  border-radius: 0.51rem 0rem 0rem 0.51rem;
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .join_content--img {
    display: none;
  }
}
.join_content--form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  border-radius: 0rem 0.51rem 0.51rem 0rem;
  background: #d6d6d6;
  padding: 8rem 6rem;
}
@media only screen and (max-width: 75em) {
  .join_content--form {
    border-radius: 0.51rem;
  }
}
.join_content--form .inputs {
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .join_content--form .inputs {
    flex-direction: column;
  }
}
.join_content--form .inputs .input {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.join_content--form .inputs .input .input_phone_number {
  padding: 1.4rem 0 1.4rem 4.5rem;
  border: none;
  border-radius: 0.8rem;
  outline: none;
}
.join_content--form .inputs .input select {
  background: white;
  border: none;
  width: 100%;
}
.join_content--form .inputs .flex--end {
  display: flex;
  align-items: end;
  flex-basis: 100%;
}
.join_content--form .inputs .flex--end .Custombutton {
  background-color: #333;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: all 0.2s;
}
.join_content--form .inputs .flex--end .Custombutton:hover {
  background-color: #555;
}
.join_content--form .inputs .flex--end .hide-input {
  display: none;
}
.join_content--form .submit-btn,
.join_content--form .submit-btn:link,
.join_content--form .submit-btn:visited {
  background-color: #333;
  color: white;
  padding: 2rem 0;
  outline: none;
  border: none;
  border-radius: 1rem;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.2s;
}
.join_content--form .submit-btn:hover {
  background-color: #555;
}
.rate_content {
  margin: 4rem 0;
  display: flex;
}
.rate_content--img {
  width: 50%;
  border-radius: 0.51rem 0rem 0rem 0.51rem;
}
@media only screen and (max-width: 37.5em) {
  .rate_content--img {
    display: none;
  }
}
.rate_content--form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  border-radius: 0rem 0.51rem 0.51rem 0rem;
  background: #d6d6d6;
  padding: 8rem 6rem;
}
@media only screen and (max-width: 75em) {
  .rate_content--form {
    border-radius: 0.51rem;
  }
}
.rate_content--form .inputs {
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 75em) {
  .rate_content--form .inputs {
    flex-direction: column;
  }
}
.rate_content--form .inputs .input {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.rate_content--form .inputs .input .input_phone_number {
  padding: 1.4rem 0 1.4rem 2rem;
  border: none;
  border-radius: 0.8rem;
  outline: none;
  width: 100%;
}
@media only screen and (max-width: 75em) {
  .rate_content--form .inputs .input .input_phone_number {
    padding-left: 6rem;
  }
}
@media only screen and (max-width: 25em) {
  .rate_content--form .inputs .input .input_phone_number {
    padding-left: 8rem;
  }
}
.rate_content--form .inputs .input select {
  background: white;
  border: none;
  width: 100%;
}
.rate_content--form .inputs .input .dropdown_service {
  background: white;
  color: #555;
}
.rate_content--form .inputs .flex--end {
  display: flex;
  align-items: end;
  flex-basis: 100%;
}
.rate_content--form .inputs .flex--end .Custombutton {
  background-color: #3c4cff;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
.rate_content--form .inputs .flex--end .hide-input {
  display: none;
}
.rate_content--form .submit-btn,
.rate_content--form .submit-btn:link,
.rate_content--form .submit-btn:visited {
  background-color: #333;
  color: white;
  padding: 2rem 0;
  outline: none;
  border: none;
  border-radius: 1rem;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.2s;
}
.rate_content--form .submit-btn:hover {
  background-color: #555;
}
.rate_content .input_textarea {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.courses_boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6rem 2rem;
  margin: 12rem 0;
}
@media only screen and (max-width: 75em) {
  .courses_boxes {
    gap: 4rem 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .courses_boxes {
    gap: 4rem 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .courses_boxes {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 25em) {
  .courses_boxes {
    grid-template-columns: 1fr;
  }
}
.courses_boxes--box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  box-shadow: 0.4rem 0.4rem 9.4rem rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
@media only screen and (max-width: 25em) {
  .courses_boxes--box {
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 56.25em) {
  .courses_boxes--box {
    gap: 0.6rem;
  }
}
.courses_boxes--box .course_image {
  width: 100%;
}
.courses_boxes--box .course_title {
  padding-left: 2rem;
  color: #333;
  font-size: 3.4rem;
  font-weight: 700;
}
@media only screen and (max-width: 56.25em) {
  .courses_boxes--box .course_title {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .courses_boxes--box .course_title {
    font-size: 2.8rem;
    margin: 0.6rem 0;
  }
}
@media only screen and (max-width: 25em) {
  .courses_boxes--box .course_title {
    font-size: 3.4rem;
    margin: 1rem 0;
  }
}
.courses_boxes--box .course_para {
  padding: 0 2rem;
  color: #555;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.7rem;
  margin: 1rem 0;
}
@media only screen and (max-width: 56.25em) {
  .courses_boxes--box .course_para {
    margin: 0;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 25em) {
  .courses_boxes--box .course_para {
    font-size: 2rem;
    margin: 1rem 0 2rem 0;
    line-height: 3rem;
  }
}
.courses_boxes--box .course_size {
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}
.courses_boxes--box .course_size .size-txt {
  margin-top: 0.6rem;
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
}
@media only screen and (max-width: 56.25em) {
  .courses_boxes--box .course_size .size-txt {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 25em) {
  .courses_boxes--box .course_size .size-txt {
    font-size: 2rem;
  }
}
.courses_boxes--box .course_button,
.courses_boxes--box .course_button:link,
.courses_boxes--box .course_button:visited {
  font-size: 2rem;
  color: white;
  cursor: pointer;
  display: block;
  text-align: center;
  background: #3c4cff;
  padding: 2rem 0;
  border-radius: 0 0 1rem 1rem;
  border: 2px #3c4cff solid;
}
@media only screen and (max-width: 56.25em) {
  .courses_boxes--box .course_button,
  .courses_boxes--box .course_button:link,
  .courses_boxes--box .course_button:visited {
    padding: 1.4rem 0;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 25em) {
  .courses_boxes--box .course_button,
  .courses_boxes--box .course_button:link,
  .courses_boxes--box .course_button:visited {
    padding: 1.4rem 0;
    font-size: 2rem;
  }
}
.courses_boxes--box .course_button:hover {
  background: #23267e;
}
.course_details--head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 6rem 0 4rem 0;
}
.course_details--head .course-heading {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #333;
  letter-spacing: -0.2rem;
  margin-left: 4rem;
}
.course_details .course-btn,
.course_details .course-btn:link,
.course_details .course-btn:visited {
  background-color: #3c4cff;
  color: white;
  padding: 2rem 4rem;
  outline: none;
  border: none;
  border-radius: 1rem;
  font-size: 1.8rem;
  margin: 4rem 0 4rem 0;
  display: inline-block;
  cursor: pointer;
}
.course_details .course-btn:hover {
  background-color: #23267e;
}
.register_content {
  margin: 4rem 0;
  display: flex;
}
.register_content--img {
  width: 50%;
  border-radius: 0.51rem 0rem 0rem 0.51rem;
}
@media only screen and (max-width: 37.5em) {
  .register_content--img {
    display: none;
  }
}
.register_content--form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  border-radius: 0rem 0.51rem 0.51rem 0rem;
  background: #d6d6d6;
  padding: 8rem 6rem;
}
@media only screen and (max-width: 75em) {
  .register_content--form {
    border-radius: 0.51rem;
  }
}
.register_content--form .inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.register_content--form .inputs .input {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.register_content--form .inputs .input .input_phone_number {
  padding: 1.4rem 0 1.4rem 2rem;
  border: none;
  border-radius: 0.8rem;
  outline: none;
  width: 100%;
}
@media only screen and (max-width: 75em) {
  .register_content--form .inputs .input .input_phone_number {
    padding-left: 6rem;
  }
}
@media only screen and (max-width: 25em) {
  .register_content--form .inputs .input .input_phone_number {
    padding-left: 8rem;
  }
}
.register_content--form .inputs .input select {
  background: white;
  border: none;
  width: 100%;
}
.register_content--form .submit-btn,
.register_content--form .submit-btn:link,
.register_content--form .submit-btn:visited {
  background-color: #333;
  color: white;
  padding: 2rem 0;
  outline: none;
  border: none;
  border-radius: 1rem;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.2s;
}
.register_content--form .submit-btn:hover {
  background-color: #555;
}
.trainig_options {
  margin: 4rem 0;
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 18.75em) {
  .trainig_options {
    flex-direction: column;
  }
}
.trainig_options--btn_custome,
.trainig_options--btn_custome:link,
.trainig_options--btn_custome:visited {
  font-size: 2rem;
  padding: 2rem 4rem;
  border: 0.2rem solid #3c4cff;
  color: #3c4cff;
  border-radius: 5rem;
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .trainig_options--btn_custome,
  .trainig_options--btn_custome:link,
  .trainig_options--btn_custome:visited {
    padding: 1.5rem 3rem;
  }
}
.trainig_options--btn_custome:hover {
  background: #3c4cff;
  color: white;
}
.trainig_options .training_dropdown {
  display: inline-block;
  position: relative;
  text-align: center;
}
.btn_public:hover .trainig_options .training_dropdown--content {
  display: block;
}
.trainig_options .training_dropdown--content {
  display: none;
  position: absolute;
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.4);
}
.trainig_options .training_dropdown--content .public_option {
  display: block;
  color: #000000;
  padding: 0.5rem;
  text-decoration: none;
}
.trainig_options .training_dropdown--content .public_option:hover {
  color: #ffffff;
  background-color: #00a4bd;
}
.staff_Details {
  display: flex;
  align-items: start;
  gap: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .staff_Details {
    flex-direction: column;
  }
}
.staff_Details--content .name_heading {
  font-size: 5.4rem;
  font-weight: 800;
  color: #3c4cff;
  line-height: 6rem;
}
@media only screen and (max-width: 75em) {
  .staff_Details--content .name_heading {
    font-size: 4.8rem;
  }
}
.staff_Details--content .type_job {
  font-size: 3.4rem;
  font-weight: 600;
  color: #97afff;
  margin-bottom: 2rem;
}
.staff_Details--content .descreption {
  font-size: 2rem;
  font-weight: 400;
  color: #333;
}
@media only screen and (max-width: 25em) {
  .staff_Details--content .descreption {
    padding-right: 2rem;
  }
}
.customeTraining_content {
  margin: 4rem 0;
  display: flex;
}
.customeTraining_content--img {
  width: 50%;
  border-radius: 0.51rem 0rem 0rem 0.51rem;
}
@media only screen and (max-width: 37.5em) {
  .customeTraining_content--img {
    display: none;
  }
}
.customeTraining_content--form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  border-radius: 0rem 0.51rem 0.51rem 0rem;
  background: #d6d6d6;
  padding: 8rem 6rem;
}
@media only screen and (max-width: 75em) {
  .customeTraining_content--form {
    border-radius: 0.51rem;
  }
}
.customeTraining_content--form .inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.customeTraining_content--form .inputs .input {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.customeTraining_content--form .inputs .input .input_phone_number {
  padding: 1.4rem 0 1.4rem 2rem;
  border: none;
  border-radius: 0.8rem;
  outline: none;
  width: 100%;
}
@media only screen and (max-width: 75em) {
  .customeTraining_content--form .inputs .input .input_phone_number {
    padding-left: 6rem;
  }
}
@media only screen and (max-width: 25em) {
  .customeTraining_content--form .inputs .input .input_phone_number {
    padding-left: 8rem;
  }
}
.customeTraining_content--form .inputs .input select {
  background: white;
  border: none;
  width: 100%;
}
.customeTraining_content--form .submit-btn,
.customeTraining_content--form .submit-btn:link,
.customeTraining_content--form .submit-btn:visited {
  background-color: #333;
  color: white;
  padding: 2rem 0;
  outline: none;
  border: none;
  border-radius: 1rem;
  font-size: 1.8rem;
  cursor: pointer;
}
.customeTraining_content--form .submit-btn:hover {
  background-color: #555;
}
