body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(180.56deg, #FB757C 0%, #E278DC 35%, #3FC3F4 90%),
    linear-gradient(0deg, #FFFFFF, #FFFFFF);
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.container {
    padding: 0 20px;
}

.services-section {
    width: 698px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
}

.footer-section {
    width: 1160px;
    margin: 0 auto;
}

p {
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

@media screen and (max-height: 700px) and (min-width: 992px) {
    .footer-section {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 1200px) {
    .footer-section {
        width: 720px;
    }
}

@media screen and (max-width: 768px) {
    .services-section {
        width: 540px;
    }

    .footer-section {
        width: 540px;
    }
}

@media screen and (max-width: 576px) {
    .services-section {
        align-items: center;
        width: calc(100% - 24px);
        padding-left: 12px;
        padding-right: 12px;
    }

    p {
        line-height: 20px;
    }

    .footer-section {
        width: calc(100% - 24px);
        padding: 0 12px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        align-items: center;
    }
}

@media screen and (max-width: 350px) {
    .footer-section {
        min-height: 100vh;
    }
}

@media screen and (max-height: 600px) and (min-width: 350px) and (max-width: 992px) {
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .services-section {
        align-items: center;
    }
}