/* STYLES DAVID PEREZ WEB */


/* GENERAL ROOT STYLES */

html {
    box-sizing: border-box;
    font-size: 16px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    background: #fffdfd;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #000000
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 40px;
    margin: 15px 0;
}

h3 {
    font-size: 24px;
    margin: 15px 0;
}


/* HEADER */

header {
    width: 100%;
}

header .logo {
    max-width: 300px;
    margin: 20px auto;
    display: block;
}

header nav {
    display: block;
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

header nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}


header nav ul li {
    position: relative;
}

header nav ul li a {
    padding: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight:500;
    text-transform:uppercase;
    text-decoration:none;
    color:#16151b;
    font-size:16px;
    letter-spacing:1px;
    position:relative;
    display:inline-block;
}

header nav ul li a:hover {
    background: #eee;
}

header nav ul li ul {
    display: none;
    position: absolute;
    background: #fff;
}

header nav ul li:hover ul {
    display: block;
}

header nav ul li ul li a {
    width: 100%;
}


/* BANNER HOME */

.banner {
    width: 100%;
    display: block;
    font-size: 0;
    padding: 60px 0;
}

.banner .banner-img {
    display: inline-block;
    width: 50%;
    vertical-align: middle;
}

.banner .banner-text {
    display: inline-block;
    width: calc(50% + 50px);
    background: #a7c5e1;
    font-size: 22px;
    vertical-align: middle;
    padding: 200px 50px;
    margin-left: -50px;
}


.banner .banner-text img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
}

.banner .banner-text p {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 50px;
    letter-spacing: 3px;
}

.banner .banner-text p span:first-child {
    font-weight: bold;
}


.banner.right .banner-text {
    margin-left: 0;
    margin-right: -50px;
    background-color: #f9ab9d;
}




/* FOOTER */

footer {
    width: 100%;
    background: #eee;
}

footer .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
}

footer .footer-content .logo {
    max-width: 280px;
}

footer .footer-content .links {
    width: 100%;
    padding: 0 30px;
}

footer .footer-content .links ul li a {
    text-decoration: none;
    color: #151515;
    font-size: 16px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

footer .footer-content .links ul li a:before {
    content: "";
    width: 30px;
    height: 2px;
    display: block;
    background: #151515;
    margin-right: 9px;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: 0.2s all linear;
}

footer .footer-content .links ul li a:hover:before {
    width: 100%;
}


.footer-content.sub-footer {
    justify-content: center;
    align-items: center;
    background: #5c5c5c;
    border-radius: 50px 50px 0 0;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 15px;
}


/* TABLE */

table.size-guide {
    min-width: 500px;
    margin: 20px 0;
}

table.size-guide thead {
    background: #eee;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

table.size-guide tbody {
    text-align: center;
}

table.size-guide tbody td {
    padding: 10px;
}

table.size-guide tbody tr:nth-child(2n) {
    background: #f5f5f5;
}


/* FORMULARIO */

form#form1 {
    display: block;
    width: 100%;
    margin: 40px 0;
    max-width: 500px;
}

form textarea, form input:not([type="submit"]) {
    width: 100%;
    padding: 10px 0;
    border: 0;
    border-bottom: 2px solid;
    font-size: 16px;
    outline: none;
}

form label {
    font-size: 16px;
    font-weight: bold;
}

form label span {
    font-size: 12px;
    display: block;
    font-weight: normal;
    opacity: 0.5;
}

input[type="submit"] {
    border: 0;
    width: 100%;
    font-size: 16px;
    padding: 15px;
    border-radius: 5px;
}

form .form-item {
    margin-bottom: 20px;
}

.form-item.checkbox {
    display: flex;
}

.form-item.checkbox input#checkbox {
    width: 25px;
    text-align: left;
}


/* MAP */

area.area-1:hover:after {
    opacity: 1;
}

area.area-1:after {
    content: "EUROPA";
    position: absolute;
    bottom: 314px;
    left: 377px;
    font-size: 18px;
    color: #fff;
    opacity: 0;
    background: #3798c9;
    padding: 10px;
    border-radius: 5px;
}

area.area-2:hover:after {
    opacity: 1;
}
area.area-2:after {
    content: "AMERICA";
    position: absolute;
    bottom: 250px;
    left: 150px;
    font-size: 18px;
    color: #fff;
    opacity: 0;
    background: #3798c9;
    padding: 10px;
    border-radius: 5px;
}

div#stylized {
    display: inline-block;
    width: 40%;
}

.map {
    display: inline-block;
    position: relative;
}

/* BANNER ACTUALIZACION */
.bannerAct {
    width: 100%;
    display: block;
    font-size: 0;
    padding: 60px 0;
}


.bannerAct .banner-text {
    display: inline-block;
    width: 100%;
    background: #a7c5e1;
    font-size: 22px;
    vertical-align: middle;
    padding: 200px 50px;
    
}



.bannerAct .banner-text img {
    max-width: 60%;
    margin: 0 auto;
    display: block;
}

.bannerAct .banner-text p {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 50px;
    letter-spacing: 3px;
}

.bannerAct .banner-text p span:first-child {
    font-weight: bold;
}

/* Tarjeta Mapa */
.TarjetaMap {
    width: 100%;
    display: block;
    font-size: 0;
    padding: 30px 0;
}


.TarjetaMap .TarjetaMap-text {
    display: inline-block;
    width: 100%;
    background: #a7c5e1;
    font-size: 22px;
    vertical-align: middle;
    padding: 30px 60px;
    
}



.TarjetaMap .TarjetaMap-text img {
    max-width: 60%;
    margin: 0 auto;
    display: block;
}

.TarjetaMap .TarjetaMap-text p {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.TarjetaMap .TarjetaMap-text p span:first-child {
    font-weight: bold;
}


/* PRODUCTOS COMPLEMENTOS */

.cajas{
    display: inline-block;
    width: calc(33% - 40px);
    margin: 20px;
    height: auto;
    background: #d8d8d8b4;
    box-shadow: 0px 0px 20px 0px rgba(17, 17, 17, 0.452);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    padding: 7px 7px;
}
.con-cajas{
    display: flex;
    align-items: center;
    justify-content: center;
}

.botonComprar{
    margin: 10px 30%;
}


/* OPCIONES HOMBRE */

.bannerHomb {
    width: 100%;
    display: block;
    font-size: 0;
    padding: 20px 0;
    padding-bottom: 60px;
}


.bannerHomb .banner-text {
    display: inline-block;
    width: 100%;
    background: #8ca9af61;
    
}



menu nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}


menu nav ul li {
    position: relative;
}

menu nav ul li a {
    padding: 40px;
    font-family: 'Oswald', sans-serif;
    font-weight:500;
    text-transform:uppercase;
    text-decoration:none;
    color:#16151b;
    font-size:20px;
    letter-spacing:3px;
    position:relative;
    display:inline-block;
}

menu nav ul li a:hover {
    background: #eee;
}












