

.Welcome_footerContainer {
    background-color: #091D30;
    color: #FBFBFB;

    & h3 {
        color: #8AAED4;
    }
}

.Welcome_footerAbout a {
    position: relative;
    width: fit-content;
    font-weight: normal;
    margin-bottom: .5rem;
}

.Welcome_footerAbout a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #2E71B7;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.Welcome_footerAbout a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.Welcome_footerAbout a:hover {
    color: #2E71B7;
    transition: all .5s;
}

.Welcome_socialMediasIcons i {
    margin: 0 .8rem;
    transition: all .3s;
}

.Welcome_socialMediasIcons .instagram i:hover {
    color: #F501C0 !important;
    transition: all .3s;
}

.Welcome_socialMediasIcons .facebook i:hover {
    color: #4867AA !important;
    transition: all .3s;
}

.Welcome_socialMediasIcons .youtube i:hover {
    color: #F44336 !important;
    transition: all .3s;
}

.Welcome_footerCredits a { text-decoration: none; color: #E2B606; }

.Welcome_footerContent {

    & h5 {
        color: #C6E2FF;
    }
    
}


/* M E D I A S */

@media (max-width: 575px) {

    .Welcome_footerContent { width: 95%; }

}

@media (min-width: 576px) {

    .Welcome_footerContent { width: 70%; }

}

@media (min-width: 768px) {

    .Welcome_footerContent { width: 46rem; }

}