@media (max-width: 768px) {

    h2 {
        font-size: 36px !important;
    }

    .header {
        border: none;

        .container {
            gap: 2rem;
        }
    }

    .hero {
        .container {
            .row.one {
                margin: auto;

                .detail {
                    h1 {
                        font-size: 30px;
                    }

                    p {
                        font-size: 20px;
                    }
                }
            }

            .row.two {
                .wrapper-calendar {
                    max-width: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: center;

                    .detail {
                        .text {
                            h3 {
                                font-size: 20px;
                            }

                            p {
                                font-size: 20px;
                            }
                        }
                    }

                    .fecha {
                        width: 45%;
                    }

                    .hora {
                        width: 45%;
                    }

                    .lugar {
                        width: 93%;
                    }
                }

                .btn {
                    font-size: 1rem;
                }
            }
        }

    }

    .event__info {
        .container {
            .row {
                .countdown {
                    max-width: 100%;

                    .box {
                        border-radius: 12px;

                        .number {
                            font-size: 2rem;
                        }

                        span {
                            border-radius: 0 0 12px 12px;
                        }
                    }
                }
            }

            .row.detail_event {
                max-width: 100%;
            }
        }
    }

    .details__event {
        .container {
            .row {
                max-width: 100%;
            }
        }
    }

    .ejes {
        .container {
            .accordion {
                max-width: 100%;

                .item-collapse {
                    .accordion-item {
                        .accordion-header {
                            .accordion-button {
                                span {
                                    font-size: 1.2rem;
                                }
                            }
                        }

                        .accordion-body {
                            font-size: 1.2rem;
                        }
                    }
                }
            }
        }
    }
}


@media (max-width: 576px) {
    .header {
        & .container {
            & .header-nav {
                .menu-wrap {
                    padding-left: 0;

                    .menu-item {
                        .menu-link {
                            font-size: .8rem;
                        }
                    }
                }
            }
        }
    }

    .hero {
        & .container {
            & .row.two {
                & .wrapper-calendar {
                    & .detail {
                        & .text {
                            h3 {
                                font-size: 18px;
                            }

                            p {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }

    .event__info {
        .container {
            .row {
                .countdown {


                    .box {


                        .number {
                            font-size: 1rem;
                        }

                        span {

                            font-size: .5rem;
                        }
                    }
                }
            }

            & .row.detail_event {
                & .info_event {
                    p {
                        color: #FFF;
                        text-align: center;
                        font-family: var(--rb-regular);
                        font-size: 1rem;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 100%;
                    }
                }
            }
        }
    }

    .details__event {
        & .container {
            & .row {
                & .item-detail {
                    p {
                        font-size: 1rem;
                    }
                }
            }
        }
    }

    .organizadores {
        & .container {
            & .row.two {
                & .wrapper-image {
                    flex-direction: column;
                }
            }
        }
    }

    .footer {
        & .contact-info {
            h4{
                text-align: center;
            }
            & ul {
                li {
                   
                    justify-content: center;
                }
            }
        }
    }

    
}