.page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    max-width: 1280px;
    margin: 120px auto 0 auto;
    position: relative;
}


@media(max-width: 768px) {
    .page-container {
        margin: 64px 15px 0;
    }
}

.section-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;

    position: relative;
}

.section-container .particles-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 40vh;
    z-index: 0;
}

.page-title {
    line-height: 100%;
    font-weight: 700;
    font-size: 56px;
    letter-spacing: -0.01em;
    text-align: center;
    white-space: pre-wrap;
    word-break: break-word;

    color: var(--text-main);

    z-index: 1;
    position: relative;
}

@media(max-width: 768px) {
    .page-title {
        font-size: 32px;
        word-break: break-word;
        padding: 0 16px;
        line-height: 120%;
    }
}

.page-description {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;

    text-align: center;

    color: var(--text-secondary);
    white-space: pre-wrap;
    margin-top: 24px;

    z-index: 1;
    position: relative;
}

@media(max-width: 768px) {
    .page-description {
        word-break: break-word;
        padding: 0 16px;
        font-size: 16px;
        white-space: initial;
    }
}

.buttons-container {
    margin-top: 56px;

    display: flex;

    z-index: 1;
    position: relative;
}

.buttons-container a {
    display: block;
    margin-top: 0;
}

.buttons-container a:not(:first-child) {
    margin-left: 18px;
}

@media(max-width: 768px) {
    .buttons-container a:not(:first-child) {
        margin-left: 0;
        margin-top: 18px;
    }

    .buttons-container {
        display: flex;
        flex-direction: column;
    }
}

.rounded-button {
    padding: 20px 56px;

    color: var(--text-on-brand);
    background: var(--surface-brand);
    border: 1px solid var(--surface-border);
    box-sizing: border-box;
    border-radius: 16px;
    margin-top: 56px;

    font-weight: 500;
    font-size: 20px;
    line-height: 24px;

    transition: background-color 200ms linear;
}

.rounded-button span {
    transition: all ease 200ms;
    margin-left: 4px;
}

.rounded-button:hover {
    filter: brightness(1.1);
}

.rounded-button > span {
    transform: translateX(5px);
}

@media(max-width: 768px) {
    .rounded-button {
        margin-top: 32px;
    }
}

.transparent-button {
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-main);
    transition: box-shadow 200ms ease;
    border: 1px solid var(--surface-border);
}

.transparent-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: rgb(0 56 110 / 8%) 0 0 15px 5px, rgb(225 237 250) 0 0 0 1px inset;
}

.particles-container :nth-child(1) {
    left: 20%;
    opacity: 0;
    top: 75%;
}

.particles-container :nth-child(2) {
    left: 14%;
    opacity: 0;
    top: 55%
}

.particles-container :nth-child(3) {
    right: 35%;
    opacity: 0;
    top: 20%
}


.particles-container :nth-child(4) {
    right: 20%;
    opacity: 0;
    top: 85%
}

.particles-container :nth-child(5) {
    right: 20%;
    opacity: 0;
    top: 70%
}

.particles-container :nth-child(6) {
    right: 20%;
    opacity: 0;
    top: 10%
}

.particles-container :nth-child(7) {
    right: 45%;
    opacity: 0;
    bottom: 10%;
}

.particles-container :nth-child(8) {
    left: 45%;
    opacity: 0;
    top: 20%
}

.particles-container :nth-child(9) {
    left: 17%;
    opacity: 0;
    top: 48%
}

.particles-container :nth-child(10) {
    right: 17%;
    opacity: 0;
    top: 75%
}

.particles-container :nth-child(11) {
    left: 23%;
    opacity: 0;
    top: 19%
}

.particles-container :nth-child(12) {
    left: 5%;
    opacity: 0;
    top: 19%
}

.particles-container :nth-child(13) {
    right: 5%;
    opacity: 0;
    bottom: 8%
}

.particles-container :nth-child(14) {
    right: 22%;
    opacity: 0;
    bottom: 19%
}

.particles-container :nth-child(15) {
    left: 5%;
    opacity: 0;
    bottom: 29%
}

.particles-container :nth-child(16) {
    left: 5%;
    opacity: 0;
    bottom: 6%
}

.particles-container :nth-child(17) {
    left: 50%;
    opacity: 0;
    bottom: 2%
}

.particles-container :nth-child(18) {
    right: 25%;
    opacity: 0;
    bottom: 36%
}

.particles-container :nth-child(19) {
    left: 15%;
    opacity: 0;
    bottom: 36%
}

.particles-container :nth-child(20) {
    left: 22%;
    opacity: 0;
    bottom: 16%
}

.particles-container .particle {
    width: 34px;
    height: 34px;

    position: absolute;

    mask: var(--icon) no-repeat;
    mask-size: contain;
    -webkit-mask: var(--icon) no-repeat;
    -webkit-mask-size: contain;

    background-color: var(--surface-brand);
}

.particles-container .medium, .particles-container .small {
    width: 24px;
    height: 24px;
}

@keyframes particleAnimation1 {
    0% {
        opacity: 0;
        transform: translateZ(0);
    }
    40% {
        opacity: 0.4;
    }
    60% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translate3d(-30px, -65px, 0);
    }
}

@keyframes particleAnimation2 {
    0% {
        opacity: 0;
        transform: translateZ(0);
    }
    40% {
        opacity: 0.4;
    }
    60% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translate3d(-10px, -30px, 0);
    }
}

@keyframes particleAnimation3 {
    0% {
        opacity: 0;
        transform: translateZ(0);
    }
    40% {
        opacity: 0.4;
    }
    60% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translate3d(25px, -40px, 0);
    }
}

@keyframes particleAnimation4 {
    0% {
        opacity: 0;
        transform: translateZ(0);
    }
    40% {
        opacity: 0.4;
    }
    60% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translate3d(20px, 50px, 0);
    }
}

@keyframes particleAnimation5 {
    0% {
        opacity: 0;
        transform: translateZ(0);
    }
    40% {
        opacity: 0.4;
    }
    60% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translate3d(34px, 30px, 0);
    }
}

.features-container {
    display: flex;
    margin-top: 100px;
    filter: drop-shadow(0px 12px 32px rgba(0, 48, 105, 0.05));
    width: 100%;
}

@media(max-width: 768px) {
    .features-container {
        flex-direction: column;
        width: 100%;
    }
}

.feature-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;

    flex: 1;

    background-color: var(--surface-background-secondary);
    border: 1px solid var(--surface-border);
    padding: 24px 24px;

    box-sizing: border-box;
    border-radius: 24px;
}

.feature-container > :last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 769px) {
    .feature-container:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-right: none;
    }

    .feature-container:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}

@media(max-width: 768px) {
    .feature-container {
        padding: 24px 50px;
    }

    .feature-container:not(:first-child) {
        margin-left: 0;
        margin-top: 8px;
    }
}

.feature-title {
    word-break: break-word;
    max-width: 200px;

    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.01em;
    margin-top: 5px;

    color: var(--text-main);
}

@media(max-width: 768px) {
    .feature-title {
        max-width: 100%;
    }
}

.feature-description {
    font-weight: 500;
    font-size: 16px;
    word-break: break-word;
    line-height: 24px;

    text-align: center;
    white-space: pre-wrap;
    margin-top: 8px;

    color: var(--text-secondary);
}

.feature-icon {
    width: 48px;
    height: 48px;
}

.feature-icon .background {
    fill: var(--surface-brand);
}

.base-section-container {
    margin-top: 90px;
    width: 100%;
}

.box-container {
    padding: 56px 0;

    display: flex;
    justify-content: center;
    gap: 32px;

    box-sizing: border-box;

    border-radius: 5px;

    position: relative;
}

@media (max-width: 768px) {
    .box-container {
        margin-top: 0;
        flex-direction: column;
    }
}

.box-container .container-feature {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1;
    max-width: 352px;
}

@media (max-width: 768px) {
    .box-container .container-feature {
        margin-top: 80px;
        max-width: 100%;
    }
}

.box-container .box-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.01em;
    margin-top: 32px;
    word-break: break-word;
    white-space: pre-wrap;

    color: var(--text-main);
}

@media (max-width: 768px) {
    .box-container .box-title {
        font-size: 24px;
    }
}

.box-container .box-description {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    margin-top: 16px;
    word-break: break-word;

    white-space: pre-wrap;
    text-align: center;

    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .box-container .box-description {
        font-size: 16px;
    }
}

.box-container .drum {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;

    border-radius: 32px;

    padding: 12px;
}

.box-container .drum > :last-child {
    position: relative;
    z-index: 9;
}

.box-container .drum svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.box-container .drum svg .tint {
    fill: var(--surface-brand);
}

.box-container .bubble {
    padding: 5px 16px;

    width: fit-content;

    display: flex;
    align-items: center;
    gap: 5px;

    border-radius: 100px;

    background: #fff;
}

.box-container .bubble img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.box-container .bubble p {
    color: #000;

    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

@keyframes pumpingAnimation {
    0% {
        transform:scale(1)
    }

    20% {
        transform:scale(1.6)
    }

    40% {
        transform:scale(1)
    }

    to {
        transform:scale(1)
    }
}

.box-container .bubble.animated img {
    animation: pumpingAnimation 2s infinite linear;
}

@media (max-width: 768px) {
    .box-container .bubble {
        padding: 5px 7px;
    }

    .box-container .bubble img {
        width: 8px;
        height: 8px;
    }

    .box-container .bubble p {
        font-size: 7px;
        line-height: unset;
    }
}

.third-section-features-container {
    display: flex;
    justify-content: space-between;

    margin: 48px auto 0;
    max-width: 1120px;
}

@media(max-width: 768px) {
    .third-section-features-container {
        margin-top: 32px;
        flex-direction: column;
    }
}

.third-section-feature {
    flex: 1;
    background: var(--surface-background-secondary);
    border-radius: 24px;
    padding: 32px 0 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: hidden;

    position: relative;
}

.third-section-feature:not(:first-child) {
    margin-left: 32px;
}

.third-feature-icon.default {
    max-width: 100%;
    margin-top: auto;
    min-width: 352px;
}

@media(max-width: 768px) {
    .third-section-feature:not(:first-child) {
        margin-top: 8px;
        margin-left: 0;
    }

    .third-section-feature {
        display: flex;
        flex-direction: column;
    }

    .third-section-feature.fixed-height {
        min-height: 350px;
    }

    .third-section-feature .third-feature-icon {
        object-fit: contain;
    }
}

.third-feature-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    word-break: break-word;
    letter-spacing: -0.01em;

    color: var(--text-main);
}

.third-feature-description {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-top: 8px;
    word-break: break-word;
    padding: 0 16px;
    white-space: pre-wrap;

    color: var(--text-secondary);
}

.connect-container {
    display: flex;
    justify-content: center;
}
