html{
  scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}
h3.mainhead{
  font-size: 1.3rem;
}
h4.mainhead{
  font-size: 1rem;
}

@media(max-width: 767px){
  .h1, h1{
      font-size: 2.2rem;
  }
  .h2, h2{
      font-size: 1.75rem;
  }
  }
  @media(max-width: 575px){
  .h2, h2{
      font-size: 1.5rem;
  }
  .h1, h1{
      font-size: 2rem;
  }
  }

  
@media(min-width: 1366px){
  .cmpad{
      max-width: 1300px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 54px;
      padding-right: 54px;
  }
  }
  @media(max-width: 1366px){
  .cmpad{
    padding-left:80px;
    padding-right:80px;
  }
  }
  @media(max-width: 991px){
  .cmpad{
    padding-left:40px;
    padding-right:40px;
  }
  }
  @media(max-width: 767px){
  .cmpad{
    padding-left:15px;
    padding-right:15px;
  }
  
  }
  @media(max-width: 575px){
  html{
    font-size: 90%;
  }
  
  }
  
/* ----------NAVBAR---------- */
.exelogo{
    width: 100%;
    height: 50px;
}
#mobile-nav{
  display: none;
}
.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease-in-out;
}
.navbar > .container-fluid{
  padding-left: 0;
}
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
  line-height: 35px;
}
.navbar-nav {
    margin-left: auto !important;
    gap: 5px;
}
.nav-link{
    font-family: "Nunito";
    color: black !important;
}
.nav-link:hover{
    color: rgb(15, 15, 107) !important;
}
#toggler, .btn-close{
  box-shadow: none !important;
  border: none !important;
}
#enquiry{
    background: linear-gradient(90deg, rgba(52,132,94,1) 0%, rgba(33,56,107,1) 100%);
    border-radius: 0.3rem;
    color: #fff !important;
    padding: 10px 15px;
    margin-top: -4px;
}
.dropdown-menu{
    line-height: 30px;
}
.dropdown-menu .dropdown-item {
  position: relative;
  overflow: hidden;
}
.dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #34845c; 
  bottom: 0;
  left: 17px;
  transition: width 0.3s ease-in-out;
}

.dropdown-menu .dropdown-item:hover::before {
  width: 87%;
}


/* ------CAROUSEL SLIDER----- */

.slider{
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  min-height: 400px;
  background-color: #333;
    display: flex;
    flex-flow: wrap;
    align-items: center;
}
.slider:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.slider .mainslider{
    width: 100%;
    height: 100%;
}
#mainslider{
  width: 100% !important;
}
.slider .mainslider .slideimg{
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.slider .mainslider .slideimg:before{
    content: '';
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: rgb(0 0 0 / .25);
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
}
.slider .mainslider .swiper-slide.swiper-slide-active .slideimg{
    animation: slide 10s 1;
}
@keyframes slide {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}


.slider .mainpagination{
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    right: 2rem;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%);
    bottom: auto;
    width: auto;
    gap: 13px;
}
.slider .mainpagination .swiper-pagination-bullet{
    background-color: transparent;
    opacity: .5;
    margin: 4px 0 !important;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .3rem;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}
.slider .mainpagination .swiper-pagination-bullet:before{
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
}
.slider .mainpagination .swiper-pagination-bullet-active{
    opacity: 1;
    background-color: #fff;
    box-shadow: 0 0 0 1px #fff;
}
.slider .slidebtn{
    width: 86px;
    display: flex;
    justify-content: space-between;
    margin-left: 30px;
    margin-top: 1rem;
}
.slider .slidebtn .mainnext,
.slider .slidebtn .mainprev{
    position: relative;
    margin: 0;
    width: 36px;
    height: 36px;
    top: auto;
    left: auto;
    right: auto;
    border-radius: 50%;
    color: #fff;
    border: 1px solid;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.slider .slidebtn .mainnext:after,
.slider .slidebtn .mainprev:after{
    font-size: 1rem;
}
.slider .slidebtn .mainnext:hover,
.slider .slidebtn .mainprev:hover{
    background-color: #34845c;
    border-color: #34845c;
}
/* ------BUSINESS SECTOR----- */
.business-sector h3{
  font-weight: 500;
  font-family: "Nunito", sans-serif;
}
.business-cards {
  display: flex;
  gap: 20px;
}

.big-card1 {
  height: 550px;
  width: 1200px;
  background:url(../img/services/edt.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.big-card1::after, .small-card1::after{
  position: absolute;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: all .2s ease-in-out;
}
.big-card1:hover::after, .small-card1:hover::after{
  opacity: .5;
}
.big-card1:hover .headings{
  position: absolute;
  z-index: 100;
  color: #fff;
}
.small-card1:hover > .headings{
  z-index: 100;
  color: #fff;
}
.card-containerr {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.small-card1 {
  flex: 0 0 48%;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  margin-bottom: 20px;
  padding: 20px;
  box-sizing: border-box;
  margin: 0;
  transition: all .2s ease-in-out;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.big-card1 h4, .small-card1 h5{  
  top: 50%;
  position: relative;
  color: white;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 700;
  pointer-events: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ------MESSAGE SECTION------- */
  .message p{
    opacity: .8;
}
.quote{
    font-size: 3rem;
    color: #34845c;
    opacity: .2;
}
.info{
    width: 100%;
    text-align: right;
    border-right: 6px solid #34845c;
    padding-right: 10px;
}
.caption{
    font-size: .9rem;
    opacity: .8;
}
.swipertesti .name{
    margin: 0 10px;
}
.name{
  font-weight: bold;
}
.swipertesti .desig{
    margin: 0;
    font-size: .875rem;
}
.tstinfo{
    margin-top: .5rem;
    position: relative;
}
.tstinfo i{
    color: #34845c;
    font-size: 2rem;
    position: absolute;
    right: 0;
    top: 0;
    opacity: .2;
}
#swiper-slide{
  margin: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  font-family: "Nunito",sans-serif;
  gap: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.flex-container {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.block-container {
  flex: 1;
  display: block;
}

.card {
  width: calc(50% - 10px); 
  margin: 0 5px;
  margin-bottom: 20px;
  box-sizing: border-box;
  color: #fff !important;
}
#test{
  background-color: #34845c;

}
#col{
  width: auto;
  padding: 10px;
}
#col h4{
  padding-left: 5px;
}
.flex-card {
  font-family: "Nunito",sans-serif;
}

.flex-card h2{
  padding-left: 10px;
  padding-top: 10px;
  font-family: "Nunito",sans-serif;
  font-weight: 700;
}
.flex-card p{
  padding-left: 10px;
  padding-top: 0;
}
.block-card {
  height: 190px;
  background-color: #34845c;
  font-family: "Nunito",sans-serif;
  font-weight: bold;
}
#message{
  background-color: #333 !important;
  background: url(../img/images/message-removebg-preview.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  width: 500px;
}
#message a{
  background: none;
  text-decoration: none;
  color: white;
  padding: 0;
  margin:0 15px;
  transition: all .2s ease-in-out;
  font-family: "Nunito",sans-serif;
}
#message a:hover{
  color: #34845c;
}
.ri-arrow-right-fill{
  font-size: x-large;
}
#c3{
  background: url(../img/images/businessman-holding-golden-cup-trophy.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 150px;
  width: 95%;
  font-family: "Nunito",sans-serif;

}
#c4{
  background: url(../img/images/22431.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 150px;
  width: 95%;
  font-family: "Nunito",sans-serif;

}
#c3 h4, #c4 h4{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .flex-card,
  .block-card {
    width: 100%;
  }

  .flex-card:nth-child(3),
  .block-card:nth-child(3),
  .block-card:nth-child(4) {
    width: calc(50% - 10px);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .flex-card,
  .block-card {
    width: calc(50% - 10px);
  }
}
.testipagination{
  padding: 0 20px;
}
.space{
  display: none;
}
.block-card::after, .block-card::after{
  position: absolute;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: all .2s ease-in-out;
}
.block-card:hover::after, .block-card:hover::after{
  opacity: .5;
}
.block-card h4{
  pointer-events: none;
}
.block-card:hover h4{
  position: absolute;
  z-index: 100;
  color: #fff;
}
/* -------NEWS SECTION--------- */
.newssection{
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Nunito",sans-serif;
}
.heading{
  display: flex;
  justify-content: space-between;
  font-family: "Nunito",sans-serif;
  padding: 0;
}
.heading a{
  text-decoration: none;
  color: #333;
  border: 1px solid #333;
  height: fit-content;
  width: 80px;
  text-align: center;
  transition: all .2s ease-in-out;
  font-family: "Nunito",sans-serif;
}
.heading a:hover{
  background-color: #34845c;
  color: #fff;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card-news{
  padding: 0;
}

.big-card {
  width: 66%; 
  margin-bottom: 20px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  transition: all .2s ease-in-out;
}


.content-news{
  display: flex;
  justify-content: space-between;
  padding: 20px;
  flex-direction: column;
}
.content-news a{
  text-decoration: none;
  color: #34845c;
}
.card-education{
  height: 225px;
  width: 100%;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.small-card,
.equal-card {
  width: 32.33%; 
  margin-bottom: 20px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  transition: all .2s ease-in-out;
}

#bigcard{
  height: -webkit-fill-available;
}
#bigcard,#smallcard,#equalcard{
  transition: all .2s ease-in-out;
  cursor: pointer;
}
.big-card:hover, .small-card:hover, .equal-card:hover{
  margin-top: -10px;
  color: #34845c;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.background{
  width: 100%;
  height: 700px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
  /* ---------VISION----------- */
.csrtext{
  background-color: #34845c;
  color: #fff;
  padding: 10px;
  width: auto;
}

.swiper{
  width: 410px !important;
  margin: 0 !important;
}
.swiper-wrapper{
  color: #fff;
  opacity: 0.9;
}
.swiper-pagination-bullet-active{
  background-color: white !important;
}
.morebtn{
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  transition: all .2s ease-in-out;
  padding: 0;
  font-family: "Nunito",sans-serif;
}
.morebtn:hover{
  color: #243b6c;
}
.csr{
  display: flex;
}
.csrimg img, .csrimg2 img, .csrtext{
  height: 300px !important;
}
#col1 {
  display: grid;
  place-items: center;
  left: 50%;
  position: relative;
  width: auto;
  right: 50%;
  transform: translate(-50%, 50%);
  bottom: 50%;
  height: 265px;
  padding-left: 10px;
}
#col1 h2{
  margin-right: auto;
  font-size: 1.5rem;
}

.vision{
  display: flex;
  max-width: 100%;
}
.csr-slider{
  background-color: #34845f;
  height: auto;
}
#visionimg img, #visionimg2 img{
  height: 300px !important;
}
#visionimg, #visionimg2{
  width: 100%;
}
  /* -----PROJECTS AND PRESS RELEASE */
  .overlay h3, .overlay h2{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Nunito",sans-serif;
    color: #fff;
  } 
  .overlay h2, .overlay h3{
      font-size: 1.5rem;
  }
  .image1, .image2{
    height: 200px;
    width: 100%;
    border-radius: 10px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    text-align: center;
  }
.fig-caption:before{
  position: absolute;
  top: 30px;
  right: 50px;
  bottom: 30px;
  left: 50px;
  border: 1px solid #fff;
  content: '';
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.project1 .fig-caption:before, .project2 .fig-caption:before{
  opacity: 0;
  -webkit-transition: opacity .35s,-webkit-transform .35s;
  transition: opacity .35s,transform .35s;
}
.project1:hover .fig-caption:before, .project2:hover .fig-caption:before{
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.project1:hover #view, .project2:hover #vieww{
  display: block;
}
#view{
  position: relative;
  color: #fff;
  text-decoration: none;
  top: 50%;
  display: none;
}
#vieww{
        position: relative;
    color: #fff;
    text-decoration: none;
    top: 50%;
    display: none;
}
.project1, .project2{
  position: relative;
}
/* -----FOOTER------- */
footer{
    width: 100%;
    height: auto;
    background-color: #000;
    font-family: "Nunito",sans-serif;
}

.row ul{
  list-style-type: none;
  padding-top: 55px;
  padding-left: 0;
}
.row ul li h5, .row ul li h2, .row ul li h3, .row ul li h4{
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}
.row ul li a{
  text-decoration: none;
  color: gainsboro;
  line-height: 30px;
  transition: all .2s ease-in-out;
}
.row ul li a:hover{
  color: #34845c;
}
.flex-footer{
  display: flex;
  gap: 20px;
}
.icon-footer{
  font-size: x-large;
}
hr{
  border: 1px solid darkgrey;
}
.middlepart{
  display: flex;
  list-style-type: none;
  padding: 0 !important;
  margin-top: -2px;
  float: right;
  gap: 1rem;
}
.middlepart li a{
  color: #fff;
}
.footer-end{
  font-size: small;
}
.service{
  margin-bottom: 1rem;
}
.right-hover{
  transition: all .2s ease-in-out;
}
.hover-contact :hover > .right-hover{
  margin-left: 5px;
  color: #34845c;
}
.hover-contact:hover .no-hover{
  color: gainsboro;
}
.hover-contact{
        display: flex;
    flex-direction: column;
}
.backtoTop{  
  float: right;
  margin-right: 20px;
  margin-top: -43px;
  border: none;
  background: #333;
  position: relative;
  border-radius: 50%;
  color: #fff;
  height: 50px;
  width: 55px;
  transition: all .2s ease-in-out;
}
.backtoTop:hover{
  background: #34845c;
  transform: scale(1.1);
}
/* CAREERS PAGE */
label{
  font-weight: 400;
}
select{
  padding: 10px;
  border-radius: 6px;
}
.row input{
  padding: 10px;
  border-radius: 6px;
}
.group{
  margin-top: 15px;
}
#file{
  border: none;
  padding-left: 0;
}
.text-cv{
  margin: 0;
}
#age{
  width: 100%;
}
.spacing{
  display: none;
}
.md-country-picker-item {
  position: relative;
  line-height: 20px;
  padding: 10px 0 10px 40px;
}

.md-country-picker-flag {
  position: absolute;
  left: 0;
  height: 20px;
}

.mbsc-scroller-wheel-item-2d .md-country-picker-item {
  transform: scale(1.1);
}
#country{
  margin-top: 6px;
}



  /* -----MEDIA QUERIES ---- */
  @media(max-width:1199px){
    #imageCarousel {
        height: 100%;
        width: 100%;
      }
      #mobile-nav{
        display: none;
      } 
    .carousel-item img{
        height: 95vh;
        width: 100%;
        background-position: center;
        background-size: cover;
        object-fit: none;
    }
    .business-cards{
      display: block;
    }
    .big-card1, #c3, #c4, .big-card{
      width: 100%;
    }   
    .small-card1{
      height: 200px;
      width: 100%;
    }
    .card-containerr{
      margin-top: 2rem;
    }
    .card-container{
      width: 100%;
      padding-left: 5rem;
      padding-right: 5rem;
      display: block;
    }
    .card-news{
      padding: 0;
      display: flex;
    }
    .small-card, .equal-card{
      width: 47.33%;
    }
    .slider{
      height: 70vh;
    }
    .right-news{
      padding-top: 7rem !important;
    }
  }

  @media(max-width:1300px){
        /* about page */
        #flex-content{
          flex-direction: column-reverse;
          width: 100%;
        }
        .about-content, .about-rightimg{
          width: 100% !important;
        }
        .aboutsection .row{
          margin: 0;
        }
        
  }
@media(min-width:1200px) and (max-width:1368px){
  .flex-container{
    margin-left: 30px;
  }
  #message{
    width: 400px;
  }
}
  @media(max-width:992px){
    .swiper{
      width: 300px !important;
    }
    #message, #test{
      width: 50%;
    }
    #c3,#c4{
      width: 99%;
    }
    #mobile-nav, .space{
      display: block;
    }
    .navbar{
      display: none;
    }
    .navbar > .container-fluid{
      padding:0 20px;
    }
    .message-card{
      padding-left: 3rem;
      padding-right: 3rem;
      width: 100%;
    }
    footer{
      font-size: small;
    }
    .card-container{
      padding-left: 2rem;
      padding-right: 2rem;
    }
    .card-news{
      padding-left: 0;
      padding-right: 0;
    }
    .offcanvas-body{
      background-color: #333;
      color: white;
    }
    .connect ul, .cooporate ul, .business-sector ul, .mediacentre ul{
      list-style-type: none;
      display: none;
      padding:0 5px;
      line-height: 30px;
    }
    .fa-chevron-down{
      float: right;
    }
    .connect ul li a, .cooporate ul li a, .business-sector ul li a, .mediacentre ul li a{
        color: gainsboro;
        text-decoration: none;
    }
    .connect ul li h5, .cooporate ul li h5, .business-sector ul li h5, .mediacentre ul li h5{
      display: none;
    }
    .btnfooter{
      height: 50px;
      width: 100%;
      border: none;
      background-color: #333;
      color: #fff;
      text-align: left;
    }
    .navline{
      margin: 0;
    }
    .cmd-breadcrumbs{
      margin-top: 55px;
    }
    .slider{
      height: 70vh;
    }
    #overlay{
      display: none;
    }
    .row ul li h5{
      font-size: large;
    }
    .footer{
      font-size: small;
    }
    .footer-end{
      font-size: x-small;
    }
    .banner, .banner-vision, .csr-banner, .human-banner, .banner-infrastructure, .banner-ir, .banner-it,.banner-contact{
      height: 500px !important;
    }
    #csrcard{
      width: 100% !important;
    }
    .card-service2, .card-service3{
      margin-bottom: 20px !important;
    }
    .revamp{
      display: flex;
      gap: 1rem;
    }
    #test{
      width: 65%;
    }
    
  }

  @media(min-width:1199px) and (max-width:1222px){
    .small-card, .equal-card{
      width: 32%;
    }
  }



  @media (max-width: 576px) {
    #mobile-nav{
      display: block;
    }
    .navbar{
      display: none;
    }
    .slider{
      height: 60vh;
    }
    .navbar-brand{
      width: 50%;
    }
   .card-containerr, .flex-container{
    display: block;
   }
   .small-card1{
    margin-top: 30px;
   }
   #message, #test{
    width: 100% !important;
    margin: 0;
  }
  #message{
    height: 200px;
  }
  #test{
    margin: 0;
    margin-top: 15px;
  }
  .block-container, .project2{
    margin-top: 15px;
  }
  .swiper{
    width: 100% !important;
  }
  .card-container{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #visionimg img, #visionimg2 img, .hidden-links{
    display: none;
  }
  #csr-slider{
    width: 100%;
  }
  .csr-slider{
    width: 300px !important;
    right: 50%;
    transform: translate(50%, 0%);
}
.vision{
  display: block;
}
  .project-card{
    display: block;
  }
  .project1, .project2{
    width: 100%;
  }
  .footer, .space, .spacing{
    display: block;
  }
  .footer ul{
    width: max-content;
  }
  .fullpart{
    width: 100%;
  }
  .middlepart{
    float: none;
  }
  .card-news{
    padding: 0;
    display: block;
  }
  .small-card, .equal-card{
    width: 100%;
  }
  .footer-end{
    flex-wrap: wrap-reverse;
    font-size: x-small;
  }
  .banner, .about-rightimg, .banner-vision, .csr-banner, .human-banner, .banner-infrastructure, .banner-ir, .banner-it, .banner-contact{
    height: 300px !important;
  }
  #cmdtext .cmd{
    position: relative;
    bottom: 50%;
    margin-top: -1rem;
    transform: translate(-50%, -50%);
    left: 50%;
  }
  .text p{
    width: 100% !important;
  }
  .cmd-banner{
    height: 800px !important;
    background-position: bottom !important;
  }
  #csrcard{
    width: 100% !important;
  }
  .csr .row{
    gap: 1rem;
  }
  .image-container{
    height: 250px !important;
  }
  .strategic-initiative .row, .service-focus .row, .revamp, .it-service{
    display: flex;
    gap: 1rem;
  }
  .middlepart{
    display: flex;
    flex-flow: wrap;
    font-size: small;
    gap: 1rem;
  }
  .fullpart{
    font-size: small;
  }
  .big-card1{
    height: 350px;
  }
  .contact-flex{
    display: flex;
    flex-direction: column;
  }
  .right-section{
    padding: 0 !important;
  }
  .overlay{
    width: 100%;
  }
  .career-mob{
    flex-direction: column-reverse;
  }
  .career-right{
    margin-bottom: 10px;
  }
  .right-news{
    padding-top: 0 !important;
  }
 
}
  
  


  @media(max-width:325px){
    .csr-slider{
      width: 270px !important;
    }
    .cmd-banner{
      height: 880px !important;
    }
  }

@media(min-width:767px) and (max-width:995px){
  .cmd-breadcrumbs{
    margin-top: 80px;
  }
}

@media(max-width:285px){
  .csr-slider{
    width: 250px !important;
  }
}