* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    /*font-family: 'Times New Roman';*/
    font-family: 'Roboto', sans-serif;
    color: #000000;
    text-decoration: none;
}
p{
    margin-bottom: 0;
}
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.fw-900{
    font-weight: 900;
}
.nav-text{
    color: white;
}
.scroll-nav .nav-text{
    color: #004976 !important;
}
a{
    transition: color 0.3s ease;
    text-decoration: none;
}
a:hover{
    color: #EAB543 !important;
}
.fs-18{
    font-size: 18px;
}
.lh-28{
    line-height: 28px;
}
.master-font{
    font-size: 6rem;
    line-height: 6rem;
    letter-spacing: -4px;
    margin-top: 2rem;
}
.c-indicators{
    width:15px !important;
    height: 15px !important;
}
.carousel-indicators .active{
    background-color:aqua;
}
.bg-scroll{
    padding: 8px 34px;
    font-size: 18px;
    color:#004976;
    cursor: pointer;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: white !important;
    background-color: #EAB543;
}
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.bg-yellow{
    background-color: #EAB543;
}
.bg-sec-blue{
    background-color: #F7FBFF;
}
.fs-3rem{
    font-size: 3rem;
}
.text-code{
    font-size: 16px;
    /*color:#004976;*/
    line-height: 28px;
}
.carousel-indicators{
    list-style:none;
}
.mt-65{
    margin-top: -65px;
}
.mission-bg {
    background: url('images/mission.webp') no-repeat center/cover;
}
.about-us{
    background: url('images/slider2.webp') no-repeat center/cover;
    z-index: -2;
    position: relative;
}
.about-us::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.service-block{
    margin-top: -40px;
    position: relative;
    box-shadow:  0 8px 12px 0 #d3dbe33d;
}
.bg-text-blue{
    color: #004976;
}
.service-img{
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.service-grid:hover .service-img{
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.w-33{
    flex: 0 0 auto;
    width: 33.33333333%;
}
.test-card:hover{
    box-shadow:  0 8px 12px 0 #d3dbe33d;
}
.float-left{
    float:left;
}
.shadow-1-strong{
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.shadow-1-strong:hover{
    filter: grayscale(1);
    box-shadow:  0 8px 12px 0 #d3dbe33d;
}
.card{
    box-shadow: 0 0 11px rgba(33,33,33,.2);
}
.shadow{
    box-shadow: 0 0 11px rgba(33,33,33,.2);
}
.icons-container {
    position: fixed;
    bottom: 20px;
    right: 35px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-icons{
    margin: 10px 0;
    background-color: #007BFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
}

.container-icons:hover {
    background-color: #0056b3;
}
.h-400p{
    height: 400px;
}
.form-control{
    background-color: #f8f9fa;
}
.form-control:focus{
    box-shadow: none;
}
.line-clamp-3{
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bg-menu{
    background-color: #0056b3;
}
.menu-button {
    width: 15px;
    height: 15px;
    position: relative;
    cursor: pointer;
}

.line {
    width: 100%;
    height: 3px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.line.middle {
    top: 45%;
    transform-origin: center;
}

.line.top {
    top: 0;
}

.line.bottom {
    bottom: 0;
}

.menu-button.active .line.top {
    transform: translateY(180%) rotate(45deg);
}

.menu-button.active .line.middle {
    opacity: 0;
}

.menu-button.active .line.bottom {
    transform: translateY(-220%) rotate(-45deg);
}
.navbar-toggler:focus{
    box-shadow: none;
}
.text-yellow{
    color:#EAB543;
}

@media only screen and (max-width:575px){
    .c-indicators{
        width: 10px !important;
        height: 10px !important;
    }
    .logo-img{
        width: 150px;
    }
    .slider-img{
        height: 200px;
    }
    .carousel-caption{
        right:10%;
        left:10%;
    }
    .py-6{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .fs-3rem{
        font-size: 2rem;
    }
    .service-block{
        width:80%;
    }
    .w-33{
        width:100%
    }
    .icons-container{
        right: 8px;
    }
    .container-icons{
        width:40px;
        height: 40px;
        line-height: 40px;
    }
    .w-20{
        width:20px;
    }
    .navbar-collapse{
        top:50px;
        width: 90%;
    }
}
@media only screen and (min-width:575.5px){
    .service-block{
        width:84%;
    }
    .navbar-collapse{
        top:73px;
        width:60%;
    }
    .text-justify{
    text-align: justify;
}
}
@media (min-width: 576px) and (max-width: 767.98px){
    .w-33{
        width: 40%;
    }
}
@media (max-width: 992px) {
    .navbar-collapse {
      position: fixed;
      left: -100%;
      height: 100%;
      background-color: white;
      overflow-y: auto;
      transition: left 0.3s;
    }
    .navbar-collapse.show {
        left: 0;
    }
    .nav-text{
        color: black;
    }
  
      /* Style the button for closing the mobile menu */
      .navbar-toggler.d-lg-none {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .navbar{
        position: sticky;
        background-color: #ffff !important;
    }
    .master-font {
        font-size: 3.5rem;
        line-height: 3.5rem;
        margin-top: 1rem;
    }
}
@media only screen and (min-width: 992px){
    .w-lg-50{
        width: 50%;
    }
    .w-lg-75{
        width: 75%;
    }
    .dropdown:hover .dropdown-menu{
        position:absolute;
        display:block;
    }
}
@media only screen and (min-width: 1200px){
    .service-block{
        width:65%;
    }
}