@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bangers&display=swap");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,500,600,700,800,900");
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    background: #fefaf1;
}

a {
    color: #5fcf80;
    text-decoration: none;
}

a:hover {
    color: #86db9f;
    text-decoration: none;
}

h1 {
    font-size: 48px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 14px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    color: #44425a;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {
}

/* Video Youtube Academia */
.videocorporativo {
    padding: 0px 0;
}

.videocorporativo .btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
    transition: all 0.3s ease-in-out;
}

.videocorporativo .btn-primary:hover {
    background-color: #cc5200;
    border-color: #cc5200;
}

.videocorporativo h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2; /* Ajusté el line-height para mejor legibilidad */
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.videocorporativo .videocorporativo-content h2 {
    font-size: 40px;
    line-height: 0.6;
    margin-bottom: 20px;
}

.videocorporativo .content p {
    font-size: 15px;
    text-align: justify;
    hyphens: auto; /* Permite la división de palabras largas */
    line-height: 1.6; /* Mejora la legibilidad */
}

/*--------------------------------------------------------------
# Botón de volver al inicio
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #e7276f; /*37423b*/
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #fc9ebc;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #444444;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #000;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0px 60px 0px 0px;
}

#topbar .contact-info i {
    font-style: normal;
    color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    transition: 0.3s;
}

#topbar .contact-info i a:hover {
    color: #fff;
    text-decoration: underline;
}

#topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

#topbar .social-links a:hover {
    color: #fc9ebc;
}

/**
* Appointment Button *
*/
.appointment-btn {
    margin-left: 25px;
    background: #1977cc;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.appointment-btn:hover {
    background: #166ab5;
    color: #fff;
}

@media (max-width: 768px) {
    .appointment-btn {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 5px 0;
    box-shadow: var(--shd, 0 0 8px rgba(0, 0, 0, 0.7));
}

#header.header-scrolled {
    padding: 2px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    /*font-family:  "Tangerine", sans-serif;
    font-size: 45px;
  */
    font-family: "Kaushan Script", cursive;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 90px;
}

@media (max-width: 760px) {
    #header .logo {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 400;
        font-family: "Kaushan Script", cursive;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 70vh;
    background-color: rgba(4, 12, 21, 0.8);
    overflow: hidden;
    position: relative;
    padding: 0;
    margin-top: 0px;
}

#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 {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(4, 12, 21, 0.5);
}

#hero .carousel-container {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 62px;
    left: 50px;
    right: 50px;
}

#hero .carousel-textanime {
    background: 50% 100%/50% 50% no-repeat radial-gradient(ellipse at bottom, #efb3a8, transparent, transparent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 4.5vw;
    font-family: "Source Sans Pro", sans-serif;
    -webkit-animation:
        reveal 3000ms ease-in-out forwards 200ms,
        glow 2500ms linear infinite 2000ms;
    animation:
        reveal 3000ms ease-in-out forwards 200ms,
        glow 2500ms linear infinite 2000ms;
}

@-webkit-keyframes reveal {
    80% {
        letter-spacing: 0.5px;
    }
    100% {
        background-size: 300% 300%;
    }
}
@keyframes reveal {
    80% {
        letter-spacing: 0.5px;
    }
    100% {
        background-size: 300% 300%;
    }
}
@-webkit-keyframes glow {
    40% {
        text-shadow: 0 0 2px #efb3a8;
    }
}
@keyframes glow {
    40% {
        text-shadow: 0 0 2px #efb3a8;
    }
}

#hero h2 {
    color: #fff;
    margin: 0;
    font-size: 120px;
    line-height: 0.6;
    font-family: "Retro Signature", sans-serif;
    margin-bottom: 20px;
}

#hero p {
    animation-delay: 0.4s;
    color: #fff;
    margin-top: 10px;
    font-size: 18.5px;
    font-style: italic;
}

@media (min-width: 1200px) {
    #hero p {
        width: 50%;
    }
}

@media (min-width: 768px) {
    #hero p {
        width: 50%;
    }
}

@media (min-width: 640px) {
    #hero p {
        width: 50%;
    }
}

/* ----------- iPad 1, 2, Mini and Air ----------- */

/* Portrait and Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    #hero p {
        width: 50%;
    }
    #hero h2 {
        color: #fff;
        margin: 0;
        font-size: 120px;
        line-height: 0.6;
        font-family: "Retro Signature", sans-serif;
        margin-bottom: 20px;
    }

    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #ed502e;
        margin-top: 15px;
    }

    #hero .btn-get-started:hover {
        background: #ef6445;
    }

    #hero .btn-watch-video {
        font-size: 14px;
        transition: 0.5s;
        margin-left: 10px;
        color: #fdebeb;
        font-weight: 600;
        display: flex;
        padding: 15px 32px 0px 10px;
        align-items: center;
    }

    #hero .btn-watch-video i {
        color: #fecd4d;
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    #hero .btn-watch-video:hover {
        color: #ef6445;
    }

    #hero .btn-watch-video:hover i {
        color: #ef6445;
    }
}

/* Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
    #hero p {
        width: 50%;
    }
    #hero h2 {
        color: #fff;
        margin: 0;
        font-size: 120px;
        line-height: 0.6;
        font-family: "Retro Signature", sans-serif;
        margin-bottom: 20px;
    }

    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #ed502e;
        margin-top: 15px;
    }

    #hero .btn-get-started:hover {
        background: #ef6445;
    }

    #hero .btn-watch-video {
        font-size: 14px;
        transition: 0.5s;
        margin-left: 10px;
        color: #fdebeb;
        font-weight: 600;
        display: flex;
        padding: 15px 32px 0px 10px;
        align-items: center;
    }

    #hero .btn-watch-video i {
        color: #fecd4d;
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    #hero .btn-watch-video:hover {
        color: #ef6445;
    }

    #hero .btn-watch-video:hover i {
        color: #ef6445;
    }
}

/* Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
    #hero p {
        width: 50%;
    }

    #hero h2 {
        color: #fff;
        margin: 0;
        font-size: 120px;
        line-height: 0.6;
        font-family: "Retro Signature", sans-serif;
        margin-bottom: 20px;
    }

    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #ed502e;
        margin-top: 15px;
    }

    #hero .btn-get-started:hover {
        background: #ef6445;
    }

    #hero .btn-watch-video {
        font-size: 14px;
        transition: 0.5s;
        margin-left: 10px;
        color: #fdebeb;
        font-weight: 600;
        display: flex;
        padding: 15px 32px 0px 10px;
        align-items: center;
    }

    #hero .btn-watch-video i {
        color: #fecd4d;
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    #hero .btn-watch-video:hover {
        color: #ef6445;
    }

    #hero .btn-watch-video:hover i {
        color: #ef6445;
    }
}

/* ----------- FIN iPad 1, 2, Mini and Air ----------- */
/* ----------- iPad Pro 10.5" ----------- */

/* Portrait and Landscape */
@media only screen and (min-device-width: 834px) and (max-device-width: 1112px) and (-webkit-min-device-pixel-ratio: 2) {
    #hero p {
        width: 50%;
    }

    #hero h2 {
        color: #fff;
        margin: 0;
        font-size: 120px;
        line-height: 0.6;
        font-family: "Retro Signature", sans-serif;
        margin-bottom: 20px;
    }

    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #ed502e;
        margin-top: 15px;
    }

    #hero .btn-get-started:hover {
        background: #ef6445;
    }

    #hero .btn-watch-video {
        font-size: 14px;
        transition: 0.5s;
        margin-left: 10px;
        color: #fdebeb;
        font-weight: 600;
        display: flex;
        padding: 15px 32px 0px 10px;
        align-items: center;
    }

    #hero .btn-watch-video i {
        color: #fecd4d;
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    #hero .btn-watch-video:hover {
        color: #ef6445;
    }

    #hero .btn-watch-video:hover i {
        color: #ef6445;
    }
}

/* Portrait */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen and (min-device-width: 834px) and (max-device-width: 834px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    #hero p {
        width: 50%;
    }

    #hero h2 {
        color: #fff;
        margin: 0;
        font-size: 120px;
        line-height: 0.6;
        font-family: "Retro Signature", sans-serif;
        margin-bottom: 20px;
    }

    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #ed502e;
        margin-top: 15px;
    }

    #hero .btn-get-started:hover {
        background: #ef6445;
    }

    #hero .btn-watch-video {
        font-size: 14px;
        transition: 0.5s;
        margin-left: 10px;
        color: #fdebeb;
        font-weight: 600;
        display: flex;
        padding: 15px 32px 0px 10px;
        align-items: center;
    }

    #hero .btn-watch-video i {
        color: #fecd4d;
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    #hero .btn-watch-video:hover {
        color: #ef6445;
    }

    #hero .btn-watch-video:hover i {
        color: #ef6445;
    }
}

/* Landscape */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    #hero p {
        width: 50%;
    }

    #hero h2 {
        color: #fff;
        margin: 0;
        font-size: 120px;
        line-height: 0.6;
        font-family: "Retro Signature", sans-serif;
        margin-bottom: 20px;
    }

    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #ed502e;
        margin-top: 15px;
    }

    #hero .btn-get-started:hover {
        background: #ef6445;
    }

    #hero .btn-watch-video {
        font-size: 14px;
        transition: 0.5s;
        margin-left: 10px;
        color: #fdebeb;
        font-weight: 600;
        display: flex;
        padding: 15px 32px 0px 10px;
        align-items: center;
    }

    #hero .btn-watch-video i {
        color: #fecd4d;
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    #hero .btn-watch-video:hover {
        color: #ef6445;
    }

    #hero .btn-watch-video:hover i {
        color: #ef6445;
    }
}

/* ----------- iPad Pro 12.9" ----------- */

/* Portrait and Landscape */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
    #hero p {
        width: 50%;
    }

    #hero h2 {
        color: #fff;
        margin: 0;
        font-size: 120px;
        line-height: 0.6;
        font-family: "Retro Signature", sans-serif;
        margin-bottom: 20px;
    }

    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #ed502e;
        margin-top: 15px;
    }

    #hero .btn-get-started:hover {
        background: #ef6445;
    }

    #hero .btn-watch-video {
        font-size: 14px;
        transition: 0.5s;
        margin-left: 10px;
        color: #fdebeb;
        font-weight: 600;
        display: flex;
        padding: 15px 32px 0px 10px;
        align-items: center;
    }

    #hero .btn-watch-video i {
        color: #fecd4d;
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    #hero .btn-watch-video:hover {
        color: #ef6445;
    }

    #hero .btn-watch-video:hover i {
        color: #ef6445;
    }
}

/* Portrait */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #ed502e;
        margin-top: 15px;
    }

    #hero .btn-get-started:hover {
        background: #ef6445;
    }

    #hero .btn-watch-video {
        font-size: 14px;
        transition: 0.5s;
        margin-left: 10px;
        color: #fdebeb;
        font-weight: 600;
        display: flex;
        padding: 15px 32px 0px 10px;
        align-items: center;
    }

    #hero .btn-watch-video i {
        color: #fecd4d;
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    #hero .btn-watch-video:hover {
        color: #ef6445;
    }

    #hero .btn-watch-video:hover i {
        color: #ef6445;
    }
}

/* Landscape */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    #hero p {
        width: 50%;
    }
    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #ed502e;
        margin-top: 15px;
    }

    #hero .btn-get-started:hover {
        background: #ef6445;
    }

    #hero .btn-watch-video {
        font-size: 14px;
        transition: 0.5s;
        margin-left: 10px;
        color: #fdebeb;
        font-weight: 600;
        display: flex;
        padding: 15px 32px 0px 10px;
        align-items: center;
    }

    #hero .btn-watch-video i {
        color: #fecd4d;
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    #hero .btn-watch-video:hover {
        color: #ef6445;
    }

    #hero .btn-watch-video:hover i {
        color: #ef6445;
    }
}

/* FIN IPAD */

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #ed502e;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 120px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    background: #ed502e;
    margin-top: 10px;
}

#hero .btn-get-started:hover {
    background: #ef6445;
}

#hero .btn-watch-video {
    font-size: 14px;
    transition: 0.5s;
    margin-left: 10px;
    color: #fdebeb;
    font-weight: 600;
    display: flex;
    padding: 15px 32px 0px 10px;
    align-items: center;
}

#hero .btn-watch-video i {
    color: #fecd4d;
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

#hero .btn-watch-video:hover {
    color: #ef6445;
}

#hero .btn-watch-video:hover i {
    color: #ef6445;
}

/*media query mobile carousel*/
@media (max-width: 992px) {
    #hero {
        height: 70vh;
    }

    #hero .carousel-container {
        text-align: center;
        top: 74px;
    }

    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 120px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #ed502e;
        margin-top: 10px;
    }

    #hero .btn-get-started:hover {
        background: #ef6445;
    }

    #hero .btn-watch-video {
        font-size: 14px;
        transition: 0.5s;
        margin-left: 10px;
        color: #fdebeb;
        font-weight: 600;
        display: flex;
        padding: 15px 32px 0px 10px;
        align-items: center;
    }

    #hero .btn-watch-video i {
        color: #fecd4d;
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    #hero .btn-watch-video:hover {
        color: #ef6445;
    }

    #hero .btn-watch-video:hover i {
        color: #ef6445;
    }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 100px;
    }

    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #ed502e;
        margin-top: 15px;
    }

    #hero .btn-get-started:hover {
        background: #ef6445;
    }

    #hero .btn-watch-video {
        font-size: 14px;
        transition: 0.5s;
        margin-left: 10px;
        color: #fdebeb;
        font-weight: 600;
        display: flex;
        padding: 15px 32px 0px 10px;
        align-items: center;
    }

    #hero .btn-watch-video i {
        color: #fecd4d;
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    #hero .btn-watch-video:hover {
        color: #ef6445;
    }

    #hero .btn-watch-video:hover i {
        color: #ef6445;
    }
}

@media (min-width: 1024px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 8px 14px;
    font-size: 14px;
    color: #0b2341;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #ed502e;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #fecd4d;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #ef6445;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fefaf1;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #ed502e;
    background-color: #fbeee8;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #37423b;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(32, 38, 34, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 6px;
    background-color: #fefaf1;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #37423b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #ed502e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #ed502e;
    background-color: #fbeee8;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Boton Whatsapp
--------------------------------------------------------------*/
/*.whatsapp2 {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.whatsapp2-icon {
    margin-top: 12px;
}*/

.float-button {
    text-decoration: none;
    position: fixed;
    padding: 10px;
    padding-right: 15px;
    bottom: 30px;
    right: 30px;
    color: #fff;
    background-color: #25d366;
    border-radius: 25px 30px 5px 25px;
    z-index: 100;
    font-family: Arial;
    font-size: 17px;
    animation: whatsapp-animation 0.5s ease-in-out;
    box-shadow: 1px 2px 5px 2px rgba(30, 30, 30, 0.3);
    transition: all 0.3s ease-out;
}

.float-button:hover {
    background-color: #128c7e;
    color: #fff;
}

.fa-whatsapp {
    font-size: 20px !important;
    padding-right: 5px;
    padding-left: 5px;
}

@keyframes whatsapp-animation {
    from {
        opacity: 0%;
    }

    to {
        opacity: 100%;
    }
}

@media screen and (max-width: 545px) {
    .float-button {
        text-decoration: none;
        position: fixed;
        padding: 10px;
        padding-right: 15px;
        bottom: 30px;
        right: 30px;
        color: #fff;
        background-color: #25d366;
        border-radius: 25px 30px 5px 25px;
        z-index: 100;
        font-family: Arial;
        font-size: 17px;
        animation: whatsapp-animation 0.5s ease-in-out;
        box-shadow: 1px 2px 5px 2px rgba(30, 30, 30, 0.3);
        transition: all 0.3s ease-out;
    }

    .fa-whatsapp {
        font-size: 20px !important;
        padding-right: 5px;
        padding-left: 5px;
    }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    background: #f6f7ff;
    padding: 15px 0;
    text-align: center;
}

.clients img {
    max-width: 100%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
}

.clients img:hover {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# Carousel Section
--------------------------------------------------------------*/

.img-bg:before {
    position: absolute;
    content: "";
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.5;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    top: 0;
}

.img-bg {
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center center;
}

@media (max-width: 768px) {
    .img-bg {
        height: 400px;
    }
}

.img-bg:before {
    position: absolute;
    content: "";
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.5;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    top: 0;
}

.img-bg .img-bg-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    position: relative;
    padding-left: 100px;
    padding-right: 100px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .img-bg .img-bg-inner {
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 50px;
    }
}

.img-bg .img-bg-inner h2,
.img-bg .img-bg-inner p {
    color: var(--color-white);
}

@media (max-width: 500px) {
    .img-bg .img-bg-inner p {
        display: none;
    }
}

.custom-swiper-button-next,
.custom-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

@media (max-width: 768px) {
    .custom-swiper-button-next,
    .custom-swiper-button-prev {
        display: none;
    }
}

.custom-swiper-button-next span,
.custom-swiper-button-prev span {
    font-size: 20px;
    color: rgba(var(--color-white-rgb), 0.7);
    transition: 0.3s all ease;
}

.custom-swiper-button-next:hover span,
.custom-swiper-button-next:focus span,
.custom-swiper-button-prev:hover span,
.custom-swiper-button-prev:focus span {
    color: rgba(var(--color-white-rgb), 1);
}

.custom-swiper-button-next {
    right: 40px;
}

.custom-swiper-button-prev {
    left: 40px;
}

/*--------------------------------------------------------------
# Galerias Section - 


--------------------------------------------------------------*/
.gallery {
    overflow: hidden;
}

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

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #d1d1d7;
    opacity: 1;
}

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

.gallery .swiper-slide-active {
    text-align: center;
}

@media (min-width: 992px) {
    .gallery .swiper-wrapper {
        padding: 40px 0;
    }

    .gallery .swiper-slide-active {
        border: 6px solid var(--color-primary);
        padding: 4px;
        background: #fff;
        z-index: 1;
        transform: scale(1.2);
    }
}

/*--------------------------------------------------------------
# Galerias Zoom
--------------------------------------------------------------*/
#demo {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.green {
    background-color: #6fb936;
}
.thumb {
    margin-bottom: 30px;
}

.page-top {
    margin-top: 85px;
}

img.zoom {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.transition {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.modal-header {
    border-bottom: none;
}
.modal-title {
    color: #000;
}
.modal-footer {
    display: none;
}

/*--------------------------------------------------------------
# Galerias Fotos Section
--------------------------------------------------------------*/
.galerias_fotos .container-fluid {
    padding-top: 100px;
}

.galerias_fotos .container-fluid h1 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 15px;
    font-size: 30px;
    font-weight: 500;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kaushan Script", cursive;
}

.galerias_fotos .content p {
    text-align: justify;
}

/*--------------------------------------------------------------
# Galerias Fotos Seccion Alumnos destacados
--------------------------------------------------------------*/
.galerias_alumnos .container-fluid {
    padding-top: 100px;
}

.galerias_alumnos .container-fluid h1 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 15px;
    font-size: 30px;
    font-weight: 00;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kaushan Script", cursive;
}

.galerias_alumnos .container-fluid p {
    text-align: justify;
    padding-right: 80px;
    padding-bottom: 30px;
    padding-left: 80px;
    font-size: 18px;
    font-style: italic;
}

@media (max-width: 760px) {
    .galerias_alumnos .container-fluid {
        padding-top: 100px;
    }

    .galerias_alumnos .container-fluid h1 {
        margin: 0;
        padding-top: 20px;
        padding-bottom: 15px;
        font-size: 30px;
        font-weight: 00;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kaushan Script", cursive;
    }

    .galerias_alumnos .container-fluid p {
        text-align: justify;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 30px;
        padding-left: 0px;
        font-size: 14px;
        font-style: italic;
    }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
    padding: 0px;
}

.events .event-item {
    background-size: cover;
    background-position: cente;
    min-height: 600px;
    padding: 30px;
}

@media (max-width: 575px) {
    .events .event-item {
        min-height: 500px;
    }
}

.events .event-item:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
}

.events .event-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    position: relative;
}

.events p {
    text-align: justify;
}

.events .event-item .price {
    color: #fff;
    border-bottom: 2px solid var(--color-primary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.events .event-item .description {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

@media (min-width: 1200px) {
    .events .swiper-slide-active + .swiper-slide {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        z-index: 1;
    }
}

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

.events .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d1d7;
    opacity: 1;
}

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

/*--------------------------------------------------------------
# Alumnos Destacados Section
--------------------------------------------------------------*/
.alumnos-destacados {
    padding-top: 60px;
    background-color: #fdebeb;
}

.alumnos-destacados .alumnos-member {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
    transition: 0.3s;
}

.alumnos-destacados .alumnos-member .member-img {
    position: relative;
    overflow: hidden;
}

.alumnos-destacados .alumnos-member .member-img:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-size: contain;
    z-index: 1;
}

.alumnos-destacados .alumnos-member .member-info {
    padding: 10px 15px 20px 15px;
}

.alumnos-destacados .alumnos-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--color-secondary);
}

.alumnos-destacados .alumnos-member .member-info h4 a {
    color: #37423b;
    transition: 0.3s;
}

.alumnos-destacados .alumnos-member .member-info h4 a:hover {
    color: #e7276f; /* Mejor contraste en el hover */
}

.alumnos-destacados .alumnos-member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #333; /* Mejor contraste de texto */
}

.alumnos-destacados .alumnos-member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: rgba(33, 37, 41, 0.7);
}

.alumnos-destacados .alumnos-member:hover {
    transform: translateY(-5px); /* Hover sutil en lugar de escalar toda la tarjeta */
    box-shadow: 0px 4px 20px rgba(55, 55, 63, 0.2);
}

.alumnos-destacados .alumnos-member:hover .member-img img {
    transform: scale(1.05); /* Zoom en imagen al hacer hover */
    transition: 0.3s ease-in-out;
}

.alumnos-destacados .alumnos-member:hover .social {
    right: 8px;
    opacity: 1;
}

.alumnos-destacados .alumnos-content {
    padding: 15px;
}

.alumnos-destacados h2 {
    font-size: clamp(30px, 5vw, 40px); /* Tamaño de fuente responsivo */
    line-height: 0.6;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
    margin-top: 80px;
}

.alumnos-destacados h4 {
    font-size: 17px;
    line-height: 1;
    margin-bottom: 40px;
}

.alumnos-destacados .alumnos-content h2 {
    font-size: clamp(24px, 5vw, 40px); /* Tamaño de fuente responsivo */
    line-height: 0.6;
    margin-bottom: 20px;
    margin-top: 80px;
}

.alumnos-destacados .alumnos-content h3 {
    font-weight: 700;
    font-size: 20px;
}

.alumnos-destacados .alumnos-content h3 a {
    color: #37423b;
    transition: 0.3s;
}

.alumnos-destacados .alumnos-content h3 a:hover {
    color: #5fcf80;
}

.alumnos-destacados .alumnos-content p {
    font-size: 14px;
    color: #555; /* Mejor contraste para accesibilidad */
}

.alumnos-destacados .alumnos-content h4 {
    font-size: 14px;
    background: #5fcf80;
    padding: 7px 14px;
    color: #fff;
    margin: 0;
}

/*--------------------------------------------------------------
# Carreras Section
--------------------------------------------------------------*/
.carreras {
    padding-top: 60px;
    background-color: #fdebeb;
}

.carreras .carreras-member {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
    transition: 0.3s;
    /* Mantener el tamaño original para desktop */
    width: 100%; /* No tocamos el ancho para desktop */
    height: auto; /* Deja la altura ajustada a contenido */
    margin: 0 auto; /* Centrado */
}

.carreras .carreras-member .member-img {
    position: relative;
    overflow: hidden;
}

.carreras .carreras-member .member-img:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-size: contain;
    z-index: 1;
}

.carreras .carreras-member .member-info {
    padding: 10px 15px 20px 15px;
}

.carreras .carreras-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--color-secondary);
}

.carreras .carreras-member .member-info h4 a {
    color: #37423b;
    transition: 0.3s;
}

.carreras .carreras-member .member-info h4 a:hover {
    color: #e7276f; /*#fc9ebc*/
}

.carreras .carreras-member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.carreras .carreras-member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: rgba(33, 37, 41, 0.7);
}

.carreras .carreras-member:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.carreras .carreras-member:hover .social {
    right: 8px;
    opacity: 1;
}

.carreras .carreras-content {
    padding: 15px;
}

.carreras h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 0.6;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.carreras h4 {
    font-size: 17px;
    line-height: 0.9;
    margin-bottom: 20px;
}

.carreras .carreras-content h2 {
    font-size: 40px;
    line-height: 0.6;
    margin-bottom: 20px;
}

.carreras .carreras-content h3 {
    font-weight: 700;
    font-size: 20px;
}

.carreras .carreras-content h3 a {
    color: #37423b;
    transition: 0.3s;
}

.carreras .carreras-content h3 a:hover {
    color: #5fcf80;
}

.carreras .carreras-content p {
    font-size: 14px;
    color: #777777;
}

.carreras .carreras-content h4 {
    font-size: 14px;
    background: #5fcf80;
    padding: 7px 14px;
    color: #fff;
    margin: 0;
}

/* Responsivo */
@media (max-width: 992px) {
    .carreras .col-lg-3 {
        width: 50%; /* En tablets y dispositivos pequeños, los cards ocuparán el 50% del ancho */
    }
}

@media (max-width: 768px) {
    .carreras .col-lg-3 {
        width: 50%; /* En dispositivos móviles, mostramos dos cards por fila */
        margin-bottom: 30px; /* Aumentamos el espacio entre filas */
    }

    /* Aseguramos que el contenedor de los cards tenga un padding apropiado para el diseño en dos columnas */
    .carreras .row {
        margin-left: 0;
        margin-right: 0;
    }
}

/*--------------------------------------------------------------
# Logos Section
--------------------------------------------------------------*/
.logos {
    padding-top: 60px;
    background-color: #ffffff;
}

.logos .logos-member {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    transition: 0.3s;
}

.logos .logos-member .member-img {
    position: relative;
    overflow: hidden;
    display: flex; /* Agregado */
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
}

.logos .logos-member .member-img:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-size: contain;
    z-index: 1;
}

.logos .logos-member .member-info {
    padding: 10px 15px 20px 15px;
}

.logos .logos-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--color-secondary);
}

.logos .logos-member .member-info h4 a {
    color: #37423b;
    transition: 0.3s;
}

.logos .logos-member .member-info h4 a:hover {
    color: #e7276f; /*#fc9ebc*/
}

.logos .logos-member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.logos .logos-member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: rgba(33, 37, 41, 0.7);
}

.logos .logos-member:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.logos .logos-member:hover .social {
    right: 8px;
    opacity: 1;
}

.logos .logos-content {
    padding: 15px;
}

.logos h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.logos h4 {
    font-size: 17px;
    line-height: 0.6;
    font-family: "Kobajeon", sans-serif;
    margin-bottom: 20px;
}

.logos .logos-content h2 {
    font-size: 40px;
    line-height: 0.6;
    font-family: "Kobajeon", sans-serif;
    margin-bottom: 20px;
}

.logos .logos-content h3 {
    font-weight: 700;
    font-size: 20px;
}

.logos .logos-content h3 a {
    color: #37423b;
    transition: 0.3s;
}

.logos .logos-content h3 a:hover {
    color: #5fcf80;
}

.logos .logos-content p {
    font-size: 14px;
    color: #777777;
}

.logos .logos-content h4 {
    font-size: 14px;
    background: #5fcf80;
    padding: 7px 14px;
    color: #fff;
    margin: 0;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .logos .row {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centrar los logos en pantallas pequeñas */
    }

    .logos .logos-member {
        margin-bottom: 20px; /* Añadir margen inferior entre los logos */
        width: 100%; /* Asegura que los logos no se desborden */
    }

    .logos .logos-member .member-img {
        display: flex;
        justify-content: center; /* Centrado horizontal */
        align-items: center; /* Centrado vertical */
    }

    .logos .logos-member img {
        max-width: 100%; /* Ajuste para mantener las imágenes centradas */
        height: auto;
    }
}

@media (max-width: 480px) {
    .logos h2 {
        font-size: 24px;
    }

    .logos .logos-member img {
        max-width: 90%; /* Asegura que las imágenes no se vean demasiado pequeñas */
    }
}

/*--------------------------------------------------------------
# Cursos Cortos Section
--------------------------------------------------------------*/
.cursos {
    padding-top: 120px;
}

.cursos .cursos-member {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
    transition: 0.3s;
}

.cursos .cursos-member .member-img {
    position: relative;
    overflow: hidden;
    max-height: 720px;
}

.cursos .cursos-member .member-img:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-size: contain;
    z-index: 1;
}

.cursos .cursos-member .member-info {
    padding: 10px 15px 20px 15px;
}

.cursos .cursos-member .member-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--color-secondary);
}

.cursos .cursos-member .member-info h4 a {
    color: #37423b;
    transition: 0.3s;
}

.cursos .cursos-member .member-info h4 a:hover {
    color: #e7276f;
}

.cursos .cursos-member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.cursos .cursos-member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: rgba(33, 37, 41, 0.7);
}

.cursos .cursos-member:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.cursos .cursos-member:hover .social {
    right: 8px;
    opacity: 1;
}

.cursos .cursos-content {
    padding: 15px;
}
.cursos h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 0.6;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.cursos h3 {
    font-size: 30px;
    line-height: 0.6;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.cursos h1 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 15px;
    font-size: 30px;
    font-weight: 500;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Open Sans", sans-serif;
}

.cursos h4 {
    font-size: 20px;
    line-height: 1;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}

.cursos .cursos-content h2 {
    font-size: 40px;
    line-height: 0.6;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}

.cursos .cursos-content h3 {
    font-weight: 700;
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
}

.cursos .cursos-content h3 a {
    color: #37423b;
    transition: 0.3s;
}

.cursos .cursos-content h3 a:hover {
    color: #5fcf80;
}

.cursos .cursos-content p {
    font-size: 14px;
    color: #777777;
}

.cursos .cursos-content h4 {
    font-size: 14px;
    background: #5fcf80;
    padding: 7px 14px;
    color: #fff;
    margin: 0;
}

@media (max-width: 760px) {
    .cursos .cursos-member .member-img {
        position: relative;
        overflow: hidden;
        max-height: 720px;
    }

    .cursos .cursos-member .member-img:after {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        background-size: contain;
        z-index: 1;
    }

    .cursos .cursos-member .member-info h4 {
        font-weight: 600;
        margin-bottom: 5px;
        font-size: 20px;
        display: block;
        color: var(--color-secondary);
    }

    .cursos .cursos-member .member-info h4 a {
        color: #37423b;
        transition: 0.3s;
    }

    .cursos .cursos-member .member-info h4 a:hover {
        color: #e7276f;
    }

    .cursos .cursos-member .member-info span {
        display: block;
        font-size: 14px;
        font-weight: 400;
        color: #000;
    }

    .cursos .cursos-member .member-info p {
        font-style: italic;
        font-size: 14px;
        padding-top: 15px;
        line-height: 26px;
        color: rgba(33, 37, 41, 0.7);
    }

    .cursos .cursos-member:hover {
        transform: scale(1.08);
        box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
    }

    .cursos .cursos-member:hover .social {
        right: 8px;
        opacity: 1;
    }

    .cursos .cursos-content {
        padding: 15px;
    }

    .cursos .cursos-content h2 {
        font-size: 40px;
        line-height: 0.6;
        font-family: "Open Sans", sans-serif;
        margin-bottom: 20px;
    }
    .cursos h2 {
        font-size: 23px;
        line-height: 0.9;
        font-family: "Open Sans", sans-serif;
        margin-bottom: 20px;
    }

    .cursos h4 {
        font-size: 20px;
        line-height: 1;
        font-family: "Open Sans", sans-serif;
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Hero Carrera Belleza Section
--------------------------------------------------------------*/
#hero-carrera-belleza {
    width: 100%;
    height: 80vh;
    background: url("../img/belleza_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-carrera-belleza:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-carrera-belleza .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-carrera-belleza .container {
        padding-top: 62px;
    }
}

#hero-carrera-belleza h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
}

@media (max-width: 992px) {
    #hero-carrera-belleza h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
    }
}
#hero-carrera-belleza h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-carrera-belleza .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-carrera-belleza .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-carrera-belleza {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-carrera-belleza {
        height: 100vh;
    }

    #hero-carrera-belleza h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-carrera-belleza h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Belleza Section
--------------------------------------------------------------*/
.belleza .container-fluid {
    padding-top: 10px;
}

.belleza .event-item {
    background-size: 100%;
    background-position: cente;
    min-height: 450px;
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .belleza .event-item {
        min-height: 500px;
    }
}

.belleza .event-item:before {
    content: "";
    position: absolute;
    inset: 0;
}

.belleza .titulo-central h2 {
    font-size: 40px;
    line-height: 0.6;
    margin-bottom: 20px;
}

.belleza .event-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    position: relative;
}

.belleza .event-item p {
    text-align: justify;
}

.belleza .event-item .description {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

@media (min-width: 1200px) {
    .belleza .swiper-slide-active + .swiper-slide {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        z-index: 1;
    }
}

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

.belleza .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d1d7;
    opacity: 1;
}

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

/*--------------------------------------------------------------
# Chef Section
--------------------------------------------------------------*/
.chef .container-fluid {
    padding-top: 10px;
}

.chef .event-item {
    background-size: 100%;
    background-position: cente;
    min-height: 450px;
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .chef .event-item {
        min-height: 500px;
    }
}

.chef .event-item:before {
    content: "";
    position: absolute;
    inset: 0;
}

.chef .titulo-central h2 {
    font-size: 40px;
    line-height: 0.6;
    margin-bottom: 20px;
}

.chef .event-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    position: relative;
}

.chef .event-item .description {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

@media (min-width: 1200px) {
    .chef .swiper-slide-active + .swiper-slide {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        z-index: 1;
    }
}

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

.chef .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d1d7;
    opacity: 1;
}

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

/*--------------------------------------------------------------
# Hero Carrera Chef Section
--------------------------------------------------------------*/
#hero-carrera-chef {
    width: 100%;
    height: 80vh;
    background: url("../img/chef_fondo1.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-carrera-chef:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-carrera-chef .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-carrera-chef .container {
        padding-top: 62px;
    }
}

#hero-carrera-chef h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
}

@media (max-width: 992px) {
    #hero-carrera-chef h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 85px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
    }
}
#hero-carrera-chef h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-carrera-chef .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-carrera-chef .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-carrera-chef {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-carrera-chef {
        height: 100vh;
    }

    #hero-carrera-chef h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-carrera-chef h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Maquillaje Section
--------------------------------------------------------------*/
.maquillaje .container-fluid {
    padding-top: 10px;
}

.maquillaje .event-item {
    background-size: 100%;
    background-position: cente;
    min-height: 450px;
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .maquillaje .event-item {
        min-height: 500px;
    }
}

.maquillaje .event-item:before {
    content: "";
    position: absolute;
    inset: 0;
}

.maquillaje .titulo-central h2 {
    font-size: 40px;
    line-height: 0.6;
    margin-bottom: 20px;
}

.maquillaje .event-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    position: relative;
}

.maquillaje .event-item p {
    text-align: justify;
}

.maquillaje .event-item .description {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

@media (min-width: 1200px) {
    .maquillaje .swiper-slide-active + .swiper-slide {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        z-index: 1;
    }
}

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

.maquillaje .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d1d7;
    opacity: 1;
}

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

/*--------------------------------------------------------------
# Hero Carrera Maquillaje Section
--------------------------------------------------------------*/
#hero-carrera-maquillaje {
    width: 100%;
    height: 80vh;
    background: url("../img/maquillaje_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-carrera-maquillaje:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-carrera-maquillaje .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-carrera-maquillaje .container {
        padding-top: 62px;
    }
}

#hero-carrera-maquillaje h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
}

@media (max-width: 992px) {
    #hero-carrera-maquillaje h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 85px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
    }
}
#hero-carrera-maquillaje h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-carrera-maquillaje .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-carrera-maquillaje .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-carrera-maquillaje {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-carrera-maquillaje {
        height: 100vh;
    }

    #hero-carrera-maquillaje h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-carrera-maquillaje h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Confeccion Section
--------------------------------------------------------------*/
.confeccion .container-fluid {
    padding-top: 10px;
}

.confeccion .event-item {
    background-size: 100%;
    background-position: cente;
    min-height: 450px;
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .confeccion .event-item {
        min-height: 500px;
    }
}

.confeccion .event-item:before {
    content: "";
    position: absolute;
    inset: 0;
}

.confeccion .titulo-central h2 {
    font-size: 40px;
    line-height: 0.6;

    margin-bottom: 20px;
}

.confeccion .event-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    position: relative;
}

.confeccion .event-item p {
    text-align: justify;
}

.confeccion .event-item .description {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

@media (min-width: 1200px) {
    .confeccion .swiper-slide-active + .swiper-slide {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        z-index: 1;
    }
}

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

.confeccion .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d1d7;
    opacity: 1;
}

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

/*--------------------------------------------------------------
# Hero Carrera Confeccion Section
--------------------------------------------------------------*/
#hero-carrera-confeccion {
    width: 100%;
    height: 80vh;
    background: url("../img/confeccion_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-carrera-confeccion:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-carrera-confeccion .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-carrera-confeccion .container {
        padding-top: 62px;
    }
}

#hero-carrera-confeccion h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
}

@media (max-width: 992px) {
    #hero-carrera-confeccion h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 85px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
    }
}
#hero-carrera-confeccion h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-carrera-confeccion .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-carrera-confeccion .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-carrera-confeccion {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-carrera-confeccion {
        height: 100vh;
    }

    #hero-carrera-confeccion h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-carrera-confeccion h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq {
    padding: 60px 0;
}

.faq .faq-list {
    padding: 0;
    list-style: none;
}

.faq .faq-list .question {
    display: block;
    position: relative;
    font-family: #106eea;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: #0d58ba;
    transition: 0.3s;
}

.faq .faq-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list .collapsed {
    color: black;
}

.faq .faq-list .collapsed:hover {
    color: #106eea;
}

.faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 0px 0 45px;
    overflow: hidden;
}

/*.section-bg {
  background-color: #f6f7f6;
}*/

.section-bg {
    background-color: #eee;
}

.section-header {
    text-align: center;
    padding-bottom: 30px;
}

.section-header p {
    text-align: justify;
    padding: 7.5px 0 45px;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #9ae1af;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #37423b;
}

.breadcrumbs {
    margin-top: 73px;
    text-align: center;
    background: #5fcf80;
    padding: 30px 0;
    color: #fff;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 63px;
    }
}

.breadcrumbs h2 {
    font-size: 32px;
    font-weight: 500;
}

.breadcrumbs p {
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Nosotros
--------------------------------------------------------------*/
.nosotros .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.nosotros .content ul {
    list-style: none;
    padding: 0;
}

.nosotros .content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.nosotros .content ul li:first-child {
    margin-top: 35px;
}

.nosotros .content ul i {
    background: #fff;
    box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
    font-size: 24px;
    padding: 20px;
    margin-right: 15px;
    color: #106eea;
    border-radius: 50px;
}

.nosotros .content ul h5 {
    font-size: 18px;
    color: #555555;
}

.nosotros .content ul p {
    font-size: 15px;
}

.nosotros .content p {
    font-size: 15px;
    text-align: justify;
}

.nosotros .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Nuestras Instalaciones
--------------------------------------------------------------*/
.instalaciones .section-title h3 {
    text-align: center; /* Centra el título */
    font-size: 32px;
    font-weight: bold;
    margin-top: 120px;
    margin-bottom: 20px;
}

.instalaciones .col-lg-6 img {
    width: 100%; /* Asegura que la imagen ocupe todo el espacio */
    max-height: 400px; /* Aumenta la altura de la imagen */
    object-fit: cover; /* Mantiene la proporción sin distorsión */
    border-radius: 0px;
}

.instalaciones .carousel {
    max-height: 400px; /* Mantiene la misma altura que la imagen anterior */
}

.instalaciones .carousel img {
    width: 100%;
    height: 300px; /* Ajusta la altura */
    object-fit: cover; /* Evita deformaciones */
   
}

.instalaciones .content ul {
    list-style: none;
    padding: 0;
}

.instalaciones .content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.instalaciones .content ul li:first-child {
    margin-top: 35px;
}

.instalaciones .content ul i {
    background: #fff;
    box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
    font-size: 24px;
    padding: 20px;
    margin-right: 15px;
    color: #106eea;
    border-radius: 50px;
}

.instalaciones .content ul h5 {
    font-size: 18px;
    color: #555555;
}

.instalaciones .content ul p {
    font-size: 15px;
}

.instalaciones .content p {
    font-size: 15px;
    text-align: justify;
}

.instalaciones .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    padding-top: 40px;
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
    font-family: "Kaushan Script", cursive;
}

.about .content h2 {
    font-weight: 600;
    font-size: 20px;
    font-family: "Kobajeon", sans-serif;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content p {
    text-align: justify;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #e7276f;
}

.about .content .learn-more-btn {
    background: #5fcf80;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px 9px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.about .content .learn-more-btn:hover {
    background: #3ac162;
    color: #fff;
}

@media (max-width: 768px) {
    .about .content .learn-more-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
    }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 30px 0;
}

.counts .counters span {
    font-size: 48px;
    display: block;
    color: #5fcf80;
    font-weight: 700;
}

.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #37423b;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
    padding: 30px;
    background: #5fcf80;
    border-radius: 4px;
    color: #fff;
}

.why-us .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.why-us .content p {
    margin-bottom: 30px;
}

.why-us .content .more-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
    font-size: 14px;
}

.why-us .content .more-btn:hover {
    color: #5fcf80;
    background: #fff;
}

.why-us .icon-boxes .icon-box {
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    width: 100%;
    border: 1px solid #eef0ef;
}

.why-us .icon-boxes .icon-box i {
    font-size: 32px;
    padding: 18px;
    color: #5fcf80;
    margin-bottom: 30px;
    background: #ecf9f0;
    border-radius: 50px;
}

.why-us .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
    padding-top: 0px;
}

.features .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
    border: 1px solid #eef0ef;
}

.features .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
}

.features .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
}

.features .icon-box h3 a {
    color: #37423b;
    transition: 0.3s;
}

.features .icon-box:hover {
    border-color: #5fcf80;
}

.features .icon-box:hover h3 a {
    color: #5fcf80;
}

/*--------------------------------------------------------------
# Cursos cortos Pagina Principal
--------------------------------------------------------------*/
.cursos-cortos-index {
    background:
        linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
        /*url("../img/cursos_cortos_backimg.jpg") fixed center center;*/
        url("../img/collage-cursos.webp") fixed center center;
    background-size: cover;
    padding: 140px 0;
}

.cursos-cortos-index h3 {
    color: #ffc451;
    font-size: 34px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

.cursos-cortos-index p {
    color: #fff;
    font-size: 20px;
}

.cursos-cortos-index .cursos-cortos-index-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
    background: #ffc451;
}

.cursos-cortos-index .cursos-cortos-index-btn:hover {
    background: #ef6445;
    border-color: #fff;
    color: #151515;
}

@media (max-width: 992px) {
    .cursos-cortos-index .cursos-cortos-index-btn {
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 28px;
        border-radius: 4px;
        transition: 0.5s;
        margin-top: 10px;
        border: 2px solid #fff;
        color: #fff;
        background: #ffc451;
    }

    .cursos-cortos-index .cursos-cortos-index-btn:hover {
        background: #ef6445;
        border-color: #fff;
        color: #151515;
    }
}

@media (max-width: 1024px) {
    .cursos-cortos-index .cursos-cortos-index-btn {
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 28px;
        border-radius: 4px;
        transition: 0.5s;
        margin-top: 10px;
        border: 2px solid #fff;
        color: #fff;
        background: #ffc451;
    }

    .cursos-cortos-index .cursos-cortos-index-btn:hover {
        background: #ef6445;
        border-color: #fff;
        color: #151515;
    }
}

/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/

.courses .container {
    padding-top: 160px;
}

.courses .course-item {
    border-radius: 5px;
    border: 1px solid #eef0ef;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
    transition: 0.3s;
}

.courses .course-item .member-img {
    position: relative;
    overflow: hidden;
}

.courses .course-item .member-img:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: url(../img/team-shape.svg) no-repeat center bottom;
    background-size: contain;
    z-index: 1;
}

.courses .course-content {
    padding: 15px;
}

.courses .course-content h3 {
    font-weight: 700;
    font-size: 20px;
}

.courses .course-content h3 a {
    color: #37423b;
    transition: 0.3s;
}

.courses .course-content h3 a:hover {
    color: #5fcf80;
}

.courses .course-content p {
    font-size: 14px;
    color: #777777;
}

.courses .course-content h4 {
    font-size: 14px;
    background: #5fcf80;
    padding: 7px 14px;
    color: #fff;
    margin: 0;
}

.courses .course-content .price {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: #37423b;
}

.courses .trainer {
    padding-top: 15px;
    border-top: 1px solid #eef0ef;
}

.courses .trainer .trainer-profile img {
    max-width: 50px;
    border-radius: 50px;
}

.courses .trainer .trainer-profile span {
    padding-left: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #5a6c60;
}

.courses .trainer .trainer-rank {
    font-size: 18px;
    color: #657a6d;
}

/*--------------------------------------------------------------
# Noticias
--------------------------------------------------------------*/

.noticias .container {
    padding-top: 120px;
}

.noticias .titulo h1 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 15px;
    font-size: 30px;
    font-weight: 600;
    line-height: 0.9;
    font-family: "Poppins", sans-serif;
}

.noticias .member {
    text-align: center;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #eef0ef;
}

.noticias .member img {
    margin: -1px -1px 30px -1px;
}

.noticias .member .member-content {
    padding: 0 20px 30px 20px;
}

.noticias .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

.noticias .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.noticias .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #000;
}

.noticias .member .social {
    margin-top: 15px;
}

.noticias .member .social a {
    color: #7e9486;
    transition: 0.3s;
}

.noticias .member .social a:hover {
    color: #5fcf80;
}

.noticias .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/* Vista responsive (móviles) */
@media (max-width: 768px) {
  .noticias .member {
    width: 90%;        /* El card ocupa el 90% del ancho */
    margin: 0 auto;    /* Lo centra en la pantalla */
    margin-bottom: 20px;
  }
}



/*--------------------------------------------------------------
# Cource Details
--------------------------------------------------------------*/
.course-details {
    padding-top: 20px;
}

.course-details .content p {
    margin: 0px 40px 0px 40px;
    padding-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .course-details .content p {
        margin: 0px 10px 0px 10px;
        padding-bottom: 20px;
        text-align: justify;
    }

    .course-details img {
        padding-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .course-details .content p {
        margin: 0px 10px 0px 10px;
        padding-bottom: 20px;
        text-align: justify;
    }
    .course-details img {
        padding-bottom: 20px;
    }
}

.course-details h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.course-details h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #eef0ef;
    bottom: 0;
    left: 0;
}

.course-details h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 1px;
    background: #5fcf80;
    bottom: 0;
    left: 0;
}

.course-details .course-info {
    background: #fdebeb;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.course-details .course-info h5 {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.course-details .course-info p {
    margin: 0;
    font-weight: 600;
}

.course-details .course-info a {
    color: #657a6d;
}

/*--------------------------------------------------------------
# Horarios Details
--------------------------------------------------------------*/

.horarios-details .horarios-info h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

.horarios-details h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.horarios-details h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #eef0ef;
    bottom: 0;
    left: 0;
}

.horarios-details h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 1px;
    background: #e7276f;
    bottom: 0;
    left: 0;
}

.horarios-details .horarios-info {
    background: #f6f7f6;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.horarios-details .horarios-info h5 {
    font-weight: 400;
    font-size: 26px;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.horarios-details .horarios-info p {
    margin: 0;
    font-weight: 600;
}

.horarios-details .horarios-info a {
    color: #657a6d;
}

.horarios-details ul {
    list-style: none;
    padding: 0;
}

.horarios-details ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #e7276f;
}
/*--------------------------------------------------------------
# Cource Details Tabs
--------------------------------------------------------------*/
.cource-details-tabs {
    overflow: hidden;
    padding-top: 0;
}

.cource-details-tabs .nav-tabs {
    border: 0;
}

.cource-details-tabs .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: #37423b;
    border-radius: 0;
    border-right: 2px solid #e2e7e4;
    font-weight: 600;
    font-size: 15px;
}

.cource-details-tabs .nav-link:hover {
    color: #5fcf80;
}

.cource-details-tabs .nav-link.active {
    color: #5fcf80;
    border-color: #5fcf80;
}

.cource-details-tabs .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.cource-details-tabs .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #37423b;
}

.cource-details-tabs .details p {
    color: #777777;
}

.cource-details-tabs .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cource-details-tabs .nav-link {
        border: 0;
        padding: 15px;
    }

    .cource-details-tabs .nav-link.active {
        color: #fff;
        background: #5fcf80;
    }
}

/*--------------------------------------------------------------
# Mision
--------------------------------------------------------------*/

.mision .container {
    padding-top: 40px;
}

.mision .section-title h3 {
    text-align: center; /* Centra el título */
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 0px;
}
.mision .card {
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
}

.mision .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
}

.mision .card-img img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

.mision .card-body {
    z-index: 10;
    background: #fff;
    border-top: 4px solid #fff;
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    transition: 0.3s;
}

.mision .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.mision .card-title a {
    color: #37423b;
    transition: 0.3s;
}

.mision .card-text {
    color: #5e5e5e;
    text-align: justify;
}

.mision .read-more a {
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.3s;
}

.mision .read-more a:hover {
    color: #e7276f;
}

.mision .card:hover img {
    transform: scale(1.1);
}

.mision .card:hover .card-body {
    border-color: #e7276f;
}

.mision .card:hover .card-body .card-title a {
    color: #e7276f;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    border: 1px solid #eef0ef;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #777777;
    background: #f8f8f8;
}

.pricing h4 {
    font-size: 36px;
    color: #5fcf80;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul i {
    color: #5fcf80;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: #5fcf80;
    display: inline-block;
    padding: 8px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: #3ac162;
}

.pricing .featured h3 {
    color: #fff;
    background: #5fcf80;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #5fcf80;
    color: #fff;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    padding-top: 120px;
}

.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: #5fcf80;
    float: left;
    width: 44px;
    height: 44px;
    background: #ecf9f0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #37423b;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #657a6d;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #5fcf80;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #5fcf80;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #5fcf80;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #3ac162;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #111111;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    background: #1d1d1d;
    border-bottom: 1px solid #2f2f2f;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fc9ebc;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #2a2a2a; /*#2a2a2a*/
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #fc9ebc;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #fc9ebc;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #5c9f24;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #6ab82a;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

#footer .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    /*font-family:  "Tangerine", sans-serif;
    font-size: 45px;
  */
    font-family: "Kaushan Script", cursive;
}

#footer .logo a {
    color: #fff;
}

#footer .logo img {
    max-height: 40px;
}

@media (max-width: 760px) {
    #footer .logo {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 400;
        font-family: "Kaushan Script", cursive;
    }
}

/*--------------------------------------------------------------
# On Focus Section Belleza
--------------------------------------------------------------*/
.onfocus-belleza {
    padding: 0;
}

.onfocus-belleza .video-play {
    min-height: 400px;
    background:
        linear-gradient(rgba(var(--color-black-rgb), 0.4), rgba(var(--color-black-rgb), 0.7)),
        url("../img/belleza/belleza_post.jpg") center center;
    background-size: cover;
}

.onfocus-belleza .content {
    background:
        linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)),
        url("../img/onfocus-content-bg.jpg") center center;
    background-size: cover;
    color: rgba(var(--color-white-rgb), 0.8);
    padding: 10px;
}

@media (min-width: 768px) {
    .onfocus-belleza .content {
        padding: 50px;
    }
}

.onfocus-belleza .content h3 {
    font-weight: 600;
    font-size: 26px;
    font-family: "Poppins", sans-serif;
    color: var(--color-white);
}

.onfocus-belleza .content ul {
    list-style: none;
    padding: 0;
}

.onfocus-belleza .content ul li {
    padding-bottom: 10px;
}

.onfocus-belleza .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-primary);
}

.onfocus-belleza .content p:last-child {
    margin-bottom: 0;
}

.onfocus-belleza .content .read-more {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary);
}

.onfocus-belleza .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.onfocus-belleza .content .read-more:hover {
    background: rgba(var(--color-primary-rgb), 0.9);
    padding-right: 19px;
}

.onfocus-belleza .content .read-more:hover i {
    margin-left: 10px;
}

.onfocus-belleza .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-primary) 50%, rgba(var(--color-primary-rgb), 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.onfocus-belleza .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(var(--color-primary-rgb), 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.onfocus-belleza .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 var(--color-white);
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.onfocus-belleza .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 var(--color-white);
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.onfocus-belleza .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20);
}

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

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

/*--------------------------------------------------------------
# On Focus Section Corte
--------------------------------------------------------------*/
.onfocus-corte {
    padding: 0;
}

.onfocus-corte .video-play {
    min-height: 400px;
    background:
        linear-gradient(rgba(var(--color-black-rgb), 0.4), rgba(var(--color-black-rgb), 0.7)),
        url("../img/confeccion/corte_post.jpg") center center;
    background-size: cover;
}

.onfocus-corte .content {
    background:
        linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)),
        url("../img/onfocus-content-bg.jpg") center center;
    background-size: cover;
    color: rgba(var(--color-white-rgb), 0.8);
    padding: 10px;
}

@media (min-width: 768px) {
    .onfocus-corte .content {
        padding: 50px;
    }
}

.onfocus-corte .content h3 {
    font-weight: 600;
    font-size: 26px;
    font-family: "Poppins", sans-serif;
    color: var(--color-white);
}

.onfocus-corte .content ul {
    list-style: none;
    padding: 0;
}

.onfocus-corte .content ul li {
    padding-bottom: 10px;
}

.onfocus-corte .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-primary);
}

.onfocus-corte .content p:last-child {
    margin-bottom: 0;
}

.onfocus-corte .content .read-more {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary);
}

.onfocus-corte .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.onfocus-corte .content .read-more:hover {
    background: rgba(var(--color-primary-rgb), 0.9);
    padding-right: 19px;
}

.onfocus-corte .content .read-more:hover i {
    margin-left: 10px;
}

.onfocus-corte .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-primary) 50%, rgba(var(--color-primary-rgb), 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.onfocus-corte .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(var(--color-primary-rgb), 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.onfocus-corte .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 var(--color-white);
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.onfocus-corte .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 var(--color-white);
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.onfocus-corte .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20);
}

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

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

/*--------------------------------------------------------------
# On Focus Section Maquillaje
--------------------------------------------------------------*/
.onfocus-maquillaje {
    padding: 0;
}

.onfocus-maquillaje .video-play {
    min-height: 400px;
    background:
        linear-gradient(rgba(var(--color-black-rgb), 0.4), rgba(var(--color-black-rgb), 0.7)),
        url("../img/maquillaje/maquillaje_post.jpg") center center;
    background-size: cover;
}

.onfocus-maquillaje .content {
    background:
        linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)),
        url("../img/onfocus-content-bg.jpg") center center;
    background-size: cover;
    color: rgba(var(--color-white-rgb), 0.8);
    padding: 10px;
}

@media (min-width: 768px) {
    .onfocus-maquillaje .content {
        padding: 50px;
    }
}

.onfocus-maquillaje .content h3 {
    font-weight: 600;
    font-size: 26px;
    font-family: "Poppins", sans-serif;
    color: var(--color-white);
}

.onfocus-maquillaje .content ul {
    list-style: none;
    padding: 0;
}

.onfocus-maquillaje .content ul li {
    padding-bottom: 10px;
}

.onfocus-maquillaje .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-primary);
}

.onfocus-maquillaje .content p:last-child {
    margin-bottom: 0;
}

.onfocus-maquillaje .content .read-more {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary);
}

.onfocus-maquillaje .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.onfocus-maquillaje .content .read-more:hover {
    background: rgba(var(--color-primary-rgb), 0.9);
    padding-right: 19px;
}

.onfocus-maquillaje .content .read-more:hover i {
    margin-left: 10px;
}

.onfocus-maquillaje .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-primary) 50%, rgba(var(--color-primary-rgb), 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.onfocus-maquillaje .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(var(--color-primary-rgb), 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.onfocus-maquillaje .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 var(--color-white);
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.onfocus-maquillaje .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 var(--color-white);
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.onfocus-maquillaje .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20);
}

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

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

/*--------------------------------------------------------------
# On Focus Section Chef
--------------------------------------------------------------*/
.onfocus-chef {
    padding: 0;
}

.onfocus-chef .video-play {
    min-height: 400px;
    background:
        linear-gradient(rgba(var(--color-black-rgb), 0.4), rgba(var(--color-black-rgb), 0.7)),
        url("../img/chef/chef_post.jpg") center center;
    background-size: cover;
}

.onfocus-chef .content {
    background:
        linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)),
        url("../img/onfocus-content-bg.jpg") center center;
    background-size: cover;
    color: rgba(var(--color-white-rgb), 0.8);
    padding: 10px;
}

@media (min-width: 768px) {
    .onfocus-chef .content {
        padding: 50px;
    }
}

.onfocus-chef .content h3 {
    font-weight: 600;
    font-size: 26px;
    font-family: "Poppins", sans-serif;
    color: var(--color-white);
}

.onfocus-chef .content ul {
    list-style: none;
    padding: 0;
}

.onfocus-chef .content ul li {
    padding-bottom: 10px;
}

.onfocus-chef .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-primary);
}

.onfocus-chef .content p:last-child {
    margin-bottom: 0;
}

.onfocus-chef .content .read-more {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary);
}

.onfocus-chef .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.onfocus-chef .content .read-more:hover {
    background: rgba(var(--color-primary-rgb), 0.9);
    padding-right: 19px;
}

.onfocus-chef .content .read-more:hover i {
    margin-left: 10px;
}

.onfocus-chef .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-primary) 50%, rgba(var(--color-primary-rgb), 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.onfocus-chef .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(var(--color-primary-rgb), 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.onfocus-chef .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 var(--color-white);
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.onfocus-chef .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 var(--color-white);
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.onfocus-chef .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20);
}

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

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

/*--------------------------------------------------------------
# Hero Cursos Cortos
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Curso Comidas Rapidas Gourmet Section
--------------------------------------------------------------*/
#hero-comidas-rapidas {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/rapidas_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-comidas-rapidas:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-comidas-rapidas .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-comidas-rapidas .container {
        padding-top: 62px;
    }
}

#hero-comidas-rapidas h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-comidas-rapidas h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-comidas-rapidas h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-comidas-rapidas h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-comidas-rapidas .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-comidas-rapidas .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-comidas-rapidas {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-comidas-rapidas {
        height: 100vh;
    }

    #hero-comidas-rapidas h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-comidas-rapidas h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Taller Practico Uñas de Salon Section
--------------------------------------------------------------*/
#hero-unas-salon {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/unas_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-unas-salon:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-unas-salon .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-unas-salon .container {
        padding-top: 62px;
    }
}

#hero-unas-salon h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-unas-salon h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-unas-salon h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-unas-salon h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-unas-salon .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-unas-salon .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-unas-salon {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-unas-salon {
        height: 100vh;
    }

    #hero-unas-salon h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-unas-salon h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Curso Practico Alta Costura
--------------------------------------------------------------*/
#hero-alta-costura {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/altacostura_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-alta-costura:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-alta-costura .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-alta-costura .container {
        padding-top: 62px;
    }
}

#hero-alta-costura h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-alta-costura h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-alta-costura h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-alta-costura h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-alta-costura .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-alta-costura .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-alta-costura {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-alta-costura {
        height: 100vh;
    }

    #hero-alta-costura h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-alta-costura h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Curso Express de Sastreria Femenina
--------------------------------------------------------------*/
#hero-sastreria-femenina {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/altacostura_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-sastreria-femenina:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-sastreria-femenina .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-sastreria-femenina .container {
        padding-top: 62px;
    }
}

#hero-sastreria-femenina h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-sastreria-femenina h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-sastreria-femenina h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-sastreria-femenina h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-sastreria-femenina .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-sastreria-femenina .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-sastreria-femenina {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-sastreria-femenina {
        height: 100vh;
    }

    #hero-sastreria-femenina h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-sastreria-femenina h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Extensiones de Pestañas Curso Corto
--------------------------------------------------------------*/
#hero-extension-pestanas {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/pestanas_fondo_1.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-extension-pestanas:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-extension-pestanas .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-extension-pestanas .container {
        padding-top: 62px;
    }
}

#hero-extension-pestanas h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-extension-pestanas h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-extension-pestanas h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-extension-pestanas h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-extension-pestanas .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-extension-pestanas .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-extension-pestanas {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-extension-pestanas {
        height: 100vh;
    }

    #hero-extension-pestanas h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-sastreria-femenina h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Micropigmentacion
--------------------------------------------------------------*/
#hero-micropigmentacion {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/micropigmentacion_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-micropigmentacion:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-micropigmentacion .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-micropigmentacion .container {
        padding-top: 62px;
    }
}

#hero-micropigmentacion h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-micropigmentacion h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-micropigmentacion h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-micropigmentacion h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-micropigmentacion .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-micropigmentacion .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-micropigmentacion {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-micropigmentacion {
        height: 100vh;
    }

    #hero-micropigmentacion h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-micropigmentacion h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Cheesecake
--------------------------------------------------------------*/
#hero-cheesecake {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/cheesecake_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-cheesecake:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-cheesecake .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-cheesecake .container {
        padding-top: 62px;
    }
}

#hero-cheesecake h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-cheesecake h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-cheesecake h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-cheesecake h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-cheesecake .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-mcheesecake .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-cheesecake {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-cheesecake {
        height: 100vh;
    }

    #hero-cheesecake h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-cheesecake h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Panaderia
--------------------------------------------------------------*/
#hero-panaderia {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/panaderia_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-panaderia:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-panaderia .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-panaderia .container {
        padding-top: 62px;
    }
}

#hero-panaderia h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-panaderia h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-panaderia h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-panaderia h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-panaderia .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-panaderia .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-panaderia {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-panaderia {
        height: 100vh;
    }

    #hero-panaderia h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-panaderia h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Barbershop
--------------------------------------------------------------*/
#hero-barbershop {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/barbershop_fondo2.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-barbershop:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-barbershop .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-barbershop .container {
        padding-top: 62px;
    }
}

#hero-barbershop h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-barbershop h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-barbershop h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-barbershop h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-barbershop .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-barbershop .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-barbershop {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-barbershop {
        height: 100vh;
    }

    #hero-barbershop h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-barbershop h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Decoracion de Tortas
--------------------------------------------------------------*/
#hero-decoracion {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/decoracion-torta_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-decoracion:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-decoracion .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-decoracion .container {
        padding-top: 62px;
    }
}

#hero-decoracion h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-decoracion h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-decoracion h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-decoracion h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-decoracion .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-decoracion .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-decoracion {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-decoracion {
        height: 100vh;
    }

    #hero-decoracion h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-decoracion h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Mariscos y Ceviches
--------------------------------------------------------------*/
#hero-mariscos {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/mariscos_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-mariscos:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-mariscos .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-mariscos .container {
        padding-top: 62px;
    }
}

#hero-mariscos h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-mariscos h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-mariscos h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-mariscos h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-mariscos .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-mariscos .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-mariscos {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-mariscos {
        height: 100vh;
    }

    #hero-mariscos h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-mariscos h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Cocina Mexicana
--------------------------------------------------------------*/
#hero-cocina-mexicana {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/cocina-mexicana_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-cocina-mexicana:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-cocina-mexicana .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-cocina-mexicana .container {
        padding-top: 62px;
    }
}

#hero-cocina-mexicana h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-cocina-mexicana h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-cocina-mexicana h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-cocina-mexicana h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-cocina-mexicana .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-cocina-mexicana .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-cocina-mexicana {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-cocina-mexicana {
        height: 100vh;
    }

    #hero-cocina-mexicana h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-cocina-mexicana h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Comidas Tipicas
--------------------------------------------------------------*/
#hero-comidas-tipicas {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/comidas-tipicas_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-comidas-tipicas:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-comidas-tipicas .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-comidas-tipicas .container {
        padding-top: 62px;
    }
}

#hero-comidas-tipicas h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-comidas-tipicas h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-comidas-tipicas h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-comidas-tipicas h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-comidas-tipicas .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-comidas-tipicas .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-comidas-tipicas {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-comidas-tipicas {
        height: 100vh;
    }

    #hero-comidas-tipicas h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-comidas-tipicas h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Pollo Frito
--------------------------------------------------------------*/
#hero-pollofrito {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/pollo_frito-fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-pollofrito:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-pollofrito .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-pollofrito .container {
        padding-top: 62px;
    }
}

#hero-pollofrito h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-pollofrito h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-pollofrito h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-pollofrito h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-pollofrito .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-pollofrito .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-pollofrito {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-pollofrito {
        height: 100vh;
    }

    #hero-pollofrito h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-pollofrito h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Cejas y Pestañas Julio
--------------------------------------------------------------*/
#hero-cejasypestanas_julio {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/cejasypestanas_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-cejasypestanas_julio:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-cejasypestanas_julio .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-cejasypestanas_julio .container {
        padding-top: 62px;
    }
}

#hero-cejasypestanas_julio h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-cejasypestanas_julio h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-cejasypestanas_julio h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-cejasypestanas_julio h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-cejasypestanas_julio .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-cejasypestanas_julio .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-cejasypestanas_julio {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-cejasypestanas_julio {
        height: 100vh;
    }

    #hero-cejasypestanas_julio h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-cejasypestanas_julio h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Colorimetria
--------------------------------------------------------------*/
#hero-colorimetria {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/colorimetria_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-colorimetria:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-colorimetria .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-colorimetria .container {
        padding-top: 62px;
    }
}

#hero-colorimetria h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-colorimetria h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-colorimetria h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-colorimetria h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-colorimetria .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-colorimetria .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-colorimetria {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-colorimetria {
        height: 100vh;
    }

    #hero-colorimetria h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-colorimetria h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Arroces mas Famosos del Mundo
--------------------------------------------------------------*/
#hero-arroces {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/arroces-famosos_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-arroces:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-arroces .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-arroces .container {
        padding-top: 62px;
    }
}

#hero-arroces h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-arroces h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-arroces h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-arroces h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-arroces .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-arroces .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-arroces {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-arroces {
        height: 100vh;
    }

    #hero-arroces h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-arroces h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero sushi
--------------------------------------------------------------*/
#hero-sushi {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/sushi_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-sushi:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-sushi .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-sushi .container {
        padding-top: 62px;
    }
}

#hero-sushi h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-sushi h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-sushi h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-sushi h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-sushi .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-sushi .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-sushi {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-sushi {
        height: 100vh;
    }

    #hero-sushi h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-sushi h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Pizza
--------------------------------------------------------------*/
#hero-pizzas {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/pizza_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-pizzas:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-pizzas .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-pizzas .container {
        padding-top: 62px;
    }
}

#hero-pizzas h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-pizzas h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-pizzas h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-pizzas h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-pizzas .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-pizzas .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-pizzas {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-pizzas {
        height: 100vh;
    }

    #hero-pizzas h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-pizzas h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Corte de Cabello
--------------------------------------------------------------*/
#hero-corte-cabello {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/corte-cabello_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-corte-cabello:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-corte-cabello .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-corte-cabello .container {
        padding-top: 62px;
    }
}

#hero-corte-cabello h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-corte-cabello h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-corte-cabello h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-corte-cabello h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-corte-cabello .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-corte-cabello .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-corte-cabello {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-corte-cabello {
        height: 100vh;
    }

    #hero-corte-cabello h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-corte-cabello h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Asados
--------------------------------------------------------------*/
#hero-asados {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/asados_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-asados:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-asados .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-asados .container {
        padding-top: 62px;
    }
}

#hero-asados h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-asados h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-asados h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-asados h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-asados .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-asados .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-asados {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-asados {
        height: 100vh;
    }

    #hero-asados h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-asados h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Donas
--------------------------------------------------------------*/
#hero-donas {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/donas_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-donas:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-donas .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-donas .container {
        padding-top: 62px;
    }
}

#hero-donas h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-donas h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-donas h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-donas h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-donas .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-donas .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-donas {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-donas {
        height: 100vh;
    }

    #hero-donas h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-donas h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Donas
--------------------------------------------------------------*/
#hero-comida-espanola {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/espanola_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-comida-espanola:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-comida-espanola .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-comida-espanola .container {
        padding-top: 62px;
    }
}

#hero-comida-espanola h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-comida-espanola h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-comida-espanola h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-comida-espanola h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-comida-espanola .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-comida-espanola .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-comida-espanola {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-comida-espanola {
        height: 100vh;
    }

    #hero-comida-espanola h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-comida-espanola h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Curso Bartender
--------------------------------------------------------------*/
#hero-bartender {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/bartender_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-bartender:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-bartender .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-bartender .container {
        padding-top: 62px;
    }
}

#hero-bartender h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-bartender h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-bartender h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-bartender h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-bartender .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-bartender .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-bartender {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-bartender {
        height: 100vh;
    }

    #hero-bartender h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-bartender h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Curso Bocaditos Gourmet
--------------------------------------------------------------*/
#hero-bocaditos-gourmet {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/bocaditos-gourmet_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-bocaditos-gourmet:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-bocaditos-gourmet .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-bocaditos-gourmet .container {
        padding-top: 62px;
    }
}

#hero-bocaditos-gourmet h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-bocaditos-gourmet h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-bocaditos-gourmet h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-bocaditos-gourmet h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-bocaditos-gourmet .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-bartender .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-bocaditos-gourmet {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-bocaditos-gourmet {
        height: 100vh;
    }

    #hero-bocaditos-gourmet h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-bocaditos-gourmet h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Curso Pasteleria
--------------------------------------------------------------*/
#hero-pasteleria {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/pasteleria_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-pasteleria:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-pasteleria .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-pasteleria .container {
        padding-top: 62px;
    }
}

#hero-pasteleria h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-pasteleria h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-pasteleria h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-pasteleria h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-pasteleria .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-pasteleria .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-pasteleria {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-pasteleria {
        height: 100vh;
    }

    #hero-pasteleria h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-pasteleria h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Curso Ropa Barbie
--------------------------------------------------------------*/
#hero-ropa-barbie {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/ropa-barbie_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-ropa-barbie:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-ropa-barbie .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-ropa-barbie .container {
        padding-top: 62px;
    }
}

#hero-ropa-barbie h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-ropa-barbie h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-ropa-barbie h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-ropa-barbie h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-ropa-barbie .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-ropa-barbie .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-ropa-barbie {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-ropa-barbie {
        height: 100vh;
    }

    #hero-ropa-barbie h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-ropa-barbie h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Curso Galletas de Tendencia
--------------------------------------------------------------*/
#hero-galletas {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/galletas_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-galletas:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-galletas .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-galletas .container {
        padding-top: 62px;
    }
}

#hero-galletas h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-galletas h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-galletas h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-galletas h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-galletas .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-galletas .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-galletas {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-galletas {
        height: 100vh;
    }

    #hero-galletas h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-galletas h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Master Class de Peinados
--------------------------------------------------------------*/
#hero-peinados {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/peinados_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-peinados:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-peinados .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-peinados .container {
        padding-top: 62px;
    }
}

#hero-peinados h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-peinados h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-peinados h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-peinados h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-peinados .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-peinados .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-peinados {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-peinados {
        height: 100vh;
    }

    #hero-peinados h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-peinados h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Taller Practico de Recuperacion Capilar y Keratina
--------------------------------------------------------------*/
#hero-keratina {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/keratina_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-keratina:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-keratina .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-keratina .container {
        padding-top: 62px;
    }
}

#hero-keratina h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-keratina h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-keratina h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-keratina h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-keratina .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-keratina .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-keratina {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-keratina {
        height: 100vh;
    }

    #hero-keratina h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-keratina h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Curso Corto de Tortas Comic
--------------------------------------------------------------*/
#hero-torta-comic {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/torta_comic_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-torta-comic:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-torta-comic .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-torta-comic .container {
        padding-top: 62px;
    }
}

#hero-torta-comic h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-torta-comic h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-torta-comic h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-torta-comic h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-torta-comic .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-torta-comic .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-torta-comic {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-torta-comic {
        height: 100vh;
    }

    #hero-torta-comic h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-torta-comic h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Curso Cocina Asiatica
--------------------------------------------------------------*/
#hero-cocina-asiatica {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/cocina-asiatica_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-cocina-asiatica:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-cocina-asiatica .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-cocina-asiatica .container {
        padding-top: 62px;
    }
}

#hero-cocina-asiatica h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-cocina-asiatica h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-cocina-asiatica h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-cocina-asiatica h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-cocina-asiatica .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-cocina-asiatica .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-cocina-asiatica {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-cocina-asiatica {
        height: 100vh;
    }

    #hero-cocina-asiatica h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-cocina-asiatica h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Depilacion Master Class
--------------------------------------------------------------*/
#hero-depilacion {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/depilacion_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-depilacion:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-depilacion .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-depilacion .container {
        padding-top: 62px;
    }
}

#hero-depilacion h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-depilacion h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-depilacion h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-depilacion h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-depilacion .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-depilacion .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-depilacion {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-depilacion {
        height: 100vh;
    }

    #hero-depilacion h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-depilacion h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Bocados Callejeros
--------------------------------------------------------------*/
#hero-bocados-callejeros {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/bocados-callejeros_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-bocados-callejeros:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-bocados-callejeros .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-bocados-callejeros .container {
        padding-top: 62px;
    }
}

#hero-bocados-callejeros h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-bocados-callejeros h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-bocados-callejeros h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-bocados-callejeros h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-bocados-callejeros .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-bocados-callejeros .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-bocados-callejeros {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-bocados-callejeros {
        height: 100vh;
    }

    #hero-bocados-callejeros h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-bocados-callejeros h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Pastas y Salsas
--------------------------------------------------------------*/
#hero-pastas-salsas {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/pastas_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-pastas-salsas:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-pastas-salsas .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-pastas-salsas .container {
        padding-top: 62px;
    }
}

#hero-pastas-salsas h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-pastas-salsas h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-pastas-salsas h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-pastas-salsas h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-pastas-salsas .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-pastas-salsas .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-pastas-salsas {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-pastas-salsas {
        height: 100vh;
    }

    #hero-pastas-salsas h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-pastas-salsas h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Pan de Pascua
--------------------------------------------------------------*/
#hero-pan-pascua {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/rosca_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-pan-pascua:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-pan-pascua .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-pan-pascua .container {
        padding-top: 62px;
    }
}

#hero-pan-pascua h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-pan-pascua h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-pan-pascua h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-pan-pascua h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-pan-pascua .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-pan-pascua .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-pan-pascua {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-pan-pascua {
        height: 100vh;
    }

    #hero-pan-pascua h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-pan-pascua h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Bocaditos y Ricuras Navideñas
--------------------------------------------------------------*/
#hero-bocaditos-navidenos {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/bocaditos-navidenos_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-bocaditos-navidenos:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-bocaditos-navidenos .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-bocaditos-navidenos .container {
        padding-top: 62px;
    }
}

#hero-bocaditos-navidenos h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-bocaditos-navidenos h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-bocaditos-navidenos h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-bocaditos-navidenos h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-bocaditos-navidenos .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-bocaditos-navidenos .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-bocaditos-navidenos {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-bocaditos-navidenos {
        height: 100vh;
    }

    #hero-bocaditos-navidenos h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-bocaditos-navidenos h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Buffet Navideño
--------------------------------------------------------------*/
#hero-buffet-navideno {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/pavo_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-buffet-navideno:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-buffet-navideno .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-buffet-navideno .container {
        padding-top: 62px;
    }
}

#hero-buffet-navideno h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-buffet-navideno h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-buffet-navideno h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-buffet-navideno h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-buffet-navideno .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-buffet-navideno .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-buffet-navideno {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-buffet-navideno {
        height: 100vh;
    }

    #hero-buffet-navideno h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-buffet-navideno h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Vestidos Navideños
--------------------------------------------------------------*/
#hero-vestidos-navideno {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/vestidonavideno_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-vestidos-navideno:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-vestidos-navideno .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-vestidos-navideno .container {
        padding-top: 62px;
    }
}

#hero-vestidos-navideno h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-vestidos-navideno h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-vestidos-navideno h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-vestidos-navideno h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-vestidos-navideno .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-vestidos-navideno .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-vestidos-navideno {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-vestidos-navideno {
        height: 100vh;
    }

    #hero-vestidos-navideno h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-vestidos-navideno h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Dia de Difuntos
--------------------------------------------------------------*/
#hero-colada-morada {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/colada_morada_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-colada-morada:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-colada-morada .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-colada-morada .container {
        padding-top: 62px;
    }
}

#hero-colada-morada h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-colada-morada h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-colada-morada h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-colada-morada h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-colada-morada .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-colada-morada .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-colada-morada {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-colada-morada {
        height: 100vh;
    }

    #hero-colada-morada h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-colada-morada h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Chocolate y Bocadillos Navideños
--------------------------------------------------------------*/
#hero-choconavi {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/choconavi_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-choconavi:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-choconavi .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-choconavi .container {
        padding-top: 62px;
    }
}

#hero-choconavi h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-choconavi h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-choconavi h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-choconavi h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-choconavi .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-choconavi .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-choconavi {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-choconavi {
        height: 100vh;
    }

    #hero-choconavi h1 {
        font-size: 40px;
        line-height: 50px;
    }

    #hero-choconavi h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    text-align: center;
    margin-bottom: 0px;
    position: relative;
    padding-top: 120px;
    margin-bottom: 30px;
}

.team .container-fluid p {
    text-align: justify;
    padding-right: 80px;
    padding-bottom: 10px;
    padding-left: 80px;
    font-size: 18px;
    font-style: italic;
}

.team h1 {
    margin: 0;
    padding-top: 0px;
    padding-bottom: 20px;
    font-size: 30px;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kaushan Script", cursive;
}

.team .member .pic {
    overflow: hidden;
}

.team .member .member-info {
    position: absolute;
    top: 90%;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px 0;
    color: #2f4d5a;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    max-height: 95px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.team .member:hover .member-info {
    max-height: 300px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    color: #2f4d5a;
    position: relative;
    padding-bottom: 10px;
}

.team .member h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #b1cbd7;
    bottom: 0;
    left: calc(50% - 25px);
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 16px;
}

@media (max-width: 992px) {
    .team .member {
        margin-bottom: 0px;
    }
    .team img {
        padding: 10px;
    }
    .team .container-fluid p {
        text-align: justify;
        padding-right: 10px;
        padding-bottom: 0px;
        padding-left: 10px;
        padding-top: 40px;
        font-size: 18px;
        font-style: italic;
    }

    .team h1 {
        margin: 0;
        padding-top: 0px;
        padding-bottom: 20px;
        font-size: 30px;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kaushan Script", cursive;
    }
}

/*--------------------------------------------------------------
# Hero Maquillaje Navideño
--------------------------------------------------------------*/
#hero-maquinavi {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/maquillaje_fondo.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero-maquinavi:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-maquinavi .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-maquinavi .container {
        padding-top: 62px;
    }
}

#hero-maquinavi h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-maquinavi h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-maquinavi h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-maquinavi h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-maquinavi .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-maquinavi .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-maquinavi {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-maquinavi {
        height: 100vh;
    }

    #hero-maquinavi h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-maquinavi h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Globos del Amor
--------------------------------------------------------------*/
#hero-globos-amor {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/globos-amor_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-globos-amor:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-globos-amor .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-globos-amor .container {
        padding-top: 62px;
    }
}

#hero-globos-amor h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-globos-amor h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-globos-amor h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-globos-amor h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-globos-amor .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-globos-amor .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-globos-amor {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-globos-amor {
        height: 100vh;
    }

    #hero-globos-amor h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-globos-amor h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Alitas
--------------------------------------------------------------*/
#hero-alitas {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/alitas_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-alitas:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-alitas .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-alitas .container {
        padding-top: 62px;
    }
}

#hero-alitas h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-alitas h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-alitas h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-alitas h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-alitas .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-alitas .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-alitas {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-alitas {
        height: 100vh;
    }

    #hero-alitas h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-alitas h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Acripie
--------------------------------------------------------------*/
#hero-acripie {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/acripie-fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-acripie:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-acripie .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-acripie .container {
        padding-top: 62px;
    }
}

#hero-acripie h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-acripie h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-acripie h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-acripie h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-acripie .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-acripie .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-acripie {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-acripie {
        height: 100vh;
    }

    #hero-acripie h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-acripie h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Peluqueria Pro
--------------------------------------------------------------*/
#hero-peluqueriapro {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/peluqueriapro-fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-peluqueriapro:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-peluqueriapro .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-peluqueriapro .container {
        padding-top: 62px;
    }
}

#hero-peluqueriapro h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-peluqueriapro h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-peluqueriapro h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-peluqueriapro h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-peluqueriapro .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-peluqueriapro .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-peluqueriapro {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-peluqueriapro {
        height: 100vh;
    }

    #hero-peluqueriapro h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-peluqueriapro h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Luces de Neón Flex
--------------------------------------------------------------*/
#hero-luces-neon {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/lucesneon-fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-luces-neon:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-luces-neon .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-luces-neon .container {
        padding-top: 62px;
    }
}

#hero-luces-neon h1 {
    margin: 0;
    padding-top: 450px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-luces-neon h1 {
        margin: 0;
        text-align: center;
        padding-top: 280px;
        font-size: 55px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-luces-neon h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-luces-neon h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-luces-neon .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-luces-neon .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-luces-neon {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-luces-neon {
        height: 100vh;
    }

    #hero-luces-neon h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-luces-neon h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Bomboneria para Mamá
--------------------------------------------------------------*/
#hero-bomboneria-mama {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/bomboneria-fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-bomboneria-mama:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-bomboneria-mama .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-bomboneria-mama .container {
        padding-top: 62px;
    }
}

#hero-bomboneria-mama h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-bomboneria-mama h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-bomboneria-mama h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-bomboneria-mama h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-bomboneria-mama .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-bomboneria-mama .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-bomboneria-mama {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-bomboneria-mama {
        height: 100vh;
    }

    #hero-bomboneria-mama h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-bomboneria-mama h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Buffet para Mamá
--------------------------------------------------------------*/
#hero-buffet-mama {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/buffetmama-fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-buffet-mama:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-buffet-mama .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-buffet-mama .container {
        padding-top: 62px;
    }
}

#hero-buffet-mama h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-buffet-mama h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-buffet-mama h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-buffet-mama h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-buffet-mama .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-buffet-mama .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-buffet-mama {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-buffet-mama {
        height: 100vh;
    }

    #hero-buffet-mama h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-buffet-mama h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Festival de Cangejos
--------------------------------------------------------------*/
#hero-festival-cangrejos {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/festivalcangrejo-fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-festival-cangrejos:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-festival-cangrejos .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-festival-cangrejos .container {
        padding-top: 62px;
    }
}

#hero-festival-cangrejos h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-festival-cangrejos h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-festival-cangrejos h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-festival-cangrejos h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-festival-cangrejos .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-festival-cangrejos .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-festival-cangrejos {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-festival-cangrejos {
        height: 100vh;
    }

    #hero-festival-cangrejos h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-festival-cangrejos h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Balayage
--------------------------------------------------------------*/
#hero-balayage {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/balayage-fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-balayage:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-balayage .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-balayage .container {
        padding-top: 62px;
    }
}

#hero-balayage h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-balayage h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-balayage h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-balayage h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-balayage .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-balayage .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-balayage {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-balayage {
        height: 100vh;
    }

    #hero-balayage h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-balayage h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Masajes
--------------------------------------------------------------*/
#hero-masajes {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/masajes_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-masajes:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-masajes .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-masajes .container {
        padding-top: 62px;
    }
}

#hero-masajes h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-masajes h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-masajes h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-masajes h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-masajes .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-masajes .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-masajes {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-masajes {
        height: 100vh;
    }

    #hero-masajes h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-masajes h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Sanduches
--------------------------------------------------------------*/
#hero-sanduches {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/sanduches_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-sanduches:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-sanduches .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-sanduches .container {
        padding-top: 62px;
    }
}

#hero-sanduches h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-sanduches h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-sanduches h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-sanduches h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-sanduches .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-sanduches .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-sanduches {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-sanduches {
        height: 100vh;
    }

    #hero-sanduches h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-sanduches h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Sopas
--------------------------------------------------------------*/
#hero-sopas {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/sopas_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-sopas:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-sopas .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-sopas .container {
        padding-top: 62px;
    }
}

#hero-sopas h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-sopas h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-sopas h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-sopas h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-sopas .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-sopas .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-sopas {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-sopas {
        height: 100vh;
    }

    #hero-sopas h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-sopas h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Skincare
--------------------------------------------------------------*/
#hero-skincare {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/skincare_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-skincare:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-skincare .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-skincare .container {
        padding-top: 62px;
    }
}

#hero-skincare h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-skincare h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-skincare h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-skincare h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-skincare .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-skincare .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-skincare {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-skincare {
        height: 100vh;
    }

    #hero-skincare h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-skincare h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Vestidos y Lazos
--------------------------------------------------------------*/
#hero-vestidosylazos {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/vestidosylazos_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-vestidosylazos:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-vestidosylazos .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-vestidosylazos .container {
        padding-top: 62px;
    }
}

#hero-vestidosylazos h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-vestidosylazos h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-vestidosylazos h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-vestidosylazos h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-vestidosylazos .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-vestidosylazos .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-vestidosylazos {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-vestidosylazos {
        height: 100vh;
    }

    #hero-vestidosylazos h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-vestidosylazos h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Vestidos y Lazos
--------------------------------------------------------------*/
#hero-envueltos-ecuatorianos {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/envueltos-fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-envueltos-ecuatorianos:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-envueltos-ecuatorianos .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-envueltos-ecuatorianos .container {
        padding-top: 62px;
    }
}

#hero-envueltos-ecuatorianos h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-envueltos-ecuatorianos h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-envueltos-ecuatorianos h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-envueltos-ecuatorianos h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-envueltos-ecuatorianos .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-envueltos-ecuatorianos .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-envueltos-ecuatorianos {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-envueltos-ecuatorianos {
        height: 100vh;
    }

    #hero-envueltos-ecuatorianos h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-envueltos-ecuatorianos h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Marketing para redes sociales
--------------------------------------------------------------*/
#hero-marketing-redes {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/redes_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-marketing-redes:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-marketing-redes .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-marketing-redes .container {
        padding-top: 62px;
    }
}

#hero-marketing-redes h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-marketing-redes h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-marketing-redes h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-marketing-redes h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-marketing-redes .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-marketing-redes .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-marketing-redes {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-marketing-redes {
        height: 100vh;
    }

    #hero-marketing-redes h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-marketing-redes h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Pastas y Salsas
--------------------------------------------------------------*/
#hero-pastasysalsas {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/pastasysalsas_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-pastasysalsas:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-pastasysalsas .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-pastasysalsas .container {
        padding-top: 62px;
    }
}

#hero-pastasysalsas h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-pastasysalsas h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-pastasysalsas h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-pastasysalsas h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-pastasysalsas .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-pastasysalsas .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-pastasysalsas {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-pastasysalsas {
        height: 100vh;
    }

    #hero-pastasysalsas h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-pastasysalsas h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Menestras
--------------------------------------------------------------*/
#hero-menestras {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/menestra-fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-menestras:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-menestras .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-menestras .container {
        padding-top: 62px;
    }
}

#hero-menestras h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-menestras h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-menestras h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-menestras h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-menestras .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-menestras .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-menestras {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-menestras {
        height: 100vh;
    }

    #hero-menestras h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-menestras h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Videos Pro
--------------------------------------------------------------*/
#hero-videos-pro {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/videospro_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-videos-pro:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-videos-pro .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-videos-pro .container {
        padding-top: 62px;
    }
}

#hero-videos-pro h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-videos-pro h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-videos-pro h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-videos-pro h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-videos-pro .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-videos-pro .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-videos-pro {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-videos-pro {
        height: 100vh;
    }

    #hero-videos-pro h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-videos-pro h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero cupcakes
--------------------------------------------------------------*/
#hero-cupcakes {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/cupcakes_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-cupcakes:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-cupcakes .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-cupcakes .container {
        padding-top: 62px;
    }
}

#hero-cupcakes h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-cupcakes h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-cupcakes h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-cupcakes h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-cupcakes .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-cupcakes .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-cupcakes {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-cupcakes {
        height: 100vh;
    }

    #hero-cupcakes h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-cupcakes h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Maderoterapia
--------------------------------------------------------------*/
#hero-maderoterapia {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/maderoterapia_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-maderoterapia:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-maderoterapia .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-maderoterapia .container {
        padding-top: 62px;
    }
}

#hero-maderoterapia h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-maderoterapia h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-maderoterapia h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-maderoterapia h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-maderoterapia .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-maderoterapia .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-maderoterapia {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-maderoterapia {
        height: 100vh;
    }

    #hero-maderoterapia h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-maderoterapia h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Maduro y Verde
--------------------------------------------------------------*/
#hero-maduro-verde {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/maduros-verde_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-maduro-verde:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-maduro-verde .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-maduro-verde .container {
        padding-top: 62px;
    }
}

#hero-maduro-verde h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-maduro-verde h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-maduro-verde h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-maduro-verde h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-maduro-verde .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-maduro-verde .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-maduro-verde {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-maduro-verde {
        height: 100vh;
    }

    #hero-maduro-verde h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-maduro-verde h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Cinnamon
--------------------------------------------------------------*/
#hero-cinnamon {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/cinnamon_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-cinnamon:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-cinnamon .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-cinnamon .container {
        padding-top: 62px;
    }
}

#hero-cinnamon h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-cinnamon h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-cinnamon h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-cinnamon h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-cinnamon .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-cinnamon .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-cinnamon {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-cinnamon {
        height: 100vh;
    }

    #hero-cinnamon h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-cinnamon h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Bocaditos Shot
--------------------------------------------------------------*/
#hero-bocaditos-shot {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/bocados-shot_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-bocaditos-shot:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-bocaditos-shot .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-bocaditos-shot .container {
        padding-top: 62px;
    }
}

#hero-bocaditos-shot h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-bocaditos-shot h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-bocaditos-shot h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-bocaditos-shot h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-bocaditos-shot .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-bocaditos-shot .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-bocaditos-shot {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-bocaditos-shot {
        height: 100vh;
    }

    #hero-bocaditos-shot h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-bocaditos-shot h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Brownie
--------------------------------------------------------------*/
#hero-brownie {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/brownie_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-brownie:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-brownie .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-brownie .container {
        padding-top: 62px;
    }
}

#hero-brownie h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-brownie h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-brownie h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-brownie h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-brownie .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-brownie .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-brownie {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-brownie {
        height: 100vh;
    }

    #hero-brownie h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-brownie h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Alisados
--------------------------------------------------------------*/
#hero-alisados {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/alisado_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-alisados:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-alisados .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-alisados .container {
        padding-top: 62px;
    }
}

#hero-alisados h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-alisados h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-alisados h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-alisados h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-alisados .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-alisados .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-alisados {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-alisados {
        height: 100vh;
    }

    #hero-alisados h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-alisados h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Bocaditos Chinos
--------------------------------------------------------------*/
#hero-bocaditos-chinos {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/bocaditoschinos_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-bocaditos-chinos:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-bocaditos-chinos .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-bocaditos-chinos .container {
        padding-top: 62px;
    }
}

#hero-bocaditos-chinos h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-bocaditos-chinos h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-bocaditos-chinos h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-bocaditos-chinos h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-bocaditos-chinos .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-bocaditos-chinos .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-bocaditos-chinos {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-bocaditos-chinos {
        height: 100vh;
    }

    #hero-bocaditos-chinos h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-bocaditos-chinos h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Mini Chef
--------------------------------------------------------------*/
#hero-mini-chef {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/mini-chef-fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-mini-chef:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-mini-chef .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-mini-chef .container {
        padding-top: 62px;
    }
}

#hero-mini-chef h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-mini-chef h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-mini-chef h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-mini-chef h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-mini-chef .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-mini-chef .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-mini-chef {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-mini-chef {
        height: 100vh;
    }

    #hero-mini-chef h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-mini-chef h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Mini Uñas
--------------------------------------------------------------*/
#hero-mini-unas {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/unas-mini-fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-mini-unas:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-mini-unas .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-mini-unas .container {
        padding-top: 62px;
    }
}

#hero-mini-unas h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-mini-unas h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-mini-unas h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-mini-unas h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-mini-unas .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-mini-unas .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-mini-unas {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-mini-unas {
        height: 100vh;
    }

    #hero-mini-unas h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-mini-unas h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# cursos_actualizacion
--------------------------------------------------------------*/

.courses-section {
    padding: 40px 0;
}

.courses-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.course-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    overflow: hidden;
}

.course-card img {
    width: 100%;
    height: auto;
}

.course-card h3 {
    margin: 15px 0 10px;
    font-size: 1.5rem;
    color: #444;
}

.course-card p {
    padding: 0 15px;
    font-size: 1rem;
    color: #666;
}

.course-link {
    display: inline-block;
    margin: 15px 0;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.course-link:hover {
    background-color: #0056b3;
}

/*--------------------------------------------------------------
# Hero Whatsapp
--------------------------------------------------------------*/
#hero-whatsapp {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/whatsapp2-fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-whatsapp:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-whatsapp .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-whatsapp .container {
        padding-top: 62px;
    }
}

#hero-whatsapp h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-whatsapp h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-whatsapp h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-whatsapp h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-whatsapp .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-whatsapp .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-whatsapp {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-whatsapp {
        height: 100vh;
    }

    #hero-whatsapp h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-whatsapp h2 {
        font-size: 18px;
        line-height: 24px;
    }
}


/*--------------------------------------------------------------
# Hero Batidos
--------------------------------------------------------------*/
#hero-batidos {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/batidos_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-batidos:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-batidos .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-batidos .container {
        padding-top: 62px;
    }
}

#hero-batidos h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-batidos h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-batidos h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-batidos h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-batidos .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-batidos .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-batidos {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-batidos {
        height: 100vh;
    }

    #hero-batidos h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-batidos h2 {
        font-size: 18px;
        line-height: 24px;
    }
    
    
    
/*--------------------------------------------------------------
# Hero Inyectología
--------------------------------------------------------------*/
#hero-inyectologia {
    width: 100%;
    height: 90vh;
    background: url("../img/cursos/inyectologia_fondo.webp") top center;
    background-size: cover;
    position: relative;
}

#hero-inyectologia:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero-inyectologia .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero-inyectologia .container {
        padding-top: 62px;
    }
}

#hero-inyectologia h1 {
    margin: 0;
    padding-top: 100px;
    font-size: 55px;
    font-weight: 700;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Kobajeon", sans-serif;
}

@media (max-width: 992px) {
    #hero-inyectologia h1 {
        margin: 0;
        text-align: center;
        padding-top: 100px;
        font-size: 95px;
        font-weight: 700;
        line-height: 50px;
        color: #efb3a8;
        font-family: "Kobajeon", sans-serif;
    }

    #hero-inyectologia h2 {
        color: #eee;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 24px;
    }
}
#hero-inyectologia h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero-inyectologia .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero-inyectologia .btn-get-started:hover {
    background: #5fcf80;
    border: 2px solid #5fcf80;
}

@media (min-width: 1024px) {
    #hero-inyectologia {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero-inyectologia {
        height: 100vh;
    }

    #hero-inyectologia h1 {
        font-size: 40px;
        line-height: 36px;
    }

    #hero-inyectologia h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

}



/*--------------------------------------------------------------
# Cursos Noti
--------------------------------------------------------------*/
.noti {
    padding-top: 120px;
}

.noti .noti-member {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
    transition: 0.3s;
}

.noti .noti-member .member-img {
    position: relative;
    overflow: hidden;
    max-height: 720px;
}

.noti .noti-member .member-img:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-size: contain;
    z-index: 1;
}

.noti .noti-member .member-info {
    padding: 10px 15px 20px 15px;
}

.noti .noti-member .member-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--color-secondary);
}

.noti .noti-member .member-info h4 a {
    color: #37423b;
    transition: 0.3s;
}

.noti .noti-member .member-info h4 a:hover {
    color: #e7276f;
}

.noti .noti-member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.noti .noti-member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: rgba(33, 37, 41, 0.7);
}

.noti .noti-member:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.noti .noti-member:hover .social {
    right: 8px;
    opacity: 1;
}

.noti .noti-content {
    padding: 15px;
}

.noti h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 0.6;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.noti h3 {
    font-size: 30px;
    line-height: 0.6;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.noti h1 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 15px;
    font-size: 30px;
    font-weight: 500;
    line-height: 50px;
    color: #efb3a8;
    font-family: "Open Sans", sans-serif;
}

.noti h4 {
    font-size: 20px;
    line-height: 1;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}

.noti .noti-content h2 {
    font-size: 40px;
    line-height: 0.6;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}

.noti .noti-content h3 {
    font-weight: 700;
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
}

.noti .noti-content h3 a {
    color: #37423b;
    transition: 0.3s;
}

.noti .noti-content h3 a:hover {
    color: #5fcf80;
}

.noti .noti-content p {
    font-size: 14px;
    color: #777777;
}

.noti .cursos-content h4 {
    font-size: 14px;
    background: #5fcf80;
    padding: 7px 14px;
    color: #fff;
    margin: 0;
}

/* Tablets y móviles medianos (481px – 767px) → 2 cards por fila */
@media (max-width: 767px) {
  .noti .col-lg-3,
  .noti .col-md-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .noti .noti-member {
    margin: 8px;
  }

  .noti .noti-member .member-info h4 {
    font-size: 18px; /* Texto más compacto */
  }
}

/* Celulares pequeños (≤480px) → 2 cards por fila y texto más reducido */
@media (max-width: 480px) {
  .noti .col-lg-3,
  .noti .col-md-5 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .noti .noti-member {
    margin: 5px;
  }

  .noti .noti-member .member-info h4 {
    font-size: 16px; /* Ajuste de título */
  }

  .noti .noti-member .member-info span,
  .noti .noti-member .member-info p {
    font-size: 12px; /* Texto más pequeño */
  }
}

/* Extra pequeños (≤360px) → 1 card por fila */
@media (max-width: 360px) {
  .noti .col-lg-3,
  .noti .col-md-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}