.ctc-icon {
    width: 53px;
    height: 53px;
    border: 2px solid #1b80b8;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

@media(max-width: 430px) {
    .ctc-icon {
        width: 45px;
        height: 45px;
    }
}

a.ctc-elem:hover .ctc-icon {
    background-color: #1b80b8;
    transition: .3s;
}

.ctc-elem p {
    font-family: 'Helveticaneuecyr-Roman';
    color: #000;
    margin-top: 0;
    word-break: break-all;
    padding-left: 12px;
    transition: .3s;
}

@media(max-width: 767px) {
    .ctc-elem {
        width: 100%;
    }
    .ctc-elem p {
        font-size: 18px;
        width: 100%;
        flex: 1 1;
    }
}

a.ctc-elem:hover p {
    color: #1b80b8;
    transition: .3s;
}

.ctc-elems {
    padding-top: 8px;
}

@media(max-width: 767px) {
    .ctc-elems {
        padding-top: 0;
    }  
}

.ctc-elem {
    margin-top: 20px;
    margin-right: 30px;
}

.ctc-icon svg {
    max-height: 21px;
    fill: #1b80b8;
    transition: .3s;
}

.location .ctc-icon svg {
    max-height: 24px;
}

@media(max-width: 430px) {
    .ctc-icon svg {
        max-height: 19px;
    }
    .location .ctc-icon svg {
        max-height: 21px;
    }
    .email p {
        font-size: 15px;
    }
}

a.ctc-elem:hover .ctc-icon svg {
    fill: #fff;
    transition: .3s;
}