:root {
    --font: sans-serif;
    --heading-size: 45px;
    --color1: #0047BB;
    --color2: #002c8f;
}

.contact {
    margin-bottom: 40px;
}

.wc-header {
    text-align: center;
    margin-bottom: 50px;
}

.wc-header>div:nth-child(1) {
    color: var(--color1);
    font-size: 16px;
    font-family: var(--font);
}

.wc-header>div:nth-child(2) {
    font-size: var(--heading-size);
    font-weight: 600;
    color: #0047BB;
    line-height: 50px;
}

.info-item {
    cursor: pointer;
}

.contact .info-item+.info-item {
    margin-top: 40px;
}

.contact .info-item i {
    color: #0047BB;
    background: var(--accent-color);
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.info-item:hover>i {
    background-color: #0047BB;
    color: white;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: black;
    background-color: color-mix(in srgb, rgb(255, 255, 255), transparent 50%);
    border-color: color-mix(in srgb, black, transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border: 1px solid rgb(20, 133, 200);
    background-color: rgb(255, 255, 255);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: rgb(70, 70, 70);
}

.contact .php-email-form button[type=submit] {
    color: white;
    background: var(--color1);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--color2), transparent 20%);
}

.contact-map {
    width: 100%;
    border: none;
    height: 320px;
}

@media screen and (max-width: 550px) {
    .contact-map {
        height: 250px;
    }

    .wc-header>div:nth-child(2) {
        font-size: 25px;
    }

    .wc-header>div:nth-child(1) {
        font-size: 12px;
    }
}

@media screen and (max-width: 325px) {
    .contact-map {
        height: 150px;
    }

    .contact .info-item i {
        font-size: 18px;
        width: 30px;
        height: 30px;
    }

    .contact .info-item h3 {
        font-size: 16px;
    }

    .contact .info-item p {
        font-size: 12px;
    }

    .contact .php-email-form button[type=submit] {
        padding: 6px 17px;
    }
    .def_text {
        font-size: 14px !important;
    }
}

@media screen and (min-width: 992px) {
    .def_text {
        font-size: 16px !important;
    }
}