*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    font-family: "Roboto", serif;
}
.header .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1420px;
}
.header .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
}

.header{
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional for better visibility */
    width: 100%;
    height: 78px;
    background-color: #002444;
}
header {
    position: relative;
    background-color: #002444;
    padding: 12px 0px 0px 0px;
}
header .logo img {
    max-width: 412px;
    width: 100%;
    height: 61px;
}

header nav .header_right .social_link a i {
    color: white;
    font-size: 23px;
    transition: all 0.5s ease-in-out;
    margin: 0px 6px;
}
header nav .header_right .social_link a:hover i{
    opacity: 0.502;
}

.nav-items a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    margin: 0px 6px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
}
.nav-items a:hover{
    opacity: 0.502; 
}
.nav-items a:last-child{
    opacity: 0.502;  
}
#menu_btn{
    display: none;
}
.hero_block img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: top center;
  }
  .hero_block{
    height: calc(100vh - 78px);
  }
  @media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1240px;
    }}
  @media (max-width: 1200px){
    .nav-items a {
        font-size: 13px;
    }
   
    header nav .header_right .social_link a i {
        font-size: 19px;
    }
  
  }
  @media (max-width: 1100px){
    header .logo img {
        max-width: 325px;
    }
  }
@media (max-width: 991px) {
    #menu_btn {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        z-index: 101;
        position: absolute;
        right: 13px;
        top: 39px;
    }
    #menu_btn.open .fa-bars {
        display: none;
    }
    #menu_btn .fa-bars {
        transition: all 0.7s;
        font-size: 18px;
        color: white;
    }
    #menu_btn .fa-xmark{
        display: none;
    }
    #menu_btn.open .fa-xmark {
        display: block;
        font-size: 18px;
        color: white;
        margin-right: 4px;
    }
    nav {
        flex-direction: column;
    }

    .header_right {
        position: fixed;
        left: -100%;
        top: 77px;
        height: 100vh;
        width: 100%;
        background-color: #002444;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.5s ease-in-out;
        border-top: 1px solid white;
    }
    .header_right.open {
        left: 0; 
    }
    .bodyclass{
        overflow: hidden;
    }
    .nav-items {
        flex-direction: column;
    }
    header nav .header_right .social_link a i {
        font-size: 22px;
    }
    .nav-items a {
        font-size: 17px;
    }
    header .logo img {
        max-width: 360px;
        width: 100%;
        height: 61px;
    }
    header {
        padding: 14px 0px 0px 0px;
    }
}
@media(max-width:490px){
    header .logo img {
        max-width: 236px;
        width: 100%;
        height: 38px;
    }
    #menu_btn {
        right: 11px;
        top: 25px;
    }
    #menu_btn.open .fa-xmark {
        margin-right: 0px;
    }
    .header {
        height: 61px;
    }
    .header_right {
        top: 59px;
    }
    .hero_block{
        height: calc(100vh - 61px);
      }
}

