/* VARIABLES CSS ---------------------------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Gudea:ital,wght@0,400;0,700;1,400&amp;display=swap');

/* VARIABLES CSS ---------------------------------------------------------------------------------------------------- */
:root {
    --header-height: max-content;

    /* COLOR */
    --first-color: #052B36;
    --second-color: #8DC3DB;
    --third-color: #207A91;
    --light-color: #FFFFFF;

    --gray-color: #9B9B9B;
    --gray-color-alt: #F5F5F5;
    --gray-color-dim: #E9E9E9;
    --blue-color-dim: #3A75C3;
    --white-color: white;
    --black-color: black;

    /* ---- Font and typography ---- */
    /*.5rem = 8px | 1rem = 16px ...*/
    --biggest-font-size: 3rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /* Font weight */
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-semi: 700;


    /* Font weight  */
    --icon-size: 1.50rem;

    /*  z index  */
    --z-tooltip: 10;
    --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
    :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1.25rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
        --icon-size: 1.5rem;
    }
}

/* --------------------BASE -------------------- */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Gudea", sans-serif;
    font-size: var(--normal-font-size);
}

h1, h2, h3 {
    font-weight: var(--font-medium);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*  REUSABLE CSS CLASSES ------------------------------------------------------------------------------------------ */
.container {
    max-width: 1550px;
    margin-inline: 1rem;
}

.grid {
    display: grid;
}

.section {
    margin: 0;
}

.section_title {
    font-size: var(--h1-font-size);
    align-items: center;
}

.section_subtitle {
    display: block;
    font-size: var(--h2-font-size);

}

.container-title {
    margin-top: 1rem;
    margin-bottom: .5rem;
}

.title_small-one {
    font-size: var(--smaller-font-size);
    margin-bottom: 1.5rem;
}


/* ---- BREAKPOINTS ---- */
/* FOR SMALL DEVICES */
@media screen and (max-width: 340px) {
    .container {
        margin-inline: 1rem;
    }

}

/* ---- BREAKPOINTS ---- */
/* FOR SMALL DEVICES */
@media screen and (max-width: 340px) {
    .container {
        margin-inline: 1rem;
    }

}

/* ---- For large devices ---- */
@media screen and (min-width: 768px) {

    .section_title {
        margin-bottom: .75rem;
    }
}

@media screen and (min-width: 1024px){
    .container {
        margin-inline: auto;
        padding-inline: 1.5rem;
    }
}

.body {
    max-width: 1440px;
    padding: 0 100px;
    box-sizing: border-box;
    margin: 0 auto;
}

.body_full {
    width: 100%;
}

.main_img_block img{
    width: 100%;
}

/* WRAPPERS --------------------------------------------------------------------------------------------------------- */
.wrapper_one {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    height: 70vh;
    color: white;
    box-shadow: 1px -32px 15px -13px var(--first-color) inset;
}

@media screen and (min-width: 700px) {
    .wrapper_one {
        height: 100vh;
    }
}

.wrapper_two {
    background-color: var(--first-color);
    align-self: start;
    padding-block: 3rem;
    box-shadow: -1px 1px 17px 18px var(--first-color);
    z-index: 100;
}

.wrapper_three {
    background-color: var(--first-color);
}

.wrapper_four {
    background-color: var(--first-color);
    padding-block: 3rem;
    box-shadow: -2px -19px 33px 15px var(--first-color);
    width: 100%;
    z-index: 1000;
}

/* HEADER --------------------------------------------------------------------------------------------------------- */
.mobile_header {
    position: relative;
    z-index: 100;

}

.mobile_nav_container {
    position: relative;
    display: none;
    z-index: 100;
}

.header_toggle_button {
    top: .8rem;
    right: .8rem;
    position: fixed;
    outline: none;
    border: none;
    background-color: white;
    padding: .5rem;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6000;
    cursor: pointer;
}

.bars, .close {
    width: 25px;
}

.mobile_nav_container.open {
    position: fixed;
    background: rgba(255, 255, 255, 0.90);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    top: 0;
    height: max-content;
    padding-block:3.8rem 3rem;
    z-index: 1000;
}

.mobile_flag_container {
    position: fixed;
    top: .8rem;
    left: .8rem;
    display: flex;
    gap: 1rem;
    cursor: auto;
}

.desktop_flag_container {
    display: flex;
    gap: .6rem;
    cursor: auto;
}

.header_flag_img {
    height: 27px;
}

.nav_list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    row-gap: 1.5rem;
}

.nav_link {
    font-size: var(--normal-font-size);
    text-decoration: none;
    color: var(--third-color);
    text-decoration-color: var(--third-color);
    text-underline-offset: 10px;

}

.nav_link:hover {
    color: var(--black-color);
    text-decoration-color: var(--black-color);
}

.active_nav_link {
    text-decoration: underline;
    color: var(--black-color);
    text-decoration-color: var(--black-color);
    text-underline-offset: 10px;
}

.desktop_header {
    display: none;
}

.header_company_name {
    font-size: 16px;
}

@media screen and (min-width: 1184px) {
    .mobile_header {
        display: none;
    }

    .desktop_header {
        display: block;
        position: fixed;
        width: 100%;
        background: rgba(255, 255, 255, 0.70);
        height: var(--header-height);
        z-index: 1000;
    }

    .desktop_header_container {
        padding-block: 1.5rem;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
        gap: .7rem;
    }

    .header_flags {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
    }

    .nav_list {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        margin-top: 0;
        column-gap: 1.2rem;
    }

    .nav_link {
        font-size: var(--small-font-size);
    }


}

@media screen and (min-width: 1300px) {
    .nav_link {
        font-size: calc(var(--small-font-size) + .1rem);
    }
}


@media screen and (min-width: 1300px) {
    .header_company_name {
        font-size: 18px;
    }
}

@media screen and (min-width: 1486px) {
    .nav_link {
        font-size: calc(var(--small-font-size) + .3rem);
    }
}



/* HOME PAGE  -------------------------------------------------------------------------------------------------------- */
.home_wrapper {
    display: grid;
    padding-inline: .3rem;
    height: 80vh;
}

.home_middle_wrapper {
    height: 40vh;
}

.home_top_container {
    align-self: center;
    justify-self: center;
    text-align: center;
    font-size: var(--h3-font-size);
    padding-top: 2.5rem;
}

.home_top_title {
    padding-top: 5.9rem;
}

.home_tab_container {
    padding-block: 3rem;
    align-self: center;
    padding-inline: 2rem;
    max-width: 1000px;
}

.home_pdf_link {
    font-size: var(--h2-font-size);
    font-weight: 700;
    text-align: left;
    color: var(--second-color);
}

.home_tab_subtittle {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    margin-block: 1rem;
}

.home_tab_description {
    color: var(--white-color);
    margin-bottom: .5rem;
    font-size: var(--h3-font-size);
    line-height: 27px;
}

/* CONTACT TAB */
.contact_form_container {
    margin-block: 2.5rem;
}

.contact_form_title {
    color: var(--second-color);
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi);
}

.contact_description {
    color: var(--white-color);
    margin-block: 1rem;
    font-size: var(--h3-font-size);
}

.contact-form {
    margin-block: 2rem;
}

.contact_form_container label {
    color: #8DC3DB;
    font-size: 16px;
}

.contact_form_container input,
.contact_form_container textarea {
    outline: none;
    width: 100%;
    margin: 10px 0 20px 0 ;
    border: 1px solid var(--second-color);
    background-color: transparent;
    color: #C3E1F0;
    border-radius: 1.7rem;
    padding: 1rem;
    font-size: 16px;
    resize: none;
}

.contact_form_container textarea {
    min-height: 200px;
}

.contact_form_container input::placeholder,
.contact_form_container textarea::placeholder {
    color: var(--gray-color);
}


.contact-form input:focus,
.contact-form textarea:focus {
    color: var(--white-color);
    border-color: #FFC61D;
}

.contact_form_container  input:valid:not(:focus),
.contact_form_container textarea:valid:not(:focus) {
    border-color: #FFC61D;
}

.contact_button {
    outline: none;
    border: none;
    font-size: 16px;
    color: var(--black-color);
    background-color: var(--second-color);
    padding: 1rem 3rem;
    border-radius: 1.7rem;
    cursor: pointer;
}

.contact_button:hover {

    color: var(--white-color);
    background-color: var(--third-color);
}

.contact-message {
    display: inline;
    margin-left: .5rem;
    color: #27AE60;
}

@media screen and (min-width: 500px) {
    .home_top_title {
        padding-top: 1rem;

    }
}

@media screen and (min-width: 900px) {
    .home-tab-container {
        margin-top: 2.5rem;
    }

    .home_pdf_link {
        font-size: var(--h1-font-size);
    }

    .contact-form-container {
        margin-top: 4rem;
    }
}

/* FOR LARGE DEVICES */
@media screen and (min-width: 900px) {

    .home_top_container {
        align-self: center;
        justify-self: center;
        text-align: center;
        font-size: var(--h1-font-size);
    }

}


/* ABOUT ------------------------------------------------------------------------------------------------------------ */
.about_container {
    padding-block: 4rem;
}

.about_content {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: .5rem;
}

.about_description {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: .5rem;
    color: var(--white-color);
}

.about_img {
    align-self: center;
    justify-self: center;
    width: 100%;
    margin-block: 1rem;
    border-radius: 2rem;
}

/* FOR LARGE DEVICES */
@media screen and (min-width: 1000px) {
    .about_wrapper {
        padding-top: 5rem;
    }

    .about_content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas:
        "desc1 img"
        "desc2 img"
        "none img"
        "none img"
    ;
        column-gap: 4rem;
    }

    .about_content:nth-child(2) {
        margin-top: 2rem;
    }


    .description_1 {
        grid-area: desc1;
    }

    .about_img {
        margin: 0;
        grid-area: img;
        max-width: 100%;
    }

    .description_2 {
        grid-area: desc2;
    }
}

/* GOVERNMENT ------------------------------------------------------------------------------------------------------- */
.government_container {
    padding-block: 3rem;
}

.government_title_box {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    padding-bottom: 1rem;
}

.government_flag {
    position: relative;
    height: 40px;
    width: 65px;
}

.government_title {
    font-size: var(--h2-font-size);
    text-wrap: wrap;
    margin-bottom: .7rem;
}

.government_profil {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "image content"
        "text text";
    gap: 1rem;
}

.government_profil_img {
    grid-area: image;
    border-radius: 1rem;
}

.government_profil_title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    text-wrap: wrap;
    margin-bottom: .7rem;
}

.government_profil_content {
    grid-area: content;
}

.government_description {
    color: var(--gray-color);
    overflow-wrap: break-word;
}

.government_text {
    grid-area: text;
    font-weight: var(--font-semi);
}

.government_rows {
    display: flex;
    row-gap: 1.8rem;
    flex-direction: column;
    padding-block: 2rem;
}

.government_rows_title {
    margin-bottom: .5rem;
    font-weight: var(--font-semi);
    font-size: var(--h2-font-size);
}

.government_rows_description {
    color: var(--gray-color);
}

@media screen and (min-width: 800px) {
    .government_profil {
        grid-template-columns: 1fr 1fr 2fr 3fr;
        grid-template-areas:
        "image content  content content "
        "image text  text text";
        align-items: start;
        justify-content: start;
    }

    .government_profil_content {
        align-self: start;
    }

    .government_title_box {
        flex-direction: row;
        column-gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .government_rows {
        margin-top: 1.5rem;
    }
}

/* M.I.S.A ---------------------------------------------------------------------------------------------------------- */
.misa_container {
    padding-block: 2rem .5rem;
}

.misa_title {
    color: var(--white-color);
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi);
    text-align: center;
    padding-block: 2rem;
}

.misa_row {
    color: var(--white-color);
    display: grid;
    row-gap: 1rem;
}

.misa_description {
    font-weight: 400;
}

.misa_cards {
    padding-block: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    color: var(--white-color);
}

.misa_card {
    font-weight: var(--font-semi);
}

.misa_card_span {
    color: #8DC3DB;
}

.misa_profil {
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-block: 1.5rem;
}

.misa_profil_img {
    border-radius: 1rem;
    width: 100%;
}

.misa_profil_description {
    max-width: 500px;
}

@media screen and (min-width: 500px) {
    .misa_profil_img {
        max-width: 280px;
    }
}

@media screen and (min-width: 700px) {

    .misa_title {
        font-size: var(--h1-font-size);
    }

    .misa_cards {
        flex-direction: row;
    }

    .misa_profil {
        flex-direction: row;
    }
}

/* LAWS ---------------------------------------------------------------------------------------------------------- */
.laws_container {
    color: var(--white-color);
}

.law_wrapper_one {
    height: 30vh;
}

.laws_title {
    color: var(--white-color);
    font-size: calc(var(--h1-font-size));
    text-transform: uppercase;
    font-weight: var(--font-semi);
    margin-bottom: 1.5rem;
}

.law_grid {
    padding-block: 2rem 1.5rem;
}

.laws_row_container {
    grid-template-columns: 1fr;
    gap: 3rem;
}

.laws_row {
    display: flex;
    flex-direction: column;
    row-gap: 1.3rem;
}

.laws_link {
    font-size: var(--h2-font-size);
    text-decoration-line: underline;
    text-underline-offset: 10px;
    color: var(--white-color);
    width: max-content;
}

@media screen and (min-width: 500px) {
    .law_wrapper_one {
        height: 80vh;
    }
}

@media screen and (min-width: 700px) {
    .laws_row_container {
        grid-template-columns: 1fr 1fr;
    }
    .law_wrapper_one {
        height: 100vh;
    }
}

@media screen and (min-width: 900px) {
    .laws_row_container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (min-width: 1200px) {
    .laws_row_container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* LIST OF ENTITLES ------------------------------------------------------------------------------------------------- */
.categories_bar_container {
    margin-top: 3.5rem;
}

.categories_buttons_container {
    display: flex;
    flex-wrap: wrap;
    white-space: nowrap;
    margin-bottom: 1.5rem;
    scrollbar-color: #888 transparent;
    gap: .5rem;
}


.list_of_entities_item {
    color: var(--first-color);
    text-decoration: none;
    background-color: var(--second-color);
    padding: .5rem 1rem;
    border-radius: 2rem;
    font-size: var(--small-font-size);
    text-align: center;
}

.list_of_entities_item_active {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--third-color);
    padding: .5rem 1rem;
    border-radius: 2rem;
    text-align: center;
}

/* LIST OF ENTITLES TABLE ~~~~~~~~~~~~~~~~ */
.list_of_entities_wrapper {
    overflow: auto;
    margin-bottom: 1.5rem;
    padding-block: .5rem;
}

.entitled_table {
    border-collapse: collapse;
    overflow: auto;
    width: 100%;
}

.entitled_table_header {
    height: 58px;
    background: #F8F8F8;
    border: 1px solid var(--black-color);
}

.table_header_cell {
    font-weight: 600;
    font-size: 16px;
    padding-block: 1rem;
    color: #1F1F1F;
    border: 1px solid var(--black-color);
}

.table_body_row {
    height: 58px;
}

.table_body_cell {
    font-weight: 400;
    font-size: 16px;
    padding-block: 1rem;
    color: var(--black-color);
    text-decoration: none;
    border: 1px solid var(--black-color);
}

.table_cell_link {
    font-weight: 400;
    font-size: 16px;
    padding-block: 1rem;
    color: var(--black-color);
    text-decoration: none;
}


.verified_cell {
    color: var(--third-color);
    text-decoration: underline;
}

.not_verified_cell {
    color: var(--gray-color);
    text-decoration: none;
}

thead, tr, td {
    box-sizing: border-box;
    padding: 0 24px;
    border: 1px solid #E9E9E9;
}

.website_table_link {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-decoration-line: underline;
    color: #207A91;
}

.active_status {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-decoration-line: underline;
    color: #3DB23B;
    cursor: pointer;
}

.create_status {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-decoration-line: underline;
    color: #F2994A;
    cursor: pointer;
}

.suspended_status {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-decoration-line: underline;
    color: #F2994A;
    cursor: pointer;
}

.prolongation_status {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #EB5757;
}

.entitled_subtitle {
    font-weight: bolder;
    margin-block: 1.6rem .7rem;
}

.suspended_popup_title {
    font-weight: 500;
    font-size: var(--h2-font-size);
    line-height: 38px;
    text-transform: uppercase;
    color: #F2994A;
    margin-block: 1.6rem .7rem;
}

/*LEGAL SUPPORT-------------------------------------------------------------------------------------------------------- */
.legal_support_container {
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.legal_wrapper_one {
    height: 35vh;
}

.legal_support_bold {
    font-weight: bold;
}

.legal_support_description {
    line-height: 1.5rem;
}

.legal_support_title {
    font-size: var(--h3-font-size);
}

@media screen and (min-width: 900px) {
    .legal_wrapper_one {
        height: 100vh;
    }

    .legal_support_title {
        font-size: var(--h2-font-size);
    }
}

/* HISTORY MWALI ------------------------------------------------------------------------------------------------------------ */
.history_mwali_container {
    color: white;
}

.mwali_cards_container {
    padding-left: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.history_mwali_img {
    width: 130px;
}

.history_mwali_card_title {
    font-weight: bold;
    margin-bottom: .3rem;
}

.history_mwali_content {
    margin-top: 1.5rem;
}

@media screen and (min-width: 900px) {
    .mwali_cards_container {
        padding-left: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .history_mwali_img {
        width: auto;
    }

    .history_mwali_card_title {
        font-size: var(--h2-font-size);
    }
}

/* COMPLIANCE -------------------------------------------------------------------------------------------------------- */
.compliance_container {
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    line-height: 1.4rem;
    gap: 1rem;
    padding-block: 2rem;

}

.compliance_title {
    font-size: var(--h2-font-size);
}

.compliance_span {
    font-weight: bold;
}

/* List of Agent -------------------------------------------------------------------------------------------------------- */
.agent_wrapper {
    display: grid;
}

.agent_title {
    font-size: var(--h1-font-size);
    color: var(--white-color);
    padding-block: .5rem;
    font-weight: var(--font-semi-bold);
    align-self: center;
    justify-self: center;
}

.agent_content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--white-color);
    row-gap: .5rem;
    margin-block: 1rem 2rem;
}

.agent_content_title {
    font-size: var(--h1-font-size);
    color: var(--white-color);
}

.agent_content_description {
    color: var(--gray-color-alt);
}

.agent_content_link {
    font-size: var(--h3-font-size);
    text-decoration: underline;
    color: var(--second-color);
    font-weight: var(--font-semi-bold);
    width: max-content;
    cursor: pointer;
}

@media screen and (min-width: 900px) {
    .agent_container {
        display: grid;
        grid-template-columns: 1fr 1fr ;
        column-gap: 3rem;
    }
}


/* CONTACT -------------------------------------------------------------------------------------------------------- */
.contact_wrapper_one {
    height: 100vh;
    box-shadow: none;
}

.contact_container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact_content {
    margin-block: 3rem;
    background-color: hsla(193, 58%, 16%, 0.46);
    border-radius: 2rem;
    width: 90vw;
    height: max-content;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
}

.contact_detail {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.contact_title {
    font-size: var(--h1-font-size);
    margin-bottom: .5rem;
    font-weight: var(--font-semi);
}

.contact_subtitle {
    font-size: var(--h3-font-size);
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.contact_item {
    margin-bottom: 1rem;
}

.contact_text {
    color: var(--white-color);
    max-width: 550px;

}

.contact_item_title {
    font-size: var(--h3-font-size);
}

.contact_item_link {
    font-size: var(--h2-font-size);
}

.contact_item_link {
    text-decoration: none;
    color: #FEEC4C;
    font-size: var(--h3-font-size);
}

.contact_item_two {
    margin-top: 2rem;
}

.contact_figure {
    margin-top: .5rem;
    display: flex;
    align-items: center;
    column-gap: .5rem;
}

.contact_item_tittle {
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi);
    color: var(--second-color);
    cursor: pointer;
}

@media screen and (min-width: 900px) {
    .contact_wrapper_one {
        height: 100vh;
    }

    .contact_content {
        height: max-content;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        grid-template-areas:
        "item1 item3"
        "item1 item3"
        "item1 item2";
        justify-content: space-between;
    }

    .contact_item_one {
        grid-area: item1;
    }

    .contact_item_two {
        grid-area: item2;
        width: max-content;
        align-self: flex-end;
    }
}

@media screen and (min-width: 1200px) {

    .contact_content {
        column-gap: 10rem;
    }

}



/*BODY  ------------------------------------------------------------------------------------------------------------- */
.body_wrapper {
    display: flex;
    justify-content: center;
}

.body_content {
    padding: 64px 0 80px;
    box-sizing: border-box;
}

.slogan_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
}

/*.slogan_block span {*/
/*    word-break: break-word;*/
/*}*/

.slogan_dark {
    padding-top: 6px;
    font-weight: 600;
    font-size: 36px;
    line-height: 58px;
    color: #1F1F1F;
    width: 630px;
}

.slogan_color {
    font-weight: 600;
    font-size: 36px;
    line-height: 58px;
    color: #FFC61D;
    width: 100%;
    text-align: center;
}

.logos_block {
    display: flex;
    width: 100%;
    height: 132px;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    gap: 45px;
}

.title_center {
    width: fit-content;
}

.small_img {
    width: 191px;
}

.description_content {

}

.misa_color {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #3A75C3;
    margin-bottom: 16px;
}

.semi_bold {
    font-weight: 600;
}

.description_text {
    font-size: 14px;
    line-height: 22px;
    color: #787878;
    margin-bottom: 8px;
}

/* FOOTER ----------------------------------------------------------------------------------------------------------- */
.footer_wrapper {
    padding: 2.5rem;
    background: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #9A9A9A;
}

.footer_link_container {
    display: block;
}

.footer_link {
    color: var(--third-color);
    font-weight: var(--font-semi);
}

@media (min-width: 992px) {
    .footer_link_container {
        display: inline;
    }
}

/* ALERT STYLING ---------------------------------------------------------------------------------------------------- */
.scam_section {
    border-top: 1px solid #E9E9E9;
    background-color: white;
    z-index: 100;
}

.scam_container {
    z-index: 100;
    padding-block: 2rem;
    padding-inline: 1rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
}


.alert_text {
    font-weight: 500;
    line-height: 23px;
    color: #EB5757;
}

@media screen and (min-width: 700px) {
    .scam_container {
        border-top: 1px solid #E9E9E9;
        background-color: white;
        z-index: 100;
        padding-block: 2rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
}

/* POP UP CONTAINER ------------------------------------------------------------------------------------------------- */
.popup_hidden {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

.popup_visible {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_active_content {
    background: #FFFFFF;
    padding: 2rem;
    box-sizing: border-box;
}

.popup_details {
    display: flex;
    flex-direction: column;
}

.active_popup_subtitle {
    font-size: var(--h2-font-size);
    font-weight: bolder;
}

.active_popup_title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    color: #27AE60;
    margin-top: 16px;
    margin-bottom: 32px;
}

.active_popup_description {
    font-size: var(--h2-font-size);
    line-height: 35px;
}

.popup_button {
    outline: none;
    border: none;
    font-size: 16px;
    color: var(--black-color);
    background-color: var(--second-color);
    padding: 1rem 3rem;
    border-radius: 1.7rem;
    cursor: pointer;
    margin-top: 2rem;
}

.popup_button:hover {

    color: var(--white-color);
    background-color: var(--third-color);
}

/* CREATING POPUP ---------------------------------------------------------------------------------------------------- */
.popup_hidden {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

.popup_visible {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_create_content {
    background: #FFFFFF;
    padding: 2rem;
    box-sizing: border-box;
}

.create_popup_subtitle {
    font-size: var(--h2-font-size);
    font-weight: bolder;
}

.create_popup_title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    color: #F6A72F;
    margin-top: 16px;
    margin-bottom: 32px;
}

.create_popup_description {
    font-size: var(--h2-font-size);
    line-height: 35px;
}

/* STATUS SUSPENDED -------------------------------------------------------------------------------------------------------- */
.verify_section {
    padding-top: 3rem;
}

.verify_container {
    padding-block: 2rem;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.verify_title{
    color: var(--black-color);
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi);
    margin-bottom: 2rem;
}

.suspended_status_title {
    color: #F6A72F;
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi);
}

.active_status_title {
    color: #3DB23B;
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi);
}

.verify_details {
    border-collapse: collapse;
    border: none;
    width: max-content;
}

.verify_details th,
.verify_details tr,
.verify_details td {
    border: none;
    padding-block: 3px;
    background-color: transparent;
}

.verify_details th {
    text-align: left;
}

.active_terms_container {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.active_subtitle{
    font-size: var(--h3-font-size);
    font-weight: bold;
}

.active_terms_description {
    color: black;
}

.verify_terms_link {
    color: black;
    text-decoration: none;
    font-weight: bold;
}
@media screen and (min-width: 1000px) {
    .verify_section {
        padding-top: 6rem;
    }
}


/* ------------------------------------------------------------------------------------------------- */
.list_item {
    width: 600px;
    height: 98px;
    margin-bottom: 32px;
}

.union_block {
    display: flex;
    align-items: center;
    margin-top: 56px;
    margin-bottom: 80px;
}

.union_link {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-decoration-line: underline;
    color: #3A75C3;
    margin-left: 24px;
}



.bold {
    font-weight: 500;
    font-size: 24px;
    line-height: 38px;
    color: #1F1F1F;
}

.abbreviation {
    font-weight: 500;
    font-size: 24px;
    line-height: 38px;
    color: #9A9A9A;
    margin-bottom: 12px;
}



.mb {
    margin-bottom: 32px;
}

.text_bold {
    font-weight: 700;
}

.text_block {
    width: 400px;
}

.link_wrapper {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #787878;
    width: 228px;
    text-decoration: none;
}

.popup_suspended_content {
    width: 806px;
    height: 419px;
    background: #FFFFFF;
    padding: 24px;
    box-sizing: border-box;
}

.close_block {
    height: 24px;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
}

.close_block img {
    height: 24px;
    width: 24px;
    cursor: pointer;
}

.my_btn_ok {
    padding: 12px 48px;
    background: #3A75C3;
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    margin-top: 32px;
    cursor: pointer;
}


/*  STYLING ---------------------------------------------------------------------------------------------------- */
.is_success {
    font-family: 'Hind', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #27AE60;
}

.is_error {
    color: #EB5757;
    font-family: 'Hind', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
}

@media screen and (min-width: 1184px) {
    .about_section {
        padding-top: 6rem;
    }

    .government_section {
        padding-top: 9rem;
    }

    .misa_section {
        padding-top: 6rem;
    }

    .law_section {
        padding-top: 6rem;
    }

    .list_of_entities_section {
        padding-top: 6rem;
    }

    .legal_support_section {
        padding-top: 6rem;
    }

    .agent_wrapper {
        padding-top: 7.5rem;
    }

    .contact_section {
        padding-top: 6rem;
    }

}
