.pageTitle{
    bottom: -10px;
}





.photo1 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo1 img {
    width: 90%;
    height: 700px;
    border: 5px solid var(--themeColorDark);
    border-radius: 12px;
    object-fit: contain;
}





.text{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 25px 0 25px 0;
}
.text .description{
    width: 90%;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    word-spacing: 2px;
}
.text .buttons{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text .buttonPhone{
    width: 45%;
    height: 57px;
    background: linear-gradient(45deg, var(--themeColorBoom), var(--themeColor));
    border-radius: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px;
    border: 5px solid var(--themeColorDark);
}
.text .buttonPhone a{
    display: flex;
    justify-content: center;
    align-items: center;
}
.text .buttonPhone svg{
    width: 30px;
    height: 30px;
    color: white;
}
.text .buttonPhone p{
    color: white;
    font-size: 20px;
    margin-left: 10px;
    font-weight: 700;
}
.text .buttonWhatsApp{
    width: 15%;
    height: 57px;
    background-color: var(--themeColorDark);
    border-radius: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 25px;
    border: 5px solid var(--themeColorDark);
}
.text .buttonWhatsApp svg{
    width: 30px;
    height: 30px;
    color: white;
}





.miniPhotos{
    display: flex;
    justify-content: center;
    align-items: center;
}





.photo2 img, .photo3 img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 5px solid var(--themeColorDark);
    border-radius: 12px;
}




















/* --- RESPONSIVE START --- */
@media all and (max-width: 1200px) and (min-width: 30px){
    .photo1 img{
        height: 500px;
    }
    .text .buttons{
        width: 100%;
    }
    .text .buttonPhone{
        width: 55%;
        height: 65px;
        margin: 25px 5px 25px 0;
    }
    .text .buttonPhone p{
        font-size: 16px;
    }
    .text .buttonWhatsApp{
        width: 25%;
        height: 65px;
        margin: 25px 0 25px 5px;
    }
    .miniPhotos{
        flex-direction: column;
    }
    .photo2 img, .photo3 img {
        height: 400px;
    }
}