:root{
    --naranja: #F39200;
    --morado: #57257F;
    --marino: #171626;
    --gris: #828282;
}
body{
    background: #F5F1FF;
}

.text-naranja{
    color: var(--naranja);
}
.text-morado{
    color: var(--morado);
}

.btn-success{
    background: var(--naranja);
    border: none;
    padding: 7px 30px;
    border-radius: 25px !important;
}
.btn-success:hover{
background: var(--naranja);
}
.btn-light{
    border: none;
    padding: 7px 30px;
    border-radius: 25px;
}
.btn-light > span{
    background: var(--naranja);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.badge-light{
    background: var(--naranja);
    padding: 3px 10px;
    border-radius: 25px;
    width: fit-content;
}
.badge-dark{
    background: #2A3145;
    padding: 3px 10px;
    border-radius: 25px;
    width: fit-content;
}
.badge-success{
    text-transform: uppercase;
    font-size: 12px;
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.badge-success-dark{
    text-transform: uppercase;
    font-size: 12px;
    background: var(--naranja);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*Header*/
.header--contenido{
    position: absolute;
    color: white;
}
.header--texto{
    font-size: 25px;
}
.header{
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


.icono{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--naranja);
    color: white;
    border-radius: 100%;
    padding: 30px;
}
.icono-caracteristicas{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--naranja);
    color: white;
    position: absolute;
    left: -20px;
    top: 60%;
    border-radius: 10px;
    padding: 30px;
    animation: moveUpDown 2s infinite ease-in-out;
}
@keyframes moveUpDown {
    0%, 100% {
        top: 55%;
    }
    50% {
        top: 60%;
    }
}
.lineas{
    width: 100%;
    border: 1px dashed #aaa;
}

.testimonio{
    position: relative;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonio img{
    width: 50px !important;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}
.testimonio--quote{
    position: absolute;
    top: -100px;
    right: 0px;
}

#accordion .card .card-header{
    background: white;
    border: none;
}

.form-control{
    border-radius: 25px !important;
}
.equipo{
    height: 400px;
}
.equipo img{
    height: 100%;
    object-fit: cover;
}
.equipo:hover .redes{
    top: 0;
    transition: top 0.3s;
}
.equipo .card-header{
    overflow: hidden;
}
.equipo .redes{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(87, 37, 127, 0.4);
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    gap: 20px;
    transition: top 0.3s;
    top: 100%;
}
.equipo .redes a{
    background: #fff;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.2em;
    border-radius: 50%;
}
.equipo .redes a:hover{
    text-decoration: none;
}

.informacion .card-body{
    position: relative;
    padding-top: 40px;
}
.informacion .card-body .icono{
    position: absolute;
    top: -30px;
}

footer .redes a{
    border: 1px solid var(--gris);
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gris);
    font-size: 1.3em;
    margin: 10px;
    border-radius: 50%;
    text-decoration: none;
}

footer .menu{
    display: flex;
    flex-direction: column;
}

footer .menu a{
    color: #fff;
    font-weight: lighter;
}

.up{
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--naranja);
    color: #fff;
    border-radius: 10px;
    z-index: 999;
    cursor: pointer;
}

.timeline {
    position: relative;
    padding: 21px 0px 10px;
    list-style: none;
}
.timeline:before {
    top: 40px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #eeeeee;
    left: 50%;
    margin-left: -1.5px;
}
.timeline > li {
    margin-bottom: 50px;
    position: relative;
}
.timeline > li:before, .timeline > li:after {
    content: " ";
    display: table;
}
.timeline > li:after {
    clear: both;
}
.timeline > li > .timeline-panel {
    width: 100%;
    float: left;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    padding: 20px;
    position: relative;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    background-color: #fff;
}
.timeline > li > .timeline-panel:before {
    position: absolute;
    top: 26px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid #ccc;
    border-right: 0 solid #ccc;
    border-bottom: 15px solid transparent;
    content: " ";
}
.timeline > li > .timeline-panel:after {
    position: absolute;
    top: 27px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #fff;
    border-right: 0 solid #fff;
    border-bottom: 14px solid transparent;
    content: " ";
}
.timeline > li > .timeline-badge {
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -25px;
    background-color: #999999;
    z-index: 100;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}
.timeline > li.timeline-inverted > .timeline-panel {
    float: right;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}
@media (min-width: 768px) {
    .timeline > li > .timeline-panel {
        width: 46%;
    }
    .timeline > li > .timeline-badge {
        left: 50%;
    }
    .timeline > li.timeline-inverted > .timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }
    .timeline > li.timeline-inverted > .timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }
}

.owl-carousel .owl-item img{
    width: inherit;
}

.owl-theme .owl-dots button.active span {
    background: var(--naranja) !important;
}

@media screen and (max-width: 700px){
    .header h1{
        font-size: 25px;
    }
    .icono-caracteristicas{
        top: 0 ;
        left: 50%;
        animation: moveUpDown2 2s infinite ease-in-out;
    }
}

@keyframes moveUpDown2 {
    0%, 100% {
        top: -10px;
    }
    50% {
        top: 10px;
    }
}