* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: candy;
    src: url(../font/candy.otf);
}

@font-face {
    font-family: learn;
    src: url(../font/learn.ttf);
}

@mixin NubesStyle() {
    position: absolute;
    z-index: -1;
}

$azul: #00D4FF;
$verde: #00FF8B;
$amarillo: #FFF100;
$amarillodark: #ffd900;
$rojo: #EC1651;

$parrafo: 1.7rem;
$subtitle: 2.5rem;
$subtitle2: 1.5rem;

.swiper {
    width: 100%;
  }

header {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-around;
    overflow: hidden;

    .HeaderLogo {
        width: 20%;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            width: 60%;
            display: flex;
            margin: auto;

            @media (max-width: 910px) {
                width: 80%;
            }

            @media (max-width: 480px) {
                width: 90%;
            }
        }
    }

    nav {
        width: 80%;
        display: flex;
        overflow: hidden;
    }
  
    @mixin NavItem() {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        font-family: candy;
        width: 25%;
        height: 80px;
    }

    .MenuProductos, .MenuServicios, .MenuNosotros, .MenuContacto {
        @include NavItem();

        a {
            text-decoration: none;
            font-size: 1.5rem;
            -webkit-text-stroke: white 1.5px;
            text-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.4);

            @media (max-width: 894px) {
                font-size: 1.3rem;
            }

            @media (max-width: 650px) {
                font-size: 1rem;
            }   
        }
    }

    .MenuProductos {
        background-color: $azul;

        a {
            color: $azul;
        }
    }

    .MenuServicios {
        background-color: $verde;

        a {
            color: $verde;
        }
    }

    .MenuNosotros {
        background-color: $amarillo;

        a {
            color: $amarillo;
        }
    }

    .MenuContacto {
        background-color: $rojo;
        text-align: center;

        a {
            color: $rojo;
        }

        i {
            font-size: 2rem;
        }
    }
}

main {
    width: 100%;
    position: relative;
    overflow: hidden;
}

@mixin MainChevronStyle() {
    position: absolute;
    top: 50%;
    transform: translate(0 -50%);
    margin: 1.5rem;
    cursor: pointer;
    font-size: 4rem;
}

.swiper.IndexSlider {
    --swiper-theme-color: white;

    .swiper-wrapper {

        .swiper-slide {

            @mixin SlideInfoBox() {
                position: absolute;
                display: flex;
                align-items: center;
                gap: 1.5rem;
                bottom: 3.2rem;
                left: 50%;
                transform: translate(-50%);
                text-align: center;

                @media (max-width: 700px) {
                    bottom: 2rem;
                }

                @media (max-width: 480px) {
                    gap: 1rem;
                }
            }

            .SlideInfo1 {
                @include SlideInfoBox();

                background-color: white;
                padding: 1.2rem 2.5rem;
                border-radius: 2rem;
                font-family: learn;
                font-size: $parrafo;
                box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5);

                @media (max-width: 700px) {
                    padding: 0.8rem 1.9rem;
                }

                
                @media (max-width: 480px) {
                    padding: 0.3rem 1.2rem;
                }
                
                p {
                    width: 35%;

                    @media (max-width: 984px) {
                        display: none;
                    }
                }

                i {
                    font-size: 3rem;
                    color: black;

                    @media (max-width: 700px) {
                        font-size: 2rem;
                    }

                    @media (max-width: 480px) {
                        font-size: 1.2rem;
                    }
                }

                .fa-brands.fa-facebook-f {
                    color: #0080FF;
                }

                .fa-brands.fa-instagram {
                    background-image: linear-gradient(165deg, yellow, magenta, purple);
                    background-clip: text;
                    color: transparent;
                }

                .fa-brands.fa-whatsapp {
                    color: #00D954;      
                }
            }

        .SlideInfo2 {
            @include SlideInfoBox();

            display: flex;
            flex-flow: column;
            gap: 0;
            align-items: center;

            @media (max-width: 500px) {
                display: none;
            }

            .SlideInfoSection1 {
                position: relative;
                
                img {
                    position: absolute;
                    top: -1.5rem;
                    left: -1.5rem;
                    width: 7rem;
                }

                p {
                    background-color: white;
                    padding: 1rem 2rem 1rem 6rem;
                    border-radius: 2rem;  
                    font-family: learn;
                    font-size: $parrafo;

                    @media (max-width: 950px) {
                        font-size: 1.2rem;;
                    }
                }              
            }

            .SlideInfoSection2 {
                display: flex;
                flex-flow: column;
                align-items: center;
                background-color: #D0D0D0;
                width: 70%;
                border-radius: 0 0 2rem 2rem;

                @media (max-width: 950px) {
                    display: none;
                }

                img {
                    margin: 0.7rem;
                    width: 20rem;
                }
            }
        }

        @mixin SlideSlapStyle() {
            font-family: candy;
            color: white;
            padding: 1rem 1.5rem;
            position: absolute;
            top: 2.2rem;
            font-size: 1.5rem;
            width: 20rem;
            box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.2);
        }

        .SlideSlap1, .SlideSlap2 {
            @include SlideSlapStyle();

            @media (max-width: 910px) {
                display: none;
            }
        }

        .SlideSlap1 {
            background-color: $rojo;
            text-align: right;
            right: 0;
            border-radius: 3rem 0 0 3rem;
        }

        .SlideSlap2 {
            background-color: $azul;
            border-radius: 0 3rem 3rem 0;
        }

            img {
                width: 100%;
            }
        }
    }
}

.DestacadosCont {
    margin-block: 5rem;

    @media (max-width: 800px) {
        margin-block: 3rem;
    }

    @media (max-width: 480px) {
        margin-block: 2rem;
    }

    .DestacadosHeader {
        text-align: center;

        h2 {
            font-family: candy;
            font-size: $subtitle;
            color: white;
            -webkit-text-stroke: 1.2px $rojo;

            @media (max-width: 800px) {
                font-size: 2rem;
            }
        }

        p {
            font-family: learn;
            font-size: $parrafo;

            @media (max-width: 480px) {
                font-size: 1rem;
            }
        }
    }

    .swiper.Destacados {
    
    --swiper-theme-color: #bbb;
    z-index: 2;

        .swiper-slide {
            display: flex;
            justify-content: space-around;
        }

        @mixin DestacadoSlideStyle() {
            text-align: center;

            h3 {
                font-family: candy;
                font-size: $subtitle2;

                @media (max-width: 480px) {
                    font-size: 1rem;
                }
            }

            p {
                font-family: learn;
                font-size: $parrafo;

                @media (max-width: 480px) {
                    font-size: 1rem;
                }
            }

            img {
                width: 25rem;

                @media (max-width: 800px) {
                    width: 15rem;
                }

                @media (max-width: 480px) {
                    width: 10rem;
                }
            }
        }

        .DestacadoSlideA, .DestacadoSlideB {
            @include DestacadoSlideStyle();
        }

        .DestacadoSlideA {
            h3 {
                color: $azul;
            }
        }

        .DestacadoSlideB {
            h3 {
                color: $rojo;
            }
        }
    }
}

.MoreOptionsCont {
    width: 100%;
    display: flex;

    @mixin MoreOptionsStyle() {
        width: 50%;
        position: relative;

        .MoreOptionsInfo {
            margin-top: 2rem;
            margin-inline: 2rem;

            h2 {
                font-family: candy;
                font-size: 3rem;
                -webkit-text-stroke: white 1.5px;

                @media (max-width: 827px) {
                    font-size: 2rem;
                }
            }
    
            a {
                font-family: learn;
                font-size: 2rem;
                color: white;

                @media (max-width: 827px) {
                    font-size: 1.5rem;
                }
            }
        }               
    }

    .MoreOptions1, .MoreOptions2 {
        @include MoreOptionsStyle();

        img {
            @media (max-width: 580px) {
                display: none;
            }
        }
    }

    .MoreOptions1 {
        background-color: $verde;
        color: $verde;
        text-align: right;

        .MoreOptionsIMG {
            display: flex;
            justify-content: space-between;
            align-items: center;

            img {
                width: 50%;
            }

            a {
                svg {
                    width: 7rem;
                    height: 7rem;
                    color: white;
                    margin: 2rem;

                    @media (max-width: 700px) {
                        width: 5rem;
                        height: 5rem;
                    }
                }
            }
        }
    }

    .MoreOptions2 {
        background-color: $azul;
        color: $azul;

        .MoreOptionsIMG {
            display: flex;
            flex-flow: row-reverse;
            justify-content: space-between;
            align-items: center;

            @media (max-width: 580px) {
                flex-flow: row;
            }

            img {
                width: 50%;
            }

            a {
                svg {
                    width: 7rem;
                    height: 7rem;
                    color: white;
                    margin: 2rem;

                    @media (max-width: 700px) {
                        width: 5rem;
                        height: 5rem;
                    }
                }
            }
        }
    }
}

.TrustBar {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin: 4rem 0;

    @media (max-width: 910px) {
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .TrustItem {
        display: flex;
        flex-flow: column;
        gap: 1rem;
        text-align: center;

        p {
            font-family: learn;
            font-size: $parrafo;
            color: #565657;

            @media (max-width: 910px) {
                font-size: 1.2rem;
            }
        }

        i {
            color: #565657;
            font-size: 5rem;

            @media (max-width: 910px) {
                font-size: 3rem;
            }
        }
    }
}

footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: $rojo;
    padding-block: 2rem;

    .FooterSocial {
        display: flex;
        gap: 2rem;

        @media (max-width: 480px) {
            gap: 1rem;
        }

        i {
            color: white;
            font-size: 2rem;
        }
    }

    p {
        font-family: learn;
        font-size: $parrafo;
        color: white;

        @media (max-width: 600px) {
            font-size: 1rem;
        }
    }
}



// proudctos.html



#productos {
    main {
        background-color: $azul;
        position: relative;
        z-index: 1;

        h1 {
            color: $azul;
            text-align: center;
            font-family: Candy;
            font-size: 4rem;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            -webkit-text-stroke: white 4px;

            @media (max-width: 480px) {
                font-size: 3.5rem;
            }
        }

        .NubesProductos {

            :nth-child(1) {
                @include NubesStyle();
                right: 0;
                top: 5rem;
            }

            :nth-child(2) {
                @include NubesStyle();
                top: 15rem;
                z-index: -1;
            }

            :nth-child(3) {
                @include NubesStyle();
                top: 70rem;
            }

            :nth-child(4) {
                @include NubesStyle();
                bottom: 10rem;
            }

            :nth-child(5) {
                @include NubesStyle();
                right: 0;
                bottom: 10rem;
            }

            :nth-child(6) {
                @include NubesStyle();
                right: 0;
                bottom: 65rem;
            }
        }

        .ProductosCont {
            margin: 5rem 0;

            .ProductRow {
                display: flex;
                justify-content: space-around;
                margin: 2rem 0;

                .ProductItem {
                    position: relative;
                    width: 20rem;
                    height: 20rem;
                    border-radius: 2rem;
                    text-decoration: none;
                    box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.3);

                    @media (max-width: 910px) {
                        width: 14rem;
                        height: 14rem;
                    }

                    @media (max-width: 480px) {
                        width: 12rem;
                        height: 12rem;
                    }

                    img {
                        width: 20rem;
                        border-radius: 2rem;
                        
                        @media (max-width: 910px) {
                            width: 14rem;
                        }

                        @media (max-width: 480px) {
                            width: 12rem;
                        }
                    }

                    .BlackBlock {
                        background-color: rgba(0, 0, 0, 0.4);
                        width: 20rem;
                        height: 20rem;
                        position: absolute;
                        bottom: 0;
                        border-radius: 2rem;
                        z-index: 0;
                        opacity: 0;
                        transition: 0.1s ease-in;

                        @media (max-width: 910px) {
                            width: 14rem;
                            height: 14rem;
                        }

                        @media (max-width: 480px) {
                            width: 12rem;
                            height: 12rem;
                        }
                    }

                    .ProductInfo {
                        position: absolute;
                        text-align: center;
                        bottom: 2rem;
                        width: 100%;
                        left: 50%;
                        transform: translate(-50%);
                        z-index: 1;
                        opacity: 0;

                        h3 {
                            color: $azul;
                            font-family: Candy;
                            font-size: 1.5rem;
                            font-style: normal;
                            font-weight: 400;
                            line-height: normal;
                            -webkit-text-stroke: white 0.5px;
                        }

                        p {
                            color: white;
                            font-family: learn;
                            font-size: 1.5rem;
                        }
                    }
                }

                .ProductItem:hover {
                    .BlackBlock {
                        opacity: 100%;
                    }

                    .ProductInfo {
                        opacity: 100%;
                    }
                }
            }
        }    
    }
}



// servicios.html



#servicios {
    main {
        background-color: $verde;
        text-align: center;
        display: flex;
        flex-flow: column;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 0;

        h1 {
            color: #00FF8B;
            text-align: center;
            font-family: Candy;
            font-size: 4rem;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            -webkit-text-stroke: white 4px;

            @media (max-width: 480px) {
                font-size: 3.5rem;
            }
        }

        .NubesServ {

            :nth-child(1) {
                @include NubesStyle();
                right: 0;
                top: 10rem;
            }

            :nth-child(2) {
                @include NubesStyle();
                top: 10rem;
                left: 0;
            }

            :nth-child(3) {
                @include NubesStyle();
                bottom: -15rem;
                left: 0;
            }

            :nth-child(4) {
                @include NubesStyle();
                right: 0;
                bottom: -5rem;
            }
        }

        article {
            display: flex;
            align-items: center;
            gap: 2rem;
            width: 80%;

            @media (max-width: 700px) {
                flex-flow: column-reverse;
            }

            img {
                border-radius: 2rem;
                border: dashed #0e612e 7px;

                @media (max-width: 700px) {
                    flex-flow: column-reverse;
                    width: 100%;
                }
            }

            section {
                display: flex;
                flex-flow: column;
                width: 50%;
                gap: 1rem;
                
                @media (max-width: 700px) {
                    width: 100%;
                }

                h2 {
                    color: #0e612e;
                    text-align: center;
                    font-family: Candy Beans;
                    font-size: 30px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                }

                p {
                    font-family: learn;
                    font-size: $parrafo;
                }

                a {
                    font-family: learn;
                    display: flex;
                    gap: 0.7rem;
                    justify-content: center;
                    font-size: 2rem;
                    text-decoration: none;
                    color: white;
                    transition: all 0.3s ease-in-out;

                    span {
                        display: none;
                    }

                    &:hover {
                        span {
                            display: block;
                        }
                    }
                }
            }

            img {
                width: 50%;

                @media (max-width: 700px) {
                    width: 100%;
                }
            }
        }
        
        .BtnWha {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 2rem;
            border: 0.5rem dashed white;
            padding: 1rem 2rem;
            border-radius: 3rem;
            
            i {
                font-size: 3rem;
            }

            h2 {
                color: #FFF;
                text-align: center;
                font-family: Candy;
                font-size: 2rem;
                font-style: normal;
                font-weight: 400;
                line-height: normal;

                @media (max-width: 550px) {
                    font-size: 1.7rem;
                }
            }
        }
    }    
}



// nosotros.html



#nosotros {

    main {
        background-color: $amarillo;
        z-index: 0;
        position: relative;

        .NubesNosotros {
            :nth-child(1) {
                @include NubesStyle();
                top: 7rem;
                left: 0;
            }

            :nth-child(2) {
                @include NubesStyle();
                top: 15rem;
                right: 0;
            }

            :nth-child(3) {
                @include NubesStyle();
                bottom: -3rem;
                right: 0;
            }
        }

        .NosotrosCont {
            width: 80%;
            margin: auto;

            h1 {
                color: #EADD00;
                text-align: center;
                font-family: candy;
                font-size: 4rem;
                font-style: normal;
                font-weight: 400;
                line-height: normal;

                // font-family: candy;
                // font-size: 3.5rem;
                // color: $amarillodark;
                -webkit-text-stroke: white 4px;

                @media (max-width: 480px) {
                    font-size: 3.5rem;
                }
            }
    
            p {
                font-family: learn;
                font-size: 2rem;
            }

            .BotonWha {
                text-decoration: none;
                display: flex;
                margin: 4rem;
                justify-content: center;

                .GrupoWhatsapp {
                    padding: 1rem 3rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 2rem;
                    background-color: white;
                    border-radius: 3rem;
    
                    h2 {
                        color: #545457;
                        text-align: center;
                        font-family: Candy;
                        font-size: 2rem;
                        font-style: normal;
                        font-weight: 400;
                        
                        @media (max-width: 480px) {
                            font-size: 1.5rem;
                        }
                    }
    
                    i {
                        font-size: 3rem;
                        color: #25CC64;
                    }
                }
            }
        }       
    }
}

#NuestrosProductos {
    main {
        background-color: $azul;
        z-index: 1;
    }

    .NubesProductos {
        :nth-child(1) {
            @include NubesStyle();
            right: 0;
            top: 5rem;
        }

        :nth-child(2) {
            @include NubesStyle();
            top: 5rem;
            left: 0;
        }

        :nth-child(3) {
            @include NubesStyle();
            bottom: 0;
            left: 0;

            @media (max-width: 1220px) {
                display: none;
            }
        }

        :nth-child(4) {
            @include NubesStyle();
            bottom: 0rem;
            right: 0;

            @media (max-width: 1220px) {
                display: none;
            }
        }
    }

    h1 {
        color: #00D4FF;
        text-align: center;
        font-family: Candy;
        font-size: 4rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        -webkit-text-stroke: white 4px;

        @media (max-width: 910px) {
            font-size: 3.5rem;
        }

        @media (max-width: 480px) {
            font-size: 3rem;
        }
    }
    
    .ProductPost {
        width: 70%;
        margin: auto;
        display: flex;
        gap: 4rem;
        margin-bottom: 4rem;

        @media (max-width: 700px) {
            gap: 2rem;
        }

        @media (max-width: 700px) {
            flex-flow: column;
            width: 100%;
        }

        .ProductGraphic {
            width: 50%;
            display: flex;
            margin: 0 auto;
            flex-flow: column;
            gap: 1rem;

            @media (max-width: 700px) {
                width: 70%;
            }

            .MainPhoto {
                
                text-align: center;

                img {
                    width: 100%;
                    border-radius: 2rem;
                }
            }

            .ProductSubCarrusel {
                display: flex;
                justify-content: center;
                gap: 1rem;

                img {
                    width: 30%;
                    border-radius: 2rem;
                }
            }
        }

        .ProductInfoPost {
            display: flex;
            flex-flow: column;
            align-items: center;
            gap: 3rem;
            width: 50%;
            margin: 0 auto;

            @media (max-width: 700px) {
                flex-flow: column-reverse;
                width: 100%;
                gap: 1rem;
            }

            ul {

                @media (max-width: 700px) {
                    width: 70%;
                }

                li {
                    font-family: learn;
                    font-size: $parrafo;
                    color: white;
                }
            }

            .PriceCont {
                position: relative;
                margin: 0 auto;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;

                @media (max-width: 700px) {
                    width: 100%;
                }

                #PriceHide {
                    display: none;
                }

                .CounterCont {
                    // position: absolute;
                    display: flex;
                    align-items: center;
                    border: solid white 0.4rem;
                    border-radius: 2rem;
                    padding: 0rem 2.5rem 0 0rem;
                    bottom: 0;

                    #quantity {
                        color: white;
                        text-align: center;
                        width: 2.5rem;
                        background-color: transparent;
                        border: none;
                        overflow: visible;
                        font-family: Candy;
                        font-size: 2rem;
                        font-style: normal;
                        font-weight: 400;
                        line-height: normal;
                        margin: 0.5rem 0rem 0.5rem 1rem;

                        @media (max-width: 920px) {
                            font-size: 1.5rem;
                        }

                        @media (max-width: 450px) {
                            font-size: 1.2rem;
                        }
                    }

                    .Arrows {
                        display: flex;
                        flex-flow: column;

                        svg {
                            margin-block: -0.5rem;
                            text-decoration: none;
                            color: white;
                            cursor: pointer;
                        }
                    }
                }

                .Price {
                    background-color: white;
                    border-radius: 3rem;
                    border: solid $azul 0.4rem;
                    padding: 1rem 2rem;
                    margin-left: -3rem;
                    display: flex;
                    // position: absolute;
                    // left: 5.5rem;

                    h2 {
                        color: $azul;
                        text-align: center;
                        font-family: Candy;
                        font-size: 2.5rem;
                        font-style: normal;
                        font-weight: 400;
                        line-height: normal;

                        @media (max-width: 1088px) {
                            font-size: 2rem;
                        }

                        @media (max-width: 620px) {
                            font-size: 1.9rem;
                        }
                    }
                }
            }
        }
    }

    table {
        margin: auto;
        width: 70%;
        text-align: center;
        font-family: candy;

        @media (max-width: 800px) {
            width: 90%;             
        }
        
        tbody {
            background:     white;
        }

        tr {
            transition: all 0.15s ease-in-out;
        }

        th, td {
            padding: 0.5rem 1rem;
            font-size: 2rem;
            border-radius: 2rem;

            @media (max-width: 800px) {
                font-size: 1rem;              
            }

            span {
                @media (max-width: 800px) {
                    display: none;
                }
            }
        }

        th {
            color: white;
            border: solid white 0.3rem;

            @media (max-width: 800px) {
                padding: 0.2rem;                
            }
        }

        td {
            color: $azul;
            padding: 1rem;

            @media (max-width: 800px) {
                padding: 0.2rem;                
            }
        }

        tbody tr:hover {
            background: $amarillo;
            cursor: pointer;
        }
    }

    .DestacadosCont {
        margin-block: 5rem;

        @media (max-width: 800px) {
            margin-block: 3rem;
        }
    
        @media (max-width: 480px) {
            margin-block: 2rem;
        }
    
        .DestacadosHeader {
            text-align: center;
    
            h2 {
                font-family: candy;
                font-size: $subtitle;
                color: white;
                -webkit-text-stroke: 1.2px $rojo;

                @media (max-width: 800px) {
                    font-size: 2rem;
                }
            }
    
            p {
                font-family: learn;
                color: white;
                font-size: $parrafo;

                @media (max-width: 480px) {
                    font-size: 1rem;
                }
            }
        }
    
        .swiper.DestacadosV2 {
        
        --swiper-theme-color: #EC1651;
        z-index: 2;
    
            .swiper-slide {
                display: flex;
                justify-content: space-around;
            }
    
            @mixin DestacadoSlideStyle() {
                text-align: center;
    
                h3 {
                    font-family: candy;
                    font-size: $subtitle2;

                    @media (max-width: 480px) {
                        font-size: 1rem;
                    }
                }
    
                p {
                    font-family: learn;
                    font-size: $parrafo;
                    color: white;

                    @media (max-width: 480px) {
                        font-size: 1rem;
                    }
                }
    
                img {
                    width: 25rem;

                    @media (max-width: 800px) {
                        width: 15rem;
                    }
    
                    @media (max-width: 480px) {
                        width: 10rem;
                    }
                }
            }
    
            .DestacadoSlideA, .DestacadoSlideB {
                @include DestacadoSlideStyle();
            }
    
            .DestacadoSlideA {
                h3 {
                    color: $rojo;
                }
            }
    
            .DestacadoSlideB {
                h3 {
                    color: $rojo;
                }
            }
        }
    }

    .BtnWha {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        border: 0.5rem dashed white;
        padding: 1rem 2rem;
        border-radius: 3rem;
        width: 60%;
        margin: auto;
        margin-block: 3rem;

        @media (max-width: 550px) {
            width: 90%;
        }
        
        i {
            font-size: 3rem;
        }

        h2 {
            color: #FFF;
            text-align: center;
            font-family: Candy;
            font-size: 2rem;
            font-style: normal;
            font-weight: 400;
            line-height: normal;

            @media (max-width: 550px) {
                font-size: 1.5rem;
            }
        }
    }
}