@font-face {
  font-family: gilroy-light;
  src: url(../fonts/gilroy/Gilroy-Light.ttf);
}
@font-face {
  font-family: gilroy-regular;
  src: url(../fonts/gilroy/Gilroy-Regular.ttf);
}
@font-face {
  font-family: gilroy-medium;
  src: url(../fonts/gilroy/Gilroy-Medium.ttf);
}
@font-face {
  font-family: gilroy-bold;
  src: url(../fonts/gilroy/Gilroy-Bold.ttf);
}
@font-face {
  font-family: gilroy-extrabold;
  src: url(../fonts/gilroy/Gilroy-ExtraBold.ttf);
}

body {
  font-family: gilroy-regular;
}
.heading-bold {
  font-family: gilroy-bold;
}
.body-text {
  font-family: gilroy-medium;
}
.justify {
  text-align: justify;
}

.gilroy-light {
  font-family: gilroy-light;
}

.gilroy-regular {
  font-family: gilroy-regular;
}

.gilroy-medium {
  font-family: gilroy-medium;
}

.gilroy-bold {
  font-family: gilroy-bold;
}

.gilroy-extrabold {
  font-family: gilroy-extrabold;
}

:root {
  --themeprimary: #32a042;
  --themesecondary: #fff;
  --themetertiary: #002a4dcc;
  --themefourth: #002c4f;
  --themefifth: #3c3e46;
}

.bg-themeblue {
    background: #2c7fc1;
}

main.wrapper {
  margin-top: 180px;
}

/* Main navigation start */

.main-nav-top-shadow{
  box-shadow: 0px 3px 6px 1px #000000;
  position: relative;
}

.bg-themetertiary {
  background-color: var(--themetertiary);
}
#main-navigation {
  background-color: var(--themetertiary);
  box-shadow: 0px 2px 6px #707070;
}
#main-navigation .nav-link {
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  padding-block: 12px;
  letter-spacing: 0.5px;
}
#main-navigation .nav-link.active {
  background-color: var(--themefourth);
}
#main-navigation .navbar-toggler {
  background-color: white;
}
.brand-logo img {
  max-width: 300px;
}
/* Main navigation ends */

.btn-themeprimary {
  background-color: var(--themeprimary);
  border-color: var(--themeprimary);
}
.btn-themeprimary:hover {
  background-color: #36b849;
  border-color: #36b849;
}
.text-themeprimary {
  color: var(--themeprimary);
}
/* CTA button */
.cta-btn {
  font-family: gilroy-medium;
  text-decoration: none;
  background-color: var(--themeprimary);
  text-transform: uppercase;
  color: white;
  font-size: 22px;
  padding: 8px 16px;
  border-radius: 0 0 0 20px;
  box-shadow: 0px 1px 3px black;
}

/* Line heading */
.line-heading {
  color: var(--themefifth);
  position: relative;
  text-transform: uppercase;
  text-align: center;
  font-family: gilroy-bold;
}
.line-heading::before,
.line-heading::after {
  content: "";
  position: absolute;
  background-color: var(--themefifth);
  width: 250px;
  height: 2px;
}
/* section background */
.green-background {
  background-color: #effbf6;
  border-radius: 60px 0px 60px 0px;
}

/* footer styles start */
.footer-spacer {
  height: 1px;
  background: white;
  margin-block: 30px;
}

#multicolor-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

footer.the-footer {
  padding-block: 60px;
  background-image: url("../../frontend/images/footer-background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.the-footer p {
  font-family: gilroy-regular;
}
.footer-bg-overlay {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1f2a37e6;
  z-index: 0;
  top: 0;
}
.footer-heading {
  font-family: gilroy-extrabold;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--themeprimary);
}
.footer-accreditations {
  display: flex;
  gap: 40px;
}

#multicolor-line span {
  height: 8px;
}
#multicolor-line span:nth-child(5) {
  background-color: #c37a2a;
}
#multicolor-line span:nth-child(4) {
  background-color: #32a042;
}
#multicolor-line span:nth-child(3) {
  background-color: #1c75bc;
}
#multicolor-line span:nth-child(2) {
  background-color: #ffaf00;
}
#multicolor-line span:nth-child(1) {
  background-color: #9a9ca6;
}
/* footer styles end */

@media screen and (min-width: 992px) and (max-width: 1400px) {
  .line-heading {
    font-size: 26px;
  }
  .line-heading::before,
  .line-heading::after {
    width: 190px;
  }
}
@media screen and (max-width: 992px) {
  .cta-btn {
    font-size: 16px;
  }
  .brand-logo img {
    width: 160px;
  }
  .footer-accreditations {
    flex-direction: column;
    gap: 15px;
  }
  .line-heading {
    font-size: 22px;
  }
  .line-heading::before,
  .line-heading::after {
    display: none;
  }

  main.wrapper {
    margin-top: 110px;
  }
  .main-nav-top-shadow{
    display: none;
  }
}
@media screen and (max-width: 576px) {
  footer.the-footer {
    padding-block: 30px;
  }
  .footer-spacer {
    margin-block: 20px;
  }
}
