@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto';
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 86%;
    margin: 0 auto;
}

.w84 {
    width: 84%;
    margin: 0 auto;
}
.w77{
    width: 77%;
    margin: 0 auto;
}


.policy_block {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    padding: 4vw 0 4vw 0;
}
.head{
    font-weight: 400;
    font-size: 2.5vw;
    line-height: 1.4;
    text-transform: uppercase;
}
@keyframes fadeInDot {
    to {
        opacity: 1;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        width: 86%;
    }

    .policy_block {
        display: flex;
        flex-direction: column;
        gap: 2vw;
        padding: 25vw 0 4vw 0;
    }
}
