* {
    margin:0;
    padding:0;
}

body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    position: relative;
    background: linear-gradient(#1d1e1d, rgb(76, 75, 75));
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

body::after {
    content: '';
    display: block;
    height: 50px; /* Set same as footer's height */
  }

.logo {
    width: 300px;
    margin: 30px 0 30px 0;
}

/*Navegacion*/
header {
    width: 100%;
    background: none;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    border-top: solid 2px black;
}

.menu .logo_img{
    width: 10%;
    margin-left: 13px;
}

header nav{
    font-family: serif;
}

.nombre .E{
    color: rgb(33, 121, 156);
    font-weight: bold;
}

.nombre .a{
    float: left;
    margin-left: 65px;
    margin-top: 6.5px;
    color: saddlebrown;
}
.menu{
    width:100%;
    left: 0;
    height: 60px;
    background: #69bcbd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}
li{
    color: #000000;   
    margin-bottom: 11px;
}

.menu .list-container{margin-right: 20px;}
.menu .list-container ul{display: flex;}
.menu .list-container ul li{list-style: none;}
.menu .list-container ul li a{
    text-decoration: none;
    margin: 0px 15px;
    padding:8px;
    color: var(--black);
    border-radius: 5px;
    transition: 0.3s;
    font-size: 20px;
}
.menu .list-container ul li a.active{
    background: var(--black);
    color:rgba(0, 0, 0, 0.459);
}
.menu .list-container ul li a:hover{
    background: var(--black);
    color: #33ffff;
}

.btn-menu > .fa-bars{
    display: none;
}

.form-box .Ub{
    visibility: hidden;
}
p{
    font: 15px Arial, Helvetica, sans-serif;
    color: #fff;
}

.form-box {
    width: 400px;
    background: #515151;
    text-align: center;
    border-radius: 20px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.form-box .label{
    color: #ffffff;  
}

.form-title {
    color: #fff;
    font-weight: 500;
    padding-bottom: 20px;
    font-size: 30px;
}

.form-sub-title {
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    padding-bottom: 20px;
}

.form-box label {
    color: #fff;
}

.form-box select {
    border: 0;
    background-color: #191919;
    color: #ffffff;
    font-size: 18px;
    display: block;
    margin: 18px auto;
    text-align: center;
    border: 2px solid #345fee;
    padding: 14px 20px;
    width: 70%;
    height: 60px;
    outline: none;
    border-radius: 10px;
    transition: 0.23s;
}

.form-box input[type="text"], .form-box input[type="tel"], .form-box input[type="number"], .form-box input[type="email"], .form-box input[type="password"] {
    border: 0;
    background: #e6e6e6;
    display: block;
    margin: 18px auto;
    text-align: center;
    border: 2px solid #345fee;
    width: 50%;
    height: 50px;
    outline: none;
    font-size: 20px;
    color: #000000;
    border-radius: 10px;
    transition: 0.23s;
    overflow: hidden;
}

.form-box input[type="text"]:focus, .form-box input[type="tel"]:focus, .form-box input[type="number"]:focus, .form-box input[type="email"]:focus, .form-box input[type="password"]:focus {
    width: 55%;
    border-color: #ffffff;
}

.form-box input[type="submit"] {
    border: 0;
    background: linear-gradient(black, #cc1503);
    display: block;
    margin: 18px auto;
    text-align: center;
    width: 70%;
    height: 60px;
    outline: none;
    font-size: 25px;
    color: #ffffff;
    border-radius: 10px;
    transition: 0.23s;
}

.form-box button[type="submit"] {
    border: 0;
    background: #345fee;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #fdfdfd;
    padding: 16px 20px;
    outline: none;
    color: white;
    border-radius: 25px;
    transition: 0.23s;
    cursor: pointer;
}

.form-box button[type="submit"]:hover {
    background: none;
}

.notifCheck {
    border: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 18px auto;
    text-align: center;
    width: 90%;
    height: 50px;
    outline: none;
    font-size: 20px;
    color: #000000;
    border-radius: 10px;
    transition: 0.23s;
}

.Notif {
    cursor: pointer;
    background-color: #fff;
    width: 25px;
    height: 25px;
    border: 2px solid #888;
    margin-right: 10px;
}

.volver {
    color: #33ffff;
}

.volver:hover, a:focus {
    color: #5c7575;
    animation-delay: 500ms;
}

.map {
    width: 85%;
    height: 200px;
    z-index: 1;
    border-radius: 10px;
}

footer {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    color: white;
    font-size: 15px;
    background-color: #000000;
    opacity: .6;
    position:absolute;
    bottom: 0;
}

.footer-padding {
    width: 25px;
}


@media (max-width:980px){
    
    .btn-menu > .fa-bars{
        display: block;
        position: absolute;
        right: 10px;
        top: 20px;
        font-size: 28px;
        color: #024959;
        transition: 0.5s;
        cursor: pointer;
    }
    .menu .list-container{
        position: fixed;
        top:60px;
        left:-100%;
        background:linear-gradient(#024959,#33ffff);
        width: 100%;
        height: calc(100vh - 60px);
    }
    .menu .list-container .lists{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .menu .list-container ul li{
        width: 90%;
        display: flex;
        justify-content: center;
        border-bottom:1px solid rgba(255,255,255, .3);
    }
    .menu .list-container ul li a{
        font-size: 20px;
        text-align: center;
        padding:12px 0px;
        color: #ffffff;
    }
    .menu .list-container ul li a.active{
        background:#031d66;
        color:var(--black);
    }
    .menu .list-container ul li a:hover{
        background:rgba(1, 1, 1, 0.3);
        color:var(--black);
    }
}

@media (max-width:500px){

    .tw-logo {
        width: 80%;
    }

    .form-box {
        width: 85%;
        height: auto;
    }

    .form-box input[type="text"]:focus, .form-box input[type="tel"]:focus, .form-box input[type="number"]:focus, .form-box input[type="email"]:focus, .form-box input[type="password"]:focus {
        width: 60%;
    }
    
}



