/* *********Font face declaration ***********/
@font-face {
  font-family: 'Montserrat';
  src: url('/landing/assets/fonts/Montserrat-Italic-VariableFont_wght.ttf') format('ttf-variations');
  src: url('/landing/assets/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 1000;
  font-stretch: 25% 151%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat';
}

:root {
  --whiteColor: #FFFFFF;
  --blackColor: #000000;
  --greenColor: #2A9D36;
  --darkGreenColor: #366835;
  --darkGrayColor: #353535;
  --redColor: #D82A4E;
  --yellowColor: #FFCC00;
  --lightGrayColor: #C8C8C8;
  --lighterGrayColor: #989898;
  --backgroudColor: #EAEBEC;
  --searchBarGrayColor: #E9EBE9;
}

body {
  background-color: var(--backgroudColor);
}

.header {
  width: 100%;
  height: 275px;
  background-image: url('/landing/assets/images/small-frame.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.header-long {
  height: 725px;
  background-image: url('/landing/assets/images/big-frame.png')
}

.header-shorter {
  height: 210px;
}

@media (max-width: 700px) {
  .header {
    /* height: 100%; */
    background-image: url('/landing/assets/images/big-frame.png');
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.main-wrapper {
  width: 100%;
  position: absolute;
  display: flex;
  top: 0;
  justify-content: space-evenly;
}

/* Left side of the web page */

.left-wrapper {
  height: 95%;
  width: 25%;
  margin: 20px 0;
}

.cards {
  background-color: var(--whiteColor);
  border-radius: 15px;
  padding: 10px;
}

.card {
  background-color: var(--lightGrayColor);
  border-radius: 15px;
  padding: 15px;
}

.card-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 25px;
}

.card-text .title {
  font-size: 33.5px;
  font-weight: bold;
  line-height: 2rem;
  margin: 10px 0;
}

.card-text .subtitle {
  font-size: 17.65px;
  margin-top: 10px;
}

.arrow-icon {
  background-color: var(--whiteColor);
  padding: 8px 10px;
  border-radius: 12px;
}

.other-arrow-icon {
  background-color: var(--darkGrayColor);
}

.outer-card {
  background-image: linear-gradient(180deg, var(--blackColor), transparent);
  padding: 2px;
  border-radius: 16px;
}

.other-card {
  background-color: var(--whiteColor);
}

.card-spacing {
  margin-bottom: 15px;
}

@media (max-width: 1140px) {
  .card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card-text .subtitle {
    margin: 20px 0;
  }
}

.faq {
  border: 2px dashed var(--blackColor);
  display: flex;
  margin-top: 25px;
  border-radius: 18px;
  padding: 15px;
  align-items: center;
  justify-content: space-between;
}

.faq .faq-title {
  font-size:  25px;
  font-weight: bold;
  margin: 0 15px;
}

.faq .faq-subtitle {
  font-size: 14px;
}

@media (max-width: 1140px) {
  .faq {
    flex-direction: column;
    justify-content: center;
  }

  .faq .faq-subtitle {
    text-align: center;
  }

  .faq .faq-title {
    margin: 10px 0;
  }

  .faq .faq-subtitle {
    margin-bottom: 10px;
  }
}

/* End of Left side of the web page */

/* Right side fo the web page */

.right-wrapper {
  height: 100%;
  width: 65%;
  margin: 20px 0;
}

.right-wrapper-long {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.right-wrapper-index {
  width: 85%;
}

@media (max-width: 430px) {
  .right-wrapper-long {
    height: 80vh;
  }
}

/* Navbar */
.desktop-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-navbar {
  display: none;
  border-bottom: 1px solid var(--whiteColor);
  padding-bottom: 10px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo {
  width: 55px;
}

.word-logo {
  font-size: 27px;
  margin-left: 15px;
  color: var(--whiteColor);
}

.word-logo span {
  color: var(--greenColor);
  font-weight: 900;
}

.navbar-links ul {
  display: flex;
  list-style-type: none;
  gap: 25px;
}

.navbar-links ul li {
  height: 100%;
  padding: 15px 0;
}

.navbar-links ul li a {
  text-decoration: none;
  color: var(--whiteColor);
  font-size: 14px;
}

.navbar-links ul li a:hover {
  color: var(--yellowColor);
}

.navbar-links ul .activee {
  border-top: 2px solid var(--yellowColor);
}

.navbar-links ul .activee a {
  color: var(--yellowColor);
  font-weight: 900;
}

.right-navbar {
  display: flex;
  align-items: center;
}

.language {
  background-color: var(--darkGreenColor);
  color: var(--whiteColor);
  padding: 8px 0;
  margin-right: 15px;
  border-color: var(--darkGreenColor);
  border-radius: 5px;
}

.language:focus {
  outline: none;
}

.login-btn {
  display: flex;
  align-items: center;
  border: 1px solid var(--yellowColor);
  padding: 5px 35px;
  border-radius: 8px;
}

.login-btn p {
  color: var(--yellowColor);
  font-weight: 600;
  margin-left: 8px;
}

.login-btn:hover {
  cursor: pointer;
}

/* End of navbar */

/* header */

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

.top-header-icon {
  display: none;
}

.top-header-text {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
}

.top-header-text-bigger {
  align-items: end;
  padding-top: 100px;
}

.top-header-text-index-spacing {
  padding: 50px 0 60px 0;
}

.header-title-wrapper {
  display: block;
}

.header-top-title {
  display: flex;
  font-size: 25px;
  font-weight: 200;
  color: var(--whiteColor);
}

.header-top-title-bigger {
  font-size: 50px;
}

.header-top-title svg {
  margin-left: 10px;
}

.header-bottom-title {
  font-size: 35px;
  font-weight: 900;
  color: var(--whiteColor);
}

.header-bottom-title-bigger {
  font-size: 92px;
}

.header-bottom-title-index {
  margin-right: 20px;
  position: relative;
}

@media (min-width: 1355px) {
  .header-bottom-title-index p span {
    display: block;
  }
}

.header-bottom-title-index svg {
  margin-top: -30px;
  position: absolute;
  z-index: 2;
}

.right-top-header {
  width: 250px;
}

.extra-spacing {
  width: 450px;
  text-align: end;
}

.right-top-header p {
  font-size: 12px;
  color: var(--whiteColor);
  line-height: 1.2rem;
}

.line-divider {
  width: 100%;
  height: 1px;
  background-color: var(--whiteColor);
}

.search-bar {
  display: flex;
  background-color: var(--whiteColor);
  justify-content: space-between;
  padding: 6px;
  border-radius: 11px;
  margin-top: 15px;
}

.search-fields {
  display: flex;
  background-color: var(--searchBarGrayColor);
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
}

.input-field {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.input-field svg {
  margin: 0 10px;
}

.input {
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: none;
}

.input:focus {
  outline: none;
}

.divider {
  height: 60%;
  width: 3px;
  background-color: var(--lighterGrayColor);
  margin: 0 10px;
  border-radius: 50px;
}

.dropdown {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  margin-right: 10px;
}

.dropdown:focus {
  outline: none;
}

.search-btn {
  display: flex;
  align-items: center;
  background-color: var(--greenColor);
  padding: 8px 45px;
  margin-left: 10px;
  border-radius: 6px;
}

.search-btn p {
  color: var(--whiteColor);
  margin-right: 10px;
}

.search-btn:hover {
  cursor: pointer;
}

/* End of header */


/* Search results section */

.search-results {
  margin-top: 40px;
  background-color: var(--whiteColor);
  border-radius: 20px;
  padding: 30px 15px;
}

.search-results-title {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.search-results-title div {
  width: 80%;
  height: 1px;
  background-color: var(--lighterGrayColor);
}

.result-list {
  margin-top: 10px;
  height: 420px;
  overflow-y: scroll;
  padding-right: 10px;
}

.result-list-pay-fee {
  height: 485px;
}

.result-list::-webkit-scrollbar {
  width: 5px;
  margin-left: 50px;
}

.result-list::-webkit-scrollbar-track {
  background-color: #EAEBEC;
  border-radius: 50px;
}

.result-list::-webkit-scrollbar-thumb {
  background-color: var(--greenColor);
  border-radius: 50px;
}


.result-item {
  display: flex;
  align-items: center;
  background-color: var(--searchBarGrayColor);
  justify-content: space-between;
  border-radius: 8px;
  margin-bottom: 10px;
  height: 125px;
}

.profile {
  display: flex;
  align-items: center;
}

.profile-pic {
  width: 128px;
  height: 116px;
  border-radius: 10px;
  margin: 5px;
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.logo-img {
  width: 80px;
  height: 80px;
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}

.profile-info {
  margin-left: 8px;
}

.profile-info .title {
  background-color: var(--darkGrayColor);
  color: var(--whiteColor);
  width: fit-content;
  padding: 4px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

.payment-details {
  height: 100%;
  display: flex;
  align-items: center;
}

.profile-info .payment-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.profile-info .payment-subtitle {
  font-size: 12px;
  padding-right: 30px;
}

.payment-btn {
  background-color: #136E12;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: space-between;
  padding: 5px 6px;
  border-radius: 5px;
  align-self: flex-end;
  margin-bottom: 15px;
}

.payment-btn p {
  font-size: 11px;
  color: var(--whiteColor);
}

.payment-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.code-link {
  display: flex;
  justify-content: space-between;
  width: 230px;
}

.code-link .label {
  color: #939393;
  font-size: 10px;
}

.code-link .sd-link {
  font-size: 10px;
}

.profile-info .exams {
  background-color: #FF7A00;
}

.profile-info .tuition {
  background-color: #11935f;
}

.profile-info .exam {
  background-color: #ce1c8d;
}

.profile-info .subtitle {
  font-size: 18px;
  margin-top: 10px;
}

.top-right-result-item {
  display: flex;
  justify-content: space-evenly;
  padding-top: 12px;
  align-items: center;
}

.top-right-result-item .student-class {
  font-size: 17px;
  font-weight: 700;
}

.top-right-result-item .student-year {
  font-size: 15px;
}

.top-right-result-item .label {
 font-size: 10px;
 color: #939393;
 font-weight: 900;
}

.label-spacing {
  margin-top: 10px;
}

.gender {
  background-color: #D7E0D7;
  padding: 10px 12px;
  border-radius: 10px;
}

.gender p {
  color: var(--greenColor);
  font-weight: bold;
  font-size: 20px;
}

.momo-logo {
  padding: 3px 5px;
  display: flex;
  align-items: center;
  width: fit-content;
}

.payment-detail {
  /* background-color: red; */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.payment .label {
  font-size: 10px;
  color: #939393;
  font-weight: 900;
}

.momo-logo img {
  width: 30px;
  height: 30px;
}

.bottom-right-result-item {
  display: flex;
  align-items: center;
  justify-content: end;
  align-self: flex-end;
  background: linear-gradient(90deg, #6F6F6F00 0%, #9D9D9D 21%, #676767 100%);
  padding: 1px 18px;
  border-bottom-right-radius: 8px;
  width: 300px;
}

.bottom-right-result-item .matricul-text {
  font-size: 8px;
  color: var(--whiteColor);
  font-weight: bold;
  margin-right: 5px;
}

.bottom-right-result-item .actual-matricule {
  font-size: 15px;
  font-weight: bold;
  color: var(--whiteColor);
  margin-left: 5px;
}

/* End of main section */

.footer {
  background-color: var(--darkGrayColor);
  /* position: fixed;
  bottom: 0; */
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 4px 40px;
  margin-top: 20px;
}

.footer-links ul {
  display: flex;
  list-style-type: none;
  gap: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: var(--whiteColor);
  font-size: 13px;
}

.footer-info {
  display: flex;
  gap: 10px;
}

.footer-info p {
  color: var(--whiteColor);
  font-size: 13px;
}


/* Mobiel responsiveness */

@media (max-width: 1030px) {
  .left-wrapper {
    display: none;
  }

  .right-wrapper {
    width: 95%;
  }

  .header {
    height: 255px;
  }

  /* Navbar */

  .navbar {
    display: block;
  }

  .desktop-navbar {
    display: none;
  }

  .mobile-navbar {
    display: block;
    display: flex;
    justify-content: space-between;
  }

  .icon-logo-wrapper {
    width: 35px;
    height: 35px;
    background-color: var(--greenColor);
    border-radius: 4px;
  }

  .mobile-logo {
    width: 100%;
    height: 100%;
  }

  .mobile-word-logo {
    color: var(--whiteColor);
    margin-left: 10px;
  }

  .mobile-word-logo span {
    color: var(--greenColor);
    font-weight: 900;
  }

  .mobile-signin {
    display: flex;
    align-items: center;
  }

  .mobile-signin-text {
    display: flex;
    align-items: center;
    margin-right: 15px;
  }

  .mobile-signin-text p {
    color: var(--whiteColor);
    font-size: 12px;
    margin-right: 5px;
  }  
}

.payment-info-mobile {
  display: none;
}

@media (max-width: 700px) {
  .code-link {
    display: none;
  }

  .payment-methods .payment-title {
    font-size: 13px;
  }

  .payment-methods .payment-subtitle {
    font-size: 12px;
    width: 100%;
    margin-left: 0;
  }

  .payment-details {
    align-items: start;
    position: relative;
    padding: 2px;
  }

  .payment-btn p {
    display: none;
  }

  .header-bottom-title-index svg {
    display: none;
  }

  .extra-spacing {
    text-align: start;
  }

  .line-divider {
    display: none;
  }

  .header-title-wrapper-flex {
    display: flex;
    gap: 5px;
  }

  .header {
    height: 100vh;
  }

  .header-bottom-title {
    font-size:  25px;
    font-weight: 400;
  }

  .header-bottom-title-bigger {
    font-size: 62px;
    font-weight: 900;
  }

  .header-top-title {
    font-weight: 400;
  }

  .header-top-title-bigger {
    font-size: 40px;
    display:flex;
    flex-direction: column-reverse;
  }

  .mobile-space {
    margin-bottom: 40px;
  }

  .header-top-title svg {
    display: none;
  }

  .header-top-title-bigger svg {
    display: block;
  }

  .search-bar {
    display: block;
  }

  .search-fields {
    display: block;
  }

  .input {
    height: 60px;
  }

  .divider {
    width: 90%;
    height: 1px;
    margin: 0 auto;
  }

  .dropdown {
    height: 60px;
  }

  .search-btn {
    margin-top: 10px;
    justify-content: center;
    margin-left: 0;
  }

  .top-header-icon {
    display: block;
    padding: 20px 30px;
  }

  .top-header-text {
    display: block;
    width: 100%;
    padding: 5px 10px;
  }

  .right-top-header {
    width: 100%;
    margin-top: 5px;
  }

  .profile-info .title {
    font-size: 9px;
  }

  .profile-info .subtitle {
    font-size: 12px;
  }

  .top-right-result-item .label {
    font-size: 10px;
  }

  .top-right-result-item .student-year {
    font-size: 10px;
  }

  .top-right-result-item .student-class {
    font-size: 10px;
  }

  .bottom-right-result-item .matricul-text {
    font-size: 6px;
  }

  .bottom-right-result-item .actual-matricule {
    font-size: 12px;
  }

  .search-results {
    resize: vertical;
    overflow: auto;
  }

  .search-results-title p {
    font-size: 12px;
  }

  .profile-pic {
    width: 90px;
  }

  .bottom-right-result-item {
    width: 200px;
  }
  
  .payment-info-mobile {
    display: flex;
    bottom: 2px;
    left: 10px;
    border-top: 1px solid var(--blackColor);
    position: absolute;
    width: 95%;
    align-self: center;
  }

}

@media (max-width: 600px) {
  .info {
    display: grid;
  }

  .profile-info {
    grid-column: 1;
  }

  .payment-details {
    display: flex;
  }

  .top-right-result-item {
    grid-row: 2;
    grid-column: 1 / span 2;
  }

  .label-spacing {
    margin-top: 0;
  }

  .class-info {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: space-evenly;
  }

  .gender {
    grid-column: 2;
  }
}

/* Floating message */

.floating-message {
  background-color: var(--redColor);
  padding: 10px;
  border-radius: 50%;
  position: fixed;
  bottom: 50px;
  right: 50px;
  box-shadow: 8px 8px 30px 0px;
}

/* End of floating message */


/* Menu */
.menu {
  width: 70%;
  height: 100vh;
  background-color: var(--darkGrayColor);
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 20px 0 50px;
}

.menu-logo-wrapper {
  display: block;
}

.menu-logo {
  width: 140px;
  height: 140px;
  background-color: var(--greenColor);
  border-radius: 10px;
}

.menu-word-logo {
  font-size: 20px;
  margin-left: 0;
}

.menu-items ul {
  list-style-type: none;
  margin-top: 20px;
}

.menu-items ul li a {
  display: flex;
  align-items: center;
  padding: 12px 0;
  text-decoration:  none;
}

.menu-items ul li a span {
  color: var(--whiteColor);
  margin-left: 10px;
}

.position-btn {
  position: absolute;
  bottom: 30px;
}

.overlay {
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6.5px);
  top: 0;
  bottom: 0;
  filter: blur(20px);
  -webkit-filter: blur(1px);
}

.menu-overlay {
  display: none;
}

.close-menu {
  position: absolute;
  right: 30px;
  top: 30px;
}

/* End of menu */

/* Second section */
.second-section {
  display: flex;
  align-items: center;
  margin: 10px 0;
  gap: 60px;
  padding: 0 60px;
}

.second-section-main {
  justify-content: center;
}

.second-section .faq {
  margin-top: 0;
  max-width: 350px;
}

.vector-image {
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  max-height: 70px;
  position: relative;
  width: 65%;
}

.vector-image img {
  min-height: 120px;
  width: 250px;
  position: absolute;
  bottom: 5px;
}

.vector-image div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  gap: 2rem;
  margin-right: 1px;
  width: 65%;
}

@media (max-width: 1140px) {
  .second-section .faq {
    flex-direction: row;
  }

  .header-long {
    height: 725px;
    background-image: url('/landing/assets/images/big-frame.png')
  }
}

@media (max-width: 1030px) {
  .second-section {
    display: none;
  }

  .footer {
    margin-top: 0;
  }

  .header-long {
    border-radius: 0;
  }
}

@media (max-width: 800px) {
  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-info {
    margin: 10px 0;
  }
}

@media (max-width: 530px) {
  .footer-links ul li a {
    font-size: 9px;
  }

  .footer-info p {
    font-size: 9px;
  }
  
  .footer {
    padding: 0 10px;
  }
}

@media (max-width: 550px) {
  .payment-methods .payment-subtitle {
    font-size: 9px;
  }

  .payment-methods .payment-title {
    padding-top: 0;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }
}

.active-faq {
  border: none;
  background-color: var(--lighterGrayColor);
}

.search-results-title-adjust div {
  width: 75%;
}

.faq-item {
  display: flex;
  align-items: center;
  background-color: var(--searchBarGrayColor);
  justify-content: space-between;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 15px;
}

.faq-text {
  margin-right: 100px;
}

.faq-text-tittle {
  font-size: 22px;
  font-weight: 550;
}

.faq-text-subtitle {
  font-size: 15px;
  color: var(--darkGrayColor);
}

.close-faq, .faq-text-subtitle {
  display: none;
}

.faq-item svg:hover {
  cursor: pointer;
}

@media (max-width: 700px) {
  .faq-text {
    margin-right: 0px;
  }

  .faq-text-tittle  {
    font-size: 13px;
  }

  .faq-text-subtitle {
    font-size: 10px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .header-title-wrapper-flex {
    display: block;
  }

  body {
    background-color: var(--darkGrayColor);
  }
}