* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Opificio";
    font-weight: 700;
}

html {
    height: 100%;
}

body {
    display: grid;
    min-height: 100%;
    grid-template-rows: 20% 1fr 10%;
}

.titulo {
    color: #161c5f;
}

.titulo span {
    color: #7baebc;
}

.descripciones {
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
}

.eslogans {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eslogan {
    font-family: Helvetica !important;
    font-weight: bold;
    text-align: center;
    color: #003169;
}

.pos-eslogan {
    font-family: Helvetica !important;
    font-weight: bold;
    color: #666666;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px;
}

header img {
    margin-top: 100px;
    max-height: 350px;
}

main {
    z-index: 999;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    margin-top: 150px;
    gap: 55px;
    align-items: center;
}

main h1 {
    font-size: 80px;
}

.buttons {
    display: flex;
    margin-top: 70px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 60px;
}

.button {
    position: relative;
    margin: auto;
    transition: all 0.2s ease;
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    min-width: 675px;
    min-height: 140px;
    border-radius: 100px;
    cursor: pointer;
}

.button span {
    font-size: 50px;
    text-align: left;

    color: white;
}

.button-begin {
    background-color: #003169;
}

.button-begin span {
    margin-left: -100px;
}

.button-begin svg {
    margin-left: 150px;
}

.button-tour {
    background-color: #015794;
}

.button span {
    position: relative;
    font-size: 50px;
    line-height: 18px;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    vertical-align: middle;
}
.button svg {
    position: relative;
    top: 0;
    margin-left: 100px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: white;
    stroke-width: 2;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.button-begin svg {
    right: -99px;
}
.button-begin:hover:before {
    width: 100%;
    background-color: #223b75;
}

.button-tour:hover:before {
    width: 100%;
    background-color: #015794;
}

.button:hover span {
    color: white;
}

.button:hover svg {
    transform: translateX(0);
    stroke: white;
}
.button:active {
    transform: scale(0.96);
}

/* .button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    min-width: 675px;
    min-height: 140px;
    border-radius: 100px;
    font-size: 50px;
    cursor: pointer;
}

.button-begin {
    background-color: #223b75;
    color: white;
}

.button-tour {
    background-color: #015794;
    color: white;
    transition: 0.3s ease background-color;
} */

/* .button-begin:hover {
    background-color: #003169;
    color: #f7f9fb;
}

.button-tour:hover {
    background-color: transparent;
    border: 5px solid #003169;
    color: black;
} */

main p {
    font-size: 30px;
}

main p a {
    text-decoration: none;
    margin-left: 5px;
    cursor: pointer;
    color: #003169;
}

.hero_area {
    position: relative;
}

.waves {
    position: absolute;
    width: 100%;
    height: 100vh;
    min-height: 100px;
    max-height: 150px;
    bottom: 0;
    left: 0;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/*Shrinking for mobile*/

@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
}
