.intro {
    padding: 150px 0 50px 0;
  }
  
  .promo-img-1 {
    box-shadow: -5px 10px 25px rgba(8, 15, 26, 0.3);
    transition: all 0.2s ease-out;
    position: relative;
  }
  
  .promo-img-1:hover {
    z-index: 2;
  }
  
  .promo-img-2 {
    box-shadow: -30px 30px 40px rgba(22, 19, 62, 0.2);
    position: absolute;
    top: -74px;
    right: 30px;
    z-index: 1;
  }
  
  .promo-img-1:hover,
  .promo-img-2:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
    -moz-filter: brightness(110%);
  }
  
  @media (max-width: 1366px) {
    .promo-img-1,
    .promo-img-2 {
      width: 60% !important;
    }
  }
  
  @media (max-width: 992px) {
    .intro {
      padding: 30px 0 80px 0;
    }
  }
  
  @media (max-width: 575px) {
    .promo-img {
      width: 50%;
    }
  }
  
  .visionMission {
    background: #24346e;
    position: relative;
  }
  
  .visionMission:before {
    content: "";
    position: absolute;
    background: url("../images/bg-1.jpg") no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.15;
  }
  
  .coreValues {
    background: #24346e;
    position: relative;
  }
  
  .coreValue-card {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 1rem;
    transition: all 0.2s ease-in;
  }
  
  .coreValue-card .icon img {
    width: 80px;
    height: 80px;
  }
  
  .coreValue-card .title {
    margin: 5px 0 15px 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #bfebff;
    transition: all 0.2s ease-in;
  }
  
  .coreValue-card .content {
    color: #fff;
    transition: all 0.2s ease-in;
  }
  
  .coreValue-card:hover {
    background: #fff;
  }
  
  .coreValue-card:hover .title {
    color: #132728 !important;
  }
  
  .coreValue-card:hover .content {
    color: #494a50 !important;
  }
  
  @media (max-width: 575px) {
    .coreValue-card .card-body {
      flex-direction: column;
    }
  }
  
  .whyUs {
    background-color: #f4f8f9;
  }
  
  .whyUs-card {
    border-radius: 20px;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid #e6eaee;
  }
  
  .whyUs-card .card-body {
    padding: 30px;
  }
  
  .whyUs-card .whyUs-thubmnail {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 25px;
    transition: all 0.2s ease;
    background: #fff;
    padding: 15px;
  }
  
  .whyUs-card .whyUs-thubmnail img {
    transition: all 0.2s linear;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .whyUs-card .whyUs-content {
    padding: 20px 0 0 0;
  }
  
  .whyUs-card .whyUs-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #132728;
    margin-bottom: 18px;
  }
  
  .whyUs-card .whyUs-content a {
    font-size: 0.875rem;
    color: #24346e;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    text-transform: uppercase;
  }
  
  .whyUs-card .whyUs-content a i {
    margin-left: 10px;
  }
  
  .whyUs-card:hover {
    background: #fff;
    border: 1px solid #f8ad42;
  }
  
  .whyUs-card:hover .whyUs-thubmnail {
    background: #f4f8f9;
  }
  
  .animate-card {
    box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out,
      opacity 0.2s ease-out;
    transition-delay: 0.1s;
    transform: translateZ(0);
  }
  
  .animate-card:hover {
    opacity: 1 !important;
    box-shadow: rgba(45, 45, 45, 0.05) 0px 2px 2px,
      rgba(49, 49, 49, 0.05) 0px 4px 4px, rgba(42, 42, 42, 0.05) 0px 8px 8px,
      rgba(32, 32, 32, 0.05) 0px 16px 16px, rgba(49, 49, 49, 0.05) 0px 32px 32px,
      rgba(35, 35, 35, 0.05) 0px 64px 64px;
    transform: translate(0, -15px);
    z-index: 9;
  }
  
  .custom-list li {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    position: relative;
    display: flex;
    padding-left: 36px;
    margin-bottom: 20px;
    transition: all 0.2s linear;
  }
  
  .custom-list li:before {
    content: "";
    position: absolute;
    left: 0;
    background-image: url("../images/point-icon.png");
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    transition: all 0.2s linear;
  }
  
  #toTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #24346e;
    opacity: 0.6;
    color: #fff;
    font-size: 2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 99999;
    transition: all 0.2s linear;
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.25);
    -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.25);
    -moz-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.25);
  }
  
  #toTop:hover {
    opacity: 1;
  }
  
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 999;
    background: #4154f1;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #6776f4;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  .visionMission:before {
    content: "";
    position: absolute;
    background: url(../images/bg-1.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.15;
  }
  
  .wood-pattern-bg {
    background: url(../images/bgback.png);
    background-repeat: repeat;
  }
  
  .bg-img {
    background-image: url("../images/bannerdayout.jpg");
    background-position: 50% 40%;
  }
  
  /* 
        .aboutus-banner {
        
          padding-bottom: 100px;
          background-image: url(../images/Group129.png);
          background-size: 100%;
          margin-top: 80px;
          animation: slide 5s linear infinite;
          -webkit-animation: slide 6s linear infinite;
         
        } */
  /* .bgoverlay{
  
          content: '';
          background-color: rgba(19, 39, 40, 0.5);
          height: 100%;
          width: 100%;
          height: 18vh;
  
        } */
  
  .bg_dark {
    background-color: #23346d;
    height: 10vh;
    width: 100%;
  }
  .img_div {
    /* background-color: #bfebff; */
    border-radius: 50px;
  }
  .img_div img {
    height: 100%;
    width: 100%;
    border-radius: 10%;
    border: 1px solid rgb(29, 0, 75 0.6);
  }
  
  .line {
    height: 7px;
    width: 200px;
    background-color: #23346d !important;
    color: #24346e;
    margin: 0px;
    box-shadow: 0px 15px 24px -21px rgba(0, 0, 0, 0.18);
  }
  
  .img_div img {
    box-shadow: 0px 15px 24px -21px rgba(0, 0, 0, 0.4);
  }
  .messege .info-subtitle {
    font-family: nunito;
    color: #051036;
    font-weight: 700;
    font-size: 25px !important;
  }
  .messege .info-subtitle span {
    font-size: 15px;
    font-weight: 500;
  }
  
  .svg-arrow {
    height: 30px;
    position: relative;
    top: -43px;
    left: 130px;
  }
  .svg-arrow2 {
    height: 30px;
    position: relative;
    top: 40px;
    right: 129px;
    transform: rotatey(188deg);
  }
  
  /* .fixed-heading {
    background-color: #ffffff !important;
    position: fixed;
    top: 70px;
    z-index: 99;
    left: 0;
    right: 0;
    box-shadow: 0 2px 17px -1px #38414a26;
  } */
  
  /* @media (max-width: 767px) {
    .fixed-heading {
      background-color: #ffffff !important;
      position: fixed;
      top: 57px;
      z-index: 99;
      left: 0;
      right: 0;
      box-shadow: 0 2px 17px -1px #38414a26;
    }
  } */
  .starting_sec {
    margin-top: 150px;
  }
  