html {
    overflow-x: hidden;
    overflow-y: auto;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: 'Outfit', sans-serif;

    margin: 0;
    padding: 0;

    color: #fff;
    background: #fff;
}

/**	Coming Soon
 *************************************************** **/
.comingsoon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;
    height: 100dvh;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    gap: 30px;

    background-color: #fff;

    width: 100%;
    height: 55dvh;
}

.header img {
    width: 500px;
    height: auto;
}

.header h2 {
    background-color: #0487CB;

    font-weight: 700;

    margin: 0;
    padding: 5px 60px;

    border-radius: 30px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background-color: #0487CB;

    background-image: url('./textura.png');

    width: 100%;
    height: 45dvh;
}

.products {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    min-width: 910px;

    background-color: #049349;

    margin: 0;
    margin-top: -150px;
    margin-bottom: 50px;

    padding: 30px 100px;

    border-radius: 100px;
}

.products * {
    margin: 0;
}

.products h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.products .list {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 80px;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    min-width: 910px;

    background-color: #fff;

    margin: 0;

    padding: 30px 100px;

    border-radius: 100px;
}

.contact .content {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 80px;
}

.contact .content .line1 {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 40px;
}

.contact .content .line2 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact .content .right {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.contact * {
    color: #0487CB;

    margin: 0;

    text-align: left;
}

.contact h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.contact svg {
    fill: #0487CB;

    width: 20px;
    height: auto;

    svg {
        color: #0487CB;
    }
}

.contact a {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.signature {
    width: auto;
    height: 20px;

    margin-top: 40px;
}

@media only screen and (max-width: 1440px) {
    .comingsoon {
        height: auto;
    }

    .header {
        padding: 20px;
        height: 450px;
    }

    .footer {
        height: auto;
        padding-bottom: 30px;
    }

    .products {
        margin-top: -50px;
    }
}

@media only screen and (max-width: 480px) {
    .header {
        padding: 20px;
        height: 300px;
    }

    .header img {
        width: 300px;
        height: auto;
    }

    .header h2 {
        font-size: 24px;

        padding-left: 20px;
        padding-right: 20px;

        text-align: center;
    }

    .products {
        min-width: 100%;
        width: 100%;

        margin: 0;
        margin-top: 0;
        margin-bottom: 30px;

        padding: 20px;

        border-radius: 0;
    }

    .products h2 {
        font-size: 24px;
        text-align: center;
    }

    .products .list {
        flex-direction: column;

        gap: 10px;
    }

    .contact {
        min-width: 100%;
        width: 100%;

        background-color: transparent;

        margin: 0;

        padding: 20px;

        border-radius: 0;
    }

    .contact * {
        text-align: center;
    }

    .contact .content {
        flex-direction: column;

        gap: 5px;
    }

    .contact .content .line1 {
        flex-direction: column;

        gap: 5px;
    }

    .contact .content .line2 {
        flex-direction: column;

        justify-content: center;
        align-items: center;
    }

    .contact .content .right {
        justify-content: center;
        align-items: center;
    }

    .contact * {
        color: #fff;
    }

    .contact h2 {
        font-size: 24px;
        text-align: center;
    }

    .contact svg {
        fill: #fff;

        svg {
            color: #fff;
        }
    }

    .contact a {
        display: flex;
        justify-content: center;
        align-items: center;

        gap: 5px;
    }
}
