a {
    text-decoration: none;
    color: white;

}

a:visited {
    color: white;
}

/*====== HEADER ======*/
.main-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 12px 0;
    background-color: transparent;
    z-index: 5;
    position: absolute;
    width: 100%;

}

.left-header {
    display: flex;
    width: 25%;
    align-items: center;
    justify-content: center;
}

.right-header {
    width: 71%;
    display: flex;
    justify-content: space-between;
}

.main-navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 75%;

}

.menu-link {
    font-family: EffraStd;
    font-weight: 700;
    font-size: 14px;
    color: white;

    list-style-type: none;
    height: 14px;

}

.menu-link>a {
    transition: color 0.5s ease;
    color: white;
}

.menu-link>a:hover {
    color: #bd343e;
    font-weight: 700;

}

.main-navbar-button {
    display: flex;
    width: 25%;
    justify-content: center;
    align-items: center;
    border-left: 1px solid white;
}

.menu-link-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    font-family: EffraStd;
    font-weight: 700;
    font-size: 14px;
    color: white;
    cursor: pointer;
    background-color: #BC0C19;
    border-radius: 5px;
    border: none;
    height: 35px;
    width: 74%;
}

.menu-link-button:hover {
    color: white;
    text-decoration: none;
}

.small-menu {
    display: none;
}

.small-btton {
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
}

#dropdown-icon {
    position: fixed;
    height: 1px;
    width: 100%;
    right: 0px;
    top: 52px;
    opacity: 0;
    pointer-events: none;
    display: flex;

    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
    flex-wrap: wrap;
    height: 220px;
    background-color: #0f387d;
    z-index: 100;
    text-align: right;


    transition: all .75s ease;
}

#dropdown-icon.showww {
    pointer-events: auto;
    opacity: 1;
}

.dropdown-list {
    width: 95%;
    padding: 3px;

}

.bb-1 {
    border-bottom: 1px solid #4a5a67;
}

.dropdown-list>a,
.dropdown-list>a:focus,
.dropdown-list>form>a {
    height: 100px;
    font-size: 14px;
    font-family: EffraStd;
    font-weight: bold;
    color: white !important;
    text-decoration: none;
}


/*====== Footer ======*/

.footer {
    background-color: #010810;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    font-family: Muli;
    font-size: 14px;
    color: white;
    padding: 20px;
}

.experts-rights {
    align-items: center;
    width: 60%;
}

.footer-link,
.footer-link:visited {
    color: #858B9F;
}


.expert-all-media {
    display: flex;
    flex-direction: row;
    width: 40%;
}

.expert-social {
    display: flex;
    flex-direction: row;
    list-style: none;
    width: 50%;
    justify-content: center;
}

.social-links,
.social-links:visited {
    color: white;
    font-size: 20px;
    margin: 0 15px;
}

.footer-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.footer-text{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}



/*====== Loader ======*/

#Loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99;
    overflow: visible;
    background: white url('../img/loader.gif') no-repeat center;
}


@media (max-width: 862px) {

    .left-header {
        width: 20%;
        padding-left: 15px;
    }

    .right-header {
        width: 80%;
    }

    .logo {
        width: 100%;
    }

    .menu-link {
        font-size: 11px;

    }

    .menu-link-button {
        font-size: 12px;
    }

}

@media (max-width: 700px){
    .expert-all-media{
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {

    .main-container {
        background-color: #1f1d5d;
        position: fixed;
    }

    .right-header {
        display: none;
    }

    .logo {
        width: 170%;
    }

    .small-menu {
        display: block;
        padding-right: 15px;
        font-size: 20px;
        color: #BC0C19;
    }

}

@media (max-width: 380px) {

    .logo {
        width: 180%;
    }
}