body {

    margin: 0 0 0 0;
    background-color: whitesmoke;

}
.Invisible-Div {

    width: 100vw;
    height: 10vh;

}
.Header {

    display:flex;
    justify-content: center;
    width: 100%;
    height: 50px;
    background-color: white;

}
.Logo {

    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 22px;
    color:rgb(122, 67, 22);;
    margin-left: 0px;
    margin-right: 1300px;
    margin-top: 10px;

}
.Burger {

    width: 35px;
    height: 20px;
    display: grid;
    align-items: center;
    margin-top: 15px;
    background-color: white;
    border: 0px;
    cursor: pointer;
    

}
.Line1 {

    height: 5px; 
    background-color: rgb(122, 67, 22);;
    width: 100%;
    margin-top: 1px; 

}
.Line2 {

    background-color: rgb(122, 67, 22); 
    width: 100%;
    height: 5px;
    margin-top: 1px;

}
.Line3 {

    height: 5px; 
    background-color: rgb(122, 67, 22);
    width: 100%; 
    margin-top: 1px;

}

/* Главный блок */

.Main-Block {

    width: 100vw;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(202, 172, 0); 

}
.All-Content {

    width: 80vw;
    height: 60vh;
    background-color: white;
    display: flex; 
    
}
.First-Half {

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;

}
.Place-For-Heading {

    width: 100%;
    height: 20%;
    margin-top: 10%;
    margin-left: 10%; 
    
}
.Heading {

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color:rgb(66, 40, 19);

}
.Place-For-Text {

    width: 100%;
    height: 40%;
    display: flex;
    
    margin-left: 10%;
    color: rgb(66, 40, 19);

}
.Read-More {

    text-decoration: none;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color:rgb(66, 40, 19);
    font-size: 17px;
    margin-left: 10%;
    
}
.Text {

    padding-right: 20%;
    font-size: 20px;
    color: rgb(66, 40, 19);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;


}

.Second-Half {

    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    
}
.First-Line {

    display: flex;
    width: 100%;
    height: 50%;

}
.First-Part-Of-Half {

    width: 50%;
    height: 100%;
    background-color: rgb(101, 116, 68);
    background-image: url(First-Half.jpg);
    background-size: cover;

}
.Second-Part-Of-Half {

    width: 50%;
    height: 100%;
    background-color: rgb(255, 115, 0);
    background-image: url(Second-Half.webp);
    background-size: cover;
        
}
.Second-Line{

    display: flex;
    width: 100%;
    height: 50%;
    

}
.Third-Part-Of-Half {

    width: 50%;
    height: 100%;
    background-color: blue;
    background-image: url(Third-Halfjpg.jpg);
    background-size: cover;
        
}
.Fourth-Part-Of-Half {

    width: 50%;
    height: 100%;
    background-color: rgb(0, 255, 242);
    background-image: url(Fourth-Half.jpg);
    background-size: cover;
        
}

.Footer {

    width: 100%;
    height: 200px;
    background-color: white;

}
.Top-Side-In-Footer {

    display: flex; 
    justify-content: center;
    width: 100%;
    height: 20%;

}
.Page {

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: rgb(66, 40, 19);
    text-decoration: none;
    margin: 2% 1% 0% 1%; 

}
.Place-For-Media {

    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    margin-top: 2%;

}


.Sidebar {

    width: 15%;
    height: 100%;
    z-index: 100;
    top: 0;
    left: -15%;
    background-color: white;
    position: fixed;
    transition: left 0.5s ease;

}
.Sidebar.open {
    
    left: 0;

}
.Overlay {

    opacity: 0;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    transition: all 0.5s ease;
    visibility: hidden;

}
.Overlay.open {

    opacity: 1;
    visibility: visible;

}
.Content-In-Sidebar {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 60%;

}
.Page-Sidebar {

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: rgb(66, 40, 19);
    text-decoration: none;
    font-size: 22px;
    margin-top: 3%;
    

}