@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --brand: #FEC76F;
    --yellow: #F07C00;
    --brand_dark: #0540a8;
    --dark_blue: #000000;
    --dark: #000000;
    --grey: #EBEBEB;
    --white: #ffffff;
    --light: #fefefe;
    --border-color: #707070;
    --body-text-color: #212121; 
    --body-font: "Montserrat", sans-serif; 
}

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

html {
    font-size: 16px;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #FEFEFE;
    text-rendering: optimizeLegibility;
    font-family: var(--body-font);
    line-height: 1.6;
    font-size: 1rem;
    color: var(--body-text-color);
    font-weight: 400; 
}

.bg-primary { background-color: var(--brand) !important; }
.bg-light { background-color: rgba(34, 70, 136, 0.1) !important; }
.text-primary { color: var(--brand) !important; }
.btn { padding: .625rem 1.25rem; }
.btn-primary { background-color: var(--brand);border-color: var(--brand);color: var(--dark);font-weight: 600;border-radius: .5rem; }
.btn-primary:hover, .btn-primary:focus, .btn-primary:active { background-color: var(--dark);border-color: var(--dark);color: var(--white); }

.navbar .navbar-brand img { height: 4rem;width: auto; }
.navbar .navbar-nav li a { color: var(--dark); }
.navbar .navbar-nav li a:hover { color: var(--brand); }


.round { border-radius: 1.5rem; }
.object-fit-cover { object-fit: cover; }
.header__wrapper .thumbnail { height: 600px;width: auto;object-position: center bottom; }
.header__wrapper .banner { object-position: center top; }

@media (max-width: 575px) {
  .header__wrapper .thumbnail { height: auto; }
}


.feature__card .card-icon { width: 4rem;height: 4rem; }
.feature__card .card-icon img { width: 2.5rem;height: 2.5rem; }
.whyChooseCarousel .owl-stage, .whyChooseCarousel .owl-item { display: flex; }

.owl-dots { display: flex;justify-content: center;gap: .5rem;padding-top: 1rem; }
.owl-dots .owl-dot { width: 10px;height: 10px;border-radius: 50%;background-color: #9b9b9b !important;}
.owl-dots .owl-dot.active { background-color: var(--dark) !important;}

.join__wrapper .overlay { background-color: #224588;height: 100%; }
@media (min-width: 1200px) {
    .join__wrapper { margin-top: -7rem; }
    .join__wrapper .overlay { height: calc(100% - 7rem); }

}
.join__wrapper .btn-white { background-color: var(--white);border: 1px solid var(--white); }

.involve__list .icon { width: 4rem;height: 4rem; }
.involve__list .icon svg { width: 2.5rem;height: 2.5rem; }

.list-square li { list-style-type: square; }
.list-square li::marker { color: #FEC76F;font-size: 1.25rem; }

.accordion .accordion-item { background-color: #FAF7F7; }


footer {
    background-color: var(--dark);
    padding: 3rem 0 2rem 0;
  }
  footer .logo img {
    height: 5rem;filter: contrast(0) brightness(10);
  }
 
  footer .label {
    color: #fff7d1;
  }
  footer a {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 0.937rem;text-decoration: none;
    color: var(--white);
  }
  footer a:hover {
    text-decoration: underline;
    color: var(--brand);
  }
  footer .form__wrap {
    border: 1px solid #fff9cf;
  }
  footer .form__wrap .form-control {
    background-color: transparent;
    border: 0;
    color: var(--white);
  }
  footer .form__wrap .btn {
    width: 3rem;
    height: 3rem;
    background-color: #fff9cf;
  }
  footer .icon__box {
    width: 3.5rem;
    height: 3.5rem;
  }
  footer .links li {
    position: relative;
  }
  footer .links li a {
    padding-left: 0.75rem;
  }
  footer .links li::before {
    content: "|";
    position: absolute;
    top: 0;
    left: 0;
  }
  footer .border-top {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  footer .copyright__wrapp {
    background-color: #600129;
  }
  .social__links a svg { width: 2rem;height: 2rem; }
  /*---------------------- Back to Top Css --------------*/
  .backTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    min-height: auto;
    height: 3.5rem;
    z-index: 999;
    border: 2px solid var(--white);
    display: none;
  }
  .backTop svg {
    width: 1.875rem;
    height: 1.875rem;
  }
  .backTop svg path {
    fill: var(--white);
  }
  .backTop:hover, .backTop:focus, .backTop:active {
    background-color: var(--dark);
  }
  .backTop.show {
    display: flex;
  }
  
  @media (max-width: 767.99px) {
    footer .logo__main {
      max-height: 6rem;
      width: auto;
    }
    footer .logo {
      max-height: 4rem;
      width: auto;
    }
  }
  @media (max-width: 575.99px) {
    footer { padding-bottom: 6rem; }
    .backTop {
      bottom: 2rem;
      right: 1rem;
    }
    .backTop svg {
      width: 1.5rem;
      height: 1.5rem;
    }
  }
.fixed__apply__btn { top: 50%;right: -7rem;z-index: 99;transform: rotate(90deg); }

@media (max-width: 575.99px) {
  .fixed__apply__btn { top: auto;right: 10%;transform: none;bottom: 1rem;width: 80%;font-size: 1rem !important; }
}