/********** Template CSS **********/
:root {
    --primary: #BA61DF;
    --secondary: #FF4A93;
    --light: #E77189;
    --dark: #0C2B4B;
    --rgb-one: #F8597A;
    --pink: #E04B8C;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}


p {
    font-size: 1.2rem;
    color: #000;
}

ul {
    color: #fff;
    font-size: 1.2rem;
    padding-left: 0;
}

ul li {
    list-style: none;
}



.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button Call to Action ***/

.btn-action {
    position: relative;
    top: 15px;
    background: #128C7E;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900 !important;
    border-radius: 3px;
    border: 2px solid #128C7E;
    transition: .3s;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/** Titles ***/
.title-primary {
    color: var(--rgb-one);
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 1px 1px 2px var(--light);
}

strong {
    color: var(--rgb-one);
}

.title-secondary {
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 1px 1px 2px white;
}



/*** Navbar ***/
.navbar {
    /* background: linear-gradient(to right, rgba(248, 89, 122) 20%, rgba(231, 113, 137) 88%); */
    background: #CB447F !important;
    height: 100px;
    width: 90%;
    left: 5%;
    right: 5%;
    border-radius: 0px 0px 15px 15px;
}

@media (max-width: 576px) {
    .navbar {
        height: 85px;
    }

    .navbar .navbar-brand,
    .navbar a.btn {
        padding-left: 0 !important;
    }
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar a.button-contact {
    background: #fff;
    padding: 50px 30px 40px 25px;
    /*font-size: 20px;*/
    font-size: 23px;
    font-weight: 900;
    color: var(--pink);
}

@media (max-width: 576px) {
    .navbar a.button-contact {
        background: #fff;
        padding: 35px 14px 30px 6px;
        font-size: 13px;
        font-weight: 900;
        top: 0;
        position: absolute;
        right: 20px;
        color: #d9166b;
    }

    .navbar a.button-contact svg {
        height: 25px !important;
        width: 40px !important;
    }

    .navbar .navbar-brand img {
        height: 70px;
        width: 70px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .navbar {
        height: 120px !important;
    }

    /*.facts .play-btn {
        top: calc(33% - 30px) !important;
    }*/

}

@media (min-width: 768px) and (max-width: 1023px) {

    .facts .play-btn {
        top: calc(40% - 50px) !important
    }

    .img-banner-video {
        width: 95% !important;
    }

}


.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    /*background: url("../img/portada-2.webp") top center;
    background-size: cover;*/
    position: relative;
    height: 70vh;
}


#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}




.hero-section .wave {
    width: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    bottom: -35px;
    /*bottom: 100px;*/
    /*bottom: 0;*/
}

.hero-section .wave svg {
    width: 100%;
}

/* .hero-section,
.hero-section>.container>.row {
    min-height: 880px;
} */

@media screen and (max-width: 480px) {

    #hero {
        height: 0;
    }

    .hero-section .wave {
        bottom: -120px;
    }

    .hero-section,
    .hero-section>.container>.row {
        min-height: 330px;
    }

    .facts {
        top: 125px !important;
        z-index: 1;
    }

    .hero-section .call-action {
        top: 30px !important;
    }
}


@media (min-width: 481px) and (max-width: 991px) {

    .hero-section,
    .hero-section>.container>.row {
        /*min-height: 710px;*/
        /*min-height: 430px;*/
        min-height: 330px;
    }

    .promo-vid {
        margin-top: -165px !important;
    }

    /*.navbar {
        height: 105px;
    }*/

    #hero {
        height: 0;
        /*margin-bottom: 160px;*/
        margin-bottom: 100px;
    }

    .facts {
        /*top: 310px !important;*/
        top: 150px !important;
    }

    .hero-section .wave {
        /*bottom: -150px;*/
        bottom: -75px;
    }
}

.hero-section .call-action {
    position: relative;
    z-index: 1;
    top: -30px;
    background: #128C7E;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    border-radius: 5px;
    transition: .3s;
    border: 2px solid #128C7E;
    box-shadow: 0px 9px 25px 5px rgba(18, 140, 126, 0.3);
}

.hero-section .call-action:hover {
    background: #fff;
    border: 2px solid #128C7E;
    color: #128C7E;
    transition: .3s;
}

@media (min-width: 481px) and (max-width: 992px) {
    .hero-section .call-action {
        top: 100px;
    }
}

.facts {
    /*top: 400px;*/
    top: 175px;
    z-index: 1;
}

.facts .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--light) 50%, rgba(231, 113, 137, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(60% - 47px);
    overflow: hidden;
}

.facts .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 74, 147, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.facts .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.facts .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.facts .play-btn:hover:after {
    border-left: 15px solid var(--secondary);
    transform: scale(20);
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Banner end
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/


.benefits .title-primary::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--rgb-one);
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 577px) {
    .benefits img{
        height: 140px !important;
        width: 80% !important;
    } 
}

/*--------------------------------------------------------------
# Bnefits end
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Why Section
--------------------------------------------------------------*/

#why {
    background: #de5080;
}

/*--------------------------------------------------------------
# Why end
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# procedure Section
--------------------------------------------------------------*/

.procedure {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../img/Centro-meraki-peru-meraki-portada.webp") top center;
    background-size: cover;
    position: relative;
}


/*--------------------------------------------------------------
# procedure end
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# results Section
--------------------------------------------------------------*/

.results .title-primary::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--rgb-one);
    display: inline-block;
    vertical-align: middle;
}

.results .btn-action {
    background: #E04B8C;
    border: 2px solid #E04B8C;
    transition: .3s;

}

.results .btn-action:hover {
    background: #fff;
    border: 2px solid #E04B8C;
    color: #E04B8C;
    transition: .3s;
}


/*--------------------------------------------------------------
# results end
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# help Section
--------------------------------------------------------------*/

.help {
    width: 100%;
    background: linear-gradient(rgb(224 75 140 / 42%), rgb(224 75 140 / 42%)), url(../img/portada-1.webp) center center;
    background-size: cover;
    /*position: relative;*/
}

.help .count-box {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    border-radius: 5px;
    padding: 30px 25px 30px 0;
}

.count-box h1 {
    color: var(--pink);
    font-size: 20px;
}

.count-box p {
    font-size: 15px;
}

.logo {
    transition: 0.3s all;
}

.logo:hover {
    transform: scale(1.07);
    transition: 0.3s all;
}

/* .count-box img{
    height: 65px;
    width: 60px;
} */


/*--------------------------------------------------------------
# help end
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# services Section
--------------------------------------------------------------*/
.services .gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.services .gallery-item h1 {
    font-size: 23px;
    color: #fff;
}

.services .gallery-item .btn-action {
    background: var(--pink);
    border: 2px solid var(--pink);
    transition: .3s;
}

.services .gallery-item .btn-action:hover {
    background: #fff;
    border: 2px solid var(--pink);
    color: var(--pink);
    transition: .3s;
}



/*--------------------------------------------------------------
# services end
--------------------------------------------------------------*/


.footer .consult-box {
    padding: 70px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: -100px 10px 100px 10px;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    margin-top: -100px;
}

.footer .consult-box img {

    left: -186px;
    width: 30%;
    height: 200px;
    position: absolute;
    opacity: .2;

    /*left: -200px;
    width: 35%;*/

}

/*.footer .consult-box::before{
    background-image: url(../img/flor.png);
    background-repeat:   no-repeat;
    left: 20px;
}*/

@media (max-width: 575px) {
    .footer .consult-box img {
        left: -175px;
        position: absolute;
        width: 100%;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    /*background-color: var(--primary);
    border: 10px solid var(--primary);*/
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--rgb-one);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--rgb-one);
}

.owl-item img {
    width: 150px;
    height: 150px;
}

.footer {
    background: #94315c;
    /*height: 400px;*/
    padding: 0;
    font-size: 14px;
    padding: 50px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer .icon {
    margin-right: 15px;
    font-size: 22px;
    line-height: 0;
}


.footer h4 {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    color: #fff;
}



.footer .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
}

.footer a {
    color: #dbdbdb;
}

.footer p {
    font-size: 16px;
    color: #dbdbdb;
}

.footer strong {
    color: #ffffff;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

/*.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}*/

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 10px;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 10px;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #f6f6f6;
    border-radius: 10px;
    border-bottom: 3px solid var(--rgb-one);
    height: 180px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    margin-right: 15px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: var(--rgb-one);
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: var(--pink);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
    font-size: 16px;
    color: #565656;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .faq {
        padding: 0;
    }
}

.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: var(--light);
}

.faq .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.faq .content p {
    font-size: 15px;
    color: #000;
}

.faq .img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
}

.faq .accordion-item {
    border: 0;
    margin-top: 15px;
    box-shadow: 0px 5px 25px 0px rgba(31, 31, 31, 0.06);
}

.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-button {
    padding: 15px 40px 20px 60px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    /*color: var(--pink);*/
    text-align: left;
    background: #fff;
    box-shadow: none;
    border-radius: 5px;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--rgb-one);
    border-bottom: 0;
    box-shadow: none;
}

.faq .question-icon {
    position: absolute;
    top: 14px;
    left: 25px;
    font-size: 20px;
    color: var(--rgb-one);
}

.faq .accordion-button:after {
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--primary);
}

.faq .accordion-body {
    padding: 0 30px 25px 60px;
    border: 0;
    border-radius: 5px;
    background: #fff;
    box-shadow: none;
}



/*--------------------------------------------------------------
SCROLL
--------------------------------------------------------------*/
::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:active {
    background-color: var(--secondary);
}

::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 0px;
}

::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active {
    background: #fff;
}

.floatWapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    transition: 0.3s all;
}

.floatWapp:hover {
    color: #FFF;
    transform: scale(1.08);
    transition: 0.3s all;
}

.floatWapp svg {
    margin-top: 10px;
}

.floatWapp:after,
.floatWapp:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid #25D366;
    -webkit-animation-name: popupBtn;
    animation-name: popupBtn;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.my-floatWapp {
    margin-top: 16px;
}

@-webkit-keyframes popupBtn {
    0% {
        transform: scale(1);
        opacity: .6
    }

    50% {
        transform: scale(1.6);
        opacity: .3
    }

    to {
        transform: scale(2.2);
        opacity: 0
    }
}

@keyframes popupBtn {
    0% {
        transform: scale(1);
        opacity: .6
    }

    50% {
        transform: scale(1.6);
        opacity: .3
    }

    to {
        transform: scale(2.2);
        opacity: 0
    }
}


/*--------------------------------------------------------------
# redes sociales
--------------------------------------------------------------*/

.social-rrss {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 30%;
    right: 0;
    margin-bottom: 10px;
    width: 200px;
    z-index: 9999;
}

.social-rrss a {
    text-decoration: none;
    font-weight: bold;
    padding: 0.6em;
    margin: 8px;
    text-align: left;
    transform: translateX(150px);
    transition: all 0.5s;
}

.book {
    color: #fff;
    border-radius: 50px 0px 0px 50px;
}

.social-rrss a i {
    margin-right: 20px;
    width: 30px;
    height: 30px;
    background: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
}

.social-rrss>a:hover {
    transform: translateX(0px);
    color: white;
}

.img-banner-video {
    border-radius: 10px;
    /*height: 50%;
    width: 70%;*/
    box-shadow: 0px 2px 5px 5px rgb(0 0 0 / 7%);
    padding: 15px;
    background: white;
    margin-bottom: 30px;
}


.custom-shape-divider-bottom-1701193075 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1;
}

.custom-shape-divider-bottom-1701193075 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 47px;
}

.custom-shape-divider-bottom-1701193075 .shape-fill {
    fill: #FFFFFF;
}

.promo-vid {
    margin-top: -260px;
}

@media (max-width: 576px) {
    .promo-vid {
        margin-top: -180px;
    }

    .img-banner-video {
        /*width: 90% !important;*/
        height: auto;
    }

    .facts .play-btn {
        width: 70px !important;
        height: 70px !important;
        left: calc(50% - 30px) !important;
        top: calc(30% - 30px) !important;
    }

}


.custom-btn {
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    /* box-shadow:
     7px 7px 20px 0px rgb(0 0 0 / 17%), 4px 4px 5px 0px rgb(0 0 0 / 3%); */
    outline: none;
}

/* 11 */
.btn-11 {
    border: none;
    background: #0e645a;
    color: #fff;
    overflow: hidden;
}

.btn-11:hover {
    text-decoration: none;
    color: #fff;
}

.btn-11:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}

.btn-11:hover {
    opacity: .7;
}

.btn-11:active {
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .3),
        -4px -4px 6px 0 rgba(116, 125, 136, .2),
        inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
        inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}


@keyframes shiny-btn1 {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }

    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

/* 15 */
.btn-15 {
    background: #0e645a;
    border: none;
    z-index: 1;
    color: #fff !important;
}

.btn-15:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #de5080;
    border-radius: 5px;
    /* box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1); */
    transition: all 0.3s ease;
}

.btn-15:hover {
    color: #fff;
}

.btn-15:hover:after {
    left: 0;
    width: 100%;
}

.btn-15:active {
    top: 2px;
}


/* 15 */
.btn-16 {
    background: #128c7e;
    border: none;
    z-index: 1;
}

.btn-16:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #769383;
    border-radius: 5px;
    /* box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1); */
    transition: all 0.3s ease;
}

.btn-16:hover {
    color: #fff;
}

.btn-16:hover:after {
    left: 0;
    width: 100%;
}

.btn-16:active {
    top: 2px;
}


/* 15 */
.btn-17 {
    background: #e04b8c;
    border: none;
    z-index: 1;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
}

.btn-17:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #128c7e;
    border-radius: 5px;
    /* box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1); */
    transition: all 0.3s ease;
}

.btn-17:hover {
    color: #fff;
}

.btn-17:hover:after {
    left: 0;
    width: 100%;
}

.btn-17:active {
    top: 2px;
}


.custom-shape-divider-bottom-1701199881 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1701199881 svg {
    position: relative;
    display: block;
    width: calc(120% + 1.3px);
    height: 64px;
}

.custom-shape-divider-bottom-1701199881 .shape-fill {
    fill: #FFFFFF;
}