/* Parametros */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Montserrat:ital,wght@0,100;0,300;0,400;0,600;1,700;1,900&family=RocknRoll+One&display=swap');   
/* Normalizadores */
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
h1{
    font-size: 32px;
    font-weight: 400;
    font-family: 'RocknRoll One', sans-serif;
}
h2{
    font-size: 22px;
    font-weight: 400;
    font-family: 'RocknRoll One', sans-serif;
}
h3{
    font-size: 20px;
    font-family: 'RocknRoll One', sans-serif;
}
p{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px
}
button{
    background-color: transparent;
    border: none;
    /*flex*/
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
a{
    text-decoration: none;
    /*flex*/
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Reglas recursivas */

/* Reglas generales */

header{
    width: 100%;
    max-width: 1280px;
    height: 190px;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    padding: 25px 4% 0px;
    z-index: 1000;
}

.logo{
    width: 40%;
    height: 40px;
    /*flex*/
    display: flex;
    justify-content: flex-start;
}
.logo img{
    height: 120%;
}
/* Marco */
.marco{
    width: 100%;
    max-width: 1920px;
    margin: auto;
    background-color: #dbd9d9;
}
.logo_politicas{
    background-color: #1C3F7B;
    /*flex*/
    display: flex;
    justify-content: space-between;
    align-content: center;
}
.logo_politicas img{
    width: 40%;
    height: 170px;
    padding-left: 45px;
}
.logo_politicas h5{
    color: whitesmoke;
    font-size: 70px;
    margin: auto;
    padding-top: 20px;
    
}
.politicas{
    margin: 0px 10%;
    font-size: 20px;
    padding-top: 10px;
    text-align: justify;
    padding-bottom: 10%;
}
.politicas h3{
    padding-top: 25px;
    font-size: 28px;
    text-align: left;
    color: #1C3F7B;
}
/* Reglas Especificas */

.WAW{
    width: 100%;
    height: 650px;
    background: linear-gradient(144deg, rgba(4, 45, 140, 0.285) 0%, rgba(18, 77, 97, 0.353) 98%), url(../img/Bodas-Huatulco-Trash-The-Dress.jpg);
    background-size: cover;
    background-position: center;
    color:whitesmoke;
    padding-top: 250px;
    padding-left: 5%;
    
}
.WAW_content h1{
    color:whitesmoke;
    height: 40px;
    /*flex*/
    display: flex;
    align-items: center;
}
.WAW_content h1::before{
    content: "";
    display: block;
    width: 4px;
    height: 85px;
    margin-right: 10px;
    background-color: #1C3F7B;
}
.WAW_content p{
    margin: 30px 0px;
    line-height: 1.8;
    font-size: 14px;
}
.WAW_content img{
    margin: 0px 10px;
}
.WAW_content :first-child{
    margin-left: 0px;
}
.rrss{
    width: 100%;
    height: 50px;
    padding: 7% 0px;
    /*flex*/
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.rrss a{
    width: 35px;
    height: 35px;
    color: #8eb7d5;
    margin: 0px 5px;
    border-radius: 50%;
    border: 3px solid #8eb7d5;
}
.rrss a:hover{
    color: whitesmoke;
    border: 3px solid whitesmoke;
}

/*  responsive */
/* Media Tablet (768px) */
@media (min-width: 768px){
    /* Normalizadores */
    h1{
        font-size: 48px;
    }
    h2{
        font-size: 35px;
    }
    p{
        font-size: 16px;
    }
    /* Reglas Generales */

    /* Reglas Especificas */
   
    /* Media Desk (1280px) */
    @media (min-width: 1280px){
     /* Normalizadores */
        h1{
            font-size: 80px;
        }
        h2{
            font-size: 45px;
        }
        p{
            font-size: 18px;
        }
        /* Reglas Generales */
 
        /* Reglas Especificas */
        .WAW{
            height: 770px;
            padding: 190px 0px; 
        }
        .WAW_content{
            padding-left: 5%;
        }
        .WAW_content h1::before{
            height: 95px;
        }
        .WAW_content p{
            margin: 60px 0px;
            font-size: 22px;
        }
        .rrss a{
            width: 50px;
            height: 50px;
        }

    }
}