@font-face {
    font-family: 'Effra';
    src: url('./font/Effra_Light.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-weight: 300;
}

@font-face {
    font-family: 'Effra';
    src: url('./font/Effra_Regular.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-weight: 400;
}

@font-face {
    font-family: 'Effra';
    src: url('./font/Effra_Medium.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-weight: 600;
}

@font-face {
    font-family: 'Effra';
    src: url('./font/Effra_Bold.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-weight: 700;
}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url('./font/OpenSans_Condensed-Light.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-weight: 300;
}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url('./font/OpenSans_Condensed-Bold.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-weight: 700;
}

body {
    background-color: #e0dedc;
    padding: var(--body_margin_top) 0 0 0;
    margin: 0;
}

:root {
    --login_label_size: 1.1vw;
    --login_input_text_size: 0.9vw;
    --login_links_and_buttons_size_text: 0.8vw;
    --login_small_text_size: 0.8vw;
    --h1_text_size: 2.2vw;
    --h2_text_size: 1.8vw;
    /*----------RESPONSIVE MENU VARIABLES------------*/
    --body_margin_top: 10vh;
    --top_menu_font_size: 0.9vmax;
    --top_menu_font_height: 0.7vmax;
    --sitemap_title: 1.3vw;
    --sitemap_text: 1.1vw;
    --logout_line_height: 2.5vh;
    /*----------RESPONSIVE MENU VARIABLES------------*/
    /*----------ARTICLE STYLES------------*/
    --article_title_size: 1.8vw;
    --article_description_size: 1.1vw;
    /*----------ARTICLE STYLES------------*/
}

h1 {
    font: 600 var(--h1_text_size) 'Open Sans', sans-serif;
    margin: 0;
    color: #333;
}

h2 {
    font: 600 var(--h2_text_size) 'Open Sans', sans-serif;
}


/*---------------LOGIN STYLES-------------------*/

.login-img {
    width: 50%;
}

.login_master_container {
    width: 40%;
    position: relative;
    margin: 0 auto;
}

.index_my_body {
    width: 100%;
    text-align: center;
    padding: 0;
}

.index_my_body * {
    color: #333;
}

.login_form {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.general_form {
    width: 60%;
    position: relative;
    display: block;
    margin: 2vh auto;
}

.login_form label,
.general_form_fields label {
    font: 400 var(--login_label_size) 'Effra';
}

.general_form_fields {
    width: 100%;
    position: relative;
    display: block;
    text-align: left;
}

.general_form_fields label {
    padding: 0 0 1vh 0;
    display: block;
}

.general_form_fields select,
.general_form_fields input {
    width: 100%;
    display: block;
    position: relative;
    padding: 0.5vw 0.5vh;
    border: 2px solid #ccc;
    margin: 0 auto;
    border-radius: 5px;
    background-color: #fff;
}

.login_form input,
.general_form_fields select,
.general_form_fields input {
    font: 400 var(--login_input_text_size) 'Open Sans', sans-serif;
}

.general_form_fields.radio_buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    margin: 0 auto;
}

.general_form_fields.radio_buttons label {
    display: inline;
    position: relative;
    width: unset;
    padding: 0;
    order: 1;
}

.general_form_fields.radio_buttons input {
    width: unset;
    display: inline;
    position: relative;
    margin: 0 1vw 0 0;
    order: 0;
    top: -2px;
}

.home_my_body {
    width: 100%;
    text-align: center;
}

.login_footer_info {
    color: #333;
    font: 400 var(--login_small_text_size) 'Effra';
    text-align: center!important;
}

.login_horizontal_line {
    width: 90%;
    position: relative;
}

.ca {
    font: 400 var(--login_links_and_buttons_size_text) 'Effra';
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    color: #444;
}

.login_form button,
.general_form_submit {
    font: 400 var(--login_links_and_buttons_size_text) 'Effra';
    cursor: pointer;
    background-color: #444;
    transition: 0.2s all ease-in-out;
    border: 1px solid #111;
}

.general_form_submit {
    float: none;
    display: block;
    margin: 0 0 0 auto;
}

.login_form button:hover,
.general_form_submit:hover {
    background-color: #fff;
    color: #333;
    transition: 0.2s all ease-in-out;
    border: 1px solid #333;
}


/*---------------LOGIN STYLES-------------------*/


/*---------------RESPONSIVE MENU STYLES-------------------*/

.responsive_top_menu_master_container {
    width: 100vw;
    height: var(--body_margin_top);
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 9;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}

.responsive_top_menu_item {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.responsive_top_menu_button_container {
    color: #000;
    font: 400 var(--top_menu_font_size)/var(--top_menu_font_height) 'Effra';
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    transition: 0.2s all ease-in-out;
    cursor: pointer;
}

.responsive_top_menu_button_container:hover {
    color: #861f20;
    transition: 0.2s all ease-in-out;
}

.full_width_menu_2021_button {
    width: 28px;
    height: 20px;
    position: relative;
    margin: 0 15px 0 0;
    cursor: pointer;
    top: -3px;
}

.full_width_menu_2021_button_line {
    height: 1px;
    background-color: #000;
    position: absolute;
    transition: 0.2s all ease-in-out;
}

.responsive_top_menu_link_container {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.responsive_top_menu_link {
    font: 400 var(--top_menu_font_size)/var(--top_menu_font_height) 'Effra';
    display: block;
    position: relative;
    text-decoration: none;
    text-align: center;
    color: #000;
}

.responsive_top_menu_link2 {
    font: 400 var(--top_menu_font_size)/var(--top_menu_font_height) 'Effra';
    display: block;
    position: relative;
    text-decoration: none;
    text-align: center;
    color: #000;
}

.responsive_top_menu_link.logout {
    font: 400 var(--top_menu_font_size)/var(--logout_line_height) 'Effra', sans-serif;
    text-decoration: none;
}

.responsive_top_menu_link:hover {
    color: #861f20;
    transition: 0.2s all ease-in-out;
}

.responsive_top_menu_link::after {
    content: "";
    width: 0;
    height: 1px;
    background-color: #861f20;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    bottom: 0;
    transition: 0.2s all ease-in-out;
}

.responsive_top_menu_link:hover:after {
    width: 100%;
    transition: 0.2s all ease-in-out;
}

.responsive_top_menu_button_container:hover .full_width_menu_2021_button_line {
    background-color: #861f20;
    transition: 0.2s all ease-in-out;
}

#full_width_menu_2021_button_line_1 {
    width: 100%;
    top: 0;
    transition: 0.2s all ease-in-out;
}

#full_width_menu_2021_button_line_2 {
    width: 80%;
    top: 50%;
    transition: 0.2s all ease-in-out;
}

#full_width_menu_2021_button_line_3 {
    width: 100%;
    bottom: 0;
    transition: 0.2s all ease-in-out;
}

.responsive_top_menu_button_container:hover #full_width_menu_2021_button_line_1 {
    width: 100%;
    top: 100%;
    transition: 0.2s all ease-in-out;
}

.responsive_top_menu_button_container:hover #full_width_menu_2021_button_line_2 {
    width: 100%;
    transition: 0.2s all ease-in-out;
    top: 50%;
}

.responsive_top_menu_button_container:hover #full_width_menu_2021_button_line_3 {
    width: 100%;
    bottom: 100%;
    transition: 0.2s all ease-in-out;
}

.floating_menu_master_container {
    width: 30vw;
    height: 100vh;
    position: fixed;
    background-color: #fff;
    left: -35vw;
    top: 0;
    z-index: 99;
    transition: 0.2s all ease-in-out;
    box-shadow: 10px 0px 42px 0px rgba(0, 0, 0, 0.74);
    -webkit-box-shadow: 10px 0px 42px 0px rgba(0, 0, 0, 0.74);
    -moz-box-shadow: 10px 0px 42px 0px rgba(0, 0, 0, 0.74);
}

.floating_menu_master_container.open {
    left: 0;
    transition: 0.2s all ease-in-out;
}

.floating_menu_title {
    width: 95%;
    margin: 0 auto;
    position: relative;
    padding: 0 0 0vh 0;
    height: 15vh;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.floating_menu_title h2 {
    margin: 0;
    order: 0;
}

.floating_menu_close_button {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    top: 0px;
    right: 0px;
    z-index: 9;
    order: 1;
}

.floating_menu_close_button_line {
    width: 100%;
    background-color: #104c97;
    /* background-color: #ff5912; */
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 50%;
    transition: all 1s ease-in-out;
}

#floating_menu_close_line_1 {
    transform: rotate(-45deg);
}

#floating_menu_close_line_2 {
    transform: rotate(45deg);
}

#floating_menu_groups {
    max-height: 85vh;
}

.floating_menu_group_container {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0 0 3vh 0;
}

.floating_menu_group_title {
    width: 100%;
    position: relative;
    font: 600 var(--sitemap_title) 'Open Sans Condensed', sans-serif;
    color: #333;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 0 2.5%;
    margin: 0;
}

.floating_menu_item_divider {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 5px 0;
    padding: 0;
}

.floating_menu_group_item {
    width: 100%;
    display: block;
    padding: 0 2.5%;
    margin: 0;
    position: relative;
}

.floating_menu_item_divider {
    margin: 5px 0 0 0;
}

.floating_menu_group_item>a {
    font: 300 var(--sitemap_text) 'Effra', sans-serif;
    color: #666;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 2vh 0 0 0;
    transition: 0.2s all ease-in-out;
}

.floating_menu_group_item>a:hover {
    color: #ff5912;
    transition: 0.2s all ease-in-out;
}


/*
.hide_in_pc {
    display: none;
}
*/


/*---------------RESPONSIVE MENU STYLES-------------------*/


/*---------------ARTICLE STYLES-------------------*/

.article_title {
    width: 95%;
    margin: 0 auto 2vh auto;
    font: 600 var(--article_title_size) 'Open Sans', sans-serif;
    position: relative;
}

.article_description {
    width: 95%;
    margin: 0 auto;
    text-align: left;
    font: 400 var(--article_description_size) 'Effra';
    position: relative;
}

.article_description a {
    font: 400 var(--article_description_size) 'Effra';
    color: #333;
    transition: 0.2s all ease-in-out;
}

.article_description a:hover {
    color: #cf7215;
    transition: 0.2s all ease-in-out;
}

.pdfIframe {
    width: 100%;
    position: relative;
    height: calc(100vh - var(--body_margin_top));
}


/*---------------ARTICLE STYLES-------------------*/

@media screen and (orientation: portrait) and (max-width: 500px) {
     :root {
        --login_label_size: 5.1vw;
        --login_input_text_size: 4.9vw;
        --login_links_and_buttons_size_text: 4.8vw;
        --login_small_text_size: 4.8vw;
        --h1_text_size: 7.2vw;
        --h2_text_size: 6.8vw;
        /*----------RESPONSIVE MENU VARIABLES------------*/
        --body_margin_top: 10vh;
        --top_menu_font_size: 2.2vmax;
        --top_menu_font_height: 2.0vmax;
        --sitemap_title: 5.3vw;
        --sitemap_text: 5.1vw;
        --logout_line_height: 3vh;
        /*----------RESPONSIVE MENU VARIABLES------------*/
        /*----------ARTICLE STYLES------------*/
        --article_title_size: 5.8vw;
        --article_description_size: 5.2vw;
        /*----------ARTICLE STYLES------------*/
    }
    .hide_in_pc {
        display: block;
    }
    /*---------------LOGIN STYLES-------------------*/
    .login-img {
        width: 80%;
    }
    .login_master_container {
        width: 95%;
    }
    .login_form {
        padding: 0;
    }
    .login_form button {
        float: unset;
        width: 95%;
        margin: 0 auto 3vh auto;
        display: block;
    }
    .ca {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0vh 0 3vh 0;
    }
    .login_horizontal_line {
        width: 100%;
    }
    /*---------------LOGIN STYLES-------------------*/
    /*---------------RESPONSIVE MENU STYLES-------------------*/
    .hide_in_mobile {
        display: none;
    }
    .full_width_menu_2021_button {
        width: 10vw;
        height: calc(var(--body_margin_top) - 7vh);
    }
    .responsive_top_menu_master_container {
        padding: 0 2.5vw;
        justify-content: space-between;
    }
    .floating_menu_master_container {
        width: 100vw;
        left: -120vw;
    }
    .floating_menu_title {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin: 1vh auto 5vh auto;
        height: 10vh;
    }
    #floating_menu_groups {
        max-height: 90vh;
    }
    .floating_menu_close_button {
        width: 10vw;
        height: 10vw;
        top: 0;
        right: 0;
        position: relative;
        order: 1;
    }
    .floating_menu_title h2 {
        font: 600 calc(var(--h2_text_size) - 1vw) 'Open Sans', sans-serif;
        order: 0;
        margin: 0;
    }
    .floating_menu_group_item>a {
        padding: 3vh 0 2vh 0;
    }
    .floating_menu_group_item::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #ddd;
        margin: 0;
        padding: 0;
        bottom: 0;
        left: 0;
    }
    .floating_menu_group_container {
        padding: 0 0 10vh 0;
    }
    /*---------------RESPONSIVE MENU STYLES-------------------*/
    /*---------FORM---------*/
    .general_form {
        width: calc(100% - 2px);
        padding: 1vh 3vw;
    }
    /*---------FORM---------*/
}

@media screen and (orientation: landscape) and (max-width: 900px) {
     :root {
        --login_label_size: 3.1vw;
        --login_input_text_size: 2.9vw;
        --login_links_and_buttons_size_text: 2.8vw;
        --login_small_text_size: 2.8vw;
        --h1_text_size: 4.2vw;
        --h2_text_size: 3.8vw;
        /*----------RESPONSIVE MENU VARIABLES------------*/
        --body_margin_top: 20vh;
        --top_menu_font_size: 2.2vmax;
        --top_menu_font_height: 2.0vmax;
        --sitemap_title: 2.9vw;
        --sitemap_text: 2.7vw;
        --logout_line_height: 6vh;
        /*----------RESPONSIVE MENU VARIABLES------------*/
        /*----------ARTICLE STYLES------------*/
        --article_title_size: 2.8vw;
        --article_description_size: 2.2vw;
        /*----------ARTICLE STYLES------------*/
    }
    /*---------------LOGIN STYLES-------------------*/
    .hide_in_pc {
        display: block;
    }
    .login-img {
        width: 80%;
    }
    .login_master_container {
        width: 95%;
    }
    .login_form {
        padding: 0;
    }
    .login_form button {
        float: unset;
        width: 95%;
        margin: 0 auto 8vh auto;
        display: block;
    }
    .ca {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0vh 0 8vh 0;
    }
    .login_horizontal_line {
        width: 100%;
    }
    /*---------------LOGIN STYLES-------------------*/
    /*---------------RESPONSIVE MENU STYLES-------------------*/
    .hide_in_mobile {
        display: none;
    }
    .full_width_menu_2021_button {
        width: 5vw;
        height: calc(var(--body_margin_top) - 14vh);
    }
    .responsive_top_menu_master_container {
        padding: 0 2.5vw;
        justify-content: space-between;
    }
    .floating_menu_master_container {
        width: 100vw;
        left: -120vw;
    }
    .floating_menu_title {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin: 1vh auto 5vh auto;
        height: 20vh;
    }
    #floating_menu_groups {
        max-height: 80vh;
    }
    .floating_menu_close_button {
        width: 5vw;
        height: 5vw;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        position: absolute;
        order: 1;
    }
    .floating_menu_title h2 {
        font: 600 calc(var(--h2_text_size) - 0.5vw) 'Open Sans', sans-serif;
        order: 0;
        margin: 0;
    }
    .floating_menu_group_item>a {
        padding: 3vh 0 2vh 0;
    }
    .floating_menu_group_item::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #ddd;
        margin: 0;
        padding: 0;
        bottom: 0;
        left: 0;
    }
    .floating_menu_group_container {
        padding: 0 0 10vh 0;
    }
    /*---------------RESPONSIVE MENU STYLES-------------------*/
    /*---------FORM---------*/
    .general_form {
        width: calc(95% - 2px);
        padding: 1vh 2vw;
    }
    /*---------FORM---------*/
}

@media screen and (orientation: portrait) and (min-width: 500px) and (max-width: 1200px) {
     :root {
        --login_label_size: 3.1vw;
        --login_input_text_size: 2.9vw;
        --login_links_and_buttons_size_text: 2.8vw;
        --login_small_text_size: 2.8vw;
        --h1_text_size: 5.2vw;
        --h2_text_size: 4.8vw;
        /*----------RESPONSIVE MENU VARIABLES------------*/
        --body_margin_top: 10vh;
        --top_menu_font_size: 2.2vmax;
        --top_menu_font_height: 2.0vmax;
        --sitemap_title: 3.3vw;
        --sitemap_text: 3.1vw;
        --logout_line_height: 3vh;
        /*----------RESPONSIVE MENU VARIABLES------------*/
        /*----------ARTICLE STYLES------------*/
        --article_title_size: 3.8vw;
        --article_description_size: 3.2vw;
        /*----------ARTICLE STYLES------------*/
    }
    /*---------------LOGIN STYLES-------------------*/
    .hide_in_pc {
        display: block;
    }
    .login-img {
        width: 80%;
    }
    .login_master_container {
        width: 95%;
    }
    .login_form {
        padding: 0;
    }
    .login_form button {
        float: unset;
        width: 95%;
        margin: 0 auto 3vh auto;
        display: block;
    }
    .ca {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0vh 0 3vh 0;
    }
    .login_horizontal_line {
        width: 100%;
    }
    /*---------------LOGIN STYLES-------------------*/
    /*---------------RESPONSIVE MENU STYLES-------------------*/
    .hide_in_mobile {
        display: none;
    }
    .full_width_menu_2021_button {
        width: 7vw;
        height: calc(var(--body_margin_top) - 7vh);
    }
    .responsive_top_menu_master_container {
        padding: 0 2.5vw;
        justify-content: space-between;
    }
    .floating_menu_master_container {
        width: 100vw;
        left: -120vw;
    }
    .floating_menu_title {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin: 1vh auto 5vh auto;
        height: 10vh;
    }
    #floating_menu_groups {
        max-height: 80vh;
    }
    .floating_menu_close_button {
        width: 10vw;
        height: 10vw;
        top: 0;
        right: 0;
        position: relative;
        order: 1;
    }
    .floating_menu_title h2 {
        font: 600 calc(var(--h2_text_size) + 0.5vw) 'Open Sans', sans-serif;
        order: 0;
        margin: 0;
    }
    .floating_menu_group_item>a {
        padding: 3vh 0 2vh 0;
    }
    .floating_menu_group_item::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #ddd;
        margin: 0;
        padding: 0;
        bottom: 0;
        left: 0;
    }
    .floating_menu_group_container {
        padding: 0 0 10vh 0;
    }
    /*---------------RESPONSIVE MENU STYLES-------------------*/
    /*---------FORM---------*/
    .general_form {
        width: calc(100% - 2px);
        padding: 1vh 3vw;
    }
    /*---------FORM---------*/
}

@media screen and (orientation: landscape) and (min-width: 900px) and (max-width: 1200px) {
     :root {
        --login_label_size: 2.1vw;
        --login_input_text_size: 1.9vw;
        --login_links_and_buttons_size_text: 1.8vw;
        --login_small_text_size: 1.8vw;
        --h1_text_size: 3.2vw;
        --h2_text_size: 2.8vw;
        /*----------RESPONSIVE MENU VARIABLES------------*/
        --body_margin_top: 15vh;
        --top_menu_font_size: 2.2vw;
        --top_menu_font_height: 2.0vw;
        --sitemap_title: 2.9vw;
        --sitemap_text: 2.7vw;
        --logout_line_height: 5vh;
        /*----------RESPONSIVE MENU VARIABLES------------*/
        /*----------ARTICLE STYLES------------*/
        --article_title_size: 2.8vw;
        --article_description_size: 2.2vw;
        /*----------ARTICLE STYLES------------*/
    }
    /*---------------LOGIN STYLES-------------------*/
    .hide_in_pc {
        display: block;
    }
    .login-img {
        width: 80%;
    }
    .login_master_container {
        width: 95%;
    }
    .login_form {
        padding: 0;
    }
    .login_form button {
        float: unset;
        width: 95%;
        margin: 0 auto 5vh auto;
        display: block;
    }
    .ca {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0vh 0 5vh 0;
    }
    .login_horizontal_line {
        width: 100%;
    }
    /*---------------LOGIN STYLES-------------------*/
    /*---------------RESPONSIVE MENU STYLES-------------------*/
    .hide_in_mobile {
        display: none;
    }
    .full_width_menu_2021_button {
        width: 5vw;
        height: calc(var(--body_margin_top) - 10vh);
    }
    .responsive_top_menu_master_container {
        padding: 0 2.5vw;
        justify-content: space-between;
    }
    .floating_menu_master_container {
        width: 100vw;
        left: -120vw;
    }
    .floating_menu_title {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin: 1vh auto 5vh auto;
        height: 10vh;
    }
    #floating_menu_groups {
        max-height: 80vh;
    }
    .floating_menu_close_button {
        width: 5vw;
        height: 5vw;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        position: absolute;
        order: 1;
    }
    .floating_menu_title h2 {
        font: 600 calc(var(--h2_text_size) + 0.5vw) 'Open Sans', sans-serif;
        order: 0;
        margin: 0;
    }
    .floating_menu_group_item>a {
        padding: 3vh 0 2vh 0;
    }
    .floating_menu_group_item::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #ddd;
        margin: 0;
        padding: 0;
        bottom: 0;
        left: 0;
    }
    .floating_menu_group_container {
        padding: 0 0 10vh 0;
    }
    /*---------------RESPONSIVE MENU STYLES-------------------*/
    /*---------FORM---------*/
    .general_form {
        width: calc(95% - 2px);
        padding: 1vh 2vw;
    }
    /*---------FORM---------*/
}