@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    max-width: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: aliceblue;
}

/*CUERPO*/
section {
    width: 90%;
    margin: auto;
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 32px;
    text-align: center;
    padding: 50px 0px;
}

h2 {
    text-align: left;
    padding: 20px 0px;
    font-size: 28px;
}

h3 {
    font-size: 24px;
    padding: 10px 0px;
}

h4 {
    padding: 5px 0px;
}

/*FOOTER*/
footer {
    background-color: #1c3e4b;
    color: #fff;
    text-align: center;
}

.footer_margin {
    margin: auto;
    width: 80%;
}

.footer_container {
    text-align: left;
    width: 45%;
    max-width: 100%;
    display: inline-block;
    padding: 20px;
    font-size: 14px;
    margin: auto;
    margin-bottom: 30px;
    vertical-align: text-top;
}

.footer_container h3 {
    padding: 10px 0px;
}

.footer_container li,
.footer_container p {
    line-height: 24px;

}

.footer_container a {
    color: #fff;
}

.footer_cont2 ul {
    list-style: none;
    padding: 0;
}

.footer_icon {
    width: 50px;
    height: auto;
    color: #fff;
    padding: 10px 20px 0px 0px;
    transition: all 0.5s ease 0s;
    display: inline;
}

.footer_icon:hover {
    transform: scale(1.2);
}

.footer_contact_icon {
    width: 25px;
    padding: 0px 10px 0px 0px;
}

.footer_copyright {
    text-align: center;
    padding: 20px;
    border-top: 4px solid #92b93a;
    font-size: 12px;
}

#iconup {
    padding: 10px 13px;
    background-color: #92b93a;
    position: fixed;
    right: 25px;
    bottom: 0px;
    scroll-behavior: smooth;
    transition: all 0.5s ease 0s;
    text-align: center;
    color: #fff;
    font-size: 24px;
}

#iconup:hover {
    color: #1c3e4b;
}

#iconback {
    height: 40px;
    width: 40px;
    background-color: #92b93a;
    transition: all 0.5s ease 0s;
    text-align: center;
    color: white;
    font-size: 25px;
    float: left;
    position: relative;
    padding: 2px 6px;
    top: 50px;
}

#iconback:hover {
    color: #1c3e4b;
}

/*TEXTO*/
.bold {
    font-weight: bold;
}

.link {
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.aling-left {
    text-align: justify;
}

/*Cookies*/
#cookiePopup {
    background-color: #92b93a;
    position: fixed;
    bottom: 0px;
    right: 0px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    text-align: justify;
    line-height: 1.8em;
    padding: 2em 1.4em;
    border-radius: 6px;
    transition: all 0.5s ease-in;
    color: #fff;
    z-index: 99;
}

#cookiePopup p {
    text-align: center;
    margin: 1.4em 0;
}

#cookiePopup button {
    background-color: #1c3e4b;
    border: none;
    color: #ffffff;
    font-size: 1.2em;
    padding: 1em 1.4em;
    display: block;
    position: relative;
    margin: auto;
    border-radius: 5px;
    transition: all 0.2s ease-in;
}

#cookiePopup button:hover {
    background-color: #fff;
    color: #1c3e4b;
    cursor: pointer;
}

#cookiePopup a {
    color: #1c3e4b;
    transition: all 0.2s ease-in;
    text-decoration: none;
}

#cookiePopup a:hover {
    color: #fff;
}

.hide {
    visibility: hidden;
    bottom: 0;
    right: 2em;
}

.show {
    visibility: visible;
    bottom: 2em;
    right: 2em;
}

@media (max-width: 37.5em) {
    #cookiePopup {
        width: 100%;
    }

    .hide {
        bottom: 2em;
        right: 0;
    }

    .show {
        right: 0;
        bottom: 0;
    }
}

/*Responsive*/
@media (max-width: 1060px) {
    .footer_container {
        width: 100%;
    }

    .footer_cont2 {
        margin-top: 20px;
    }
}

@media (max-width: 950px) {
    .footer_icon {
        width: 50px;
        height: auto;
        color: #fff;
        padding: 10px 10px;
    }
}