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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'League Spartan', sans-serif;
    transition: all 0.3s ease;
}

html{
    scroll-behavior: smooth;
}
body {
    /* min-height: 500vh; */
    overflow-x: hidden;
}

nav {
    /* border: 2px solid red; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 5px;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 2;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

nav .logo img {
    /* border: 2px solid orange; */
    width: 230px;
}

nav ul {
    display: flex;
    /* border: 2px solid red; */
    list-style: none;
    align-items: center;
    /* width: 50%; */
    justify-content: space-between;
}

nav ul li {
    margin: 10px;
    /* border: 2px solid red; */
}

nav ul li a {
    text-decoration: none;
    color: #545455;
    /* color: #fff; */
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}
nav ul li a:hover{
    color: #ff6600;
}
nav .menu{
    margin-right: 20px;
    font-size: 18px;
    cursor: pointer;
    display: none;
}

/* home section */

.home {
    height: 90vh;
    /* border: 2px solid red; */
    background: url(images/banners/slide4.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    /* top: 65px; */
    display: flex;
    align-items: center;
    box-shadow: inset 0 -10px 40px rgba(0, 0, 0, 0.9);
}
.text{
    /* border: 2px solid red; */
    padding: 20px 0;
    max-width: 550px;
}
.home h1{
    color: #fff;
    font-size: 50px;
    margin-left: 25px;
    line-height: 60px;
    transform-origin: center center;
    animation-name: visible;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards; 
    opacity: 0;
}

span{
    color: #ff6600;
}
.home p{
    color: #fff;
    margin-left: 25px;
    line-height: 30px;
    font-size: 20px;
    transform-origin: top center;
    animation-name: visible;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards; 
    opacity: 0;
}


.text button{
    margin-left: 25px;
    margin-top: 25px;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 6px;
    outline: none;
    border: none;
    color: #fff;
    background: #ff6600;
    cursor: pointer;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation-name: visible;
    animation-duration: 0.6s;
    animation-delay: 2.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;

}
@keyframes visible{
    100%{
        opacity: 1;
    }

    
}


/* concept section  */

.concept{
    /* border: 2px solid red; */
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;

}

.concept .left{
    min-width: 300px;
    max-width: 500px;
    /* border: 2px solid red; */
    padding: 0 15px;
}
.concept .left h1{
    font-size: 40px;
    line-height: 55px;
}
.concept .left p{
    font-size: 18px;
    line-height: 24px;
    margin: 20px 0;
}
.concept .right{
    width: 350px;
    aspect-ratio: 1/1.2;
    background: url(images/banners/slide2.jpg) no-repeat left ;
    background-size: cover;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    transform-style: preserve-3d;
    /* justify-content: center; */
}
.right .hashtag{
    color: #fff;
    font-size: 16px;
    font-family: cursive;
    margin-bottom: 30px;
    margin-left: 25px;
    text-shadow: 2px 2px 50px rgba(0, 0, 0, 0.9);
    transform: translateZ(50px);
}

/* bikes section  */

.bikes{
    /* border: 2px solid red; */
    background: rgba(251, 251, 251, 1);
    padding: 50px 0;
}
.bikes h1{
    margin: auto;
    text-align: center;
    padding: 10px;
    font-size: 40px;
}
.bikes p{
    /* border: 2px solid orange; */
    margin-inline: auto;
    padding: 10px;
    font-size: 18px;
    max-width: 700px;
    line-height: 23px;
}
.bikes .carousel-container{
    padding: 50px 20px;
    /* border: 2px solid red; */
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}
.bikes .carousel-container .card{
    max-width: 350px;
    /* max-width: 400px; */
    aspect-ratio: 1/0.7;
    position: relative;
    justify-content: center;
    /* border: 2px solid red; */
    margin: 25px 10px;
    overflow: hidden;
}
.bikes .carousel-container .card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card .name{
    position: absolute;
    top: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    opacity: 0;
    backdrop-filter: blur(5px);
    text-align: center;
}
.card:hover .name{
    opacity: 1;
}
.card:hover img{
    transform: scale(1.3);
}

/* partner section  */

.partners{
    /* border: 2px solid red; */
    padding: 60px 0;
}
.partners h1{
    font-size: 35px;
    text-align: center;
    padding: 50px 0;
}
.partners img{
    width: 150px;
    /* height: 200px; */
    /* object-fit: cover; */
    margin: 25px 10px;
}
.partners .brands{
    /* border: 2px solid red; */
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    padding: 25px 15px;
    margin: auto;
    justify-content: space-between;
}

/* support section  */

.support{
    /* border: 2px solid red; */
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    background-color: rgba(251, 251, 251, 1);
}
.support .support-text{
    /* border: 2px solid red; */
    max-width: 450px;
    padding: 15px;
}
.support h1{
    margin: 10px 0;
}
.support p{
    font-size: 18px;
    line-height: 22px;
    margin: 30px 0;
}
.support .support-logo{
    /* border: 5px solid #ff6600; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 140px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    color: #ff6600;
    position: relative;
    overflow: hidden;
}
.support .support-logo::after{
    content: '';
    width: 220px;
    height: 60px;
    background: #ff6600;
    position: absolute;
    z-index: 6;
    /* left: -5px; */
    border-radius: 50%;
    transform: rotate(0deg);
    animation-name: spin;
    animation-iteration-count: infinite;
    animation-duration: 600s;
}
@keyframes spin{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(300000deg);
    }
    
}
.support i{
    font-size: 50px;
    /* margin: 20px; */
    /* border: 2px solid red; */
    padding: 39px;
    border-radius: 50%;
    z-index: 10;
    background: rgba(251, 251, 251, 1);
}

/* footer section  */

.footer{
    /* border: 2px solid red; */
    display: flex;
    flex-direction: row;
    padding: 50px 20px;
    background: rgba(255, 102, 0, 1);
    justify-content: space-around;
    flex-wrap: wrap;
}
.footer .columns{
    /* border: 2px solid red; */
    margin: 10px 15px;
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.footer .columns a{
    color: #fff;
    margin: 10px 0;
    text-decoration: none;
    font-size: 17px;
}



@media screen and (max-width: 850px){
    nav .menu{
        display: block;
        color: #545455;
    }
    nav{
        justify-content: space-between;
    }
    nav img{
        margin-left: 20px;
    }
    nav ul{
        position: absolute;
        flex-direction: column;
        left: -100%;
        /* left: -10px; */
        top: 60px;
        height: 100vh;
        background: #fff;
        width: 70vw;
        justify-content: flex-start;
    }
    nav ul li{
        margin-top: 30px;
    }
    
}
