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

body{
    font-family: 'Ruda', sans-serif;
}

header{
    width: 100%;
    height: 50px;
    background: #77EBC2;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor{
    width: 98%;
    margin: auto;
}

h1{
    float: left;
    font-family: 'Capriola', sans-serif;
 
}

header.contenedor{
    display: table;
}

#menu-bar{
    display: none;
}

header label{
    float: right;
    font-size: 28px;
    margin: 6px 0;
    cursor: pointer;
    
}

.menu{
   position: absolute;
    top:50px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #F35149;
    transition: all 0.5s;
    transform: translateX(-100%);
    
        
}

.menu a{
    display: block;
    color: #fff;
    height: 50px;
    text-decoration: none;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.menu a:hover{
    background: rgba(255,255,255,0.3);
}

#menu-bar:checked ~ .menu {
    transform: translateX(0%);
}


#banner{
    
    position: relative;
}

#banner img{
    width: 100%;
    height: 100%;
}

#banner .contenedor{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: white;
}

#banner h2{
    font-size: 25px;
    position: center;
}

#banner a{
    display: block;
    width: 100px;
    color: white;
    text-decoration: none;
    padding: 7px;
    margin-top: 10px;
    border: 3px solid white;
}

#banner a:hover{
    background: rgba(255, 255, 255, 0.5);
}
section{
    width: 100%;
    margin-bottom: 25px;
}


* {
    margin: 0;
    padding: 0;
}

div {
    display: block;
}

body {
    width: 100%;
    margin-top: 70px;
    padding: 0 auto;
    font-family: 'Ruda', sans-serif;
    color: ##BB5DEE;
    font-size: 0.9em;
    font-weight: 500;
}

.secciones{
    width: 100%;
    margin:auto;
}


.casos{
   position: relative;
   background: #BB5DEE;
   font-family: 'Ruda', sans-serif;
    font-size: 15px
              
}

.casos a{
    display: block;
    color: #fff;
    height: 70px;
    text-decoration: none;
    padding: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    text-align: center;
}

.casos a:hover{
    background: rgba(255,255,255,0.3);
}



footer {
    font-size: 0.7em;
    background-color: #bcbcbc;
    font-family: 'Ruda', sans-serif;
    text-align: center;
    padding: 1em;
    margin-top: 30px;
    color: black;
}


.video {
    width: 100%;
    
    align-content: center;
    padding: 10px;
    position: relative;
  
    margin-top: 130px;
  
}

    
    

---------slider----galeria---------

body{
    margin:0;
    display: flex;
    min-height: 100vh;
}


.slider{
    width: 100%;
  
    margin-top: 10px;
    position: relative;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items:flex-end;
}

.slider img{
    position: absolute;
    width: 100%;
  
    top:20px;
    left:0;
    opacity: 0;
    transition: all 0.7s;
}

.slider input[type="radio"]:checked ~ img {
  opacity: 1;
}

.slider input[type="radio"] + label{
    position: relative;
    top: 80px;
    z-index: 50;
    margin: 10px;
    justify-content: center;
    align-items: flex-end;
    display: block;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 5%;
    cursor: pointer;
}


.slider input[type="radio"]:checked + label {
    background: yellow;
}

    

---------ingresar-------------
*{
    margin: 0;
    padding: 0;
    font-family: 'Ruda', sans-serif;
    box-sizing: border-box;
}


    form{
       
        
        width: 100%;
        align-content: center;
        margin: 30px;
        background: #8AE6E1;
        padding: 10px 20px;
        box-sizing: border-box;
        margin-top: 70px;
        
    }



input{
    display: block;
    padding: 10px;
    width: 100%;
    margin: 30px 0;
    font-size: 15px;
}


input[type="submit"]{
    background: #5043BA;
    color: white;
    cursor: pointer;
    margin-top: 0;
    
    }
    






* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
 }
 
 a {
    color: #03658c;
    text-decoration: none;
 }
 
ul {
    list-style-type: none;
}
 
body {
    font-family: 'Roboto', Arial, Helvetica, Sans-serif, Verdana;
    background: #dee1e3;
}


.comments-container {
    margin: 60px auto 15px;
    width: 768px;
}
 
.comments-container h1 {
    font-size: 36px;
    color: #283035;
    font-weight: 400;
}
 
.comments-container h1 a {
    font-size: 18px;
    font-weight: 700;
}
 
.comments-list {
    margin-top: 30px;
    position: relative;
}

.comments-list:before {
    content: '';
    width: 2px;
    height: 100%;
    background: #c7cacb;
    position: absolute;
    left: 32px;
    top: 0;
}
 
.comments-list:after {
    content: '';
    position: absolute;
    background: #c7cacb;
    bottom: 0;
    left: 27px;
    width: 7px;
    height: 7px;
    border: 3px solid #dee1e3;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
 
.reply-list:before, .reply-list:after {display: none;}
.reply-list li:before {
    content: '';
    width: 60px;
    height: 2px;
    background: #c7cacb;
    position: absolute;
    top: 25px;
    left: -55px;
}
 
 
.comments-list li {
    margin-bottom: 15px;
    display: block;
    position: relative;
}
 
.comments-list li:after {
    content: '';
    display: block;
    clear: both;
    height: 0;
    width: 0;
}
 
.reply-list {
    padding-left: 88px;
    clear: both;
    margin-top: 15px;
}
/**
 * Avatar
 ---------------------------*/
.comments-list .comment-avatar {
    width: 65px;
    height: 65px;
    position: relative;
    z-index: 99;
    float: left;
    border: 3px solid #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    overflow: hidden;
}
 
.comments-list .comment-avatar img {
    width: 100%;
    height: 100%;
}
 
.reply-list .comment-avatar {
    width: 50px;
    height: 50px;
}
 
.comment-main-level:after {
    content: '';
    width: 0;
    height: 0;
    display: block;
    clear: both;
}
/**
 * Caja del Comentario
 ---------------------------*/
.comments-list .comment-box {
    width: 680px;
    float: right;
    position: relative;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
    box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}
 
.comments-list .comment-box:before, .comments-list .comment-box:after {
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    display: block;
    border-width: 10px 12px 10px 0;
    border-style: solid;
    border-color: transparent #FCFCFC;
    top: 8px;
    left: -11px;
}
 
.comments-list .comment-box:before {
    border-width: 11px 13px 11px 0;
    border-color: transparent rgba(0,0,0,0.05);
    left: -12px;
}
 
.reply-list .comment-box {
    width: 610px;
}
.comment-box .comment-head {
    background: #FCFCFC;
    padding: 10px 12px;
    border-bottom: 1px solid #E5E5E5;
    overflow: hidden;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}
 
.comment-box .comment-head i {
    float: right;
    margin-left: 14px;
    position: relative;
    top: 2px;
    color: #A6A6A6;
    cursor: pointer;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
 
.comment-box .comment-head i:hover {
    color: #03658c;
}
 
.comment-box .comment-name {
    color: #283035;
    font-size: 14px;
    font-weight: 700;
    float: left;
    margin-right: 10px;
}
 
.comment-box .comment-name a {
    color: #283035;
}
 
.comment-box .comment-head span {
    float: left;
    color: #999;
    font-size: 13px;
    position: relative;
    top: 1px;
}
 
.comment-box .comment-content {
    background: #FFF;
    padding: 12px;
    font-size: 15px;
    color: #595959;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}
 
.comment-box .comment-name.by-author, .comment-box .comment-name.by-author a {color: #03658c;}
.comment-box .comment-name.by-author:after {
    content: 'autor';
    background: #03658c;
    color: #FFF;
    font-size: 12px;
    padding: 3px 5px;
    font-weight: 700;
    margin-left: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

@media only screen and (max-width: 766px) {
    .comments-container {
        width: 480px;
    }
 
    .comments-list .comment-box {
        width: 390px;
    }
 
    .reply-list .comment-box {
        width: 320px;
    }
 
    form{
       
        margin: 20px;
        width: 100%;
    align-content: center;
        margin: 30px;
        background: #8AE6E1;
        padding: 10px 20px;
        box-sizing: border-box;
        margin-top: 70px;
        
    }
    
    h5{
        color: #5043BA;
        text-align: center;
        margin-top: 30px;
        font-size: 25px;
        margin-bottom: 20px;
        font-family: 'Ruda', sans-serif;
        
    }
    

    input, textarea{
    
        width: 100%;
        margin-bottom: 20px;
        padding: 7px;
        box-sizing: border-box;
        font-size: 15px;
        border: none;
    }
    
    textarea{
        min-height: 100px;
        max-height: 200px;
        max-width: 100%;
        }
    
    #boton{
        background: #5043BA;
        color: white;
        padding: 10px;
        
    }
    
    
    #boton:hover{
        cursor: pointer;
    }
    
    @media {(max-widht:480px)}
         form{
          width: 100%;
        }
    