.main {
    width: 100% !important;
    margin: 0 !important;
}

.hero-sec {
    width: 80%;
}

#intro {
    width: 100vw;
    /* Full viewport width */
    background-color: #ff0000;
    border-radius: 0 0 100% 100% / 0 0 20% 20%;
}

.custom-secondary-font {
    font-family: "Poppins", sans-serif;
}

.custom-box-shadow-1 {
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.15);
}

/* Animated Circles */
.custom-animated-circles-server {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 500px;
    height: 500px;
    transform: translate3d(-55%, 25%, 0);
}

.custom-animated-circles-server-top {
    position: absolute;
    right: 0;
    top: 0;
    width: 500px;
    height: 500px;
    transform: translate3d(55%, -55%, 0);
}

.custom-animated-circles-server .circle-server {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    border-radius: 100%;
    border: 1px solid #FFF;
    transform: translate3d(-50%, -50%, 0);
    animation-name: customAnimatedCircles;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-duration: 2.5s;
    animation-delay: 500ms;
}

.custom-animated-circles-server-top .circle-server {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    border-radius: 100%;
    border: 1px solid #FFF;
    transform: translate3d(-50%, -50%, 0);
    animation-name: customAnimatedCircles;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-duration: 2.5s;
    animation-delay: 500ms;
}

.custom-animated-circles-server .circle-server:nth-child(2),
.custom-animated-circles-server-top .circle-server:nth-child(2) {
    width: 70%;
    height: 70%;
    animation-delay: 1000ms;
}

.custom-animated-circles-server .circle-server:nth-child(3),
.custom-animated-circles-server-top .circle-server:nth-child(3) {
    width: 90%;
    height: 90%;
    animation-delay: 1500ms;
}

.custom-animated-circles-server .circle-server:nth-child(4) {
    width: 110%;
    height: 110%;
    animation-delay: 2000ms;
}

.custom-animated-circles-server.custom-animated-circles-server-pos-2 {
    bottom: auto;
    top: 0;
    transform: translate3d(-55%, -25%, 0);
}

.custom-animated-circles-server.custom-animated-circles-server-pos-3 {
    bottom: auto;
    left: auto;
    right: 0;
    transform: translate3d(65%, -50%, 0);
    top: 0;
}

@keyframes customAnimatedCircles {
    0% {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) scale(0.8);
    }

    50% {
        opacity: 0.5;
        transform: translate3d(-50%, -50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) scale(1.1);
    }
}

/* Custom Screens */
.custom-screens-carousel {
    position: relative;
    z-index: 30;
    margin-top: -250px;
}

@media (max-width: 991px) {
    .custom-screens-carousel {
        margin-top: -90px;
    }
}

/* Carousel Ipad */
.carousel-ipad {
    border-radius: 35px;
    border: 1px solid #FFF;
    padding: 50px;
    background: #F9F9F9;
    box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

@media (max-width: 991px) {
    .carousel-ipad {
        padding: 25px;
        border-radius: 17px;
    }
}

.carousel-ipad img {
    border: 1px solid #FFF;
}

.carousel-ipad .carousel-ipad-camera {
    background: #3c3d3d;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    margin-left: 20px;
    bottom: 50%;
    margin-bottom: -5px;
    border-radius: 100%;
}

.carousel-ipad .carousel-ipad-home {
    background: #F9F9F9;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
    border-radius: 28px;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    margin-right: 5px;
    bottom: 50%;
    margin-bottom: -20px;
}

.carousel-ipad .carousel-ipad-home:after {
    width: 15px;
    height: 15px;
    margin-top: -8px;
    margin-left: -8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius);
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 50%;
}

@media (max-width: 991px) {

    .carousel-ipad .carousel-ipad-camera,
    .carousel-ipad .carousel-ipad-home {
        display: none;
    }
}

.carousel-ipad.carousel-ipad-sm {
    padding: 40px;
    border-radius: 25px;
}

@media (max-width: 991px) {
    .carousel-ipad.carousel-ipad-sm {
        padding: 20px;
        border-radius: 12px;
    }
}

/* Skin */
/* Animated Circles */
.custom-animated-circles-primary .circle {
    border-color: var(--primary) !important;
}


.filter-wrapper .search-form {
    position: relative;
    border: 2px solid #e7e7e7;
    border-radius: 3rem;
    display: inline-block;
    margin: -10px 0;
}

.filter-wrapper .search-form input[type="search"]::-webkit-search-decoration,
.filter-wrapper .search-form input[type="search"]::-webkit-search-cancel-button,
.filter-wrapper .search-form input[type="search"]::-webkit-search-results-button,
.filter-wrapper .search-form input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.filter-wrapper .search-form input {
    padding: 12.8px 48px 12.8px 19.2px;
    padding: 0.8rem 3rem 0.8rem 1.2rem;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.05em;
    color: var(--dark);
    outline: 0;
}

.filter-wrapper .search-form .btn {
    position: absolute;
    top: 53%;
    right: -11.2px;
    right: -0.7rem;
    font-size: 19.2px;
    font-size: 1.2rem;
    min-width: 80px;
    min-width: 5rem;
    transform: translateY(-50%);
    padding: 0;
    background: none;
    transition: color 0.3s;
}

/* card */
.card-body {
    height: 190px;
}

@media (max-width: 1695px) {
    .card-body {
        height: 210px;
    }
}

@media (max-width: 1367px) {
    .card-body {
        height: 250px;
    }
}

@media (max-width: 1280px) {
    .card-body {
        height: 290px;
    }
}

@media (max-width: 1255px) {
    .card-body {
        height: 230px;
    }
}

@media (max-width: 1195px) {
    .card-body {
        height: 300px;
    }
}

@media (max-width: 1085px) {
    .card-body {
        height: 320px;
    }
}

.cover-galeri {
    height: 250px;
    box-sizing: border-box;
}

.img-galeri {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FILTER CUSTOM CSS */
.produk-parent {
    max-height: 150vh;
    overflow-y: scroll;
    overflow-x: hidden;
}


@media (max-width: 991px) {
    .card-body {
        height: fit-content;
    }

    #intro {
        border-radius: 0% 0% 25% 25% / 0% 0% 25% 25%;
    }

    .hero-sec {
        width: 100% !important;
        padding-inline: 5% !important;
        margin-top: -50px;
    }
}

@media (max-width: 375px) {
    .hero-sec {
        margin-top: -120px;
    }
}

/* navlink */
.nav-custom-dev .nav-link {
    margin-bottom: 10px !important;
    border-radius: 5px !important;
    border-left-color: var(--primary) !important;
}

.nav-custom-dev .nav-link.active {
    background-color: var(--primary) !important;
    color: white !important;
}

@media (max-width: 767px) {

    .nav-custom-dev .nav-link::before,
    .nav-custom-dev .nav-link::after {
        content: none !important;
    }

    .tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .nav-tabs {
        display: flex;
        flex-wrap: nowrap;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav-item {
        flex: 0 0 auto;
        margin-right: 10px;
        width: auto;
    }

    .nav-link {
        white-space: nowrap;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .produk-parent {
        max-height: 80vh;
    }

}