.banner-image {
    background-image: url(../imgs/background-image.png);
    background-color: var(--blue);
    background-blend-mode: multiply;

    height: 100vh;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.banner-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-buttons-phone, .banner-buttons-whatsapp  {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px;
    border-radius: 2px;

    cursor: pointer;
}

.banner-buttons {
    display: flex;
    gap: 16px;
}

.banner-buttons-phone {
    background-color: var(--white);
    font-weight: 600;
}

.banner-buttons-phone > span {
    color: var(--blue);
}

.banner-buttons-phone > img, .banner-buttons-whatsapp > img {
    width: 24px;
    height: 24px;
}

.banner-buttons-whatsapp {
    background-color: var(--green);
    font-weight: 600; 
}

.banner-buttons-whatsapp span {
    color: var(--white);
}

.banner-text, .banner-title > .title {
    color: var(--white);
}   

.banner-title > .title {
    font-weight: 800;
    text-align: center;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 42px 0px 42px;
}

.about-text-container > h2 {
    color: var(--blue);
    font-weight: 800;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 50%;
}

.about-image-container > img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.about-info-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-info > h4 {
    color: var(--blue);
}

.about-info > h4 > img {
    height: 20px;
}

.gallery {
    padding: 12px 42px;
}

.gallery > h2 {
    color: var(--blue);
    font-weight: 800;
}

.w-100 {
    min-height: 80vh;
    max-height: 80vh;
    object-position: center;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .gallery-thumbnails img {
        width: 60px;
        height: 60px;
    }

    .banner-buttons {
        flex-direction: column;
    }

    .banner-image {
        background-position: center;
    }
    
    .about {
        flex-direction: column;
        gap: 16px;
        padding: 42px 42px 42px 42px;
    }

    .about-content {
        width: 100%;
    }

    .about-image-container {
        width: 100%;
    }

    .w-100 {
        min-height: 40vh;
        max-height: 50vh;
    }

    .gallery {
        min-height: 70vh !important;
    }
}

@media only screen and (min-width: 600px) and (max-width: 768px) {
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
}

@media only screen and (min-width: 992px) {
}