.animate__animated.animate__delay-6s {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
    -webkit-animation-delay: calc(var(--animate-delay)* 6);
    animation-delay: calc(var(--animate-delay)* 6);
}
.animate__animated.animate__delay-7s {
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
    -webkit-animation-delay: calc(var(--animate-delay)* 7);
    animation-delay: calc(var(--animate-delay)* 7);
}
.animate__animated.animate__delay-8s {
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
    -webkit-animation-delay: calc(var(--animate-delay)* 8);
    animation-delay: calc(var(--animate-delay)* 8);
}
.animate__animated.animate__delay-9s {
    -webkit-animation-delay: 9s;
    animation-delay: 9s;
    -webkit-animation-delay: calc(var(--animate-delay)* 9);
    animation-delay: calc(var(--animate-delay)* 9);
}
.animate__animated.animate__delay-10s {
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
    -webkit-animation-delay: calc(var(--animate-delay)* 10);
    animation-delay: calc(var(--animate-delay)* 10);
}

* {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.circle-our {
    background-color: rgba(255, 248, 234);
    backdrop-filter: blur(10px);
}

.bg-section2 {
    background-image: url(../assets/points2.png), url(../assets/Rectangle.png);
    background-position: right center, left center;
    background-repeat: no-repeat, no-repeat;
    background-size: 110% 100%, 90% 40%;
}

.bg-section3::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 80%;
    top: -20%;
    left: 0;
    z-index: -1;
    background: url(../assets/Rectangle.png) 0 0 no-repeat;
    transform: rotate(180deg);
    right: 0;
    background-repeat: no-repeat;
    background-size: 90% 50%;
}

.bg-s4 {
    background-image: url(../assets/mask_1.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-section1 {
    background-image: url(../assets/mask_2.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (640px <= width <=1023px) {
    .bg-section3::before {
        height: 90%;
        top: -15%;
    }
    .bg-s4 {
        height: 65rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .txt-last{
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .bg-section2 {
        background-image: url(../assets/Circulos.png), url(../assets/Rectangle.png);
        background-size: cover, 70% 45%;
    }
    .bg-s4{
        background-image: url(../assets/pattern.png);
        background-size: 100% 100%;
    }
}

@media (width <= 575px){
    .bg-section2{
        background-size: cover, 90% 40%;
        background-position: center center, left center;
    }
}