/*Google Fonts*/
@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,200&display=swap');

/*Basic Settings*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body{
    height: 100vh;
}

.wrapper{
    height: 100%;
    width: 100%;
}

.spin {
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/**********Careers Main Page***************/

.Careers p{
    margin-bottom: 0 !important;
}


/*howWeAre*/

.Careers .howWeAre{
    padding: 50px 0;
    background-color: #EBEBEB;
    text-align: center;
}
.Careers .howWeAre .heading{
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
}
.Careers .howWeAre .heading .blue_highlight{
    color: #00ACFF;
}

.Careers .howWeAre .row{
    /* max-width: 900px;
    margin: 0 auto; */
}
.Careers .howWeAre .row > div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.Careers .howWeAre .text_box{
    text-align: left;
    width: 330px;
    height: 360px;
    background: #172C54;
    color: #ffffff;
    padding: 12px;
}
.Careers .howWeAre .text_box > div{
    width: 100%;
    height: 100%;
    border: 2px dashed #ffffff;
    padding: 25px;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}
.Careers .howWeAre .row div:last-child .text_box > div{
    padding: 25px 8px 0 15px;
    display: flex;
    flex-direction: column;
}

.Careers .howWeAre .text_box h4{
    font-size: 22px;
    font-weight: 500;
    border-bottom: 1px solid #ffffff;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.Careers .howWeAre .text_box p{
    font-size: 16px;
    font-weight: 300;
}



/*Current Opening*/



.Careers .currentOpening{
    padding: 50px 0;
    background-color: #ffffff;
    text-align: center;
}
.Careers .currentOpening .heading{
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
}

.Careers .currentOpening .content_row >div{
    display: flex;
    justify-content: center;
}

.Careers .currentOpening .cardBox{
    border: 1px solid #6E6E6E;
    padding: 15px;
    text-align: left;
    height: 250px;
    width: 320px;
}
.Careers .currentOpening .cardBox .card-header{
    font-size: 18px;
    color: #00ACFF;
    font-weight: 600;
}
.Careers .currentOpening .cardBox .card-body{
    font-size: 16px;
    font-weight: 400;
}
.Careers .currentOpening .cardBox .card-footer{
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
}
.Careers .currentOpening .cardBox .card-footer a{
    text-decoration: none;
    color: #000000;
}
.Careers .currentOpening .cardBox .card-footer a:hover{
    color: #00ACFF;
}
.Careers .currentOpening .cardBox .card-footer i{
    font-size: 20px;
    margin: 0 0 10px 10px;
}




/*employeesSay*/
.Careers .employeesSay{
    padding: 50px 0;
    text-align: center;
}
.Careers .employeesSay .heading{
    font-size: 30px;
    font-weight: 700;
    color: #172C54;
    margin-bottom: 30px;
}
.Careers .employeesSay .carousel-item{
    border-radius: 10px;
    background-color: #EBEBEB;
}
.Careers .employeesSay .cardBox{
    background-color: #00ACFF;
    padding: 50px 0 50px 0;
    border-radius: 20px;
    color: #ffffff;
    border: none;
}
.Careers .employeesSay .cardBox .card-header{
    background-color: transparent;
    border: 0;
    height: 50px;
}
.Careers .employeesSay .cardBox .card-header .title{
    font-size: 24px;
    font-weight: 700;
}
.Careers .employeesSay .cardBox .card-body{
    height: 130px;
}
.Careers .employeesSay .cardBox .card-body .description{
    font-size: 16px;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}
/* .Careers .employeesSay .cardBox .card-footer .description{
    font-size: 16px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}
.Careers .employeesSay .cardBox .card-footer{
    background-color: transparent;
    border: 0;
} */

.carousel-control-prev-icon{
    filter: invert(0);
}
.carousel-control-next-icon{
    filter: invert(0);
}




@media screen and (max-width:575px) {
    .Careers .banner_section .title{
        font-size: 22px;
    }
    .Careers .howWeAre .heading{
        font-size: 22px;
    }
    .Careers .howWeAre .text_box{
        height: 350px;
    }
    .Careers .currentOpening .heading{
        font-size: 22px;
    }
    .Careers .currentOpening .cardBox .card-header{
        font-size: 16px;
    }
    .Careers .employeesSay .heading{
        font-size: 22px;
    }
    .Careers .employeesSay .cardBox .card-header .title{
        font-size: 14px;
    }
    .Careers .employeesSay .cardBox .card-body{
        padding: 0 8%;
        height: 150px;
    }
    .Careers .employeesSay .cardBox .card-body .description{
        font-size: 12px;
    }
}

@media screen and (min-width:576px) and (max-width:767px) {
    .Careers .banner_section .title{
        font-size: 28px;
    }
    .Careers .employeesSay .cardBox .card-header .title{
        font-size: 20px;
    }
    .Careers .employeesSay .cardBox .card-body {
        padding: 0 10%;
        height: 150px;
    }
    .Careers .employeesSay .cardBox .card-body .description{
        font-size: 14px;
    }
}

@media screen and (min-width:768px) and (max-width:990px) {
    .Careers .employeesSay .cardBox .card-body {
        padding: 0 10%;
        height: 150px;
    }
}

@media screen and (min-width:991px) and (max-width:1200px) {
    .Careers .currentOpening .cardBox{
        height: 270px;
    }
    .Careers .currentOpening .cardBox .card-header{
        font-size: 16px;
    }
}













/**********Careers Sub Page***************/

.CareersSubPage p{
    margin-bottom: 0 !important;
}



/*Job Description*/

.CareersSubPage .jobDescription{
    background-color: #ffffff;
    padding: 50px 15px;
    text-align: center;
}
.CareersSubPage .jobDescription .heading{
    font-size: 24px;
    font-weight: 700;
    color: #172C54;
    margin-bottom: 50px;
}
.CareersSubPage .jobDescription .content_row{
    text-align: left;
    color: #172C54;
    font-size: 16px;
}
.CareersSubPage .jobDescription .content_row .content_1 p{
    margin-bottom: 30px!important;
}
.CareersSubPage .jobDescription .content_row .content_2 h4{
    font-size: 20px;
    font-weight: 700;
    color: #172C54;
    text-decoration: underline;
}
.CareersSubPage .jobDescription .content_row .content_2 li{
    margin: 20px 0 !important;
}
.CareersSubPage .jobDescription .content_row .content_3 h4{
    font-size: 20px;
    font-weight: 700;
    color: #172C54;
    text-decoration: underline;
}
.CareersSubPage .jobDescription .content_row .content_3 li{
    margin: 20px 0 !important;
}
.CareersSubPage .jobDescription .content_row .content_3 h6{
    font-size: 16px;
    font-weight: 600;
    color: #172C54;
    margin: 30px 0;
}



.CareersSubPage .jobDescription .content_row .currentOpenings{
    background-color: #f8f8f8;
    width: 80%;
    max-width: 350px;
    padding: 35px;
}
.CareersSubPage .jobDescription .content_row .currentOpenings ._heading{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 30px ;
}

.CareersSubPage .jobDescription .content_row .currentOpenings .openings a{
    display: block;
    text-decoration: none;
    height: 40px;
    border: 1px solid #707070;
    margin: 20px 0;
    padding: 9px 20px 9px 20px;
    color: #00ACFF;
    font-size: 14px;
}
.CareersSubPage .jobDescription .content_row .currentOpenings .openings a:hover{
    background-color: #EBEBEB;
}

.CareersSubPage .btn_apply{
    background-color: #172C54;
    text-decoration: none;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 10px;
    border: 0;
}
.CareersSubPage .btn_apply i{
    margin-right: 8px;
}
.CareersSubPage .btn_apply [class^="bi-"]::before, [class*=" bi-"]::before{
    vertical-align: middle !important;
}
.CareersSubPage .btn_apply span{
    font-size: 16px;
    font-weight: 400;
}
.CareersSubPage .btn_apply:hover{
    opacity: 0.9;
}



@media screen and (max-width:575px){
    .CareersSubPage .banner_section .title{
        font-size: 20px;
    }
    .CareersSubPage .jobDescription .content_row{
        font-size: 14px;
    }
    .CareersSubPage .jobDescription .content_row .currentOpenings{
        text-align: center;
        width: 100%;
        padding: 20px 15px 20px 15px;
    }
}

@media screen and (min-width:576px) and (max-width:767px){
    .CareersSubPage .banner_section .title{
        font-size: 24px;
    }
    .CareersSubPage .jobDescription .content_row{
        font-size: 14px;
    }
}
@media screen and (min-width:991px) and (max-width:1200px){
    .CareersSubPage .jobDescription .content_row .currentOpenings{
        width: unset;
    }
}



/*Job Application Popup*/
.application_form .modal-content{
    border: 5px solid #033354;
    text-align: center;
}
.application_form .modal-content .modal-header{
    border-bottom: 0;
}
.application_form .modal-content .modal-body{
    padding: 0 30px 30px 30px;
}
.application_form .modal-content .modal-body .title{
    color: #00ACFF;
}
/* .application_form .modal-content .modal-body{
    width: 90%;
    margin: 0 auto;
} */
.application_form .modal-content .modal-body input{
    border: 1px solid #00ACFF;
    font-size: 14px;
    height: 40px;
}

.application_form .modal-content .modal-body .note_resume{
    font-size: 12px;
    margin-top: 5px;
}

.application_form .modal-content .modal-body .btn_submit{
    height: 50px;
    width: 100%;
    background-color: #00ACFF;
    border: 0;
}

