body {
    display: grid;
    gap: 60px;
    justify-content: space-around;
    width: 100vw;
}

h2, h4 {
    color: #00599B;
    font-weight: bolder;
}

.contact-section1 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.picture-background {
    position: relative;
    width: 80vw;
    height: 300px;
    background: url('https://ik.imagekit.io/s3jkgwyie/1d12d239e2b902647e1e144c4184c3e4.jpg?updatedAt=1703763840469');
    background-position-y: -30px;
    background-repeat: no-repeat;
    background-size: cover;
    justify-self: center;
}

.blue-background {
    position: absolute;
    background-color:#00589b8e;
    width: 100%;
    height: 100%;
}

.main-content {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    color: white;
}

.main-content h1{
    text-align:center;
    font-weight: bolder;
}

.contact-section1-writeup {
    background-color: white;
    border-radius: 22px;
    padding: 32px;
}

.contact-section1-writeup ul {
    list-style: none;
}

.contact-section1-writeup a {
    text-decoration: none;
    color: black;
}

.career_section2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

#jobOpeningsContainer {
    display: flex;
    gap: 20px;
}

.job_modal_btn {
    width: 250px;
    height: 150px;
    padding: 10px 0 10px 10px;
    overflow:hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#0064cf;
    color: white;
    font-weight: bolder;
    border-radius: 12px;
    transition: ease .3s;
}

.job_modal_btn:hover {
    background-color:#00599B;
    cursor: pointer;
}

.job_modal_btn img {
    height: 120%;
    margin-left: -50px;
}

.job_modal_btn_txt {
    width: 100px;
}

.modal-header {
    background-color:#0064cf;
    color: white;
}

.modal-header span {
    color: white !important ;
}

.form_segment {
    width: 100vw;
    height: fit-content;
    display: flex;
    justify-content: center;
    justify-self: center;
}

.form_segment iframe {
    width: 80%;
    height: 954px;
}

@media(max-width: 768px){
    h2, h4 {
        text-align: center;
    }

    body {
        gap: 40px;
    }

    .picture-background {
        background-position-y: 0;
        background-position-x: center;
        width: 100%;
    }

    .contact-section1 {
        flex-wrap: wrap;
        width: 100%;
        justify-self: center;
    }

    .career_section2 {
        display: grid;
        gap: 25px;
    }

    .career_section2 p {
        text-align: center;
        padding: 0 20px;
    }

    #jobOpeningsContainer {
        display: flex;
        flex-wrap: wrap;
        width: 100vw;
        padding: 0 10%;
        justify-content: center;
        gap: 20px;
    }


}