@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-top: 66px;
}

.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;
}

.rounded-5 {
  border-radius: 1rem;
}

.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: #b50306;
}

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

.section-title {
  font-size: 34px;
  font-family: "biko-bold";
  color: #b50306;
}

@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: #b50306;
}

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

.section-subtitle-sm {
  font-size: 20px;
  font-family: "biko-bold";
  color: #b50306;
}

@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: #b50306;
  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: #b50306;
  -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;
  }
}

.primary-btn:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(181, 3, 6, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(181, 3, 6, 0.25);
}

.underline-start {
  position: relative;
}

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

.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: #b50306;
}

@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: #b50306;
}

.header-nav {
  position: fixed;
  background-color: #ffffff;
  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: #e70407;
  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: 15px;
  left: 3px;
  width: 100%;
  margin-left: 0;
}

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

.header-nav .navbar-brand img {
  height: 50px;
}

.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: #222222;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

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

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

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

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

.dynamic__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ranking {
  background-color: #f2f7ff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.ranking .btn-search {
  padding: 10px 25px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}

.ranking .btn-search:hover {
  background: #a51724;
  color: white;
}

.ranking__continer {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
}

@media (max-width: 575px) {
  .ranking__continer {
    padding: 6px;
  }
}

.ranking__list {
  list-style: none;
  margin-bottom: 60px;
  padding-left: 0;
}

.ranking__list-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

@media (max-width: 1200px) {
  .ranking__list-header {
    margin-bottom: 28px;
  }
}

@media (max-width: 450px) {
  .ranking__list-header {
    gap: 7px;
  }
}

.ranking__list-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

@media (max-width: 1200px) {
  .ranking__list-user {
    margin-inline: auto;
  }
}

@media (max-width: 450px) {
  .ranking__list-user {
    gap: 7px;
  }
}

.ranking__list-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.ranking__list-id, .ranking__list-username {
  margin-bottom: 0;
  color: #60687d;
  font-size: 16px;
}

.ranking__list-number {
  background-color: #50555a;
  width: 40px;
  height: 40px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "biko-bold";
  color: white;
  font-size: 20px;
  margin-bottom: 0;
}

.ranking__list-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid #95a1be;
}

.ranking__list-item:nth-child(1) .ranking__list-number {
  background-color: #a51724;
}

.ranking__list-item:nth-child(2) .ranking__list-number {
  background-color: #da9e3b;
}

.ranking__list-item:nth-child(3) .ranking__list-number {
  background-color: #ae7441;
}

.ranking__list--search {
  padding-left: 0;
}

.ranking__list--search .ranking__list-item {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ranking__list--search .ranking__list-number {
  background-color: #1cad8e !important;
}

.ranking__questions {
  list-style: none;
  text-align: center;
  color: #60687d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding-right: 15px;
}

.ranking__question-title {
  margin-bottom: 8px;
}

.ranking__question-number {
  margin-bottom: 0;
  font-family: "biko-bold";
  font-size: 24px;
}

.ranking__filter-btns .btn-filter {
  font-size: 16px;
  font-family: "biko-bold";
  background-color: #b50306;
  padding: 11px 25px;
  border-radius: 0;
  color: white;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-transform: uppercase;
}

.ranking__filter-btns .btn-filter:hover {
  background-color: white;
  color: #b50306;
}

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

.ranking__filter-btns .btn-filter:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ranking__filter-btns .btn-filter:nth-child(1) {
  border-radius: 10px 0 0 10px;
}

.ranking__filter-btns .btn-filter:last-child {
  border-radius: 0 10px 10px 0;
}

.ranking__filter-btns .active {
  background-color: white;
  color: #b50306;
}

.ranking--single .ranking__list-header {
  margin-bottom: 0;
}

.ranking--single .ranking__questions li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.ranking--single .ranking__questions li p {
  margin-bottom: 0;
}

@media (max-width: 450px) {
  .ranking--single .ranking__questions li {
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .ranking--single .ranking__questions li {
    display: block;
  }
}

.ranking .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #a51724;
}

@media (max-width: 991px) {
  .ranking__filter-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .ranking__filter-btns .btn {
    width: 25%;
    padding-left: 0;
    padding-right: 0;
    height: 48px;
    display: -ms-grid;
    display: grid;
    place-items: center;
  }
}

.container {
  padding: 0 10px !important;
}

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

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

.hero {
  width: 100%;
  height: calc(100vh - 66px);
}

.hero .swiper {
  height: calc(100vh - 66px);
}

.hero .swiper-sldie {
  position: relative;
}

.hero .swiper .hero-toggle-audio {
  position: absolute;
  right: 40px;
  top: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid white;
  z-index: 100;
  width: 45px;
  height: 45px;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.hero .swiper .hero-toggle-audio svg {
  width: 30px;
}

.hero .swiper .hero-toggle-audio .bi-volume-mute {
  display: none;
}

.hero .swiper .unmute-video .bi-volume-up {
  display: none;
}

.hero .swiper .unmute-video .bi-volume-mute {
  display: block;
}

.hero .swiper img,
.hero .swiper video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero .swiper-pagination-bullet {
  background-color: #ffffff;
}

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

@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 {
  max-width: 1113px;
}

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

.services__card {
  width: 100%;
  background-color: white;
  border-radius: 10px;
  padding: 40px 30px 50px;
  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;
  height: 97px;
  border-radius: 50%;
}

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

.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: #b50306;
  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__video {
  width: 100%;
}

.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%;
}

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

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

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

.trophies-section__card,
.ourteam__card {
  background: #faf5fe;
  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);
}

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

.trophies-section .swiper,
.ourteam .swiper {
  padding: 15px 0;
}

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

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

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

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

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

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

.trophies-section .swiper {
  padding: 30px 0;
}

.trophies-section .swiper-slide {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.trophies-section .swiper-slide-active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.trophies-section .swiper-button-disabled {
  opacity: 1;
}

.about {
  padding: 66px;
}

@media screen and (max-width: 768px) {
  .about {
    padding: 66px 20px;
  }
}

@media screen and (max-width: 575px) {
  .about {
    padding: 66px 12px;
  }
}

@media screen and (max-width: 375px) {
  .about {
    padding: 66px 0;
  }
}

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

.footer {
  padding: 60px 0;
  background-color: #faf5fe;
}

.footer .section-title {
  color: #b50306 !important;
}

.accordion-item {
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.125) !important;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  border: none !important;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a51724'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
/*# sourceMappingURL=index.css.map */