@import url(../css/fonts.css);
body{
    padding: 0;
    margin: 0;
    font-family: 'Neue Haas Grotesk Text Pro', sans-serif;
    background-color: #fff;
}
/* .custom-button {
  color: #FC8E26 !important;
  border: 1px solid #FC8E26;
  padding: 12px 16px;
  border-radius: 5px;
}
.custom-button1 {
  color: #fff;
  border: transparent;
  padding: 12px 16px;
  background-color: #FC8E26;
  border-radius: 5px;
} */
section.find-your-team {
    padding-bottom: 50px;
}
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; 
  background-color: #ffffff; 
  box-shadow: 0px 3px 10px #00000029;
}
.navbar {
  padding: 24px 0;
}
.navbar ul.navbar-nav{
  width: 100%;
    max-width: 100%;
    justify-content: end;
    align-items: center;
}
.navbar-nav .nav-item a.nav-link {
  text-decoration: none;
  color: #272727;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-left: 30px;
}
.header-button {
  width: 100%;
  max-width: 180px;
  margin-left: 30px;
}
.home-banner-content {
  margin-top: 118px;
}
section.home-banner {
  padding: 9% 0 8%;
  background-color: #272727;
  color: #fff;
  position: relative;
}
.home-banner h1 {
  font-size: 56px;
  line-height: 68px;
  margin-bottom: 24px;
}
.home-banner p {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 24px;
}
.home-banner .input-box {
  position: relative;
  height: 76px;
  max-width: 812px;
  width: 100%;
  background: #fff;
  /* margin: 0 20px; */  
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}
.home-banner .input-box i,
.home-banner  .input-box .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.home-banner  .input-box i {
  left: 20px;
  font-size: 30px;
  color: #707070;
  font-size: 18px;
}
.home-banner  .input-box input {
  height: 100%;
  width: 100%;
  max-width: 812px;
  outline: none;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  border: none;
  padding: 0 155px 0 65px;
  background-color: transparent;
}
.home-banner .input-box .custom-button1 i{
   left: unset;
   color:#fff;
}
.home-banner .input-box .button {
  right: 20px;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  border: 2px solid #FC8E26;
  /* background-color: #FC8E26; */
  cursor: pointer;
}
.home-banner  .input-box .button.clicked {
  transform: translateY(-50%) scale(0.98);
}
.home-banner .home-banner-image {
  margin-bottom: -60%;
  float: right;
  z-index: 0;
}
.home-banner-image img {
  width: 100%;
}
.home-banner .home-banner-image img {
  display: block;
  width: 100%;
  max-width: 509px;
  float: right;
}


.numbered-list {
  display: flex;
  flex-direction: column;
}

.list-item {
  display: flex;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  margin-bottom: 64px; /* Adjust the gap between list items */
  position: relative; /* Position relative for absolute positioning of lines */
}

.circle {
  width: 30px;
  height: 30px;
  background-color: #fff; /* Circle color */
  color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-right: 10px;
}

.list-item::before {
  content: '';
  position: absolute;
  top: 75%;
  left: 4%;
  height: 0;
  width: 1px;
  border: 1px dotted #fff;
  opacity: 0;
  animation: fadeInLine 0.5s ease-in-out forwards;
}

.list-item[data-index="1"]::before,
.list-item[data-index="2"]::before {
  height: 100px; 
  opacity: 1;
}

.list-item[data-index="1"] {
  animation-delay: 1s;
}

.list-item[data-index="2"] {
  animation-delay: 3s;
}

.list-item[data-index="3"] {
  animation-delay: 4s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeInLine {
  to {
    opacity: 1;
  }
}



section.begin-search {
  background: #272727;
  padding: 150px 0 120px;
  margin-top: -10px;
}
.begin-search-content h2 {
  color: #fff;
  font-size: 50px;
  line-height: 68px;
  letter-spacing: 0.18px;
  margin-bottom: 120px;
}
.begin-search-content span.list-text {
  color: #fff;
  font-size: 28px;
  line-height: 68px;
}
.begin-search-img img {
  width: 100%;
}
.begin-search-img {
  position: relative;
}
.begin-search-img:before {
  position: absolute;
  content: '';
}
.begin-search-content ul.search-data-list h4 {
  font-size: 28px;
  line-height: 34px;
  color: #fff;
}
.begin-search-content ul.search-data-list p {
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  margin-bottom: 0;
}
/* .begin-search-content ul.search-data-list {
  display: flex;
  width: 100%;
  max-width: 498px;
  justify-content: space-between;
  padding-left: 0;
  background-color: #FC8E26;
  list-style: none;
  padding: 25px;
  border-radius: 20px;
  position: absolute;
  top: -50px;
  right: 20px;
} */
ul.search-data-list {
  display: none;
}
.begin-search-content .row {
  align-items: center;
}
.begin-search-content ul.search-data-list li {
  position: relative;
}
.begin-search-content ul.search-data-list li:not(:last-child)::after {
  position: absolute;
  content: '';
  width: 2px;
  height: 70px;
  background-color: #ff9d3f;
  right: -34px;
  top: 0px;
}

/*------------Custom-button css start------------*/
.custom-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border: 2px solid #FC8E26;
  border-radius: 5px;
  color: #fff;
  background-color: #FC8E26;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  padding: 12px 16px !important;
}

.custom-button:hover {
    background-color: transparent;
    color: #f37d0e;
}
.submit-button a {
    background: #fc8e26;
    padding: 16px 50px;
    display: flex;
    max-width: 283px;
    height: 70px;
    justify-content: center;
    align-items: center;
    font-size: 20px !important;
}
.custom-button:hover .arrow {
  background-color: #FC8E26;
  color: #fff;
  border: 2px solid #Fff;
}
.custom-button:hover .arrow i{
  color: #fff;
}
.arrow {
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
    font-size: 16px;
}

.arrow i {
  font-size: 16px;
  color: #fff;
}
/*------------Custom-button css end------------*/



/*------------Custom-button1 css start------------*/
.custom-button1 {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border: 2px solid #FC8E26;
  background-color:#FC8E26 ;
  border-radius: 5px;
  color: #fff !important;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  padding: 12px 16px !important;
}

.custom-button1:hover {
  background-color: #fff;
  color: #FC8E26 !important;
}
.custom-button1:hover .arrow1 {
  background-color: #Fff;
  color: #FC8E26;
  border: 2px solid #FC8E26;
}
.custom-button1:hover .arrow1 i{
  color: #FC8E26;
}
.arrow1 {
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
  font-size: 16px;
}
.arrow1 i {
  font-size: 16px;
  color: #fff;
}
/*------------Custom-button1 css end------------*/


.take-care-text-content {
  width: 551px;
  padding: 250px 100px 250px 117px;
  background-color: #EAEAEA;
  border-top-right-radius: 50px;
}
.take-care-text-content p{
  font-size: 20px;
  line-height: 30px;
}
section.we-take-care {
  margin: 86px 0;
}
 h2 {
  font-size: 50px;
  line-height: 63px;
  font-weight: bold;
}
 h2 span{
  color: #FC8E26;
}

section.we-take-care {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.we-take-care .owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
  margin-left: -60px;
}
.we-take-care .overlay-text {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  padding: 0 40px;
}
.we-take-care .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  border-radius: 20px;
}
.we-take-care .owl-carousel .owl-nav button.owl-next, 
.we-take-care .owl-carousel .owl-nav button.owl-prev {
  width: 40px;
  height: 40px;
  border: 1px solid #FC8E26;
  border-radius: 50%;
  color: #FC8E26;
}

.why-join-us-cards .card h4 {
  margin-top: 10px;
}
.card img {
  width: 100%;
  max-width: 45px;
  /* background-color: #000; */
}
.why-join-us-cards{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 55%;
}
.why-join-us-cards .card {
  width: 100%;
  max-width: 290px;
  border: 0px;
  margin-bottom: 60px;
}
.join-us-content {
  width: 50%;
}
.why-join-us {
  display: flex;
  align-items: center;
}
.join-us-content {
  width: 551px;
  padding: 270px 100px 280px 59px;
  background: #EAEAEA;
  position: absolute;
  right: 0;
  border-top-left-radius: 50px;
}

footer.footer-design {
  padding-top: 80px;
  background-color: f9f9f9;
}

.footer-menu ul {
  list-style: none;
  margin-bottom: 30px;
}
.footer-block {
  margin-bottom: 19px;
  border-bottom: 2px dotted;
}
.footer-menu li {
  margin-bottom: 17px;
  font-weight: 600;
}
.footer-menu li a {
  text-decoration: none;
  color: inherit;
}
.footer-block .col-md-2:first-child {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.copyright p {
  font-size: 12px;
  line-height: 15px;
}
.copyright ul {
  display: flex;
  width: 119px;
  justify-content: space-between;
  list-style: none;
  float: right;
}
.copyright ul .fa-brands, .fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  background: #FC8E26;
  color: #fff;
  padding: 4px;
  border-radius: 50%;
}



section.unlock-future {
  background: #272727;
  padding: 180px 0 70px;
}
.unlock-future-content h2 {
  color: #fff;
  max-width: 337px;
}
.unlock-future-content h2 span{
    font-size: 75px;
    line-height: 95px;
}
.unlock-future-content .custom-button1 {
  margin-top: 70px;
}
.unlock-future-card {
  background: #fff;
  padding: 34px;
  border: 1px solid #D1D1D1;
  margin-bottom: 10px;
}
.unlock-future-card h4{
  font-size: 28px;
  line-height: 40px;
    color: #000;
}
.unlock-future-card span{
  color: #FC8E26;
}
.unlock-future-card .location-detail ul{
  display: flex;
  list-style: none;
  padding-left: 0;
}
.unlock-future-card .unlock-services ul{
  display: flex;
  padding-left: 0;
}
.unlock-future-card .unlock-services ul li{
  margin-right: 10px;
}
.unlock-future-card .location-detail ul li {
  color: #FC8E26;
  margin-right: 35px;
  font-size: 20px;
  line-height: 24px;
}
.unlock-future-card .unlock-services ul li {
  text-decoration: none;
  color: #000;
  font-size: 13px;
  line-height: 19px;
  margin-right: 20px;
}
.unlock-future-content {
  margin-top: 50px;
}
.unlock-future-card .unlock-services ul li:first-child {
  list-style-type: none;
}
 .c-feature-ticker__wrap {
  align-items: center;
  display: grid;
  gap: 3.2rem;
  grid-template-columns: repeat(12,1fr);
}
.animation-accordion .c-feature-ticker__text-wrap {
  grid-column: 1/span 7;
}
.find-team-content {
  text-align: center;
  margin-top: 180px;
}
.find-team-content p {
  width: 100%;
  max-width: 842px;
  font-size: 22px;
  margin: 20px auto 50px;
}
/* .authoring-conversations {
  margin-bottom: 100px;
} */
.authoring-conversations .c-feature-ticker--dark .c-feature-ticker__item:after {
  content: "+";
  position: absolute;
  right: 0;
  color: #000;
  top: 14px;
  font-size: 30px;
  z-index: -1;
}
.authoring-conversations .c-feature-ticker--dark .c-feature-ticker__item.c-feature-ticker__item--active:after {
  content: "-";
  position: absolute;
  right: 0;
  color: #000;
  top: 10px;
  font-size: 40px;
  z-index: -1;
}
/* teams pages css starts */
section.meet-our-leaders {
  padding: 200px 0 88px;
  display: block;
  overflow: hidden;
  width: 100%;
}
.leader-content .row .col-lg-4 {
  margin-top: 60px;
}
.team-box {
  background: #FFF 0% 0% no-repeat padding-box;
  box-shadow: 0 0 10px #00000033;
  border-radius: 10px;
  width: 85%;
}
.leader-image {
  text-align: center;
  background: #c6c6c6;
  border-radius: 10px 10px 0 0;
    height: 150px;
}
.leader-image img {
  width: 100%;
  filter: gray;
  -webkit-filter: grayscale(1);
  -webkit-transition: all .8s ease-in-out;
  overflow: hidden;
  position: relative;
  top: -31px;
  max-width: 216px;
}
.team-box:hover .leader-image img {
  filter: none;
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.05);
    overflow: hidden;
  }
.leader-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}
.team-box:hover .leader-name h5, .team-box:hover .leader-more a{
  color: #FC8E26;
}
.leader-name h5 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: bold;
  color: #333333;
  margin: 0;
}
.leader-name p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
  color: #333333;
}
.leader-more a {
  color: #333;
  border: 1px solid;
  border-radius: 100%;
  padding: 3px 5px;
  font-size: 13px;
}
.leader-modal .modal-dialog.modal-dialog-centered {
  max-width: 950px;
}
.leader-modal .modal-header {
  border-bottom: none;
}
.leader-modal button.btn-close {
  border: 1px solid #272727;
  border-radius: 100px;
  color: #272727;
  position: absolute;
  right: 0;
  top: 0;
  background: none;
}
.leader-modal .btn-close:focus {
  box-shadow: none;
}
.leader-modal .leader-info {
  display: flex;
  justify-content: space-between;
  align-items: center
}
.leader-img img {
  width: 100%;
}
.leader-img {
  margin-bottom: 20px;
}
.leader-linkedin a {
  background: #fc8e25;
  padding: 3px 5px;
  border-radius: 100px;
  color: #fff;
}
.leader-description {
  position: relative;
  padding: 20px 0;
}
.meet-our-leaders .leader-content .row {
  align-items: center;
  justify-content: center;
}
.modal-leader-content {
  padding: 20px 0;
}
.modal-leader-content p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #272727;
}
.leader-modal .modal-content {
  border-radius: 10px;
}
/* teams page css ends */

/* contact us css starts */
section.location {
  padding: 180px 0 50px;
  display: block;
  overflow: hidden;
  width: 100%;
}
.location-heading p {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  color: #272727;
  max-width: 855px;
}
section.contact-form {
  padding: 70px 0;
  display: block;
  overflow: hidden;
  width: 100%;
  background-color: #272727;
}
.contact-heading h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 400;
  text-align: center;
}
.contact-heading p {
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  color: #fff;
}
.contact-form form {
  max-width: 975px;
  margin: 60px auto 0;
  width: 100%;
}
.contact-form form label.form-label {
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.contact-form form .form-control {
  height: 70px;
  border-radius: inherit;
  
}
.custom-form {
  margin: 0 0 25px;
}
.submit-button a {
    background: #fc8e26;
    padding: 15px 50px;
}
.contact-form form textarea.form-control {
  min-height: calc(11.5em + 0.75rem + 2px);
}
.submit-button a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.two-input:not(:last-child) {
  margin-bottom: 25px;
}
.custom-form input::placeholder{
font-size: 16px;
  color:  #D2D2D2 ;
  opacity: 1; /* Firefox */
}
.custom-form select {
  font-size: 16px;
    color:  #D2D2D2 ;
    opacity: 1; /* Firefox */
  }
.custom-form input::-ms-input-placeholder { /* Edge 12-18 */
  font-size: 16px;
  color:  #D2D2D2 ;
}
.custom-form textarea#your-message::-webkit-input-placeholder {
  font-size: 16px;
  color:  #D2D2D2 ;
}  
/* contact us css ends */
section.life-at-escalon.escalon-life {
  background: #fff;
  margin-bottom: 125px;
  margin-top: 180px;
}
section.life-at-escalon.escalon-life h2,
section.life-at-escalon.escalon-life p{
  color: #000;
}
.footer-menu li span {
  font-weight: 600;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  background: #FC8E26 !important;
  color: #FFF !important;
  text-decoration: none;
}
body:after {
  display: none;
}
.navbar-nav .nav-item.active a.nav-link {
  color: #FC8E26;
}
.footer-menu li img {
    display: inline-block;
    vertical-align: middle;
    width: 22px;
}
.footer-menu li span {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 100px);
    font-weight: 600;
}
.unlock-future-data-cards a{
  text-decoration: none;
}
.meet-our-leaders .leader-content .row {
  align-items: center;
  justify-content: center;
}
.meet-our-leaders p{
   width: 100%;
   max-width: 763px;
}
.meet-our-leaders p {
  width: 100%;
  max-width: 763px;
  font-size: 22px;
  line-height: 30px;
}
@media (min-width: 1200px)
{
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1240px;
}
}
@media(max-width:1600px){
  h2 {
    font-size: 42px;
    line-height: 52px;
    font-weight: bold;
    }
    .home-banner h1 {
       font-size: 45px;
       line-height: 52px;
       margin-bottom: 20px;
    }
    /* .home-banner p {
      font-size: 16px;
      line-height: 32px;
      margin-bottom: 10px;
  } */
  .begin-search-content h2 {
    font-size: 40px;
    line-height: 56px;
    margin-bottom: 100px;
}
 .begin-search-content span.list-text {
  font-size: 22px;
  line-height: 44px;
} 
.begin-search-content ul.search-data-list h4 {
  font-size: 22px;
  line-height: 32px;
}
.begin-search-content ul.search-data-list p,
.unlock-future-card .location-detail ul li {
  font-size: 16px;
  line-height: 20px;
}
.we-take-care .overlay-text {
  font-size: 12px;
  padding: 0 20px;
  bottom: 20px;
}
.unlock-future-content h2 span {
  font-size: 65px;
  line-height: 85px;
}
.unlock-future-card h4 {
  font-size: 24px;
  line-height: 34px;
}
.home-banner .home-banner-image img {
  display: block;
  width: 100%;
  max-width: 490px;
  float: right;
}
section.home-banner {
/*  padding: 12% 0 8%;*/
  background-color: #272727;
  color: #fff;
}
/* teams pages css starts */
.modal-leader-content p {
  font-size: 16px;
}
.leader-description .leader-name h5 {
font-size: 20px;
}
.leader-img {
margin-bottom: 12px;
}
  /* teams pages css ends */
}
@media(max-width:1400)
{

}
@media(max-width:1100px) {
  h2 {
    font-size: 42px;
    line-height: 55px;
    font-weight: bold;
}
  .join-us-content,
  .why-join-us-cards{
    width: 50%;
  }
  .why-join-us-cards .card {
    width: 100%;
    max-width: 230px;
}
 /* teams pages css starts */
 .leader-image {
  height: 120px;
}
.leader-details {
padding: 15px;
}
.leader-name h5 {
font-size: 18px;
}
.leader-name p {
font-size: 16px;
}
.leader-image img {
max-width: 180px;
}
/* teams pages css ends */
}
@media(max-width:991px) {
  .navbar ul.navbar-nav {
    justify-content: start;
    align-items: start;
}
.navbar-nav .nav-item a.nav-link,
.header-button{
  margin-left: 0;
}
  h2 {
    font-size: 34px;
    line-height: 45px;
    font-weight: bold;
}
  .unlock-future-card .unlock-services ul{
    flex-wrap: wrap;
    list-style:none;
  }
  .unlock-future-content h2 span{
    font-size: 50px;
    line-height: 60px;
  }
  /* teams pages css starts */
  .leader-image {
    height: 140px;
  }
  .leader-image img {
    max-width: 206px;
  }
  .leader-modal .modal-dialog.modal-dialog-centered {
    max-width: 700px;
  }
  /* teams pages css ends */

}
@media(max-width:767px) {
  section.we-take-care {
    flex-wrap: wrap;
  }
  .take-care-text-content {
    width: 100%;
    padding: 30px;
    background-color: #EAEAEA;
    border-top-right-radius: 50px;
    margin-bottom: 20px;
}

.we-take-care .owl-carousel {
  margin-left: 0;
}
.we-take-care .owl-carousel .owl-item img {
  border-radius: 40px;
  padding: 0 12px;
}
.why-join-us {
  flex-wrap: wrap;
}
.why-join-us-cards,
.join-us-content,
.why-join-us-cards .card { 
  width: 100%;
  max-width: 100%;
}
.join-us-content{
  position: unset;
}
.unlock-future-card .location-detail ul li {
  margin-bottom: 20px;
}
.unlock-future-card .location-detail ul{
  flex-wrap: wrap;
}
.unlock-future-content .custom-button1 {
  margin-top: 10px;
  margin-bottom: 20px;
}
.begin-search-img img {
  margin-top: 50px;
}
/* teams pages css starts */
.team-box {
  width: 100%;
}
.leader-description {
  padding: 35px 0;
}
/* teams pages css ends */
}
/* ikbal css job description */
section.banner-section-space {
  background: #272727;
  margin-top: 100px;
  position: relative;
}
.unlock-future-card a {
  color: #000;
  text-decoration: none;
}


.job-filters  .accordion-button:not(.collapsed) {
  color: #959EAD;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  color: #959EAD;
  padding: 10px;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
  height: 44px !important;
}
.job-search {
  position: relative;
  margin-bottom: 20px;
}
.job-search input {
  height: 50px;
  border-radius: 0;
  padding-left: 31px;
  font-size: 14px;
}
.search-btn a span {
  border: 1px solid #fff;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.search-btn a {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 60px;
  display: flex;
  text-decoration: none;
  height: 42px;
  background: #FC8E26;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 5px;
}
.icon-search {
  position: absolute;
  top: 18px;
  color: #5A7184;
  left: 10px;
}
.job-filters {
  width: 30%;
}

.accordion-button:focus{
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
  background-image: url(../imgs/minus.png);
}
.accordion-button::after{
  background-image: url(../imgs/plus.png);
}
.job-listing-outer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}
.footer-menu li a {
  font-weight: bold;
}
.navbar-nav .nav-item a.nav-link {
  font-weight: 600;
}
section.escalon-video {
  padding: 80px 0;
}
.image-video img {
  width: 100%;
}
.main-heading {
  color: #FFFFFF;
  font-size: 56px;
  line-height: 1.2;
}
.job-details {
  display: flex;
  align-items: center;
  color: #FC8E26;
  padding: 15px 0 50px;
}
.banner-right-image {
  width: 40%;
  position: relative;
  z-index: 22;
}
/***************masonary gallery***************************/
.life-at-escalon-content
{
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.life-at-escalon-content h2,
.life-at-escalon-content p{
  color: #fff;
}
.life-at-escalon-content p{
  width: 451px;
  margin-bottom: 0;
}
section.life-at-escalon {
  background: #272727;
  padding: 100px 0 0;
}
.grid-container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  height: auto;
  overflow: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.grid-container a {
  text-decoration: none;
}
.grid-container a:hover {
  text-decoration: none;
}
.grid-container .grid {
  margin: 0 auto;
}
.grid-container .item {
  color: white;
  display: table;
  font-size: 1.4em;
  text-align: center;
  margin: 5px;
  width: 400px;
  min-width: 400px;
}
@media only screen and (max-width: 768px) {
  .grid-container .item {
    width: 300px;
    min-width: 300px;
  }
}
.grid-container .item:hover .title {
  opacity: 0.9;
  background-color: #333;
}
.grid-container .title {
  font-family: "Paytone One", "Arial Black", Helvetica, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1.2rem;
  display: table-cell;
  vertical-align: middle;
  opacity: 0;
  transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  -webkit-box-shadow: inset 0px 0px 0px 10px #7f7b9c;
  -moz-box-shadow: inset 0px 0px 0px 10px #7f7b9c;
  box-shadow: inset 0px 0px 0px 10px #7f7b9c;
visibility: hidden;
}
.grid-container .title span {
  font-family: "Merriweather Sans", Geneva, Tahoma, Verdana, sans-serif;
  text-transform: none;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 1.3px;
  margin-top: 15px;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}
.grid-container .btn {
  font-family: "Paytone One", "Arial Black", Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: 3px;
  font-size: 1rem;
  background: none;
  color: #fff !important;
  border: 2px solid #fff !important;
  margin: 15px auto;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}
.grid-container .i-small {
  height: 280px;
}
.grid-container .i-tall {
  height: 570px;
}
.grid-container .is1 {
  background-image: url(../imgs/Component1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.grid-container .it1 {
  background-image: url(../imgs/Component2.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.grid-container .is2 {
  background-image: url(../imgs/Component3.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.grid-container .is3 {
  background-image: url(../imgs/Component4.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.grid-container .is4 {
  background-image: url(../imgs/Component6.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/******************end here**********************************/
@media (max-width: 1440px){
  .container {
      max-width: 1240px;
  }
}
a.custom-btn-career {
    background: #FC8E26;
    height: 44px;
    border: 2px solid #FC8E26;
    display: flex;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    max-width: 165px;
    justify-content: space-between;
    align-items: center;
}
a.custom-btn-career:hover {
    background: transparent;
}
span.custom-arrow {
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}
.circle-shape {
  position: absolute;
  right: 0;
  bottom: -230px;
}
.banner-right-image img {
  width: 100%;
}
.job-details h5 {
  font-size: 32px;
}
.job-details .experience-yaers, .job-details .location-area {
  display: flex;
}
.job-details .experience-yaers span {
  margin-right: 15px;
}
.job-details .location-area span {
  margin-right: 15px;
}
.job-details .experience-yaers {
  margin-right: 50px;
}
.banner-outer-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.image-div {
  position: relative;
  top: 35px;
}
.orange-color{
  color: #FC8E26;
}
.tab-area-outer .nav-tabs {
  border-bottom: 2px solid #FC8E26;
  display: flex;
  justify-content: space-evenly;
}
.tab-area-outer {
  padding-top: 80px;
}
.tab-area-outer .nav-tabs .nav-link:focus, .tab-area-outer .nav-tabs .nav-link:hover {
  background: #FC8E26;
  isolation: isolate;
  color: #fff;
}
.points-outer ul li {
  font-size: 22px;
  margin-bottom:12px;
  list-style: none;
  position: relative;
  padding-left: 16px;
}
.points-outer ul li:before {
  width: 6px;
  content: '';
  height: 6px;
  border-radius: 50%;
  background: #FC8E26;
  position: absolute;
  left: 0;
  bottom: 10px;
}
.footer-menu li a:hover {
  color: #fc8e26;
}
section.apply-your-job-outer {
  background: #272727;
  padding: 120px 0;
}
.secction-heading-job p {
  color: #FFFFFF;
  font-size: 28px;
}
.secction-heading-job {
  text-align: center;
}
.secction-heading-job h2 {
  font-size: 44px;
  color: #fff;
}
.tab-area-outer  .nav-link {
  font-size: 24px;
  color:#272727;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 25%;
}
.points-outer {
  padding-top: 60px;
  padding-left: 30px;
}
.tab-area-outer  .nav-tabs .nav-item.show .nav-link, .tab-area-outer  .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #FC8E26;
  border-color: #FC8E26;
}
.client-description {
  background: #fff;
  padding: 15px 27px;
}
h5.designation {
  color: #FC8E26;
  font-size: 16px;
}
h4.client-name {
  font-size: 20px;
  font-weight: 600;
}
.client-description p {
  color: #272727;
  font-size: 18px;
}
.testi-content p {
  color: #fff;
  font-size: 24px;
  margin-bottom: 0;
}
.qote-image {
  margin-top: -37px;
}
.moments {
  background: #FC8E26;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  align-items: center;
}
.slider-left-content h2 {
  color: #fff;
  font-size: 50px;
}
.quote-image {
  position: relative;
  top: -100px;
}
.slider-outer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

#testimonial-slider{
  width: 60%;
}
#testimonial-slider , #testimonial-slider .owl-item{
  position: initial;

}
#testimonial-slider .owl-nav {
  position: absolute;
  left: 0;
  top: 70%;
}
#testimonial-slider  button.owl-prev, #testimonial-slider button.owl-next{
  border:1px solid #FC8E26;
  width: 51px;
  height: 51px;
  color:#fff;
  border-radius: 50%;
}
#testimonial-slider  button.owl-prev:hover, #testimonial-slider button.owl-next:hover{
   background-color:#FC8E26;
}
.slider-left-content p {
  color: #fff;
  font-size: 22px;
}


.slider-left-content {
  width: 40%;
}

section.life-at-escalon-testimonial {
  background: #272727;
  padding: 50px 0;
}
section.section-space-job {
  padding: 180px 0 150px;
}
.custom-life-at-escalon .main-heading {
  color: #fc8e26;
  font-weight: 600;
}
.custom-life-at-escalon .left-banner-content {
  width: 34%;
}
.left-banner-content h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
}
h2.section-main-heading {
  font-size: 50px;
  line-height: 1.5;
}
.section-heading-div p {
  color: #272727;
  font-size: 22px;
  line-height: 1.3;
}
.left-banner-content {
  width: 50%;
}
.left-banner-content p {
  color: #fff;
  font-size: 20px;
  margin-top: 20px;
}
.left-banner-content a.custom-button1 {
  margin-top: 25px;
}
.job-listing .job-details h5 {
  font-size: 20px;
}
/* ikbal css job description  end*/
 .job-custom .circle-shape{
  z-index: -1;
}
.unlock-future-card .unlock-services ul li:first-of-type {
  list-style: none;
}
.unlock-future-card a:hover h4 {
    text-decoration: underline;
}
.footer-menu li span {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 100px);
    font-weight: 600;
    padding-left: 10px;
}
.footer-menu li div i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    font-size: 14px;
}
.footer-menu li div i.fa-solid.fa-location-dot {
    font-size: 17px;
}

.footer-menu li div {
    width: 30px;
    height: 30px;
    background: #fae9da;
    display: inline-block;
    border-radius: 50%;
    color: #fc8e26;
    vertical-align: middle;
    position: relative;
    text-align: center;
}
.copyright ul a i.fa-brands.fa-youtube {
    font-size: 13px;
}
.copyright ul a i {
    position: relative;
    left: 0.5px;
}
.copyright ul a {
    width: 25px;
    height: 25px;
    background: #fc8e26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
}
.footer-menu li span, .footer-menu li div ~ a {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 100px);
    font-weight: 600;
    padding-left: 10px;
}