/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 08 2026 | 19:33:13 */
@media (min-width: 320px) and (max-width: 480px) {

    html,
    body {
        overflow-x: hidden;
    }
}

img,
br {
    user-select: none;
}

a {
    outline: none important;
}

button {
    outline: none !important;
}

/*--------------------------------------------------
=>> Separator
--------------------------------------------------*/
.stripe-top {
    height: 150px;
    margin-bottom: -40px;
    background: #ff0047;
    clip-path: polygon(0 50%, 5% 0, 100% 0, 100% 15%, 6% 15%, 0 75%);
    position: relative;
    overflow: hidden;
}

.stripe-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            #b30032 50%,
            transparent 100%);
    animation: slide-top 5s ease-in-out infinite;
}

@keyframes slide-top {
    0% {
        left: -50%;
    }

    50% {
        left: 75%;
    }

    100% {
        left: -50%;
    }
}

.stripe-bottom {
    height: 150px;
    margin-top: -40px;
    background: #ff0047;
    clip-path: polygon(0 85%, 94% 85%, 100% 25%, 100% 50%, 95% 100%, 0 100%);
    position: relative;
    overflow: hidden;
}

.stripe-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            #b30032 50%,
            transparent 100%);
    animation: slide-bottom 5s ease-in-out infinite;
}

@keyframes slide-bottom {
    0% {
        left: -50%;
    }

    50% {
        left: 75%;
    }

    100% {
        left: -50%;
    }
}

@media (min-width: 320px) and (max-width: 481px) {
    .stripe-top {
        height: 50px;
        margin-bottom: 0px;
        clip-path: polygon(0 40%, 5% 0, 100% 0, 100% 25%, 6% 25%, 0 75%);
    }

    .stripe-bottom {
        height: 50px;
        margin-top: 0px;
        clip-path: polygon(0 75%, 94% 75%, 100% 25%, 100% 60%, 95% 100%, 0 100%);
    }
}

@media (min-width: 481px) and (max-width: 1025px) {
    .stripe-top {
        height: 100px;
    }

    .stripe-bottom {
        height: 100px;
    }
}
/*--------------------------------------------------
=>> End Separator
--------------------------------------------------*/
/*--------------------------------------------------
=>> Text
--------------------------------------------------*/
/* Paragraph */
.text__paragraph {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    text-align: justify;
}

/*--------------------------------------------------
=>> End Text
--------------------------------------------------*/
/*--------------------------------------------------
=>> Button
--------------------------------------------------*/
.button__yautalk {
    display: inline-block;
    user-select: none;
    padding: 4px 15px 4px;
    font-weight: bold;
    font-size: 20px;
    color: white;
    background-color: #ff0047;
    border-radius: 7px;
}

.button__yautalk2 {
    display: inline-block;
    user-select: none;
    padding: 4px 15px 4px;
    font-weight: bold;
    font-size: 20px;
    color: white;
    background-color: #052338;
    border-radius: 7px;
}

/* Button Pulse*/
.button__pulse {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.button__pulse:hover {
    animation-name: button__pulse;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes button__pulse {
    25% {
        transform: scale(1.05);
    }

    75% {
        transform: scale(0.9);
    }
}

.button__pulse__infinite {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    animation-name: button__pulse__infinite;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


@keyframes button__pulse__infinite {
    25% {
        transform: scale(1.03);
    }

    75% {
        transform: scale(0.97);
    }
}

/* Button Pulse Shrink */
.button__pulse__shrink {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.button__pulse__shrink:hover {
    animation-name: button__pulse__shrink;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes button__pulse__shrink {
    to {
        transform: scale(0.95);
    }
}

/* Button Wobble Vertical */
.button__wobble__vertical {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.button__wobble__vertical:hover {
    animation-name: button__wobble__vertical;
    animation-duration: 1.1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes button__wobble__vertical {
    16.65% {
        transform: translateY(8px);
    }

    33.3% {
        transform: translateY(-6px);
    }

    49.95% {
        transform: translateY(4px);
    }

    66.6% {
        transform: translateY(-2px);
    }

    83.25% {
        transform: translateY(1px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Button Buzz */
.button__buzz {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.button__buzz:hover,
.button__buzz:focus,
.button__buzz:active {
    animation-name: button__buzz;
    animation-duration: 0.15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes button__buzz {
    50% {
        transform: translateX(3px) rotate(2deg);
    }

    100% {
        transform: translateX(-3px) rotate(-2deg);
    }
}

.button__buzz__infinite {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    animation-name: button__buzz;
    animation-duration: 0.25s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/*--------------------------------------------------
=>> End Button
--------------------------------------------------*/
/*--------------------------------------------------
=>> Headline
--------------------------------------------------*/
.hsection {}

.underline-animation {
    /*color: #e34b24;*/
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.underline-animation svg {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.underline-animation .stroke {
    stroke: #ff0047;
    stroke-width: 15px;
    stroke-dasharray: 822;
    stroke-dashoffset: 822;
    transition: none;
}

/* La animación se activa cuando el elemento está visible */
.underline-animation.animate .stroke {
    animation: underlineAnimation 1.1s ease-out forwards;
}

@keyframes underlineAnimation {
    from {
        stroke-dashoffset: 822;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/*--------------------------------------------------
=>> End Headline
--------------------------------------------------*/
/*--------------------------------------------------
=>> Nav
--------------------------------------------------*/
.custom-logo {
    user-select: none;
    width: 280px;
}

@media (min-width: 320px) and (max-width: 481px) {
    .custom-logo {
        width: 200px;
    }
}

@media (min-width: 481px) and (max-width: 769px) {
    .custom-logo {
        width: 220px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .custom-logo {
        width: 220px;
    }
}

@media (min-width: 992px) and (max-width: 1025px) {
    .custom-logo {
        width: 250px;
    }
}

@media (min-width: 1025px) and (max-width: 1201px) {
    .custom-logo {
        width: 250px;
    }
}

@media (max-width:768px) {
    .navbar-toggler {
        width: 100%;
        outline: none !important;
    }
}
/*--------------------------------------------------
=>> End Nav
--------------------------------------------------*/
/*--------------------------------------------------
=>> Accordion
--------------------------------------------------*/
#accordion .panel {
    border: medium none;
    border-radius: 0;
    box-shadow: none;
    margin: 0 0 15px 10px;
}

#accordion .panel-heading {
    border-radius: 30px;
    padding: 0;
}

#accordion .panel-title a {
    background: #ff0047;
    border: 1px solid transparent;
    border-radius: 30px;
    color: white;
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px 12px 50px;
    position: relative;
    transition: all 0.3s ease 0s;
}

#accordion .panel-title a.collapsed {
    background: white none repeat scroll 0 0;
    border: 1px solid #ddd;
    color: #052338;
}

#accordion .panel-title a::after,
#accordion .panel-title a.collapsed::after {
    background: #ff0047;
    border: 1px solid transparent;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.58);
    color: white;
    content: "";
    font-family: fontawesome;
    font-size: 25px;
    height: 55px;
    left: -20px;
    line-height: 55px;
    position: absolute;
    text-align: center;
    top: -5px;
    transition: all 0.3s ease 0s;
    width: 55px;
}

#accordion .panel-title a.collapsed::after {
    background: white none repeat scroll 0 0;
    border: 1px solid #ddd;
    box-shadow: none;
    color: #333;
    content: "";
}

#accordion .panel-body {
    background: transparent none repeat scroll 0 0;
    border-top: medium none;
    padding: 20px 25px 10px 9px;
    position: relative;
}

#accordion .panel-body p {
    border-left: 1px dashed #8c8c8c;
    padding-left: 25px;
}
/*--------------------------------------------------
=>> End Accordion
--------------------------------------------------*/
/*--------------------------------------------------
=>> Blog
--------------------------------------------------*/
.blog-title {
    color: #052338;
    text-align: center;
}

.blog-caption {
    color: #052338;
    text-align: left;
}

.blog-text {
    color: #052338;
    text-align: justify;
}

.blog-link {
    color: #ff0047;
    font-weight: 900;
}

.blog-link:hover {
    color: #ff0047;
}

.blog-lista {
    padding-left: 30px;
    list-style-type: disc;
}

.blog-img {
    margin-bottom: 25px;
}

.blog-img img {
    width: 70%;
}

.blog-button__yautalk {
    display: inline-block;
    user-select: none;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 16px;
    color: white;
    background-color: #ff0047;
    border-radius: 7px;
}

.blog-button__yautalk2 {
    display: inline-block;
    user-select: none;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 16px;
    color: white;
    background-color: #052338;
    border-radius: 7px;
}

.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control:active,
.plyr--audio .plyr__control:focus {
    background: #ff0047 !important;
}

#h5ap-player-1 .plyr {
    --plyr-color-main: #ff0047 !important;
}
/*--------------------------------------------------
=>> End Blog
--------------------------------------------------*/
/*--------------------------------------------------
=>> Footer
--------------------------------------------------*/
#footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    user-select: none;
}

.footer-col1 {
    padding-right: 45px;
}

.footer-link-txt {
    margin-left: 2px;
}

.footer-link-txt:hover {
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    #footer-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width:768px) {
    .footer-col1 {
        padding-right: 0px;
    }
}
/*--------------------------------------------------
=>> End Footer
--------------------------------------------------*/

.theme-page-header-area2 {
    background: #052338;
    padding: 4rem 0;
}

body:not(.modal-open) {
    padding-right: 0px !important;
}

.modal-open {
    padding-right: 0px !important;
}

.modal {
    padding-right: 0px !important;
}

#spam {
    display: none;
}

.escondido {
    display: none;
}

/*.grecaptcha-badge {display:none;}*/