@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    font-family: "Roboto", sans-serif;
    background-color: #f5f5f5;
    color: #002b5c;
}

/* Navbar */
nav {
    background-color: #ffffff;

}

.nav-logo {
    height: 45px;
}

#p-1,
#p-2 {
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
}

#p-1 {
    color: #2F98C2;
}

#p-2 {
    color: #e60000;
}
ul{
    gap: 2rem;
}
/* Main Section */
main {
    background-color: #DEF1F9;
    display: flex;
    justify-content: center;
}
#main-img{
    height: 100%;
}
.Section-1{
background-color: white;
display: flex;
justify-content: space-between;
gap: 1rem;
}

main button {
    background-color: #2F98C2;
    padding: 1rem 1.5rem;
    width: 265px;
    height: 74px;
    font-size: 20px;
}


/* Footer */
footer {
    background-color: #002b5c;
    color: white;
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    width: 241px;
height: 63px;
}
.footer-left{

}
.footer-left p {
    color: white;
    font-size: 14px;
    line-height: 1.5;
}
.footer-left div{

}
.footer-right p:first-child {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-right p {
    color: white;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-right {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem;

}

.footer-left{
    margin: 2rem;
}

.footer-right div {


}

footer img {
    height: 20px;
    width: 20px;
    cursor: pointer;
}

footer .d-flex.gap-5 img:hover {
    opacity: 0.8;
}
.footer-main-div{
    width: 100%;
}
@media (max-width: 428px) {
    /* Nav */
    nav{
display: flex;
flex-direction: column;
background-color: white;
overflow-x: hidden;
    }
nav img{
margin: 1rem;
}
#p-1,
#p-2 {
    font-size: 20px;
    font-weight: 400;
}
/* Main */
main{

}
.Section-1{
    display: flex;
flex-direction: column-reverse;
justify-content: center;
}
.Section-1 button{
    margin-bottom: 3rem;
    }

    #label-div{
width: 20rem;
    }
main h1{
    font-size: 2.25rem;
}


    /* Footer */
    footer{
        display: flex;
        flex-direction: column;
overflow-x: hidden;
    }
.footer-right{

}
    #footer-div{
        display: flex;
        flex-direction: column;
    }

     #footer-div p{
font-size: 16px;
    }

}