*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{

    background-color: #eee;
}
.header{
    background:#b3dee5;
    position: sticky;
    top: 0;
    width: 100%;
    overflow: visible;
    z-index: 1;
}

ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 17px;
}
li{
    float: right;
}
li a{
    display: inline-block;
    padding: 20px 16px;
    text-decoration: none;
    color: white;
    text-align: center;
}
li a:hover:not(.active){
    background-color: #83b3bb;
}
.active{
    background-color: #70aab3;
}


#header{
    color: white;
    float: left;
    text-align: center;
    margin: 0;
    padding: 10px;
}

 .container{
    padding: 50px;
 }

.container h2{
    letter-spacing: 1px;
    font-size: 30px;
    color: #6968aa;
    padding: 10px;
    border: 2px dashed#0181a0;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    margin-top: 0px;
    margin-left: 375px;
}
.blog-post{
    width: 100%;
    max-width: 98rem;
    height: 300px;
    padding: 5rem;
    background-color: white;
    display: flex;
    align-items: center;
    border-radius: 8rem;
    margin: 10px ;
    transition: 0.3s;
}
.blog-post:hover{
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 -2px 16px 0 rgba(0,0,0,0.2);
}
.blog-post_img{
    min-width: 300px;
    max-width: 300px;
    height:250px;
    transform: translateX(-8rem);
    position: relative;
}
.blog-post_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}
.blog-post_img img::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 5rem 5rem 3rem 1px rgba(0,0,0,0.5);
}
.blog-spot_title{
    font-size: 30px;
    margin: 1.5rem 0 2rem;
    text-transform: uppercase;
    color: #4facfe;
}
.blog-post_info{
    transform: translateX(-60px);
}
.blog-post_text{
    margin-bottom: 3rem;
    font-size: 20px;
    color: #000000b3;
}


.footer{
    width: 100%;
    height: 180px;
    background-color: #31525b;
}
#footer{
    color: white;
    position: relative;
    top: 50%;
    text-align: center;
    font-size: 12px;
}
.isifooter{
    padding: 20px;
    height: 120px;
}
.isifooter2{
    height: 70px;
    border-top: 1px solid #253f46;
    width: 100%;
    background-color: #31525b;
}