/* ---- Contacts page ---- */
.btn-primary {
    background-color: #10162A;
    color: #fff;
    border-color: #01D7FC;
    border-radius: 0;
    border-width: 1px;
    padding: 15px 70px;
    text-transform: uppercase;
    font-weight: 500;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: transparent !important;
    border-color: #fff !important;
    color: #fff !important;
    box-shadow: none !important;
}

#contacts_block .form-control {
    color: #01D7FC !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    border-color: transparent !important;
    border-bottom: 1px solid #9A9A9A !important;
    padding: 10px 0 !important;
}
#contacts_block .form-control::placeholder { color: #9A9A9A; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #050812 inset !important;
}
input:-webkit-autofill { -webkit-text-fill-color: #9A9A9A !important; }

#contacts_block .details_title { color: #01D7FC; line-height: 1.1; }
#contacts_block .details       { line-height: 1.3; }

form.contacts-form { margin-top: 60px; }

.address {
    display: grid;
    grid-template-areas:
    "title title title"
    "address divider contact_info";
    grid-template-columns: 2fr 1fr 2fr;
    grid-template-rows: auto auto;
}
.address .page-subtitle   { grid-area: title; }
.address .address_location { grid-area: address; padding-bottom: 20px; }
.address .divider {
    grid-area: divider;
    background-color: rgba(255,255,255,0.2);
    width: 1px;
    align-self: center;
    margin: 0 auto;
    height: 70%;
}
.info {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-area: contact_info;
    color: #01D7FC;
}
.address .info p:first-child { align-self: start; margin: 0; }
.address .info p:last-child  { align-self: end;   margin: 0; }

@media (max-width: 559px) {
    .address {
        display: block;
    }
    .address .address_location { padding-bottom: 20px; }
    #contacts_block .details_title { font-size: 20px; }
    #contacts_block .details       { font-size: 35px; line-height: 1.6; }
    .form-control { margin-bottom: 15px; }
}

@media (min-width: 559px) {
    #contacts_block .details_title { font-size: 60px; }
    #contacts_block .details       { font-size: 30px; line-height: 1.6; }
}
