* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    flex-wrap: wrap;
    --bianco: #fff;
    --grigio: #D9D9D9;
    --grigio-scuro: #A1A5A6;
    --nero: #353D40;
    --verde: #78A8A3;
    background-color: #fdfdfd;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    color: var(--bianco);
    text-decoration: none;
}

@font-face {
    font-family: 'Verlag Bold';
    src: url('/font/Verlag-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Verlag Book';
    src: url('/font/Verlag-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.contenitore {
    width: 100%;
    height: 100vh;
    padding: 0px 10% 0px;
    margin: 0;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.col1{
    width: 45%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col2{
    width: 55%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1012px) {
    .col1{
        width: 100%;
    }  

    .col2{
        width: 100%;
    }  
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.box img{
    margin: 20px;
    max-width: 50%;
}

.box .coming-soon {
    font-family: 'Verlag Bold';
    margin: 20px;
    font-size: 30px;
    text-align: center;
    word-spacing: 5px;
    letter-spacing: 5px;
    color: var(--grigio-scuro);
}

@media (max-width: 456px) {
    .box .coming-soon {
        font-size: 25px;
    }
}

@media (max-width: 410px) {
    .box .coming-soon {
        font-size: 20px;
    }
}

@media (max-width: 365px) {
    .box .coming-soon {
        font-size: 18px;
    }
}

@media (max-width: 345px) {
    .box .coming-soon {
        font-size: 15px;
    }
}

hr {
    width: 100%;
    border-top: 3px solid var(--grigio);
}

.box .recapiti {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.box .recapiti .testo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.box .recapiti .testo p {
    font-family: 'Verlag Book';
    font-size: 15px;
    text-align: center;
}

.box .recapiti .testo p span {
    display: inline;
    vertical-align: middle;
    color: var(--nero);
}

.box .recapiti .testo p .img {
    height: 20px;
    width: 20px;
    margin: 0 2px;
    display: inline;
    vertical-align: middle;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: grid;
    grid-template-areas: "photo";
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}


.carousel img {
    grid-area: photo;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease-in-out;
}

.carousel-prev,
.carousel-next {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bianco);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-prev__arrow,
.carousel-next__arrow{
    max-width: 15px;
}

.slide {
    animation: slideAnimation 0.3s ease-in-out;
}

@keyframes slideAnimation {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}
