@font-face {
    font-family: 'Montserrat';  /* The name you will use for this font */
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype'), url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;  /* Can specify weight, like normal or bold */
    font-style: normal;   /* Can specify style, like normal, italic */
}
@font-face {
    font-family: 'Montserrat600';  /* The name you will use for this font */
    src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype'), url('../fonts/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat500';  /* The name you will use for this font */
    src: url('../fonts/Montserrat-Medium.ttf') format('truetype'), url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff'); 
}
html, body {
    height: 100%;
    margin: 0;
}
.container-al {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.content {
    flex: 1; /* This makes the content take up the remaining space */
}
.careers-bg{
    width: 100%; 
    height: fit-content; 
    background: linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,1)), url("../images/careers-bg.webp");
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}
.careers{
    font-family: "Montserrat600", serif;
    color: #38bb73;
    font-weight: 600;
    font-size: 27px;
    line-height: 31px;
    text-align: center;
    letter-spacing: 0.4px;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.2);
}
.careers-para-1{
    font-family: "Montserrat500", serif;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.4px;
    color: #000000;
    font-weight: 500;
    text-align: center;
  }
.apply-card{
    background-color: rgb(210, 235, 239);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.apply{
    font-family: "Montserrat600", serif;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0.4px;
    color: #000000;
    font-weight: 600;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: rgb(181, 219, 225);
}
.apply-para{
    font-family: "Montserrat", serif;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0.4px;
    color: #000000;
    text-align: center;
}
.apply-email{
    font-family: "Montserrat600", serif;
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
    text-align: center;
}
@media (max-width: 575px) {
    .careers {
      font-size: 16px !important;
      line-height: 22px !important;
    }
    .careers-para-1{
        font-family: "Montserrat500", serif;
        font-size: 14px;
        line-height: 25px;
        letter-spacing: 0.4px;
        color: #000000;
        font-weight: 500;
        text-align: center;
    }
    .apply{
        font-size: 14px;
        line-height: 25px;
    }
    .apply-para{
        font-size: 14px;
        line-height: 25px;
    }
}