@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    border: 0;
    /* outline: 0; */
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
html{
    scroll-behavior: smooth;
}
::-webkit-scrollbar{
    /* display: none; */
}
a{
    text-decoration: none;
}

.body{
    padding: 45px 95px;

}
.top{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.top h3{
    font-size: 28px;
    color: #002855;
    font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
font-weight: 500;
line-height: 1.25;
font-size: 1.9rem;
color: rgb(3, 35, 111);
font-family: "Times New Roman", sans-serif;
font-size: 30px;
font-weight: normal;
}
.top h2{
    color: #ff0000;
    font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
    font-weight: bolder;
line-height: 1.25;
font-size: 15px;
}
.form-wrapper{
    padding: 15px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
.form-wrapper .input{
    margin-bottom:20px;
display: block;
width: 380px;
height: 35px;
padding: 6px 12px;
line-height: 1.5;
color: rgb(55, 58, 54);
border: 1px solid rgb(204, 204, 204);
border-radius: 4px;
box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset;
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}
.form-wrapper .input:focus{
    border-color: rgb(102, 175, 233);
outline: 0px;
box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgba(102, 175, 233, 0.6) 0px 0px 8px;
}
.form-wrapper #button{
    padding: 8px 16px;
    color: #fff;
    background-color: #235787;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}
.down{
    padding: 20px 15px 25px 300px;
    /* margin-top: 30px; */
    display: flex;
    flex-direction: column;
}
.down h2{
    font-size: 37px;
    color: rgb(3, 35, 111);
font-family: "Times New Roman", sans-serif;
font-size: 30px;
}
.down p{
    font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
font-weight: bold;
line-height: 1.25;
color: rgb(55, 58, 54);
margin-top: 25px;
margin-bottom: 25px;
text-align: justify;
font-size: 14px;
width: 600px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 32px 52px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 20;
}
.popup h2{
    text-align: center;
    font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
    margin-top: 18px;
}
.popup button{
    background-color: transparent;
    border: none;
    position: absolute;
    top: -10px;
    right: -10px;
}
.popup button img{
    width: 30px;
}



@media screen and (max-width: 900px) {
    .down{
        padding: 20px 15px 25px 50px;
    }
}
@media screen and (max-width: 600px) {
    .body{
        padding: 25px 15px;
        padding-top: 120px;
    }
    .down{
        padding: 20px 15px 25px 15px;
    }
    .down p{
        width: 100%;
    }
}


