#footer{
    position: relative;
    background-image: url(../img/footer-img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-section{
    padding-bottom: 1px;
    background-color: var(--background-color-shadow);
}

.footer__copyright{
    padding: 2rem 0;
    background-color: #080912;
}

.copyright{
    font-size: 1.3rem;
}

.info-section {
    position: relative;
    isolation: isolate;
    background-image: url(../img/info-section-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.info-section__content {
    background-color: var(--background-color-shadow);
    position: relative;
    isolation: isolate;
}

.info-section__title {
    position: relative;
    font-size: 3rem;
    padding: 2rem;
}

.info-section__title::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    left: 0;
    bottom: 0;
    background-color: var(--blue-general);
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.info-section__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
}

.info-section__list-item {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 14px;
    margin-top: 14px;
    list-style-type: none;
}


.info-section__title,
.info-section__list-item {
    color: var(--white-general);
}

.info-section__list-circle .info-section__list-item {
    position: relative;
    align-items: center;
}

.info-section__list-circle .info-section__list-item::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-right: 15px;
    border-radius: 50%;
    display: inline-block;
    align-items: center;
    justify-content: center;
    background: var(--blue-general);
    box-shadow: 0 0 0 5px var(--blue-rgba);
}

.info-section__list-underline {
    width: 90%;
}

.info-section__list-underline .info-section__list-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--blue-rgba);
    margin-bottom: 20px;
}

.animated {
    animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both;
}

.animatedFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}