/*#################
 RESET 
#################*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,  figure, figcaption, footer, header, hgroup,  menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*#################
 GENERAL 
#################*/
* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

img {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

header {
    background: #fff;
    text-align: center;
}

.logo {
}

.logo img {
    position: absolute;
    /* left: calc(50% - 200px); */
    left: 35px;
    top: 35px;
    width: 500px;
    max-width: 100%;
}

    @media (max-width: 850px) {
        .logo img {
            position: relative;
            top: 0;
            left: 0;
            display: block;
            margin: 0 auto;

        }
    }
    @media (min-width: 851px) and (max-width: 1001px) {
        .logo img {
            max-width: 250px;
        }
    }
    @media (min-width: 1002px) and (max-width: 1201px) {
        .logo img {
            max-width: 350px;
        }
    }

.claim {
    /* background: #eee; */
    /* border-top: 5px solid #ba137e; */
    background: #ba137e;
    color: #fff;
    text-align: center;
    padding: 60px 15px 80px;
    /* border-top: 3px solid #ba137e; */
    /* border-bottom: 3px solid #ba137e; */
}

@media (max-width: 768px) {
    .claim {
        padding: 30px 15px 30px;
    }
}

.claim a {
    font-size: 50px;
    text-decoration: none;
    color: #fff;
}

@media (max-width: 768px) {
    .claim a {
        font-size: 25px;
    }
}

.map {
    height: 70%;
    display: block;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
}

footer {
    background: #111;
    text-align: center;
    padding: 25px;
    clear: both;
    border-top: 1px solid #ba137e;
}

    @media (max-width: 450px) {
        footer {
            padding-bottom: 45px;
        }
    }

footer p {
    font-weight: 400;
    font-size: 22px;
    color: #fff;
}

    @media (max-width: 768px) {
        footer p {
            font-size: 18px;
        }
    }

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


/* // boton subir arriba */
.scroll-to-top {
    width: 40px;
    height: 40px;
    opacity: 1;
    position: fixed;
    bottom: 15px;
    right: 20px;
    display: none;
    text-indent: -9999px;
    background-color: #ba137e;
    background-image: url('./icon-up.png') no-repeat;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 3px #000;
}

    @media (max-width: 768px) {
        .scroll-to-top {
            bottom: 15px;
            right: 15px;
        }
    }

.scroll-to-top img {
    max-width: 20px;
    margin: 0 auto;
    padding-top: 8px;
    display: block;
}


.left, .right {
    width: 50%;
    float: left;
}

.border {
    background: #ba137e;
    min-height: 20px;
}

@media (max-width: 768px) {
    .border {
        display: none;
    }
}