/* --Start banner--------------- */
.section-banner {
    position: relative;
    height: 25vh;
    background: url(../img/contact/banner.webp) no-repeat center bottom/ cover scroll;
}

    .section-banner .item {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 2;
        width: 65%;
        display: block;
        transform: translate(-50%, -50%);
    }

        .section-banner .item img {
            width: 300px;
            display: none;
        }


        .section-banner .item h2 {
            color: #fff;
            font-weight: 600;
            font-size: 18px;
            letter-spacing: 2px;
            line-height: 1.5;
            padding-left: 0px;
            position: relative;
            margin-bottom: 30px;
            text-align: center;
            display: none;
        }

@media (min-width: 576px) {
    .section-banner .item h2 {
        font-size: 30px;
    }
}

@media (min-width: 992px) {
    .section-banner .item h2 {
        font-size: 40px;
    }
}

@media (min-width: 1200px) {
    .section-banner {
        height: 50vh;
    }

        .section-banner .item h2 {
            display: block;
        }

        .section-banner .item {
            top: 50%;
        }

            .section-banner .item img {
                display: block;
                width: 300px;
                margin: auto;
            }

            .section-banner .item h2 {
                display: block;
            }
}

.phone-title {
    display: block;
    background: #131313;
    padding: 15px 0;
    font-size: 16px;
    color: #fff;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {

    .phone-title {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .phone-title {
        display: none;
    }
}

/* --End banner--------------- */


/* START privacy ------------------------------ */

.section-privacy {
    padding: 40px 0;
    background:#fff;
} 

.section-privacy .item {
    margin-bottom: 30px;
}

.section-privacy .item p {
    font-size: 14px;
    margin-bottom: 0;
    color: #323232;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .section-privacy {
        padding: 100px 0;
    }
}


/* END privacy ------------------------------ */
/* --Start sitemap--------------- */
.section-sitemap {
    padding: 40px 0;
}

@media (min-width: 992px) {
    .section-sitemap {
        padding: 100px 0;
    }
}

.section-sitemap h2 a {
    font-size: 18px;
    color: #000;
    position: relative;
    margin-bottom: 15px;
    margin-top: 5px;
    padding-left: 10px;
    font-weight: 500;
    display: block;
    border-left: 3px solid #d00f31;
}

.section-sitemap h2 a:hover {
    color: #d00f31;
}

.section-sitemap a {
    color: #888;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    display: block;
}

.section-sitemap a+a {
    margin-top: 15px;
}

.section-sitemap a:hover {
    color: #d00f31;
}

/* END sitemap ------------------------------ */