@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700&family=Lato&family=Mulish:ital,wght@0,200;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,1000&family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,700&family=Open+Sans:wght@400;600&family=Oswald:wght@500&family=Poppins:ital,wght@0,300;0,500;0,700;0,800;1,400;1,700&family=Roboto+Slab:wght@700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,900&family=Tilt+Neon&family=Ubuntu:wght@300;400;500;700&family=Young+Serif&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* flex-wrap: wrap; */

}

.section{
    background-image: linear-gradient(to top, #202020 89%, #414242 100%);
    
    color: white;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 8rem;
    padding-right: 8rem;
    height: 90px;
}
h1{
    font-size: 35px;
    font-weight: 400;
    cursor: pointer;
}


.right_header{
    display: flex;
    gap: 15px;
    font-weight: 200;
    font-size: 18px;
    color: rgba(197, 193, 193, 0.705);
}

#txt1:hover{
    color: rgb(46, 117, 209);
    cursor: pointer;
}
#txt1:hover::after{
    width: 100%;
}
#txt2:hover{
    color: rgb(46, 117, 209);
    cursor: pointer;
}
#txt3:hover{
    color: rgb(46, 117, 209);
    cursor: pointer;
}

main{
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0 9rem;
    height: 75vh;
}   

.left_main{
    /* width: 100%; */
    height: 60vh;
    justify-content: center;
    align-items: start;
    display: flex;
    flex-direction: column;
    width: 50%;
    

}
.left_main h2{
    font-size: 50px;
    font-weight: 400;
}
span{
    font-size: 50px;
    font-weight: 400;
    color: rgb(255, 187, 0);

}
.left_main p{
    /* width: 65%; */
    font-weight: 200;
    /* padding-bottom: 20px; */
    width:70%;
}
a{
    margin-top: 20px;
    text-decoration: none;
    color: white;
    width: fit-content;
    text-align: center;
    padding:10px;
    border-radius: 10px;
    background-color: rgb(12, 103, 221);
    font-weight: 400;
}
a:hover{
    transform: scale(1.033);
    transition-duration: 100ms;
    cursor: pointer;
}
.right_main{
    width: 50%;
    justify-content: center;
    align-items: center;
    display: flex;

}

.right_main img{
    width: 600px;

    @media (max-width:1500px) {
        width: 450px;
    }
    @media (max-width:1240px) {
        width: 300px;
    }
}


footer{
    height: 15.3vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 8rem; */
    width: 60%;

}
.footer{
    background-color: rgb(12, 103, 221);
    width: 100%;
    display: flex;
    justify-content: center;
}
footer p{
    font-size: 33px;
}
.email{
    display: flex;
    gap: 5px;
}
#email{
    width: 450px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid #ffffff;
    padding-left: 1.5rem;
    font-size: 20px;

    @media (max-width:1400px) {
        width: 300px;
    }
}
#button{
    width: fit-content;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 20px;
    border: 2px solid #ffffff;
    @media (max-width:1400px) {
        width: 80px;
        font-size: 17px;
    }
}

#button:hover{
    background-color: rgb(12, 103, 221);
    cursor: pointer;
}

