/* RESET CSS */
*,
*:focus,
*::after,
*::before {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    cursor: pointer;
}

button {
    border: none;
}

html,
body {
    height: 100%;
}
/* -------------------------------------------- */



/* MAIN CSS */
.main-section {
    height: 100vh;
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(255,255,255,1) 35%, rgba(151,140,127,1) 100%);
    padding: 120px 0;
}

.main-section header nav img {
    max-width: 150px;
    object-fit: cover;
}


.center-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 80%;
}

.container {
    max-width: 100%;
    padding: 0 0;
    margin: 0 auto;
}

.main-section ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 5vw;
    gap: 5vw;
}

.main-section ul li {
    display: flex;
    width: 15vw;
    height: calc(15vw);
    padding: 0 0;
    margin-top: 5vw;
}
.main-section ul li a.link-flex-box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
}
.main-section ul li a.link-flex-box p{
    font-size: 2.5vw !important;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    text-wrap: nowrap;
    position: absolute;
    bottom: -5vw;
}
.main-section ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    border: 1px solid #424242;
    padding: 20px 10px;
    color: #ffffff;
}

.main-section ul li img {
    width: 7vw;
    height: 7vw;
    object-fit: cover;
}
.main-section ul li img.whatsapp-image {
    width: 7.5vw;
    height: 7.5vw;
    object-fit: cover;
}
.main-section ul li img.map-image {
    width: 7vw;
    height: 7vw;
    object-fit: cover;
}
/* -------------------------------------------- */
@media screen and (min-width: 768px) {
    .main-section ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 20px;
        gap: 20px;
    }
    .main-section ul li img {
        width: 40px;
        height: 40px;
        object-fit: cover;
    }
    .main-section ul li img.whatsapp-image {
        width: 45px;
        height: 45px;
        object-fit: cover;
    }
    .main-section ul li img.map-image {
        width: 40px;
        height: 40px;
        object-fit: cover;
    }
    .main-section ul li {
        display: flex;
        width: 100px;
        height: 100px;
        padding: 0 0;
        margin-top: 60px;
    }
    .main-section ul li a.link-flex-box p{
        font-size: 14px !important;
        font-family: Roboto, sans-serif;
        font-weight: 500;
        text-wrap: nowrap;
        position: absolute;
        bottom: -30px;
    }
}
/* -------------------------------------------- */