*{
    padding: 0;
    margin: 0;
}
@font-face {
    font-family: 'Gilroy-Regular';
    src: url('/wp-content/uploads/fonts/Gilroy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy-Bold';
    src: url('/wp-content/uploads/fonts/Gilroy-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy-Medium';
    src: url('/wp-content/uploads/fonts/Gilroy-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy-Semibold';
    src: url('/wp-content/uploads/fonts/Gilroy-Semibold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Gilroy-Regular', sans-serif;
}

.header-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.overlay-visa {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 13, 30, 0.4);
    -webkit-backdrop-filter: blur(8.9999990463px);
    backdrop-filter: blur(8.9999990463px);
    z-index: 1001;
    display: none;
    transition: all 0.5s ease;
    padding: 0 25px;
}

.overlay-visa.open {
    display: block;
}
.visa-modal {
    position: fixed;
    top: 50%;
    left: 50%;
     transform: translate(-50%, -50%);
    padding: 30px;
    max-width: 400px;
    width: 100%;
    background: #075274;
    opacity: 1;
    display: none;
    z-index: 1200;
    transition: all .5s ease;
    box-shadow: 0px 0px 8px 7px rgba(20, 21, 21, 0.23);
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-color: transparent #787A7A;
    scrollbar-width: thin;
}

.visa-modal::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

.visa-modal::-webkit-scrollbar-thumb {
    background-color: #787A7A;
}

@media (max-width:768px) {
    .visa-modal {
        padding: 15px;
    }

}

.visa-modal.active {
    display: block;
    background: #075274 !important;
}
.visa-modal .visa-close_btn {
    display: block;
    cursor: pointer;

}

.visa-modal .visa-close_btn::before,
.visa-modal .visa-close_btn::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 15px;
    display: block;
    width: 24px;
    height: 3px;
    background: #DE0A1B;
}

.visa-modal .visa-close_btn::before {
    transform: rotate(45deg);
}

.visa-modal .visa-close_btn::after {
    transform: rotate(-45deg);
}
.visa-modal form p {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    span {
        width: 100%;
        input {
            width: 100%;
            height: 40px;
            outline: none;
            padding: 5px 20px;
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: 400;
            color: #131313;
            &::placeholder {
                font-size: 14px;
                font-weight: 400;
                color: #131313;
            }

        }
    }
}
.visa-modal .modal_form-title{
    text-align: center;
    margin-bottom: 30px;
}
.visa-modal .wpcf7 form .wpcf7-submit,
.visa-modal .wpcf7 form .wpcf7-submit:hover {
    width: 100%;
    height: 55px;
    background-color: #DE0A1B;
    border: none;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-image: none;
    font-size: 0.875rem;
    border: none;
    color: #fff;
    cursor: pointer;
}

.visa-modal .wpcf7 form .wpcf7-submit:focus {
    border: 1px solid #DE0A1B;
}
