@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;;
} 

body {
    width: 100%;

}

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: -1;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .5s;
}

.header:hover::after {
    left: 100%;
}

.logo {
    font-size: 2rem;
    color: black;
    text-decoration: none;
    font-weight: 700;
    width: 10%;
}


.navbar a {
    font-size: 1.20rem;
    color: black;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
}

#check {
    display: none;
}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: fff;
    cursor: pointer;
    display: none;
}


/* BREAKPOINTS */

@media (max-width: 1265px) {
    .header {
        padding: 1.3rem 5%;
    }
}

@media (max-width: 1140px) {
    .icons {
        display: inline-flex;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: whitesmoke;
        backdrop-filter: blur(50px);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: .3s ease;
    }

    #check:checked~.navbar {
        height: 19rem;
    }


    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }

    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.15s * var(--i));
        height: 18px;
    }
}

@media (max-width: 710px) {


    .logo {
      font-size: 1.5rem;
  }

}


/*otcheti*/ 

.otcheti {
   position: absolute;
   left: 43%;

}


/* dobavqne na otcheti */

.addsections {
    display: none;
    position: absolute;
    top: 175%;
    left: 46%;
    color: white;
}

.addsections button {
    background-color: rgb(131, 165, 230);
    border: 5px solid rgb(131, 165, 230);
    border-radius: 5px;
}

.addsections button:hover {
    border: 8px solid blue;
    background-color: blue;
    border-radius: 5px;
    color: white;
}

.addsections a {
    text-decoration: none;
    color: black;
}

.addsections a:hover {
    color: white;
}


@media (max-width:1299px) {
    .otcheti a {
        font-size: 10px;
    }
    
}

@media (max-width:960px) {
    .otcheti {
        position: absolute;
        left: 20%;
    }

    .addsections {
        top: 170%;
    }
    
}

@media (max-width:580px) {
    .otcheti {
        position: absolute;
        left: 10%;
    }

    .otcheti a {
        font-size: 8px;
    }

    .addsections {
        top: 170%;
        left: 40%;
    }
    
}
@media (max-width:413px) {
    .otcheti {
        position: absolute;
        left: 5%;
    }

    .otcheti a {
        font-size: 7px;
    }

    .addsections {
        top: 170%;
        left: 35%;
    }
    
}

 
 
 /* FOOTER */

  footer {
    margin-top: 1400px;
    padding: 54.5px 0;
    background-color: rgb(131, 165, 230);
    height: 20%;
    color: white;
    top: 0;
}

.footer .logofooter {
    text-align: center;
    margin-bottom: 10px;
}

.footer .logo {
    color: white;
}

.footer ul {
    text-align: center;
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.0;
    margin-bottom: 0;
}

.footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul li {
    display: inline-block;
    padding: 0 15px;
}

.footer ul li a:hover {
    opacity: 1;
}

.footer .copyright {
    margin-top: 20px;
    text-align: center;
    font-size: 15px;
    color: white;
}

/* @media (max-width:1100px) {
    .addsections {
        position: absolute;
        top: 77%;
    }
    
}

@media (max-width:700px) {
    .addsections {
        position: absolute;
        left: 40%;
    }
    
}

@media (max-width:400px) {
    .addsections {
        position: absolute;
        left: 35%;
    }
    
} */


