@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


body {
    font-family: Poppins, sans-serif;
    width: 100%;
}

.font_style {
    font-size: 16px;
    font-weight: 400;
}

.main_container_info {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 425px;
    background-color: #ECECEC;
}

/* .info_container_inner{
    border: 2px solid  red;

} */
.info_container_inner img {
    height: 350px;
}

/* start section 2  */
.main_section2 {
    height: 80px;
    display: flex;
    justify-content: end;

}

.main_inner_2 {
    display: flex;
    justify-self: end;
    align-items: center;
}

.main_inner_2 img {
    height: 18px;
}

.main_inner_2 form {
    width: 565px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.main_inner_2 input[type="text"] {
    /* Your styles here */
    width: 400px;
    padding: 8px;
    padding-left: 35px;
    border: none;
    background-color: #ECECEC;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
}

.main_inner_2 select {
    border: none;
    color: #1A3561;
    appearance: none;
}

.main_inner_2 select:focus {
    border: none;
    outline: none;
}

.main_inner_2 button {
    border: 1px solid #1A3561;
    border-radius: 5px;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 400;
    background-color: #ECECEC;
    color: #1A3561;
}

.main_inner_2 p {
    color: #1A3561;
    padding: 0px 15px;
}

/* end section 2  */

/* start section 3 */
.main_container_section_3 {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container_text {
    background: white;
    width: 1200px;
}

h1 {
    color: #0056b3;
    font-size: 36px;
    font-weight: 700;
    color: #042654;
}

h2 {
    font-size: 20px;
    color: #193762;
    margin-top: 20px;
}

p {
    color: #666;
    font-size: 16px;
    line-height: 1 !important;
}

.highlight {
    font-weight: bold;
    color: #000;
}



ul li {
    margin-bottom: 10px;
    color: #333;
}

.apply-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: end;
    margin-top: 50px;
    width: 100%;
}

.apply-text {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.apply-button {
    background-color: #19345e;
    color: white;
    padding: 10px 35px;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
}

.apply-button:hover {
    background-color: #102742;
}

@media screen and (max-width: 1024px) {
    .info_container_inner img {
        width: 360px;
        height: 250px !important;
    }

    .main_section2 {
        height: 280px !important;
        width: 100% !important;
        display: flex;
        justify-content: center;
        justify-self: center;
        align-items: center;
    }

    .main_inner_2 {
        width: 850px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .main_inner_2 img {
        height: 18px;
    }

    .main_inner_2 form {
        width: 0px !important;
        flex-direction: column;
        display: flex;
        gap: 15px !important;
        justify-content: space-evenly;
        align-items: center;
        padding: 20px !important;
    }

    .main_inner_2 input[type="text"] {
        width: 300px !important;
        padding: 4px;
        padding-left: 35px;
        border: none;
        background-color: #ECECEC;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 400;
    }

    .main_inner_2 button {
        width: 100px;
    }

    .font_style {
        margin-bottom: 10px;
    }

    .main_container_section_3 {
        padding: 20px !important;
    }

}