.dropdown .option span {
    display: none;
}

@media only screen and (max-width: 991px) {
    .dropdown .option {
        position: relative;
    }


    .dropdown .option ul {
        display: none;
        padding: 0 20px 20px;
        width: 100%;
        position: absolute;
        z-index: 1;
        background-color: #f7f7f7;
    }

    .dropdown .option ul li {
        margin-top: 10px;
    }

    .dropdown .option span {
        display: block;
        width: fit-content;
        min-width: 146px;
        padding: 12px 30px 12px 20px;
        background-color: #F7F7F7;
        border-radius: 2px;
        font-size: 1.4rem;
        position: relative;
        cursor: pointer;

    }

    .dropdown .option span::after {
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.016' height='6.121' viewBox='0 0 10.016 6.121'%3E%3Cpath id='arrow_back_ios_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24' d='M4.91-870.179,0-875.09,4.91-880l.872.872L1.743-875.09l4.039,4.039Z' transform='matrix(0.035, -0.999, 0.999, 0.035, 879.464, 36.49)' fill='%231f1f1f'/%3E%3C/svg%3E%0A");
        background-size: cover;
        background-repeat: no-repeat;
        width: 10px;
        height: 6px;
        display: inline-block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* contact form  */
.wp-content form a[target=_blank]::after {
    display: none;
}

.page-contact-form__info-btn {
    text-align: center;
}

.page-contact-form__info-btn .btn-submitbox {
    cursor: pointer;
    border-radius: 4px;
    background-color: #222222;
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    position: relative;
    padding: 16px 80px 17px 32px;
    border: 1px solid #222222;
}

.page-contact-form__info-btn .btn-submitbox:hover {
    /* opacity: 0.8; */
    background-color: var(--color-white);
    color: #222222;
}

.page-contact-form__info-btn .btn-submitbox::after {
    content: "";
    display: block;
    transition: all 0.4s ease-in-out;
    width: 23px;
    height: 23px;
    background-image: url("data:image/svg+xml,%3Csvg id='Group_1260' data-name='Group 1260' xmlns='http://www.w3.org/2000/svg' width='23' height='23' viewBox='0 0 23 23'%3E%3Ccircle id='Ellipse_2' data-name='Ellipse 2' cx='11.5' cy='11.5' r='11.5' fill='%23fff' opacity='0.247'/%3E%3Cpath id='arrow_forward_24dp_EA3323_FILL0_wght400_GRAD0_opsz24_1_' data-name='arrow_forward_24dp_EA3323_FILL0_wght400_GRAD0_opsz24 (1)' d='M166.617-795.109H160V-796.2h6.617l-3.044-3.043.774-.761,4.348,4.348-4.348,4.348-.774-.761Z' transform='translate(-152.74 807.164)' fill='%23fff'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);

}

.page-contact-form__info-btn .btn-submitbox:hover::after {
    filter: brightness(.5);
}

.page-contact-form__info-btn .btn-submitbox .btn-submit {
    cursor: pointer;
    outline: none;
    border: none;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}


.page-contact-form__info-btn .wpcf7-spinner {
    position: absolute;
}

.page-contact-form__info.-grp {
    display: flex;
    gap: 40px;
    justify-content: center;
}

@media only screen and (max-width: 576px) {
    .page-contact-form__info.-grp {
        /* flex-direction: column; */
        gap: 20px;
    }
}

.btn-submitbox.-left {
    padding: 16px 32px 17px 80px;
}

.btn-submitbox.-left::after {
    right: unset;
    left: 32px;
    transform: translateY(-50%) rotate(180deg);
}

.page-contact-form__info-btn .btn-submitbox {
    /* max-width: 175px; */
}

@media only screen and (max-width: 576px) {
    .page-contact-form__info-btn .btn-submitbox {
        font-size: 1.2rem;
        padding: 15px 55px 15px 30px;
    }

    .page-contact-form__info-btn .btn-submitbox::after {
        width: 18px;
        height: 18px;
        right: 20px;
    }

    .page-contact-form__info-btn .btn-submitbox.-left {
        padding-left: 55px;
        padding-right: 30px;
    }

    .page-contact-form__info-btn .btn-submitbox.-left::after {
        left: 20px;
    }
}

.--policyacceptance-error {
    text-align: center;
    color: #dc3232;
    font-size: 1.3rem !important;
    font-weight: normal;
    display: none;
    margin-top: 5px;
}

@media only screen and (max-width: 767px) {
    .page-contact-form__info-btn .btn-submitbox:hover {
        background-color: #222222;
        color: var(--color-white);
    }

    .page-contact-form__info-btn .btn-submitbox:hover::after {
        filter: brightness(1);
    }
}

/* error message fix  */
.page-contact-form__info-privacy {
    position: relative;
}

.page-contact-form__info-privacy .wpcf7-form-control-wrap {
    position: static;
}

.input-checkbox.wpcf7-not-valid+.wpcf7-not-valid-tip {
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
}

@media only screen and (max-width: 576) {
    .wpcf7-not-valid-tip {
        font-size: 1.2rem;
    }
}

.header {
    padding: 24px 50px 24px !important;
}

.header__logo {
    margin-top: -3px;
}

.footer__logo {
    padding-bottom: 18px !important;
}

.footer {
    padding-top: 36px !important;
}

@media only screen and (max-width: 767px) {
    .header {
        padding: 13px 20px 13px 18px !important;
    }

    .header__logo {
        margin-top: 0;
    }

    .header__logo img {
        max-width: 60px !important;
    }

    .footer__logo img {
        max-width: 80px !important;
    }

    .footer {
        padding-top: 48px !important;
    }
}