* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    position: relative;
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Titillium Web', sans-serif;
    /* font-size: 22px; */
    padding: 0;
    margin: 0;
    line-height: 1.5;
    overflow-x: hidden;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}


.container {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    flex-wrap: wrap;
}

.container::after,
.container::before,
.container-fluid::after,
.container-fluid::before,
.row::after,
.row::before {
    display: table;
    content: "";
}

.container::after,
.container-fluid::after,
.row::after {
    clear: both;
}

::after,
::before {
    box-sizing: border-box;
} 

button {
    cursor: pointer;
}

ul {
    list-style: none;
    
}

a {
    text-decoration: none;
}

html , body {
    cursor: url(../images/Cursor-v2.png), default;
} 

/* #cursor {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    mix-blend-mode: difference;
    pointer-events: none;
    transition: transform .15s ease-in-out;
  } */
/* 
header {
    position: fixed;
    height: 100vh;
    width: 150px;
    z-index: 20;
    display: flex;
    justify-content: center;
}
*/

header {
    position: fixed;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    left: 0;
    top: 0;
}

.logo {
    width: 100px;
    height: auto;  
}

.logo a {
    display: block;
    position: relative;
    font-size: 40px;
    color: #ffffff;
    font-weight: 600;
    background: rgba(179, 222, 249, 0.8);
    transition: all ease-in-out .4s;
}

.logo a::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(179, 222, 249, 0.5);
    transition: all ease-in-out .4s;
    z-index: -1;
}

.logo a:hover::after {
    background: rgba(194, 228, 250 , 0.6);
    height: 100%;

}

.logo a img {
    width: 100%;
    display: block;
}

.humbergar {
    width:36px;
    height: 30px;
    display: inline-block;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.humbergar span.line {
    width: 36px;
    height: 3px;
    background: #ffffff;
    display: inline-block;
}

.humbergar span.line::after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffffff;
}

.humbergar span.line::before {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffffff;
}

.humbergar {
    position: relative;
}

.humbergar a {
    font-size: 30px;
    color: #ffffff;
}

/* humberger click menu css start */

.navInner {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #124c70;
    z-index: 2;
    transition: all ease-in-out .4s;
}

.carrerbtn_copyright {
    padding-left: 15%;
    position: relative;
    bottom: 70px;
    left: 6%;
}

a.carrerbtn {
    display: inline-block;
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    padding: 15px 45px;
    background: #575f64;
    margin-bottom: 10px;
    z-index: 1;
}

a.carrerbtn::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top , #2173A6 , rgba(240, 240, 240 , 0.3));
    z-index: -1;
}

.copyright {
    color: #bfbfbf;
    font-size: 15px;
    margin-top: 15px;
}

.navContent {
    width: 70%;
    margin: 0 auto;
    padding-left: 15%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
}

.navList {
    width: 50%;
    padding: 0 15px;
    transition: all ease-in-out .4s;
    
}

.navList h3 {
    text-align: left;
}

.navList h3 a {
    position: relative;
    display: inline-block;
    font-size: 35px;
    font-weight: 600;
    color: #eaf7ff;
    padding: 25px;
    text-transform: uppercase;
    margin-bottom: 10px;
    z-index: 1;
    white-space: nowrap;
}

.navList h3 a::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to right, rgba(33, 115, 166, 0.8) , transparent);
    transition: all ease-in-out .4s;
    z-index: -1;

}

.navList h3 a:hover::after {
    width: 100%;
}

.navInner.active .navList h3 a {
    
    animation: fadeInLeft;
    animation-duration: 900ms;
}

.navList .items {
    position: relative;
    left: -100%;
   overflow: hidden;
   /* transition: all ease-in .5s; */
   padding-bottom: 20px;
   /* transition-delay: .2s; */
}

/* .navInner.active .items {
    left: 0;
    position: relative;
    animation: fadeInLeft;
    animation-duration: 900ms;
    
} */

.navList .items ul li a {
    position: relative;
    font-size: 20px;
    font-weight: 400;
    color: #d7d7d7;
    line-height: 1.7;
    display: inline-block;
    transition: all ease-in-out .4s;
 
}

.navList .items ul li a::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 0px;
    height: 2px;
    background: #4D80E1;
    transition: all ease-in-out .4s;

}

.navList .items ul li a:hover:after  {
    width: 100%;
}

.navList .items ul li a:hover {
    padding-left: 10px;
}

.active {
    left: 0;
    /* transition: all ease-in-out .4s; */
}

.humbergar.toggle span {
    background: transparent;
    transition: all ease-in-out .4s;
}

.humbergar.toggle span::after {
    top: 10px;
    transform: rotate(45deg);
    transition: all ease-in-out .4s;
}

.humbergar.toggle span::before {
    top: 0;
    /* left: 10px; */
    transform: rotate(-45deg);
    transition: all ease-in-out .4s;
}

/* humberger click menu css end */

/* nav {
    position: fixed;
    top: 20%;
    right: 10%;
    z-index: 20;
}

nav ul li a {
    position: relative;
    font-size: 20px;
    line-height: 2;
    font-weight: normal;
    color: #FFFFFF;
    text-transform: uppercase;
    
}


nav ul li a::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    height: 4px;
    width: 0px;
    background: #ffffff;
    z-index: 2;
    transition: all ease-in-out .4s;
}


nav ul li a::before {
    position: absolute;
    content: "";
    top: 100%;
    right: 0;
    height: 4px;
    width: 0px;
    background: #ffffff;
    z-index: 2;
    transition: all ease-in-out .4s;
}

nav ul li a:hover::after {
    width: 50%;
}

nav ul li a:hover::before {
    width: 50%;
} */


/* social icons */

.socialIcons {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 3;

}

.socialIcons ul li a i {
    font-size: 25px;
    transition: all ease-in-out .4s;
}

.socialIcons ul li {
    width: 45px;
    height: 45px;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out .4s;
}

.socialIcons ul li a {
    color: #FFFFFF;
}

.socialIcons ul li:hover {
    background: #FFFFFF;
}

.socialIcons ul li:hover a i {
    color: #126192;

}





.section-background {
    position: relative;
    /* background-attachment: fixed; */
    background-position: center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out .4s;
    z-index: 1;
  }

  .section-background::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.50);
    z-index: -1;
  }

  .content {
    display: flex;
    flex-direction: column;
    /* padding-left: 11% !important; */
    padding: 0 15px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }

  .section-background-ones  {
      height: 480px;
  }

  .myVideo {
    width: 100%;
  }

  .myVideo video {
    width: 100%;
  }
  
  .parallax1 {
    background-image: url("../images/p02.jpg");
    background-size: cover;
  }
  
  .parallax2 {
    background-image: url("../images/pexels-victoria-akvarel-1648776.jpg");
    background-size: cover;
  }
  
  .parallax3 {
    background-image: url("../images/pexels-vecislavas-popa-1571460.jpg");
    background-size: cover;
  }

  .parallax4 {
    background-image: url("../images/pexels-victoria-akvarel-1648776.jpg");
    background-size: cover;
  }
  
  .parallax5 {
    background-image: url("../images/pexels-pixabay-276528.jpg");
    background-size: cover;
  }


  .parallax6 {
    background-image: url("../images/pexels-capricious-wayfarer-\(saptarshi\)-974382.jpg");
    background-size: cover;
  }

  /* .parallax6 {
    background-image: url("../images/");
  } */
  
  .text-bloc p {
    margin: 75px;
    font-size: 22px;
  }



  .content h2 {
   
    max-width: 950px;
    font-size: 45px;
    padding-bottom: 25px;
    text-transform: capitalize;
    line-height: 55px;
    width: 100%;
    text-align: left;
    text-shadow: 0px 0px 8px rgba(0,0,0,0.10);
    font-weight: normal;

  }

  .content p {
    font-size: 20px;
    font-weight: 400;
    color: #e0e0e0;
  }

  .homeArea {
      width: 75%;
      margin: 0 auto;
  
  }

.serviceArea ,
.galleryArea {
    width: 100%;
    margin: 0 auto;

}

.homeArea ,
.serviceArea{
    display: flex;
    flex-wrap: wrap;
}

.homeBox {
    width: 33.33%;
    padding: 0 15px;
}


.homeBox a {
    display: block;
    overflow: hidden;
    box-shadow: 0px 0px 10px  rgba(253, 253, 253 , 0.20);

}

.homeImg img {
    width: 100%;
    border-radius: 8px;
    display: block;
    transition: all ease-in-out .4s;
}

.homeImg:hover img {
    transform: scale(1.08);
}

.serviceArea .serviceList {
    position: relative;
    width: 25%;
    padding: 15px 15px;
}

.serviceListImg {
    position: relative;
    
}

.serviceListImg::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    /* height: 0; */
    background: linear-gradient(to top, rgba(0, 6, 9, 0.4) ,transparent);
    transition: all ease-in-out .4s;
    height: 100%;
}


/* .serviceListImg:hover::after {
    height: 100%;
} */
.serviceListImg a {
    position: absolute;
    bottom: 30px;
    left: 20px;
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    z-index: 5;
    transition: all ease-in-out .4s;
}

.serviceListImg a:hover {
    color: #c6e9ff;
    transform: scale(1.04);
}

.serviceListImg img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.galleryArea {
    display: flex;
    flex-wrap: wrap;
}

.gallerybox {
    width: 33.33%;
    padding: 15px;
    height: 100%;
}

.galleryImg {
    height: 100%;
}

.galleryImg a {
    display: block;
    height: 100%;
}

.galleryImg img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
}


.viewbuild {
    font-size: 20px;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-transform: capitalize;
    transition: all ease-in-out .4s;
    margin-top: 30px;
    font-size: 22px;
    font-weight: 600;
    padding: 10px 35px;
    /* max-width: 300px; */
    display: inline-block !important;

}

.viewbuild:hover {
    margin-left: 15px;
    color: #126192;
    background: #FFFFFF;
    display: inline-block;
    padding-left: 15px;
}

.viewbuild i {
    font-size: 17px;
    transition: all ease-in-out .3s;

}

.viewbuild a:hover i {
    margin-left: -10px;
}

/* start contact area css  */



.contact {
    height: 40vh;
    padding: 50px;
    background: #292F35 linear-gradient(to right, #124c70 ,#410c55);
    position: relative;
    z-index: 2;
}

.contact h3 {
    font-size: 35px;
    font-weight: normal;
    color: #ffffff;
}

.contactForm {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 70%;
    height: 76vh;
    background: #124c70;
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
    padding: 40px 30px;
    overflow-y: auto;
    display: none;
}

.closeBtn {
    position: absolute;
    top: 20px;
    right: 50px;
    z-index: 10;
    width: 35px;
    height: 35px;
    display: inline-block;
    cursor: pointer;
    display: flex;
    max-width: 250ox;
    justify-content: center;
    align-items: center;
    z-index: 99 !important;
   
}

.closeBtn:hover i {
    color: rgb(248, 146, 146) !important;
}

.closeBtn i {
    font-size: 28px;
    color: #edf8ff;
    transition: all ease-in-out .4s;
}

.contactForm h4 {
    font-size: 25px;
    font-weight: 400;
    text-align: center;
}

.contactForm p {
    font-size: 17px;
    font-weight: 400;
    padding-top: 5px;
    text-align: center;
}

form {
    width: 85%;
    margin: 0 auto;
}

.formTop {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
    padding-top: 30px;
}

.formItems {
    width: 50%;
    padding: 10px 20px;
}

.formItems input {
    width: 100%;
    padding: 15px 10px 15px 15px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #bfbfbf;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.formItems label {
    font-size: 17px;
    color: #dbdbdb;
    padding-left: 15px;
}

.formCheckBox {
    padding: 20px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.formCheckBox h4 {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #f0f0f0;
    padding-bottom: 20px;
}

.checkboxarea {
    width: 50%;
    display: flex;
    align-items: center;
}

.checkboxarea ul li label {
    font-size: 17px;
    font-weight: 400;
    color: #dbdbdb;
    margin-left: 10px;
}

.checkboxarea ul li label input {
    width: 20px;
    height: 20px;
    border: 1px solid #d7d7d7;
    background: transparent;
}

.checkboxContent {
    display: flex;
    flex-wrap: wrap;
}

.formBottom {
    display: flex;
    flex-wrap: wrap;
}

.formBottom button {
    padding: 10px 60px;
    line-height: 1.5;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 400;
    color: #c8eaff;
    background: #2173A6;
    margin: 0 auto;
    margin-top: 15px;
    border: none;
    box-shadow: 1px 1px 8px rgba(0,0,0,0.20);
    transition: all ease-in-out .4s;
    -webkit-transition: all ease-in-out .4s;
    -moz-transition: all ease-in-out .4s;
    -ms-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
}

.formBottom button:hover {
    background: #155983;
}




/* end contact area css  */

.newsletter {
    padding: 120px 0;
    background-color: #c6bdbd;
}

.newsletter .formArea input {
    max-width: 500px;
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border: none;
    border-bottom: 1px solid #126192;
    outline: none;
}

 input:focus {
    border-bottom: 2px solid red;
}

.newsletter .content {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
}

.join {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    width: 100%;
    font-size: 18px;
}

.newsletter .join h4 {
    font-size: 34px;

} 

.newsletterText {
    width: 50%;
}

.newsletterText p {
    color: #292F35;
}

.formArea {
    width: 50%;
}


.formArea {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: baseline;
    padding-left: 50px;
}

.formArea button {
    height: 55px;
    border: none;
    outline: none;
    border-bottom: 1px solid #126192;
    padding: 0px 20px;
    margin-left: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #292F35;
}

.formItems.textarea {
    width: 100%;
    
}

.formItems.textarea textarea {
    width: 100%;
    height: 130px;
    outline: none;
    border: none;
    resize: none;
    padding: 20px;
    font-size:  17px;
    line-height: 1.5;
    background: #245e83;
    color: #fff;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.10);
  
}


.contactUs {
    max-width: 250px;
}


/* css for custom cursor start */

  /* a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 0px;
    left: 0%;
    background: black;
    transition: width .3s ease;
  }
  
  a:hover:after{
    width: 100%;
    left: 0%;
    background: black;
  } */
  
  .cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid black;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    z-index: 999;
    transform: translate(calc(-50% + 15px), -50%);
  }
  
  .cursor2 {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: black;
    opacity: .3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999;
  }
  
  .hover {
    background: #124c70;
    opacity: 0.5;
  }
  
  .cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: .5;
  }

/* css for custom cursor end */


/* ========= START CSS FOR APPLICATION FORM ======= */

.application_container {
    max-width: 79%;
    width: 100%;
    margin: 0 auto;
}

.applicationInner {
    padding: 60px 0;
}

#applicationForm {
    width: 100% !important;
    margin: 0 auto;
}

.applicationHeadingArea {
    padding: 0 15px;
}

.applicationInner form h4.application_Hd {
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    color: #292F35;
    text-transform: uppercase;
}

.application_SubHd {
    padding: 0 15px;
    text-transform: uppercase;
    transition: all ease-in-out .4s;
}

.application_SubHd h5 {
    position: relative;
    font-size: 26px;
    font-weight: 400;
    color: #32363a;
    padding: 10px 10px;
    /* background: #DEDEDE; */
    background: linear-gradient(to top , rgba(48, 121, 167, 0.20) , transparent);
}


.basic_information {
    padding: 20px 0 60px;
    display: flex;
    flex-wrap: wrap;
   
}

.info_input {
    position: relative;
    width: 33.33%;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    margin-bottom: 15px;
}

.info_input label {
    color: #25282c;
}


.basic_information .info_input label,
.application_textArea label {
    font-size: 17px;
    font-weight: 600;
    color: #25282c;
    padding-bottom: 10px;
}

.application_textArea label {
    padding-bottom: 20px;
    display: block;
}

/* .info_input {
    position: relative;
} */
/* 
.info_input label {
   
} */


.info_input input {
    position: relative;
    padding: 10px 10px 10px 0px;
    /* border: none;
    outline: none;
    border-bottom: 1px solid rgb(223, 223, 223); */
}


.applicationArea .application_textArea {
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.applicationArea .application_textArea textarea:focus + span.underline {
    background:  linear-gradient(to top , rgba(15, 89, 116, 0.1) ,transparent);
    height: 4%;
}


.applicationArea .application_textArea textarea {
    width: 100%;
    height: 100px;
    /* resize: none;
    border: none;
    border-bottom: 1px solid rgb(223, 223, 223);
    outline: none; */


}

.question_selectArea .questions {
    width: 100%;
    padding: 0 15px;
}


.question_selectArea .questions:not(:last-child) {
    margin-bottom: 20px;
}

.question_selectArea .questions > p {
    width: 100%;
    font-size: 17px;
    font-weight: 600;
    color: #2b2b2b;
}

.questionOPtion {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.questionOPtion span {
    display: flex;
    align-items: center;
    margin-right: 25px;
    padding-top: 10px;
}

.questionOPtion span label {
    font-size: 16px;
    font-weight: 600;
    color: #25282c;
    
}

.questionOPtion span input {
    margin-left: 5px;
}

.questions .questionOPtion input[type="number"] {
    padding: 10px;
    width: 180px;
    margin-top: 15px;
}

.fill_outArea {
   padding: 30px 0;
}

.fill_outArea p {
    font-size: 17px;
    font-weight: 400;
    padding-bottom: 35px;
    margin-left: 15px;
    color: #2b2b2b;
}

.fill_outForm {
    display: flex;
    flex-wrap: wrap;
}

.shiftingdata {
    display: flex;
    flex-wrap: wrap;
}

.shifts_time {
    width: 50%;
    padding-bottom: 15px;
}

.shiftsArrea .shifts_time .dayName {
    display: block;
    padding-bottom: 20px;
    color: #292F35;
    padding-left: 15px;
}

.shiftDays {
    width: 100%;
    padding: 0 15px;
    display:flex ;
    position: relative;
}

/* .shiftDays input:hover {
    border-bottom: 2px solid #126192;
} */

.shiftDays input:nth-child(1) {
    margin-right: 20px;
}


.shiftDays input {
    width: 50%;
    padding: 10px 10px 10px 0px;
    /* border: none;
    border-bottom: 1px solid rgb(223, 223, 223);
    outline: none; */

}

.shiftsArrea p ,
.employmentHistory p {
    font-size: 17px;
    padding: 0 15px;
    color: #2b2b2b;
}

.shiftsArrea {
   width: 100%;
}

.employmentHistory p {
	padding: 25px 15px 30px;
    color: #2b2b2b;
}

.commonpoint {
    font-size: 17px;
    font-weight: 600;
    color: #37383a;
}

.emp_nameAddress {
    padding:  0 15px;
    width: 100%;
}

.emp_historyTop {
	display: flex;
	flex-wrap: wrap;
	padding: 15px 0;
}
.emp_nameAddress {
    width: 33.33%;
    padding: 0 15PX;
}

.emp_nameAddress textarea {
    width: 100%;
    height: 100px;
    /* resize: none;
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(223, 223, 223); */

}

.commonpoint {
    font-size: 17px;
    font-weight: 600;
    padding-bottom: 20px;
    display: inline-block;
}

.em_date {
    width: 33.33%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 15px;
}

.startdate ,
.enddate {
    width: 50%;
    padding: 0 15px;
}

.startdate input[type="date"] ,
.enddate input[type="date"] {
    width: 100%;
    line-height: 50px;
    font-size: 15px;
    padding-left: 10px 5px;
    outline: none;
    color: #37383a;
}

.others {
    display: flex;
    flex-wrap: wrap;
}

.pays {
    width: 47%;
}

.par {
    width: 50%;
    
}

.par label {
    padding-bottom: 25px !important;
    
}


.others .pays {
    margin-right: 10px;
}

.pays label {
	color: #2b2b2b;
	padding-bottom: 6px;
	display: inline-block;
	font-size: 17px;
	font-weight: 600;
}
.supervisor {
    margin-right: 15px;
}


/* .em_others {
    width: 67%;
    display: flex;
    flex-wrap: wrap;
} */

.em_others div {
    width: 25%;
    padding: 15px;
}

.pays input{
    line-height: 30px;
    width: 100%;
    outline: none;
}

.em_others .pays label ,
.per  label,
 .supervisor label ,
  .Telephone2 label {
    font-size: 17px;
    font-weight: 600;
    padding-bottom: 15px;
    display: block;
    color: #25282c;
    
}

.em_others .per input,
 .supervisor input ,
  .Telephone2 input {
    width: 100%;
    line-height: 30px;
    /* border: none;
    border-bottom: 1px solid rgb(223, 223, 223);
    outline: none; */
  }

  .edu_commonhd {
    margin-bottom: 20px;
  }

.edu_commonhd h5 {
    font-size: 24px;
    padding-top: 30px;
    padding: 30px 15px 15px 15px;
    color: #32363a;
}

.educationDetails {
    display: flex;
    flex-wrap: wrap;
}

.edu_items {
    width: 25%;
    padding: 0 15px;
}

.edu_items input {
    width: 100%;
    margin-top: 10px;
    /* border: none;
    border-bottom: 1px solid rgb(223, 223, 223); */
}

.militaryInfo .questions {
    padding: 20px 15px;
}

.militaryInfo .questions p {
    font-size: 17px;
    font-weight: 600;
    color: #2b2b2b;
}

.traninngArea {
    width: 100%;
}

.traninngArea textarea {
    width: 100%;
    height: 30px;
    line-height: 50ppx;
    /* border: none;
    resize: none;
    border-bottom: 1px solid rgb(223, 223, 223);
    outline: none;
 */}

.refference p {
    padding: 20px 15px;
}

.reffercnce_form {
    margin-bottom: 60px;
}

.skills_items {
    padding: 25px 15px 40px;
}


.traninngArea .commonpoint {
    padding-bottom: 15px;
    display: inline-block;
    margin-top: 20px;
}

.skill_itemsTextArea textarea {
    width: 100%;
    height: 100px;
    /* border: none;
    resize: none;
    outline: none;
    border-bottom: 1px solid rgb(223, 223, 223); */
    
}

.refference .commonpoint {
    font-weight: 400;
}

.reffercnce_form {
    display: flex;
    flex-wrap: wrap;
}

.ref_items.name ,
.ref_items.address {
    width: 23%;
}

.ref_items.teleph ,
.ref_items.Occupation ,
.ref_items.Years {
    width: 18%;
}

.ref_items {
    padding: 0 15px;
}

.ref_items span.commonpoint {
    font-weight: 600;
}

.ref_items input {
    width: 100%;
    line-height: 30px;
    /* border: none;
    border-bottom: 1px solid rgb(223, 223, 223); */
}

input {
    outline: none;
}



.section-background .content.formextra {
    padding: 0;
    width: 85%;
    margin: 0 auto;
} 



/* .applicationArea {
    height: 100%;
    overflow-y: scroll;
} */
#applicationForm {
    background: rgba(246, 251, 255, 0.88);
    height: 80vh;
    overflow-y: scroll;
    padding: 60px 30px;
}

.applicationInner form{
    scrollbar-color: slategrey darkgrey;
    scrollbar-width: thin;
    /* / */
}


.applicationInner form::-webkit-scrollbar {
    width: .5vw;
  }
   
  .applicationInner form::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    /* border-radius: 15px; */
  }
   
  .applicationInner form::-webkit-scrollbar-thumb {
    width: .5vw;
    background-color: darkgrey;
    outline: 1px solid slategrey;

    /* border-radius: 15px; */
  }

#applicationForm input {
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid rgb(167, 167, 167);
}

#applicationForm textarea {
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    border-bottom: 1px solid rgb(167, 167, 167);
}

#applicationForm textarea p {
    color: #2b2b2b;
}

.em_contact p {
    font-size: 17px;
    font-weight: 400;
    color: #2b2b2b;
    padding: 15px;
}

.em_contact label {
    font-weight: 600;
    color: #25282c;
}

.contactDetails {
    display: flex;
    flex-wrap: wrap;
}

.contactDetails .info_input {
    width: 50%;
}

.contactDetails .info_input textarea {
    width: 100%;
    height: 100%;
    /* resize: none;
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(223, 223, 223); */
}

.applicantDetails p {
    padding: 10px 15px;
    color: #2b2b2b;
}

.declaration {
    padding:  10px 15px 15px 25px;
}

.declaration label {
    font-size: 17px;
    font-weight: 600;
    color: #25282c;
}

.applicantDetails button {
    padding: 10px 30px;
    display: inline-block;
    background: #126192;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    margin: 20px 0;
    border: none;
    outline: none;
    margin-left: 15px;
    letter-spacing: 1px;
    transition: all ease-in-out .4s;
    -webkit-transition: all ease-in-out .4s;
    -moz-transition: all ease-in-out .4s;
    -ms-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
}

.applicantDetails button:hover {
    background: #126192;
}

.underline {
    position: absolute;
    bottom: 0;
    width: calc(100% - 30px);
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    transition: all ease .4s;
    -webkit-transition: all;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
    -webkit-transition: all ease .4s;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.info_input input:focus + .underline {
    background:  linear-gradient(to top , rgba(15, 89, 116, 0.1) ,transparent);
    height: 8%;
}

.grecaptcha-badge {
    display: none;
}

/* ========= END CSS FOR APPLICATION FORM ======= */

/* ===============START CSS FOR CUSTOM SCROLL BAR=============== */





/* ===============START CSS FOR CUSTOM SCROLL BAR=============== */

