@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&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');

* {
    margin: 0px;
    padding:  0px;
    box-sizing: border-box;
    font-family: "Poppins","Orbitron", sans-serif;
    
}
h1{
    line-height: 120%;
    margin-bottom: 24px;
   
}
p {
    line-height: 160%;
    margin-bottom: 24px;
    font-size: 16px;
}
:root{
/* CSS HEX */
--blue: #0000ffff;
--rich-black: #04080fff;
--amaranth-purple: #9e1946ff;
--jonquil: #f0c808ff;
--hollywood-cerise: #de0d92ff;
--btn-primary-hover: #000A8F;
--btn-primary-color: #0000ffff;
--btn-secondary-color: white;
--btn-secondary-hover: #000fff;
}
.wrapper {
    width:  1140px;
    margin: 0px auto;
}
header {
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
}
.header-content{
    width: 1140px;
    height: 100vh;
    /*background-color:burlywood;*/
}
.navigation {
    margin-top: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu {
    display: none;
}
.logo img {
    height: 64px;
    width: 150px;
}
ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
ul li {
    list-style: none;
}
ul li a {
    text-decoration: none;
    margin-left: 40px;
    font-size: 16px;
    font-weight: normal;
    transition: 0.4s;
    color: #000000;
}
ul li a:hover, a:focus{
    color: var(--blue);
}
.nav-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.nav-btn .signup-btn{
    padding: 8px 16px;
    background-color:var(--btn-primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
}
.nav-btn .signup-btn:hover{
    background-color: var(--btn-primary-hover);
}
.nav-btn .login-btn{
    padding: 8px 16px;
    /*background-color:var(--btn-secondary-color);*/
    /*border: 1px solid black;*/
    color: black;
    /*border-radius: 8px;*/
    margin-right: 16px;
    text-decoration: none;
    transition: .3s;
}
.nav-btn .login-btn:hover{
   /* background-color: var(--btn-primary-color);
    border: 1px solid var(--btn-primary-color);*/
    color: var(--blue);
}
.hero{
    width: 100%;
    display: flex;
    justify-content: center;
}
.hero .hero-content{
    width: 1140px;
    display: flex;
    justify-content: space-between;
    align-items: start;

}
.hero-left{
    padding-top: 120px;
   
    width: 40%;
    
}
.hero-right{
    width: 50%;
}
.hero-right img{
    width: 100%;
    height: 100%;
}
.hero-left a {
    padding: 16px 32px;
    background-color: var(--btn-primary-color);
    color: white;
    border-radius: 16px;
    text-decoration: none;
}
.hero-left a:hover{
    background-color: var(--btn-primary-hover);
}

.how-it-works-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #000000;
    
    
}
.how-it-works-content {
    width: 1140px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
   

}

.how-it-works-content  .cards {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 48px;
}
.how-it-works-content  .card{
    padding: 24px;
    text-align: center;
    border-radius: 32px;
    width: 350px;
    height:400px;
    background-color: #333333;
    color: white;
}
.how-it-works-content  .card p {
    padding: 24px;
    font-size: 16px;
    line-height: 1.6;
   
}

.how-it-works-content  .card i {
   /* border-radius: 50%; */
   /* border: 1px solid white;*/
    padding: 16px;
    margin-bottom: 24px;
    margin-top: 24px;
}

/* Media Query Section */

/* Cta Section */

.call-to-action-section {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    text-align: center;
}
.wrapper {
    width: 1140px;
}

.call-to-action-section  

    a {
        padding: 16px 32px;
        background-color: var(--btn-primary-color);
        color: white;
        border-radius: 16px;
        text-decoration: none;
    }
    .hero-left a:hover{
        background-color: var(--btn-primary-hover);
    }

    footer {
        display: flex;
        justify-content: center;
        align-items: center;
        align-items: center;
        text-align: center;
        background-color: #000000;
        height: 20vh;
       
    }
    footer p {
        font-size: 18px;
        color: white;
        text-shadow: none;
    }
/* Start media here */    
@media (max-width: 744px ) {
    .wrapper {
        width:  95%;
        margin: 0px auto;
    }
    header {
        width: 100vw;
        height: auto;
        background-color: white;
        display: flex;
        justify-content: center;
    }
    .header-content{
        width: 90%;
        height: auto;
       
        /*background-color:burlywood;*/
    }
    .navigation {
        margin-top: 56px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo img {
        height: 64px;
        width: 150px;
    }
    ul{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    ul li {
        list-style: none;
    }
    ul li a {
        text-decoration: none;
        margin-left: 40px;
        font-size: 16px;
        font-weight: normal;
        transition: 0.4s;
        color: #000000;
    }
    ul li a:hover, a:focus{
        color: var(--blue);
    }
    .nav-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        
    }
    .nav-btn .signup-btn{
        padding: 8px 16px;
        background-color:var(--btn-primary-color);
        color: white;
        border-radius: 8px;
        text-decoration: none;
        transition: .3s;
    }
    .nav-btn .signup-btn:hover{
        background-color: var(--btn-primary-hover);
    }
    .nav-btn .login-btn{
        padding: 8px 16px;
        /*background-color:var(--btn-secondary-color);*/
        /*border: 1px solid black;*/
        color: black;
        /*border-radius: 8px;*/
        margin-right: 16px;
        text-decoration: none;
        transition: .3s;
    }
    .nav-btn .login-btn:hover{
       /* background-color: var(--btn-primary-color);
        border: 1px solid var(--btn-primary-color);*/
        color: var(--blue);
    }
    nav {
        display: none;
    }
    .nav-btn {
        display: none;
    }
    .menu {
        display: block;
    }
    .hero{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .hero .hero-content{
        width: 90%;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    
    }
    .hero-left{
        margin-top: 96px;
       
        width: 100%;
       margin-bottom: 96px;
        text-align: center;
        
    }
    .hero-right{
        width: 100%;
        margin: 96px 0;
    }
    .hero-right img{
        width: 100%;
        height: 100%;
    }
    .hero-left a {
        padding: 16px 32px;
        background-color: var(--btn-primary-color);
        color: white;
        border-radius: 16px;
        text-decoration: none;
    }
    .hero-left a:hover{
        background-color: var(--btn-primary-hover);
    }
    
    .how-it-works-section {
        width: 100vw;
        height: auto;
        padding: 96px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #000000;
        
        
    }
    .how-it-works-content {
        width: 90%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
       
    
    }
    
    .how-it-works-content  .cards {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 48px;
    }
    .how-it-works-content  .card{
        padding: 24px;
        text-align: center;
        border-radius: 32px;
        width: 100%;
        min-width: 350px;
        height:400px;
        background-color: #333333;
        color: white;
    }
    .how-it-works-content  .card p {
        padding: 24px;
        font-size: 16px;
        line-height: 1.6;
       
    }
    
    .how-it-works-content  .card i {
       /* border-radius: 50%; */
       /* border: 1px solid white;*/
        padding: 16px;
        margin-bottom: 24px;
        margin-top: 24px;
    }
    
    /* Media Query Section */
    
    /* Cta Section */
    
    .call-to-action-section {
        width: 100%;
        height: 40vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        text-align: center;
    }
    .wrapper {
        width: 90%;
        margin: 0px auto;
    }
    
    .call-to-action-section  
    
        a {
            padding: 16px 32px;
            background-color: var(--btn-primary-color);
            color: white;
            border-radius: 16px;
            text-decoration: none;
        }
        .hero-left a:hover{
            background-color: var(--btn-primary-hover);
        }
    
   

}


@media (min-width: 745px ) {

    .wrapper {
        width:  80%;
        margin: 0px auto;
    }
    header {
        width: 100vw;
        height: auto;
        background-color: white;
        display: flex;
        justify-content: center;
    }
    .header-content{
        width: 80%;
        height: auto;
       
        /*background-color:burlywood;*/
    }
    .navigation {
        margin-top: 56px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo img {
        height: 64px;
        width: 150px;
    }
    ul{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    ul li {
        list-style: none;
    }
    ul li a {
        text-decoration: none;
        margin-left: 40px;
        font-size: 16px;
        font-weight: normal;
        transition: 0.4s;
        color: #000000;
    }
    ul li a:hover, a:focus{
        color: var(--blue);
    }
    .nav-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        
    }
    .nav-btn .signup-btn{
        padding: 8px 16px;
        background-color:var(--btn-primary-color);
        color: white;
        border-radius: 8px;
        text-decoration: none;
        transition: .3s;
    }
    .nav-btn .signup-btn:hover{
        background-color: var(--btn-primary-hover);
    }
    .nav-btn .login-btn{
        padding: 8px 16px;
        /*background-color:var(--btn-secondary-color);*/
        /*border: 1px solid black;*/
        color: black;
        /*border-radius: 8px;*/
        margin-right: 16px;
        text-decoration: none;
        transition: .3s;
    }
    .nav-btn .login-btn:hover{
       /* background-color: var(--btn-primary-color);
        border: 1px solid var(--btn-primary-color);*/
        color: var(--blue);
    }
    nav {
        display: none;
    }
    .nav-btn {
        display: block;
    }
    .menu {
        display: block;
    }
    .hero{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .hero .hero-content{
        width: 85%;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    
    }
    .hero-left{
        margin-top: 96px;
       
        width: 85%;
       margin-bottom: 96px;
        text-align: center;
        
    }
    .hero-right{
        width: 80%;
        margin: 96px 0;
    }
    .hero-right img{
        width: 100%;
        height: 100%;
    }
    .hero-left a {
        padding: 16px 32px;
        background-color: var(--btn-primary-color);
        color: white;
        border-radius: 16px;
        text-decoration: none;
    }
    .hero-left a:hover{
        background-color: var(--btn-primary-hover);
    }
    
    .how-it-works-section {
        width: 100vw;
        height: auto;
        padding: 96px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #000000;
        
        
    }
    .how-it-works-content {
        width: 90%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
       
    
    }
    
    .how-it-works-content  .cards {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 48px;
    }
    .how-it-works-content  .card{
        padding: 24px;
        text-align: center;
        border-radius: 32px;
        width: 100%;
        min-width: 350px;
        height:400px;
        background-color: #333333;
        color: white;
    }
    .how-it-works-content  .card p {
        padding: 24px;
        font-size: 16px;
        line-height: 1.6;
       
    }
    
    .how-it-works-content  .card i {
       /* border-radius: 50%; */
       /* border: 1px solid white;*/
        padding: 16px;
        margin-bottom: 24px;
        margin-top: 24px;
    }
    
    /* Media Query Section */
    
    /* Cta Section */
    
    .call-to-action-section {
        width: 100%;
        height: 40vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        text-align: center;
    }
    .wrapper {
        width: 80%;
        margin: 0px auto;
    }
    
    .call-to-action-section  
    
        a {
            padding: 16px 32px;
            background-color: var(--btn-primary-color);
            color: white;
            border-radius: 16px;
            text-decoration: none;
        }
        .hero-left a:hover{
            background-color: var(--btn-primary-hover);
        }
    
   

}