@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

/* Header scroll effect */
.navbar-scrolled {
  background-color: rgba(233, 233, 255, 0.8) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease-in-out;
}

.back-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.faqs-container {
  .active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .active,
  .accordion:hover {
    background-color: #eae5e5;
  }

  /* .open {
    border-radius: 0px 0px 5px 5px;
    background: #F6FAFF;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  } */

  .accordion:after {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 9 6' fill='none'><path d='M1 1L4.54167 4.54167L8.08333 1' stroke='black' stroke-width='1.41677' stroke-linecap='round'/></svg>");
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 10px;
  }

  .active:after {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 9 6' fill='none'><path transform='rotate(180 4.5 3)' d='M1 1L4.54167 4.54167L8.08333 1' stroke='black' stroke-width='1.41677' stroke-linecap='round'/></svg>");
  }
}

.main-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: space-between;
  gap: 1rem;
}

.smScreenNavList {
  transform: scaleY(0);
}

.smScreenNavList.active {
  transform: scaleY(1);
}

.top-right-border {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 70px;
  height: 70px;
  border-top: 5px solid #0a2558;
  border-right: 5px solid #0a2558;
  border-top-right-radius: 20px;
}

.bottom-left-border {
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 70px;
  height: 70px;
  border-bottom: 5px solid #0a2558;
  border-left: 5px solid #0a2558;
  border-bottom-left-radius: 20px;
}

@media screen and (max-width: 800px) {
  /* html {
    font-size: 14px;
  } */

  .main-footer .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .main-footer .footer-content>div:first-child {
    grid-column: span 4 / span 4;
    text-align: center;
  }
}

@media screen and (max-width: 476px) {
  .main-footer .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .main-footer .footer-content>div:nth-child(3),
  .main-footer .footer-content>div:last-child {
    grid-column: span 4 / span 4;
  }

  .main-footer .footer-content>div:nth-child(3) ul,
  .main-footer .footer-content>div:last-child ul {
    text-align: center;
  }

  .faqs-container {
    .accordion:after {
      content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6' fill='none'><path d='M1 1L4.54167 4.54167L8.08333 1' stroke='black' stroke-width='1.41677' stroke-linecap='round'/></svg>");
    }

    .active:after {
      content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6' fill='none'><path transform='rotate(180 4.5 3)' d='M1 1L4.54167 4.54167L8.08333 1' stroke='black' stroke-width='1.41677' stroke-linecap='round'/></svg>");
    }
  }

  .back-icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}