*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Montserrat", sans-serif;
}
nav{
    position: relative;
}
.heli-charter-section{
    margin-left: 50px;
}
.heli-main-content{
    width: 70%;
    margin-top: 20px;
}
.page-title{
    margin-left: 0;
}

.helicopter-images{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.h-image1{
    width: 300px;
    height: 150px;
    background-repeat: no-repeat;
    background: url(../images/c-heli-1.jpg);
    background-position: center;
    background-size: cover;
}

.h-image2{
    width: 300px;
    height: 150px;
    background-repeat: no-repeat;
    background: url(../images/c-heli2.jpg);
    background-position: center;
    background-size: cover;
}
.h-image3{
    width: 300px;
    height: 150px;
    background-repeat: no-repeat;
    background: url(../images/c-heli3.jpg);
    background-position: center;
    background-size: cover;
}
.book-link{
    margin-top: 30px;
    background-color: #8d6914;
    width: fit-content;
    padding: 4px;
    text-decoration: none;
    color: white;
}
.book-link a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 13px;
}

@media (max-width:1060px) {
    
    
}
@media (max-width:700px) {
    .heli-charter-section{
        margin-left: 0px;
        display: contents;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .helicopter-images{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .heli-main-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0px 30px 0px 30px;
        text-align: justify;
    }
}