.footer-section {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px 0;

    border-top: 3px solid transparent;
    border-image: linear-gradient(
        to right,
        transparent,
        var(--red-accent-color),
        var(--red-accent-color),
        transparent
    ) 1;
    position: relative;

    background: var(--background-dark-default-color);

    overflow: hidden;
}
.footer-section-bg{
    position: absolute;
    bottom: 0;
    left: 45%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.25;
}
.footer-section-container{
    width: 100%;
    max-width: 1340px;
    height: auto;
    gap: 50px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-section-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.footer-section-content:first-of-type{
    align-items: start;
}
.footer-section-content-item{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
    padding: 20px;
    position: relative;
    z-index: 3;
}
.footer-section-content-item:nth-of-type(2),
.footer-section-content-item:nth-of-type(3),
.footer-section-content-item:nth-of-type(4){
    padding-top: 75px;
}
.footer-section-content-item-logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
    width: 100%;
}
.footer-section-content-item-logo img:first-of-type{
    width: 75%;
}
.footer-section-content-item-logo img:nth-of-type(2){
    padding-left: 100px;
}
.footer-section-content-item-logo img:nth-of-type(3){
    width: 200px;
}
.footer-section-content-item-links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
    padding: 50px 0px;
    width: 100%;
}
.footer-section-content-item-links a{
    text-decoration: none;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 20px;
}
.footer-section-content-item-links a span{
    text-align: left;
    color: var(--text-light-default-color);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-body);
    line-height: 25px;
}
.footer-section-content-item-links a span strong{
    font-size: 18px;
    font-weight: 700;
}
.footer-section-content-item-links a img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: center;
}

.footer-section-content-item h3{
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light-default-color);
    font-family: var(--font-heading);
    line-height: 30px;
}
.footer-section-content-item ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
}
.footer-section-content-item ul li a{
    text-decoration: none;
    color: var(--text-light-default-color);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-body);
    line-height: 35px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.footer-section-content-item ul li a:hover{
    color: var(--red-accent-color);
}
.footer-section-content-item ul li a img{
    width: 25px;
    height: 25px;
    opacity: 0;
    transition: all 0.3s ease;
}
.footer-section-content-item ul li a:hover img{
    opacity: 1;
}

.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(3),
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(4),
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(5){
    position: relative;
}
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(3)::after,
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(4)::after,
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(5)::after{
    content: 'WKRÓTCE';
    position: absolute;
    top: 50%;
    right: -90px;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 700;
    color: var(--red-accent-color);
    font-family: var(--font-heading);
    line-height: 16px;
    padding: 5px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid var(--red-accent-color);
}
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(3) a,
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(4) a,
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(5) a{
    cursor: not-allowed;
    opacity: 0.5;
}
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(3) a:hover,
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(4) a:hover,
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(5) a:hover{
    color: var(--text-light-default-color);
}
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(3) a:hover img,
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(4) a:hover img,
.footer-section-content-item:nth-of-type(2) ul li:nth-of-type(5) a:hover img{
    opacity: 0;
}


.footer-section-content:nth-of-type(2){
    border-top: 1px solid #ffffff25;
    z-index: 3;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer-section-content:nth-of-type(2) p{
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light-default-color);
    font-family: var(--font-body);
    line-height: 20px;
    margin: 0;
    padding: 20px 0;
}
.footer-section-content:nth-of-type(2) p:first-of-type{
    text-align: left;
}
.footer-section-content:nth-of-type(2) p:last-of-type{
    text-align: right;
}


@media (max-width: 1000px){
    .footer-section-content:first-of-type{
        flex-direction: column;
    }
    .footer-section-content-item{
        width: 100%;
    }
    .footer-section-content-item-logo {
        align-items: center;
    }
      .footer-section-content-item-links {
        align-items: center;
    }
}

@media (max-width: 800px){
    .footer-section-content:nth-of-type(2){
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 0px;
        padding: 10px 0;
    }
    .footer-section-content:nth-of-type(2) p{
        text-align: left;
        padding: 5px 0;
    }
    .footer-section-content:nth-of-type(2) p:first-of-type{
        text-align: left;
    }
    .footer-section-content-item-logo img:nth-of-type(2){
        padding-left: 0px;
    }
}