body>span {
    background: url("../images/ice.png");
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    background-size: cover;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: animate 20s linear;
    z-index: 99999;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -50%);
        opacity: 1;
        filter: hue-rotate(0);
    }

    100% {
        transform: translate(50%, 5000%);
        opacity: 0;
        filter: hue-rotate(720deg);
    }
}



.mg-top-minus-100 {
    margin-top: -100px;
}

.mg-top-minus-150 {
    margin-top: -150px;
}

.mg-top-minus-50 {
    margin-top: -50px;
}

.mg-top-50 {
    margin-top: 50px;
}

.bg-color-secondary {
    background-color: #f2f2f2;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 10px;
    width: 100%;
    overflow: hidden;

}

.container>h2 {
    display: flex;
    justify-content: center;
    font-size: 30px;
    font-weight: 600;
    color: #2c4b8a;
    height: fit-content;
}

.container>h2::after {
    content: "";
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    top: 70px;
    height: 5px;
    width: 250px;
    background-color: #2c4b8a;
    border-radius: 2px;
}

.col-50 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    width: 45%;
    height: auto;
    z-index: 9;
}

.col-50 img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.col-50 h2 {
    margin-top: 50px;
    color: #2c4b8a;
}

.col-50 p {
    text-align: justify;
    font-size: 14px;
    font-weight: 400;
    line-height: 23.8px;
    color: rgb(84, 84, 84);
}