﻿body {
    position: relative;
}


.logoInfo {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 10px;
    align-items: baseline;
}

.menu {
    display: flex;
    flex-direction: row;
    background: var(--menuClr);
    height: 65px;
    color: #fff;
    column-gap: 60px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

    .menu .logo {
        display: flex;
        flex-direction: row;
        flex: 2;
        column-gap: 20px;
        align-items: center;
        justify-content: space-between;
        padding: 0 60px;
    }

        .menu .logo p {
            margin: 0;
            font-family: tanha;
            font-size: x-large;
            /*            font-weight: bold;*/
        }

    .menu .login,
    .menu-mobile .login {
        font-size: larger;
        border: 2px solid #fff;
        padding: 6px 15px;
        border-radius: 5px;
        cursor: pointer;
        transition: all linear .3s;
    }

        .menu .login:hover,
        .menu-mobile .login:hover {
            border-color: gold;
            box-shadow: 0px 0px 12px 0px #fff;
        }

        .menu .login i,
        .menu-mobile .login i {
            vertical-align: middle;
        }

    .menu .menuLists {
        flex: 5;
        align-self: end;
    }

        .menu .menuLists ul li a {
            position: relative;
        }

            .menu .menuLists ul li a::before {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                width: 0;
                height: 3px;
                background-color: var(--logoClr);
                transition: width 0.3s ease, left 0.3s ease;
                transform: translateX(-50%);
            }

            .menu .menuLists ul li a:hover::before {
                width: 100%;
                left: 0;
            }

            .menu .menuLists ul li a::after {
                content: '';
                position: absolute;
                bottom: 0;
                right: 50%;
                width: 0;
                height: 3px;
                background-color: var(--logoClr);
                transition: width 0.3s ease, right 0.3s ease;
                transform: translateX(50%);
            }

            .menu .menuLists ul li a:hover::after {
                width: 100%;
                right: 0;
            }




/* -------------------- mobile menu ---------------------------- */
.menu-mobile {
    background: var(--menuClr);
    height: 65px;
    color: #fff;
    display: none;
}

    .menu-mobile .menu-buttom {
        width: 50px;
        padding: 6px 7px;
    }

        .menu-mobile .menu-buttom:hover .bar:nth-of-type(1) {
            transform: translateY(1.5px) rotate(-4.5deg);
        }

        .menu-mobile .menu-buttom:hover .bar:nth-of-type(3) {
            transform: translateY(-1.5px) rotate(4.5deg);
        }

    .menu-mobile .bar {
        position: relative;
        display: block;
        width: 40px;
        height: 5px;
        margin: 8px auto;
        background-color: #fff;
        border-radius: 10px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .menu-mobile .menu-buttom.cross .bar:nth-of-type(1) {
        -webkit-transform: translateY(15px) rotate(-45deg);
        -ms-transform: translateY(15px) rotate(-45deg);
        transform: translateY(15px) rotate(-45deg);
    }

    .menu-mobile .menu-buttom.cross .bar:nth-of-type(2) {
        opacity: 0;
    }

    .menu-mobile .menu-buttom.cross .bar:nth-of-type(3) {
        -webkit-transform: translateY(-15px) rotate(45deg);
        -ms-transform: translateY(-15px) rotate(45deg);
        transform: translateY(-15px) rotate(45deg);
    }

.menuListsMobile {
    display: none;
    background: var(--menuClr);
    color: #fff;
    height: 100%;
    width: 70%;
    position: absolute;
    z-index: 9999;
    position: fixed;
    top: 63px;
}

    .menuListsMobile .logo {
        text-align: center;
    }

        .menuListsMobile .logo img {
            width: 120px;
        }

    .menuListsMobile .title {
        margin-top: -20px;
        font-family: tanha;
        font-size: larger;
    }

    .menuListsMobile .menuLists {
        text-align: center;
        margin-top: 40px;
    }

        .menuListsMobile .menuLists .lists {
            padding: 0
        }

        .menuListsMobile .menuLists .list {
            line-height: 3;
            border-bottom: 1px solid #fff;
        }

            .menuListsMobile .menuLists .list:hover {
                background: #fff;
                color: #000;
            }

.backBtn {
    position: absolute;
    /*    background: #424242;*/
    top: 65px;
    left: 10px;
    font-size: x-large;
    /*    z-index: 999;*/
    /*    position: fixed;*/
    opacity: .9;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    padding-top: 7px;
}

    .backBtn svg {
        fill: var(--logoClr);
    }


/* -------------------- Responsive ------------------- */
@media only screen and (max-width:1200px) {
    .menu .logo p {
        font-size: x-large;
    }
}

@media only screen and (max-width:992px) {
    .menu {
        column-gap: 0;
    }

        .menu .logo {
            flex: 3;
            justify-content: space-between;
            padding: 0 60px;
        }
}

@media only screen and (max-width:762px) {
    .menu {
        column-gap: 10px;
    }

        .menu .logo {
            flex: 4;
            column-gap: 5px;
        }

            .menu .logo p {
                font-size: x-large;
            }
}

@media only screen and (max-width:576px) {
    .menu {
        display: none;
    }

    .menu-mobile {
        position: fixed;
        width: 100%;
        z-index: 997;
        height: 55px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        column-gap: 20px;
        padding: 0px 15px;
    }

        .menu-mobile .login {
            font-size: smaller;
        }

        .menu-mobile .title {
            font-family: tanha;
            font-size: x-large;
            /* align-self: auto; */
            margin: 0;
        }

        .menu-mobile .bar {
            height: 5px;
            margin: 5px auto;
        }

    .menuListsMobile {
        top: 55px;
    }

    .backBtn {
        top: 45px
    }

    .containerSearch .logo img {
        width: 140px;
    }

    .containerSearch .description {
        font-size: larger;
        /*        font-weight: 700;*/
    }

    .containerSearch .title {
        font-size: 14px;
        padding: 0px 5px;
    }
}
