* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.swiper-pagination {
    bottom: -7px !important;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: rgb(201 44 44 / var(--tw-bg-opacity, 1));
    opacity: 1;
}

@keyframes marquee{
    0%{
        transform:translateX(0%);
    }
    100%{
        transform:translateX(-50%);
    }
}

.group:hover{
    box-shadow:
    0 20px 60px rgba(201,44,44,0.15);
}
article div {
    height: 220px;
    position: relative;

    & p {
        position: absolute;
        bottom: 60px;
    }

    & a {
        text-decoration: none;
        position: absolute;
        bottom: 20px;
    }
}


#about img{
    transition:0.5s;
}

#about img:hover{
    transform:scale(1.03);
}

#about .shadow-lg:hover{
    transform:translateY(-8px);
    transition:0.4s;
}


.featureItem {
    padding: 20px;
    border-radius: 24px;
    transition: 0.4s;
    border: 1px solid transparent;
}

.featureItem:hover {
    background: rgba(255, 255, 255, 0.05);
}

.activeFeature {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.screen img {
    animation: zoomScreen 8s linear infinite;
}

@keyframes zoomScreen {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.reviewSwiper {
    overflow: visible;
}

.reviewCard {
    transition: 0.5s;
    transform: scale(0.92);
    opacity: 0.7;
}

.swiper-slide-active .reviewCard {
    transform: scale(1);
    opacity: 1;
}

.reviewCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #c92c2c;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 35px;
    border-radius: 20px;
}

#location iframe{
    filter: grayscale(1) contrast(1.1);
}

#location a{
    transition:0.4s;
}

#location .backdrop-blur-xl:hover{
    transform:translateY(-6px);
    transition:0.4s;
}