@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

:root {
    --mc: #364974;
    --header-height: 3rem;
    --hue-color: 250;
    --first-color: hsl(var(--hue-color), 69%, 61%);
    --first-color-second: hsl(var(--hue-color), 69%, 61%);
    --first-color-alt: hsl(var(--hue-color), 57%, 53%);
    --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
    --title-color: hsl(var(--hue-color), 8%, 15%);
    --text-color: hsl(var(--hue-color), 8%, 45%);
    --text-color-light: hsl(var(--hue-color), 8%, 65%);
    --input-color: hsl(var(--hue-color), 70%, 96%);
    --body-color: hsl(var(--hue-color), 60%, 99%);
    --container-color: #FFF;
    --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);
    --body-font: 'Poppins', sans-serif;
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margenes Bottom ==========*/
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
}

.footer-header {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

footer {
    color: #fff;
    background-color: var(--mc);
    position: relative;
    width: 100%;
    height: 100%;
    top: 350px;
    border-top-left-radius: 0px;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    padding-bottom: .001rem;
    margin-top: -10rem;
}

footer-links {
    color: #fff;
}

@media (max-width:960px) {

    .main {
        margin: 50px;
        display: grid;
        grid-template-columns: repeat(1, 3fr);
        grid-template-rows: 1fr 1fr;
    }

    .logo {
        grid-column: 1/3;
    }

    .contact {
        grid-column: 3/5;
    }

    .link {
        grid-column: 1/3;
    }


}

@media (max-width:660px) {
    .main {
        gap: 10px;
        margin: 0;

    }

    .icons {
        display: flex;
    }



    .row {
        grid-column: 1/4;
    }
}

.main {
    margin: 50px;
    padding-top: 20px;
    padding-bottom: 50px;
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: -20rem;

}



@media (max-width: 800px) {
    .main {
        margin: 50px;
        padding-top: 20px;
        padding-bottom: 50px;
        display: grid;
        gap: 50px;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 580px) {
    .main {
        margin: 50px;
        padding-top: 20px;
        padding-bottom: 50px;
        display: grid;
        gap: 50px;
        grid-template-columns: 1fr;
        grid-column: 1;
    }

    .contact {
        grid-column: 1/3;
    }

}

.roow {
    margin-top: 50px;
}


.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1rem;
}

.contact a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    cursor: default;
    color: white;
}

.link-des {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-des a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.link-des a:hover {
    cursor: pointer;
    transition: linear 0.3s;
}


hr {
    width: 90%;
    margin: 2px auto;
    opacity: 40%;
    border: 0.01px solid white;

}

.logo img {
    width: 200px
}