#hero {
    height: 100vh;
}

#hero .video-container,
#hero .overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#hero .video-container video {
    object-fit: cover;
}

#hero .overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

#hero .main-content > div {
    max-width: 900px;
    width: 100%;
}

#hero .main-content .description,
#hero .main-content .button-container {
    margin: 30px 0 0;
}

#about {
    padding: 150px 0 200px;
}

#about .image-box .main-image {
    width: 600px;
    max-width: 100%;
}

#about .image-box .main-image::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    background-color: var(--gold);
}

#about .image-box .main-image img {
    width: calc(100% - 50px);
    max-width: 100%;
    height: 100%;
}

#about .about-text {
    padding: 50px 70px;
}

#about .about-text .description {
    margin: 20px 0 0;
}

#gallery .gallery-image {
    width: 20%;
}

#gallery .gallery-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

#contact {
    background-color: #f4f4f4;
    padding: 100px 0;
}

#contact label {
    font-size: 15px;
    width: 100%;
}

#contact .details {
    margin: 30px 0 0;
}

#contact .detail-item {
    font-size: 15px;
}

#contact .detail-item:not(:last-child) {
    margin: 0 0 10px;
}

#contact .detail-item span {
    display: inline-block;
    color: var(--gold);
    text-align: center;
    width: 30px;
}

#contact .detail-item a {
    color: var(--black);
    text-decoration: none;
}

#contact .wpcf7-form-control-wrap > * {
    font-size: 15px;
    border: none;
    width: 100%;
    padding: 12px 20px;
}

#contact .wpcf7-form-control-wrap > input {
    height: 50px;
}

#contact .logo-item {
    width: 150px;
    margin: 30px 0 0;
}

#contact .logo-item:not(:first-child) {
    width: 300px;
}

#copyright {
    font-size: 13px;
    padding: 10px 0;
}

#landing {
    min-height: 100vh;
    padding: 100px 15px;
}

#landing::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(160 184 205 / 70%);
}

/*
#landing .form-box {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    width: 700px;
    max-width: 100%;
    margin: auto;
    padding: 50px;
}
 */

#landing .box-header {
    margin: 0 0 30px;
}

#landing .box-header .description {
    margin: 20px 0 0;
}

#landing .form-box {
    width: 700px;
    max-width: 100%;
    margin: auto;
}

#landing .response-message {
    margin: 0 0 20px;
}

#landing .response-message.response-failed {
    color: #fff;
    background-color: darkred;
    padding: 12px 20px;
}

#landing_result {
    display: flex;
    align-items: center;
    height: 100vh;
}

#landing_result .button-container {
    margin: 70px 0 0;
}

@media (max-width: 991px) {
    body {
        font-size: 18px;
    }

    #about {
        padding: 100px 0 50px;
    }

    #about .about-text {
        padding: 100px 10px 50px;
    }

    #gallery .gallery-image {
        width: 50%;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    #gallery .gallery-image {
        width: 100%;
    }
}