body {
    background-color: #25388d;
    text-align: center;
    padding: 30px 15px 60px 15px;
    font-family: 'Roboto', sans-serif;
}

img {
    max-width: 100% !important;
}

img.logo {
    width: 200px;
}

p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

.slogan {
    font-family: "Marck Script", cursive;
    color: #efdb39;
    font-size: 42px;
    line-height: 42px;
    letter-spacing: -2px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.item {
    /* border: #f00 1px solid; */
    margin-bottom: 1rem;
    text-align: center;
}

.item a {
    /* border: #0f0 1px solid; */
    display: inline-flex;
    justify-content: start;
    align-items: center;
    color: #fff;
    text-decoration: none;
    gap: 10px;
    transition: all .2s;
    width: 272px;
    height: 75px;
}

.item a:hover {
    color: #efdb39;
}

.item a span {
    font-size: 20px;
    font-weight: 300;
    text-align: start;
}

.icon {
    border: #efdb39 1px solid;
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.icon img {
    width: 32px;
}

/* SM */
@media (min-width: 576px) {

    .icon {
        width: 80px;
        height: 80px;
    }

    .item a {
        width: 380px;
        gap: 20px;
    }

    .item a span {
        font-size: 26px;
    }

    .icon img {
        width: 42px;
    }

    .icon.flor img {
        width: 60px;
    }
}

/* MD */
@media (min-width: 768px) {

    body {
        padding: 30px 30px 60px 30px;
    }

    img.logo {
        width: 300px;
    }

    .icon {
        width: 100px;
        height: 100px;
    }

    .icon img {
        max-width: 100%;
    }

    .item a {

        height: 105px;
    }

    .item a span {
        font-size: 30px;
    }

    .slogan {
        font-size: 50px;
        margin-top: 35px;
        margin-bottom: 35px;
    }
}

/* LG */
@media (min-width: 992px) {

}