@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
* {
    box-sizing: border-box;
    font-family: 'Share Tech Mono','Poppins', monospace;
    margin: 0;
    padding: 0;
}
:root {
    --primary-color: #0000FF;
    --btn-primary-color: hsl(240, 70%, 50%);
    --btn-primary-color-hover: hsl(240, 90%, 50%);
    --secondary-color: #161925;
    --third-color: #FF4A1C ;
    --links-hover-color: #FF4A1C ;
    --fourth-color: #FADF63 ;
  }
header {
    width: 100vw;
    height: 100vh;
}
.wrapper {
    width: 90%;
    margin: 0 auto;
}
.header-content {
    height: 100%;
    width: 100%;
}

.navigation {
   
    width: 100%;
    height: 100px;
    /*border: 1px solid gold;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navigation .logo img {
    height: 100px;
    width: 150px;
}
.nav ul {
    display: none;
    align-items: center;
    justify-content: center;
    list-style: none;
}
.nav ul li {
    margin-right: 40px;
}
.nav ul li a {
    text-decoration: none;
    font-size: 18px;
    color: black;
}
.nav ul li a:hover {
    
    color: var(--links-hover-color);
}
.btn button {
    padding: 16px;
    padding: 16px;
    padding: 8px;
    padding: 8px;
    font-family: 'Share Tech Mono','Poppins', monospace;
    border: none;
    border-radius: 8px;
    background-color: var(--btn-primary-color);
    color: white;
} 

button:hover {
    background-color: var(--btn-primary-color-hover);
}
.sign-in{
    display: none;
    text-decoration: none;
    padding: 8px 16px;
    color: black;
}
.sign-in:hover{
    color: var(--btn-primary-color-hover);
}
.sign-up{
    display: none;
    text-decoration: none;
    padding: 8px 16px;
    color: white;
    background-color: var(--primary-color);
    border-radius: 8px;
    transition: .4s;
}
.sign-up:hover{
    background-color: var(--btn-primary-color-hover);
}
.menu img {
    width: 48px;
    height: 48px;
}
/*Start Hero section code */

.Hero-section{
    width: 100%;
    display: flex;
    flex-direction: column;
   
   
}
.Hero-section .hero-content {
    margin-top:56px;
    width: 100%;
    text-align: center;
}
.Hero-section .hero-content h1{
    margin-bottom: 24px;
    line-height: 130%;
}
.Hero-section .hero-content p{
    margin-bottom: 48px;
    line-height: 160%;
    font-size: 18px;
}
.Hero-section .hero-content button {
    background-color: var(--btn-primary-color);
    color: white;
    font-size: 14px;
    font-weight: 900;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    margin-bottom: 24px;
}
.Hero-section .hero-content button:hover {
    background-color: var(--btn-primary-color-hover);
}
.Hero-section .hero-img{
    width: 100%;
}
.Hero-section .hero-img img {
    width: 100%;
}
/*End Hero section code */

/*Start  how-it-works  section code */
.how-it-works{
    padding: 60px 0;
    text-align: center;
    background-color: #EBEBEB;
}
.how-it-works h4{
    margin-bottom: 24px;
    color: var(--third-color);
    
}
.how-it-works .cards{
    margin-top: 48px;
   /* border: 1px solid green; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}
.how-it-works .card{
    width: 250px;
    /*height: 450px;
    border: 1px solid black;*/
    padding-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 24px;
}
.how-it-works .card h3{
    margin-top: 24px;
    margin-bottom: 16px;
}
/*End how-it-works  section code */
/*Start  Call to action section code */
.call-to-action {
        padding: 60px 0;
        text-align: center;
        
        
  
}
.call-to-action h2{
    margin-bottom: 24px;
    
}
.call-to-action button {

background-color: var(--btn-primary-color);
color: white;
font-size: 14px;
font-weight: 900;
padding: 16px 32px;
border-radius: 8px;
border: none;

transition: .4s;
}
.call-to-action button:hover {
background-color: var(--btn-primary-color-hover);
}
/*End   Call to action section code */
/*Start   Footer section code */
.footer {
    padding-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
   background-color: var(--secondary-color);
   text-align: center;

}
.footer p {
    margin-bottom: 48px;
    color: white;
}
/*End   Footer section code */

/* Responsive design start here */

@media only screen and (min-width: 600px) {

     header {
    width: 100vw;
    height: 100%;
    }

    .wrapper {
        width: 80%;
        margin: 0 auto;
    }



} 

@media only screen and (min-width: 768px) {

    header {
    width: 100vw;
    height: 100%;
    }


    .Hero-section .hero-img img {
        width: 100%;
        height: 90%;
        padding: 24px 0;
        
    }
    .Hero-section .hero-img{
        width: 100%;
        height: 90%;
        margin: auto 0;
    }




}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 900px) {

    header {
        width: 100vw;
        height: 100vh;
    }
    .wrapper {
        width: 90%;
        margin: 0 auto;
    }
    .header-content {
        height: 100%;
        width: 100%;
    }
    
    .navigation {
       margin-top: 60px;
        width: 100%;
        height: 100px;
        /*border: 1px solid gold;*/
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navigation .logo img {
        height: 23px;
        width: 184px;
    }
    .nav ul {
        display: flex;
        align-items: center;
        justify-content: center;
        list-style: none;
    }
    .nav ul li {
        margin-right: 40px;
    }
    .nav ul li a {
        text-decoration: none;
        font-size: 18px;
    }
    .nav ul li a:hover {
        
        color: var(--links-hover-color);
    }
    .btn button {
        padding: 16px;
        padding: 16px;
        padding: 8px;
        padding: 8px;
        font-family: 'Share Tech Mono','Poppins', monospace;
        border: none;
        border-radius: 8px;
        background-color: var(--btn-primary-color);
        color: white;
    } 
    
    button:hover {
        background-color: var(--btn-primary-color-hover);
    }
    .sign-in{
        display: inline-block;
        text-decoration: none;
        padding: 7px 15px;
        color: black;
        border: 1px solid black;
        border-radius:  8px;
        transition: .4s;
    }
    .sign-in:hover{
        color:  white;
        background-color: var(--btn-primary-color-hover);
        border: 1px solid var(--btn-primary-color-hover);
    }
    .sign-up{
        display: inline-block;
        text-decoration: none;
        padding: 8px 16px;
        color: white;
        background-color: var(--primary-color);
        border-radius: 8px;
        transition: .4s;
    }
    .sign-up:hover{
        background-color: var(--btn-primary-color-hover);
    }
    .menu {
        display: none;
    }
    .menu img {
        display: none;
    }
    /*Start Hero section code */
    
    .Hero-section{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
       
       
    }
    .Hero-section .hero-content {
        padding:  48px 0;
        width: 100%;
        height: 100%;
        text-align: left;
    }
    .Hero-section .hero-content h1{
        margin-bottom: 24px;
        line-height: 130%;
    }
    .Hero-section .hero-content p{
        margin-bottom: 48px;
        line-height: 160%;
        font-size: 18px;
    }
    .Hero-section .hero-content button {
        background-color: var(--btn-primary-color);
        color: white;
        font-size: 14px;
        font-weight: 900;
        padding: 16px 32px;
        border-radius: 8px;
        border: none;
        margin-bottom: 24px;
    }
    .Hero-section .hero-content button:hover {
        background-color: var(--btn-primary-color-hover);
    }
    .Hero-section .hero-img{
        width: 100%;
    }
    .Hero-section .hero-img img {
        width: 100%;
    }
    /*End Hero section code */
    
    /*Start  how-it-works  section code */
    .how-it-works{
        padding: 120px 0;
        text-align: center;
        background-color: #EBEBEB;
        width: 100vw;
        height: 100vh;
    }
    .how-it-works h4{
        margin-bottom: 24px;
        color: var(--third-color);
        
    }
    .how-it-works .cards{
        margin-top: 48px;
       /* border: 1px solid green; */
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 48px;
    }
    .how-it-works .card{
        width: 250px;
        /*height: 450px;
        border: 1px solid black;*/
        padding-top: 24px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 24px;
    }
    .how-it-works .card h3{
        margin-top: 24px;
        margin-bottom: 16px;
    }
    /*End how-it-works  section code */
    /*Start  Call to action section code */
    .call-to-action {
            padding: 120px 0;
            text-align: center;
            
            
      
    }
    .call-to-action h2{
        margin-bottom: 24px;
        
    }
    .call-to-action button {
    
    background-color: var(--btn-primary-color);
    color: white;
    font-size: 14px;
    font-weight: 900;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    
    transition: .4s;
    }
    .call-to-action button:hover {
    background-color: var(--btn-primary-color-hover);
    }
    /*End   Call to action section code */
    /*Start   Footer section code */
    .footer {
        padding-top: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
       background-color: var(--secondary-color);
       text-align: center;
    
    }
    .footer p {
        margin-bottom: 48px;
        color: white;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    header {
        width: 100vw;
        height: 100vh;
    }
    .wrapper {
        width: 1140px;
        margin: 0 auto;
    }
    .header-content {
        height: 100%;
        width: 100%;
    }
    
    .navigation {
       margin-top: 60px;
        width: 100%;
        height: 100px;
        /*border: 1px solid gold;*/
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navigation .logo img {
        height: 23px;
        width: 184px;
    }
    .nav ul {
        display: flex;
        align-items: center;
        justify-content: center;
        list-style: none;
    }
    .nav ul li {
        margin-right: 40px;
    }
    .nav ul li a {
        text-decoration: none;
        font-size: 18px;
    }
    .nav ul li a:hover {
        
        color: var(--links-hover-color);
    }
    .btn button {
        padding: 16px;
        padding: 16px;
        padding: 8px;
        padding: 8px;
        font-family: 'Share Tech Mono','Poppins', monospace;
        border: none;
        border-radius: 8px;
        background-color: var(--btn-primary-color);
        color: white;
    } 
    
    button:hover {
        background-color: var(--btn-primary-color-hover);
    }
    .sign-in{
        display: inline-block;
        text-decoration: none;
        padding: 7px 15px;
        color: black;
        border: 1px solid black;
        border-radius:  8px;
        transition: .4s;
    }
    .sign-in:hover{
        color:  white;
        background-color: var(--btn-primary-color-hover);
        border: 1px solid var(--btn-primary-color-hover);
    }
    .sign-up{
        display: inline-block;
        text-decoration: none;
        padding: 8px 16px;
        color: white;
        background-color: var(--primary-color);
        border-radius: 8px;
        transition: .4s;
    }
    .sign-up:hover{
        background-color: var(--btn-primary-color-hover);
    }
    .menu {
        display: none;
    }
    .menu img {
        display: none;
    }
    /*Start Hero section code */
    
    .Hero-section{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
       
       
    }
    .Hero-section .hero-content {
        padding: 48px 0;
        width: 100%;
        height: 100%;
        text-align: left;
    }
    .Hero-section .hero-content h1{
        margin-bottom: 24px;
        line-height: 130%;
    }
    .Hero-section .hero-content p{
        margin-bottom: 48px;
        line-height: 160%;
        font-size: 18px;
    }
    .Hero-section .hero-content button {
        background-color: var(--btn-primary-color);
        color: white;
        font-size: 14px;
        font-weight: 900;
        padding: 16px 32px;
        border-radius: 8px;
        border: none;
        margin-bottom: 24px;
    }
    .Hero-section .hero-content button:hover {
        background-color: var(--btn-primary-color-hover);
    }
    .Hero-section .hero-img{
        width: 100%;
    }
    .Hero-section .hero-img img {
        width: 100%;
    }
    /*End Hero section code */
    
    /*Start  how-it-works  section code */
    .how-it-works{
        padding: 120px 0;
        text-align: center;
        background-color: #EBEBEB;
        width: 100vw;
        height: 100vh;
    }
    .how-it-works h4{
        margin-bottom: 24px;
        color: var(--third-color);
        
    }
    .how-it-works .cards{
        margin-top: 48px;
       /* border: 1px solid green; */
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 48px;
    }
    .how-it-works .card{
        width: 250px;
        /*height: 450px;
        border: 1px solid black;*/
        padding-top: 24px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 24px;
    }
    .how-it-works .card h3{
        margin-top: 24px;
        margin-bottom: 16px;
    }
    /*End how-it-works  section code */
    /*Start  Call to action section code */
    .call-to-action {
            padding: 120px 0;
            text-align: center;
            
            
      
    }
    .call-to-action h2{
        margin-bottom: 24px;
        
    }
    .call-to-action button {
    
    background-color: var(--btn-primary-color);
    color: white;
    font-size: 14px;
    font-weight: 900;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    
    transition: .4s;
    }
    .call-to-action button:hover {
    background-color: var(--btn-primary-color-hover);
    }
    /*End   Call to action section code */
    /*Start   Footer section code */
    .footer {
        padding-top: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
       background-color: var(--secondary-color);
       text-align: center;
    
    }
    .footer p {
        margin-bottom: 48px;
        color: white;
    }


}