.banner-content h1 {
    font-weight: 700;
}

h2 {
    font-size: 44px;
    line-height: 66px;
    letter-spacing: 1px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 8px;
}

p {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 300;
}

#services-detail {
    margin-top: 60px;
    margin-bottom: 60px;
}

#services-detail.flex {
    flex-direction: column;
    align-items: center;
    gap: 70px;
}

#services-detail .flex {
    gap: 30px;
}

.align-right {
    text-align: right;
}

.to-animate-right {
    opacity: 0;
}

.to-animate-left {
    opacity: 0;
}

.animate-right {
    animation: fadeInRight 1s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.animate-slow {
    animation-duration: 1.5s;
}

.animate-left {
    animation: fadeInLeft 1s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


@media (max-width: 1500px) {
    .container {
        width: 90%;
    }
}

@media (max-width: 900px) {
    #services-detail .flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    #services-detail .reverse {
        flex-direction: column-reverse;
    }
}