@font-face {
  font-family: 'biko-bold';
  src: url("../assets/fonts/Biko_Bold.otf");
}

@font-face {
  font-family: 'biko-regular';
  src: url("../assets/fonts/Biko_Regular.otf");
}

body {
  font-family: 'biko-regular';
  margin: 0;
  padding: 0;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

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

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

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

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

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

@media screen and (max-width: 450px) {
  .mb-35 {
    margin-bottom: 27px;
  }
}

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

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

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

.page-title {
  font-size: 60px;
  font-family: 'biko-bold';
  color: white;
}

@media screen and (max-width: 1400px) {
  .page-title {
    font-size: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .page-title {
    font-size: 40px;
  }
}

@media screen and (max-width: 450px) {
  .page-title {
    font-size: 26px;
  }
}

.page-desc {
  font-size: 18px;
  font-family: 'biko-regular';
  color: #95a1be;
}

@media screen and (max-width: 450px) {
  .page-desc {
    font-size: 14px;
  }
}

.section-title-lg {
  font-size: 45px;
  font-family: 'biko-bold';
  color: #0f1c3d;
}

@media screen and (max-width: 450px) {
  .section-title-lg {
    font-size: 24px;
  }
}

.section-title {
  font-size: 34px;
  font-family: 'biko-bold';
  color: #0f1c3d;
}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 450px) {
  .section-title {
    font-size: 24px;
  }
}

.section-subtitle {
  font-size: 24px;
  font-family: 'biko-bold';
  color: #0f1c3d;
}

@media screen and (max-width: 450px) {
  .section-subtitle {
    font-size: 20px;
  }
}

.section-subtitle-sm {
  font-size: 20px;
  font-family: 'biko-bold';
  color: #0f1c3d;
}

@media screen and (max-width: 450px) {
  .section-subtitle-sm {
    font-size: 20px;
  }
}

.section-desc {
  font-size: 16px;
  font-family: 'biko-regular';
  color: #60687d;
}

@media screen and (max-width: 450px) {
  .section-desc {
    font-size: 14px;
  }
}

.primary-btn {
  font-size: 16px;
  font-family: 'biko-bold';
  background-color: #5228fc;
  padding: 17px 58px;
  border-radius: 10px;
  color: white;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.primary-btn:hover {
  background-color: white;
  color: #5228fc;
  -webkit-box-shadow: 0 0.6rem 1rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.6rem 1rem rgba(0, 0, 0, 0.075) !important;
  -webkit-transform: scaleX(1.05);
          transform: scaleX(1.05);
}

@media screen and (max-width: 450px) {
  .primary-btn {
    font-size: 12px;
  }
}

.underline-start {
  position: relative;
}

.underline-start::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 55px;
  height: 5px;
  border-radius: 4.5px;
  background-color: #3b69db;
}

.underline-lg-start {
  position: relative;
}

.underline-lg-start::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 55px;
  height: 5px;
  border-radius: 4.5px;
  background-color: #3b69db;
}

@media screen and (max-width: 992px) {
  .underline-lg-start::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.underline-center {
  position: relative;
}

.underline-center::after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -22px;
  width: 55px;
  height: 5px;
  border-radius: 4.5px;
  background-color: #3b69db;
}

.header-nav {
  position: fixed;
  background-color: #0c0c6d;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-nav .navbar-toggler {
  border: 0;
  width: 22px;
  height: 16px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.header-nav .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header-nav .navbar-toggler:hover span:nth-child(3) {
  width: 100%;
  margin-left: 0;
}

.header-nav .navbar span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.header-nav .navbar span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.header-nav .navbar span:nth-child(2) {
  top: 6px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.header-nav .navbar span:nth-child(3) {
  top: 13px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  width: 70%;
  margin-left: 30%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-nav .navbar [aria-expanded='true'] span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -2px;
  left: 3px;
}

.header-nav .navbar [aria-expanded='true'] span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.header-nav .navbar [aria-expanded='true'] span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 14px;
  left: 3px;
  width: 100%;
  margin-left: 0;
}

.header-nav .navbar-brand {
  padding: 0;
}

.header-nav .navbar-brand img {
  width: 140px;
}

@media screen and (max-width: 1200px) {
  .header-nav .navbar-brand img {
    width: 130px;
  }
}

@media screen and (max-width: 992px) {
  .header-nav .navbar-brand img {
    width: 110px;
  }
}

.header-nav .navbar-nav .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 15px;
  -webkit-transition: padding 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out;
}

.header-nav .navbar-nav .nav-link {
  color: #95a1be;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.header-nav .navbar-nav .nav-link:hover {
  color: white;
}

.header-nav .navbar-nav .active {
  position: relative;
  padding-left: 15px;
}

.header-nav .navbar-nav .active a {
  color: white;
}

.header-nav .navbar-nav .active::before {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #359bf8;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -15px;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px !important;
  }
}

@media screen and (max-width: 375px) {
  .container {
    padding: 0 10px !important;
  }
}

main {
  width: 100%;
  overflow: hidden;
}

.hero {
  position: relative;
  background-color: #0c0c6d;
  padding: 200px 0 110px;
  width: 100%;
}

@media screen and (max-width: 992px) {
  .hero {
    padding: 125px 0 75px;
  }
}

.hero > .container {
  position: relative;
  z-index: 10;
}

.hero-img {
  width: 100%;
}

.hero-border-bottom {
  position: absolute;
  width: 103%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-51%, 55%);
          transform: translate(-51%, 55%);
  z-index: 1;
}

@media screen and (max-width: 450px) {
  .hero-border-bottom {
    bottom: 22%;
    width: 500%;
  }
}

.hero .circle-filled-1 {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: 20vw;
  max-width: 354px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  z-index: 100;
}

.hero .circle-alt-1 {
  position: absolute;
  right: 10%;
  top: 40%;
  width: 7vw;
  max-width: 84px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

@media screen and (max-width: 992px) {
  .hero .circle-alt-1 {
    right: 5%;
    top: 50%;
  }
}

.hero .circle-filled-2 {
  position: absolute;
  left: 35%;
  bottom: 22%;
  width: 10vw;
  max-width: 48px;
  z-index: 100;
}

@media screen and (max-width: 992px) {
  .hero .circle-filled-2 {
    left: 75%;
    bottom: 55%;
  }
}

.hero .circle-alt-2 {
  position: absolute;
  left: 42%;
  bottom: 10%;
  width: 6vw;
  max-width: 28px;
  z-index: 100;
}

@media screen and (max-width: 992px) {
  .hero .circle-alt-2 {
    left: 5%;
    bottom: 50%;
  }
}

.whoweare {
  margin-top: 200px;
  padding-top: 150px;
}

@media screen and (max-width: 992px) {
  .whoweare {
    margin-top: 75px;
  }
}

@media screen and (max-width: 375px) {
  .whoweare {
    margin-top: 40px;
  }
}

.services {
  background: #f2f7ff;
  padding: 86px 0 95px;
}

.services header .section-desc {
  width: 666px;
  max-width: 100%;
}

.services__cards {
  max-width: 1173px;
  margin: 0 auto;
  overflow: visible;
}

.services__card {
  width: 363px;
  max-width: 100%;
  background-color: white;
  border-radius: 10px;
  padding: 61px 45px 71px;
  margin-bottom: 20px;
  -webkit-transition: all 500ms cubic-bezier(0.66, 1.6, 0.75, 1.6);
  transition: all 500ms cubic-bezier(0.66, 1.6, 0.75, 1.6);
}

.services__card img {
  width: 97px;
}

@media screen and (max-width: 450px) {
  .services__card img {
    width: 59px;
  }
}

.services__card:hover {
  -webkit-box-shadow: 0px 10px 30px rgba(109, 133, 218, 0.25);
          box-shadow: 0px 10px 30px rgba(109, 133, 218, 0.25);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

@media screen and (max-width: 450px) {
  .services__card {
    padding: 26px 35px 30px;
  }
}

.experience {
  position: relative;
  padding: 170px 0 120px;
}

@media screen and (max-width: 450px) {
  .experience {
    padding: 51px 0 42px;
  }
}

.experience::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 30%;
  background-color: #5228fc;
  z-index: -1;
}

@media screen and (max-width: 992px) {
  .experience::before {
    height: 35%;
    width: 100%;
  }
}

.experience__card {
  position: relative;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 50px rgba(190, 200, 235, 0.25);
          box-shadow: 0px 10px 50px rgba(190, 200, 235, 0.25);
  border-radius: 10px;
  z-index: 10;
  padding: 62px 65px;
}

.experience__card img {
  width: 97px;
  position: absolute;
  right: 10%;
  top: -35px;
}

@media screen and (max-width: 450px) {
  .experience__card {
    padding: 40px 30px;
  }
}

.experience__img {
  width: 578px;
  max-width: 75%;
}

.dynamic {
  position: relative;
  padding: 170px 0 120px;
}

@media screen and (max-width: 450px) {
  .dynamic {
    padding: 51px 0 42px;
  }
}

.dynamic::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 40%;
  width: 25%;
  background-color: #f2f7ff;
  z-index: -1;
}

@media screen and (max-width: 992px) {
  .dynamic::before {
    right: 0;
    top: 65%;
    height: 35%;
    width: 100%;
  }
}

.dynamic__card {
  position: relative;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 50px rgba(190, 200, 235, 0.25);
          box-shadow: 0px 10px 50px rgba(190, 200, 235, 0.25);
  border-radius: 10px;
  z-index: 10;
  padding: 62px 65px;
}

.dynamic__card img {
  width: 97px;
  position: absolute;
  left: 10%;
  bottom: -35px;
}

@media screen and (max-width: 450px) {
  .dynamic__card {
    padding: 40px 30px;
  }
}

.dynamic__img {
  width: 578px;
  max-width: 75%;
}

.dedicated {
  position: relative;
  padding: 170px 0 0;
}

@media screen and (max-width: 450px) {
  .dedicated {
    padding: 51px 0 0;
  }
}

.dedicated::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 40%;
  width: 25%;
  background-color: #f2f7ff;
  z-index: -1;
}

@media screen and (max-width: 992px) {
  .dedicated::before {
    right: 0;
    top: 65%;
    height: 35%;
    width: 100%;
  }
}

.dedicated__card {
  position: relative;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 50px rgba(190, 200, 235, 0.25);
          box-shadow: 0px 10px 50px rgba(190, 200, 235, 0.25);
  border-radius: 10px;
  z-index: 10;
  padding: 62px 65px;
}

.dedicated__card img {
  width: 97px;
  position: absolute;
  right: -70px;
  top: 10%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (max-width: 450px) {
  .dedicated__card {
    padding: 40px 30px;
  }
}

.dedicated__img {
  width: 578px;
  max-width: 75%;
}

.jointeam {
  position: relative;
  background: #0c0c6d;
  padding: 114px 0;
}

@media screen and (max-width: 450px) {
  .jointeam {
    padding: 70px 0;
  }
}

.jointeam > .container {
  position: relative;
  z-index: 10;
}

.jointeam:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../assets/images/join-team-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.form-container {
  padding: 92px 0;
  position: relative;
  background-color: #f2f7ff;
}

.form-container > .container {
  position: relative;
  z-index: 10;
}

.form-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44%;
  height: 100%;
  background-color: #5228fc;
}

@media screen and (max-width: 1600px) {
  .form-container::before {
    width: 43%;
  }
}

@media screen and (max-width: 992px) {
  .form-container::before {
    height: 46%;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .form-container::before {
    height: 40%;
  }
}

@media screen and (max-width: 550px) {
  .form-container::before {
    height: 38%;
  }
}

@media screen and (max-width: 450px) {
  .form-container::before {
    height: 35%;
  }
}

@media screen and (max-width: 380px) {
  .form-container::before {
    height: 32%;
  }
}

.form-container .post-image {
  width: 641px;
  max-width: 100%;
}

.form-container-form {
  width: 641px;
  max-width: 100%;
}

.form-container form .form-control {
  background: #ffffff !important;
  border-radius: 10px;
  padding: 21px 29px 26px;
  border: none;
  font-size: 16px;
  font-family: "biko-regular";
  color: #0f1c3d;
}

.form-container form .form-control:-webkit-autofill, .form-container form .form-control:-webkit-autofill:hover, .form-container form .form-control:-webkit-autofill:focus, .form-container form .form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 40px white inset !important;
}

.form-container form .form-control::-webkit-input-placeholder {
  color: #95a1be;
}

.form-container form .form-control:-ms-input-placeholder {
  color: #95a1be;
}

.form-container form .form-control::-ms-input-placeholder {
  color: #95a1be;
}

.form-container form .form-control::placeholder {
  color: #95a1be;
}

.form-container form .form-control:focus {
  background: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-shadow: 0px 10px 30px rgba(109, 133, 218, 0.25);
          box-shadow: 0px 10px 30px rgba(109, 133, 218, 0.25);
}

.ourteam {
  padding-top: 120px;
  padding-bottom: 150px;
}

@media screen and (max-width: 992px) {
  .ourteam {
    padding-top: 150px;
  }
}

@media screen and (max-width: 450px) {
  .ourteam {
    padding: 53px 0 80px;
  }
}

.ourteam__card {
  background: #f2f7ff;
  border-radius: 10px;
  padding: 60px 0;
  width: 332px;
  max-width: 100%;
  -webkit-transition: all 500ms cubic-bezier(0.66, 1.6, 0.75, 1.6);
  transition: all 500ms cubic-bezier(0.66, 1.6, 0.75, 1.6);
}

.ourteam__card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.ourteam .swiper {
  padding: 15px 0 0;
}

.ourteam .swiper-button {
  margin-top: 35px;
}

.ourteam .swiper-button-next, .ourteam .swiper-button-prev {
  width: 42px;
}

.ourteam .swiper-button-next::after, .ourteam .swiper-button-prev::after {
  display: none;
}

.ourteam .swiper-button-prev {
  left: calc(50% + -50px);
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.ourteam .swiper-button-next {
  left: calc(50% + 5px);
}

.ourteam .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer {
  padding: 36px 0 92px;
  background-color: white;
}

@media screen and (max-width: 450px) {
  .footer {
    padding: 25px 0;
  }
}

.footer > .container {
  max-width: 1367px;
  margin: 0 auto;
}

.footer .social-icon {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background-color: #ebf0fb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

.footer .social-icon svg {
  fill: #0c0c6d;
}

.footer .social-icon:hover {
  background-color: #3b69db;
}

.footer .social-icon:hover svg {
  fill: #fff;
}

.footer__left {
  width: 445px;
  max-width: 100%;
}

.footer__right {
  width: 450px;
  max-width: 100%;
}
/*# sourceMappingURL=index.css.map */