*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
main{
    padding:0 2em;
    max-width: 2000px;
    margin: auto;
    background-color: #F2F9FE;
}
header{
    width: 100%;
    margin-bottom: 3em;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul{
    list-style-type: none;
    display: flex;
    gap: 1.5rem;
}
nav li{
    padding: 1.5em;
}
nav li a{
    color:#234;
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 600;
}
.active{
    color: #2A4DD0;
    border-bottom: 1px solid #2A4DD0;
}
nav li a:hover{
    color: #2A4DD0;
    border-bottom: 1px solid #2A4DD0;
}
.theme-sec{
    background-color: #223344;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
}
#dark_theme{
    background-color: #223344;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    border: none;
}
#dark_theme img,
#light_theme img{
    width: 100%;
}
#light_theme{
    background-color: #F2F9FE;
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50%;
}
.content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.info{
    margin-right: 100px;
}
.caps{
    text-transform: uppercase;
    color: #111729;
    font-size: 0.875rem;
    font-weight: 500;
}
h1{
    font-size: 3.75rem;
    color: #111729;
    margin: 0.3em 0;
    margin-right: 3em;
}
.title p{
    font-size: 0.875rem;
    font-weight: 500;
    color: #234;
    padding: 1em 0;
    margin-right: 4em;
}
.button-sec{
    margin: 0.7em 0;
}
#get-start{
    padding: 0.5em 1.7em;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    background-color: #2A4DD0;
    border: none;
    border-radius: 10px;
}
#demo{
    margin-left: 2em;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #2A4DD0;
    font-size: 1rem;
    font-weight: 600;    
    color: #2A4DD0;
}
.features{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 2em 0;
    gap: 15px;
}
.block{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.image{
    width: 100%;
    height: 100%;
}
.image img{
    width: 100%;
    object-fit: cover;
}
#menu-toggle{
    display: none;
}
.hamburger{
    display: none;
}
@media(max-width:1024px){
    main{
        max-width: 1024px;
    }
    .info{
        max-width: 450px;
        margin: 0;
    }
    h1{
        margin-right: 1em;
    }
    .title p{
        margin-right: 5em;

    }
}
@media(max-width:640px){
    main{
        padding: 1em;
        overflow: hidden;
        margin: 0 auto;
    }
    .hamburger{
        display: block;
        cursor: pointer;
    }
    nav ul{
        display: none;
        flex-direction: column;
        gap: 1rem;
        background-color: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    #menu-toggle:checked ~ ul {
        display: flex;
    }
    .theme-sec {
        display: none;
    }
    .content{
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
    }
    h1{
        font-size: 2rem;
        font-weight: 700;
    }
    .title p{
        font-size: 0.675rem;
        color: #234;
        margin-right: 5em;
    }
    .caps{
        font-size: 0.75rem;
        font-weight: 500;
    }
    #get-start{
        font-size: 0.75rem;
    }
    #demo{
        font-size: 0.75rem;

    }
    .features{
        font-size: 0.65rem;
    }
    .block img{
        width: 15px;
    }
    .image{
        display: flex;
        justify-content: center;
    }
    .image img{
        max-width: 400px;
    }
}