:root {

    --colorBase: #1E4D93;
    --colorSupplement: #D9D9D9;
    --colorHelp: #00BBB3;
    --colorBlackText: #5C5B5B;
    --shadow: -1px 5px 25px -4px rgba(0, 0, 0, 0.25);
    --colorHelpDarck: #05a19a;
    --colorHelpOpacity: #00BBB3;
    --colorWhiteOpacity: #ffffffbe;

}

main {

    margin: 50px;

}

.main {

    margin: 50px;

}

* {

    transition: all 0.5s;

}

body {
    margin: 0px;
    direction: rtl;
    background-color: #F5F5F5;
}

.navigation {
    width: 100%;
    height: 202px;
    position: sticky;
    top: 0px;
}

.navigation>.div_row {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.navigation_header {
    width: 100%;
    height: 100px;
    background-color: var(--colorSupplement);
}

.navigation_bar {
    width: 100%;
    height: 50px;
    background-color: var(--colorBase);
}

.navigation_section {

    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;

}

.navigation_section>a {

    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;

}

.direction_items_right {

    padding-inline-start: 1rem;

}

.navigation_section_center {

    width: 100%;
    height: 100%;

}

.navigation_box_serch {

    width: 100%;
    height: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;

}

.navigation_box_serch_inp {

    height: 100%;
    border: none;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    width: 70%;
    padding-right: 1rem;

}

.navigation_box_serch_icon {

    cursor: pointer;
    margin-right: -40px;
    background-color: var(--colorHelpOpacity);
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 100%;

}

.navigation_box_serch_box_items {

    background-color: white;
    position: absolute;
    top: 0;
    width: 80%;
    box-shadow: var(--shadow);
    border-radius: 1rem;
    overflow: hidden;
    z-index: 100;
    opacity: 0;
    transition: all 0.3s;
    visibility: hidden;

}

.navigation_box_serch:hover>.navigation_box_serch_box_items {

    visibility: visible;
    height: auto;
    opacity: 1;
    min-height: none;
    top: 60px;

}

.navigation_box_serch_inp:focus ~ #box-result {

    visibility: visible;
    height: auto;
    opacity: 1;
    min-height: none;
    top: 60px;  

}

.navigation_box_serch_item {

    padding: 0.5rem;
    border-bottom: 1px solid #cccccc;
    cursor: pointer;
    background-color: #f8f8f8;
    color: var(--colorBlackText);
    text-decoration: none;
    display: block;

}

.navigation_box_serch_item:hover {

    background-color: #cccccc;

}

.navigation_box_serch_item_header {

    background-color: var(--colorHelpDarck);
    color: white;

}

.navigation_box_serch_item_header:hover {

    background-color: var(--colorHelpDarck);

}

.direction_items_left {

    flex-direction: row-reverse;
    padding-inline-end: 2rem;

}

.navigation_bar_btn {

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--colorHelp);
    text-decoration: none;
    color: white;
    text-shadow: var(--shadow);

}

.navigation_bar_btn_noBack {

    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    cursor: pointer;
    width: 100%;
    height: 100%;

}

.navigation_bar_items {

    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    font-size: 1.2rem;
    padding: 0;

}

.navigation_bar_item {

    display: flex;
    position: relative;
    margin: 0;
    padding: 0 1rem 0 1rem;
    height: 100%;

}

.navigation_bar_item>a {

    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: inherit;
    font-size: 1rem;

}

.navigation_bar_item>a>img {

    width: 30px;

}

.navigation_bar_sub_items {

    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: white;
    list-style: none;
    box-shadow: var(--shadow);
    padding: 1rem;
    border: 1px solid var(--colorHelp);
    min-width: 15rem;
    top: 50px;
    padding: 0;
    height: 0;
    opacity: 0;
    transition: all 0.2s;
    border-radius: 0 0 1rem 1rem;
    right: 0;
    overflow: hidden;
    z-index: 100;

}

.box_hidden_body {

    z-index: 50;
    position: fixed;
    top: 150px;
    left: 0;
    width: 100%;
    background-color: #ffffff83;
    backdrop-filter: blur(20px);
    height: 0;
    opacity: 0;

}

.navigation_bar_item:hover {

    background-color: var(--colorHelp);

}

.navigation_bar_item:hover>.navigation_bar_sub_items {

    overflow: visible;
    opacity: 1;
    height: 30rem;

}

.navigation_bar_item:hover>.box_hidden_body {

    height: 100vh;
    opacity: 1;

}

.navigation_bar_sub_item>a {

    color: var(--colorBlackText);
    text-decoration: none;
    font-size: 1rem;

}

.navigation_bar_sub_item>p {

    font-family: irancellLight;
    color: var(--colorHelp);
    margin-top: -0.3rem;
    margin-bottom: 0;
    font-size: 0.7rem;

}

.navigation_bar_sub_item {

    cursor: pointer;
    padding: 0 2rem 1rem 2rem;
    max-width: 100%;
    max-height: 2rem;
    border-bottom: 1px solid var(--colorHelp);
    display: block;

}

.navigation_bar_sub_item:hover {

    background-color: var(--colorHelp);

}

.navigation_bar_sub_item:hover>a {

    font-size: 1.4rem;
    color: var(--colorSupplement);
    margin-right: 0.5rem;

}

.navigation_bar_sub_item:hover>p {

    color: var(--colorSupplement);
    margin-top: -1.8rem;
    font-weight: bold;
    opacity: 50%;
}

.navigation_bar_list {

    background-color: var(--colorHelp);
    position: absolute;
    top: -1px;
    width: 10rem;
    right: 15rem;
    height: 0%;
    opacity: 0;
    overflow: hidden;
    list-style: none;
    padding: 0px;
    border: 1px solid var(--colorHelp);
    border-radius: 0 0 1rem 1rem;

}

.navigation_bar_sub_item:hover>.navigation_bar_list {

    opacity: 1;
    height: 100%;

}

.navigation_bar_list_item {

    width: 100%;
    border-bottom: 1px solid white;
    height: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.navigation_bar_list_item:hover {

    background-color: var(--colorHelpDarck);

}

.navigation_bar_list_item>a {

    font-family: irancelllight;
    text-decoration: none;
    color: white;

}

.navigation_mobile {

    width: 0%;
    background-color: white;
    height: 100%;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
    right: -100%;
    opacity: 0;
    width: 100%;

}

.navigation_mobile_level_2 {

    width: 90%;
    box-shadow: var(--shadow);
    border-radius: 2rem 0 0 0;
    overflow: hidden;
    z-index: 200;

}

.navigation_mobile_level_3 {

    width: 80%;
    box-shadow: var(--shadow);
    border-radius: 2rem 0 0 0;
    overflow: hidden;
    z-index: 300;

}

.navigation_mobile_show {

    right: 0;
    opacity: 1;

}

.navigation_mobile_box_head {

    width: 100%;

}

.navigation_mobile_box_head_button {

    width: 100%;
    background-color: var(--colorHelp);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding: 1rem 0 1rem 0;
    cursor: pointer;
    color: white;
    font-family: irancelllight;
    border: none;

}

.navigation_mobile_title {

    color: var(--colorHelp);
    margin: 2rem auto 1rem auto;

}

.navigation_mobile_list {

    margin: 0 auto 0 auto;
    list-style: none;
    width: 90%;
    padding: 0;

}

.navigation_mobile_list_item {

    border-bottom: 1px solid var(--colorBase);
    display: flex;
    flex-direction: row;
    align-items: center;

}

.navigation_mobile_list_item>a {

    color: var(--colorBase);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem 0;
    text-decoration: none;

}

.navigation_mobile_list_item>img {

    width: 20px;

}

.footer_top_continer {

    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #133E7D;
    border-radius: 1rem 1rem 0 0;

}

.footer_top_continer_section {

    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;

}

.footer-5-column {
    padding-top: 3rem;
    margin-top: 2rem;
}

.footer-5-column .footer-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    background-color: var(--colorBase);
    padding-top: 1.5rem;
}

.footer-5-column .footer-container .footer-navbar-container {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1.5rem;
}

.footer-5-column .footer-container .footer-navbar-container .footer-company-details {
    width: 35%;
    max-width: 100%;
    flex: 0 0 auto;
    padding-right: 2rem;
    line-height: 1.428;
}

.footer-5-column .footer-container .footer-navbar-container .footer-company-details .footer-logo {
    width: 60px;
}

.footer-5-column .footer-container .footer-navbar-container .footer-company-details .footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-5-column .footer-container .footer-navbar-container .footer-company-details .footer-logo svg {
    width: 100%;
    height: auto;
}

.footer-5-column .footer-container .footer-navbar-container .footer-company-details .footer-content {
    margin-top: 1rem;
    font-size: 16px;
    line-height: 1.8;
    padding-right: 1rem;
}

.footer-content>img {

    border-radius: 1rem;

}

.footer-content>address>p {

    color: white;
    font-style: normal;
    font-weight: normal;

}

.footer-5-column .footer-container .footer-navbar-container .footer-company-details .footer-icons {
    margin-top: 1.5rem;
}

.footer-5-column .footer-container .footer-navbar-container .footer-company-details .footer-icons ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-5-column .footer-container .footer-navbar-container .footer-company-details .footer-icons ul li {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin-right: 14px;
}

.footer-5-column .footer-container .footer-navbar-container .footer-company-details .footer-icons ul li a {
    width: 30px;
    padding: 6px;
}

.footer-5-column .footer-navbar {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    flex-grow: 1;
    line-height: 1.428;
}

.footer-5-column .footer-navbar>.footer-navbar-col {
    width: 25%;
    flex: 0 0 auto;
}

.footer-5-column .footer-navbar .footer-navbar-col h5 {
    margin-bottom: 1.5rem;
    color: white;
    overflow-wrap: break-word;
    padding: 0 0.5rem 0 0;
}

.footer-5-column .footer-navbar .footer-navbar-col ul {
    padding: 0 0.5rem 0 0;
    margin: 0;
}

.footer-5-column .footer-navbar .footer-navbar-col ul li {
    list-style: none;
}

.footer-5-column .footer-navbar .footer-navbar-col ul li:not(:last-child) {
    margin-bottom: 0.5rem;
}

.footer-5-column .footer-navbar .footer-navbar-col ul li a {
    font-size: 14px;
    text-decoration: none;
    color: var(--colorSupplement);
    overflow-wrap: break-word;
}

.footer-5-column .footer-navbar .footer-navbar-col ul li a:hover {
    color: white;
}

.footer-5-column .footer-copyright {
    background-color: #133E7D;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-5-column .footer-copyright p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--colorSupplement);
    font-family: irancelllight;
}

.meno_bottom {

    width: 100%;
    height: 5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.836);
    backdrop-filter: blur(10px);
    border-radius: 1rem 1rem 0 0;

}

.meno_bottom--button {

    background-color: var(--colorBase);
    border-radius: 5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 100;
    padding: 0.5rem;
    color: white;
    text-decoration: none;
    margin: 0.5rem;

}

.--button_light {

    background-color: rgba(255, 255, 255, 0.295);
    color: var(--colorHelpDarck);

}

.meno_bottom--button>img {

    width: 30px;

}

@media all and (min-width: 752px) {

    .androidResponsive {

        display: none;
        visibility: hidden;
        position: absolute;

    }

}

@media all and (max-width: 900px) {

    .navigation_box_serch_inp {

        width: 100%;

    }

    .navigation_section>a>img {

        width: 80%;

    }

    .footer-5-column .footer-container .footer-navbar-container,
    .footer-5-column .footer-navbar {
        row-gap: 3rem;
    }

    .footer-5-column .footer-container .footer-navbar-container .footer-company-details,
    .footer-5-column .footer-container .footer-navbar-container .footer-navbar {
        padding: 0;
        width: 100%;
    }

    .footer-navbar-container {

        padding-right: 1rem;

    }
}

@media all and (max-width: 752px) {

    .footer_top_continer {
        flex-direction: column;
    }

    .deskResponsive {

        position: absolute;
        display: none;
        visibility: hidden;

    }

    .logo_header_big {

        width: auto;
        margin: 0 auto;
        justify-content: center;

    }

    .navigation_section>a>img {

        width: 90%;

    }

    main {

        margin: 20px;

    }

}

@media all and (max-width: 992px) {
    .footer-5-column .footer-navbar .footer-navbar-col {
        width: 50%;
    }
}