@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #21393F;
    color: #fff;
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}
 .hero{
        display: flex;
        flex-direction: column; 
    justify-content: space-between;
    min-height: 100vh; 
    gap: 50px;
    padding-top: 26px;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    }
    .nav-wrapper{
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav-text h1{
    font-size: 16px;
    font-weight: 400;
    }
    .nav-logo{
        max-width: 200px;
    }
    .hero-content{
        text-align: center;
        font-size: 18px;
        font-weight: 300;
    }
    .hero-grid{
        display: flex;
        justify-content: space-evenly;
        gap: 50px;
    }
    .hero-block div{
        max-width: 300px;
        background-image: url('../images/rectangle.png');
        background-position: center;
        background-size: cover;
        padding: 30px 10px;
        background-size: contain;
    background-repeat: no-repeat; 
    }   
    .hero-block div img{
        max-width: 250px;
    }
    .footer{
        display: flex;
        flex-direction: row;

    }
    .footer{
        font-size: 16px;
        display: flex;
        font-weight: 300;
        justify-content: space-between;
    }
    .footer a{
        color: #fff;
        font-weight: 400;
        text-decoration: none;
        transition: all 0.6s;
    }
    .footer a:hover{
        color: #F8D731;
    }
    .footer .footer-block {
    width: 45%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
@media screen and (max-width:1197px){
.mob-hide{
    display: none;
}
}
    @media screen and (max-width: 767px) {
        .nav-logo {
    max-width: 125px;
}
        .hero-grid {
    display: flex;
    justify-content: space-evenly;
    gap: 20px; 
    flex-wrap: wrap;
}
.footer {
    font-size: 16px;
    display: flex;
    font-weight: 300;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
}
.footer .footer-block {
    width: 100%;
    flex-direction: column;
}
.mob-hide{
    display: none;
}
    }
    @media screen and (max-width: 545px){
        .hero-content {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
}

    }