.service_provider_2021_popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    /* top: -120%; */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
}

.service_provider_2021_popup.service_provider_2021_popup_close {
    animation-name: show_popup_reverse;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-delay: 0s;
    animation-timing-function: ease-in-out;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

.service_provider_2021_popup.service_provider_2021_popup_open {
    animation-name: show_popup;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes show_popup {
    from {
        top: -120%;
    }
    to {
        top: 0;
    }
}

@keyframes show_popup_reverse {
    from {
        top: 0;
    }
    to {
        top: -120%;
    }
}

.service_provider_2021_popup_container {
    width: 70%;
    height: 70%;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
}

.service_provider_2021_popup_image {
    flex: 0 1 45%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.service_provider_2021_popup_image_item {
    height: 100%;
    min-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.service_provider_2021_popup_text_container {
    flex: 0 1 50%;
    position: relative;
    height: 100%;
}

.service_provider_2021_popup_close_container {
    width: calc(100% - 1vmax);
    position: relative;
    padding: 10px 0px 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: flex-end;
}

.service_provider_2021_popup_close_button {
    width: 2vmax;
    height: 2vmax;
    cursor: pointer;
    position: relative;
    z-index: 9;
}

.service_provider_2021_popup_close_line {
    width: 100%;
    background-color: #000;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 50%;
    transition: all 1s ease-in-out;
}

#service_provider_2021_popup_close_line_mob_menu_1 {
    transform: rotate( -45deg);
}

#service_provider_2021_popup_close_line_mob_menu_2 {
    transform: rotate( 45deg);
}

.service_provider_2021_popup_small_title {
    margin: 0;
    padding: 0 10px 0 0;
    font: 100 2vmax/2vmax 'Alegreya Sans', sans-serif;
    position: relative;
    width: 90%;
}

.service_provider_2021_popup_big_title {
    margin: 0;
    padding: 0 10px 0 0;
    font: 400 2.5vmax/2.5vmax 'Alegre';
    position: relative;
    width: 90%;
}

.service_provider_2021_popup_big_text {
    padding: 40px 0 0 0;
    text-align: justify;
    margin: 0;
    font: 300 var(--service_provider_2022_font_size)/var(--service_provider_2022_line_height) 'Effra';
    width: 90%;
    border-bottom: 3px solid #000;
}

.service_provider_2021_popup_big_subtitle {
    margin: 0;
    padding: 0 10px 0 0;
    font: 400 1.8vmax/1.8vmax 'Alegre';
    position: relative;
    width: 90%;
}

.service_provider_2021_popup_nook_container {
    position: relative;
    width: 90%;
    padding: 0 10px 0 0;
    text-align: center;
    margin: 40px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}

.service_provider_2021_popup_nook {
    position: relative;
    text-decoration: none;
    color: #fff;
    font: 400 1.8vmax/1.8vmax 'Alegre';
    letter-spacing: 2px;
    background-color: #000;
    padding: 10px 25px;
    border: 1px solid #fff;
    transition: 0.2s all ease-in-out;
    outline: none;
}

.service_provider_2021_popup_nook:hover {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    transition: 0.2s all ease-in-out;
}

.service_provider_2021_popup_image_links {
    position: absolute;
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

a.service_provider_2021_popup_image_link {
    flex: 1 0 20%;
    position: relative;
    display: block;
    margin: 0 1vmax;
    transition: 0.2s all ease-in-out;
}

a.service_provider_2021_popup_image_link:hover {
    flex: 1 0 25%;
    transition: 0.2s all ease-in-out;
}

.service_provider_2021_popup_image_link_image {
    width: 100%;
    position: relative;
}

a.service_provider_2021_popup_bottom_link {
    flex: 0 1 10%;
    position: relative;
    display: block;
    transition: 0.2s all ease-in-out;
}

a.service_provider_2021_popup_bottom_link:hover {
    transform: scale(1.2);
    transition: 0.2s all ease-in-out;
}

img.service_provider_2021_popup_bottom_link_image {
    width: 100%;
    position: relative;
}

@media screen and (max-width: 1250px) {
    .service_provider_2021_popup_image_links {
        width: 90%;
        justify-content: space-evenly;
    }
    a.service_provider_2021_popup_image_link {
        flex: 0 1 15%;
        position: relative;
        display: block;
        transition: 0.2s all ease-in-out;
        margin: 0;
    }
}

@media screen and (orientation: landscape) and (max-width: 1250px) {
    .service_provider_2021_popup_image_links,
    .service_provider_2021_popup_nook_container {
        width: 50%;
    }
}

@media screen and (orientation: portrait) and (max-width: 500px) {
    .service_provider_2021_popup_close_container {
        width: calc(100% - 4vmax);
        position: absolute;
    }
    .service_provider_2021_popup_close_button {
        width: 4vmax;
        height: 4vmax;
        position: fixed;
        top: 2vmax;
        right: 2vmax;
        background-color: #fff;
        border-radius: 50%;
        padding: 1vmax;
    }
    .service_provider_2021_popup_close_line {
        width: 70%;
        margin: -0.3vmax 0.9vmax;
    }
    .service_provider_2021_popup_container {
        width: 100%;
        height: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    .service_provider_2021_popup_image {
        flex: unset;
        position: relative;
        height: 70%;
        overflow: unset;
        width: 100%;
    }
    .service_provider_2021_popup_image_item {
        height: 100%;
        position: relative;
        width: 100%;
        object-fit: cover;
    }
    .service_provider_2021_popup_image_links {
        width: 90%;
        justify-content: space-evenly;
    }
    a.service_provider_2021_popup_image_link {
        flex: 0 1 15%;
        position: relative;
        display: block;
        transition: 0.2s all ease-in-out;
        margin: 0;
    }
    .service_provider_2021_popup_text_container {
        flex: unset;
        padding: 0 0 0px 0;
        height: unset;
        background-color: #fff;
    }
    .service_provider_2021_popup_small_title {
        font: 100 3.5vmax/3.5vmax 'Alegreya Sans', sans-serif;
        margin: 0 auto;
        padding: 8px 0 0 0;
    }
    .service_provider_2021_popup_big_title {
        font: 400 4vmax/4vmax 'Alegre';
        margin: 0 auto;
        padding: 0;
    }
    .service_provider_2021_popup_big_text {
        padding: 10px 0 0 0;
        margin: 0 auto;
    }
    .service_provider_2021_popup_big_subtitle {
        font: 400 3.5vmax/3.5vmax 'Alegre';
        margin: 0 auto;
        padding: 0 0 30px 0;
    }
    .service_provider_2021_popup_nook_container {
        margin: 0 auto;
        padding: 0 0 50px 0;
    }
    .service_provider_2021_popup_nook {
        font: 400 3.8vmax/3.8vmax 'Alegre';
    }
}

@media screen and (orientation: landscape) and (max-width: 900px) {
    .service_provider_2021_popup_close_container {
        width: calc(100% - 4vmax);
        position: absolute;
    }
    .service_provider_2021_popup_close_button {
        width: 4vmax;
        height: 4vmax;
        position: fixed;
        top: 2vmax;
        right: 2vmax;
        background-color: #fff;
        border-radius: 50%;
        padding: 1vmax;
    }
    .service_provider_2021_popup_close_line {
        width: 70%;
        margin: -0.3vmax 0.9vmax;
    }
    .service_provider_2021_popup_container {
        width: 100%;
        height: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    .service_provider_2021_popup_image {
        flex: unset;
        position: relative;
        height: 70%;
        overflow: unset;
        width: 100%;
    }
    .service_provider_2021_popup_image_item {
        height: unset;
        min-width: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: relative;
        width: 100%;
        top: 50%;
    }
    .service_provider_2021_popup_text_container {
        flex: unset;
        padding: 0 0 0px 0;
        height: unset;
        background-color: #fff;
    }
    .service_provider_2021_popup_small_title {
        font: 100 3.5vmax/3.5vmax 'Alegreya Sans', sans-serif;
        margin: 0 auto;
        padding: 8px 0 0 0;
    }
    .service_provider_2021_popup_big_title {
        font: 400 4vmax/4vmax 'Alegre';
        margin: 0 auto;
        padding: 0;
    }
    .service_provider_2021_popup_big_text {
        padding: 10px 0 0 0;
        margin: 0 auto;
    }
    .service_provider_2021_popup_big_subtitle {
        font: 400 3.5vmax/3.5vmax 'Alegre';
        margin: 0 auto;
        padding: 0 0 20px 0;
    }
    .service_provider_2021_popup_nook_container {
        margin: 0 auto;
        padding: 0 0 50px 0;
    }
    .service_provider_2021_popup_nook {
        font: 400 3.8vmax/3.8vmax 'Alegre';
    }
}

@media screen and (orientation: portrait) and (min-width: 500px) and (max-width: 1250px) {
    .service_provider_2021_popup_close_container {
        width: calc(100% - 4vmax);
        position: absolute;
    }
    .service_provider_2021_popup_close_button {
        width: 4vmax;
        height: 4vmax;
        position: fixed;
        top: 2vmax;
        right: 2vmax;
        background-color: #fff;
        border-radius: 50%;
        padding: 1vmax;
    }
    .service_provider_2021_popup_close_line {
        width: 70%;
        margin: -0.3vmax 0.9vmax;
    }
    .service_provider_2021_popup_container {
        width: 100%;
        height: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    .service_provider_2021_popup_image {
        flex: unset;
        position: relative;
        height: 70%;
        overflow: unset;
        width: 100%;
    }
    .service_provider_2021_popup_image_item {
        height: unset;
        min-width: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: relative;
        width: 100%;
        top: 50%;
    }
    .service_provider_2021_popup_text_container {
        flex: unset;
        padding: 0 0 0px 0;
        height: unset;
        background-color: #fff;
    }
    .service_provider_2021_popup_small_title {
        font: 100 3.5vmax/3.5vmax 'Alegreya Sans', sans-serif;
        margin: 0 auto;
        padding: 8px 0 0 0;
    }
    .service_provider_2021_popup_big_title {
        font: 400 4vmax/4vmax 'Alegre';
        margin: 0 auto;
        padding: 0;
    }
    .service_provider_2021_popup_big_text {
        padding: 10px 0 0 0;
        margin: 0 auto;
    }
    .service_provider_2021_popup_big_subtitle {
        font: 400 3.5vmax/3.5vmax 'Alegre';
        margin: 0 auto;
        padding: 0 0 30px 0;
    }
    .service_provider_2021_popup_nook_container {
        margin: 0 auto;
        padding: 0 0 50px 0;
    }
    .service_provider_2021_popup_nook {
        font: 400 3.8vmax/3.8vmax 'Alegre';
    }
}

@media screen and (orientation: landscape) and (min-width: 900px) and (max-width: 1250px) {
    .service_provider_2021_popup_close_container {
        width: calc(100% - 4vmax);
        position: absolute;
    }
    .service_provider_2021_popup_close_button {
        width: 4vmax;
        height: 4vmax;
        position: fixed;
        top: 2vmax;
        right: 2vmax;
        background-color: #fff;
        border-radius: 50%;
        padding: 1vmax;
    }
    .service_provider_2021_popup_close_line {
        width: 70%;
        margin: -0.3vmax 0.9vmax;
    }
    .service_provider_2021_popup_container {
        width: 100%;
        height: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    .service_provider_2021_popup_image {
        flex: unset;
        position: relative;
        height: 70%;
        overflow: unset;
        width: 100%;
    }
    .service_provider_2021_popup_image_item {
        height: unset;
        min-width: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: relative;
        width: 100%;
        top: 50%;
    }
    .service_provider_2021_popup_text_container {
        flex: unset;
        padding: 0 0 0px 0;
        height: unset;
        background-color: #fff;
    }
    .service_provider_2021_popup_small_title {
        font: 100 3.5vmax/3.5vmax 'Alegreya Sans', sans-serif;
        margin: 0 auto;
        padding: 8px 0 0 0;
    }
    .service_provider_2021_popup_big_title {
        font: 400 4vmax/4vmax 'Alegre';
        margin: 0 auto;
        padding: 0;
    }
    .service_provider_2021_popup_big_text {
        padding: 10px 0 0 0;
        margin: 0 auto;
    }
    .service_provider_2021_popup_big_subtitle {
        font: 400 3.5vmax/3.5vmax 'Alegre';
        margin: 0 auto;
        padding: 0 0 20px 0;
    }
    .service_provider_2021_popup_nook_container {
        margin: 0 auto;
        padding: 0 0 50px 0;
    }
    .service_provider_2021_popup_nook {
        font: 400 3.8vmax/3.8vmax 'Alegre';
    }
}