﻿#footer {
    position: relative;
    border-top:5px solid #1509b5;
    overflow: hidden;
}

#footer .footer-wrapper {
    background-color: white;
    padding: 3rem 4rem;
    /*border-radius: 20px;*/
    box-shadow: 0 5px 10px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    

}


#footer .footer-wrapper-2 {
    display: flex;
    justify-content: space-between;
}


#footer .footer-wrapper .footer-left-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
}


#footer .footer-wrapper .footer-left-side img {
    width: 90%;
}



#footer .footer-wrapper .footer-left-side .footer-social-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
}

#footer .footer-wrapper .footer-left-side .footer-social-links a {
    color: rgb(58, 58, 58);
    text-decoration: none;
    font-size: 1.5rem;
    cursor: pointer;
}



#footer .footer-wrapper .footer-right-side {
    display: flex;
    gap: 10rem;
}


#footer .footer-wrapper .footer-right-side .footer-links h3 {
    margin-bottom: 1rem;
}


#footer .footer-wrapper .footer-right-side .footer-links .footer-link {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


#footer .footer-wrapper .footer-right-side .footer-links .footer-link a {
    text-decoration: none;
    color: #444;
    font-size: 0.9rem;
}


#footer .footer-wrapper .footer-right-side .footer-links .footer-link button {
    background-color: transparent;
    border: 2px solid #444;
    padding: 1rem;
    cursor: pointer;
    color: #444;
    transition: all 0.2s;
}

#footer .footer-wrapper .footer-right-side .footer-links .footer-link button:hover {
    color: black;
    border-color: black;
}


#footer .footer-bottom {
    border-top: 2px solid #d2d2d2;
    padding-top: 0.6rem;
    background-color:#1509b5;
    color:white;
    text-align:center;
}

#footer .footer-bottom span {
    font-size: 0.9rem;
    color: #fff;
    text-align:center;
}


.fog {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top,
            rgba(255, 255, 255, 1),
            rgba(255, 255, 255, 0));

    z-index: 2;
}


.big-text {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25rem;
    z-index: 1;
    color: #EEEDF0;
    pointer-events: none;
    letter-spacing: 2rem;
}


@media (max-width: 1110px) {
    #footer {
        padding: 5rem 1rem;
    }
}

@media (max-width: 1000px) {
    #footer .footer-wrapper {
        padding: 3rem 1rem;
    }

    .big-text {
        letter-spacing: 0rem;
    }
}


@media (max-width: 900px) {
    #footer .footer-wrapper-2 {
        flex-direction: column;
        gap: 3rem;
    }

    #footer .footer-wrapper .footer-right-side {
        justify-content: space-between;
    }

    .big-text {
        bottom: -10%;
        font-size: 20rem;
    }
}



@media (max-width: 620px) {
    #footer .footer-wrapper .footer-right-side {
        flex-direction: column;
    }


    .big-text {
        bottom: -5%;
        font-size: 15rem;
    }
}



@media (max-width: 520px) {
    .big-text {
        bottom: -2%;
        font-size: 10rem;
    }
}



@media (max-width: 400px) {
    .big-text {
        bottom: -2%;
        font-size: 8rem;
    }


    #footer {
        padding: 5rem 0rem;
        margin-top: 0rem;
    }


    #footer .footer-wrapper {
        margin-bottom: 3rem;
    }
}