/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
    padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

/* Set core body defaults */
html {
    scroll-behavior: smooth;


}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
    list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
    max-width: 100%;
    display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
    margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Gelasio', sans-serif;
}

.container-fluid {
    max-width: 1600px;
}

@media (max-width: 1600px) {
    .container-fluid {
        max-width: 1140px;
    }
}

p {
    font-size: 0.9rem;
}

.bg-azul {
    background-color: #005A9A !important;
}

.bg-gris {
    background-color: #ECECEC !important;
}

.bg-blanco {
    background-color: #fff !important;
}

img {
    max-width: 100%;
}

.texto-azul {
    color: #005A9A !important;
}

.texto-blanco {
    color: #fff !important;
}

.texto-negro {
    color: #000 !important;
}

.subtitulo {
    display: flex;
    align-items: baseline;
    color: #005A9A;
    margin-bottom: 2rem;
}

.subtitulo h2 {
    text-transform: uppercase;
    margin-right: 1rem;
}

.subtitulo p {
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
}

.bg-azul .subtitulo {
    color: #fff;
}

.container-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container-bg .row {
    height: 100%;
    margin: 0 !important;
}

.bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

section {
    position: relative;
}

section .seccion {
    position: absolute;
    left: 1.8rem;
    top: 10rem;
    width: 1.3rem;
    z-index: 20;
}

section .seccion img {
    max-width: 100%;
}

section .container {
    padding-top: 10rem;
    padding-bottom: 10rem;
}


#site-header {
    padding-top: 1.2rem;
    padding-bottom: 1.5rem;
    background-color: #fff;
    z-index: 999;
    position: relative;
}

#site-header .navbar-brand img {
    max-width: 215px;
}

#site-header .navbar-light .navbar-nav .nav-link {
    color: #005A9A;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    position: relative;
    margin-left: 1rem;
    font-size: 0.9rem;
}


#site-header .navbar-light .navbar-nav .nav-link:after {
    content: "";
    position: absolute;
    width: 0%;
    bottom: 0rem;
    left: 5%;
    height: 2px;
    background-color: #BFBFBF;
    -webkit-transition: width 0.2s ease-out;
    -moz-transition: width 0.2s ease-out;
    -o-transition: width 0.2s ease-out;
    transition: width 0.2s ease-out;
}

#site-header .navbar-light .navbar-nav .nav-link:hover:after {
    width: 90%;
}

#site-header .navbar-light .navbar-nav .active > .nav-link:after {
    content: "";
    position: absolute;
    width: 90%;
    bottom: 0rem;
    left: 5%;
    height: 2px;
    background-color: #005A9A;
}


.content {
    padding: 0;
}

.sticky,
.interna #site-header {
    position: fixed !important;
    top: 0;
    width: 100%;
}

.sticky + .content {
    padding-top: 102px;
}

#home main {
    width: 100%;
    height: 100vh;
    position: relative;
}

#home main:after {
    position: absolute;
    content: "";
    bottom: -8rem;
    height: 8rem;
    background-color: #005A9A;
    width: 100%;
    left: 0;
}

.swiper-wrapper {
    background-color: #000;
}

#home main .button-scroll {
    position: absolute;
    bottom: 4rem;
    width: 6rem;
    height: 6rem;
    left: calc(50% - 3rem);
    z-index: 140;
    -webkit-transition: transform 0.2s ease-out;
    -moz-transition: transform 0.2s ease-out;
    -o-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
}

#home main .button-scroll:hover {
    transform: scale(1.1);
}

#home main .swiper-container {
    height: 100vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#home main .swiper-slide {

    padding-bottom: 8rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home main .swiper-slide:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 90, 154, 0.28);
}


#home main .swiper-container .contenido {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    top: 10rem;
}

#home main .swiper-container .contenido img {
    margin-bottom: 5rem;
    position: relative;
    z-index: 15;
    max-width: 250px;
}

#home main .swiper-container .frase {
    position: relative;
    z-index: 15;
    color: #fff;
    max-width: 900px;
}

#home main .swiper-container .frase p {
    font-size: 2.1rem;
    line-height: 3rem;
    padding-right: 1rem;
    position: relative;
    text-align: center;
}

.submain p {
    color: #fff;
    font-family: 'Raleway', sans-serif;
}

p.titulo {
    font-family: 'Gelasio', serif;
    font-size: 1.8rem;
    line-height: 2.4rem;
}

#home section#nosotros {
    padding-top: 0;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

section#nosotros:before {
    background-color: #BFBFBF;
}

#nosotros .bg-azul {
    position: relative;
}


#nosotros .container-bg .bg-azul:before {
    content: "";
    position: absolute;
    left: -3rem;
    top: 0;
    width: 3rem;
    height: 100%;
    background-color: #005A9A !important;
}

section#home-lineas-de-cobertura:before {
    background-color: #BFBFBF;
}

#nuestros-ejes:before,
section#coberturas:before,
section.submain:before,
section.submain-cita:before,
section.msj-enviado:before {
    background-color: #005A9A;
}

#nuestros-ejes .eje {
    position: relative;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

#nuestros-ejes .eje h2 {
    margin-bottom: 2rem;
}

#nuestros-ejes .eje p {
    font-family: 'Raleway', sans-serif;
    text-align: left;
    max-width: 100%;
}

.lineas-wrap,
.servicios-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lineas-wrap .linea {
    width: calc(50% - 1.5rem);
    margin-bottom: 2rem;
    height: 0;
    padding-bottom: 40%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lineas-wrap .linea:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 90, 154, 0.38);
}

.lineas-wrap img.icono {
    position: absolute;
    max-width: 70px;
    max-height: 70px;
    left: 3rem;
    top: 3rem;
    z-index: 10;
}

.lineas-wrap span {
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.5rem;
    z-index: 10;
}

.lineas-wrap .linea .caracteristicas {
    opacity: 0;
    user-select: none;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 90, 154, 0.92);
    display: flex;
    align-items: flex-start;
    padding: 2rem 2rem 1rem 2rem;
    -webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

.lineas-wrap .linea .caracteristicas ul {
    color: #fff;
    font-family: 'Raleway', sans-serif;
}

.lineas-wrap .linea .caracteristicas img.icono {
    position: absolute;
    max-width: 45px;
    max-height: 45px;
    bottom: 1rem;
    right: 2rem;
    left: auto;
    top: auto;
}

section#home-servicios:before {
    background-color: #fff;
}

.servicios-wrap .servicio {
    position: relative;
    background-color: #005A9A;
    width: calc(33% - 2rem);
    margin-bottom: 3rem;
    height: 15em;
    position: relative;
    padding: 1.8rem;
    display: flex;
    align-items: flex-end;
    color: #fff;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.servicios-wrap .servicio p {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    max-width: 85%;
}

.servicios-wrap .servicio:last-child {
    opacity: 0;

}

/* .servicios-wrap .servicio:hover {
    background-color: #005A9A;
    color: #fff;
} */

.servicios-wrap .servicio .icono {
    position: absolute;
    top: 25px;
    left: 25px;
}

section#home-cifras:before {
    background-color: #005A9A;
}

#home-cifras iframe {
    border: none;
    width: 100%;
    height: 30rem;
}

#home-cifras .cifra-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 2rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

#home-cifras .cifra-cont .cifra {
    position: relative;
}

#home-cifras .cifra-cont .cifra:before {
    content: "";
    position: absolute;
    height: 80%;
    width: 1px;
    left: -1.5rem;
    top: 10%;
    background-color: #005A9A;
}

#home-cifras .cifra .numero {
    font-size: 4rem;
    line-height: normal;
    margin-bottom: 0.2rem;
}

#home-cifras .cifra .sust {
    font-size: 1.1rem;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.15rem;
}

section#aseguradoras:before {
    background-color: #ECECEC;
}

#aseguradoras .aseguradoras-wrap {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#aseguradoras .aseguradoras-wrap .aseguradora {
    flex: 1 0 21%;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#aseguradoras .aseguradoras-wrap .aseguradora img {
    max-width: 175px;
    max-height: 120px;
}

footer #mapa {
    width: 100%;
    height: 40rem;
    position: relative;
}

footer #mapa iframe {
    top: 0;
    left: 5rem;
    width: calc(100% - 5rem);
    height: 40rem;
    position: absolute;
}

footer #mapa:after {
    content: "";
    position: absolute;
    top: 0;
    left: 5rem;
    width: calc(100% - 5rem);
    height: 40rem;
    background-color: #005A9A;
    z-index: 50;
    pointer-events: none !important;
    mix-blend-mode: hue;
}

footer #mapa:before {
    background-color: #fff;
    z-index: 10;
}

footer section#contacto:before {
    padding-top: 0;
}

footer #contacto:before {
    background-color: #ECECEC;
}

footer #contacto .box-1 {
    color: #fff;
    margin-bottom: 5rem;
}

footer #contacto .box-1 p {
    font-family: 'Raleway', sans-serif;
}

.formulario label {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Raleway', sans-serif;
}

.formulario label input,
.formulario label textarea {
    width: 100%;
    background: none;
    border: solid 1px #fff;
    border-radius: 3px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    padding-left: 0.5rem;
}

.formulario label input {
    border-radius: 0;
    border: none;
    border-bottom: solid 1px #fff;
}

.formulario label textarea {
    min-height: 10rem;
}

.formulario .btn-submit {
    background: none;
    border: solid 1px #fff;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.05rem;
    padding-left: 2rem;
    padding-right: 2rem;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.formulario .btn-submit:hover {
    background-color: #fff;
    color: #005A9A;
}
#my-form-status {
    display: none;
font-size: 1.2rem;
    background-color: white;
    border-radius: 5px;
    color: #005A9A;
    padding: 5px;
    }

footer .contacto-datos .dato {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

#footer-bottom {
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer-bottom p {
    margin-bottom: 0;
}

#footer-bottom p a {
    color: inherit;
    -webkit-transition: color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
}

#footer-bottom p a:hover {
    text-decoration: none;
    color: #005A9A;
}

/* INTERNAS */

.interna main {
    height: 70vh;
    margin-top: 8rem;
    background-color: gray;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.interna main:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 90, 154, 0.4);
}

.interna main .titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.interna main .titulo h1 {
    text-align: center;
    color: #fff;
    font-size: 3rem;
    line-height: 3rem;
}

.interna main .titulo h2 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
}

/* QUIENES SOMOS */

#quienes-somos .submain:before {
    background-color: #BFBFBF;
}

#como-operamos:before {
    background-color: #ececec;
}

#como-operamos p {
    font-family: 'Raleway', sans-serif;
    color: #005A9A;
    margin-bottom: 1rem;
}

.cita {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.cita p {
    position: relative;
    font-family: 'Gelasio', serif !important;
    font-size: 2.5rem;
    color: #005A9A;
    max-width: 1200px;
    margin: auto;
}

#home .cita p {
    font-size: 1.8rem;
}


/* COBERTURAS */

#coberturas #lineas:before {
    background-color: #fff;
}

.lineas-wrap .linea:hover .caracteristicas {
    opacity: 1;
}

section.submain-cita .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* SERVICIOS */

#servicios #serv:before {
    background-color: #fff;
}

#servicios #serv-modo-de-trabajo:before {
    background-color: #BFBFBF;
}

#serv-modo-de-trabajo .smdt-header {
    position: relative;
    height: 35rem;
    background-image: url(../img/13390.jpg);
    background-position: center;
    background-attachment: fixed;
    padding-bottom: 5rem;
}


#serv-modo-de-trabajo .smdt-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.31);
    height: 100%;
}

ul.smdt-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 6rem;
    padding-bottom: 4rem;
    margin-bottom: 5rem;
    max-width: 1000px;
}


ul.smdt-menu li {
    display: flex;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
}

ul.smdt-menu li a {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.05rem;
    color: #fff;
    position: relative;
    text-decoration: none;
}


ul.smdt-menu li a:after {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -0.2rem;
    background-color: #fff;
    left: 0;
    -webkit-transition: width 0.2s ease-out;
    -moz-transition: width 0.2s ease-out;
    -o-transition: width 0.2s ease-out;
    transition: width 0.2s ease-out;
}

ul.smdt-menu li a:hover:after {
    width: 100%;
}

ul.smdt-menu li.dot {
    font-weight: 800;
    font-size: 2rem;
    color: #005A9A;
}

.smdt-cajas {
    padding-left: 5rem;
    padding-right: 5rem;
}

.smdt-cajas .caja {
    margin-bottom: 5rem;
    scroll-margin-top: 8rem;
}

.smdt-cajas .caja .texto {
    display: flex;
    flex-direction: column;
}

.smdt-cajas .caja p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Raleway', sans-serif;
    max-width: 650px;
}


.smdt-cajas .caja p.subtitulo {
    font-size: 1.2rem;
    font-family: 'Gelasio', serif;
    margin-bottom: 1rem;
}


.smdt-cajas .caja img {
    width: 100%;
}

section.msj-enviado {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msj-enviado p {
    font-size: 2.3rem;
    max-width: 750px;
    text-align: center;
}

/* QUIENES SOMOS */


@media (min-width: 768px) {

    section:before {
        content: "";
        position: absolute;
        width: 5rem;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 10;
    }

    .container {
        max-width: 70%;
    }


    .smdt-cajas .caja:nth-child(odd) .texto {
        padding-left: 5%;
    }

    #serv-modo-de-trabajo {
        padding-bottom: 2rem;
    }

}

@media (max-width: 768px) {

    .navbar-nav {
        padding-top: 3rem !important;
    }

    #site-header .navbar-light .navbar-nav .nav-link {
        display: inline-block;
        margin-bottom: 1rem;
    }

    #site-header .navbar-light .navbar-nav .active > .nav-link:after {
        left: 0;
        width: 100%;
    }

    #site-header .navbar-light .navbar-nav .nav-link {
        margin-left: 0;
    }

    h2 {
        font-size: 1.8rem;
    }

    p.titulo {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .mobile-reverse {
        flex-direction: column-reverse;
    }

    #site-header .navbar-brand img {
        max-width: 160px;
    }

    #home main .button-scroll {
        width: 4rem;
        height: 4rem;
        left: calc(50% - 2rem);
        z-index: 10;

    }

    #home main .swiper-container .frase p {
        font-size: 1.5rem;
        line-height: 1.9rem;
    }

    #home main .swiper-container .contenido {
        padding-left: 5%;
        padding-right: 5%;
    }

    #home main .swiper-container .contenido img {
        margin-bottom: 2rem;
        max-width: 200px;
    }


    .subtitulo {
        display: flex;
        flex-direction: column;
    }

    .subtitulo h2 {
        text-transform: uppercase;
        margin-right: inherit;
        font-size: 1.6rem;
    }

    .subtitulo p {
        text-transform: uppercase;
        font-family: 'Raleway', sans-serif;
        font-weight: 600;
        font-size: 1rem;
    }

    section .seccion {
        display: none;
    }

    section .container {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    section#nosotros .container {
        padding-top: 2rem;
    }

    #nosotros .container-bg .bg-img {
        height: 15rem;
        padding: 0;
    }

    #nosotros .container .bg-azul {
        margin-top: 10rem;
        padding-top: 3rem;
    }

    #home section#nosotros.submain {
        height: 45rem;
    }

    #home section#nosotros.submain .container-bg .bg-azul {
        height: 30rem !important;
    }

    #nosotros.submain p.titulo {
        padding-left: 0;
    }

    .cita {
        margin-top: 3rem;
        text-align: center;
        align-items: center;
    }

    .cita p {
        font-size: 1.8rem;
        line-height: 2.4rem;
    }


    .lineas-wrap .linea {
        padding-bottom: 100%;
    }

    .lineas-wrap .linea,
    .servicios-wrap .servicio {
        width: 100%;
    }

    .lineas-wrap img.icono {
        top: 1rem;
        left: 1rem;
    }

    .lineas-wrap span {
        bottom: 1rem;
        left: 1rem;
    }

    .lineas-wrap .linea .caracteristicas {
        padding: 1rem;
    }

    .lineas-wrap .linea .caracteristicas ul {
        padding-left: 1rem;
        font-size: 0.9rem;
    }

    section#home-servicios {
        padding-bottom: 4rem;
    }

    .servicios-wrap .servicio {
        height: auto;
        padding-top: 4rem;
        padding-bottom: 2rem;
        padding-left: 2rem;
    }

    .servicios-wrap .servicio:last-child:after {
        width: 100%;
        height: 15rem;
    }

    #nuestros-ejes {
        height: 48rem;
    }

    #nuestros-ejes .container-bg .col-md-8 {
        height: 33rem;
    }


    #nuestros-ejes .container-bg .bg-img {
        height: 15rem;
    }

    #nuestros-ejes .eje {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 2rem;
    }

    #nuestros-ejes .eje h2 {
        margin-bottom: 1rem;
    }

    #home-cifras .cifra-cont {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    #home-cifras .cifra .numero {
        font-size: 2rem;
    }

    #aseguradoras .aseguradoras-wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-top: 0;
    }

    #aseguradoras .aseguradoras-wrap .aseguradora {
        flex: initial;
        width: 40%;
        margin-top: 1rem;
    }

    #aseguradoras .aseguradoras-wrap .aseguradora img {
        max-width: 100%;
    }

    footer #mapa {
        background-position: 75%;
    }


    #footer-bottom {
        flex-direction: column;
    }

    #footer-bottom p {
        margin-bottom: 2rem;
    }

    .interna main .titulo h1 {
        font-size: 2.2rem;
        line-height: 2.2rem;
    }

    .interna main .titulo h2 {
        font-size: 1.5rem;
    }

    #nuestros-ejes .col-md-6 {
        margin-bottom: 3rem;
    }


    section.submain-cita .container {
        padding-top: 0;
        padding-bottom: 3rem;
    }

    .submain {
        height: 35rem;
    }

    .submain .container-bg .bg-img {
        height: 15rem;
    }

    .submain .container-bg .bg-azul {
        height: 20rem;
    }

    .submain p.titulo {
        padding: 1rem;
    }

    #serv-modo-de-trabajo {
        margin-top: 5rem;
    }

    #serv-modo-de-trabajo .smdt-header {
        height: 25rem;
        background-position: top right;
    }

    ul.smdt-menu {
        flex-direction: column;
        align-content: center;
    }

    ul.smdt-menu li.dot {
        display: none;
    }

    ul.smdt-menu li a {
        text-align: center;
    }

    .smdt-cajas {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }


    .smdt-cajas .caja:nth-child(even) {
        flex-direction: column-reverse;
    }

    .smdt-cajas .caja .texto {
        margin-bottom: 1.5rem;
    }
}



/* ESTILOS INTERNET EXPLORER */

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        max-width: 100%;
    }

    .smdt-cajas .caja p {
        width: 100%;
    }

    footer #mapa:after {
        content: none;

    }

}
