*{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: rgb(60, 78, 114);
    height: 60px;
    width: 100%;
}
.menu-icon{display: none;}
#check{display: none;}
.menu{
    float: right;
    margin: 0 10px 0 0;
    top: 20px;
    right: 100px;
    position: absolute;
}
.menu a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-right: 15px;
}
.marca a{
    color: #fff;
    font-size: 18px;
    display: block;
    position: absolute;
    text-decoration: none;
    top: 18px;
    left: 100px;
}



.blog-section {
    max-width: 700px;
    margin: auto;
    position: relative;
    top: 20px;
}
h1{text-align: center;}
.main-image {
    width: 100%;
    height: 340px;
}
p{margin: 20px 0;}
.image-text-left, .image-text-right {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.image-text-left .text-content, .image-text-right .text-content {margin-left: 20px;}
.image-text-right {flex-direction: row-reverse;}
.side-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
}
/* Acordeon Preguntas */
.accordion {
    width: 100%;
    max-width: 700px;
    margin: 2rem auto;
}
.accordion-item {
    background-color: #fff;
    color: #111;
    margin: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}
.accordion-item-header {
    padding: 0.5rem 3rem 0.5rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.accordion-item-header::after {
    content: "\002B";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
}
.accordion-item-header.active::after {content: "\2212";}
.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
    padding: 1rem;
    line-height: 1.5rem;
    border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}
@media screen  and (max-width: 640px){
    .marca{left: 34%;}
    .imagen img{width: 400px;}
    .contenido{width: 95%;}
}
@media screen and (max-width: 800px) {
    #check:checked ~ .menu{left: 0;}      
    .menu{
        background: #fff;
        top: 69px;
        left: -100%;
        transition: all 0.8s ease;
        overflow-y: scroll;
        overflow: -moz-scrollbars-vertical;
        width: 100%;
        height: 100vh;
        z-index: 200;
    }
    .menu a{
        color: #000;
        display: block;
        border-bottom: 1px solid #000;
        box-sizing: border-box;
        text-transform: uppercase;
        font-size: 0.8rem;
        padding: 2px 0 0 0;
        padding-left: 30px;
        line-height: 65px;
        height: 70px;
        width: 100%;
    } 
    .menu-icon{
        cursor: pointer;
        display: block;
        float: left;
        left: 5%;
        margin: 20px 5px; 
        position: absolute;
    }
}