@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Raleway:wght@100..900&display=swap");
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.raleway-regular {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.raleway-medium {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.raleway-semibold {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.raleway-bold {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

body {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

.btn-style-1 {
  border: 2px solid #394ff3;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s;
}
.btn-style-1 div {
  width: 33.78px;
  height: 33.78px;
  border-radius: 50%;
  background-color: #394ff3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.btn-style-1:hover {
  background-color: #394ff3;
  color: #fff;
  transition: all 0.3s;
}
.btn-style-1:hover div {
  background-color: #fff;
  transition: all 0.3s;
}
.btn-style-1:hover div svg path {
  fill: #394ff3;
  transition: all 0.3s;
}

.btn-back {
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #d9d9d9;
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.btn-back:hover {
  background: #d9d9d9;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .btn-back {
    width: 100%;
    font-size: 16px;
  }
}

.btn-style-2 {
  display: flex;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #394ff3;
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.btn-style-2:hover {
  background: #394ff3;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .btn-style-2 {
    width: 100%;
    font-size: 16px;
  }
}

.breadcrumb ul {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.breadcrumb ul li {
  list-style: none;
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.breadcrumb ul li::after {
  content: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 6 12' fill='none'%3E%3Cpath d='M1.16458 1.07083L5.72812 5.62084C5.78228 5.675 5.82056 5.73368 5.84295 5.79688C5.8657 5.86007 5.87708 5.92778 5.87708 6C5.87708 6.07222 5.8657 6.13993 5.84295 6.20313C5.82056 6.26632 5.78228 6.325 5.72812 6.37917L1.16458 10.9427C1.03819 11.0691 0.880201 11.1323 0.690618 11.1323C0.501034 11.1323 0.338534 11.0646 0.203117 10.9292C0.0677009 10.7938 -7.58599e-06 10.6358 -7.5702e-06 10.4552C-7.55442e-06 10.2747 0.067701 10.1167 0.203117 9.98125L4.18437 6L0.203118 2.01875C0.0767296 1.89236 0.0135349 1.73672 0.0135349 1.55183C0.0135349 1.36658 0.0812434 1.20625 0.21666 1.07083C0.352076 0.935418 0.510063 0.867709 0.690618 0.867709C0.871174 0.867709 1.02916 0.935418 1.16458 1.07083Z' fill='white'/%3E%3C/svg%3E");
  margin: 0 8px;
}
.breadcrumb ul li:last-child::after {
  content: "";
}
.breadcrumb ul li a {
  text-decoration: none;
}

.profile-picture-dropdown {
  position: absolute;
  top: 55px;
  right: 0;
  width: 100%;
  max-width: 200px;
  min-height: 120px;
  display: none;
  transition: all 0.3s;
  z-index: 888;
}
.profile-picture-dropdown.active {
  display: block;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .profile-picture-dropdown {
    right: 12px;
  }
}
.profile-picture-dropdown .card {
  width: 100%;
  height: 100%;
  padding: 10px 9px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
}
.profile-picture-dropdown .card .card-body {
  border-bottom: 1px solid #979797;
  padding: 0;
  padding-bottom: 4px;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.profile-picture-dropdown .card .card-body .card-title {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.7px;
  margin-bottom: 0;
}
.profile-picture-dropdown .card .card-body .card-desc-1 {
  color: #817a7a;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.6px;
  margin-bottom: 0;
}
.profile-picture-dropdown .card .card-body .card-desc-2 {
  color: #817a7a;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.6px;
  margin-bottom: 0;
}
.profile-picture-dropdown .card .card-footer {
  padding: 0;
  padding-top: 14px;
  background-color: transparent;
}
.profile-picture-dropdown .card .card-footer .card-footer-menu {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.profile-picture-dropdown .card .card-footer .card-footer-menu .card-footer-menu-item {
  list-style: none;
}
.profile-picture-dropdown .card .card-footer .card-footer-menu .card-footer-menu-item .card-footer-menu-link {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  width: 100%;
  text-decoration: none;
  color: #414141;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.7px;
}
.profile-picture-dropdown .card .card-footer .card-footer-menu .card-footer-menu-item .card-footer-menu-link img {
  width: 16px;
  height: 16px;
}

.children-dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .children-dropdown {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .children-dropdown {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .children-dropdown-mb {
    display: flex;
    margin-right: 0;
    margin-top: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .children-dropdown-mb {
    display: none;
  }
}
.children-dropdown:active, .children-dropdown:focus, .children-dropdown:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}
.children-dropdown .dropdown-menu {
  min-width: 76px;
  transform: translate3d(0px, 58.2px, 0px) !important;
}
.children-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  outline: none;
  padding: 0;
}
.children-dropdown .dropdown-toggle:active, .children-dropdown .dropdown-toggle:focus, .children-dropdown .dropdown-toggle:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}
.children-dropdown .dropdown-toggle::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDI0IDEzIiBmaWxsPSJub25lIj4KICA8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfMjIwNV84MzcwKSI+CiAgICA8cGF0aCBkPSJNMTcuNDE5OCAyLjk1MTk5TDE4LjQ3OTggNC4wMTI5OUwxMi43MDI4IDkuNzkxOTlDMTIuNjEwMiA5Ljg4NTE0IDEyLjUwMDEgOS45NTkwNyAxMi4zNzg5IDEwLjAwOTVDMTIuMjU3NiAxMC4wNiAxMi4xMjc2IDEwLjA4NTkgMTEuOTk2MyAxMC4wODU5QzExLjg2NDkgMTAuMDg1OSAxMS43MzQ5IDEwLjA2IDExLjYxMzcgMTAuMDA5NUMxMS40OTI0IDkuOTU5MDcgMTEuMzgyMyA5Ljg4NTE0IDExLjI4OTggOS43OTE5OUw1LjUwOTc3IDQuMDEyOTlMNi41Njk3NyAyLjk1Mjk5TDExLjk5NDggOC4zNzY5OUwxNy40MTk4IDIuOTUxOTlaIiBmaWxsPSJibGFjayIvPgogIDwvZz4KICA8ZGVmcz4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcDBfMjIwNV84MzcwIj4KICAgICAgPHJlY3Qgd2lkdGg9IjEyIiBoZWlnaHQ9IjI0IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjQgMC41KSByb3RhdGUoOTApIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KPC9zdmc+");
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  border-top: 0;
}
.children-dropdown .dropdown-item {
  display: flex;
  align-items: center;
}
.children-dropdown .dropdown-item:active {
  background-color: #fff;
}
.children-dropdown button:focus, .children-dropdown button:focus-visible {
  outline: none;
  border: none;
}
.children-dropdown-inner {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.children-dropdown-avatar {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8e8e8;
  border-radius: 50%;
  overflow: hidden;
}
.children-dropdown-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.children-dropdown-avatar-inner {
  color: #777;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
}
.children-dropdown-name {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.8px;
  margin-left: 8px;
  margin-right: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.children-dropdown-dropdown {
  position: absolute;
  top: 56px;
  left: 0;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
  display: none;
  transition: all 0.3s;
}
.children-dropdown-dropdown.active {
  display: block;
  transition: all 0.3s;
}
.children-dropdown-dropdown-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.children-dropdown-dropdown-list-item {
  display: flex;
  align-items: center;
}
.children-dropdown-dropdown-avatar {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8e8e8;
  border-radius: 999px;
  overflow: hidden;
}
.children-dropdown-dropdown-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.children-dropdown-dropdown-avatar-inner {
  color: #777;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
}
.children-dropdown-dropdown-name {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0.8px;
  margin-left: 8px;
  max-width: 70%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.children-profiles {
  margin-top: 40px;
}
.children-profiles-container .row {
  row-gap: 24px;
}
.children-profiles-container .row .custom-radio-card {
  position: relative;
  display: block;
  cursor: pointer;
}
.children-profiles-container .row .custom-radio-card .card {
  height: 135px;
}
.children-profiles-container .row .custom-radio-card .card-section-left {
  width: 42%;
  height: 100%;
  position: relative;
  padding: 17.5px;
  border-radius: 12px 0px 0px 12px;
  border: 0.2px solid #838383;
  display: flex;
  justify-content: center;
  align-items: center;
}
.children-profiles-container .row .custom-radio-card .card-section-left .card-status-symbol {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 19px;
  height: 19px;
  border: 2px solid #394ff3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.children-profiles-container .row .custom-radio-card .card-section-left .card-status-symbol::after {
  content: "";
  position: relative;
  width: 11px;
  height: 11px;
  background-color: #394ff3;
  border-radius: 50%;
  display: none;
}
.children-profiles-container .row .custom-radio-card .card-section-left img {
  width: 90px;
  max-width: 90px;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.children-profiles-container .row .custom-radio-card .card-section-right {
  width: 58%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0px 12px 12px 0px;
  background: #394ff3;
  padding: 20px 18px 20px 10px;
}
.children-profiles-container .row .custom-radio-card .card-section-right-title {
  color: #fff;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 0.9px;
  margin-bottom: 0;
}
.children-profiles-container .row .custom-radio-card .card-section-right-subtitle {
  color: #fff;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.7px;
  margin-bottom: 0;
}
.children-profiles-container .row .custom-radio-card .card-section-right-desc {
  color: #ececec;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.7px;
  margin-bottom: 0;
}
.children-profiles-container .row .custom-radio-card input {
  position: absolute;
  opacity: 0;
}
.children-profiles-container .row .custom-radio-card input[type=radio]:checked + .card .card-status-symbol::after {
  display: block;
}
@media only screen and (min-width: 768px) {
  .children-profiles.parent-profile-children-profiles {
    display: none;
  }
}

.inner-navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 21px;
}
@media only screen and (max-width: 768px) {
  .inner-navigation {
    flex-wrap: wrap;
    row-gap: 32px;
  }
}
@media only screen and (max-width: 992px) {
  .inner-navigation .page-title {
    width: 60%;
  }
}
@media only screen and (max-width: 380px) {
  .inner-navigation .page-title {
    width: 71%;
  }
}
.inner-navigation .page-title a {
  display: flex;
  align-items: center;
  -moz-column-gap: 21px;
       column-gap: 21px;
  text-decoration: none;
}
@media only screen and (max-width: 992px) {
  .inner-navigation .page-title a {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
}
.inner-navigation .page-title img {
  width: 24px;
  height: 24px;
}
.inner-navigation .page-title h2 {
  color: #092BC8;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 1.2px;
  margin-bottom: 0;
}
@media only screen and (max-width: 380px) {
  .inner-navigation .page-title h2 {
    font-size: 22px;
  }
}
.inner-navigation .page-title .updated-date {
  margin-top: 12px;
}
.inner-navigation .page-title .updated-date span {
  color: #898989;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.9px;
}
.inner-navigation .page-controls {
  position: relative;
}
@media only screen and (max-width: 992px) {
  .inner-navigation .page-controls {
    margin-left: auto;
  }
}
.inner-navigation .page-controls select {
  min-width: 120px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 999px;
  background: #f5f5f5;
  padding: 10px 20px 10px 10px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.inner-navigation .page-controls select:focus-visible {
  border: none;
  outline: none;
}
.inner-navigation .page-controls::after {
  content: url("../icons/arrow-down.svg");
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.inner-navigation .share-icon {
  text-decoration: none;
  width: 80px;
}
.inner-navigation .share-icon img {
  width: 17px;
  height: 18.133px;
}
.inner-navigation .share-icon span {
  color: #838383;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 768px) {
  .inner-navigation .share-icon {
    width: 80px;
  }
}

.section-header {
  margin-bottom: 60px;
}
.section-header h2 {
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-bottom: 2px solid #394ff3;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .section-header h2 {
    font-size: 26px;
  }
}
.section-header p {
  color: #4c4c4c;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 1.2px;
}

.landing-navbar {
  padding: 16px 0;
}
@media only screen and (max-width: 992px) {
  .landing-navbar .container {
    padding: 0 16px;
  }
}
.landing-navbar .login-btn {
  width: 118px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #394ff3;
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.landing-navbar .navbar-nav {
  -moz-column-gap: 35px;
       column-gap: 35px;
}
@media only screen and (max-width: 992px) {
  .landing-navbar .navbar-toggler {
    padding: 0;
  }
}
.landing-navbar .navbar-toggler:focus {
  box-shadow: none;
}
@media only screen and (max-width: 992px) {
  .landing-navbar .navbar-collapse {
    order: 3;
  }
}
.landing-navbar .btn-group {
  order: 3;
}
@media only screen and (max-width: 992px) {
  .landing-navbar .btn-group {
    order: 1;
  }
}
.landing-navbar .nav-link {
  color: #000;
  font-size: 16px;
}
.landing-navbar .navbar-brand img {
  width: 175px;
}

.lang-dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-dropdown .dropdown:active, .lang-dropdown .dropdown:focus, .lang-dropdown .dropdown:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}
.lang-dropdown .dropdown-menu {
  min-width: 76px;
}
.lang-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  outline: none;
  padding-right: 0;
}
.lang-dropdown .dropdown-toggle:active, .lang-dropdown .dropdown-toggle:focus {
  border: none;
}
.lang-dropdown .dropdown-toggle::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDI0IDEzIiBmaWxsPSJub25lIj4KICA8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfMjIwNV84MzcwKSI+CiAgICA8cGF0aCBkPSJNMTcuNDE5OCAyLjk1MTk5TDE4LjQ3OTggNC4wMTI5OUwxMi43MDI4IDkuNzkxOTlDMTIuNjEwMiA5Ljg4NTE0IDEyLjUwMDEgOS45NTkwNyAxMi4zNzg5IDEwLjAwOTVDMTIuMjU3NiAxMC4wNiAxMi4xMjc2IDEwLjA4NTkgMTEuOTk2MyAxMC4wODU5QzExLjg2NDkgMTAuMDg1OSAxMS43MzQ5IDEwLjA2IDExLjYxMzcgMTAuMDA5NUMxMS40OTI0IDkuOTU5MDcgMTEuMzgyMyA5Ljg4NTE0IDExLjI4OTggOS43OTE5OUw1LjUwOTc3IDQuMDEyOTlMNi41Njk3NyAyLjk1Mjk5TDExLjk5NDggOC4zNzY5OUwxNy40MTk4IDIuOTUxOTlaIiBmaWxsPSJibGFjayIvPgogIDwvZz4KICA8ZGVmcz4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcDBfMjIwNV84MzcwIj4KICAgICAgPHJlY3Qgd2lkdGg9IjEyIiBoZWlnaHQ9IjI0IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjQgMC41KSByb3RhdGUoOTApIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KPC9zdmc+");
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  border-top: 0;
}
.lang-dropdown .dropdown-item {
  display: flex;
  align-items: center;
}
.lang-dropdown .dropdown-item:active {
  background-color: #fff !important;
  color: #000;
}
.lang-dropdown .flag-icon {
  width: 20px;
  height: 20px;
  overflow: hidden;
  margin-right: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-dropdown .flag-icon img {
  width: 100%;
  height: 100%;
}

.landing-header {
  width: 100%;
}
.landing-header .container-fluid {
  height: 100%;
  max-height: 600px;
  height: 600px;
  min-height: 600px;
  overflow: hidden;
}
.landing-header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.landing-header .overlay {
  background-color: rgba(0, 0, 0, 0.6980392157);
}
@media only screen and (max-width: 992px) {
  .landing-header .overlay .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.landing-header .overlay h1 {
  max-width: 916px;
  color: #fff;
  font-family: Raleway;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}
@media only screen and (max-width: 992px) {
  .landing-header .overlay h1 {
    width: 100%;
    font-size: 32px;
    margin-bottom: 21px;
    text-align: center;
  }
}
.landing-header .overlay p {
  color: #fff;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 992px) {
  .landing-header .overlay p {
    text-align: center;
  }
}
.landing-header .overlay a {
  color: #fff;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background-color: #394ff3;
  padding: 10px 30px;
  margin-top: 64px;
}
@media only screen and (max-width: 992px) {
  .landing-header .overlay a.btn-lg {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .landing-header .overlay a.btn-sm {
    display: none;
  }
}

footer {
  width: 100%;
  padding: 40px 0;
  background-color: #414141;
}
footer .footer-top {
  width: 100%;
}
footer .footer-top .row {
  -moz-column-gap: 117px;
       column-gap: 117px;
}
@media only screen and (max-width: 1200px) {
  footer .footer-top .row {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media only screen and (max-width: 992px) {
  footer .footer-top .row {
    row-gap: 50px;
  }
}
footer .footer-top .footer-logo {
  width: 117px;
  height: 81px;
}
footer .footer-top .footer-logo img {
  width: 100%;
}
footer .footer-top .footer-menu {
  width: 79%;
}
@media only screen and (max-width: 992px) {
  footer .footer-top .footer-menu {
    width: 100%;
  }
}
footer .footer-top .footer-menu .row {
  width: 100%;
  -moz-column-gap: 154px;
       column-gap: 154px;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 1200px) {
  footer .footer-top .footer-menu .row {
    -moz-column-gap: 54px;
         column-gap: 54px;
    flex-wrap: wrap;
    row-gap: 60px;
  }
}
footer .footer-top .footer-menu .row ul {
  width: 196px;
  display: flex;
  flex-direction: column;
  row-gap: 34px;
}
footer .footer-top .footer-menu .row ul .footer-menu-item {
  list-style: none;
}
footer .footer-top .footer-menu .row ul .footer-menu-item .footer-menu-link {
  text-decoration: none;
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer .footer-bottom {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid #fff;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  footer .footer-bottom {
    flex-direction: column;
    row-gap: 50px;
  }
}
footer .footer-bottom .copyright-text {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer .footer-bottom .footer-social ul {
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
  padding-left: 0;
  margin-bottom: 0;
}
footer .footer-bottom .footer-social-item {
  list-style: none;
}
.sidebar-menu {
  width: 100%;
  max-width: 271px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  box-sizing: border-box;
  z-index: 9999;
}
.sidebar-menu.active {
  transform: translateX(0);
  transition: transform 0.3s;
}
.sidebar-menu.active .sidebar-menu-inner {
  transform: translateX(0);
  transition: transform 0.45s;
}
@media only screen and (max-width: 992px) {
  .sidebar-menu {
    max-width: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s;
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.sidebar-menu-inner {
  max-width: 271px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 0.5px solid #5a5a5a;
  background-color: #f5f5f5;
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .sidebar-menu-inner {
    max-width: 241px;
  }
}
@media only screen and (max-width: 992px) {
  .sidebar-menu-inner {
    transform: translateX(-100%);
    transition: transform 0.45s;
  }
}
.sidebar-menu-logo img {
  width: 150px;
}
.sidebar-menu-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding-left: 0;
}
.sidebar-menu-item {
  list-style: none;
}
.sidebar-menu-item.active-item {
  padding: 10px;
  border-radius: 8px;
  background-color: #c8d0f9;
}
@media only screen and (max-width: 768px) {
  .sidebar-menu-item.active-item {
    background-color: transparent;
    border-radius: unset;
  }
}
.sidebar-menu-item.active-item a {
  color: #092BC8;
}
.sidebar-menu-item.active-item a p {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .sidebar-menu-item.active-item a p::before {
    content: "•";
    color: #092BC8;
    font-size: 16px;
    margin-right: 10px;
  }
}
.sidebar-menu-item.active-item path {
  stroke: #092BC8;
}
.sidebar-menu-link {
  width: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  text-decoration: none;
  color: #838383;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 768px) {
  .sidebar-menu-link svg {
    display: none;
  }
}
.sidebar-menu-link p {
  margin-bottom: 0;
}
.sidebar-menu .sign-out-btn {
  width: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  border-radius: 8px;
  background: #fff;
  padding: 10px 5px;
  border: none;
}
.sidebar-menu .sign-out-btn p {
  margin-bottom: 0;
  color: #838383;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.main-header {
  width: 100%;
  margin-top: 25px;
}
.main-header .hamburger-menu {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .main-header .hamburger-menu {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .main-header .hamburger-menu {
    margin-right: auto;
  }
}
.main-header .container {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.main-header .profile-picture {
  margin-left: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.main-header .profile-picture img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-header .notification-block {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 14px;
}

.main {
  width: calc(100% - 271px);
  margin-left: 271px;
}
@media only screen and (max-width: 992px) {
  .main {
    margin-left: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .main .container {
    max-width: calc(100% - 35px);
  }
}
@media only screen and (min-width: 992px) {
  .main .container {
    max-width: calc(100% - 75px);
  }
}

.row {
  row-gap: 40px;
}
.row a {
  text-decoration: none;
}
.row .vacancy {
  max-height: 215px;
}
.row .vacancy .card {
  height: 100%;
  border-radius: 12px;
  background: #f5f5f5;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 16px;
}
.row .vacancy .card .card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: transparent;
  border: 0;
  padding: 0;
}
.row .vacancy .card .card-header .card-icon {
  background-color: #394ff3;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.row .vacancy .card .card-header .card-icon img {
  width: 18px;
  height: 18px;
}
.row .vacancy .card .card-header .card-details {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.row .vacancy .card .card-header .card-details span {
  color: #838383;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}
.row .vacancy .card .card-header .card-details .card-date {
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
.row .vacancy .card .card-header .card-details .card-count {
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
.row .vacancy .card .card-header .card-details img {
  width: 18px;
  height: 18px;
}
.row .vacancy .card .card-body {
  padding: 18px 0 0 0;
}
.row .vacancy .card .card-body h3 {
  color: #000;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.row .vacancy .card .card-body p {
  color: #757575;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .row .vacancy .card .card-body p.card-more {
    display: none;
  }
}
.row .vacancy .card .card-body .card-more {
  color: #394ff3;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.row .vacancy .card:hover {
  background: #394ff3;
  transition: all 0.3s ease;
}
.row .vacancy .card:hover * {
  color: #fff !important;
}
.row .vacancy .card:hover .card-header .card-icon {
  background-color: #fff;
}
.row .vacancy .card:hover .card-header .card-icon svg path {
  fill: #394ff3;
}
.row .vacancy .card:hover .card-header .card-details svg {
  fill: #fff;
}
.row .vacancy .card:hover .card-header .card-details svg path {
  fill: #fff;
}
.row .vacancy .card:hover .card-body p svg path {
  fill: #fff;
}
@media only screen and (max-width: 768px) {
  .row .vacancy:nth-child(4), .row .vacancy:nth-child(5) {
    display: none;
  }
}
.row .more-vacancy {
  max-height: 215px;
  min-height: 215px;
}
.row .more-vacancy .card {
  height: 100%;
  border-radius: 12px;
  background: #394ff3;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}
.row .more-vacancy .card .card-body h3 {
  color: #fff;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 46px;
}
@media only screen and (max-width: 380px) {
  .row .more-vacancy .card .card-body h3 {
    font-size: 28px;
  }
}
.row .more-vacancy .card .card-body .card-more svg path {
  fill: #fff;
}

.tests-row {
  margin-top: 45px;
  row-gap: 24px;
}
.tests-row .card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border-radius: 8px;
  background: #fdfdfd;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
  border: none;
}
.tests-row .card .card-level {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.tests-row .card .card-level-inner {
  padding: 4px 5px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 99px;
  background: #E8E8E8;
}
.tests-row .card .card-level-text {
  color: #5E5E5E;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.tests-row .card .card-icon {
  width: 60px;
  height: 60px;
}
.tests-row .card .card-title {
  text-align: center;
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 0.9px;
  margin-bottom: 4px;
}
.tests-row .card .card-details {
  color: #5e5e5e;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}
.tests-row .card .card-details img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.tests-row .card .card-btn {
  border-radius: 999px;
  background: #394ff3;
  color: #fff;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 4px 10px;
}
.tests-row .card .card-btn img {
  width: 20px;
  height: 20px;
}
.tests-row.results-row .card .card-title {
  font-size: 14px;
}

.pagination {
  display: flex;
  align-items: center;
  margin-top: 21px;
}
@media only screen and (max-width: 768px) {
  .pagination {
    justify-content: flex-start;
  }
}

.pagination li {
  margin: 0 5px;
}

.pagination .page-item .page-link {
  width: 31px;
  border: 0.3px solid #5a5a5a;
  border-radius: 8px;
  padding: 10px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 380px) {
  .pagination .page-item .page-link {
    width: 27px;
    padding: 7px;
  }
}

.pagination .page-item.active .page-link {
  background-color: #092BC8;
  color: white;
  border: none;
}

.pagination .page-item:first-child,
.pagination .page-item:last-child {
  margin: 0 !important;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  width: unset;
  border: none !important;
  background-color: transparent;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.password-group {
  position: relative;
}
.password-group .form-control {
  padding-right: 46px;
}
.password-group .password-to-text {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  cursor: pointer;
}
.password-group .password-to-text img {
  width: 18px;
  height: 18px;
}

.notification-panel {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  justify-content: flex-end;
  opacity: 0;
  z-index: -1;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .notification-panel {
    display: none;
  }
}
.notification-panel.active {
  transition: all 0.3s;
  opacity: 1;
  z-index: 9999;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .notification-panel.active {
    transform: translateX(0);
    transition: transform 0.3s;
  }
}
.notification-panel.active .notification-panel-content {
  transform: translateX(0);
  transition: transform 0.45s;
}
@media only screen and (max-width: 768px) {
  .notification-panel {
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
  }
}
.notification-panel-content {
  width: 30.44%;
  min-width: 487px;
  height: 100%;
  background-color: #fff;
  border-radius: 15px;
}
@media only screen and (max-width: 768px) {
  .notification-panel-content {
    width: 70%;
    min-width: 250px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 380px) {
  .notification-panel-content {
    width: 100%;
  }
}
.notification-panel-header {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #666;
}
.notification-panel-title {
  color: #000;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.notification-panel-close {
  width: 39px;
  height: 39px;
  background-color: #e6e6e6;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.notification-panel-body {
  width: 100%;
  margin-top: 40px;
  padding-left: 20px;
  overflow: hidden;
}
.notification-panel-body-inner {
  height: 600px;
  overflow-y: scroll;
  padding-right: 20px;
}
.notification-panel-body-inner::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.notification-panel-body-inner::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: #092BC8;
}
.notification-panel-body-inner::-webkit-scrollbar-track {
  border-radius: 99px;
  background: #d9d9d9;
}
.notification-panel-body .notification {
  width: 100%;
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
  border-bottom: 1px solid #666;
  padding-bottom: 20px;
  text-decoration: none;
}
.notification-panel-body .notification:not(.notification-panel-body .notification:nth-child(1)) {
  padding: 20px 0;
}
.notification-panel-body .notification-left-img {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background-color: #c8d0f9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification-panel-body .notification-left-img img {
  width: 38px;
  height: 38px;
}
@media only screen and (max-width: 768px) {
  .notification-panel-body .notification-left-img img {
    width: 18px;
    height: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .notification-panel-body .notification-left-img {
    width: 38px;
    height: 38px;
  }
}
.notification-panel-body .notification-right {
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.notification-panel-body .notification-header {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}
.notification-panel-body .notification-header-title {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .notification-panel-body .notification-header-title {
    font-size: 14px;
  }
}
.notification-panel-body .notification-header-desc {
  color: #5b5b5b;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .notification-panel-body .notification-header-desc {
    font-size: 12px;
  }
}
.notification-panel-body .notification-status-bar {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.notification-panel-body .notification-time {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  color: #7a7a7a;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.notification-panel-body .notification-time-mb {
  display: none;
}
@media only screen and (max-width: 768px) {
  .notification-panel-body .notification-time-mb {
    display: flex;
  }
}
.notification-panel-body .notification-time-lg {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .notification-panel-body .notification-time-lg {
    display: none;
  }
}
.notification-panel-body .notification-status {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: #092BC8;
}

.modal {
  margin-left: 271px;
  width: calc(100% - 271px);
}
@media only screen and (max-width: 992px) {
  .modal {
    width: 100%;
    margin-left: 0;
  }
}
.modal .modal-body {
  padding: 40px;
}
@media only screen and (max-width: 992px) {
  .modal .modal-body {
    padding: 15px;
  }
}
.modal .modal-title {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 480px) {
  .modal .modal-title {
    font-size: 14px;
  }
}
@media only screen and (max-width: 380px) {
  .modal .modal-title {
    font-size: 13px;
  }
}
.modal .modal-title img {
  width: 24px;
  height: 24px;
}
.modal .btn-groups {
  justify-content: center;
  -moz-column-gap: 11px;
       column-gap: 11px;
  margin-top: 32px;
}
@media only screen and (max-width: 992px) {
  .modal .btn-groups {
    flex-direction: column;
    row-gap: 10px;
  }
}
.modal .btn-groups .btn {
  padding: 10px 60px;
}
.modal .btn-groups .btn-back {
  background-color: #c1c1c1;
}
.modal .btn-groups .btn-style-2 {
  background-color: #ff0b23;
}

.chatbot-icon {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  overflow: hidden;
  position: fixed;
  bottom: 22.5px;
  right: 120px;
  cursor: pointer;
}
.chatbot-icon-inner {
  width: 100%;
  height: 100%;
}
.chatbot-icon-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.chatbot {
  position: fixed;
  bottom: 132px;
  right: 155px;
  width: 380px;
  height: 468px;
  max-height: 468px;
  padding: 20px;
  border-radius: 30px;
  background: #fff;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
.chatbot.active {
  display: flex;
  transition: all 0.3s;
}
.chatbot-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  overflow-y: auto;
  padding-right: 10px;
}
.chatbot-inner::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.chatbot-inner::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: #092BC8;
}
.chatbot-inner::-webkit-scrollbar-track {
  border-radius: 99px;
  background: #d9d9d9;
}
.chatbot-big-avatar {
  width: 203.905px;
  height: 203.905px;
}
.chatbot-messages {
  width: 100%;
}
.chatbot-messages-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 17px;
}
.chatbot-messages .chatbot-choices {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
  margin-top: 15px;
}
.chatbot-messages .chatbot-choices-inner {
  width: 88%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 10px;
}
.chatbot-messages .chatbot-choices .chatbot-choice-button {
  border: none;
  min-width: 48%;
  width: 80%;
  padding: 5px 15px;
  border-radius: 24px 0px 24px 24px;
  background: #00bf9d;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.24), 0px 2px 4px 0px rgba(0, 0, 0, 0.16), 0px -1px 1px 0px rgba(0, 0, 0, 0.08);
  color: #fff;
  cursor: pointer;
}
.chatbot-message {
  width: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.chatbot-message.chatbot-out {
  flex-direction: row-reverse;
}
.chatbot-message .chatbot-in-message {
  width: 88%;
  padding: 12px 20px;
  border-radius: 0px 24px 24px 24px;
  background: #1868fb;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.24), 0px 2px 4px 0px rgba(0, 0, 0, 0.16), 0px -1px 1px 0px rgba(0, 0, 0, 0.08);
}
.chatbot-message .chatbot-in-message-text {
  color: var(--opacity-white-100, #fff);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
}
.chatbot-message .chatbot-out-message {
  width: 88%;
  padding: 12px 20px;
  border-radius: 24px 0px 24px 24px;
  background: #00bf9d;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.24), 0px 2px 4px 0px rgba(0, 0, 0, 0.16), 0px -1px 1px 0px rgba(0, 0, 0, 0.08);
}
.chatbot-message .chatbot-out-message-text {
  color: var(--opacity-white-100, #fff);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
}
.chatbot-message .chatbot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999;
  overflow: hidden;
}
.chatbot-message .chatbot-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.chatbot-sender {
  width: 100%;
  margin-top: 32px;
  display: none;
}
.chatbot-sender-inner {
  width: 100%;
  height: auto;
  max-height: 150px;
  border-radius: 10px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 10px 8px 10px 15px;
}
.chatbot-sender-input {
  width: 80%;
  height: 17px;
  max-height: 110px;
  min-height: 20px;
  overflow-y: auto;
  resize: none;
  background: transparent;
  border: none;
  color: #5c5c5c;
  font-family: "Public Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0;
  box-sizing: content-box;
}
.chatbot-sender-input::-moz-placeholder {
  color: #dbdbdb;
  font-family: "Public Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.chatbot-sender-input::placeholder {
  color: #dbdbdb;
  font-family: "Public Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.chatbot-sender-input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
.chatbot-sender-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #092BC8;
  border: none;
  outline: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-header {
  width: 100%;
  height: 202px;
  border-radius: 12px;
  background: #394ff3;
  padding: 0 34px;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .green-header {
    height: 318px;
    padding: 60px 15px 0 15px;
    align-items: flex-start;
  }
}
.green-header::before {
  content: "";
  position: absolute;
  right: 137px;
  bottom: 0;
  width: 109px;
  height: 109px;
  border-radius: 12px 12px 0px 0px;
  background: #ff9f41;
}
@media only screen and (max-width: 768px) {
  .green-header::before {
    right: 88px;
  }
}
.green-header::after {
  content: "";
  position: absolute;
  right: 49px;
  bottom: 0;
  width: 109px;
  height: 116px;
  border-radius: 12px 12px 0px 0px;
  background: rgba(255, 159, 65, 0.5);
}
@media only screen and (max-width: 768px) {
  .green-header::after {
    right: 15px;
  }
}
.green-header-inner {
  width: 100%;
  position: relative;
  z-index: 2;
}
.green-header-title {
  color: #fff;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 1.6px;
}
@media only screen and (max-width: 768px) {
  .green-header-title {
    text-align: center;
  }
}
.green-header-input {
  width: 100%;
  max-width: 684px;
  position: relative;
  margin-top: 24px;
}
.green-header-input img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}
.green-header-input input {
  border-radius: 41px;
  background: #fff;
  border: none;
  padding: 12px 12px 12px 46px;
  color: #838383;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 380px) {
  .green-header-input input {
    font-size: 16px;
  }
}
.green-header-input input::-moz-placeholder {
  color: #838383;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.green-header-input input::placeholder {
  color: #838383;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 380px) {
  .green-header-input input::-moz-placeholder {
    font-size: 16px;
  }
  .green-header-input input::placeholder {
    font-size: 16px;
  }
}
.green-header-input input:focus {
  outline: none;
  box-shadow: none;
}

.landing-section-1 {
  padding: 120px 0;
}
.landing-section-1__subtitle {
  color: #000;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
}
.landing-section-1__title {
  color: #000;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 992px) {
  .landing-section-1__title {
    font-size: 26px;
  }
}
.landing-section-1__hr {
  position: relative;
}
@media only screen and (max-width: 992px) {
  .landing-section-1__hr {
    width: calc(100% - 40px);
  }
}
@media only screen and (min-width: 768px) {
  .landing-section-1__hr {
    width: calc(50% - 100px);
  }
}
.landing-section-1__hr hr {
  border: none;
  height: 2px;
  background-color: #394ff3;
}
.landing-section-1__hr hr::after {
  content: url("data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjQiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAyNCAxMiIgZmlsbD0ibm9uZSI+CiAgPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzEzXzEwKSI+CiAgICA8cGF0aCBkPSJNMTcuNDIgMi40NTE5OUwxOC40OCAzLjUxMjk5TDEyLjcwMyA5LjI5MTk5QzEyLjYxMDQgOS4zODUxNCAxMi41MDA0IDkuNDU5MDcgMTIuMzc5MSA5LjUwOTUyQzEyLjI1NzkgOS41NTk5NyAxMi4xMjc4IDkuNTg1OTQgMTEuOTk2NSA5LjU4NTk0QzExLjg2NTIgOS41ODU5NCAxMS43MzUxIDkuNTU5OTcgMTEuNjEzOSA5LjUwOTUyQzExLjQ5MjYgOS40NTkwNyAxMS4zODI2IDkuMzg1MTQgMTEuMjkgOS4yOTE5OUw1LjUwOTk5IDMuNTEyOTlMNi41Njk5OSAyLjQ1Mjk5TDExLjk5NSA3Ljg3Njk5TDE3LjQyIDIuNDUxOTlaIiBmaWxsPSIjMDRDMkM0Ii8+CiAgPC9nPgogIDxkZWZzPgogICAgPGNsaXBQYXRoIGlkPSJjbGlwMF8xM18xMCI+CiAgICAgIDxyZWN0IHdpZHRoPSIxMiIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0KSByb3RhdGUoOTApIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KPC9zdmc+Cg==");
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #394ff3;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .landing-section-1__img {
    width: 58.33333333%;
  }
}
@media only screen and (max-width: 992px) {
  .landing-section-1__img:nth-child(2) {
    width: 41.66666667%;
  }
}
.landing-section-1__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 992px) {
  .landing-section-1__img img {
    min-height: 268px;
  }
}
.landing-section-1__desc {
  color: #4c4c4c;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 1.2px;
  margin-bottom: 40px;
}
.landing-section-1 .row:nth-child(2) {
  margin-top: 50px;
}
@media only screen and (max-width: 992px) {
  .landing-section-1 .row:nth-child(2) {
    margin-top: 40px;
    row-gap: 40px;
  }
}

.landing-section-2 {
  background-color: #f5f5f5;
  padding: 35px 0;
}
@media only screen and (max-width: 992px) {
  .landing-section-2 .display-dp {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .landing-section-2 .display-mb {
    display: none;
  }
}
.landing-section-2 .landing-swiper .card img {
  min-height: 353px;
  max-height: 353px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.landing-section-2 .landing-swiper .card .card-title h3 {
  color: #394ff3;
  font-family: Poppins;
  font-size: 21px !important;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.landing-section-2 .landing-swiper .card .card-desc {
  font-size: 14px !important;
  -webkit-line-clamp: 2 !important;
}
.landing-section-2 .blog-item-1 .card {
  min-height: 600px;
}
.landing-section-2 .blog-item-1 .card .card-desc,
.landing-section-2 .blog-item-1 .card .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.landing-section-2 .blog-item-2 {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.landing-section-2 .blog-item-2-1,
.landing-section-2 .blog-item-2-2 {
  max-height: 280px;
}
.landing-section-2 .blog-item-2-1 .card,
.landing-section-2 .blog-item-2-2 .card {
  max-height: 280px;
}
.landing-section-2 .blog-item-2-1 .card img,
.landing-section-2 .blog-item-2-2 .card img {
  min-height: 250px;
  height: 250px;
  max-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.landing-section-2 .card {
  border-radius: 12px;
  padding: 15px;
  max-height: 600px;
}
.landing-section-2 .card img {
  border-radius: 12px;
  max-height: 353px;
}
.landing-section-2 .card .card-body .card-date {
  display: flex;
  align-items: center;
  -moz-column-gap: 3px;
       column-gap: 3px;
  color: #757575;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.landing-section-2 .card .card-body .card-title {
  color: #394ff3;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.landing-section-2 .card .card-body .card-title h3 {
  margin-bottom: 0;
}
.landing-section-2 .card .card-body .card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #4c4c4c;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.9px;
}
.landing-section-2__title {
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-bottom: 2px solid #394ff3;
  margin-bottom: 55px;
}

.landing-section-3 {
  padding: 120px 0;
}

.landing-section-4 {
  background-color: #f5f5f5;
  padding: 40px 0;
}
.landing-section-4 .landing-employee-swiper {
  margin-bottom: 45px;
}
.landing-section-4 .landing-employee-swiper .swiper-slide .card img {
  min-height: 430px;
  height: 430px;
  max-height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 12px;
}
.landing-section-4 .landing-employee-swiper .swiper-slide .card a {
  text-decoration: none;
}
.landing-section-4 .landing-employee-swiper .swiper-slide .card .card-title {
  color: #000;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 1.2px;
}
.landing-section-4 .landing-employee-swiper .swiper-slide .card .card-desc {
  color: #757575;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.9px;
  margin-bottom: 0;
}

.about-header {
  padding-top: 25px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .about-header .container {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .about-header .breadcrumb {
    display: none;
  }
}
.about-header-top {
  border-radius: 24px;
  overflow: hidden;
  max-height: 458px;
  height: 458px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .about-header-top {
    max-height: 502px;
    height: 502px;
  }
}
.about-header-bg {
  width: 100%;
  height: 100%;
}
.about-header-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  padding: 40px 60px;
}
@media only screen and (max-width: 768px) {
  .about-header-overlay {
    display: flex;
    align-items: center;
    padding: 40px 16px;
  }
}
.about-header-overlay-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 73px;
}
@media only screen and (max-width: 768px) {
  .about-header-overlay-content {
    margin-top: 0;
  }
}
.about-header-overlay-title {
  color: #fff;
  font-family: Raleway;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 80%;
}
@media only screen and (max-width: 1200px) {
  .about-header-overlay-title {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .about-header-overlay-title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 768px) {
  .about-header-overlay-title {
    font-size: 30px;
  }
}
.about-header-overlay-desc {
  color: #fff;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .about-header-overlay-desc {
    font-size: 20px;
  }
}
.about-header-bottom {
  padding: 0 125px;
  position: relative;
  top: -66px;
}
@media only screen and (max-width: 992px) {
  .about-header-bottom {
    padding: 0 25px;
  }
}
.about-header-bottom .row {
  row-gap: 39px;
}
.about-header-bottom .card {
  border-radius: 24px;
  background: #f5f5f5;
  padding: 40px;
  gap: 20px;
}
.about-header-bottom .card .card-count {
  color: #394ff3;
  text-align: center;
  font-family: Poppins;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.about-header-bottom .card .card-desc {
  color: #838383;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 1200px) {
  .about-header-bottom .card .card-desc {
    font-size: 20px;
  }
}

.about-section-1 {
  margin-bottom: 116px;
}
@media only screen and (max-width: 768px) {
  .about-section-1 .title-container {
    order: 2;
  }
}
@media only screen and (max-width: 768px) {
  .about-section-1 .video-container {
    order: 1;
    margin-bottom: 40px;
  }
}
.about-section-1-title {
  color: #4c4c4c;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 1.2px;
}
.about-section-1-play-btn {
  display: flex;
  align-items: center;
  -moz-column-gap: 23px;
       column-gap: 23px;
  margin-top: 64px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .about-section-1-play-btn {
    display: none;
  }
}
.about-section-1-play-btn img {
  width: 60px;
  height: 60px;
}
.about-section-1-play-btn p {
  color: #092BC8;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.8px;
  margin-bottom: 0;
}
.about-section-1-play-btn-mb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  -moz-column-gap: 23px;
       column-gap: 23px;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 768px) {
  .about-section-1-play-btn-mb {
    display: flex;
  }
}
.about-section-1-play-btn-mb img {
  width: 60px;
  height: 60px;
}
.about-section-1-play-btn-mb p {
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.8px;
  margin-bottom: 0;
}
.about-section-1-video-cont {
  width: 100%;
  height: 422px;
  max-height: 385px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .about-section-1-video-cont {
    height: 385px;
  }
}
.about-section-1-video-cont video {
  width: 100%;
  height: 100%;
  background-color: #000;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section-1-video-cont .close-video {
  position: absolute;
  top: 26px;
  right: 26px;
  display: none;
  border-radius: 999px;
  background: #fff;
  border: none;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
}

.about-section-2 {
  margin-bottom: 220px;
}
.about-section-2 .row {
  row-gap: 40px;
  justify-content: center;
}
.about-section-2 .card {
  padding: 20px 16px 25px 16px;
  border-radius: 12px;
  background: #f5f5f5;
}
.about-section-2 .card a {
  text-decoration: none;
}
.about-section-2 .card img {
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 143px;
  max-height: 143px;
}
.about-section-2 .card .card-body {
  padding: 0;
  margin-top: 18px;
}
.about-section-2 .card .card-body .card-title {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.about-section-2 .card .card-body .card-desc {
  color: #4c4c4c;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.7px;
}

.choose-register {
  margin: 80px 0 174px 0;
}
@media only screen and (max-width: 768px) {
  .choose-register {
    margin: 40px 0 74px 0;
  }
}
.choose-register-content {
  border-radius: 0px 12px 12px 0px;
  background: #f5f5f5;
  max-width: 665px;
  width: 665px;
  min-height: 570px;
  padding: 30px 50px 45px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .choose-register-content {
    padding: 30px 20px 50px 20px;
  }
}
.choose-register-content-steps {
  color: #817a7a;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.choose-register-content-title {
  color: #000;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.choose-register-content .btn-groups.btn-groups-top {
  row-gap: 32px;
}
.choose-register-content .btn-groups.btn-groups-top .btn {
  border-radius: 12px;
  background-color: #092BC8;
}
.choose-register-content .btn-groups.btn-groups-bottom {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media only screen and (max-width: 768px) {
  .choose-register-content .btn-groups.btn-groups-bottom {
    flex-direction: column;
    row-gap: 10px;
  }
}
.choose-register-content .btn {
  color: #fff;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .choose-register-content .btn {
    font-size: 18px;
  }
}
.choose-register-content .btn.rounded-pill {
  width: 50%;
  height: 57px;
  background-color: #d9d9d9;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .choose-register-content .btn.rounded-pill {
    width: 100%;
  }
}
.choose-register-content .btn.active {
  background-color: #394ff3;
}

.parent-register {
  margin: 80px 0 174px 0;
}
@media only screen and (max-width: 768px) {
  .parent-register {
    margin: 40px 0 74px 0;
  }
}
@media only screen and (max-width: 992px) {
  .parent-register .row {
    min-width: 100%;
  }
}
.parent-register .row .img-card {
  height: 720px;
}
@media only screen and (max-width: 992px) {
  .parent-register .row .img-card {
    display: none;
  }
}
.parent-register .row .img-card .card {
  height: 100%;
  border-radius: 12px 0px 0px 12px;
  overflow: hidden;
}
.parent-register .row .img-card img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.parent-register .row .content-card {
  min-height: 720px;
}
@media only screen and (max-width: 992px) {
  .parent-register .row .content-card {
    width: 100%;
  }
}
.parent-register-content {
  border-radius: 0px 12px 12px 0px;
  background: #f5f5f5;
  width: 100%;
  height: 100%;
  padding: 30px 50px 45px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .parent-register-content {
    padding: 30px 20px 50px 20px;
    background: #fff;
  }
}
@media only screen and (min-width: 992px) {
  .parent-register-content {
    padding: 30px 30px 50px 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .parent-register-content {
    padding: 30px 50px 45px 50px;
  }
}
.parent-register-content-steps {
  color: #817a7a;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.parent-register-content-title {
  color: #000;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.parent-register-content .btn-groups.btn-groups-top {
  row-gap: 32px;
}
.parent-register-content .btn-groups.btn-groups-top .btn {
  border-radius: 12px;
  background-color: #092BC8;
}
.parent-register-content .btn-groups.btn-groups-bottom {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.parent-register-content .btn-groups.btn-groups-bottom.parent-btns {
  margin-top: 48px;
}
@media only screen and (min-width: 768px) {
  .parent-register-content .btn-groups.btn-groups-bottom.parent-btns {
    margin-left: auto;
    margin-top: 93px;
  }
}
@media only screen and (max-width: 768px) {
  .parent-register-content .btn-groups.btn-groups-bottom {
    flex-direction: column;
    row-gap: 10px;
  }
}
.parent-register-content .btn {
  color: #fff;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .parent-register-content .btn {
    font-size: 18px;
  }
}
.parent-register-content .btn.rounded-pill {
  width: 50%;
  height: 57px;
  background-color: #d9d9d9;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .parent-register-content .btn.rounded-pill {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .parent-register-content .btn.rounded-pill.back-btn {
    width: 174px;
  }
}
@media only screen and (min-width: 768px) {
  .parent-register-content .btn.rounded-pill.login-btn {
    width: 168px;
  }
}
.parent-register-content .btn.active {
  background-color: #394ff3;
}
@media only screen and (max-width: 768px) {
  .parent-register-content form {
    margin-top: 22px;
  }
}
.parent-register-content form .row {
  row-gap: 32px;
}
@media only screen and (max-width: 768px) {
  .parent-register-content form .row {
    margin-bottom: 48px;
  }
}
.parent-register-content form .row .col-md-6 {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.parent-register-content form .custom-file-upload {
  height: 52px;
  margin-top: 10px;
  margin-bottom: 11px;
  border: 1px dashed #757575;
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  background-color: #e1e1e1;
}
.parent-register-content form .custom-file-upload:hover {
  background-color: #e9ecef;
}
.parent-register-content form .preview-container {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
}
.parent-register-content form .preview-container .file-preview {
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media only screen and (min-width: 992px) {
  .parent-register-content form .preview-container .file-preview {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .parent-register-content form .preview-container .file-preview {
    width: 48px;
    height: 48px;
  }
}
.parent-register-content form .preview-container .change-file-btn,
.parent-register-content form .preview-container .delete-file-btn {
  border-radius: 8px;
  border: 0.3px dashed #5a5a5a;
  background: rgba(255, 255, 255, 0);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  height: 36px;
  padding: 9px 10px;
}
@media only screen and (min-width: 992px) {
  .parent-register-content form .preview-container .change-file-btn,
  .parent-register-content form .preview-container .delete-file-btn {
    font-size: 10px;
    padding: 9px 8px;
  }
}
@media only screen and (min-width: 1200px) {
  .parent-register-content form .preview-container .change-file-btn,
  .parent-register-content form .preview-container .delete-file-btn {
    font-size: 11px;
    padding: 9px 10px;
  }
}
@media only screen and (min-width: 1440px) {
  .parent-register-content form .preview-container .change-file-btn,
  .parent-register-content form .preview-container .delete-file-btn {
    font-size: 12px;
  }
}
.parent-register-content form .preview-container .change-file-btn img,
.parent-register-content form .preview-container .delete-file-btn img {
  width: 16px;
  height: 16px;
}
@media only screen and (min-width: 992px) {
  .parent-register-content form .preview-container .change-file-btn img,
  .parent-register-content form .preview-container .delete-file-btn img {
    width: 14px;
    height: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  .parent-register-content form .preview-container .change-file-btn img,
  .parent-register-content form .preview-container .delete-file-btn img {
    width: 16px;
    height: 16px;
  }
}
.parent-register-content form .preview-container .change-file-btn {
  color: #44860b;
  margin-right: 8px;
}
.parent-register-content form .preview-container .delete-file-btn {
  color: #ff0b23;
}
.parent-register-content form .form-label {
  color: rgba(0, 0, 0, 0.87);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.parent-register-content form .form-control {
  height: 52px;
  border-radius: 8px;
  background-color: transparent;
  border: 1px solid #c1c1c1;
}
.parent-register-content .otp-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.parent-register-content .otp-container-inner {
  width: 100%;
  max-width: 375px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.parent-register-content .otp-container .otp-code-inner {
  max-width: 335px;
}
.parent-register-content .otp-container .phone-title {
  color: #5a5a5a;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 111.111% */
}
.parent-register-content .otp-container .otp-title {
  color: #1b1e28;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  margin-bottom: 16px;
}
.parent-register-content .otp-container .otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.25rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 0 5px;
}
.parent-register-content .otp-container .resend-cont {
  margin-top: 21px;
}
.parent-register-content .otp-container .resend-link {
  color: #7d848d;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
  margin-right: 20px;
}
.parent-register-content .otp-container .resend-link.disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.parent-register-content .otp-container .resend-link:hover {
  text-decoration: underline;
}
.parent-register-content .otp-container .timer-text {
  color: #7d848d;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.parent-existing-header {
  padding-top: 25px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .parent-existing-header .container {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .parent-existing-header .breadcrumb {
    display: none;
  }
}
.parent-existing-header-top {
  border-radius: 24px;
  overflow: hidden;
  max-height: 450px;
  height: 450px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .parent-existing-header-top {
    max-height: 523px;
    height: 5232px;
  }
}
.parent-existing-header-bg {
  width: 100%;
  height: 100%;
}
.parent-existing-header-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.parent-existing-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  padding: 40px 60px;
}
@media only screen and (max-width: 768px) {
  .parent-existing-header-overlay {
    display: flex;
    align-items: center;
    padding: 40px 16px;
  }
}
.parent-existing-header-overlay-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.parent-existing-header-overlay-subtitle {
  color: #ebebeb;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.parent-existing-header-overlay-title {
  color: #fff;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  text-align: center;
  margin: 8px 0;
}
@media only screen and (max-width: 1200px) {
  .parent-existing-header-overlay-title {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .parent-existing-header-overlay-title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 768px) {
  .parent-existing-header-overlay-title {
    font-size: 30px;
  }
}
.parent-existing-header-overlay-desc {
  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
  text-align: center;
  width: 50%;
}
@media only screen and (max-width: 992px) {
  .parent-existing-header-overlay-desc {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .parent-existing-header-overlay-desc {
    font-size: 20px;
  }
}
.parent-existing-header-overlay-input {
  width: 100%;
  max-width: 657px;
  position: relative;
  margin-top: 24px;
}
.parent-existing-header-overlay-input-icon {
  position: absolute;
  left: 12px;
  top: 12px;
  cursor: pointer;
}
.parent-existing-header-overlay-input-icon img {
  width: 24px;
  height: 24px;
}
.parent-existing-header-overlay-input input {
  width: 100%;
  background-color: #fff;
  border-radius: 999px;
  padding: 12px 12px 12px 46px;
  color: #838383;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.parent-existing-header-overlay-input input:focus {
  outline: none;
  box-shadow: none;
}
.parent-existing-header-overlay-btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .parent-existing-header-overlay-btn-group {
    width: 100%;
    flex-direction: column-reverse;
  }
}
.parent-existing-header-bottom {
  padding: 0 125px;
  position: relative;
  top: -66px;
}
@media only screen and (max-width: 992px) {
  .parent-existing-header-bottom {
    padding: 0 25px;
  }
}
.parent-existing-header-bottom .row {
  row-gap: 39px;
}
.parent-existing-header-bottom .card {
  border-radius: 24px;
  background: #f5f5f5;
  padding: 40px;
  gap: 20px;
}
.parent-existing-header-bottom .card .card-count {
  color: #394ff3;
  text-align: center;
  font-family: Poppins;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.parent-existing-header-bottom .card .card-desc {
  color: #838383;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 1200px) {
  .parent-existing-header-bottom .card .card-desc {
    font-size: 20px;
  }
}

.parent-existing-results {
  margin-bottom: 200px;
}
.parent-existing-results-title {
  color: #000;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 35px;
}
.parent-existing-results-not-found {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0 124px 0;
}
@media only screen and (max-width: 768px) {
  .parent-existing-results-not-found {
    margin: 30px 0 78px 0;
  }
}
.parent-existing-results-not-found-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.parent-existing-results-not-found-title {
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.parent-existing-results-not-found-desc {
  color: #757575;
  text-align: center;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.parent-existing-results-not-found img {
  width: 300px;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 768px) {
  .parent-existing-results-not-found img {
    width: 220px;
    height: 220px;
  }
}

.student-register {
  margin: 80px 0 174px 0;
}
@media only screen and (max-width: 768px) {
  .student-register {
    margin: 40px 0 74px 0;
  }
}
.student-register .step-container {
  display: none;
}
.student-register .step-container.active {
  display: block;
}
@media only screen and (max-width: 992px) {
  .student-register .row {
    min-width: 100%;
  }
}
.student-register .row .img-card {
  min-height: 779px;
}
@media only screen and (max-width: 992px) {
  .student-register .row .img-card {
    display: none;
  }
}
.student-register .row .img-card .card {
  height: 100%;
  border-radius: 12px 0px 0px 12px;
  overflow: hidden;
}
.student-register .row .img-card img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.student-register .row .content-card {
  min-height: 779px;
}
@media only screen and (max-width: 992px) {
  .student-register .row .content-card {
    width: 100%;
  }
}
.student-register .row .photo-upload-container {
  margin-bottom: 32px;
}
.student-register .row .form-select {
  max-height: 150px !important;
  overflow-y: auto !important;
}
.student-register-content {
  border-radius: 0px 12px 12px 0px;
  background: #f5f5f5;
  width: 100%;
  height: 100%;
  padding: 30px 50px 45px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .student-register-content {
    padding: 30px 20px 50px 20px;
    background: #fff;
  }
}
@media only screen and (min-width: 992px) {
  .student-register-content {
    padding: 30px 30px 50px 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .student-register-content {
    padding: 30px 50px 45px 50px;
  }
}
.student-register-content-steps {
  color: #817a7a;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.student-register-content-title {
  color: #000;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 34px;
}
.student-register-content .btn-groups.btn-groups-top {
  row-gap: 32px;
}
.student-register-content .btn-groups.btn-groups-top .btn {
  border-radius: 12px;
  background-color: #092BC8;
}
.student-register-content .btn-groups.btn-groups-bottom {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.student-register-content .btn-groups.btn-groups-bottom.student-btns {
  margin-top: 48px;
}
@media only screen and (min-width: 768px) {
  .student-register-content .btn-groups.btn-groups-bottom.student-btns {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-top: 93px;
  }
}
@media only screen and (max-width: 768px) {
  .student-register-content .btn-groups.btn-groups-bottom {
    flex-direction: column;
    row-gap: 10px;
  }
}
.student-register-content .btn {
  color: #fff;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .student-register-content .btn {
    font-size: 18px;
  }
}
.student-register-content .btn.rounded-pill {
  width: 50%;
  height: 57px;
  background-color: #d9d9d9;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .student-register-content .btn.rounded-pill {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .student-register-content .btn.rounded-pill.back-btn {
    width: 174px;
  }
}
@media only screen and (min-width: 768px) {
  .student-register-content .btn.rounded-pill.login-btn {
    width: 168px;
  }
}
.student-register-content .btn.active {
  background-color: #394ff3;
}
@media only screen and (max-width: 768px) {
  .student-register-content form {
    margin-top: 22px;
  }
}
.student-register-content form .row {
  row-gap: 32px;
}
@media only screen and (max-width: 768px) {
  .student-register-content form .row {
    margin-bottom: 48px;
  }
}
.student-register-content form .row .col-md-6 {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.student-register-content form .custom-file-upload {
  height: 52px;
  margin-top: 10px;
  margin-bottom: 11px;
  border: 1px dashed #757575;
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  background-color: #e1e1e1;
}
.student-register-content form .custom-file-upload:hover {
  background-color: #e9ecef;
}
.student-register-content form .preview-container {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
}
.student-register-content form .preview-container .file-preview {
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media only screen and (min-width: 992px) {
  .student-register-content form .preview-container .file-preview {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .student-register-content form .preview-container .file-preview {
    width: 48px;
    height: 48px;
  }
}
.student-register-content form .preview-container .change-file-btn,
.student-register-content form .preview-container .delete-file-btn {
  border-radius: 8px;
  border: 0.3px dashed #5a5a5a;
  background: rgba(255, 255, 255, 0);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  height: 36px;
  padding: 9px 10px;
}
@media only screen and (min-width: 992px) {
  .student-register-content form .preview-container .change-file-btn,
  .student-register-content form .preview-container .delete-file-btn {
    font-size: 10px;
    padding: 9px 8px;
  }
}
@media only screen and (min-width: 1200px) {
  .student-register-content form .preview-container .change-file-btn,
  .student-register-content form .preview-container .delete-file-btn {
    font-size: 11px;
    padding: 9px 10px;
  }
}
@media only screen and (min-width: 1440px) {
  .student-register-content form .preview-container .change-file-btn,
  .student-register-content form .preview-container .delete-file-btn {
    font-size: 12px;
  }
}
.student-register-content form .preview-container .change-file-btn img,
.student-register-content form .preview-container .delete-file-btn img {
  width: 16px;
  height: 16px;
}
@media only screen and (min-width: 992px) {
  .student-register-content form .preview-container .change-file-btn img,
  .student-register-content form .preview-container .delete-file-btn img {
    width: 14px;
    height: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  .student-register-content form .preview-container .change-file-btn img,
  .student-register-content form .preview-container .delete-file-btn img {
    width: 16px;
    height: 16px;
  }
}
.student-register-content form .preview-container .change-file-btn {
  color: #44860b;
  margin-right: 8px;
}
.student-register-content form .preview-container .delete-file-btn {
  color: #ff0b23;
}
.student-register-content form .form-label {
  color: rgba(0, 0, 0, 0.87);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.student-register-content form .form-control,
.student-register-content form .form-select {
  height: 52px;
  border-radius: 8px;
  background-color: transparent;
  border: 1px solid #c1c1c1;
}
.student-register-content form .password-group {
  position: relative;
}
.student-register-content form .password-group .form-control {
  padding-right: 46px;
}
.student-register-content form .password-to-text {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  cursor: pointer;
}
.student-register-content form .password-to-text img {
  width: 18px;
  height: 18px;
}

.exam-container {
  margin-top: 60px;
}
@media only screen and (max-width: 992px) {
  .exam-container .row {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .exam-container .row .exam-img {
    padding: 0 16px !important;
  }
}
.exam-container .row .exam-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 12px 0px 0px 12px;
}
@media only screen and (max-width: 768px) {
  .exam-container .row .exam-details {
    padding: 0 16px !important;
  }
}
.exam-container .row .card {
  background: #fafafa;
  border-radius: 0px 12px 12px 0px;
  padding: 63px;
}
@media only screen and (max-width: 992px) {
  .exam-container .row .card {
    padding: 63px 0;
    background: #fff;
  }
}
.exam-container .row .card-title {
  color: #3a3a3a;
  text-align: center;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 1.05px;
}
.exam-container .row .card-desc {
  color: #757575;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0.8px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.exam-container .row .card-details {
  display: flex;
  align-items: center;
  -moz-column-gap: 29px;
       column-gap: 29px;
}
.exam-container .row .card-details-question {
  color: #3a3a3a;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.8px;
}
.exam-container .row .card-details-time {
  color: #3a3a3a;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.exam-container .row .card-details-time img {
  width: 18px;
  height: 18px;
}
.exam-container .row .card .card-btn {
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 999px;
  background: #ff9f41;
  padding: 10px 30px;
  margin-top: 42px;
}
@media only screen and (max-width: 768px) {
  .exam-container .row .card .card-btn {
    width: 100%;
  }
}

.quiz-container {
  width: 100%;
  padding: 40px 35px;
  border-radius: 12px;
  margin-top: 30px;
  background: #f8f8f8;
}
@media only screen and (max-width: 768px) {
  .quiz-container {
    background: #ffffff;
    padding: 0px 4px;
    display: flex;
    flex-direction: column;
  }
}
.quiz-container .quiz-nav {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.quiz-container .quiz-nav .quiz-title h3 {
  color: #5a5a5a;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.9px;
  margin-bottom: 13px;
}
@media only screen and (max-width: 380px) {
  .quiz-container .quiz-nav .quiz-title h3 {
    font-size: 14px;
  }
}
.quiz-container .quiz-nav .quiz-title .quiz-date p {
  color: #898989;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.6px;
  margin-bottom: 0;
}
.quiz-container .quiz-nav .quiz-timer {
  border-radius: 999px;
  padding: 10px;
}
.quiz-container .quiz-nav .quiz-timer-inner {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.quiz-container .quiz-nav .quiz-timer-text {
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .quiz-container .quiz-nav .quiz-timer-text {
    font-size: 12px;
  }
}
.quiz-container .quiz-nav .quiz-timer.green {
  background: #d9eedb;
}
.quiz-container .quiz-nav .quiz-timer.green svg path {
  fill: #03af11;
}
.quiz-container .quiz-nav .quiz-timer.green .quiz-timer-text {
  color: #03af11;
}
.quiz-container .quiz-nav .quiz-timer.red {
  background-color: #ffe1e4;
}
.quiz-container .quiz-nav .quiz-timer.red svg path {
  fill: #ff0b23;
}
.quiz-container .quiz-nav .quiz-timer.red .quiz-timer-text {
  color: #ff0b23;
}
.quiz-container .question-wrapper {
  padding: 15px;
  border-radius: 12px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .quiz-container .question-wrapper {
    padding: 10px;
    margin-top: 12px;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
  }
}
.quiz-container .question-wrapper .question-title h3 {
  color: #5a5a5a;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 0.7px;
}
.quiz-container .question-wrapper .question-description p {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.7px;
  margin-bottom: 0;
}
.quiz-container .question-progress {
  display: flex;
  align-items: center;
  -moz-column-gap: 26px;
       column-gap: 26px;
}
.quiz-container .question-progress.question-progress-mb {
  display: none;
}
@media only screen and (max-width: 768px) {
  .quiz-container .question-progress.question-progress-mb {
    display: flex;
    margin-top: 12px;
  }
}
.quiz-container .question-progress.question-progress-lg {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .quiz-container .question-progress.question-progress-lg {
    display: none;
  }
}
.quiz-container .question-progress .quiz-status {
  display: flex;
  align-items: center;
}
.quiz-container .question-progress .quiz-status p {
  margin-bottom: 0;
  color: #5a5a5a;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.8px;
  margin-right: 5px;
}
.quiz-container .question-progress .progress-bar {
  width: 167px;
  height: 4px;
  border-radius: 999px;
  background-color: #d9d9d9;
  overflow: hidden;
}
.quiz-container .question-progress .progress-bar .progress-line {
  max-width: 100%;
  min-width: 0%;
  height: 100%;
  background-color: #092BC8;
}
.quiz-container .options-container {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.quiz-container .options-container .option-item {
  list-style: none;
  background-color: #fff;
  border-radius: 8px;
}
@media only screen and (max-width: 768px) {
  .quiz-container .options-container .option-item {
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
  }
}
.quiz-container .options-container .option-item input[type=radio] {
  display: none;
}
.quiz-container .options-container .option-item label {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px; /* 221.429% */
  letter-spacing: 0.7px;
}
.quiz-container .options-container .option-item label .custom-radio {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #838383;
  border-radius: 50%;
  margin-right: 10px;
  transition: border-color 0.3s, background-color 0.3s;
}
.quiz-container .options-container input[type=radio]:checked + label .custom-radio {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOSIgdmlld0JveD0iMCAwIDE4IDE5IiBmaWxsPSJub25lIj4KICA8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfNTU0XzEwODI3KSI+CiAgICA8cGF0aCBkPSJNOSAwLjVDNC4wMjk0NyAwLjUgMCA0LjUyOTQ3IDAgOS41QzAgMTQuNDcwOCA0LjAyOTQ3IDE4LjUgOSAxOC41QzEzLjk3MDggMTguNSAxOCAxNC40NzA4IDE4IDkuNUMxOCA0LjUyOTQ3IDEzLjk3MDggMC41IDkgMC41Wk05IDE3LjM5MjdDNC42NTc3OCAxNy4zOTI3IDEuMTI1IDEzLjg0MjIgMS4xMjUgOS40OTk5NkMxLjEyNSA1LjE1Nzc1IDQuNjU3NzggMS42MjQ5NiA5IDEuNjI0OTZDMTMuMzQyMiAxLjYyNDk2IDE2Ljg3NSA1LjE1Nzc2IDE2Ljg3NSA5LjQ5OTk2QzE2Ljg3NSAxMy44NDIyIDEzLjM0MjIgMTcuMzkyNyA5IDE3LjM5MjdaTTEyLjU5MTggNi4yMDY4NEw3LjMxMTM2IDExLjUyMDVMNC45MzMzOSA5LjE0MjUzQzQuNzEzNzMgOC45MjI4OCA0LjM1NzY3IDguOTIyODggNC4xMzc3MyA5LjE0MjUzQzMuOTE4MDggOS4zNjIxOSAzLjkxODA4IDkuNzE4MjUgNC4xMzc3MyA5LjkzNzkxTDYuOTIxODMgMTIuNzIyM0M3LjE0MTQ4IDEyLjk0MTcgNy40OTc1NCAxMi45NDE3IDcuNzE3NDggMTIuNzIyM0M3Ljc0Mjc5IDEyLjY5NyA3Ljc2NDQ3IDEyLjY2OTQgNy43ODQxNiAxMi42NDA3TDEzLjM4NzggNy4wMDI0OEMxMy42MDcyIDYuNzgyODMgMTMuNjA3MiA2LjQyNjc2IDEzLjM4NzggNi4yMDY4NEMxMy4xNjc4IDUuOTg3MTkgMTIuODExOCA1Ljk4NzE5IDEyLjU5MTggNi4yMDY4NFoiIGZpbGw9IiMwNzg5OEEiLz4KICA8L2c+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAwXzU1NF8xMDgyNyI+CiAgICAgIDxyZWN0IHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgZmlsbD0id2hpdGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMC41KSIvPgogICAgPC9jbGlwUGF0aD4KICA8L2RlZnM+Cjwvc3ZnPg==");
  border: none;
}
.quiz-container .btn-groups {
  justify-content: flex-end;
  margin-top: 31px;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .quiz-container .btn-groups {
    flex-direction: column;
    margin-bottom: 35px;
  }
}
.quiz-container .btn-groups .btn {
  padding: 10px 30px;
}
@media only screen and (max-width: 768px) {
  .quiz-container .btn-groups .btn {
    padding: 15px 30px;
  }
}

.quiz-result-container {
  border-radius: 12px;
  border: 0.2px solid #000;
  margin-top: 28px;
  padding: 50px 30px 45px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .quiz-result-container {
    border: none;
    padding: 0 4px;
  }
}
.quiz-result-container .quiz-result-inner {
  width: 100%;
  max-width: 828px;
}
.quiz-result-container .quiz-result-inner .quiz-result-title {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 1.2px;
  margin-bottom: 0;
}
.quiz-result-container .quiz-result-inner .quiz-result-desc {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.7px;
  margin-bottom: 0;
}
.quiz-result-container .quiz-result-inner .row {
  margin-top: 12px;
  margin-bottom: 42px;
  align-items: stretch;
  row-gap: 12px;
}
@media only screen and (min-width: 992px) {
  .quiz-result-container .quiz-result-inner .row {
    row-gap: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .quiz-result-container .quiz-result-inner .row {
    row-gap: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .quiz-result-container .quiz-result-inner .row {
    row-gap: 24px;
  }
}
.quiz-result-container .quiz-result-inner .row .card {
  height: 100%;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px 10px;
  -moz-column-gap: 17px;
       column-gap: 17px;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
}
.quiz-result-container .quiz-result-inner .row .card .card-title {
  color: #292727;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 1.2px;
  margin-bottom: 0;
}
.quiz-result-container .quiz-result-inner .row .card .card-desc {
  color: #292727;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.9px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
@media only screen and (max-width: 380px) {
  .quiz-result-container .quiz-result-inner .row .card .card-desc {
    font-size: 16px;
  }
}
.quiz-result-container .quiz-result-inner .row .card .card-desc img {
  width: 24px;
  height: 24px;
}
.quiz-result-container .quiz-result-inner .row .card.profile-card {
  padding: 16px;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.quiz-result-container .quiz-result-inner .row .card.profile-card .card-left {
  width: -moz-fit-content;
  width: fit-content;
}
.quiz-result-container .quiz-result-inner .row .card.profile-card .card-left img {
  width: 105px;
  height: 105px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 999px;
  border: 3px solid #fff;
}
@media only screen and (max-width: 480px) {
  .quiz-result-container .quiz-result-inner .row .card.profile-card .card-left img {
    width: 75px;
    height: 75px;
  }
}
@media only screen and (max-width: 380px) {
  .quiz-result-container .quiz-result-inner .row .card.profile-card .card-left img {
    width: 60px;
    height: 60px;
  }
}
.quiz-result-container .quiz-result-inner .row .card.profile-card .card-right {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.quiz-result-container .quiz-result-inner .row .card.profile-card .card-right .card-title {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 0.9px;
  margin-bottom: 0;
}
@media only screen and (max-width: 380px) {
  .quiz-result-container .quiz-result-inner .row .card.profile-card .card-right .card-title {
    font-size: 15px;
    line-height: 24px;
  }
}
.quiz-result-container .quiz-result-inner .row .card.profile-card .card-right .detail-1,
.quiz-result-container .quiz-result-inner .row .card.profile-card .card-right .detail-2,
.quiz-result-container .quiz-result-inner .row .card.profile-card .card-right .detail-3 {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 0.7px;
  margin-bottom: 0;
}
.quiz-result-container .quiz-result-inner .row .card.profile-card .card-right .detail-1 span,
.quiz-result-container .quiz-result-inner .row .card.profile-card .card-right .detail-2 span,
.quiz-result-container .quiz-result-inner .row .card.profile-card .card-right .detail-3 span {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.7px;
}
.quiz-result-container .btn-groups {
  -moz-column-gap: 11px;
       column-gap: 11px;
}
@media only screen and (max-width: 768px) {
  .quiz-result-container .btn-groups {
    width: 100%;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 57px;
  }
}
.quiz-result-container .btn-groups .btn-style-2 {
  padding: 10px 30px;
}
@media only screen and (max-width: 768px) {
  .quiz-result-container .btn-groups .btn-style-2 {
    width: 100%;
  }
}

.quiz-details-container {
  border-radius: 12px;
  background: #f8f8f8;
  padding: 40px 35px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .quiz-details-container {
    background: #fff;
    padding: 0px 4px;
  }
}
.quiz-details-container .quiz-details-nav {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .quiz-details-container .quiz-details-nav {
    flex-direction: column;
    row-gap: 16px;
  }
}
.quiz-details-container .quiz-details-nav .quiz-details-title h3 {
  color: #5a5a5a;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.9px;
  margin-bottom: 13px;
}
@media only screen and (max-width: 380px) {
  .quiz-details-container .quiz-details-nav .quiz-details-title h3 {
    font-size: 14px;
  }
}
.quiz-details-container .quiz-details-nav .quiz-details-title .quiz-details-date p {
  color: #898989;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.6px;
  margin-bottom: 0;
}
.quiz-details-container .quiz-details-nav .data-question-select-box {
  padding: 3.5px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
}
@media only screen and (min-width: 768px) {
  .quiz-details-container .quiz-details-nav .data-question-select-box {
    display: none;
  }
}
.quiz-details-container .quiz-details-nav .data-question-select-box select {
  border: none;
  color: #5a5a5a;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.8px;
}
.quiz-details-container .quiz-details-nav .data-question-select-box select:focus, .quiz-details-container .quiz-details-nav .data-question-select-box select:focus-visible {
  outline: 0;
}
.quiz-details-container .question-wrapper {
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  margin-top: 22px;
}
@media only screen and (max-width: 768px) {
  .quiz-details-container .question-wrapper {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
  }
}
.quiz-details-container .question-wrapper .progress-header {
  width: 100%;
  display: flex;
  align-items: center;
}
.quiz-details-container .question-wrapper .progress-header .question-progress {
  display: flex;
  align-items: center;
  -moz-column-gap: 26px;
       column-gap: 26px;
}
@media only screen and (max-width: 768px) {
  .quiz-details-container .question-wrapper .progress-header .question-progress {
    display: none;
  }
}
.quiz-details-container .question-wrapper .progress-header .question-progress .quiz-status {
  display: flex;
  align-items: center;
}
.quiz-details-container .question-wrapper .progress-header .question-progress .quiz-status p {
  margin-bottom: 0;
  color: #5a5a5a;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.8px;
  margin-right: 5px;
}
.quiz-details-container .question-wrapper .progress-header .question-progress .progress-bar {
  width: 167px;
  height: 4px;
  border-radius: 999px;
  background-color: #d9d9d9;
  overflow: hidden;
}
.quiz-details-container .question-wrapper .progress-header .question-progress .progress-bar .progress-line {
  max-width: 100%;
  min-width: 0%;
  height: 100%;
  background-color: #092BC8;
}
.quiz-details-container .question-wrapper .progress-header .add-comment {
  margin-left: auto;
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  cursor: pointer;
}
.quiz-details-container .question-wrapper .progress-header .add-comment img {
  width: 16px;
  height: 16px;
}
.quiz-details-container .question-wrapper .progress-header .add-comment p {
  color: #757575;
  text-align: right;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.8px;
  margin-bottom: 0;
}
.quiz-details-container .question-wrapper .question-title {
  color: #5a5a5a;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 0.7px;
  margin-bottom: 8px;
  margin-top: 10px;
}
.quiz-details-container .question-wrapper .question-description {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.7px;
  margin-bottom: 0;
}
.quiz-details-container .options-container {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.quiz-details-container .options-container .option-item {
  list-style: none;
  background-color: #fff;
  border-radius: 8px;
}
@media only screen and (max-width: 768px) {
  .quiz-details-container .options-container .option-item {
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
  }
}
.quiz-details-container .options-container .option-item input[type=radio] {
  display: none;
}
.quiz-details-container .options-container .option-item label {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.7px;
}
.quiz-details-container .options-container .option-item label .custom-radio {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #838383;
  border-radius: 50%;
  margin-right: 10px;
  transition: border-color 0.3s, background-color 0.3s;
}
.quiz-details-container .options-container .option-item.answer-correct {
  background-color: #ceffe1;
}
.quiz-details-container .options-container .option-item.answer-correct label .custom-radio {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOSIgdmlld0JveD0iMCAwIDE4IDE5IiBmaWxsPSJub25lIj4KICA8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfNTM3XzcxMzcpIj4KICAgIDxwYXRoIGQ9Ik05IDAuNUM0LjAyOTQ3IDAuNSAwIDQuNTI5NDcgMCA5LjVDMCAxNC40NzA4IDQuMDI5NDcgMTguNSA5IDE4LjVDMTMuOTcwOCAxOC41IDE4IDE0LjQ3MDggMTggOS41QzE4IDQuNTI5NDcgMTMuOTcwOCAwLjUgOSAwLjVaTTkgMTcuMzkyN0M0LjY1Nzc4IDE3LjM5MjcgMS4xMjUgMTMuODQyMiAxLjEyNSA5LjQ5OTk2QzEuMTI1IDUuMTU3NzUgNC42NTc3OCAxLjYyNDk2IDkgMS42MjQ5NkMxMy4zNDIyIDEuNjI0OTYgMTYuODc1IDUuMTU3NzYgMTYuODc1IDkuNDk5OTZDMTYuODc1IDEzLjg0MjIgMTMuMzQyMiAxNy4zOTI3IDkgMTcuMzkyN1pNMTIuNTkxOCA2LjIwNjg0TDcuMzExMzYgMTEuNTIwNUw0LjkzMzM5IDkuMTQyNTNDNC43MTM3MyA4LjkyMjg4IDQuMzU3NjcgOC45MjI4OCA0LjEzNzczIDkuMTQyNTNDMy45MTgwOCA5LjM2MjE5IDMuOTE4MDggOS43MTgyNSA0LjEzNzczIDkuOTM3OTFMNi45MjE4MyAxMi43MjIzQzcuMTQxNDggMTIuOTQxNyA3LjQ5NzU0IDEyLjk0MTcgNy43MTc0OCAxMi43MjIzQzcuNzQyNzkgMTIuNjk3IDcuNzY0NDcgMTIuNjY5NCA3Ljc4NDE2IDEyLjY0MDdMMTMuMzg3OCA3LjAwMjQ4QzEzLjYwNzIgNi43ODI4MyAxMy42MDcyIDYuNDI2NzYgMTMuMzg3OCA2LjIwNjg0QzEzLjE2NzggNS45ODcxOSAxMi44MTE4IDUuOTg3MTkgMTIuNTkxOCA2LjIwNjg0WiIgZmlsbD0iIzA3ODk4QSIvPgogIDwvZz4KICA8ZGVmcz4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcDBfNTM3XzcxMzciPgogICAgICA8cmVjdCB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDAuNSkiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgo8L3N2Zz4=");
  border: none;
}
.quiz-details-container .options-container .option-item.answer-incorrect {
  background-color: #ffebed;
}
.quiz-details-container .options-container .option-item.answer-incorrect label .custom-radio {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMCAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzLjUzMDYgOC4wMzA2M0wxMS4wNjAzIDEwLjVMMTMuNTMwNiAxMi45Njk0QzEzLjYwMDMgMTMuMDM5MSAxMy42NTU2IDEzLjEyMTggMTMuNjkzMyAxMy4yMTI4QzEzLjczMSAxMy4zMDM5IDEzLjc1MDQgMTMuNDAxNSAxMy43NTA0IDEzLjVDMTMuNzUwNCAxMy41OTg1IDEzLjczMSAxMy42OTYxIDEzLjY5MzMgMTMuNzg3MkMxMy42NTU2IDEzLjg3ODIgMTMuNjAwMyAxMy45NjA5IDEzLjUzMDYgMTQuMDMwNkMxMy40NjA5IDE0LjEwMDMgMTMuMzc4MiAxNC4xNTU2IDEzLjI4NzIgMTQuMTkzM0MxMy4xOTYxIDE0LjIzMSAxMy4wOTg2IDE0LjI1MDQgMTMgMTQuMjUwNEMxMi45MDE1IDE0LjI1MDQgMTIuODAzOSAxNC4yMzEgMTIuNzEyOCAxNC4xOTMzQzEyLjYyMTggMTQuMTU1NiAxMi41MzkxIDE0LjEwMDMgMTIuNDY5NCAxNC4wMzA2TDEwIDExLjU2MDNMNy41MzA2MyAxNC4wMzA2QzcuNDYwOTUgMTQuMTAwMyA3LjM3ODIyIDE0LjE1NTYgNy4yODcxOCAxNC4xOTMzQzcuMTk2MTMgMTQuMjMxIDcuMDk4NTUgMTQuMjUwNCA3IDE0LjI1MDRDNi45MDE0NiAxNC4yNTA0IDYuODAzODggMTQuMjMxIDYuNzEyODMgMTQuMTkzM0M2LjYyMTc5IDE0LjE1NTYgNi41MzkwNiAxNC4xMDAzIDYuNDY5MzggMTQuMDMwNkM2LjM5OTcgMTMuOTYwOSA2LjM0NDQyIDEzLjg3ODIgNi4zMDY3MSAxMy43ODcyQzYuMjY5IDEzLjY5NjEgNi4yNDk1OSAxMy41OTg1IDYuMjQ5NTkgMTMuNUM2LjI0OTU5IDEzLjQwMTUgNi4yNjkgMTMuMzAzOSA2LjMwNjcxIDEzLjIxMjhDNi4zNDQ0MiAxMy4xMjE4IDYuMzk5NyAxMy4wMzkxIDYuNDY5MzggMTIuOTY5NEw4LjkzOTY5IDEwLjVMNi40NjkzOCA4LjAzMDYzQzYuMzI4NjUgNy44ODk4OSA2LjI0OTU5IDcuNjk5MDIgNi4yNDk1OSA3LjVDNi4yNDk1OSA3LjMwMDk4IDYuMzI4NjUgNy4xMTAxMSA2LjQ2OTM4IDYuOTY5MzdDNi42MTAxMSA2LjgyODY0IDYuODAwOTggNi43NDk1OCA3IDYuNzQ5NThDNy4xOTkwMyA2Ljc0OTU4IDcuMzg5OSA2LjgyODY0IDcuNTMwNjMgNi45NjkzN0wxMCA5LjQzOTY5TDEyLjQ2OTQgNi45NjkzN0MxMi41MzkxIDYuODk5NjkgMTIuNjIxOCA2Ljg0NDQyIDEyLjcxMjggNi44MDY3QzEyLjgwMzkgNi43Njg5OSAxMi45MDE1IDYuNzQ5NTggMTMgNi43NDk1OEMxMy4wOTg2IDYuNzQ5NTggMTMuMTk2MSA2Ljc2ODk5IDEzLjI4NzIgNi44MDY3QzEzLjM3ODIgNi44NDQ0MiAxMy40NjA5IDYuODk5NjkgMTMuNTMwNiA2Ljk2OTM3QzEzLjYwMDMgNy4wMzkwNiAxMy42NTU2IDcuMTIxNzggMTMuNjkzMyA3LjIxMjgzQzEzLjczMSA3LjMwMzg3IDEzLjc1MDQgNy40MDE0NSAxMy43NTA0IDcuNUMxMy43NTA0IDcuNTk4NTUgMTMuNzMxIDcuNjk2MTMgMTMuNjkzMyA3Ljc4NzE3QzEzLjY1NTYgNy44NzgyMiAxMy42MDAzIDcuOTYwOTQgMTMuNTMwNiA4LjAzMDYzWk0xOS43NSAxMC41QzE5Ljc1IDEyLjQyODQgMTkuMTc4MiAxNC4zMTM0IDE4LjEwNjggMTUuOTE2OEMxNy4wMzU1IDE3LjUyMDIgMTUuNTEyNyAxOC43Njk5IDEzLjczMTIgMTkuNTA3OEMxMS45NDk2IDIwLjI0NTggOS45ODkxOSAyMC40Mzg5IDguMDk3ODcgMjAuMDYyN0M2LjIwNjU2IDE5LjY4NjUgNC40NjkyOCAxOC43NTc5IDMuMTA1NzEgMTcuMzk0M0MxLjc0MjE1IDE2LjAzMDcgMC44MTM1NTQgMTQuMjkzNCAwLjQzNzM0OCAxMi40MDIxQzAuMDYxMTQyIDEwLjUxMDggMC4yNTQyMjUgOC41NTA0MiAwLjk5MjE3OSA2Ljc2ODg0QzEuNzMwMTMgNC45ODcyNiAyLjk3OTgyIDMuNDY0NTEgNC41ODMxOSAyLjM5MzE3QzYuMTg2NTcgMS4zMjE4MyA4LjA3MTY0IDAuNzUgMTAgMC43NUMxMi41ODUgMC43NTI3MyAxNS4wNjM0IDEuNzgwODQgMTYuODkxMyAzLjYwODcyQzE4LjcxOTIgNS40MzY2MSAxOS43NDczIDcuOTE0OTggMTkuNzUgMTAuNVpNMTguMjUgMTAuNUMxOC4yNSA4Ljg2ODMgMTcuNzY2MSA3LjI3MzI1IDE2Ljg1OTYgNS45MTY1NUMxNS45NTMxIDQuNTU5ODQgMTQuNjY0NiAzLjUwMjQyIDEzLjE1NzEgMi44Nzc5OUMxMS42NDk3IDIuMjUzNTcgOS45OTA4NSAyLjA5MDE5IDguMzkwNTEgMi40MDg1MkM2Ljc5MDE3IDIuNzI2ODUgNS4zMjAxNiAzLjUxMjU5IDQuMTY2MzcgNC42NjYzN0MzLjAxMjU5IDUuODIwMTUgMi4yMjY4NSA3LjI5MDE2IDEuOTA4NTMgOC44OTA1QzEuNTkwMiAxMC40OTA4IDEuNzUzNTggMTIuMTQ5NiAyLjM3OCAxMy42NTcxQzMuMDAyNDIgMTUuMTY0NiA0LjA1OTg0IDE2LjQ1MzEgNS40MTY1NSAxNy4zNTk2QzYuNzczMjYgMTguMjY2MSA4LjM2ODMxIDE4Ljc1IDEwIDE4Ljc1QzEyLjE4NzMgMTguNzQ3NSAxNC4yODQzIDE3Ljg3NzUgMTUuODMwOSAxNi4zMzA5QzE3LjM3NzUgMTQuNzg0MyAxOC4yNDc1IDEyLjY4NzMgMTguMjUgMTAuNVoiIGZpbGw9IiNGRjBCMjMiLz4KPC9zdmc+Cg==");
  border: none;
}
.quiz-details-container .options-container.correct-answer-block {
  margin-top: 35px;
}
.quiz-details-container .answer-explanation {
  border-radius: 12px;
  background: #fff;
  padding: 10px 20px;
  margin-top: 25px;
  display: none;
  flex-direction: column;
  transition: all 0.3s;
  opacity: 0;
}
.quiz-details-container .answer-explanation.active {
  display: flex;
  opacity: 1;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .quiz-details-container .answer-explanation {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
  }
}
.quiz-details-container .answer-explanation-header {
  width: 100%;
}
.quiz-details-container .answer-explanation-header-info {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.quiz-details-container .answer-explanation-header-info img {
  width: 24px;
  height: 24px;
}
.quiz-details-container .answer-explanation-header-info h3 {
  color: #5a5a5a;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.7px;
  margin-bottom: 0;
}
.quiz-details-container .answer-explanation-content-desc {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.7px;
  margin-bottom: 0;
}
.quiz-details-container .question-end {
  width: 100%;
  height: 1px;
  border: none;
  background-color: #000;
  margin: 25px 0;
}
@media only screen and (max-width: 768px) {
  .quiz-details-container .question-end {
    margin: 40px 0;
  }
}

.settings {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .settings .settings-nav {
    margin-bottom: 40px;
  }
}
.settings .settings-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 271px;
  flex: 0 0 auto;
  width: 37%;
  height: 100%;
  z-index: -1;
  background-color: #f8f8f8;
}
@media only screen and (min-width: 1440px) {
  .settings .settings-nav::before {
    width: 50%;
  }
}
@media only screen and (max-width: 1440px) {
  .settings .settings-nav::before {
    width: 49%;
  }
}
@media only screen and (max-width: 992px) {
  .settings .settings-nav::before {
    left: 0;
    width: 37%;
  }
}
@media only screen and (max-width: 768px) {
  .settings .settings-nav::before {
    display: none;
  }
}
.settings .settings-nav .inner-navigation {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .settings .settings-nav .inner-navigation img {
    display: none;
  }
}
.settings .settings-nav .nav-pills {
  margin-top: 40px;
  row-gap: 25px;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .settings .settings-nav .nav-pills {
    flex-direction: row;
  }
}
@media only screen and (max-width: 768px) {
  .settings .settings-nav .nav-item {
    width: 50%;
  }
}
.settings .settings-nav .nav-link {
  width: 100%;
  display: flex;
  color: #757575;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 10px 15px;
}
@media only screen and (max-width: 768px) {
  .settings .settings-nav .nav-link {
    display: flex;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
  }
}
.settings .settings-nav .nav-link.active {
  border-radius: 8px;
  background-color: #092BC8;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .settings .settings-nav .nav-link.active {
    background-color: transparent;
    border-radius: 0;
    color: #1f8a9d;
    border-bottom: 1px solid #1f8a9d;
  }
}
.settings .settings-tab-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  flex: 0 0 auto;
  width: 46%;
  height: 100%;
  z-index: -1;
  background-color: #f5f5f5;
}
@media only screen and (min-width: 1440px) {
  .settings .settings-tab-content::before {
    width: 54%;
  }
}
@media only screen and (max-width: 1440px) {
  .settings .settings-tab-content::before {
    width: 49%;
  }
}
@media only screen and (max-width: 1200px) {
  .settings .settings-tab-content::before {
    width: 47.5%;
  }
}
@media only screen and (max-width: 992px) {
  .settings .settings-tab-content::before {
    width: 64%;
  }
}
@media only screen and (max-width: 768px) {
  .settings .settings-tab-content::before {
    display: none;
  }
}
.settings .settings-tab-content .tab-content .tab-content-title {
  color: #092BC8;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 1.2px;
  margin-bottom: 32px;
}
.settings .settings-tab-content .tab-content .tab-content-form .profile-picture-container {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.settings .settings-tab-content .tab-content .tab-content-form .profile-picture-container .profile-picture-wrapper {
  width: 100px;
  height: 100px;
  position: relative;
}
.settings .settings-tab-content .tab-content .tab-content-form .profile-picture-container .profile-picture-wrapper label {
  cursor: pointer;
}
.settings .settings-tab-content .tab-content .tab-content-form .profile-picture-container .profile-picture-wrapper label .profile-picture {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid #fff;
  -o-object-fit: cover;
     object-fit: cover;
}
.settings .settings-tab-content .tab-content .tab-content-form .profile-picture-container .profile-picture-wrapper label .edit-icon {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #092BC8;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.settings .settings-tab-content .tab-content .tab-content-form .row {
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .settings .settings-tab-content .tab-content .tab-content-form .row {
    row-gap: 32px;
    margin-bottom: 32px;
  }
}
.settings .settings-tab-content .tab-content .tab-content-form .form-label {
  color: rgba(0, 0, 0, 0.87);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.settings .settings-tab-content .tab-content .tab-content-form .form-control, .settings .settings-tab-content .tab-content .tab-content-form .form-select {
  height: 52px;
  background-color: transparent;
  border-radius: 8px;
  border: 1px solid #c1c1c1;
  color: #979797;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.settings .settings-tab-content .tab-content .tab-content-form .form-control::-moz-placeholder, .settings .settings-tab-content .tab-content .tab-content-form .form-select::-moz-placeholder {
  color: #979797;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.settings .settings-tab-content .tab-content .tab-content-form .form-control::placeholder, .settings .settings-tab-content .tab-content .tab-content-form .form-select::placeholder {
  color: #979797;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.settings .settings-tab-content .tab-content .tab-content-form .form-group {
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .settings .settings-tab-content .tab-content .tab-content-form .form-group {
    margin-bottom: 32px;
  }
}
.settings .btn-groups {
  justify-content: flex-end;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media only screen and (max-width: 768px) {
  .settings .btn-groups {
    width: 100%;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 57px;
  }
}
.settings .btn-groups .btn {
  padding: 10px 30px;
}

@media only screen and (max-width: 768px) {
  .student-settings .settings-nav .nav-item {
    width: 33%;
  }
}
.student-settings .settings-nav .nav-link {
  color: #525252;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .student-settings .settings-nav .nav-link {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 380px) {
  .student-settings .settings-nav .nav-link {
    font-size: 10px;
  }
}

.profile-container {
  width: 100%;
}
.profile-container-inner {
  width: 100%;
  height: 286px;
  background-color: #f5f5f5;
  border-radius: 12px;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .profile-container-inner {
    align-items: center;
    height: 390px;
  }
}
.profile-container-cover {
  width: 100%;
  height: 128px;
  border-radius: 12px 12px 0px 0px;
  background: #092BC8;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .profile-container-cover {
    position: absolute;
    top: 0;
  }
}
.profile-container-cover::before {
  content: "";
  position: absolute;
  right: 137px;
  bottom: 0;
  width: 109px;
  height: 109px;
  border-radius: 12px 12px 0px 0px;
  background: #ff9f41;
}
@media only screen and (max-width: 768px) {
  .profile-container-cover::before {
    display: none;
  }
}
.profile-container-cover::after {
  content: "";
  position: absolute;
  right: 49px;
  bottom: 0;
  width: 109px;
  height: 116px;
  border-radius: 12px 12px 0px 0px;
  background: rgba(255, 159, 65, 0.5);
}
@media only screen and (max-width: 768px) {
  .profile-container-cover::after {
    display: none;
  }
}
.profile-container-details {
  width: 100%;
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .profile-container-details {
    transform: translateX(0);
    justify-content: center;
    position: unset;
    height: auto;
    margin-top: 12px;
  }
}
.profile-container-details-inner {
  max-width: 240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .profile-container-details-inner {
    position: unset;
    transform: translateX(0);
  }
}
.profile-container-details-pp {
  width: 170px;
  height: 170px;
  border-radius: 999px;
  border: 3px solid #fff;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.profile-container-details-title {
  color: #092BC8;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 1.1px;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .profile-container-details-title {
    margin-top: 8px;
  }
}
.profile-container-details-class {
  color: #ff9f41;
  text-align: center;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 1.1px;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .profile-container-details-class {
    display: none;
  }
}

.profile-wallet {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  margin-right: 68px;
  cursor: pointer;
  z-index: 2;
}
.profile-wallet-inner {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
@media only screen and (max-width: 1200px) {
  .profile-wallet {
    margin-right: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .profile-wallet {
    margin-right: 68px;
  }
}
@media only screen and (max-width: 768px) {
  .profile-wallet {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    margin-top: 24px;
  }
}
.profile-wallet-icon {
  display: flex;
  width: 60px;
  height: 60.984px;
  padding: 12px 14px;
  align-items: center;
  border-radius: 13.754px;
  background: rgba(176, 176, 176, 0.15);
}
.profile-wallet-icon img {
  width: 32px;
  height: 32px;
}
.profile-wallet-title {
  color: #092BC8;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.profile-wallet-ammount {
  color: #000;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}

.vent-count {
  width: 100%;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .vent-count {
    margin-bottom: 30px;
  }
}
.vent-count-inner .row {
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .vent-count-inner .row {
    row-gap: 30px;
  }
}
.vent-count-inner .row .vent-col {
  width: 100%;
  max-width: 25.67%;
  height: 113px;
}
@media only screen and (max-width: 1200px) {
  .vent-count-inner .row .vent-col {
    max-width: 33%;
    padding-right: calc(var(--bs-gutter-x) * 0.23);
    padding-left: calc(var(--bs-gutter-x) * 0.23);
  }
}
@media only screen and (max-width: 768px) {
  .vent-count-inner .row .vent-col {
    max-width: 100%;
  }
}
.vent-count-inner .row .vent-col .card {
  background-color: #c8d0f9;
  border-radius: 10px;
  height: 100%;
}
.vent-count-inner .row .vent-col .card .card-header {
  position: relative;
  overflow: visible;
}
.vent-count-inner .row .vent-col .card .card-header .rounded-pill {
  background-color: #092BC8;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 43px;
  color: #fff;
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.9px;
}
@media only screen and (max-width: 1440px) {
  .vent-count-inner .row .vent-col .card .card-header .rounded-pill {
    font-size: 12px;
  }
}
.vent-count-inner .row .vent-col .card .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}
.vent-count-inner .row .vent-col .card .card-body .card-title {
  color: #454545;
  font-family: Poppins;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 1.9px;
}
.vent-count-inner .row .vent-col-center {
  max-width: 44.11%;
  height: 150px;
}
@media only screen and (max-width: 1200px) {
  .vent-count-inner .row .vent-col-center {
    max-width: 33%;
  }
}
@media only screen and (max-width: 768px) {
  .vent-count-inner .row .vent-col-center {
    max-width: 100%;
  }
}

.profile-section-title {
  margin-bottom: 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile-section-title h3 {
  color: #092BC8;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 1.05px;
}

.test-titles {
  margin-top: 40px;
  margin-bottom: 40px;
}
.test-titles-swiper .swiper-slide {
  width: auto;
}
.test-titles-swiper .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  background: #c8d0f9;
  color: #092BC8;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 15px 42px;
  text-decoration: none;
}

.success-rate {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 30px;
  border-radius: 12px;
  background: #f5f5f5;
}
.success-rate-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.success-rate-title {
  color: #092bc8;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 1.05px;
}
.success-rate .dropdown-section .dropdown-toggle {
  background-color: #fff;
}
.success-rate-tabs {
  justify-content: center;
  border-bottom: 0;
  -moz-column-gap: 11px;
       column-gap: 11px;
}
.success-rate-tabs .nav-link {
  width: 21px;
  height: 19px;
  border-radius: 21px;
  background: #d9d9d9;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.success-rate-tabs .nav-link.active {
  background: #a4e6e7;
}
.success-rate-content .chart-col {
  width: 209px;
  height: 248px;
}
@media only screen and (max-width: 768px) {
  .success-rate-content .chart-col {
    width: 100%;
  }
}
.success-rate-content .chart-col a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .success-rate-content .chart-col canvas {
    width: 209px !important;
    height: 209px !important;
  }
}
.success-rate-content .chart-col .chart-title {
  color: #092bc8;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px; /* Başlık genişliğini sınırlandır */
  display: inline-block;
  cursor: pointer;
}
.success-rate-content .tab-panel-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .success-rate-content .tab-panel-content {
    flex-direction: column-reverse;
  }
}
.success-rate-content .tab-panel-content .row.chart-row {
  width: 100%;
  max-width: 900px;
}
@media only screen and (max-width: 768px) {
  .success-rate-content .tab-panel-content .row.chart-row {
    row-gap: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .success-rate-content .tab-panel-content .row.chart-legend-row {
    width: 100%;
  }
}
.success-rate-content .tab-panel-content .row.chart-legend-row .chart-legends {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media only screen and (max-width: 768px) {
  .success-rate-content .tab-panel-content .row.chart-legend-row .chart-legends {
    flex-direction: column;
    padding: 0;
  }
}
.success-rate-content .tab-panel-content .row.chart-legend-row .chart-legend {
  color: #757575;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.7px;
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
.success-rate-content .tab-panel-content .row.chart-legend-row .chart-legend::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 11px;
}
.success-rate-content .tab-panel-content .row.chart-legend-row .chart-legend.green::before {
  background-color: #00bb4a;
}
.success-rate-content .tab-panel-content .row.chart-legend-row .chart-legend.red::before {
  background-color: #ff0019;
}
.success-rate-content .tab-panel-content .row.chart-legend-row .chart-legend.grey::before {
  background-color: #c1c1c1;
}

.chart-title-tooltip {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1000;
}

.platform-metrics {
  width: 100%;
  margin-bottom: 40px;
}
.platform-metrics .dropdown-section .dropdown-toggle {
  background-color: #fff;
}
.platform-metrics-row {
  align-items: stretch;
  row-gap: 40px;
}
.platform-metrics .platform-indicators-inner {
  background: #f5f5f5;
  padding: 12px 30px;
  border-radius: 12px;
  height: 100%;
}
.platform-metrics .platform-indicators-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.platform-metrics .platform-indicators-title {
  color: #092BC8;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 1.05px;
}
.platform-metrics .platform-indicators #platformTimeChart {
  width: 209px !important;
  height: 209px !important;
}
.platform-metrics .platform-indicators-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1440px) {
  .platform-metrics .platform-indicators-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 1440px) {
  .platform-metrics .platform-indicators .chart-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.platform-metrics .platform-indicators .chart-legends {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media only screen and (max-width: 1440px) {
  .platform-metrics .platform-indicators .chart-legends {
    margin-top: 40px;
  }
}
.platform-metrics .platform-indicators .chart-legends .chart-legend {
  color: #757575;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.7px;
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
.platform-metrics .platform-indicators .chart-legends .chart-legend::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 11px;
}
.platform-metrics .platform-indicators .chart-legends .chart-legend.green::before {
  background-color: #00a99d;
}
.platform-metrics .platform-indicators .chart-legends .chart-legend.orange::before {
  background-color: #ff9900;
}
.platform-metrics .exam-count-inner {
  background: #f5f5f5;
  padding: 12px 30px;
  border-radius: 12px;
  height: 100%;
}
.platform-metrics .exam-count-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.platform-metrics .exam-count-title {
  color: #092BC8;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 1.05px;
}
.platform-metrics .exam-count #examCountChart {
  height: 209px !important;
}
.platform-metrics .exam-count-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1440px) {
  .platform-metrics .exam-count-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.platform-metrics .exam-count .chart-container {
  width: 209px;
}
@media only screen and (max-width: 1440px) {
  .platform-metrics .exam-count .chart-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.platform-metrics .exam-count .chart-legends {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media only screen and (max-width: 1440px) {
  .platform-metrics .exam-count .chart-legends {
    margin-top: 40px;
  }
}
.platform-metrics .exam-count .chart-legends .chart-legend {
  color: #757575;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.7px;
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
.platform-metrics .exam-count .chart-legends .chart-legend::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 11px;
}
.platform-metrics .exam-count .chart-legends .chart-legend.teal::before {
  background-color: #00a99d;
}
.platform-metrics .exam-count .chart-legends .chart-legend.orange::before {
  background-color: #ff9900;
}
.platform-metrics .exam-count .chart-legends .chart-legend.light-green::before {
  background-color: #ff6666;
}
.platform-metrics .exam-count .chart-legends .chart-legend.light-red::before {
  background-color: #ffcc66;
}
.platform-metrics .exam-count .chart-legends .chart-legend.light-grey::before {
  background-color: #cccccc;
}
.platform-metrics .exam-count .chart-legends .chart-legend.grey::before {
  background-color: #999999;
}

.price-cards {
  margin-bottom: 57px;
}
.price-cards-row {
  align-items: center;
  row-gap: 30px;
}
@media only screen and (min-width: 1200px) {
  .price-cards-row .price-card-cont:nth-child(2) .price-card {
    padding: 48px 16px;
  }
}
.price-cards-row .price-card {
  background-color: #f8f8fa;
  border-radius: 24px;
  padding: 24px 16px;
  text-align: center;
  height: 100%;
}
.price-cards-row .price-card-title {
  color: #757575;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.9px;
  margin-bottom: 24px;
}
.price-cards-row .price-card-price {
  color: #092BC8;
  font-family: Poppins;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 3px;
  margin-bottom: 32px;
}
.price-cards-row .price-card-price .azn-symbol {
  position: relative;
  bottom: 5px;
}
.price-cards-row .price-card-duration {
  color: #757575;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.9px;
}
.price-cards-row .price-card-features {
  margin-bottom: 24px;
}
.price-cards-row .price-card-features-item {
  color: #5b5b5b;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.9px;
  text-align: left;
}
.price-cards-row .price-card-btn {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #394ff3;
  color: #092BC8;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.price-cards-row .price-card-btn:hover {
  background-color: #092BC8;
  color: #fff;
}

.success-metrics-overview {
  width: 100%;
  margin-bottom: 35px;
}
.success-metrics-overview-row {
  row-gap: 35px;
  margin-bottom: 30px;
}
.success-metrics-overview-row .success-metrics-count-inner {
  border-radius: 12px;
  background: #f5f5f5;
  padding: 23px 43px;
  height: 242px;
}
@media only screen and (max-width: 1200px) {
  .success-metrics-overview-row .success-metrics-count-inner {
    padding: 15px 18px;
  }
}
.success-metrics-overview-row .success-metrics-count-content {
  width: 100%;
  height: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.success-metrics-overview-row .success-metrics-count-text {
  color: #00bb4a;
  font-family: Poppins;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 3.2px;
}

.subjects-statistics-inner {
  border-radius: 12px;
  background: #f5f5f5;
  padding: 23px 43px;
}
.subjects-statistics-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.subjects-statistics-content .chart-row {
  width: 100%;
  max-width: 900px;
  row-gap: 24px;
}
.subjects-statistics-content .chart-col {
  width: 209px;
  height: 248px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .subjects-statistics-content .chart-col {
    width: 100%;
  }
}
.subjects-statistics-content .chart-col a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .subjects-statistics-content .chart-col canvas {
    width: 209px !important;
    height: 209px !important;
  }
}
.subjects-statistics-content .chart-col .chart-title {
  color: #092BC8;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.9px;
}
@media only screen and (max-width: 768px) {
  .subjects-statistics-content .chart-legend-row {
    width: 100%;
  }
}
.subjects-statistics-content .chart-legend-row .chart-legends {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media only screen and (max-width: 768px) {
  .subjects-statistics-content .chart-legend-row .chart-legends {
    flex-direction: column;
    padding: 0;
  }
}
.subjects-statistics-content .chart-legend-row .chart-legend {
  color: #757575;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.7px;
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
.subjects-statistics-content .chart-legend-row .chart-legend::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 11px;
}
.subjects-statistics-content .chart-legend-row .chart-legend.green::before {
  background-color: #00bb4a;
}
.subjects-statistics-content .chart-legend-row .chart-legend.red::before {
  background-color: #ff0019;
}
.subjects-statistics-content .chart-legend-row .chart-legend.grey::before {
  background-color: #c1c1c1;
}

.balance-container {
  margin-top: 80px;
}
.balance-container .balance-row {
  row-gap: 30px;
}
.balance-container .balance-row .card img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.balance-container .balance-row .card .card-overlay {
  padding: 35px;
}
.balance-container .balance-row .card .card-overlay .card-title {
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.54;
}
.balance-container .balance-row .card .card-overlay .card-amount {
  display: flex;
  align-items: center;
}
.balance-container .balance-row .card .card-overlay .card-amount .card-count {
  color: #fff;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.balance-container .balance-row .card .card-overlay .card-amount .card-currency {
  color: #fff;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 992px) {
  .balance-container .balance-row .card-column {
    display: flex;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .balance-container .balance-row .card-column {
    display: flex;
    flex-direction: column;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.balance-container .balance-row .balance-increases {
  margin-top: 16px;
}
.balance-container .balance-row .balance-increases-btn-group {
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
  cursor: pointer;
}
.balance-container .balance-row .balance-increases-btn-group .plus-btn {
  border-radius: 999px;
  background: #394ff3;
  padding: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.balance-container .balance-row .balance-increases-btn-group .text-btn {
  border-radius: 999px;
  background: #394ff3;
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 5px 10px;
  width: 162px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.balance-container .balance-row .transactions-table {
  overflow: auto;
  height: 368px;
}
.balance-container .balance-row .transactions-table::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.balance-container .balance-row .transactions-table::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: #092BC8;
}
.balance-container .balance-row .transactions-table::-webkit-scrollbar-track {
  border-radius: 99px;
  background: #D9D9D9;
}
.balance-container .balance-row .transactions-table table {
  border: 1px solid #dee2e6;
}
.balance-container .balance-row .transactions-table table thead {
  position: sticky;
}
.balance-container .balance-row .transactions-table table thead th {
  text-align: center;
  font-weight: bold;
  border: 1px solid #dee2e6;
}
.balance-container .balance-row .transactions-table table thead th:first-child {
  border-top-left-radius: 12px;
}
.balance-container .balance-row .transactions-table table tbody {
  height: 326.4px;
  overflow-y: scroll;
}
.balance-container .balance-row .transactions-table table tbody td {
  border: 1px solid #dee2e6;
  text-align: center;
  vertical-align: middle; /* Mətnin mərkəzləşdirilməsi */
}
.balance-container .balance-row .transactions-table table tbody tr {
  border-bottom: 1px solid #dee2e6; /* Satır altı sərhəd */
}
.balance-container .balance-row .transactions-table table tbody tr:last-child {
  border-bottom: none; /* Sonuncu satırda sərhəd olmasın */
}

.rating {
  margin-top: 24px;
}
.rating-inner {
  overflow-x: auto;
}
@media only screen and (max-width: 768px) {
  .rating-inner {
    overflow-x: visible;
  }
}
.rating-inner::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.rating-inner::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: #092BC8;
}
.rating-inner::-webkit-scrollbar-track {
  border-radius: 99px;
  background: #d9d9d9;
}
.rating-inner .custom-table {
  min-width: 1189px;
}
@media only screen and (max-width: 768px) {
  .rating-inner .custom-table {
    display: none;
  }
}
.rating-inner .custom-table table {
  min-width: 882px;
}
.rating-inner .custom-table table thead tr th {
  border: 0.3px solid #fff;
  background: #092BC8;
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.rating-inner .custom-table table .vent-score {
  color: #ed7500;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.rating-inner .form-filter-row {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .rating-inner .form-filter-row {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 24px;
  }
}
.rating-inner .form-filter-row .custom-input {
  position: relative;
  margin-right: 16px;
  max-width: 374px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .rating-inner .form-filter-row .custom-input {
    max-width: 100%;
  }
}
.rating-inner .form-filter-row .custom-input img {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 12px;
  top: 27px;
  transform: translateY(-50%);
}
.rating-inner .form-filter-row .custom-input .form-control {
  padding: 12px 12px 12px 36px;
  border-radius: 999px;
  background: #f7f7f7;
  color: #838383;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
}
.rating-inner .form-filter-row .custom-input .form-control:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
.rating-inner .form-filter-row .custom-select-row {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
@media only screen and (max-width: 768px) {
  .rating-inner .form-filter-row .custom-select-row {
    width: 100%;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.rating-inner .form-filter-row .custom-select {
  display: none;
}
.rating-inner .custom-table-mb {
  width: 100%;
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .rating-inner .custom-table-mb {
    display: none;
  }
}
.rating-inner .custom-table-mb-inner .accordion .accordion-item {
  border: none;
}
.rating-inner .custom-table-mb-inner .accordion .accordion-item .accordion-header .accordion-button {
  position: relative;
  padding: 21px 20px 21px 51px;
  text-align: left;
  justify-content: space-between;
  border: 1px solid #d9d9d9;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  box-sizing: border-box;
}
.rating-inner .custom-table-mb-inner .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.rating-inner .custom-table-mb-inner .accordion .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
.rating-inner .custom-table-mb-inner .accordion .accordion-item .accordion-header .accordion-button::before {
  content: url("../icons/arrow-down-white.svg");
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.2s ease;
  border-radius: 70px;
  background: #092BC8;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rating-inner .custom-table-mb-inner .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(0deg);
}
.rating-inner .custom-table-mb-inner .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #f8f8f8;
  border: none;
}
.rating-inner .custom-table-mb-inner .accordion .accordion-item .accordion-header .accordion-button .vent-score {
  color: #ed7500;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.rating-inner .custom-table-mb-inner .accordion .accordion-item .accordion-collapse .accordion-body {
  display: flex;
  flex-direction: column;
  row-gap: 21px;
}
.rating-inner .custom-table-mb-inner .accordion .accordion-item .accordion-collapse .accordion-body-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select2-container--default .select2-selection--single {
  border-radius: 999px;
  border: none;
  background: #f5f5f5;
  padding: 10px;
  width: 130px;
  height: 44px;
  color: #757575;
  text-align: left;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .select2-container--default .select2-selection--single {
    width: 100%;
  }
}
@media only screen and (max-width: 380px) {
  .select2-container--default .select2-selection--single {
    font-size: 12px;
  }
}
.select2-container--default .select2-selection--single::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 12px;
  background-image: url("../icons/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media only screen and (max-width: 380px) {
  .select2-container--default .select2-selection--single::after {
    width: 18px;
    height: 8px;
  }
}
.select2-container--default .select2-results__options::-webkit-scrollbar {
  width: 4px;
  height: 8px;
}
.select2-container--default .select2-results__options::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: #092BC8;
}
.select2-container--default .select2-results__options::-webkit-scrollbar-track {
  border-radius: 99px;
  background: #d9d9d9;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-radius: 8px;
  background: #f7f7f7;
}
.select2-container--default .select2-selection__arrow {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 999px;
  border-bottom-right-radius: 999px;
}

.select2-dropdown {
  border-radius: 8px !important;
  background-color: #fff !important;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25) !important;
  border: none;
}

.login {
  width: 100%;
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .login {
    padding: 50px 0;
  }
}
.login .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-inner {
  display: flex;
  width: 100%;
  max-width: 535px;
  height: 597px;
  padding: 50px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
  border-radius: 40px;
  background: #f6f6f6;
}
@media only screen and (max-width: 480px) {
  .login-inner {
    padding: 50px 15px;
  }
}
.login-inner .logo {
  width: 250px;
}
.login-inner .login-title {
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.login-inner .login-otp-title {
  color: #140101;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  text-transform: capitalize;
}
.login-inner form {
  width: 100%;
  max-width: 335px;
}
.login-inner form .form-label {
  color: rgba(0, 0, 0, 0.87);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.login-inner form .form-control {
  border-radius: 8px;
  border: 1px solid #c1c1c1;
  background: #fff;
  height: 52px;
}
.login-inner form .col-12:first-child {
  margin-bottom: 12px !important;
}
.login-inner form .forget-password {
  color: #2260ff;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 8px;
}
.login-inner form .login-btn {
  width: 100%;
  margin-top: 30px;
  padding: 15px 40px;
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 999px;
  background: #394ff3;
}
.login .otp-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.login .otp-container-inner {
  width: 100%;
  max-width: 375px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login .otp-container .otp-code-inner {
  max-width: 335px;
}
.login .otp-container .phone-title {
  color: #5a5a5a;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 111.111% */
}
.login .otp-container .otp-title {
  color: #1b1e28;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  margin-bottom: 16px;
}
.login .otp-container .otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.25rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 0 5px;
}
.login .otp-container .resend-cont {
  margin-top: 21px;
}
.login .otp-container .resend-link {
  color: #7d848d;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
  margin-right: 20px;
}
.login .otp-container .resend-link.disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.login .otp-container .resend-link:hover {
  text-decoration: underline;
}
.login .otp-container .timer-text {
  color: #7d848d;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.privacy-policy {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  row-gap: 57px;
  margin-bottom: 130px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .privacy-policy {
    margin-bottom: 170px;
    row-gap: 48px;
  }
}
.privacy-policy-bottom {
  width: calc(100% - 271px);
  height: 90px;
  position: fixed;
  bottom: 0;
  right: 0;
  border-top: 0.5px solid #5a5a5a;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 70px;
}
@media only screen and (max-width: 992px) {
  .privacy-policy-bottom {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .privacy-policy-bottom {
    height: 164px;
    padding: 20px 15px;
  }
}
.privacy-policy-bottom .btn-groups {
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .privacy-policy-bottom .btn-groups {
    flex-direction: column;
    width: 100%;
  }
}
.privacy-policy-bottom .btn-groups .deny-btn {
  border-radius: 999px;
  background: #d9d9d9;
  padding: 15px 40px;
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 768px) {
  .privacy-policy-bottom .btn-groups .deny-btn {
    width: 100%;
  }
}
.privacy-policy-bottom .btn-groups .accept-btn {
  border-radius: 999px;
  background: #394ff3;
  padding: 15px 40px;
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 768px) {
  .privacy-policy-bottom .btn-groups .accept-btn {
    width: 100%;
  }
}
.privacy-policy .text-content h2 {
  color: #414141;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 1.2px;
}
.privacy-policy .text-content p {
  color: #5a5a5a;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.9px;
}

.help-center {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 50px;
}
.help-center-container {
  width: 100%;
}
.help-center-row {
  margin-top: 56px;
  row-gap: 50px;
  align-items: stretch;
}
@media only screen and (max-width: 768px) {
  .help-center-row {
    row-gap: 24px;
  }
}
.help-center-row a {
  text-decoration: none;
}
.help-center-row .card {
  padding: 20px;
  height: 100%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.help-center-row .card-icon {
  width: 44px;
  height: 44px;
}
.help-center-row .card-icon img {
  width: 100%;
}
.help-center-row .card-title {
  color: #092BC8;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 1.05px;
  margin-bottom: 0;
}

.anevent-row {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 21px;
}
.anevent-row .card {
  padding: 20px 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
  border: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .anevent-row .card {
    padding: 20px 15px;
    flex-direction: column;
  }
}
.anevent-row .card-photo {
  border-radius: 8px;
  background: #eee;
  width: 96px;
  height: 96px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .anevent-row .card-photo {
    width: 100%;
    height: 144px;
  }
}
.anevent-row .card-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.anevent-row .card hr {
  width: 0.6px;
  height: 86px;
  background: #898989;
  margin: 0 16px;
}
@media only screen and (max-width: 768px) {
  .anevent-row .card hr {
    width: 100%;
    height: 0.6px;
    margin: 16px 0;
  }
}
.anevent-row .card .card-content {
  width: 85%;
}
@media only screen and (max-width: 768px) {
  .anevent-row .card .card-content {
    width: 100%;
  }
}
.anevent-row .card .card-content-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.anevent-row .card .card-content-top .anevent-icon img {
  width: 14.999px;
  height: 15.807px;
}
.anevent-row .card .card-content-top .anevent-icon span {
  color: #838383;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.anevent-row .card .card-content-top .reader-icon img {
  width: 21px;
  height: 21px;
}
.anevent-row .card .card-content-top .reader-icon span {
  color: #838383;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.anevent-row .card .card-content-middle {
  margin: 6px 0;
}
.anevent-row .card .card-content-middle a {
  text-decoration: none;
}
.anevent-row .card .card-content-middle .card-title {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.anevent-row .card .card-content-middle .card-text {
  color: #838383;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.anevent-row .card .card-content-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.anevent-row .card .card-content-bottom .share-icon {
  text-decoration: none;
}
.anevent-row .card .card-content-bottom .share-icon img {
  width: 17px;
  height: 18.133px;
}
.anevent-row .card .card-content-bottom .share-icon span {
  color: #838383;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.anevent-container {
  margin-top: 30px;
}
.anevent-container .anevent-main-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.anevent-container .anevent-content-details {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .anevent-container .anevent-content-details {
    margin-top: 21px;
  }
}
.anevent-container .anevent-content-details .author-icon img {
  width: 18px;
  height: 18px;
}
.anevent-container .anevent-content-details .author-icon span {
  color: #838383;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.anevent-container .anevent-content-details .reader-icon img {
  width: 21px;
  height: 21px;
}
.anevent-container .anevent-content-details .reader-icon span {
  color: #838383;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.anevent-container .anevent-content-title {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 18px;
}
.anevent-container .anevent-content-text {
  color: #838383;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 36px;
}

.vacancies-container .page-desc {
  margin-top: 24px;
}
.vacancies-container .page-desc p {
  color: #4c4c4c;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.9px;
  margin-bottom: 0;
}
.vacancies-container .row {
  margin-top: 40px;
  row-gap: 21px;
}
@media only screen and (max-width: 768px) {
  .vacancies-container .row .vacancy:nth-child(4), .vacancies-container .row .vacancy:nth-child(5) {
    display: flex;
  }
}
@media only screen and (max-width: 768px) {
  .vacancies-container .row .vacancy .card-more {
    display: block !important;
  }
}

.vacancy-single-container .page-details {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  margin-top: 24px;
}
.vacancy-single-container .page-details span {
  color: #838383;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}
.vacancy-single-container .page-details .page-date {
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
.vacancy-single-container .page-details .page-count {
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
.vacancy-single-container .page-details img {
  width: 18px;
  height: 18px;
}
.vacancy-single-container .vacancy-single-inner {
  margin-bottom: 40px;
}
.vacancy-single-container .vacancy-single-inner .vacancy-single-subtitle {
  margin-top: 24px;
  color: #000;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
}
.vacancy-single-container .vacancy-single-inner .vacancy-single-list-item {
  color: #3c3c3c;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.vacancy-single-container .vacancy-form {
  margin-bottom: 100px;
}
.vacancy-single-container .vacancy-form .img-card .card {
  border-radius: 12px 0px 0px 12px;
  border: 0.2px solid #000;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .vacancy-single-container .vacancy-form .img-card {
    display: none;
  }
}
.vacancy-single-container .vacancy-form #motivationLetter {
  height: 116px;
  resize: none;
}
.vacancy-single-container .vacancy-form #certificatiUploadCont {
  display: none;
}
.vacancy-single-container .vacancy-form .vacany-btn {
  justify-content: flex-end;
}/*# sourceMappingURL=style.css.map */
