     .Full_Content{
position: fixed; 
z-index: 56;
width: 100vw;
top: 0;
left:  100vw;
height: 100vh;
overflow-y: scroll;
background: #181414; 
transition: all 1200ms ease-in-out;
}
body.Content_opened .Full_Content{
left:  0vw;
}
body.Content_opened{overflow: hidden;}
.Full_Content .content-body{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 56%; 
box-shadow: -0.04vw 0.02vw 5vw 0.08vw #c7bbb3c9;
border-radius: 2%;
padding: 2vw;
margin: auto;
margin-top: 8vh;
}
.Full_Content .cut_option{
 position: absolute;
 right: 2vw;
 top: 2vh;
 width: 3.5vw;
 height: 3.5vw;
 border: 0.2vw solid white;
border-radius: 50%;
cursor: pointer;
}
.Full_Content .img{
width: 100%;
 border-radius:8% ;
overflow: hidden;
margin: 2vh 0;
}
.Full_Content .heading{
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-weight: 100;
font-size: 6vw;
letter-spacing: 0.15vw;
}
.Full_Content .main_content{
width: 80%;
margin: auto;
text-align: start;
letter-spacing: 0.02vw;
 font-size: 2.2vh;
font-weight: lighter;
word-break: break-word; 
font-family: 'Lato',-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
@media only screen and (max-width: 768px) {
    .Full_Content .content-body{width: 85%;}
    .Full_Content .cut_option{width: 12vw; height: 12vw;}
}