.img-custom {
    width: 100%;
}

.default-page .text-content img{
    width: 100%;
}

@media (min-width: 768px) {
    .img-custom {
        width: 600px;
    }
    .default-page .text-content img{
        width: 600px;
    }
}
.testimonials-slider .swiper-slide{
    padding-bottom: 30px;
}

@media (max-width: 728px) {
    .testimonials-slider .swiper-button-next, .testimonials-slider .swiper-button-prev {
        position: fixed;
    }
    .testimonials-slider .swiper-pagination{
        display: none;
    }
}

.video-play-icon {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 5%);
    color: #ff80bf;
    text-shadow: 0 0 15px rgba(255, 128, 191, 0.9);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
    border: 2px solid #ff80bf;
}

.video-play-icon i {

    color: #ff80bf;

}

.projects-item:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.15);
    color: #ff6bb5;
    text-shadow: 0 0 20px rgba(255, 128, 191, 1);
    background: rgba(255, 255, 255, 1);
}

.instagram-pagination .page-link {
    color: #ff80bf;
    border-color: #ff80bf;
    background-color: white;
    transition: all 0.3s ease;
}

.instagram-pagination .page-link:hover {
    background-color: #ff80bf;
    border-color: #ff80bf;
    color: white;
}

.instagram-pagination .page-item.active .page-link {
    background-color: #ff80bf;
    border-color: #ff80bf;
    color: white;
}

.instagram-pagination .page-item.disabled .page-link {
    color: #ccc;
    border-color: #ccc;
    background-color: white;
}

.page-info-text {
    margin-top: 15px;
    color: #ff80bf;
    font-size: 14px;
    font-weight: 500;
}

.youtube-icon {
    background: linear-gradient(
            45deg,
            #FF0000 0%,
            #CC0000 50%,
            #990000 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    display: inline-block;
    transition: transform 0.3s ease;
}

.youtube-icon:hover {
    transform: scale(1.1);
}

.default-page-header-content .title {
    display: block;
}

.default-page-header-content .title sup {
    top: -5px;
}
.newsletter-modal {
    z-index: 10;
}

.preloader-gif {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-gif .spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #ddd;
    border-top-color: #f29fc5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.text-content sup {
    top: 0px;
    color: black !important;
    font-size: 20px !important;
}
sup {
    color: black !important;
}
h1 sup,
h2 sup,
h3 sup,
h4 sup,
h5 sup,
h6 sup {
    font-size: clamp(0.75rem, 0.65rem + 0.4vw, 1.25rem) !important;
    vertical-align: super;
}
.mobile-menu-body sup {
    color: var(--bs-nav-link-color) !important;
}