:root {
    --primary-color: #007aca;
    --secondary-color: #373287;
    --dark-blue: #004C9A;
}
.msgPanel
{
  display : none;
  position : fixed !important;
  max-width : 300px !important;
  right : 3% !important;
  top: 8% !important;
  z-index : 1060 !important;
  font-weight: bold;
}
/* Navbar */
#mainNav {
    min-height: 56px;
    background-color: #fff;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.28);
    border-bottom: 0.2rem solid var(--primary-color);
    z-index: 11;
}

#mainNav .navbar-toggler {
    font-size: 80%;
    padding: 0.75rem;
    color: var(--dark-blue);
    border: 1px solid var(--dark-blue);
}

#mainNav .navbar-toggler:focus {
    outline: 0;
    box-shadow: none;
}

#mainNav .navbar-brand {
    color: #161616;
    font-weight: 700;
    padding: 0.9rem 0;
}

#mainNav .nav-link {
    color: #999;
    text-transform: uppercase;
    border-bottom: 0.25rem solid transparent;
    font-size: 0.8rem;
    padding: 1rem 0.5rem;
    transition: all 0.2s ease-in-out;
}

#mainNav .nav-link:hover,
#mainNav .nav-link:active,
#mainNav .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

@media (min-width: 992px) {
    #mainNav {
        padding-top: 0;
        padding-bottom: 0;
    }

    #mainNav .navbar-brand img {
        max-height: 120px;
    }

    #mainNav .nav-link {
        line-height: 1;
        padding: 2rem 0.5rem 1.5rem;
    }
}

@media (max-width: 991px) {
    .navbar-brand img {
        max-width: 40%;
    }

    #mainNav .navbar-toggler {
        color: var(--secondary-color);
        border-color: var(--secondary-color);
    }
}

#loader
{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: gray;
    opacity: 0.8;
    z-index: 9999;
    display: none;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
  }
  .lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
  }
  .lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
  }
  .lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
  }
  .lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
  }
  .lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
  }
  .lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
  }
  .lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
  }
  .lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
  }
  .lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
  }
  .lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
  }
  .lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
  }
  .lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
  }
  .lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
  }
  .lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
  }
  .lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
  }
  .lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
  }
  .lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
  }
  .lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
  }
  @keyframes lds-roller {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
/* Carousel */
.carousel-item {
    height: 35rem;
    min-height: 35rem;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background-color: rgba(0, 0, 0, 0.75);
    width: 100%;
    left: 0;
    padding: 2rem 1rem;
}

.carousel-caption h2 {
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: -2px 2px 2px rgba(76, 76, 76, 0.8);
}

@media (min-width: 768px) {
    .carousel-item {
        height: 50rem;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
}

/* About Section */
#about h2 {
    color: var(--primary-color);
    font-weight: bold;
}

.title-line {
    color: var(--primary-color);
    display: block;
    text-align: center;
    overflow: hidden;
    margin: 1rem 0 2rem;
}

.title-line::before,
.title-line::after {
    content: "";
    display: inline-block;
    width: 50%;
    margin: 0 0.5em 0 -50%;
    vertical-align: middle;
    border-bottom: 1px solid;
}

.title-line::after {
    margin: 0 -50% 0 0.5em;
}

.line-v-right {
    border-right: 0.5rem solid var(--primary-color);
}

@media (max-width: 991px) {
    .line-v-right {
        border-right: none;
    }
}

/* Parallax Sections */
.parallax-window {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 5rem;
    position: relative;
}

.parallax-window h2 {
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: bold;
}

.parallax-window .title-line {
    color: #fff;
}

/* Vision Section */
.vision h2 {
    color: var(--primary-color);
}

/* Mission Section */
.mission p {
    font-size: 1.3rem;
}

.mission img {
    max-width: 225px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Contact Form */
#contact .card {
    background-color: rgba(255, 255, 255, 0.95);
}

#contact hr {
    border-color: var(--primary-color);
    border-width: 0.25rem;
    width: 3rem;
    opacity: 1;
    margin: 1rem auto;
}

/* General */
section {
    padding: 5rem 0;
}

/* Footer */
footer {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
}

footer a,
footer strong {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

footer a:hover,
footer strong:hover {
    color: #f2f2f2;
    text-decoration: underline;
}

footer .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease-in-out;
}

footer .social a:hover {
    background: #fff;
    color: var(--primary-color);
}

footer .c-pointer {
    cursor: pointer;
}

@media (max-width: 991px) {
    footer {
        padding: 3rem 1rem;
    }

    footer .social a {
        height: 2.5rem;
        width: 2.5rem;
        font-size: 1rem;
    }
}