@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
body{
	margin: 0;
	font-family: 'Montserrat', sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    flex: 1;
}
section{
    padding: 30px 40px;
    margin: 0 auto;
	max-width: 1266px;
}
.one-seguros{
    background: url(../img/fondo-auto-gmm-vida-desk-01.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}
.one-seguros h2{
    font-size: 18px;
    color: #fff;
}
.one-seguros h3{
    font-size: 12pt;
    margin: 0 0 5px;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}
.grid2-seguros{
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
}
.one-seguros .grid2-seguros{
    align-items: center;
}
h1{
    margin: 0 0 15px;
    font-size: 42px;
}
h2{
    font-size: 26pt;
    margin: 0;
    font-weight: 400;
    color: #00345F;
}
h2 strong{
    color: #027BE4;
}
h4{
    font-size: 12pt;
    margin: 0 0 10px;
}
p{
    font-size: 11pt;
    margin: 0;
}
.center-seguros{
    text-align: center;
}
.xs{
    font-size: 9pt;
}
.xss{
    font-size: 7pt;
}
form{
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 10px;
}
.input-group{
    height: 40px;
    margin-bottom: 15px;
}
.input-group input, .input-group select {
    width: -webkit-fill-available;
    width: -moz-available;
    padding: 18px 10px 6px 10px;
    border: none;
    border-radius: 10px;
    background: white;
    font-size: 11pt;
    color: #333;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.input-group input::placeholder {
  color: #999;
}
.input-group input:focus, .input-group select:focus  {
  outline: 2px solid #5a2ef5;
}
.input-group label {
    position: relative;
    top: -45px;
    left: 10px;
    font-size: 7pt;
    color: #5a2ef5;
    z-index: 2;
    font-weight: 500;
}
.btn-rosa{
    width: 200px;
    background: #DA0080;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 14pt;
    height: 40px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    margin: 15px auto 0;
    text-align: center;
}
.btn-rosa:hover{
    background: #FA00C8;
}
.grid3-seguros{
    display: grid;
    grid-template-columns: 32% 32% 32%;
    justify-content: space-between;
}
.grid4-seguros{
    display: grid;
    grid-template-columns: 22% 22% 22% 22%;
    justify-content: space-between;
    grid-gap: 35px 0;
}
.footer-seguros{
    background: #027BE4;
}
.footer-seguros section{
    display: flex;
    justify-content: space-between;
    padding: 10px 40px;
    grid-gap: 60px;
    color: #fff;
    align-items: center;
}
.footer-seguros p{
    font-size: 9pt;
}
.footer-seguros a{
    font-size: 9pt;
    color: #fff;
}
.movil-seguros{
    display: none;
}
@media(max-width: 820px){
    .movil-seguros{
        display: block;
    }
    .desk-seguros{
        display: none;
    }
    section {
        padding: 20px;
    }
    .grid2-seguros, .grid3-seguros {
        grid-template-columns: 100%;
    }
    h1 {
        font-size: 22pt;
    }
    .one-seguros p {
        font-size: 12pt;
    }
    h2 {
        font-size: 16pt;
    }
    .grid4-seguros {
        width: -webkit-fill-available;
        width: -moz-available;
        grid-template-columns: 48% 48%;
        grid-gap: 35px 0;
    }
    .footer-seguros section {
        padding: 10px 20px;
        grid-gap: 35px 0;
        flex-wrap: wrap;
    }
}