body {
    height: 100vh; 

    margin: 0%;
    padding: 0%;
    

    display: grid; 
    grid-template-columns: 
        1fr
        repeat(4,minmax(0,272px))
        1fr 
    ;
    grid-gap: 0px; 
    grid-template-rows:
        40px
        1fr
        25vh
        1fr
        1fr
        50px
    ;
    grid-template-areas: 
        "top_header top_header top_header top_header top_header top_header"
        "header header header header header header"
        "Banner Banner Banner Banner Banner Banner"
        "Main Main Main Main Main Main"
        "footer footer footer footer footer footer"
        "credit credit credit credit credit credit"
        ;

       
    color: #0C0C0C;
    background-color: #F5F5F5;
}

.img_banner {
    grid-area: Banner;
    display: flex;
    justify-content: center;
    align-items: center;

    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(../Images/NorthLogic_ocean\ transport.png); 
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.25) inset;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.img_banner h1 {
    font-size: 40px;
    color: #fff;
}

.double_container {
    grid-area: Main;
    display: flex;
    padding: 40px;
}
    .big_section {
        width: 70%;
        margin-right: 80px;
    }

    .small_section {
        width: 30%;
    }
    .small_section li{
        list-style-image: url(../Images/icons/checkmark.png);
    }

    .big_section h1, .small_section h1 {
        color: #1BABE3;
    }


    .request_a_rate_box {
        margin-top: 40px;
        background-color: #fff;
        width: fit-content;
        padding: 10px 25px;
        text-align: center;
        color: #2110C8;
        filter: grayscale(100%);
        box-shadow: 0 4px 8px 0 rgba(114, 114, 114, 0.2), 0 6px 20px 0 rgba(114, 114, 114, 0.2);
    }

    .request_a_rate_box:hover {
        filter: grayscale(0%);
    }




@media screen and (max-width: 600px) {
    .double_container {
        flex-direction: column;
    }
        .big_section {
            width: auto;
            margin-right: 0px;
        }
    
        .small_section {
            width: auto;
            margin-top: 20px;
        }
}
              