@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root{
    --color01: #252424;
    --color02: #0047ab;
}

*{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}



nav{
    display: flex;
    align-items: center;
    width: 100%;
    background-color: transparent;
    height: 40px;
    justify-content: center;
    padding-top: 60px;
}

nav ul{
    display: flex;
    align-items: center;
    gap:  20px;
    height: 100%;
}

.nav-links{
    cursor: pointer;
    text-decoration: none;
    color: white;
    position: relative;
    transition: 0.5s ease;
   
}

.nav-links::after{
    content: "";
    background-color: var(--color02);
    height: 3px;
    border-radius: 50px;
    width: 0;
    position: absolute;
    transition: 0.5s ease;
}

.nav-links:hover{
    font-weight: 500;
    transform: scale(1.1);
}

.nav-links:hover::after{
    width: 100%;
    box-shadow: 0px 0px 8px 4px #1b4785;
}

.anchor-how-works::after{
    content: "";
    background-color: var(--color02);
    height: 3px;
    border-radius: 50px;
    width: 0;
    position: absolute;
    transition: 0.5s ease;
}

.anchor-how-works:hover::after{
    width: 100%;
    box-shadow: 0px 0px 8px 4px #1b4785;
}

.first-section{
    background-size: 100%;
    background: url(/assets/img/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: relative;
}

.first-section .container{
    display: grid;
    grid-template-columns: 70% 30%;
    padding: 60px 100px 0px 100px
}


.first-container{
    display: grid;
    grid-template-columns: 500px;
    gap: 10px;
 
}

.first-container .title{
    font-size: 50px;
    color: white;
}

.first-container .first-text{
    font-size: x-large;
    color: white;
    font-weight: 600;
    width: 80%;
   
}

.first-container .first-text strong{ 
    color: #3c68fa;
}

.first-container .secound-text{
    color: white;
    font-weight: 300;
    width: 90%;
}

.anchor-how-works{
    text-decoration: none;
    color: white;
    margin-left: calc(50% - 95px);
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    transition: 0.5s ease;
    width: 126px;
   
}


.container-button button{
    width: 90%;
    padding: 15px;
    border-radius: 40px;
    color: var(--color02);
    font-size: medium;
    font-weight: 600;
    cursor: pointer;
    transition: 0.7s ;
    margin-top: 10px;
    
}

.container-button button:hover{
    transform: scale(1.1);
    box-shadow: 0px 0px 100px 10px #18345c;
}


.secound-container{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 100px;

}

.secound-container img{
    width: 100%;
    min-width: 500px;
    animation: flutuation 3s ease-in-out infinite;
}

.further-down{
    position: absolute;
    bottom: 10px; 
    left: 50%;
    transform-origin: center;
    z-index: 999;
    animation: flutuation 3s ease-in-out infinite;
}

.secound-section{
    background-color: #050142;
    width: 100%;
    min-height: 60vh;

}

.secound-section .container{
    width: 100%;
    display: grid;
    justify-content: center;
    grid-template-columns: 30rem 30rem;
    grid-gap: 20px;
    padding-top: 50px;
    align-content: center;

}

.secound-section .container .container-columns{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.card-informations{
    display: flex;
    flex-direction: column;
    max-width: 420px;
    padding: 10px 20px 10px 30px;
    background-color: #05031f;
    border-radius: 15px;
    margin-bottom: 15px;
}

.card-informations div:nth-child(1){
    color: white;
    font-weight: 500;
}

.card-informations div:nth-child(1) strong{
    color: #3c68fa;
    font-weight: 700;
    
}

.card-informations div:nth-child(2){
    color: white;
    font-weight: 300;
}


.third-section{
    background-color: #050142;
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.third-section .container{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.card-benefits{
    width: 300px;
    background-color: #05031f;
    height: 225px;
    border-bottom: 15px solid #3c68fa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: 0.5s ease;
}


.card-benefits .container-icon{
    width: 100%;
    height: 50px;
}

.card-benefits .container-icon img{
    height: 100%;
}

.card-benefits .container-text{
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.title-sections{
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.title-sections h1{
    font-weight: 400;
}

.card-benefits:hover{
    transform: scale(1.05);
}


.fourth-section{
    min-height: 100vh;
    background-color: #050142;
}

.fourth-section .container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;

}

.card-moto{
    text-decoration: none;
    transition: 0.5s ease;
}

.card-moto:hover{
    transform: scale(1.03);
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.418);
    border-radius: 10px;
}

.container-card-moto{
    display: flex;
    flex-direction: column;
    max-width: 500px;
    background-color: #05031f;
    padding: 10px;
    border-radius: 10px;
   
   
}

.container-card-moto h2{
    color: white;
    text-align: center;
    font-weight: 900;
}

.container-prices{
    text-align: center;
    color: white;
    
}
.container-weekly-price{
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container-weekly-price p:nth-child(1){
    font-size: 25px;
    font-weight: 600;
}

.container-weekly-price p:nth-child(2){
    font-size: 25px;
    font-weight: 700;
    color: #3c68fa;
}

.container-deposit{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.container-deposit p{
    font-size: 12px;
}

.container-deposit  p:nth-child(2){
    font-size: 12px;
    font-weight: 500;
}

.container-img{
   width: 100%;
}

.container-img img{
    width: 100%;
    min-width: 300px;
    border-radius: 10px;
}
.footer-card-moto{
    color: white;
    font-weight: 500;
    text-align: center;
}




/* #010c3f
#050142
*/


@keyframes flutuation {
    0% {
      transform: translateY(0px);

    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
}




@media (max-width:1105px) {

    .first-section .container{
        display: flex;
        justify-content: center;
    }

    .secound-container{
        display: none;
    }

    .first-container{
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    .first-section .container{
        padding: 20px;
    }

}

@media (max-width:985px) {
    .secound-section{
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }

    .secound-section .container{
        width: 93%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    
    }
}



@media (max-width:508px) {
    
    .first-container{
        width: 100%;
    }
    
    .first-section .container{
        padding: 5px;
        width: 100%;
    }

    .first-container .title{
        color: white;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .container-button{
       width: 100%;
       display: flex;
       justify-content: center;
    }


    .first-container .secound-text{
        width: 100%;
        text-align: center;
    }

    .first-container .first-text{
        width: 100%;
        text-align: center;
        text-align: center;
    }

    .horizontal-navbar{
        display: none;
    }

    .container-anchor{
        display: flex;
        text-align: center;
        justify-content: center;
        height: 30px;
    }

    .anchor-how-works{
        margin-left: 0;

    }

}