/* Global
===================================================================== */

/* font-family: 'Great Vibes', cursive;
font-family: 'Open Sans', sans-serif; */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

.preloader {
    background-color: #181818;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1020;
    transition: all .5s;
}

.preloader-spinner {
    background-color: rgba(255,255,255,1);
    width: 20px;
    height: 20px;
    left: 50%;
    position: relative;
    top: 50vh;
    margin-left: -10px;
    border-radius: 20px;
    animation: preoloader-spinner-animation 1s infinite;
    animation: preoloader-spinner-animation 1s infinite;
}

@keyframes preoloader-spinner-animation {
    0% { -webkit-transform: scale(0.0) }
    100% { -webkit-transform: scale(1.0) }
}

.preloader-text {
    color: #fff;
    position: relative;
    top: 60vh;
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-align: center;
}

.off-canvas-animation {
    transform: translateX(-100%);
}

.preloader-animation {
    opacity: 0;
}


/* Header
===================================================================== */

.header {
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    padding: 20px 5%;
    z-index: 1000;
}

.header-logo {
}

.header-logo-img {
    max-width: 120px;
}

.header-buttons {
    display: flex;
    flex-flow: row;
    align-items: center;
}

.header-buttons-phone {
    color: #000;
    display: block;
    padding: 12.5px 25px;
    border: 2px solid #000;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .05em;
}

.header-buttons-phone::before {
    content: "\260E";
    color: inherit;
    margin-right: 10px;
}

.header-buttons-open-off-canvas {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-left: 20px;
    padding: 12.5px;
    cursor: pointer;
}

.header-buttons-open-off-canvas-line {
    background-color: #000;
    width: 25px;
    height: 2px;
    margin: 2px 0;
}

.header-off-canvas {
    color: #000;
    background-color: #000;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 2;
    transition: all .6s;
}

.header-off-canvas-button-close-off-canvas {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 70px;
    right: 5%;
    cursor: pointer;
    transform: rotate(45deg);
}

.header-off-canvas-button-close-off-canvas-line {
    background-color: #fff;
    position: relative;
}

.header-off-canvas-button-close-off-canvas-line:first-of-type {
    width: 26px;
    height: 2px;
    position: absolute;
    top: 19px;
    left: 7px;
}

.header-off-canvas-button-close-off-canvas-line:last-of-type {
    width: 2px;
    height: 26px;
    position: absolute;
    top: 7px;
    left: 19px;
}

.header-off-canvas-nav {
    color: #fff;
    background-color: #181818;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 25%;
    font-family: 'Open Sans', sans-serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
}

.header-off-canvas-nav-list {
    list-style: none;
}

.header-off-canvas-nav-list-item a {
    color: inherit;
    text-decoration: none;
}

@media only screen and (max-width: 1023px) {

    .header-logo-img {
        max-width: 100px;
    }

    .header-buttons-phone {
        padding: 10px 20px;
        font-size: 13px;
    }

    .header-buttons-open-off-canvas {
        margin-left: 12.5px;
    }

    .header-off-canvas-nav {
        padding: 0 20%;
        font-size: 50px;
    }

}

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

    .header-logo-img {
        max-width: 80px;
    }

    .header-buttons-phone {
        padding: 7.5px 15px;
        border: 2px solid #000;
        font-size: 12px;
    }

    .header-buttons-open-off-canvas {
        margin-left: 5px;
    }

    .header-off-canvas-nav {
        padding: 0 15%;
        font-size: 40px;
    }

}


/* Footer
===================================================================== */

.footer {
    color: #fff;
    background-color: #181818;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
}

.footer-address {
    margin-right: 20%;
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.footer-social {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.footer-social a {
    color: inherit;
}

@media only screen and (max-width: 1023px) {

    .footer-address {
        font-size: 9.5px;
    }

    .footer-social {
        font-size: 9.5px;
    }

}

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

    .footer-address {
        font-size: 9px;
    }

    .footer-social {
        font-size: 9px;
    }

}


/* Home Page
===================================================================== */

.home-main-section-one {
    background-color: rgba(102, 157, 179, 0.2);
    height: 100vh;
    position: relative;
}

.home-main-section-one-headings {
    padding-bottom: 10px;



    color: #181818;
    position: absolute;
    left: 5%;
    bottom: 10%;
    z-index: 1;
}

.home-main-section-one-headings h1 {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
}

.home-main-section-one-headings h1 span:first-of-type {
    padding: 0 5%;
    font-size: 60px;
}

.home-main-section-one-headings h1 span:last-of-type {
    font-size: 180px;
}

.home-main-section-one-headings h2 {
    max-width: 70%;
    padding: 15px 5% 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.trustpilot-widget {
    background-color: #181818;
    width: 100% !important;
    position: relative !important;
    padding: 5px 0;
    
}

.trustpilot-widget iframe {
    padding: 5px 0;
}

/*  .trustpilot-widget iframe body {
    background-color: greenyellow !important;
}

.trustpilot-widget iframe .tp-widget-wrapper {
    background-color: grey !important;
    width: 50px !important;
    height: 20px !important;
}

.tp-widget-empty-horizontal__logo {
    background-color: red !important;
    font-family: 'Great Vibes', cursive !important;
} */

.home-main-section-one-img {
    width: 60%;
    height: 100%;
    position: relative;
    margin-left: 40%;
}

.home-main-section-one-img-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-main-section-one-img-overlay {
    background-color: rgba(233, 240, 238, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.home-main-section-video {
    background-color: rgba(168, 156, 148, 0.1);
    padding: 20vh 5%;
}

.home-main-section-video-2 {
    padding: 20vh 5% 0;
}

.home-main-section-two {
    background-color: rgba(255, 79, 88, 0.1);
    padding: 20vh 5%;
    content: "";
    clear: both;
    display: table;
}

.home-main-section-two-img-1 {
    width: 30%;
    height: 60vh;
    position: relative;
    float: left;
}

.home-main-section-two-img-2 {
    width: 30%;
    height: 60vh;
    position: relative;
    float: left;
    margin: 0 5%;
}

.home-main-section-two-img-1-file,
.home-main-section-two-img-2-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-main-section-two-img-1-overlay,
.home-main-section-two-img-2-overlay {
    background-color: rgba(233, 240, 238, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.home-main-section-two-content {
    color: #181818;
    width: 30%;
    height: 60vh;
    float: left;
}

.home-main-section-two-content-heading {
    margin-bottom: 30px;
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    font-weight: 400;
}

.home-main-section-two-content-text {
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.home-main-section-two-content-text a {
    color: inherit;
}

.home-main-section-three {
    height: 100vh;
}

.home-main-section-three-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.home-main-section-three-img-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-main-section-three-img-overlay {
    background-color: rgba(233, 240, 238, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.home-main-section-four {
    background-color: rgba(168, 156, 148, 0.1);
    padding: 20vh 5%;
    content: "";
    clear: both;
    display: table;
}

.home-main-section-four-content-1 {
    margin-bottom: 30px;
}

.home-main-section-four-content-1,
.home-main-section-four-content-2 {
    width: 30%;
    height: 40vh;
    float: left;
    margin-right: 10%;
}

.home-main-section-four-content-1-heading,
.home-main-section-four-content-2-heading {
    margin-bottom: 30px;
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    font-weight: 400;
}

.home-main-section-four-content-1-text,
.home-main-section-four-content-2-text {
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.home-main-section-four-content-1-text a,
.home-main-section-four-content-2-text a {
    color: inherit;
}

.home-main-section-four-img-1 {
    width: 60%;
    height: 40vh;
    position: relative;
    float: left;
    margin-bottom: 30px;
}

.home-main-section-four-img-2 {
    width: 60%;
    height: 40vh;
    position: relative;
    float: left;
}

.home-main-section-four-img-1-file,
.home-main-section-four-img-2-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-main-section-four-img-1-overlay,
.home-main-section-four-img-2-overlay {
    background-color: rgba(233, 240, 238, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (max-width: 1023px) {

    .home-main-section-one-headings h1 span:first-of-type {
        font-size: 45px;
    }

    .home-main-section-one-headings h1 span:last-of-type {
        font-size: 120px;
    }

    .home-main-section-one-headings h2 {
        padding: 15px 5% 0;
        font-size: 9.5px;
    }

    .home-main-section-one-img {
        width: 100%;
        margin-left: 0;
    }

    .home-main-section-video {
        padding: 15vh 5%;
    }

    .home-main-section-video-2 {
        padding: 15vh 5% 0;
    }

    .home-main-section-two {
        padding: 15vh 5%;
    }


    .home-main-section-two-img-1 {
        width: 100%;
        height: 35vh;
        position: relative;
        float: none;
    }

    .home-main-section-two-img-2 {
        width: 100%;
        height: 35vh;
        position: relative;
        float: none;
        margin: 30px 0 15vh;
    }

    .home-main-section-two-content {
        width: 80%;
        height: auto;
        float: none;
        margin: 0 auto;
    }

    .home-main-section-two-content-heading {
        font-size: 45px;
    }

    .home-main-section-two-content-text {
        padding: 0 10%;
        font-size: 13px;
    }

    .home-main-section-four {
        padding: 15vh 5%;
    }

    .home-main-section-four-content-1,
    .home-main-section-four-content-2 {
        width: 80%;
        height: auto;
        float: none;
        margin: 0 auto 15vh;
    }

    .home-main-section-four-content-1-heading,
    .home-main-section-four-content-2-heading {
        font-size: 45px;
    }

    .home-main-section-four-content-1-text,
    .home-main-section-four-content-2-text {
        padding: 0 10%;
        font-size: 13px;
    }

    .home-main-section-four-img-1 {
        width: 100%;
        height: 35vh;
        float: none;
        margin-bottom: 15vh;
    }

    .home-main-section-four-img-2 {
        width: 100%;
        height: 35vh;
        float: none;
    }

}

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

    .home-main-section-one-headings h1 span:first-of-type {
        font-size: 30px;
    }

    .home-main-section-one-headings h1 span:last-of-type {
        font-size: 60px;
    }

    .home-main-section-one-headings h2 {
        padding: 15px 5% 0;
        font-size: 9px;
    }

    .home-main-section-one-img {
        width: 100%;
        margin-left: 0;
    }

    .home-main-section-video {
        padding: 10vh 5%;
    }

    .home-main-section-video-2 {
        padding: 10vh 5% 0;
    }

    .home-main-section-two {
        padding: 10vh 5%;
    }

    .home-main-section-two-img-1 {
        width: 100%;
        height: 35vh;
        position: relative;
        float: none;
    }

    .home-main-section-two-img-2 {
        width: 100%;
        height: 35vh;
        position: relative;
        float: none;
        margin: 30px 0 10vh;
    }

    .home-main-section-two-content {
        width: 80%;
        height: auto;
        float: none;
    }

    .home-main-section-two-content-heading {
        font-size: 30px;
    }

    .home-main-section-two-content-text {
        font-size: 12px;
    }

    .home-main-section-four {
        padding: 10vh 5%;
    }

    .home-main-section-four-content-1,
    .home-main-section-four-content-2 {
        width: 80%;
        height: auto;
        float: none;
        margin: 0 auto 10vh;
    }

    .home-main-section-four-content-1-heading,
    .home-main-section-four-content-2-heading {
        font-size: 30px;
    }

    .home-main-section-four-content-1-text,
    .home-main-section-four-content-2-text {
        padding: 0 10%;
        font-size: 12px;
    }

    .home-main-section-four-img-1 {
        width: 100%;
        height: 35vh;
        float: none;
        margin-bottom: 10vh;
    }

    .home-main-section-four-img-2 {
        width: 100%;
        height: 35vh;
        float: none;
    }

}


/* Chi Siamo
===================================================================== */

.chi-siamo-main-section-one {
    background-color: rgba(168, 156, 148, 0.1);
    padding: calc(20vh + 70px) 5% 20vh;
    content: "";
    clear: both;
    display: table;
}

.chi-siamo-main-section-one-img {
    width: 45%;
    height: 80vh;
    position: relative;
    float: left;
}

.chi-siamo-main-section-one-img-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chi-siamo-main-section-one-img-overlay {
    background-color: rgba(233, 240, 238, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.chi-siamo-main-section-one-content {
    width: 45%;
    float: left;
    margin-left: 10%;
}

.chi-siamo-main-section-one-content-heading-1 {
    margin-bottom: 30px;
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.chi-siamo-main-section-one-content-text {
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.chi-siamo-main-section-two {
    background-color: rgba(102, 157, 179, 0.2);
    padding: 20vh 5%;
    content: "";
    clear: both;
    display: table;
}

.chi-siamo-main-section-two-content {
    width: 45%;
    float: left;
    margin-right: 10%;
}

.chi-siamo-main-section-two-content-heading-2 {
    margin-bottom: 30px;
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.chi-siamo-main-section-two-content-text {
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.chi-siamo-main-section-two-img {
    width: 45%;
    height: 80vh;
    position: relative;
    float: left;
}

.chi-siamo-main-section-two-img-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chi-siamo-main-section-two-img-overlay {
    background-color: rgba(233, 240, 238, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.chi-siamo-main-section-three {
    background-color: rgba(168, 156, 148, 0.1);
    padding: 20vh 5%;
}

.chi-siamo-main-section-three-content {
    width: 50%;
    margin: 0 25%;
}

.chi-siamo-main-section-three-content-heading-2 {
    margin-bottom: 30px;
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.chi-siamo-main-section-three-content-text {
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}


@media only screen and (max-width: 1023px) {

    .chi-siamo-main-section-one {
        padding: calc(15vh + 70px) 5% 15vh;
    }

    .chi-siamo-main-section-one-img {
        width: 100%;
        height: 35vh;
        position: relative;
        float: none;
        margin-bottom: 15vh;
    }

    .chi-siamo-main-section-one-content {
        width: 80%;
        float: none;
        margin: 15vh auto 0;
    }

    .chi-siamo-main-section-one-content-heading-1 {
        font-size: 45px;
    }

    .chi-siamo-main-section-one-content-text {
        padding: 0 10%;
        font-size: 13px;
    }

    .chi-siamo-main-section-two {
        padding: 15vh 5%;
    }

    .chi-siamo-main-section-two-content {
        width: 80%;
        float: none;
        margin: 0 auto 15vh;
    }

    .chi-siamo-main-section-two-content-heading-2 {
        font-size: 45px;
    }

    .chi-siamo-main-section-two-content-text {
        padding: 0 10%;
        font-size: 13px;
    }

    .chi-siamo-main-section-two-img {
        width: 100%;
        height: 35vh;
        float: none;
    }

    .chi-siamo-main-section-three {
        padding: 15vh 5%;
    }

    .chi-siamo-main-section-three-content {
        width: 80%;
        margin: 0 auto;
    }

    .chi-siamo-main-section-three-content-heading-2 {
        font-size: 45px;
    }

    .chi-siamo-main-section-three-content-text {
        padding: 0 10%;
        font-size: 13px;
    }

}

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

    .chi-siamo-main-section-one {
        padding: calc(10vh + 70px) 5% 10vh;
    }

    .chi-siamo-main-section-one-img {
        width: 100%;
        height: 35vh;
        position: relative;
        float: none;
        margin-bottom: 10vh;
    }

    .chi-siamo-main-section-one-content {
        width: 80%;
        float: none;
        margin: 10vh auto 0;
    }

    .chi-siamo-main-section-one-content-heading-1 {
        font-size: 30px;
    }

    .chi-siamo-main-section-one-content-text {
        padding: 0 10%;
        font-size: 12px;
    }

    .chi-siamo-main-section-two {
        padding: 10vh 5%;
    }

    .chi-siamo-main-section-two-content {
        width: 80%;
        float: none;
        margin-right: 0 auto 10vh;
    }

    .chi-siamo-main-section-two-content-heading-2 {
        font-size: 30px;
    }

    .chi-siamo-main-section-two-content-text {
        padding: 0 10%;
        font-size: 12px;
    }

    .chi-siamo-main-section-two-img {
        width: 100%;
        height: 35vh;
        float: none;
    }

    .chi-siamo-main-section-three {
        padding: 10vh 5%;
    }

    .chi-siamo-main-section-three-content {
        width: 80%;
        margin: 0 auto;
    }

    .chi-siamo-main-section-three-content-heading-2 {
        font-size: 30px;
    }

    .chi-siamo-main-section-three-content-text {
        padding: 0 10%;
        font-size: 12px;
    }

}


/* Servizi
===================================================================== */

.servizi-main-section-one {
    background-color: rgba(255, 79, 88, 0.1);
    padding: calc(20vh + 70px) 0 0;
}

.servizi-main-section-one-content {
    width: 50%;
    margin: 0 25% 20vh;
}

.servizi-main-section-one-content-heading-1,
.servizi-main-section-one-content-heading-2 {
    margin-bottom: 30px;
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.servizi-main-section-one-content-text {
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.servizi-main-section-one-img {
    width: 100%;
    height: 100vh;
    position: relative;
}

.servizi-main-section-one-img-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servizi-main-section-one-img-overlay {
    background-color: rgba(233, 240, 238, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.servizi-main-section-two {
    background-color: rgba(102, 157, 179, 0.2);
    padding: 20vh 0;
}

.servizi-main-section-two-content {
    width: 50%;
    margin: 0 25%;
}

.servizi-main-section-two-content-heading-2 {
    margin-bottom: 30px;
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.servizi-main-section-two-content-text {
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

@media only screen and (max-width: 1023px) {

    .servizi-main-section-one {
        padding: calc(15vh + 70px) 0 0;
    }

    .servizi-main-section-one-content {
        width: 80%;
        margin: 0 auto 15vh;
    }

    .servizi-main-section-one-content-heading-1,
    .servizi-main-section-one-content-heading-2 {
        font-size: 45px;
    }

    .servizi-main-section-one-content-text {
        padding: 0 10%;
        font-size: 13px;
    }

    .servizi-main-section-two {
        padding: 15vh 0;
    }

    .servizi-main-section-two-content {
        width: 80%;
        margin: 0 auto;
    }

    .servizi-main-section-two-content-heading-2 {
        font-size: 45px;
    }

    .servizi-main-section-two-content-text {
        padding: 0 10%;
        font-size: 13px;
    }
}

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

    .servizi-main-section-one {
        padding: calc(10vh + 70px) 0 0;
    }

    .servizi-main-section-one-content {
        width: 80%;
        margin: 0 auto 10vh;
    }

    .servizi-main-section-one-content-heading-1,
    .servizi-main-section-one-content-heading-2 {
        font-size: 30px;
    }

    .servizi-main-section-one-content-text {
        padding: 0 10%;
        font-size: 12px;
    }

    .servizi-main-section-two {
        padding: 10vh 0;
    }

    .servizi-main-section-two-content {
        width: 80%;
        margin: 0 auto;
    }

    .servizi-main-section-two-content-heading-2 {
        font-size: 30px;
    }

    .servizi-main-section-two-content-text {
        padding: 0 10%;
        font-size: 12px;
    }

}


/* Contatti
===================================================================== */

.contatti-main-section-one {
    background-color: rgba(168, 156, 148, 0.1);
    padding: calc(20vh + 70px) 0 20vh;
}

.contatti-main-section-one-content {
    width: 50%;
    margin: 0 auto;
}

.contatti-main-section-one-content-heading-1,
.contatti-main-section-one-content-heading-2 {
    margin-bottom: 30px;
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.contatti-main-section-one-content-text {
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.contatti-main-section-two {
    background-color: rgba(102, 157, 179, 0.2);
    width: 100%;
    padding: 20vh 5%;
    content: "";
    clear: both;
    display: table;
}

.contatti-main-section-two-content {
    width: 35%;
    float: left;
    margin-left: 10%;
}

.contatti-main-section-two-content-heading-2 {
    margin-bottom: 30px;
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.contatti-main-section-two-content-address {
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
}

.contatti-main-section-two-content-address span {
    display: block;
    margin-top: 30px;
}

.contatti-main-section-two-img {
    width: 55%;
    height: 50vh;
    position: relative;
    float: left;
}

.contatti-main-section-two-img-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contatti-main-section-two-img-overlay {
    background-color: rgba(233, 240, 238, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.contatti-main-section-two-img-file-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1023px) {

    .contatti-main-section-one {
        padding: calc(15vh + 70px) 0 15vh;
    }

    .contatti-main-section-one-content {
        width: 80%;
    }

    .contatti-main-section-one-content-heading-1,
    .contatti-main-section-one-content-heading-2 {
        font-size: 45px;
    }

    .contatti-main-section-one-content-text {
        padding: 0 10%;
        font-size: 13px;
    }

    .contatti-main-section-two {
        padding: 15vh 5%;
    }

    .contatti-main-section-two-content {
        width: 80%;
        float: none;
        margin: 0 auto 15vh;
    }

    .contatti-main-section-two-content-heading-2 {
        font-size: 45px;
    }

    .contatti-main-section-two-content-address {
        font-size: 13px;
    }

    .contatti-main-section-two-img {
        width: 100%;
        height: 35vh;
        float: none;
    }

}

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

    .contatti-main-section-one {
        padding: calc(10vh + 70px) 0 10vh;
    }

    .contatti-main-section-one-content {
        width: 80%;
    }

    .contatti-main-section-one-content-heading-1,
    .contatti-main-section-one-content-heading-2 {
        font-size: 30px;
    }

    .contatti-main-section-one-content-text {
        padding: 0 10%;
        font-size: 12px;
    }

    .contatti-main-section-two {
        padding: 10vh 5%;
    }

    .contatti-main-section-two-content {
        width: 80%;
        float: none;
        margin: 0 auto 10vh;
    }

    .contatti-main-section-two-content-heading-2 {
        font-size: 30px;
    }

    .contatti-main-section-two-content-address {
        font-size: 12px;
    }

    .contatti-main-section-two-img {
        width: 100%;
        height: 55vh;
        float: none;
    }

}
