/********** Template CSS **********/
:root {
    --primary: #f07d26;
    --secondary: #010101;
    --light: #FDF5EB;
    --dark: #010101;
}
body {
    font-family: "Open Sans", sans-serif!important;
    font-optical-sizing: auto;
    font-weight: 400!important;
    font-style: normal;
    color: black;
}
h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-family: "Montserrat", sans-serif!important;
    font-optical-sizing: auto;
    font-weight:600!important;
    font-style: normal;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: "Montserrat", sans-serif!important;
    font-optical-sizing: auto;
    font-weight:600!important;
    font-style: normal;
}
.text-black {
    color: black!important;
}
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

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

.back-to-top {
    position: fixed;
    display: none;
    left: 30px;
    bottom: 30px;
    z-index: 99;
}
.navbar-brand img {
    max-width: 251px;
}
.navbar button:not(:disabled),.navbar [type="button"]:not(:disabled), .navbar[type="reset"]:not(:disabled), .navbar [type="submit"]:not(:disabled) {    
    width: auto;
}

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

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


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

.btn.btn-primary {
    color: #FFFFFF;
    background-color: #f07d26;
    border-color: #f07d26;
}
.btn.btn-ws {
    color: #FFFFFF;
    background-color: #1ca550;
    border-color: #1ca550;
}

.btn.btn-secundary {
    color: #FFFFFF;
    background-color: transparent;    
    border:2px solid #f07d26;
}

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

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

.btn-lg-square {
    width: 48px;
    height: 48px;
}
.btn-sm-rounded {
    width: 32px;
    height: 32px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.btn-rounded,
.btn-sm-rounded,
.btn-lg-rounded {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    background-color: white;
    border-radius: 50px;
    margin-right: 10px;
}

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

.navbar .navbar-nav .nav-link {
    padding: 35px 10px;
    color: var(--light);
    outline: none;
    font-family: "Montserrat", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400 !important;
    font-style: normal;
    font-size: 14px;
}

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

.navbar.fixed-top {
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;    
}

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

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

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-nav {
    position: relative;
    width: 110px;
    height: 96px;
    margin: -44px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: #f07d26; */
    /* transform: rotate(45deg); */
    background-image: url(../imagenes/bg-slider.png);
    background-size: contain;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center top;
    margin: 0;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    font-size: 40px;
    color: white;
    transition: .5s;
    z-index: 1;
}

.s-intro__scroll-down {
    z-index: 2;
    display: flex;
    align-items: center;
    transform: translateX(-7.6rem) rotate(90deg);
    transform-origin: right bottom;
    padding-right: var(--content-padding-bottom);
    position: absolute;
    top: 80%;
    right: -5%;
}
.s-intro__scroll-down::before {
    display: block;
    content: "";
    height: 4px;
    width: 201px;
    background-color: rgb(240 125 38);
    position: absolute;
    top: 57%;
    right: -100%;
}
.s-intro__scroll-down span {
    font-family: var(--font-2);
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .5em;
    color: white;
    line-height: var(--vspace-1);
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

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

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: var(--primary);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}


/*** Product ***/
.product-item {
    transition: .5s;
}

.product-item:hover {
    background: var(--primary) !important;
}

.product-item:hover * {
    color: var(--light);
}

.product-item:hover .border-primary {
    border-color: var(--light) !important;
}

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

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


/*** Team ***/
.team-item .team-text {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover .team-title {
    top: -100px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


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

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

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

.copyright {
    background: #f07d26;
    font-size: 14px;
}

.copyright a {
    color: white;
}

.copyright a:hover {
    color: white;
}

.navbar-dark .navbar-toggler,
.navbar-dark .navbar-toggler:hover,
.navbar-dark .navbar-toggler:active,
.navbar-dark .navbar-toggler:focus {    
    border:none!important;
    outline: 0!important;
    box-shadow: none!important;
}
/* Comienza agregados */

.slider-logo {
    max-width:335px;
    margin: 0 auto;
}


/**********************
Ws botón redondo con tooltip
***********************/
#chat-ws-redondo.ws.tooltip {
    position: fixed;
    bottom: 13px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%!important;
    cursor: pointer;
    display: block;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
            box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
    z-index: 999;
    background: #1ca550;
    padding: 8px 11px;
    opacity: 1;
  }
  
  #chat-ws-redondo.ws.tooltip img {
    padding-left: 0px;
    padding-top: 0px;
    width: 100%;
  }
  
  #chat-ws-redondo.ws.tooltip i {
    font-size: 44px;
    color: white;
  }
  
  .ws.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #1ca550;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  
  .ws.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1ca550 transparent transparent transparent;
  }
  
  .ws.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

  /* Servicios */
  .category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}

/* logos sobre slider */
.swiper {
    position: relative;    
}  

/* Recurso titulos */
.heading, .heading-left {
    position: relative;
}
.heading:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 150px;
    background: #f07d26;
    right: calc(50% - 75px);
    bottom: 80px;
}
.heading-left:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 150px;
    background: #f07d26;
    right: auto;
    bottom: 80px;
}
.category .bg-dark {    
    width: 246px;
}
.category a:hover .bg-dark{
    background: #f07d26!important;
}
/* Youtube */
.bg-holder {
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: left;
    overflow: hidden;
    will-change: transform, opacity, filter;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-repeat: no-repeat;
    z-index: -1;
}


.theme-tab .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    display: block;
  }
  
  .theme-tab .nav-link .nav-item-circle {
    color: #f07d26;
    background-color: #ffffff;
    border: 2px solid white;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    line-height: 2.75rem;
    padding: 0;
    text-align: center;
    -ms-flex-item-align: center;
    align-self: center;
    display: block;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  
  .theme-tab .nav-link.active {
    color: #f07d26;
  }
  
  .theme-tab .nav-link.active .nav-item-circle {
    background-color: #f07d26 !important;
    color: white;
    border-color: #f07d26;
  }
  .border-left {
    padding-left: 20px;
    border-left: 4px solid #f07d26;
  }
  .theme-tab .nav-link .nav-item-circle .check-icon {
    display: none;
  }
  
  .theme-tab .nav-link .nav-item-circle-parent {
    display: block;
  }
  
  .theme-tab .nav-link .nav-item-circle-parent:before {
    content: "";
    height: 2px;
    width: 101%;
    position: absolute;
    left: 51%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    background: #fff;
  }
  
  .theme-tab .nav-item-circle-parent {
    position: relative;
    padding: 0 1rem;
  }
  
  .theme-tab .nav-item-circle {
    margin: 0 auto;
    z-index: 1;
    position: relative;
  }
  
  .theme-tab .nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .theme-tab .nav-item:first-child .nav-item-circle-parent:before, .theme-tab .nav-item:last-child .nav-item-circle-parent:before {
    width: 50%;
  }
  
  .theme-tab .nav-item:first-child .nav-item-circle-parent:before {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  
  .theme-tab .nav-item:last-child .nav-item-circle-parent:before {
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  
/* Comienza Instagram  */

/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../imagenes/screenshot-frame.png) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: #dbd9d9;
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    background: #f07d26;
}


/*Estilos para contacto solo*/

/* Contacto */
button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
    cursor: pointer;
    width: 100%;
}

.help-block.with-errors {
    color: white;
    font-size: 14px;
    margin-top: 5px;
    }

    textarea.form-control {
        min-height: calc(6.5em + .75rem + 2px);
    }
    
    .alert-success {
    color: #fff;
    background-color: transparent;
    border-color: #f1f0f5;
    }
    .alert-dismissable .close, .alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    color: inherit;
    font-weight: 300;
    width: 50px;
    background: black;
    border: 1px solid #f07d26;
}
    .alert {
      position: relative;
      padding: 2rem;
      margin-bottom: 1rem;
      border: 0px solid transparent;
      border-radius: 0px;
  }
    
    .text-muted {
    color: white!important;
    }
    .history-text p.text-muted {
    color: white;
    }
    .messages {background: black; color: white;}
    
    .btn.disabled, .btn[disabled], 
    fieldset[disabled] .btn  {
    background: #f07d26;
    color: white;
    text-transform: uppercase;
    width: 100%;
    border: none;
    height: 46px;
    cursor: pointer;
    font-size: calc(12px + 0.4vw);
    opacity: 1;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2em;
    }
    .btn.disabled:hover,  .btn.disabled:active, .btn.disabled:focus,
    .btn[disabled]:hover, .btn[disabled]:active, .btn[disabled]:focus,
    fieldset[disabled] .btn:hover, fieldset[disabled] .btn:active, fieldset[disabled] .btn:focus
    {
      background: #f07d26;
      color: white;
      opacity: 1;
      }
    .btn-send {
    background: #f07d26;
    color: white;
    text-transform: uppercase;
    width: 100%;
    border: none;
    height: 46px;
    cursor: pointer;
    font-size: calc(12px + 0.4vw);
    opacity: 1;
    }
    .btn-send:hover, .btn-send:active, .btn-send:focus {
      background: #f07d26;
      color: white;
      opacity: 1;
    }
    .btn-success {
    background: #f07d26;
    color: white;
    text-transform: uppercase;
    width: 100%;
    border: none;
    height: 46px;
    cursor: pointer;
    font-size: calc(12px + 0.4vw);
    opacity: 1;
    }
    .btn-success:hover, .btn-success:active, .btn-success:focus {
      background: #f07d26;
      color: white;
      opacity: 1;
    }
  
    .d-none {
      display: none!important;
  }
  .nice-select.wide {
      width: 100%;
      border-radius: 0;
  }
  .input-group-addon {
    position: absolute;
      right: 10px;
      z-index: 1;
      top: 8px;
  }

  ::-webkit-input-placeholder {
    color: white !important;
  }
  
  :-ms-input-placeholder {
    color: white !important;
  }
  
  ::-ms-input-placeholder {
    color: white !important;
  }
  
  ::placeholder {
    color: white !important;
  }

  .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: white;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #f07d26;
    appearance: none;
    border-radius: 0px;
    height: 66px;
    margin-bottom: 20px;
}
.form-control:focus {
    background: transparent!important;
}
  
/* Comienza video */

#myModal1 .modal-dialog,
#myModal1 .modal-dialog,
#myModal2 .modal-dialog,
#myModal3 .modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}
#myModal1 .modal-body,
#myModal2 .modal-body,
#myModal3 .modal-body,
#myModal4 .modal-body {
position:relative;
padding:0px;
}
#myModal1 .modal-body .btn-close,
#myModal2 .modal-body .btn-close,
#myModal3 .modal-body .btn-close,
#myModal4 .modal-body .btn-close {
    position: absolute;
    right: -15px;
    top: -14px;
    background: #f7700b;
    width: 25px;
    height: 25px;
    padding: 0;
    z-index: 999;
    opacity: 1;
    border-radius: 50px;
}
#myModal1 .modal-content,
#myModal2 .modal-content,
#myModal3 .modal-content,
#myModal4 .modal-content  {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #000;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    outline: 0;
    padding: 19px;
}

/* Nosotros */
.about-experience {
    position: relative;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-experience::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    /* background: #f07d26; */
    /* transform: rotate(45deg); */
    background-image: url(../imagenes/bg-slider.png);
    background-size: contain;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center top;
    margin: 0;
}
.about-experience h1,
.about-experience small {
    z-index: 1;
    }
.about-experience h1{
    position: absolute;
    top: 45px;
    left: 38px;
    font-size: 5rem;
}
.about-experience small{
    position: absolute;
    top: 142px;
    left: 44px;
    text-align: center;
}
.bg-recurso {
    background-image: url(../imagenes/recurso.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: right top;
    background-attachment: fixed;
}
.bg-recurso1 {
    background-image: url(../imagenes/recurso1.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: right top;
    background-attachment: fixed;
}
.conboton .btn {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: calc(48% - 143px);
    width: 286px;
}
.header-carousel .owl-carousel-item img.imagenpc {
    display: block;
}
.header-carousel .owl-carousel-item img.imagenmovil {
    display: none;
}

/* Comienza mi responsive */

@media (max-width: 768px) {
    .navbar-brand img {
        max-width: 228px;
    }
    .header-carousel .owl-carousel-inner {
        top: 15%;
    }
    .slider-logo {
        max-width: 335px;
        width: 136px !important;
        object-fit: unset !important;
        height: auto !important;
        position: relative !important;
        display: none !important;
    }
    .s-intro__scroll-down {
        right: -12%;
    }
    .swiper img {
        position: relative!important;        
        height: 100%;
        object-fit: unset!important;
    }
    .category .bg-dark {
        max-width: 50%;
    }
    .about-experience {
        position: relative;
        width: 100%;
        height: 100%;
        right: 0px;
        bottom: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-experience::before {
        position: relative;
        content: "";
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
    }
    .about-experience h1 {
        position: absolute;
        top: 63px;
        left: 127px;
    }
    .about-experience small {
        position: absolute;
        top: 147px;
        left: 66px;
    }
}
@media (max-width: 568px) {
    .header-carousel .owl-carousel-item img.imagenpc {
        display: none;
    }
    .header-carousel .owl-carousel-item img.imagenmovil {
        display: block;
    }
    .s-intro__scroll-down {
        right: -16%;
        top: 66%;
    }
    .about-experience h1 {
        position: relative;
        top: 0;
        left: auto;
    }
    .about-experience small {
        position: relative;
        top: 0;
        left: auto;
    }
    .about-experience {
        background: #f07d26;
    }
    .about-experience::before {
        display: none;
    }
}
@media (max-width: 380px) {
    .s-intro__scroll-down {
        display: none;
    }
}
#demo {
    overflow: hidden;
}

#demo .carousel-control-next {
    width: 80px;
}
#demo .carousel-control-prev {
    width: 80px;
}

