/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

:root {
    --header-height: 3rem;
  
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: hsl(228, 66%, 53%);
    --first-color-alt: hsl(228, 66%, 47%);
    --first-color-light: hsl(228, 62%, 59%);
    --first-color-lighten: hsl(228, 100%, 97%);
    --second-color: hsl(25, 83%, 53%);
    --title-color: hsl(228, 57%, 28%);
    --text-color: hsl(228, 15%, 50%);
    --text-color-light: hsl(228, 12%, 75%);
    --border-color: hsl(228, 99%, 98%);
    --body-color: #170346;
    --container-color: #100347;

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/*body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4070f4;
}*/
body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    transition: .3s; /* For animation dark mode */
}
.container_form{
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: 6px;
    padding: 30px;
    margin: 0 15px;
    background-color:#170346;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    margin-bottom: 15%;
    margin-left: 15%;
}
/*.container_form header{
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: var(--second-color);
}
.container_form header::before{
    content: "";
    position: absolute;
    left: 0;
  /*  bottom: -2px;*
    height: 3px;
    width: 27px;
    border-radius: 8px;
    background-color: #4070f4;
}*/
.container_form form{
    position: relative;
    margin-top: 16px;
    min-height: 490px;
    background-color: var(--title-color);
   /* overflow: hidden;*/
}
.container_form form .form{
    position: absolute;
    background-color: #170346;
    transition: 0.3s ease;
}
.container_form form .form.second{
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
}
form.secActive .form.second{
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
form.secActive .form.first{
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
}
.container_form form .title{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: 6px 0;
    color: #fff;
}
.container_form form .fields{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
form .fields .input-field{
    display: flex;
    width: calc(100% / 3 - 15px);
    flex-direction: column;
    margin: 4px 0;
}
.input-field label{
    font-size: 12px;
    font-weight: 500;
    color: var(--second-color);
}
.input-field input, select{
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    border-radius: 5px;
    border: 1px solid #aaa;
    padding: 0 15px;
    height: 42px;
    margin: 8px 0;
}
.input-field input :focus,
.input-field select:focus{
    box-shadow: 0 3px 6px rgba(0,0,0,0.13);
}
.input-field select,
.input-field input[type="date"]{
    color: #707070;
}
.input-field input[type="date"]:valid{
    color: #333;
}
.container_form form button, .backBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    max-width: 200px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    margin: 25px 0;
    background-color: #4070f4;
    transition: all 0.3s linear;
    cursor: pointer;
}
.container_form form .btnText{
    font-size: 14px;
    font-weight: 400;
}
form button:hover{
    background-color: #265df2;
}
form button i,
form .backBtn i{
    margin: 0 6px;
}
form .backBtn i{
    transform: rotate(180deg);
}
form .buttons{
    display: flex;
    align-items: center;
}
form .buttons button , .backBtn{
    margin-right: 14px;
}

@media (max-width: 750px) {
    .container_form form{
        overflow-y: scroll;
        margin-left: -10%;
        width: 90%;
        margin-bottom: 2%;

    }
    .container_form form::-webkit-scrollbar{
       display: none;
    }
    form .fields .input-field{
        width: calc(100% / 2 - 15px);
    }
}

@media (max-width: 550px) {
    form .fields .input-field{
        width: 100%;
    }
}

span{
    color: #fff;
}

.career{
    display: flex;
    justify-content: space-between;
    padding: 40px;
    width: 65%;
    margin: 0 auto;
    margin-left: 15%;
}
.career img{
    height: 250px;
    border-radius: 20px;
   /* width: 50%;*/
}
.career h2{
    color: var(--second-color);
    margin-top: 10%;
    font-size: 25px;
   /* display: inline-block;*/
    text-align: center;
}
.career h3{
    color: var(--second-color);
    font-size: 35px;
    align-items: center;
    padding-left: 25px;
    padding-right: 0;
    text-align: center;
}
.career p{
    color: #265df2;
    margin-right: 15px;
    display: inline-block;
    text-align: center;
}

@media (max-width: 750px) {
    .career{
        display: inline-block;
        align-items: center;
        padding-right: 10px;
        margin-left: 5%;
    }
    .career img{
        padding-top: 10px;
        text-align: center;
        height: 230px;
    }
    .career h2,
    .career h3,
    .career p{
        padding: 5px;
        margin: 0;
        text-align: center;
    }
}