/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*  typography */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');
/*@import url('https://fonts.googleais.com/css2?family=Manrope:wght@200..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/*root {
    --primary: #FE1338 ; rojo
    --light: #F1F5F9;#E5F3FF;
    --dark: #00405A;    azul
    --bs-primary: #fc2;
    --bs-white: #fff;
    --bs-light: #F1F5F9;
         --bs-gray: #6c757d;
        --bs-gray-dark: #0066ff;
        --bg-secondary: #fe1338;
}*/

body {
    line-height: 1.6;
    font-family: "Heebo", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #52565B;
}

p, .paragraph {
    /*font-weight: 400;*/
    color: #52565B;
    font-size: 1em;
    line-height: 1.6;
    text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
    color: #00405A;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    line-height: 1.3;
    padding-bottom: 3px;
}

h1, .h1 {
    font-size: 36px;
}
@media (max-width: 575px) {
    h1, .h1 {
        font-size: 32px;
    }
}

h2, .h2 {
    font-size: 30px;
}
@media (max-width: 575px) {
    h2, .h2 {
        font-size: 26px;
    }
}

h3, .h3 {
    font-size: 26px;
}
@media (max-width: 575px) {
    h3, .h3 {
        font-size: 20px;
    }
}

h4, .h4 {
    font-size: 20px;
}
@media (max-width: 575px) {
    h4, .h4 {
        font-size: 14px;
    }
}

h5, .h5 {
    font-size: 16px;
}
@media (max-width: 575px) {
    h5, .h5 {
        font-size: 14px;
    }
}

h6, .h6 {
    font-size: 15px;
}
@media (max-width: 575px) {
    h6, .h6 {
        font-size: 13px;
    }
}
.page-title-section
{
    /*font-family: "Poppins", sans-serif;*/
}

@media (min-width: 1024px) {
    .page-title-section
    {
        padding: 70px 0 50px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top left
    }
    .page-title-section h2
    {
        letter-spacing: 1px;
    }
}
@media (max-width: 1024px) {
    .page-title-section
    {
        padding: 65px 0 45px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}
main img
{
    border-radius: 2px;
    /*width: 100%;*/
    /*box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);*/
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


/* Button style */
.btn {
    font-size: 15px;
    font-family: "Manrope", sans-serif;
    text-transform: capitalize;
    padding: 12px 34px;
    border-radius: 0;
    font-weight: 600;
    border: 0;
    position: relative;
    z-index: 1;
    transition: 0.2s ease;
    overflow: hidden;
    white-space: nowrap;
}
.btn::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 100%;
    left: 0;
    bottom: 10%;
    z-index: -1;
    transition: transform 0.2s ease-in-out;
    transform-origin: top;
    transform: scaleY(0);
}
.btn:active, .btn:hover, .btn.focus, .btn:focus, .btn.active {
    outline: 0;
    box-shadow: none !important;
}
.btn:active::before, .btn:hover::before, .btn.focus::before, .btn:focus::before, .btn.active::before {
    transform: scaleY(1);
    transform-origin: bottom;
}

.btn-sm {
    font-size: 14px;
    padding: 10px 35px;
}

.btn-xs {
    font-size: 12px;
    padding: 5px 15px;
}

.btn-primary {
    color: #fff;
    background-color: #0866FF;
}
.btn-primary::before {
    background-color: #00405A;
}
.btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary.active {
    color: #Fff !important;
    background-color: #00405A !important;
    border-color: #00405A !important;
}
.btn-secondary {
    color: #fff;
    background-color:#616D8A;
}
.btn-secondary::before {
    background-color: #183153;
}
.btn-secondary:active, .btn-secondary:hover, .btn-secondary.focus, .btn-secondary:focus, .btn-secondary.active {
    color: #Fff !important;
    background-color: #183153 !important;
    border-color: #183153 !important;
}

.btn-danger
{
    background-color: #FE1338;
    color: #fff;
    border: #FFF 2px solid ;
    border-radius: 4px;
}
.btn-danger::before {
    color: #FE1338 ;
    background-color: #fff ;
    border-color: #FE1338 2px solid ;
}
.btn-danger:active, .btn-danger:hover, .btn-danger.focus, .btn-danger:focus, .btn-danger.active {
    color: #FE1338 ;
    background-color: #fff ;
    border: #FE1338 2px solid ;
}

.btn-outline-primary {
    color: #0866FF;
    background-color: transparent;
}
/*.btn-outline-primary::before {
    background-color: #fff;
    border: 1px solid #0866FF;
    color: #0866FF;
}
.btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary.active {
    background-color: #fff;
    border: 1px solid #0866FF;
    color: #0866FF;
}*/


.btn-light {
    color: #FE1338;
    background-color: #fff;
    border: 1px solid #fff;
}
.btn-light::before {
    background-color: #FE1338;
}
.btn-light:active, .btn-light:hover, .btn-light.focus, .btn-light:focus, .btn-light.active {
    color: #fff !important;
    background-color: #fff !important;
    border: 1px solid #fff !important;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

::-moz-selection {
    background: #ffcd6e;
    color: #fff;
}

::selection {
    background: #ffcd6e;
    color: #fff;
}

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFDC11;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

ol,
ul {
    list-style-type: none;
    margin: 0px;
}

img {
    vertical-align: middle;
    border: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a,
button,
select {
    cursor: pointer;
    transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
    outline: 0;
}

a:hover {
    color: #FE1338;
}

a.text-primary:hover {
    color: #FE1338 !important;
}

a.text-light:hover {
    color: #FE1338 !important;
}

a.text-primary:hover {
    color: #FE1338 !important;
}

h4 {
    transition: 0.2s ease;
}

a h4:hover {
    color: #FE1338;
}

.slick-slide {
    outline: 0;
}

/*.section {
    padding-top: 60px;
    padding-bottom: 20px;
}
.section-sm {
    padding-top: 40px;
    padding-bottom: 40px;
}*/

@media (min-width: 720px) {
    .section-title {
        padding-top: 0;
        margin:0;
        color: #FE1338;
        font-size: 18px;
    }
    .section-title-main {
        color: #0866ff;
    }
}

@media (max-width: 720px) {
    .section-title {
        margin-bottom: 2px;
        padding-top: 20px;
          color: #FE1338;
        font-size: 16px;
    }
    .section-title-main {
        color: #0866ff;
    }
}

.section-title-footer {
    color: #0866FF;
    font-weight: 500;
    font-size: 18px;
}

.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.border-primary {
    border-color: #ededf1 !important;
}

/* overlay */
.overlay {
    position: relative;
}
.overlay::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /*background: #00405a;*/
    opacity: 0.8;
}

.outline-0 {
    outline: 0 !important;
}

.d-unset {
    display: unset !important;
}

.bg-primary {
    background: #0866FF !important;
}

.bg-secondary {
    background: #00405a !important;
}

.bg-gray {
    background: #f8f8f8;
}

.text-primary {
    color: #0866FF !important;
}
.text-danger {
    color: #FE1338 !important;
}


.text-light {
    color: #8585a4 !important;
}

.text-lighten {
    color: #d6d6e0 !important;
}

.text-muted {
    color: #b5b5b7 !important;
}

.text-dark {
    color: #00405A !important;
}

.font-secondary {
    font-family: "futura-bold";
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pl-150 {
    padding-left: 150px;
}

.zindex-1 {
    z-index: 1;
}

@media (max-width: 991px) {
    .overflow-md-hidden {
        overflow: hidden;
    }
}

.vertical-align-middle {
    vertical-align: middle;
}

.icon-md {
    font-size: 36px;
}

/* page title */

.custom-breadcrumb li.nasted {
    position: relative;
    padding-left: 25px;
}
.custom-breadcrumb li.nasted::before {
    position: absolute;
    font-family: "themify";
    content: "\e649";
    font-size: 20px;
    top: 50%;
    left: -5px;
    color: #fff;
    transform: translateY(-50%);
}

/* /page title */
.list-styled {
    padding-left: 25px;
}
.list-styled li {
    position: relative;
    margin-bottom: 15px;
}
.list-styled li::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #FE1338;
    left: -25px;
    top: 5px;
}

textarea.form-control {
    height: 200px;
    padding: 20px;
}

#map_canvas {
    height: 500px;
}


.top-header {
    font-size: 13px;
    transition: transform 0.2s ease;
    transform-origin: top;
    font-weight: 500;
   background-color: #004EB7;
  /*  background-color: #0866ff;*/
}

.top-header a
{
    /*    color: #FE1338 !important;*/
    /*font-weight: 700;*/
    color: #fff ;
    /*font-family: "Poppins", san-serif;*/
    font-size: 13px;
}
.top-header a:hover
{
    color:#0866FF ;
}


.border{
    border:1px solid #dee2e6 !important
}
.border-0{
    border:0 !important
}
.border-top{
    border-top:1px solid #dee2e6 !important
}
.border-top-0{
    border-top:0 !important
}
.border-end{
    border-right:1px solid #fff !important
}
.border-end-0{
    border-right:0 !important
}
.border-bottom{
    border-bottom:1px solid #dee2e6 !important
}
.border-bottom-0{
    border-bottom:0 !important
}
.border-start{
    border-left:1px solid #fff !important
}
.border-start-0{
    border-left:0 !important
}
.border-primary{
    border-color:#f6466c !important
}
.border-secondary{
    border-color:#f28b00 !important
}
.border-success{
    border-color:#198754 !important
}
.border-info{
    border-color:#0dcaf0 !important
}
.border-warning{
    border-color:#ffc107 !important
}
.border-danger{
    border-color:#dc3545 !important
}
.border-light{
    border-color:#f4f7fc !important
}
.border-dark{
    border-color:#222 !important
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0509803922);
}

/*******************************************************/
.navigation {
    /*background: linear-gradient(to bottom, transparent 10%, transparent 10%);*/
    /*background-image: linear-gradient(to bottom, #1A1A37, transparent 100%);*/
    background-color: #fff;
    transition: 0.2s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media (max-width: 991px) {
    .navigation {
        /* Color Ventafna Pequeña*/
        background: #fff;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #00405a;
        max-height: calc(100vh - 80px);
    }
    .navbar-collapse.show {
        overflow-y: auto;
    }
}

.navbar-nav {
    padding-left: 40px;
    /*background: #FE1338;*/
}
@media (max-width: 991px) {
    .navbar-nav {
        padding-left: 0;
        background: #fff;
    }
}

.nav-bg {
    /*background-color: #00405a;*/
    background-color: #fff;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}
@media (max-width: 991px) {
    .nav-item:last-child {
        margin-bottom: 20px;
    }
}
.nav-item .nav-link {
    text-transform: uppercase;
    font-weight: 500;
}
.nav-item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    content: "";
    background: #fff;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    pointer-events: none;
}
@media (max-width: 991px) {
    .nav-item::before {
        opacity: 0.1;
        height: 100%;
    }
}
.nav-item:hover::before, .nav-item.active::before {
    transform: scaleY(1);
    transform-origin: bottom;
}

.navbar-dark .navbar-nav .nav-link {
    color: #00405a;
    font-family: "Heebo", sans-serif;
    font-size: 15px;
}

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #FE1338;
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
    color: #FE1338;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 30px 0px;
}
@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 12px 20px;
    }
}
.navbar .nav-item > .dropdown-toggle::after {
    border: 0;
    margin-left: 0.255em;
    vertical-align: 1px;
    content: "\e64b";
    font-family: "themify";
    font-size: 11px;
    width: auto;
}
.navbar .dropdown .dropdown-menu li {
    padding-top: 5px;
}
.navbar .dropdown .dropdown-menu li:last-child {
    padding-bottom: 5px;
}
.navbar .dropdown .dropdown-menu.dropdown-submenu {
    top: 0;
}
@media (max-width: 991px) {
    .navbar .dropdown .dropdown-menu.dropdown-submenu li:first-child {
        margin-top: 5px;
    }
}
.navbar .dropdown .dropdown-item .dropdown-toggle {
    display: block;
    line-height: 1.8;
}
.navbar .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.navbar .dropdown-menu {

    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
    border-bottom: 5px solid #FE1338;
    padding: 0 15px;
    padding-left: 5px;
    top: 85px;
    border-radius: 0;
    display: block;
    visibility: hidden;
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    background: #fff;
}
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        padding-left: 15px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transform-origin: unset;
        margin: 0;
        border: 0;
        position: static;
    }
}
.navbar .dropdown-menu.show {
    visibility: hidden;
}
@media (max-width: 991px) {
    .navbar .dropdown-menu.show {
        visibility: visible;
        display: block;
    }
}
.navbar .dropdown .dropdown .dropdown-toggle, .navbar .dropdown-item {
    position: relative;
    /*color: #00405A;*/
    font-family: "Manrope", sans-serif;
    font-size: 15.5px;
    color: #555;
    font-weight: 600;
    transition: 0.2s ease;
    /*text-transform: capitalize;*/

}
@media (max-width: 991px) {
    .navbar .dropdown .dropdown .dropdown-toggle, .navbar .dropdown-item {
        text-align: center;
    }
}
.navbar .dropdown .dropdown .dropdown-toggle:hover, .navbar .dropdown-item:hover {
    color: #FE1338;
    background: transparent;
}



/******************************************************************************************/
/* banner feature */
.feature-icon {
    font-size: 50px;
    color: #FE1338;
    display: inline-block;
}

/*.feature-blocks {
    margin-top: -100px;
    padding-left: 70px;
    padding-top: 40px;
    padding-right: 30%;
}*/
@media (max-width: 1400px) {
    .feature-blocks {
        padding-right: 10%;
    }
}
@media (max-width: 1200px) {
    .feature-blocks {
        padding-right: 50px;
        padding-left: 50px;
        padding-top: 50px;
    }
    .feature-blocks h3 {
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .feature-blocks {
        margin-top: 60px;
        padding: 50px;
    }
    .feature-blocks h3 {
        font-size: 25px;
    }
}

/* /banner feature */
/* course */
.card-btn {
    font-size: 12px;
    padding: 5px 10px;
}

.flex-basis-33 {
    flex-basis: 33.3333%;
}

.hover-shadow {
    transition: 0.3s ease;
}
.hover-shadow:hover {
    box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
    min-height: 300px;
}
.success-video .play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .success-video .play-btn {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.play-btn {
    display: inline-block;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: #FE1338;
    color: #fff;
    font-size: 20px;
    text-align: center;
}
.play-btn i {
    line-height: 80px;
}
.play-btn::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -2;
    transition: 0.3s ease;
    transition-delay: 0.2s;
}
.play-btn::after {
    position: absolute;
    content: "";
    height: 80%;
    width: 80%;
    transform: translate(-50%, -50%);
    background: #FE1338;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: 0.3s ease;
}
.play-btn:hover::before {
    height: 80%;
    width: 80%;
    transition-delay: 0s;
}
.play-btn:hover::after {
    height: 0;
    width: 0;
    transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
    position: absolute;
    background: #FE1338;
    font-family: "futura-bold";
    text-align: center;
    padding: 10px;
    color: #fff;
    top: 0;
    left: 0;
    text-transform: uppercase;
}
.card-date span {
    font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
    width: 70%;
    bottom: 0;
    right: 0;
}

/* /teacher */
/* footer */
.newsletter {
    background-image: linear-gradient(to right, transparent 50%, #FE1338 50%);
    margin-bottom: -170px;
    position: relative;
    z-index: 1;
}
.newsletter-block {
    padding-left: 50px;
}
@media (max-width: 575px) {
    .newsletter-block {
        padding-left: 15px;
    }
}

.input-wrapper {
    position: relative;
}
.input-wrapper button {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.form-control {
    height: 60px;
    background: #fff;
    border-radius: 0;
    padding-left: 25px;
}
.form-control:focus {
    border-color: #FE1338;
    box-shadow: none;
}

.newsletter-block .form-control {
    height: 90px;
}

.bg-footer {
    background-color: #00405a;
}

.logo-footer {
    margin-top: -20px;
    display: inline-block;
}

.footer {
    /*border-color: #494a43 !important;*/
    padding-top: 30px;
    color:#fff;
}
.footer p
{
    font-size: 13px;
/*    font-family: "Poppins", sans-serif;*/
    color:#ECEDE8;
    line-height: 1.5;
}
.footer a
{
/*    font-family: "Poppins", sans-serif;*/
    color:#ECEDE8;
    font-size: 14px;
}
.footer a:hover
{
    color:#0866FF;
}

.footer-social {
    position: relative;
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 60px;
    transition: .3s;
}

.footer-social a i {
    font-size: 15px;
    color: #ffffff;
}

.footer-social a:hover {
    background: #FE1338;
    border-color: #FE1338;
}

.footer-social a:hover i {
    color: #fff;
}

.copyright
{
    padding: 10px 0;
    background: #FE1338;
    font-size: 14px;
    /*letter-spacing: 1px;*/
}

.copyright a
{
    color: #ECEDE8;

}
/* /footer */

.filter-controls li {
    cursor: pointer;
    transition: 0.1s ease;
}
.filter-controls li.active {
    font-weight: 600;
    color: #FE1338;
}
.filter-controls li:hover {
    color: #FE1338;
}
/*# sourceMappingURL=style.css.map */



.gallery {
    padding: 100px 0;
}
.gallery .gallery-item {
    margin-top: 30px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
}
.gallery .gallery-item img {
    width: 100%;
}
.gallery .gallery-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    top: 0;
    opacity: 0;
    transition: all 0.3s ease;
}
.gallery .gallery-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.gallery .gallery-item h3 {
    position: absolute;
    z-index: 5;
    bottom: 85px;
    color: #fff;
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 30px;
    font-family: "Source Sans Pro", sans-serif;
    transform: translateY(20px);
}
.gallery .gallery-item p {
    position: absolute;
    z-index: 5;
    bottom: 20px;
    color: #fff;
    font-weight: normal;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 30px;
    font-size: 14px;
    line-height: 20px;
    transform: translateY(20px);
    transition-delay: 0.1s;
}
.gallery .gallery-item:hover:before {
    opacity: 1;
}
.gallery .gallery-item:hover h3,
.gallery .gallery-item:hover p {
    opacity: 1;
    transform: translateY(0);
}


/***********************************/


.portflio-item .portfolio-item-content {
    position: absolute;
    content: "";
    right: 0px;
    bottom: 0px;
    opacity: 0;
    transition: all 0.35s ease;

}

.portflio-item img
{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.portflio-item:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.35s ease;
    overflow: hidden;
}
.portflio-item:hover:before {
    opacity: 1;
}
.portflio-item:hover .portfolio-item-content {
    opacity: 1;
    bottom: 20px;
    right: 30px;
}
.portflio-item .overlay-item {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgb(247, 87, 87);
    opacity: 0;
    transition: all 0.35s ease;
}
.portflio-item:hover .overlay-item {
    opacity: 1;
}
/************************************/
#partner {
    padding-top: 80px;
    padding-bottom: 50px;
    text-align: center !important;
}

.clients .owl-buttons {
    padding-top: 50px;
}

.owl-theme .owl-controls .owl-buttons div {
    opacity: 1;
    filter: Alpha(Opacity=100);
}

/************************************/

/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    /*margin-bottom: 10px;*/
    background:#00405a;
}

.feature .col-md-12 {
    background:#00405a;
}

.feature .col-md-12:nth-child(2n) {
    color: #FFF;
    background:  #FE1338;
}

.feature .feature-item {
    /*min-height: 250px;*/
    padding:35px 24px;
    display: flex;
    /*padding-bottom: 0;*/
    /*    align-items: center;
        justify-content: flex-start;*/
}

.feature .feature-icon {
    position: relative;
    width: 60px;
    display: flex;
    /*    align-items: center;
        justify-content: center;*/
    padding-top: 22px;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    /*    top: -20px;
        left: -10px;*/
    top:-2px;
    left:-10px;
    border: 2px dotted #ffffff;
    border-radius: 60px;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 59px;
    height: 59px;
    /*    top: -18px;
        left: -9px;*/
    top:1px;
    left:-9px;
    background: #00405a;
    color:#FFF;
    border-radius: 60px;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    /*background: #FE1338;*/
    /*background: #00405a;*/
    color: #FFF;
}

.feature .feature-icon [class^="fas fa-"]::before {
    position: relative;
    margin: 0;
    /*background: #00405a;*/
    /*color: #FE1338;*/
    color: #FFF;
    font-size: 50px;
    line-height: 50px;
    z-index: 3;
}

.feature .feature-text {    
    padding-left: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    /*color: #FE1338;*/
    color: #fff;
    font-size: 17.5px;
    font-weight: 500;
/*    font-family: "Poppins",san-serif;*/
    /*letter-spacing: 1px;*/
    /*font-weight: 600;*/
}

.feature .feature-text p {
    margin: 0;
    /*color: #FE1338;*/
    color: #FFF;
    font-size: 0.85em;
    font-weight: 400;
    text-align: justify;
    /*font-family: "Heebo", sans-serif;*/
}

.feature .col-md-12:nth-child(2n) [class^="fas fa-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: #fff;
}

.feature .feature-text a {
    /*color: #FE1338;*/
    color: #009bde;
    font-size: 0.9em;
    font-weight: 600;
}
.feature .feature-text a:hover {
    /*color: #FE1338;*/
    color: #FDBE33;
    font-size: 0.95em;
    font-weight: 600;
}
/*//////////////////////////////////////////*/

/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative;
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 42px;
    height: 42px;
    top: 43%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 60px;
    background: #FE1338;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 42px;
    height: 42px;
    top: 43%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 60px;
    background: #FE1338;
    color: #fff ;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    background-color: #fff;
    color: #FE1338 !important;
}



@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        /*top: 630px;*/
        visibility: hidden;
        transition: 0.5s;
    }

    .header-carousel .pos_abajo
    {
        top: 20px;
    }
    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }

}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    /*height: 700px;*/
    /*margin-top: 95px;*/
    display: block;
    /*object-fit: cover;*/
    transition: 0.5s;

}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

    .header-carousel .pos_abajo
    {
        bottom: -60px;
    }
}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
        visibility: visible;
    }
    .header-carousel .pos_abajo
    {
        bottom: -160px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: rgba(0, 0, 0, .1);*/
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;

}
/*** Carousel Hero Header End ***/

.back-to-top {
    position: fixed;
    display: none;
    background: #0866FF;
    color: #fff;
    width: 42px;
    height: 42px;
    text-align: center;
    font-size: 20px;
    right: 28px;
    bottom: 16px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    background: #FFF;
    color: #FE1338;
    border: 1px solid #FE1338;
}

.back-to-top i {
    padding-top: 10px;
}

/*****************************************/
/*** Sub Title Start ***/
.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -110px;
    border: 1px solid var(--bs-secondary) !important;
}

/*** Dance Class Start ***/
.class-carousel .owl-stage-outer {
    margin-top: 30px;
}

.class-carousel .owl-nav .owl-prev,
.class-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0;
    padding: 6px 20px;
    border: 1px solid #FE1338;
    color: #FFF;
    background: #FE1338;
    border-radius: 20px;
    transition: 0.5s;
}

.class-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.class-carousel .owl-nav .owl-next {
    right: 0;
}

.class-carousel .owl-nav .owl-prev:hover,
.class-carousel .owl-nav .owl-next:hover {
    background-color: #fff;
    box-shadow: inset 100px 0 0 0 #F4F7FC !important;
    color: #FE1338;
}

.class .class-item .class-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.class .class-item .class-img img {
    transition: 0.5s;
}

.class .class-item:hover .class-img img {
    transform: scale(1.3);
}
/*** Dance Class End ***/

/*******************************************************/
/**** Slider ****/
/*******************************************************/
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */

@media (min-width: 992px) {
    .carousel {
        /*margin-bottom: 4rem;*/
    }
    /* Since positioning the image, we need to help out the caption */
    .carousel-caption {
        z-index: 10;
        bottom: 1rem;
    }

    /* Declare heights because of positioning of img element */
    .carousel-item {
        height: calc(100vh - 170px);
        /*background-color: #777;*/
    }
    .carousel-item > img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .carousel {
        /*margin-bottom: 4rem;*/
    }
    /* Since positioning the image, we need to help out the caption */
    .carousel-caption {
        z-index: 10;
        bottom: 1.1rem;
    }

    /* Declare heights because of positioning of img element */
    .carousel-item {
        height: calc(100vh - 170px);
        /*background-color: #777;*/
    }
    .carousel-item > img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 592px) {
    .carousel {
        /*margin-bottom: 4rem;*/
    }
    /* Since positioning the image, we need to help out the caption */
    .carousel-caption {
        z-index: 10;
        bottom: 0.5rem;
    }

    /* Declare heights because of positioning of img element */
    .carousel-item {
        height: calc(100vh - 280px);
        /*background-color: #777;*/
    }
    .carousel-item > img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
}

/********************************************/
/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    padding: 105px 0 50px 0;
    background: linear-gradient(rgba(242, 139, 0, 0.2), rgba(242, 139, 0, 0.3)), url(./views/assets/images/breadcrumb.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding-top: 40px;
    }

}


/******************************************************/


/******************************************/
.footer-social-contacto {
    position: relative;
    /*margin-top: 20px;*/
}

.footer-social-contacto a {
    display: inline-block;
    width: 55px;
    height: 55px;
    padding: 16px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 70px;
    transition: .3s;
    /*background-color:#00405a;*/
}

.footer-social-contacto a i {
    font-size: 20px;
}


/*** Counter Facts Start ***/

.counter-facts {
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width:230px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 190px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: #FE1338;

}
.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    border-radius: 10px 10px 0 0;
    /*    font-size: 60px;
        line-height: 90px;*/
    color: #FE1338 !important;
    display: flex;

}

.counter-facts .counter h5 {
    font-family: "Heebo", san-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    /*letter-spacing: 1px;*/
    text-transform: uppercase;
    margin: 0 0 5px 0;
    display: flex;
}
.counter-facts .counter .counter-value {
    font-size: 58px;
    font-weight: 700;
    display: block;
    color: #0866FF;
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter {
        margin-bottom: 40px;
    }
}

/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    /*padding: 30px 0;*/
}

.faqs .row {
    position: relative;
}

/*.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: #FE1338;
}*/

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }

    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }

    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 6px;
    border: none;
    border-radius: 0;
    /*background-color: #ffe8a1;*/
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #00405a;
}

.faqs .card-header a {
    display: block;
    padding: 6px 15px;
    width: 100%;
    color:#fff;
    font-size: 1em;
    font-weight: 600;
    /*    line-height: 25px;*/
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
    text-align: justify;
}

.faqs .card-header a i {
    color: #FFF;
    font-size: 1.2em;
    padding-right: 0.5em;
}


.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #FE1338;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: .5s;
}

.faqs .card-body {
    padding: 15px 0;
    font-size: 15px;
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
/*    font-family: "Poppins",sans-serif;*/
    font-weight: 500;
    color: #00405A;
    text-align: justify;
}
.faqs .card-body i{
    padding-left: 20px;
    color: #FE1338;
}


/*******************************/

.service-tab-section {
    position: relative;
}
.service-tab-section .outer-box {
    position: relative;
    z-index: 1;
}

.tabs .nav-tabs > li,
.tabs .nav-pills > li {
    margin-bottom: 10px;
}
.tabs .nav-tabs {
    text-align: center;
    border-bottom: 0;
    margin-bottom: 20px;
}
.tabs .nav-tabs li:not(:last-child) {
    margin-right: 10px;
}
.tabs .nav-tabs li a {
    text-transform: capitalize;
    font-size: 18px;
    padding: 10px 75px;
    font-weight: 500;
    color: #001C40;
    background-color:#CED2D8;
    font-family: "Heebo", sans-serif;
    /*border: 2px solid #0866FF;*/
    border-radius: 0;
    transition: all 0.3s ease;
    /*letter-spacing: 1px;*/
}
.tabs .nav-tabs li a.active, .tabs .nav-tabs li a:hover {
    color: #fff;
    background: #fe1338;
    /*padding: 10px 75px;*/
    /*border: 2px solid #fe1338;*/
}

.tab-content {
    position: relative;
    float: left;
    width: 100%;
    z-index: 99;
}

.service-tab-section .tab-list-column {
    width: 100% !important;
}

.service-tab-section .tab-list-column .tab-list,
.service-tab-section .tab-content .inner-box {
    float: none !important;
    padding-left: 115px !important;
    max-width: 700px !important;
}

.service-tab-section .tab-content {
    width: 100% !important;
}

.service-tab-section .tab-content .content-list {
    margin-top: 5px !important;
}

@media only screen and (min-width: 1920px) {
    .service-tab-section .tab-list-column .tab-list {
        margin-left: 30% !important;
        margin-right: -30% !important;
    }
}
@media only screen and (max-width: 991px) {

    .service-tab-section .tab-content .inner-box {
        padding-left: 0px;
    }

    .feature-section .contact-info .item {
        width: 100%;
        margin-right: 30px !important;
        margin-bottom: 20px !important;
    }

    .service-tab-section .tab-list-column {
        width: 100% !important;
    }

    .service-tab-section .tab-list-column .tab-list,
    .service-tab-section .tab-content .inner-box {
        float: none !important;
        padding-left: 115px !important;
        max-width: 700px !important;
    }

    .service-tab-section .tab-content {
        width: 100% !important;
    }

    .service-tab-section .tab-content .content-list {
        margin-top: 5px !important;
    }

}

@media only screen and (max-width: 767px) {
    .service-tab-section .tab-list-column .tab-list,
    .service-tab-section .tab-content .inner-box {
        margin-left: 0px !important;
    }

}

service-box {
    position: relative;
    width: 100%;
}
/*.service-box img {
    border-radius: 3px;
    width: 100%;
    box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
}*/
.service-box .contents {
    margin-left: 20px;
}
.service-box .contents h4 {
    font-family: "Heebo",sans-serif;
}
@media (max-width: 991px) {
    .service-box .contents {
        margin-left: 0;
        margin-top: 20px;
    }
}
.service-box .contents .btn-style-one {
    margin-top: 20px;
}
.service-box .section-title h3 {
    position: relative;
    font-size: 21px;
    font-weight: 600;
    padding-bottom: 14px;
    margin-bottom: 20px;
    color: #0866FF;
    text-transform: uppercase;
    font-family: "Heebo",sans-serif;
}
.service-box .section-title h3:before {
    position: absolute;
    left: 0px;
    content: "";
    bottom: 0px;
    background: #FE1338;
    height: 2px;
    width: 60px;
}
.service-box .text {
    position: relative;
    margin-bottom: 15px;
}
/*.service-box .text p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    padding-top: 5px;
}*/
.service-box .icon-box {
    position: absolute;
    top: 0px;
    left: -5px;
}
.service-box .content-list {
    padding-left: 0;
}
.service-box .content-list li {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    padding: 4px 0px;
    padding-left: 27px;
    list-style: none;
    position: relative;
}
.service-box .content-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color:#FE1338;
}
/**************************/
.btn-style-one {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 27px;
    padding: 8px 36px;
    background: #0866FF;
    border: 1px solid #0866FF;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Source Sans Pro", sans-serif;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.btn-style-one:hover {
    color: #0866FF;
    border: 1px solid #0866FF;
    background: #ffffff;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.btn-style-two {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    line-height: 27px;
    padding: 8px 36px;
    background: #f4f4f4;
    border: 1px solid #ececec;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Source Sans Pro", sans-serif;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.btn-style-two:hover {
    color: #ffffff;
    border: 1px solid #0866FF;
    background: #0866FF;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}


/*************************/

.accordion-section .accordion-holder {
    margin-top: 20px;
}
.accordion-section .accordion-holder .card {
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-section .accordion-holder .card .card-header {
    background: #fff;
    padding: 0;
    border-radius: 0;
}
.accordion-section .accordion-holder .card .card-header .card-title {
    margin-bottom: 0;
}
.accordion-section .accordion-holder .card .card-header h4 {
    position: relative;
}
.accordion-section .accordion-holder .card .card-header h4 a {
    font-weight: 600;
    font-family: "Heebo", sans-serif;
    font-size: 17px;
    display: block;
    background: #CED2D8;
    color: #001C40;
    padding: 15px 20px;
    transition: all 0.3s ease;
}
.accordion-section .accordion-holder .card .card-header h4 a:before {
    content: "\f077";
    position: absolute;
    right: 20px;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
.accordion-section .accordion-holder .card .card-header h4 a.collapsed {
    background: #fff;
    color: #000;
}
.accordion-section .accordion-holder .card .card-header h4 a.collapsed:before {
    content: "\f078";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
.accordion-section .accordion-holder .card .card-header h4 a.collapsed:hover {
    background-color: #FE1338;
    color: #FFF;
}
.accordion-section .accordion-holder .card .card-body {
    padding: 15px 30px;
}
/*******************************/
.time_grado i
{
    color: #FE1338;
    font-size: 42px;
}
.time_grado h6
{
    color: #00405A;
    font-size: 17.5px;
    font-weight: 600;
    font-family: "Heebo",sans-serif;
}
.time_grado p
{
    color: #52565B;
    font-size: 15px;
    font-weight: 500;
}


/**********/
.video-responsive {
    width: 100%;
    max-width: 800px; /* Ancho máximo opcional */
    height: auto;
  }