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

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;
}

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;
}

.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;
    font-size: 44px;
    line-height: 48px;
    text-align: center;
    letter-spacing: -0.02em;
}


@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;
    }

    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;
    }
}

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

/* 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%;
}