@import url('https://fonts.googleapis.com/css2?family=Acme&family=Lobster&family=Patua+One&family=Rubik:ital,wght@1,300&family=Sniglet&display=swap');

* {
    box-sizing: border-box;
}





:root {
    --Snigle-font: "Sniglet", cursive;
    --Rubik: "Rubik", cursive;
    --Patua: "Patua One", cursive;
    --Lobster: "Lobster", cursive;
    --light-black: #2e2c2caf;
    --bggradient: linear-gradient(to bottom, #dd2476, #ff512f);
    --light-gray: rgba(255, 255, 255, 0);

}

header a {
    font-family: var(--Snigle-font);
    font-size: 0.9em;
    color: whitesmoke;
}

header {
    background: #dd2476;
    background: var(--bggradient);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 160px;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}


.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background: #ddd;

}

.dropdown:hover .dropdown-content {
    display: block;

}

header .nav-item:last-child {
    padding-right: 10.5em;
}

header .nav-item {
    padding: 0.9em;
}

header .navbar-brand {
    padding-left: 8rem;
    font-size: 2.4rem;
}

header .nav-link:hover {
    color: black;
}

@media only screen and (max-width:768px) {
    header .navbar-brand {
        padding-left: 1rem;
    }
}

.body {

    background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);

}

section .wrapper {
    height: 90vh;
    width: 80vw;
    max-width: 1100px;
    margin: 1rem auto;
    background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
    box-shadow: 1px 3px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    border-radius: 0.2rem;

}

section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    height: 100%;

}

section .container .title {
    width: 90%;
    height: 20%;
    text-align: center;
    padding: 2rem;
    margin: 9rem 0;
    z-index: 99999;
}

section .container h1 {
    font-family: var(--Patua);
    font-size: 3rem;
    color: aliceblue;
}

section .container p {
    font-family: var(--Snigle-font);
    color: #ddd;
}

button {
    font-size: 1rem;
    padding: 0.8rem 2.3rem;
    margin: 0.1rem;
    border: 0;
    border-radius: 3rem;
    cursor: pointer;
}

footer {
    background: rgba(29, 23, 23, 0.815);
    overflow-x: hidden;
    padding: 10vmin 18vmin;
}

footer p>span {
    color: #ff512f;
}

footer input {
    border: none !important;
}

footer input::placeholder {
    color: blue !important;
    font-weight: bold;
}

footer .input-group .input-group-text {
    background: var(--bggradient);
    border: none;
}

footer .column i {
    color: #dd2476;
}

footer .column i+i {
    padding: 0 0.5em;

}

.float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 50px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    text-align: center;

}


.night {
    height: 560px;
    width: 700px;
    background: url('../assets/Img_1.png');
    background-size: cover;
    position: relative;
    overflow-x: hidden;
}

.surface {
    height: 140px;
    width: 500%;
    display: block;
    background: url('../assets/Img_02.png');
    position: absolute;
    bottom: 0;
    left: 0px;
    background-repeat: repeat-x;
}

.moveRight {
    animation: moveRight 6s linear infinite;
}

@keyframes moveRight {
    100% {
        transform: translateX(-2950px);
    }
}

/* Made Changes */
.car {
    position: absolute;
    bottom: 43px;
    left: 24%;
}

.suspension {
    animation: suspension 1s linear infinite;
}

@keyframes suspension {
    100% {
        transform: translateY(-1px);
    }

    50% {
        transform: translateY(2px);
    }

    0% {
        transform: translateY(-1px);
    }
}

.clip-svg {
    clip-path: url(#myClip);
    width: 680px;
}

/* Responsive */
.mobile-view,
.tablet-view {
    position: absolute;
    top: 0;
    display: none;
}

.mobile-view img,
.tablet-view img {
    width: 100%;
}




@media only screen and (max-width: 990px) {
    .graphic {
        display: none;
    }

    .tablet-view {
        display: block;
    }

    section .container {
        grid-template-columns: 100%;
    }

    section .container .title {
        margin: 3rem 1rem;
        padding: 0.9rem;
    }

}

@media only screen and (max-width: 678px) {
    .tablet-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }
}

@media only screen and (max-width: 417px) {

    .mobile-view {
        display: none;
    }
}





/*@media only screen and (max-width: 1013px) {
    .graphic {
        display: none;
    }

    .container {
        grid-template-columns: 100%;
    }

    .tablet-view {
        display: block;
    }

    .container .title {
        padding: 0 .9rem;
    }

    .container .title h1 {
        font-size: 2rem;
    }

    .container .title {
        margin: 3rem 1rem;
    }


@media only screen and (max-width: 678px) {
    .tablet-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }
}

@media only screen and (max-width: 402px) {
    .mobile-view {
        display: none;
    }

    .container .title {
        margin: 0;
    }
}*/