:root {
    --background-color: #000000;
    --primary-color: #1B264F;
    --secondary-color: #274690;
    --transparent: #00000000;
}

html {
  scroll-behavior: smooth;
}

* {
    font-family: sans-serif;
}
.backgroud{
    background: linear-gradient(90deg, #92887e, #7e9191, #917e7e, #877e91);
}
.mainDiv {
    background-size: 60% auto;
    padding-left: 10vh;
    padding-right: 10vh;
    display: flex;
    flex-direction: column;
    background-image: url('../images/HomePageBackGroundMezzaSfocata.png');
    background-position: top right;
    background-repeat: no-repeat;
    align-items: center;
}

.topDiv{
    width: 40%;
    margin-left: 0;
    margin-right: auto;
    margin-top: 5vh;
}

.title {
    color: white;
    font-size: clamp(10px, 13vw, 15vh);
    text-align: left;
    width: 100%;
    margin: 0;
}

.mainImage {
    width: 120vw;
    height: 100vh;
    background-image: url('../images/HomePageBackGroundSfocata.png');
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;

}

.image {
    height: 100vh;
    width: auto;
    max-width: none;
    object-fit: cover;
    object-position: 70% center;
}

#ourOffert {
    align-items: center;
    text-align: center;
    color: white;
    font-size: clamp(10px, 7vw, 8vh);
}

.offertsDiv {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: top;
    flex-wrap: wrap;
    gap: 2vw;
    padding: 1vw;
}

.offertDiv {
    background-color: var(--primary-color);
    width: calc(20vw + 20vh);
    max-width: 90vw;
    height: fit-content;
    border-radius: calc(2vw + 2vh);
    padding: 1vh;
}

.offertTitle {
    color: white;
    font-size: calc(3vw + 3vh);
    text-align: center;
}

.description {
    color: white;
    font-size: calc(1.5vw + 1.5vh);
    text-align: center;
}

.strenghtPointsDiv {
    background-color: var(--primary-color);
    width: 70%;
    display: flex;
    align-items: center;
    border-radius: 5vw;
    padding: 3vh;
    gap: 1vw;
}

.checkListDiv {
    width: 90%;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1vh;
    padding: 1vh;
}

.strenghtPointDiv {
    width: 100%;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 2vw;
    border-radius: calc(1vw + 1vh);
    padding: 2vh;
}

.strenghtPoint {
    color: white;
    font-size: calc(1.5vw + 1.5vh);
}

.check {
    color: white;
    font-size: calc(1.5vw + 1.5vh);
}

.bottom{
    width: 80vw;
    background-color: var(--primary-color);
    margin-top: 10vh;
    border-radius: calc(4vh + 4vw) calc(4vh + 4vw) 0 0;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vh;
    padding: 2vw;
}

.contattiTitle{
    text-align: center;
    color: white;
    font-size: calc(2vw + 2vh);
    margin: 0;
    margin-bottom: 1vh;
}

.contatti{
    text-align: center;
    color: white;
    font-size: calc(1vw + 1vh);
    margin: 0;
}

.specificOffertDiv{
    padding: 1vh;
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.specificOffert{
    color: white;
    background-color: var(--secondary-color);
    font-size: calc(1vw + 1vh);
    padding: 1vh;
    border-radius: calc(1vw + 1vh);
    margin: 0;
}

@media (max-aspect-ratio: 1/1) {

    .SpacingDiv{
        height: 170px;
    }
    .topDiv{
        width: 100%;
    }
    .mainDiv{
        background-size: 100% auto;
        padding-left: 5vh;
        padding-right: 5vh;
    }

    .strenghtPointsDiv {
        width: 80vw;
        flex-direction: column;
    }
}

