main {
    .forma-head {
        margin: 2rem 0 4rem;
        padding: 0 1rem;

        @media screen and (max-width: 500px) {
            margin: 2rem 0 2.5rem;

            h1 {
                font-size: 1.5rem;
            }
        }

        .text {
            text-align: center;
        }
    }

    .forma-content {
        padding: 0 1rem;

        .event {
            margin-bottom: 4rem;

            .event-list {
                padding-left: 3rem;
                margin-top: 10px;
                color: gray;

                @media screen and (max-width: 500px) {
                    padding-left: 1rem;
                    margin-top: 2rem;
                }

                h4 {
                    margin-bottom: 15px;
                }
            }

            .custom-title {
                margin-bottom: 3rem;

                @media screen and (max-width: 500px) {
                    padding-left: 1rem;
                }
            }
        }

        .cards-groups {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 8rem;

            @media screen and (max-width: 865px) {
                margin-bottom: 4rem;
            }

            @media screen and (max-width: 500px) {
                padding: 0 1rem;
            }

            a {
                text-decoration: none;
            }

            .card {
                width: 330px;
                box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.32);
                cursor: pointer;
                position: relative;
                transform-origin: center;
                transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
                margin: 0 16px 0 0;
                border-radius: 15px;
                overflow: hidden;

                @media screen and (max-width: 500px) {
                    width: 315px;
                }

                &:last-child {
                    margin: 0;
                }

                &:hover {
                    transform: scale(1.05);
                }

                & .content {
                    text-align: center;
                    padding: 12px 5px 0;
                    position: relative;
                }

                &.split {
                    height: 265px;
                    background: #001233;
                    color: white;

                    @media screen and (max-width: 500px) {
                        height: 265px;
                    }

                    &:before {
                        content: "";
                        width: 100%;
                        height: 0;
                        background: #f3f3f3;
                        position: absolute;
                        bottom: 0;
                        transform-origin: bottom;
                        transition: all 0.3s;
                    }

                    &:hover {
                        color: #002261;

                        &:before {
                            height: 100%;
                        }
                    }

                    & .image {
                        display: block;
                        position: relative;
                    }

                    & .image img {
                        width: 100%;
                        height: auto;
                    }
                }
            }
        }
    }
}

.reviews {
    .content {
        padding-left: 1rem;

        .card_load_extreme_descripion {
            height: 15rem;
            border-radius: 8px;
            background: linear-gradient(
                    120deg,
                    #e5e5e5 30%,
                    #f0f0f0 38%,
                    #f0f0f0 40%,
                    #e5e5e5 48%
            );
            background-size: 200% 100%;
            background-position: 100% 0;
            animation: load89234 2s infinite;
        }

        .slick-slide {
            margin-right: 2rem;
            height: unset;
        }
    }
}

@keyframes load89234 {
    100% {
        background-position: -100% 0;
    }
}

.footer2 {
    margin: 0 !important;
    background-color: #f7f7f7 !important;
}

.reviews iframe{
    border-radius: 15px;
}