/* contacts */

.contacts {
    margin: var(--section-margin);
}

.contacts .title {
    color: var(--color-gray);
    font-size: 24px;
}

.contacts .contact {
    margin: 1rem 0;
    font-size: 24px;
    font-weight: 300;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-fill-color: #fff !important;
    text-decoration: none !important;
}

.contacts .contact img {
    width: 20px;
}


/* parlax */

.parlax {
    position: relative;
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment:fixed;
    background-image: url('../img/about.webp');
}



/* media for phone */
@media screen and (max-width: 700px) {
    .contacts .contact {
        font-size: 20px;
    }

    .parlax {
        display: none;
    }
}