@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    /* background: #dcf2ff; */
    overflow-x: hidden;
}

:root {
    --main-clr: #0AEDFD;
}

.upper-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px 0px 0px;
    background: linear-gradient(90deg, #000000 0%, #0AEDFD 100%);

}

.nav-header h1 {
    font-family: NewYork;
    font-weight: 400;
    color: #fff;
    font-size: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: 5%;
}

.logo img {
    width: 70px;
}

.nav-para {
    height: 100px;
    background: url('../images/hand.png');
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: -5%;

}

.nav-para-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: linear-gradient(89.48deg, #08B4C0 4.49%, rgba(8, 180, 192, 0) 97.21%); */

}

.para {
    width: 100%;
    z-index: 2;
    color: #fff;
    margin-left: -5%;
}

nav {
    display: flex;
    padding: .5% 5%;
    align-items: center;
    justify-content: space-between;
    background: #000;
    color: #fff;
    height: 40px;
}

nav a {
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
}

.left-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.left-nav button {
    padding: 4px 20px 4px 10px;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 100vw;
    background: var(--main-clr);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.left-nav button span {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #000;
}

.movable-para {
    padding: .7% 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    background: #E40000;
    color: #fff;
    font-size: 15px;
    height: 40px;
}

.hero {
    width: 100%;
    height: calc(100vh - 180px);
}

.banner {
    width: 100%;
    height: 100%;
}

.banner img {
    width: 100%;
    height: 100%;
    /* aspect-ratio: 16/9; */
    object-position: bottom;
    object-fit: unset;
}





.banner-section .img-card {
    width: 100%;
    height: calc(100vh - 180px);
}

.banner-section .img-card img {
    width: 100% !important;
    height: 100% !important;
    /* aspect-ratio: 16/9!important; */
    /* z-index: -5; */
    object-position: bottom;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: relative;

    left: 0px;
    top: -17px;
    z-index: 999;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
    z-index: 99 !important;

}

.owl-theme .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 5px 2px;
    background: var(--main-clr) !important;

}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--main-clr);
    width: 20px;
    height: 7px;
    border-radius: 5px;
    transition: .5s;
}

.owl-theme .owl-dots .owl-dot.active span {
    position: relative;
}

.owl-theme .owl-dots .owl-dot.active span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: #00000049;
    border-radius: inherit;
    animation: activedots 4.7s linear;
}



@keyframes activedots {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}




/* marquee */

.marquee {
    width: 100%;
    overflow: hidden;
    background: #E40000;
    color: #fff;
    font-size: 15px;
    height: 40px;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
}

.marquee-content span {
    margin: 0px 30px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* form design */

.contact-left {
    width: 50%;
    padding: 20px;
    border-radius: 10px;
    background: #fff;

    box-shadow: 0px 15px 36px 0px #00000040;
    margin: 20px auto;
}


.contact-right h3 {
    color: #fff;
    text-align: left;
    margin-bottom: 10px;
    font-size: 25px;
}

.input-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 5%;
    margin-bottom: 30px;
}

.input-field input {
    width: 50%;
    padding: 5px 10px;
    border: 1px solid #000;
}

.input-field select,
textarea {
    width: 100%;
    padding: 5px 10px;
    resize: none;
    border: 1px solid #000;
}

.contact-us-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 24px;
    background: var(--main-clr);
    border-radius: 100vw;
    border: none;
    outline: none;
    color: #fff;
    font-weight: 600;
}

.contact-us-btn button img {
    width: 20px;
    height: 20px;
}

.mb-0 {
    margin-top: 0px;
}

/* added nav parts */

.download {
    position: relative;
}

.download div {
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 10px;
    z-index: 999;
    border-radius: 10px;
    display: none;
}

.download div p {
    font-size: 1rem;
    color: #000;
    transition: all .4s ease-in-out;
}

.download div p:hover {
    font-weight: 500;

}
.download:hover  .download-div{
    display: block;
}


@media(width <=768px) {
    .hero {
    width: 100%;
    height: 25vh;
        }
    .banner-section .img-card {
        width: 100%;
        height: 25vh;
    }
    .contact-left {
     width:90%;   
    }
}

