.three_column_section,
.column_image {
    position: relative;
    overflow: hidden;
}

.three_column_section h2 {
    margin-bottom: 56px;
}

.column_image img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 3.628px;
    transition: transform 0.3s ease;
}

.column_image img:hover {
    transform: scale(1.1);
}

.column-content {
    margin-top: 29px;
}

h3.column_title {
    min-height: 64px;
    font-size: 27px;
    line-height: 33px;
}

.three_column_section .cta-group {
    margin: 145px 0 55px;
    gap: 15px;
}

.three_column_section .cta-group .btn-yellow {
    border: 1px solid var(--black);
}

.three_column_section .cta-group .btn-yellow span {
    font-family: 'Radikal-Bold', sans-serif;
}

.three_column_section .cta-group .btn-black span {
    /* text-decoration: underline;
    text-underline-offset: 1px;
    text-decoration-thickness: 1px; */
    color: var(--white);
}

.p1,
.p2,
.p3,
.p4 {
    position: absolute;
}

.p1 {
    transform: translate(-200px, 0);
    animation: p1Move 40s linear infinite;
}

@keyframes p1Move {
    0% {
        transform: translate(-200px, 0);
    }

    50% {
        transform: translate(-200px, 100px);
    }

    100% {
        transform: translate(-200px, 0);
    }
}

.p2 {
    transform: translate(-20px, 600px);
    animation: p2Move 50s linear infinite;
}

@keyframes p2Move {
    0% {
        transform: translate(-20px, 600px);
    }

    50% {
        transform: translate(-20px, 500px);
    }

    100% {
        transform: translate(-20px, 600px);
    }
}

.p3 {
    top: 20px;
    right: -20px;
    animation: p3Move 40s linear infinite;
}

@keyframes p3Move {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-100px, 100px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.p4 {
    top: 0;
    right: -400px;
    width: 400px;
    height: 400px;
    animation: p4Move 50s linear infinite;
}

@keyframes p4Move {
    0% {
        transform: translate(-200px, 300px);
    }

    50% {
        transform: translate(-200px, 200px);
    }

    100% {
        transform: translate(-200px, 300px);
    }
}


@media (max-width: 992px) {

    .three_column_section h2 {
        margin-bottom: 20px;
    }

    .column_item {
        width: 100%;
    }

    .column-content {
        margin-top: 16px;
        border-radius: 4px;
        border: 0.5px solid var(--grey2);
        background: var(--white);
        box-shadow: 0 1px 14px 0 rgba(26, 26, 26, 0.06);
        padding: 18px;
    }

    .column_description {
        display: none;
        padding-top: 16px;
        margin: 0;
    }

    .column_title {
        margin-bottom: 0;
        position: relative;
        padding-right: 77px;
        display: flex;
        align-items: center;
    }

    .column_title:after {
        content: '+';
        position: absolute;
        top: 25%;
        right: 0;
        font-size: 50px;
        font-family: 'Radikal-Light', sans-serif;
    }

    .column_item.active .column_title:after {
        content: '-';
    }

    .three_column_section .cta-group {
        margin: 35px 0 20px;
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .three_column_section .cta-group .btn-yellow,
    .three_column_section .cta-group .btn-black {
        min-width: 321px;
        justify-content: center;
    }

    .p2,
    .p3 {
        display: none;
    }

    .p1,
    .p4 {
        width: 200px;
        height: 200px;
    }

    .p1 {
        left: 100px;
    }

    .p4 {
        right: -300px;
    }
}

@media (max-width: 650px) {
    .p4 {
        display: none;
    }

    .p1 {
        width: 300px;
        height: 300px;
        left: 0;
    }
}