header {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: var(--color-bg-3);
    box-shadow: 0px 2px 6px 0px rgba(76, 76, 76, 0.75);
    -webkit-box-shadow: 0px 2px 6px 0px rgba(76, 76, 76, 0.75);
    -moz-box-shadow: 0px 2px 6px 0px rgba(76, 76, 76, 0.75);
}

.top-nav {
    height: 30%;
    width: 100%;
    background-color: var(--color-bg-1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}


#google_translate_element>div {
    color: white;
}


.top-nav {
    color: white;
}

.social-icons {
    margin-right: 70px;
}

.social-icons>a {
    margin-left: 10px;
}

.navbar {
    height: 70%;
    width: 100%;
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between;
    align-items: center;
}

.navbar>img {
    width: auto;
    cursor: pointer;
}


.header-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: -webkit-fill-available;
    grid-column-gap: 2%;
}

.header-menu-container {
    width: 100%;
    display: inline-flex;
    justify-content: flex-end;
    margin-bottom: 0;
}

.header-menu-container>li {
    border-bottom: 2.5px solid var(--color-border-1);
    transition: 1s;
    margin-right: 3%;
}

.header-menu-container>li>a {
    font-size: 1.15rem;
    color: rgba(0, 0, 0, 0.829);
    font-weight: 500;
    word-spacing: -2px;
    text-decoration: none;
}

.header-menu-container>li>a:hover {
    color: var(--color-txt-4);
}

.header-phone {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-txt-2);
    width: 400px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-phone:hover {
    color: var(--color-txt-4);
}

.header-phone>span {
    font-size: 30px;
    margin-right: 3%;
}

.menu {
    display: none;
}

.menu>i {
    font-size: 25px;
    color: var(--color-txt-2);
}

.header-space {
    height: 120px;
}

.tour-li {
    position: relative;
}

.tour-li:hover .tour-dropdown {
    visibility: visible;
    opacity: 1;
}

.tour-dropdown.active {
    visibility: visible;
    opacity: 1;
}

.tour-dropdown {
    position: absolute;
    top: 200%;
    left: 0;
    background-color: white;
    padding: 10px 0;
    box-shadow: 0px 7px 16px -1px rgba(15, 15, 15, 0.3);
    -webkit-box-shadow: 0px 7px 16px -1px rgba(15, 15, 15, 0.3);
    -moz-box-shadow: 0px 7px 16px -1px rgba(15, 15, 15, 0.3);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s linear, visibility 0.3s linear;
    z-index: 10;
    width: max-content;
}

.tour-dropdown>li {
    padding: 8px 20px;
    width: 100%;
    font-size: 16px;
}

.tour-link {
    color: var(--color-txt-3);
}

.tour-dropdown>li:hover,
.tour-dropdown>li:hover .tour-link {
    background-color: var(--color-bg-2);
    color: var(--color-txt-1);
}

@media only screen and (max-width: 500px) {


    .social-icons {
        margin-right: 0;
        margin-top: 3px;
    }

    header {
        height: 90px;
    }

    .top-nav {
        height: 30px;
    }

    .navbar {
        position: relative;
        height: 60px;
    }

    .navbar>img {
        height: 36px;
        ;
    }

    .header-menu-container {
        display: unset;
        position: absolute;
        width: 70%;
        right: -100%;
        top: 60px;
        height: calc(100vh - 90px);
        background-color: var(--color-bg-3);
        padding: 0 5%;
        transition: 0.5s;
        border-top: 1px solid gray;
        padding-top: 4%;
    }

    .header-menu-container.active {
        right: 0;
    }

    .header-menu-container>li {
        border-bottom: none;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .header-menu-container>li>a {
        font-size: 18px;
    }

    .tour-dropdown {
        position: unset;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
    }

    .tour-dropdown>li {
        color: var(--color-txt-1);
    }

    .header-phone {
        display: none;
    }

    .menu {
        display: unset;
    }

    .menu>i {
        display: unset;
    }

    .header-space {
        height: 90px;
    }
}