.home-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* align-items: center; */
    flex-wrap: wrap;
}

.home-nav div {
    flex-wrap: wrap !important;
}

/* ---------------- logo-image ---------------- */
.logo-image {
    height: 100px;
    margin-top: 10px;
    margin-left: 10px;
}
/* ---------------- logo-image ---------------- */

.nav-top .social-logo {
    box-shadow: 0px 0px 23px -18px black;
    max-height: 60px;
}

@media screen and (max-width: 575px) {
    .nav-top .social-logo {
        box-shadow: 0px 0px 23px -18px black;
        min-height: 120px;
    }
}

.nav-top .social-logo span {
    margin: 5px 8px;
}

/* ---------------- icon styling ------------------- */
.fa-facebook {
    background-color: rgb(59, 89, 152);
    color: white;
    border: 1px solid rgb(59, 89, 152);
}
.fa-twitter {
    background-color: rgb(29, 202, 255);
    color: white;
    border: 1px solid rgb(29, 202, 255);
}
.fa-youtube {
    background-color: rgb(255, 0, 0);
    color: white;
    border: 1px solid rgb(255, 0, 0);
}
.fa-instagram {
    background-color: rgb(247, 0, 106);
    color: white;
    border: 1px solid rgb(247, 0, 106);
}
.fa-telegram {
    background-color: rgb(0, 136, 204);
    color: white;
    border: 1px solid rgb(0, 136, 204);
}
.fa-linkedin {
    background-color: rgb(0, 119, 176);
    color: white;
    border: 1px solid rgb(0, 119, 176);
}

/* --- on hover */
.fa-facebook:hover {
    background-color: white;
    color: rgb(59, 89, 152);
}
.fa-twitter:hover {
    background-color: white;
    color: rgb(29, 202, 255);
}
.fa-youtube:hover {
    background-color: white;
    color: rgb(255, 0, 0);
}
.fa-instagram:hover {
    background-color: white;
    color: rgb(247, 0, 106);
}
.fa-telegram:hover {
    background-color: white;
    color: rgb(0, 136, 204);
}

.fa-linkedin:hover {
    background-color: white;
    color: rgb(0, 119, 176);
}

/* ---------------- icon styling ------------------- */

.home-nav a i {
    height: 40px;
    width: 40px;
    font-size: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation-div {
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: rgb(59, 100, 215);
    height: 60px;
}
.navigation-div span {
    margin: 0px 2px;
    padding: 10px 2px;
    position: relative;
    border-radius: 2px;
}
.navigation-div span span {
    color: white;
    cursor: pointer;
}

.navigation-div span ul {
    position: absolute;
    background-color: rgb(59, 100, 215);
    box-shadow: 5px 2px 14px -6px black;
    list-style: none;
    border-radius: 10px;
    width: max-content;
    padding: 5px;
    top: 100%;
}
.navigation-div span ul li {
    padding-bottom: 15px;
}
.navigation-div span ul li:hover {
    text-decoration: underline;
    text-decoration-color: white;
}

.navigation-div span a {
    /* width: 100%; */
    padding-left: 2px;
    text-align: center;
    margin: 0px 5px;
    color: white;
}

/* ---------------- link styles ----------------------- */
.home-page-link {
    background-color: rgb(113, 113, 113);
}
.sign-in-link {
    background-color: rgb(0, 128, 128);
}
/* ---------------- link styles ----------------------- */
.navigation-div #hamberger-menu {
    display: none;
}
.navigation-div #hamberger-menu button {
    border: 1px solid #ffffff;
    border-radius: 5px;
    background: #ffffff;
    transition: 0.5s;
}
.navigation-div #hamberger-menu button:focus {
    box-shadow: 0px 0px 5px 0px black;
}

@media screen and (max-width: 1200px) {
    .home-nav {
        justify-content: center;
    }

    .home-nav div {
        display: flex;
        width: 100%;
        justify-content: center;
        margin: 5px 0px;
    }

    .navigation-div {
        flex-direction: column;
        align-items: flex-start;
        height: unset;
        padding: 10px;
    }
    .navigation-div span {
        margin: 0px 2px;
        padding: 5px 5px;
        display: block;
        width: 100%;
    }

    .navigation-div span ul {
        position: unset;
        box-shadow: none;
        border: 1px solid white;
        margin: 10px 0px;
        width: 100%;
    }
    .navigation-div #hamberger-menu {
        display: block;
    }
    .navigation-div #navigation-div-content {
        height: 0px;
        overflow: hidden;
        transition: height 0.3s ease-in-out;
        width: 100%;
    }
    .navigation-div #navigation-div-content .inner-div-1 {
        padding: 10px 0px;
    }
}

/* ---------- google translation styling : start ------------------  */
#google_translate_element {
    width: 130px;
    border-radius: 5px;
    overflow: hidden;
    height: 32px;
    display: flex;
    position: relative;
}

#google_translate_element .goog-te-combo {
    border-radius: 5px;
    position: absolute;
    width: 130px;
    height: 36px;
    background: rgb(40, 167, 69);
    color: white;
    padding: 5px;
    margin: -2px;
    left: 0;
    top: 0;
}

@media screen and (max-width: 450px) {
    #google_translate_element {
        width: 70px;
    }

    #google_translate_element .goog-te-combo {
        width: 70px;
    }

    #responsivetwitter {
        display: none !important;
    }
}

#google_translate_element span {
    display: none;
}

.skiptranslate iframe {
    height: 0px;
}
/* ---------- google translation styling : ends ------------------  */
