.contacts {
    width: 100%;
    height: 95rem;
    padding: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
}

.contacts img {
    width: 30rem;
    height: 20.2rem;
}

.contacts-title {
    margin: 8rem 0 4rem;
    color: #05173C;
    font-size: 4rem;
    line-height: 5rem;
    font-weight: 600;
}

.contacts span {
    font-size: 2rem;
    color: #333333;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .contacts {
        width: 100%;
        height: 75.2rem;
        padding: 16rem 1.6rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
    }

    .contacts img {
        width: 20rem;
        height: 13.5rem;
    }

    .contacts-title {
        margin: 4rem 0 2.4rem;
        color: #05173C;
        font-size: 2rem;
        line-height: 2.4rem;
        font-weight: 600;
    }

    .contacts span {
        font-size: 1.2rem;
        color: #333333;
        text-align: center;
    }
}