@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;
  }
}
/*# sourceMappingURL=global.css.map */