@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {

    margin: 10;
    padding: 0;
    background-color: white;
    
    
    
}

html{

    width: 100%;
    max-width: 100%;

}

body {

    font-family: 'Poppins', sans-serif;
    font-size: 16 px;
    font-weight: 400;
    color: black;
    overflow-x: hidden;
    
    
    
    
}

p {
    margin-top: 2; 
  }

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #636363;
    text-decoration: underline;
    
}

.m_active {
    color: #636363;
    text-decoration: underline;
}

img {
    max-width: 100%;
}

hr {
    border: none;
    background-color: #636363;; 
    color: #636363;; 
    height: 2px; 
    max-width: 100%;
    
   }
.wrapper {

    max-width: 800px;
    margin: auto;
    padding: 0 10px;
    
    
    
}



.container {
    
    max-width: 100%;
    margin: 0 auto;
    
}

    

header {
    padding: 20px 0;
}

header nav {

    display: flex;

    
}

.block_menu {
   
    display: flex;
    align-items: center;


    
    
}



/* .block {
    
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 0;
}

.block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #636363;
} */

.menu {
    display: flex;
    

}

.menu li {
    margin: 0px 10px;
}

.m_menu{
    display: none;
    

}

.burger {
    display: none;
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}
.burger span {
    
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    top: 9px;
}
.burger::before,
.burger::after{
    content:'';
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
}

.burger::before{
    top:0;
}
.burger::after{
    bottom:0;
}

.burger.active span {
    transform: scale(0);
}

.burger.active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
}

.burger.active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0, 50%);
}  

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

    html.lock {

        overflow: hidden;
    }

    .burger {
        display: flex;
        z-index: 2;
        
        
    }

    .logo {
        z-index: 2;
    }

    .block_menu {
        display: flex;
        
        justify-content: space-between;
        align-items: center;
    }

    .menu {
        display: none;    
    }

    .m_menu {

        display: flex;
        flex-direction: column;
        position: fixed;
        width: 100%;
        height: 100%;
        top: -150%; bottom: 0; left: 0; right: 0;
        z-index: 1;
        overflow-y: auto;
        padding: 50px 50%;
        background-color: white;
        transition: all 0.3s ease 0s;
        
    }

    .m_menu.active {
        top: 0;
    }

    ul {
        flex-direction: column;
        row-gap: 30px;
    }

    .text-bio {
        padding: 40px 0;
    }


}



.text-bio {
    padding: 20px 0;
    max-width: 100%;
    margin: 0;
    color: #636363;
    text-align: justify;
    font-size: 14px;

}

.contacts{

    padding: 0px 0;
    width: 100%;
    margin: 0;
    color: #636363;
    text-align: justify;
    font-size: 14px;

}




