:root {
    --red-cvcv: #B62F24;
}


.max-width {
   max-width: 2048px;
}

a {
   color: #191E25;
   font-weight: 600;
   transition: 300ms;
}

a:hover {
   color: var(--red-cvcv);
}

.logo-box {
    width: 150px;
}

button:focus {
    outline: var(--red-cvcv) auto 1px;
}

.color-red-cvcv {
   color: var(--red-cvcv);
}

.bg-red-cvcv {
    background-color: var(--red-cvcv);
}

.border-red-cvcv {
    border: 1px solid var(--red-cvcv);
}

.w-90 {
    width: 90% !important;
}

.h-80-200 {
    height: calc(80vh + 200px) !important;
}

/**************** Menu Header ****************/
 header {
    z-index: 2;
    padding: 0.5rem 3rem;
}

.portal header {
    margin-top: 2rem;
    border-radius: 10px;
    max-width: calc(100% - 30px);
}

.site header {
    max-width: 100%;
}


.btn-cvcv {
    background-color: var(--red-cvcv);
    color: #FFFFFF;
 }

 .btn-cvcv:hover {
    background-color: #FFFFFF;
    color: var(--red-cvcv);
    border-color: var(--red-cvcv);
 }

.banner-fixed {
    position: relative;
    z-index: 1;
    margin-top: -104px;
    padding-top: 130px;
    width: 100%;
    min-height: calc(100vh - 100px);
    padding-bottom: 150px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0, rgba(37, 180, 255, 0.2) 70%), url('../../../img/portal/banner/maos-unidas.webp');
    background-size: cover;
    background-attachment: fixed;
}

.banner-fixed-first-brother {
    z-index: 1;
    margin-top: -150px;
}

.login-container {
	height: 480px;
}

footer {
    background: #F5F5F5;
}

footer .contacto {
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    flex-grow: 0.5;
}

footer .contacto i {
    color: #9D0000;
    margin-inline: 1rem;
    font-size: 1.25rem;
}

footer .news-letter {
    width: auto;
    flex-grow: 1;
}

footer div#social-network {
    font-size: 1.5rem;
}

footer .news-letter div#social-network a {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 1rem;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 3px 2px 20px rgba(17, 12, 46, 0.15);
    transition: color 300ms;
}

footer div#social-network a:nth-child(1){
    color: #036EE4;
}

footer div#social-network a:nth-child(2){
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer div#social-network a:nth-child(3){
     color: #FF0000;
 }


footer .news-letter div#send-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem
}

footer #send-container h3 {
    font-weight: 600;
    font-size: 24px;
    color: #9D0000;
}

footer #send-container .text-container {
    width: 100%;
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px
}

footer #send-container input {
    border: none;
    width: 100%;
    outline: none;
    font-weight: 500;
}

footer #send-container button {
    background: #AF0000;
    border-radius: 10px;
    font-weight: 600;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

footer #send-container p {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
}

footer .links-container a {
    font-weight: 500;
    font-size: 0.875rem;
}

footer p#copy-right {
    border-top: 1px solid #D2D2D2;
    font-weight: 500;
    font-size: 1.25rem;
    text-align: center;
    color: #9D0000;
    padding-top: 1rem;
}



/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .w-sm-100 {
        width: 100% !important;
    }

    .w-sm-90 {
        width: 90% !important;
    }

    nav.show {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px !important;
        position: absolute;
        width: 100%;
        top: 65px;
        right: 0;
        background: rgba(255, 255, 255, 0.9);
        padding: 1rem;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    nav.show a {
        display: flex;
        justify-content: center;
        align-content: center;
        margin: 0.5rem 0;
        width: 100%;
        background-color: var(--red-cvcv);
        color: #FFFFFF;
        border-radius: 5px;
    }
 }

 /*
// Large devices (desktops, less than 1200px)*/
@media (min-width: 992px) {
    .h-md-auto {
        height: auto !important;
    }
 }
