#footer {
    background: var(--blue);
    color: var(--white);
    padding: 2.5rem 0 0 0;
}

#footer-list .footer-list-ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#footer-list h5 {
    /* font-size: 1.2rem; */
    margin-bottom: 10px;
}

#footer-list ul {
    list-style-type: none;
    padding-left: 0;
}

#footer-list a {
    /* font-size: .875rem; */
    color: var(--white);
    margin: 2px 0;
    opacity: .7;
    display: inline-block;
    position: relative;
    transition: opacity, padding-left .5s;
    -webkit-transition: opacity, padding-left .5s;
    -moz-transition: opacity, padding-left .5s;
    -ms-transition: opacity, padding-left .5s;
    -o-transition: opacity, padding-left .5s;
}

#footer-list a:hover {
    opacity: 1;
    padding-left: 10px;
}

#footer-list a::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--white);
    opacity: .7;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

#footer-list a:hover::before {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

#footer hr {
    border-top-style: dashed;
    opacity: .1 !important;
    margin: 0 2.5rem;
}

#footer-logo-area {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-top: 1rem;
}

#footer-logo-area a img {
    width: 120px;
    height: 70px;
}

#footer-logo-area span p {
    font-size: small;
}

#social-media-area {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 0 !important;
}

#social-media-area a {
    position: relative;
    color: var(--white);
    opacity: .7;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: opacity .5s;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    mix-blend-mode: hard-light;
}

#social-media-area a:hover {
    opacity: 1;
}

#social-media-area a::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 41px;
    height: 41px;
    z-index: -1;
    background: var(--blue);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

#social-media-area a:hover::before {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

#footer-bottom {
    margin-top: 2.5rem;
    background: var(--blue_dark);
    padding: 1rem 2.5rem;
    text-align: center;
}

#footer-bottom a {
    position: relative;
    color: var(--white);
    z-index: 1;
    transition: color .5s;
    -webkit-transition: color .5s;
    -moz-transition: color .5s;
    -ms-transition: color .5s;
    -o-transition: color .5s;
}

#footer-bottom a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 1px;
    z-index: -1;
    border-bottom: 1px solid var(--white);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    animation-delay: 1s;
}

#footer-bottom a:hover::before {
    left: 0%;
    width: 100%;
}

#pageTopScrollBtn {
    position: fixed;
    bottom: -50px;
    right: 20px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.5s;
}

#pageTopScrollBtn.pageScrollBtnActive {
    bottom: 20px;
}

#pageTopScrollBtn .button {
    width: 50px;
    height: 50px;
    border-radius: 20%;
    background: var(--blue);
    border: none;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    border-radius: 15px;
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: relative;
}

#pageTopScrollBtn .svgIcon {
    width: 12px;
    transition-duration: 0.3s;
}

#pageTopScrollBtn .svgIcon path {
    fill: #e9e9e9;
}

#pageTopScrollBtn .button:hover {
    width: 100px;
    border-radius: 15px;
    transition-duration: 0.3s;
    background: var(--blue);
    align-items: center;
}

.button:hover .svgIcon {
    transition-duration: 0.3s;
    transform: translateY(-200%);
}

.button::before {
    position: absolute;
    bottom: -20px;
    content: "Yukarı Çık";
    color: var(--white);
    font-size: 0px;
}

.button:hover::before {
    font-size: 15px;
    opacity: 1;
    bottom: unset;
    transition-duration: 0.3s;
}

@media screen and (max-width: 992px) {
    #footer-list .footer-list-ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    #footer-list,
    #footer-logo-area {
        padding: 0 2.5rem;
    }

    #footer-logo-area {
        align-items: center;
        flex-direction: column;
        gap: 40px 0;
        text-align: center;
    }

    #social-media-area {
        justify-content: center;
        padding-left: 0 !important;
    }

    #footer hr {
        width: calc(100% - 5rem);
    }
}

@media screen and (max-width: 450px) {
    #footer-list .footer-list-ul {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }

    #footer-bottom span {
        display: block;
        margin-top: 5px;
    }
}