/* -------- contacts -------- */
.breadcrumbs {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 10px 0;
}

.breadcrumbs a {
    color: #f90;
}

.breadcrumbs a:hover {
    color: #ff9610;
    text-decoration: underline;
}

.breadcrumbs span.delimiter {
    color: #fff;
}

.breadcrumbs a span {
    color: #f90;
}

.breadcrumbs span {
    color: #fff;
}

.contacts__info {
    display: flex;
    margin: 30px 0 0;
}

.contacts__info-text {
    margin: 0 30px 0 0;
}

.contacts__info-text p {
    font-size: 16px;
    line-height: 1.5;
}

.contacts__info-text p.address__mail {
    text-decoration: underline;
    font-size: 18px;
    font-weight: 500;
}

.contacts__info-text p + p {
    margin: 8px 0 0;
}

.contacts__info-img img {
    max-width: 300px;
    display: block;
}

.contacts__payment {
    margin: 10px 0 40px;
}

.contacts__payment-item {
    display: flex;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.contacts__payment-item:hover,
.contacts__payment-item:nth-child(2n+1):hover {
    background: #f3f3f3;
}

.contacts__payment-item:nth-child(2n+1) {
    background: #f9f9f9;
    border: none;
}

.contacts__payment-img {
    width: 50%;
    text-align: center;
    margin: 0 50px;
}

.contacts__payment-img img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.contacts__payment-num {
    width: 50%;
}

.contacts__payment-num p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #444;
}

.contacts__us {
    margin: 0 0 15px;
}

.contacts__us > p {
    font-size: 16px;
    margin: 0 0 10px;
}

form.form__contacts {
    background: rgba(61, 54, 148, 0.38);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #e5e5e5;
}

form.form__contacts h3 {
    color: rgb(61, 54, 148);
    font-size: 18px;
    margin: 0 0 10px;
}

.form__contacts-item {
    position: relative;
    margin: 0 0 10px;
    border-radius: 3px;
}

.form__contacts-item span {
    position: absolute;
    top: 5px;
    left: 14px;
    font-size: 22px;
    color: #8f8f8f;
}

.form__contacts-item input,
.form__contacts-item textarea {
    padding: 10px 10px 10px 45px;
    width: 50%;
    border: 1px solid #777;
    background: #f8f8f8;
    border-radius: 3px;
}

.form__contacts-item textarea {
    width: 100%;
}

.form__contacts-item input:focus,
.form__contacts-item textarea:focus {
    border: 1px solid #ffbb00;
    outline: none;
}

.form__contacts-item label {
    font-size: 14px;
    color: #444;
}

.form__contacts button {
    background: #ff9610;
    color: #fff;
    border-radius: 3px;
    transition: all .5s;
    border: 1px solid transparent;
    padding: 12px 15px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}

.form__contacts button:hover {
    z-index: 0;
}

.form__contacts button::before {
    content: '';
    background: rgba(51, 44, 153, 0.61);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: -120%;
    transform: skewX(-45deg);
    transition: all .5s;
}

.form__contacts button:hover::before {
    left: -20%;
    width: 140%;
    z-index: -1;
}
