body {
    font-size: 14px;
    line-height: 1.4em;
    font-family: 'Encode Sans', sans-serif;
}

header {
    margin: 50px auto 0;
    text-align: center;
    max-width: 1200px;
}

header h4 {
    background-color: #ffee58;
    display: inline-block;
    padding: 10px 30px;
    letter-spacing: 3px;
}

header h1 {
    margin: 30px 0 0;
    letter-spacing: 5px;
}

.content-block,
.testimonial-block {
    margin: 50px 0 0;
    text-align: center;
}

.testimonial-block h1 {
    margin: 0 0 50px;
    letter-spacing: 5px;
}

.testimonial-block h1 span {
    color: rgb(240, 60, 34);
}

.testimonial-block img {
    margin: 0 0 20px;
    border: 2px solid rgb(127, 126, 126);
}

@media only screen and (max-width: 1199px) {
    header h4 {
        font-size: 18px;
    }

    header h1 {
        font-size: 24px;
        line-height: 36px;
    }
}

@media only screen and (max-width: 991px) {
    .video-block {
        margin: 0 0 20px;
    }
}

@media only screen and (max-width: 767px) {
    header h4 {
        font-size: 16px;
    }

    header h1 {
        font-size: 18px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .video-block {
        margin: 0 0 20px;
    }
}

@media only screen and (min-width: 1200px) {
    .content-block .row > div {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Booking Block */
.booking-block {
    width: 650px;
    max-width: 100%;
    margin: 65px auto 50px;
    padding: 30px;
    border: 3px solid #222;
    box-shadow: 0 0 5px 2px #999;
    transition: 0.5s;
    opacity: 0;
}
.booking-block.active {
    opacity: 1;
}
.booking-title p {
    font-size: 28px;
    line-height: 1.4;
}
.booking-img {
    width: 100%;
    height: 100%;
    margin-top: 10px;
}
.booking-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.booking-btn {
    width: 100%;
}
.booking-btn a {
    display: inline-block;
    width: 100%;
    color: #FFF;
    background-color: rgb(0, 117, 178);
    font-weight: bolder;
    font-size: 30px;
    line-height: 1.4;
    padding: 14px 20px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: capitalize;
}
.booking-btn a:hover {
    background-color: rgb(0, 96, 148);
}
@media screen and (max-width: 600px) {
    .booking-title p {
    font-size: 22px;
    }
    .booking-btn a {
    font-size: 24px;
    }
}


.testimonial-subblock img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    transition: 0.4s all;
}

.testimonial-subblock img:hover {
    box-shadow:
            1px 1px #ffee58,
            2px 2px #ffee58,
            3px 3px #ffee58,
            4px 4px #ffee58,
            5px 5px #ffee58,
            6px 6px #ffee58,
            7px 7px #ffee58;
    -webkit-transform: translateX(-7px);
    transform: translateX(-7px);
}

.testimonial-subblock-item {
    margin-bottom: 20px;
}

.testimonial-subblock-item p {
    text-align: center;
    font-size: 20px;
}

.testimonial-subblock-grid {
    display: grid;
    grid-template-columns: 400px 400px;
    justify-content: center;
    grid-gap: 30px;
}

@media only screen and (max-width: 1000px) {
    .testimonial-subblock-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 750px) {
    .form-block iframe {
        width: 100%;
    }
}

.header-img {
    margin-bottom: 40px;
    width: 100%;
}

footer {
    text-align: center;
}

.footer-title {
    margin-top: 40px;
    margin-bottom: 20px;
}

.footer-legal {
    margin-bottom: 15px;
}

.footer-legal-copy {
    margin-bottom: 80px;
}