@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Yellowtail&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Yellowtail&display=swap');

/* custom css */
.container {
    max-width: 1170px !important;
    padding: 0 15px;
    margin: 0 auto;
}

body {
    font-family: 'Inter', sans-serif !important;
    background-color: #F8FAFC !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Switzer', sans-serif !important;
    letter-spacing: -0.02rem !important;
}

h1 {
    font-size: 52px !important;
    line-height: 56px !important;
}

h2 {
    font-size: 36px !important;
    line-height: 44px !important;
}

h3 {
    font-size: 32px !important;
    line-height: 40px !important;
}

h4 {
    font-size: 28px !important;
    line-height: 36px !important;
}

h5 {
    font-size: 24px !important;
    line-height: 32px !important;
}

h6 {
    font-size: 20px !important;
    line-height: 28px !important;
}

@media only screen and (max-width: 640px) {
    h1 {
        font-size: 36px !important;
        line-height: 44px !important;
    }

    h2 {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    h3 {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    h4 {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    h5 {
        font-size: 20px !important;
        line-height: 28px !important;
    }

    h6 {
        font-size: 18px !important;
        line-height: 24px !important;
    }
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    h2 {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    h3 {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    h4 {
        font-size: 20px !important;
        line-height: 28px !important;
    }

    h5 {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    h6 {
        font-size: 14px !important;
        line-height: 20px !important;
    }
}

.p-large {
    font-size: 18px !important;
    line-height: 28px !important;
}

.p-normal {
    font-size: 14px !important;
    line-height: 20px !important;

}

.p-medium {
    font-size: 16px !important;
    line-height: 24px !important;
}

.p-extraBold {
    font-family: 'Switzer', sans-serif !important;
    font-style: normal;
    font-weight: 600 !important;
    font-size: 44px !important;
    line-height: 48px !important;
    text-align: center;
    letter-spacing: -0.02em !important;
}

.font-yellowTail {
    font-family: 'Inter', sans-serif !important;
    font-family: 'Yellowtail', cursive !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 24px !important;
    color: #334155 !important;
}

.font-yellowTailonly {
    font-family: 'Inter', sans-serif !important;
    font-family: 'Yellowtail', cursive !important;
}

/* animation on scroll */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Example using animate.css */
.banner-section {
    animation-duration: 1s;
    animation-name: fadeIn;
}

.fade-in {
    animation-duration: 1s;
    animation-name: fadeIn;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bounce {
    animation-duration: 2s;
    animation-name: bounce;
    animation-iteration-count: infinite;

}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* border style for hero    section */
.subbox {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.border-gradient {
    background-image: linear-gradient(to left, #FE7317, #001070);
    position: relative;
    z-index: 1;
}

.border-gradient::before {
    content: '';
    display: block;
    background-color: #000316;
    position: absolute;
    border-radius: calc(20px - 2%);
    height: 86%;
    width: 98%;
    z-index: -1;
}

.change:hover {
    filter: invert(100%) grayscale(100%);
}

.bannerlogoupper {
    position: absolute;
    top: -60px;
    left: 54%;
}

/* for case study */
.bg {
    background: linear-gradient(90.92deg, #000316 -52.68%, #0033B5 137.25%);
}

/* for service */
.child {
    transition: opacity 0.3s ease-in-out;
}

.child:hover {
    opacity: 1;
}

.child:hover~.child {
    opacity: 0.5;
}



/* shell devs loader start */

.loading-container {
    display: flex;
}

.box {
    margin-left: 16px;
    background-color: none;
    border: 1px solid #FE7317;
    border-radius: 3em;
    height: 16px;
    width: 16px;
    animation: colorChange 2s infinite;
}

@keyframes colorChange {

    0%,
    25%,
    50% {
        background-color: #FE7317;
    }

    100% {
        background-color: transparent;
    }
}

.box1 {
    animation-delay: 0.5s;
}

.box2 {
    animation-delay: 0.75s;
}

.box3 {
    animation-delay: 1s;
}

/* Shell Devs loader end */