nav{

    width: 100%;
    background-color: rgb(0,0,0,0.3);
    backdrop-filter: blur(6px);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    padding: 1rem 0;
}
.header{
    width: 100%;
    z-index: 100;
}
.icons_nav{
    column-gap: 3rem;
    font-size: 1.15rem;
    color: rgb(247,247,247);
}
.social_nav{
    column-gap: 1rem;
    font-size: 1.3rem;

}
.social_nav a{
    color: rgb(247,247,247);
    transition: 0.3s;
}
.btn_zakaz{
    border: 1px solid rgb(247,247,247);
    padding: 0.5rem 1.5rem !important;
    background-color: rgb(33,160,47);
    color: rgb(247,247,247);
    transition: 0.3s;

}
.btn_zakaz:hover{
    border: 1px solid rgb(33,160,47);
    background-color: inherit;
    color: rgb(33,160,47);
}

.logo{

    display: flex;
    column-gap: 0.5rem;
    color: #fff;
    align-items: center;
    text-decoration: none;
}
.logo:hover{
    color:white;
    text-decoration: underline;
}
.logo p{
    width: 15rem;
}
.logo_img{
    width: 7rem;
    height: 4rem;
}
.logo_gerb{
    height: 4rem;
}
.logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/*Styling Links*/
.nav-links{
    display: flex;
    list-style: none;
    align-items: center;
    letter-spacing: 0.07rem;
    margin: 0;
    column-gap: 2.5rem;
}
.nav-links li a{
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    /*text-transform: uppercase;*/
}
.nav-links li a:hover , .social_nav a:hover, .nav-links a.active{
    color: rgb(33,160,47);
}
.nav-links li {
    position: relative;
}

/*Styling Hamburger Icon*/
.hamburger div{
    width: 30px;
    height:3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}
.header_div{
    padding: 80px;
}

@media (max-width: 1540px){
    .icons_nav{
        column-gap: 2rem;
        font-size: 0.9rem;
    }
    .social_nav{
        column-gap: 1rem;
        font-size: 1.1rem;

    }
    .btn_zakaz{
        padding: 0.3rem 1rem !important;
    }
    .nav-links li a{
        font-size: 0.8rem;
    }
    .logo p{
        font-size: 0.85rem;
        width: 11.5rem
    }
    .nav-links{
        column-gap: 1.5rem;
    }
    .header_div{
        padding: 70px;
    }
}

.lang_btn{
    column-gap: 0.5rem;
    color: #fff;
    background-color: initial;
    border: none;
    transition: 0.3s;
}
.lang_btn:hover .iconify{
    color: rgb(33,160,47);
}
.dropdown_lang{
    grid-row-gap: 0.5rem;
    background-color: rgb(0,0,0,0.4);
    border-radius: 10px;
    padding: 1rem;
    display: none;
}
.dropdown_lang a{
    text-decoration: none;
}
.dropdown_lang a:hover{
    text-decoration: underline;
}
.showdrop {display:flex;}

/*Stying for small screens*/
@media screen and (max-width: 1200px){

    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }
    .header_div{
        padding: 70px;
    }
    .nav-links{
        position: fixed;
        background: #131418;
        height: 100vh;
        width: 100%;
        left: 0;
        top: 0;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        padding-top: 1rem;
    }
    .nav-links.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li{
        opacity: 0;
    }
    .nav-links li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4){
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5){
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    li.fade_1{
        opacity: 1;
        color: white;
    }
    .nav-links li a{
        font-size: 1.1rem;
    }

    .dropdown_lang{
        top: 600%;
    }
}
/*Animating Hamburger Icon on Click*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}

.top_nav{
    width: 100%;
    background-color: rgb(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}
