@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    background-color: rgb(14, 14, 14);
    color: white;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

header {
    font-family: "Inter", sans-serif;
}

header>section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
}

header>section>div {
    padding: 10px 16px;
    font-size: 0.95rem;
    border-radius: 10px;
    white-space: nowrap;
    background: linear-gradient(90deg, #FF006A 0%, #0066FF 100%);
}

header>section img {
    width: 150px;
}

header>nav {
    overflow-x: auto;
}

header>nav>section {
    display: flex;
    gap: 12px;
    margin: 8px 0px 25px 5px;
}



/* Hide scrollbar for Chrome, Safari and Opera */
header>nav::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
header>nav {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

header>nav>section>div {
    border: 1px solid goldenrod;
    border-radius: 8px;
    white-space: nowrap;

    a {
        -webkit-tap-highlight-color: rgba(218, 165, 32, 0.192);
        padding: 10px 16px;
        display: block;
        color: white;
    }
}

.selected-service {
    padding: 10px 16px;
    background-color: rgba(177, 129, 9, 0.39);
    box-shadow: 0px 1px 6px 0px gold;
}

/* Container with a real height */
.slider-container {
    width: 95%;
    height: 40vh;
    border-radius: 1rem;
    margin: auto;
    overflow: hidden;
}

@media screen and (min-width:1024px) {
    .slider-container {
        height: 80%;
        width: 100%;
        border-radius: 0;
    }
}

.service-curtain,
.tns-outer,
.tns-ovh,
.tns-inner,
.tns-item {
    height: 100% !important;
}

.service-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

}

.ads-banner img,
.cc-banner img {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-origin: center;
    transform: scale(1.3);
}

.web-banner img,
.funnel-banner img {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-origin: center;
    transform: scale(1.1);
}

/* Zoom keyframes */
@keyframes slow-zoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.3);
    }
}

/* Zoom keyframes */
@keyframes slow-zoom2 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* Run the zoom only on the current slide */
.service-curtain .tns-slide-active img {
    animation: slow-zoom 4000ms ease-out;
}

.service-curtain.web-dev .tns-slide-active img,
.service-curtain.funnel .tns-slide-active img {
    animation: slow-zoom2 4000ms ease-out;
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .service-curtain .tns-slide-active img {
        animation: none;
    }
}

@media(max-width:768px) {
    .ads-banner:nth-child(2) {
        transform: scale(1.4);
    }
}

.process-content>h1 {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
    padding-left: 8px;
}

@media screen and (min-width:1024px) {
    .process-content>h1 {
        font-size: 3rem;
    }

    .process-content>h1 {
        margin-top: 100px;
    }
}

.process-content h1::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 5%;
    width: 50%;
    height: 3px;
    background-color: red;
    border-radius: 3px;
}

.process-section {
    position: relative;
    margin-top: 35px;
    padding: 0px 15px;
}

/* .tns-item{
    width:5% !important;
} */
@media screen and (min-width:1024px) {
    .process-section {
        padding: 0px 30px;
    }
}

.cc-process_controls>div {
    position: absolute;
    top: 30%;
    height: 56px;
    width: 56px;
    padding: 4px;
    border-radius: 50%;
    border: 1px solid white;
    transition: all 300ms ease-in;
}

@media screen and (min-width:1024px) {
    .cc-process_controls>div {
        position: absolute;
        top: 30%;
        height: 82px;
        width: 82px;
        padding: 4px;
        border-radius: 50%;
        border: 1px solid white;
        transition: all 300ms ease-in;
    }
}

.cc-process_slider img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.cc-process_controls>.prev {
    cursor: pointer;
    left: 0px;
}

.cc-process_controls>.next {
    cursor: pointer;
    right: 0px;
}

.cc-process_controls>div>svg {
    fill: white;
}

.cc-process_controls>div:hover {
    background-color: white;
}

.cc-process_controls>div:hover>svg {
    fill: black;
}

.cc-process_controls>div>svg {
    fill: white;
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
    .slider-container {
        width: 100%;
        height: 100vh;
        border-radius: 0px;
    }
}