.owl-carousel .owl-stage {
  display: flex;
}

.slow-animation {
  animation-duration: 3s !important;
}

.contents {
  position: relative;
  z-index: 2;
  padding-top: 55px;
  color: #fff;
  height: 640px !important;
}

@media (max-width: 768px) {
  .contents {
    padding-top: 44px;
  }
}

.background-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /*background: linear-gradient(*/
  /*  45deg,*/
  /*  #f7cac9,*/
  /*  #dec3ff,*/
  /*  #a8d8ea,*/
  /*  #ffecd2,*/
  /*  #d4a5a5,*/
  /*  #c2e9fb,*/
  /*  #e8dff5,*/
  /*  #a5dee5*/
  /*);*/
  /*background:linear-gradient(45deg,#010684,#fe6b01,#f0f8ff,#324fb0,#001a7f);*/
  background: linear-gradient(45deg, #010684,#2a3a8c, #121d7acf, #324fb0, #001a7f,#010684);
  /* background: linear-gradient(45deg, #B5F6D4, #F5CBBE, #CDA2FC, #FBF1F8); */
  overflow: hidden;
  background-size: 400% 400%;
  animation: gradientMove 20s ease infinite;
  animation-direction: alternate;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 100%;
  }
}

.background-section .air {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  /* background: url(https://1.bp.blogspot.com/-xQUc-TovqDk/XdxogmMqIRI/AAAAAAAACvI/AizpnE509UMGBcTiLJ58BC6iViPYGYQfQCLcBGAsYHQ/s1600/wave.png); */
  background-size: 1000px 250px;
}

.background-section .air.air1 {
  animation: wave 20s linear infinite;
  z-index: 1000;
  opacity: 0.03;
  animation-delay: 0s;
  top: 0;
}

section .air.air2 {
  animation: wave2 15s linear infinite;
  z-index: 999;
  opacity: 0.1;
  animation-delay: -5s;
  bottom: 330px;
}

section .air.air3 {
  animation: wave 30s linear infinite;
  z-index: 998;
  opacity: 0.09;
  animation-delay: -2s;
  bottom: 0px;
}

.background-section .air.air4 {
  animation: wave2 30s linear infinite;
  z-index: 997;
  opacity: 0.03;
  animation-delay: -5s;
  bottom: 0px;
}

@keyframes wave {
  0% {
    background-position-x: 0px;
  }

  100% {
    background-position-x: 1000px;
  }
}

@keyframes wave2 {
  0% {
    background-position-x: 0px;
  }

  100% {
    background-position-x: -1000px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&display=swap");

.dark-container {
  background: black;

  .main-box {
    &::before {
      color: rgb(89, 89, 89);
    }

    &:hover {
      &::before {
        color: white;
      }
    }
  }
}

.main-box {
  background: rgb(247, 247, 247);
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  counter-increment: myCounter;

  &::before {
    content: counter(myCounter);
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: rgb(202, 202, 202);
  }

  &:hover {
    &::before {
      color: black;
      font-weight: bold;
    }
  }
}

.grid {
  height: unset;
  background: rgb(20, 20, 20);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}
.card7 {
  width: 340px;
  height: 300px;
  border-radius: 32px;
  padding: 3px;
  position: relative;
  transition: all 0.5s ease-in-out;
  margin-left:20px;
  
  /* add by satyendra start */
/* Default width (mobile view) */
/*.card7 {*/
/*  width: 295px;*/
/*  height: 300px;*/
/*  border-radius: 32px;*/
/*  padding: 3px;*/
/*  position: relative;*/
/*  transition: all 0.5s ease-in-out;*/
/*  margin: 0 auto;*/
/*}*/

/* For Desktop  media query */
/*@media (min-width: 768px) {*/
/*  .card7 {*/
/*    width: 340px; */
/*    height: 300px;*/
/*    margin-left: 20px;*/
/*  }*/
/*}*/
/* add by satyendra end */
  
  
  
  .profile-pic {
    position: absolute;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    top: 3px;
    left: 3px;
    border-radius: 29px;
    z-index: 1;
    border: 0px solid #fcd0ce;
    overflow: hidden;
    transition: all 0.5s ease-in-out 0.2s, z-index 0.5s ease-in-out 0.2s;

    img {
      object-fit: contain;
      width: 43%;
      height: 96%;
      object-position: 0px 0px;
      transition: all 0.5s ease-in-out 0s;
      margin-left: 25px;
      margin-top:-4px;
    }
  }

  .bottom {
    position: absolute;
    bottom: 3px;
    left: 3px;
    right: 3px;
    background: #fe6a00;
    top: 20%;
    border-radius: 29px;
    border-top-left-radius: 70px;
    z-index: 2;
    box-shadow: #604b4a30 0px 5px 5px 0px inset;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;

    .content {
      position: absolute;
      bottom: 5px;
      left: 1.5rem;
      right: 1.5rem;
      height: 170px;

      .name {
        display: block;
        font-size: 1.2rem;
        color: white;
        font-weight: 700;
        /*text-shadow: 1px 1px 2px #7e7b7b;*/
      }

      .about-me {
        display: block;
        font-size: 0.9rem;
        color: white;
      }
    }

    .bottom-bottom {
      position: absolute;
      bottom: 10px;
      left: 1.5rem;
      right: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;

      .social-links-container {
        display: flex;
        gap: 1rem;

        svg {
          height: 20px;
          fill: white;
          filter: drop-shadow(0 5px 5px #a5848222);

          &:hover {
            fill: #fcd0ce;
            transform: scale(1.2);
          }
        }
      }

      .button {
        height: 35px;
        width: 84px;
        background: white;
        color: #fcd0ce;
        border: none;
        border-radius: 20px;
        font-size: 0.6rem;
        box-shadow: #a5848222 0px 5px 5px 0px;

        &:hover {
          background: #fcd0ce;
          color: white;
        }
      }
    }
  }

  /* &:hover {
        border-top-left-radius: 55px;

        .bottom {
            top: 20%;
            border-radius: 80px 29px 29px 29px;
            transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s;
        } */

  .profile-pic {
    width: 100px;
    height: 100px;
    aspect-ratio: 1;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    z-index: 3;
    border: 7px solid #e96f51;
    box-shadow: #604b4a30 0px 5px 5px 0px;
    transition: all 0.5s ease-in-out, z-index 0.5s ease-in-out 0.1s;

    &:hover {
      transform: scale(1);
      border-radius: 0px;
    }

    img {
      transform: scale(2.5);
      object-position: 0px 25px;
      transition: all 0.5s ease-in-out 0.5s;
    }
  }
}

.card8 {
  width: 260px;
  perspective: 1000px;

  & * {
    font-family: "Jost", sans-serif;
  }

  &:nth-child(2) {
    filter: hue-rotate(90deg);
  }

  &:nth-child(3) {
    filter: hue-rotate(300deg);
  }

  &:nth-child(4) {
    filter: hue-rotate(150deg);
  }

  .card-main {
    padding-top: 100px;
    transform-style: preserve-3d;
    background-image: url("https://images.pexels.com/photos/1629236/pexels-photo-1629236.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-position: center center;
    width: 100%;
    transition: all 0.5s ease-in-out;
    border-radius: 10px;

    &:hover {
      background-position: 80% 20%;
      transform: rotate3d(0.5, 1, 0, 30deg);
    }

    .content-box {
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.811);
      border-radius: 0px 0px 10px 10px;
      box-shadow: rgba(0, 115, 255, 0.925) 0px 20px 50px -25px;
      transition: all 0.5s ease-in-out;
      padding: 50px 25px 25px 25px;
      transform-style: preserve-3d;

      .card-title {
        color: white;
        font-size: 25px;
        font-weight: 900;
        transition: all 0.5s ease-in-out;
        transform: translate3d(0px, 0px, 20px);

        &:hover {
          transform: translate3d(0px, 0px, 50px);
        }
      }

      .card-content {
        padding-top: 15px;
        font-size: 12px;
        color: rgb(185, 185, 185);
        transition: all 0.5s ease-in-out;
        transform: translate3d(0px, 0px, 20px);

        &:hover {
          transform: translate3d(0px, 0px, 50px);
        }
      }

      .see-more {
        display: block;
        font-weight: 900;
        font-size: 11px;
        text-transform: uppercase;
        color: rgb(0, 136, 255);
        padding-top: 15px;
        transition: all 0.5s ease-in-out;
        transform: translate3d(0px, 0px, 20px);
        cursor: pointer;

        &:hover {
          transform: translate3d(0px, 0px, 50px);
        }
      }
    }

    .date-box {
      position: absolute;
      top: 75px;
      left: 25px;
      height: 60px;
      width: 60px;
      background-color: rgb(0, 0, 0);
      border-radius: 10px;
      padding: 10px;
      box-shadow: rgb(0, 102, 255) 0px 20px 60px 0px,
        rgb(0, 200, 255) 0px 18px 36px -18px;
      transform: translate3d(0px, 0px, 50px);

      span {
        display: block;
        text-align: center;
      }

      .month {
        color: white;
        font-size: 11px;
        font-weight: 700;
      }

      .date {
        font-size: 20px;
        font-weight: 900;
        color: rgb(0, 136, 255);
      }
    }
  }
}

.card9 {
  position: relative;
  height: 300px;
  width: 230px;

  &:nth-child(2) {
    filter: hue-rotate(300deg) brightness(1.3);
  }

  &:nth-child(3) {
    filter: hue-rotate(200deg) brightness(1.5);
  }

  &:nth-child(4) {
    filter: hue-rotate(60deg) brightness(3);
  }

  .boxshadow {
    position: absolute;
    height: 100%;
    width: 100%;
    border: 1px solid red;
    transform: scale(0.8);
    box-shadow: rgba(255, 0, 0, 1) 0px 30px 70px 0px;
    transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }

  .main {
    width: 230px;
    height: 300px;
    overflow: hidden;
    background: red;
    background: linear-gradient(
      0deg,
      rgb(62, 0, 0) 0%,
      rgba(255, 0, 0, 1) 60%,
      rgb(62, 0, 0) 100%
    );
    position: relative;
    clip-path: polygon(
      0 0,
      100% 0,
      100% 40px,
      100% calc(100% - 40px),
      calc(100% - 40px) 100%,
      40px 100%,
      0 calc(100% - 40px)
    );
    box-shadow: rgba(255, 0, 0, 1) 0px 7px 29px 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);

    .top {
      position: absolute;
      top: 0px;
      left: 0;
      width: 0px;
      height: 0px;
      z-index: 2;
      border-top: 115px solid black;
      border-left: 115px solid transparent;
      border-right: 115px solid transparent;
      transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    }

    .side {
      position: absolute;
      width: 100%;
      top: 0;
      transform: translateX(-50%);
      height: 101%;
      background: black;
      clip-path: polygon(0% 0%, 50% 0, 95% 45%, 100% 100%, 0% 100%);
      transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 1s;
    }

    .left {
      left: 0;
    }

    .right {
      right: 0;
      transform: translateX(50%) scale(-1, 1);
    }

    .title {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 90px;
      font-weight: bold;
      font-size: 25px;
      opacity: 0;
      z-index: -1;
      font-family: "Jost", sans-serif;
      transition: all 0.2s ease-out 0s;
    }

    .button-container {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);

      .button {
        position: absolute;
        transform: translateX(-50%);
        padding: 5px 10px;
        clip-path: polygon(0 0, 100% 0, 81% 100%, 21% 100%);
        background: black;
        border: none;
        color: white;
        display: grid;
        place-content: center;
        transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);

        .svg {
          width: 15px;
          transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        }

        &:nth-child(1) {
          bottom: 300px;
          transition-delay: 0.4s;
        }

        &:nth-child(2) {
          bottom: 300px;
          transition-delay: 0.6s;
        }

        &:nth-child(3) {
          bottom: 300px;
          transition-delay: 0.8s;
        }

        &:hover {
          .svg {
            transform: scale(1.2);
          }
        }

        &:active {
          .svg {
            transform: scale(0.7);
          }
        }
      }
    }
  }

  &:hover {
    &:hover {
      .main {
        transform: scale(1.1);

        .top {
          top: -50px;
        }

        .left {
          left: -50px;
          transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.1s;
        }

        .right {
          right: -50px;
          transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.1s;
        }

        .title {
          opacity: 1;
          transition: all 0.2s ease-out 1.3s;
        }

        .button-container {
          .button {
            &:nth-child(1) {
              bottom: 80px;
              transition-delay: 0.8s;
            }

            &:nth-child(2) {
              bottom: 40px;
              transition-delay: 0.6s;
            }

            &:nth-child(3) {
              bottom: 0;
              transition-delay: 0.4s;
            }
          }
        }
      }
    }
  }
}

.card10 {
  filter: drop-shadow(rgb(255, 100, 0) 0px 0px 1px);

  & * {
    font-family: "Jost", sans-serif;
  }

  .card-main {
    background: linear-gradient(
      240deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(36, 36, 36, 1) 100%
    );
    width: 300px;
    clip-path: polygon(
      0 0,
      60% 0,
      calc(60% + 10px) 10px,
      90% 10px,
      calc(90% + 10px) 0,
      100% 0,
      100% 35%,
      calc(100% - 10px) calc(35% + 10px),
      calc(100% - 10px) 70%,
      100% calc(70% + 10px),
      100% calc(100% - 30px),
      calc(100% - 30px) 100%,
      0 100%,
      0 82%,
      10px calc(82% - 10px),
      10px calc(25%),
      0 calc(25% - 10px)
    );
    transition: all 0.2s linear;
    filter: drop-shadow(rgb(255, 0, 0) 0px 0px 10px);

    &:hover {
      transform: scale(1.05);
    }

    .card-img-shadow {
      filter: drop-shadow(rgb(255, 0, 0) 0px 0px 10px);

      img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        margin-bottom: 30px;
        -webkit-clip-path: polygon(
          0 0,
          100% 0,
          100% 100%,
          30px 100%,
          0 calc(100% - 30px)
        );
        clip-path: polygon(
          0 0,
          100% 0,
          100% 100%,
          30px 100%,
          0 calc(100% - 30px)
        );
      }
    }

    .card-content {
      margin: 0px 30px;
      padding-bottom: 20px;
    }

    h2 {
      color: rgb(255, 128, 0);
      text-align: center;
    }

    p {
      margin: 25px 0px;
      letter-spacing: 2px;
      color: white;
    }

    .button-shadow {
      filter: drop-shadow(rgb(255, 64, 0) 0px 0px 5px);
      transition: all 0.2s ease-in;

      &:hover {
        filter: drop-shadow(rgb(255, 64, 0) 0px 0px 10px);
      }

      .card-button {
        width: 100%;
        border: none;
        text-align: center;
        padding: 10px 0px;
        background: linear-gradient(
          45deg,
          rgb(255, 30, 0) 0%,
          rgb(255, 89, 0) 100%
        );
        -webkit-clip-path: polygon(
          0 0,
          100% 0%,
          100% calc(100% - 15px),
          calc(100% - 15px) 100%,
          0 100%
        );
        clip-path: polygon(
          0 0,
          100% 0%,
          100% calc(100% - 15px),
          calc(100% - 15px) 100%,
          0 100%
        );
        color: black;
        font-weight: 600;
        transition: all 0.2s ease-in;

        &:hover {
          color: white;
        }
      }
    }
  }
}

@keyframes opacity {
  0% {
    border-right: 1px solid transparent;
  }

  10% {
    border-right: 1px solid #bd9f67;
  }

  80% {
    border-right: 1px solid #bd9f67;
  }

  100% {
    border-right: 1px solid transparent;
  }
}

@keyframes trail {
  0% {
    background: linear-gradient(
      90deg,
      rgba(189, 159, 103, 0) 90%,
      rgba(189, 159, 103, 1) 100%
    );
    opacity: 0;
  }

  30% {
    background: linear-gradient(
      90deg,
      rgba(189, 159, 103, 0) 70%,
      rgba(189, 159, 103, 1) 100%
    );
    opacity: 1;
  }

  70% {
    background: linear-gradient(
      90deg,
      rgba(189, 159, 103, 0) 70%,
      rgba(189, 159, 103, 1) 100%
    );
    opacity: 1;
  }

  95% {
    background: linear-gradient(
      90deg,
      rgba(189, 159, 103, 0) 90%,
      rgba(189, 159, 103, 1) 100%
    );
    opacity: 0;
  }
}

.font-mulish {
  font-family: "Mulish", sans-serif !important;
  /* font-weight: 800 !important; */
  /* font-size: 32px !important; */
}

.font-mulish1 {
  font-family: "Mulish", sans-serif !important;
  /* font-weight: 500; */
}

.process-box {
  background: #fff;
  padding: 17px;
  border-radius: 15px;
  position: relative;
  box-shadow: 2px 2px 7px 0 #00000057;
}

@media (max-width: 768px) {
  .process-box {
    margin-top: 30px;
  }

  .font-mulish {
    font-family: "Mulish", sans-serif !important;
    /* font-weight: 800 !important; */
    font-size: 22px !important;
  }
}

.process-left:after {
  content: "";
  border-top: 15px solid #ffffff;
  border-bottom: 15px solid #ffffff;
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff;
  display: inline-grid;
  position: absolute;
  right: -15px;
  top: 42%;
  transform: rotate(45deg);
  box-shadow: 3px -2px 3px 0px #00000036;
  z-index: 1;
}

.process-right:after {
  content: "";
  border-top: 15px solid #ffffff00;
  border-bottom: 15px solid #ffffff;
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff00;
  display: inline-grid;
  position: absolute;
  left: -15px;
  top: 43%;
  transform: rotate(45deg);
  box-shadow: -1px 1px 3px 0px #0000001a;
  z-index: 1;
}

.process-step {
  background: #fe6a00;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  color: #fff;
  height: 100%;
  padding-top: 8px;
  position: relative;
  top: -26px;
  border-radius: 0px 0px 10px 10px;
  box-shadow: -6px 8px 0px 0px #00000014;
}

.process-point-right {
  background: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 8px solid #fe6a00;
  box-shadow: 0 0 0px 4px #e2e2e2b5;
  margin: auto 0;
  position: absolute;
  bottom: 29px;
  left: -63px;
}

.process-point-right:before {
  content: "";
  height: 124px;
  width: 11px;
  background: #e2e2e2b5;
  display: inline-grid;
  transform: rotate(36deg);
  position: relative;
  left: -50px;
  top: -0px;
}

.process-point-left {
  background: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 8px solid #fe6a00;
  box-shadow: 0 0 0px 4px #e2e2e2b5;
  margin: auto 0;
  position: absolute;
  bottom: 29px;
  right: -63px;
}

.process-point-left:before {
  content: "";
  height: 124px;
  width: 11px;
  background: #e2e2e2b5;
  display: inline-grid;
  transform: rotate(-38deg);
  position: relative;
  left: 50px;
  top: 0px;
}

.process-last:before {
  display: none;
}

.process-box p {
  z-index: 9;
}

.process-step p {
  font-size: 20px;
}

.process-step h2 {
  font-size: 39px;
}

.process-step:after {
  content: "";
  border-top: 8px solid #04889800;
  border-bottom: 8px solid #fe6a00;
  border-left: 8px solid #04889800;
  border-right: 8px solid #fe6a00;
  display: inline-grid;
  position: absolute;
  left: -16px;
  top: 0;
}

.process-step:before {
  content: "";
  border-top: 8px solid #ff000000;
  border-bottom: 8px solid #fe6a00;
  border-left: 8px solid #fe6a00;
  border-right: 8px solid #ff000000;
  display: inline-grid;
  position: absolute;
  right: -16px;
  top: 0;
}

.process-line-l {
  background: white;
  height: 4px;
  position: absolute;
  width: 136px;
  right: -153px;
  top: 54px;
  z-index: 9;
}

.process-line-r {
  background: white;
  height: 4px;
  position: absolute;
  width: 117px;
  left: -136px;
  top: 56px;
  z-index: 9;
}

.body-color {
  background-color: #eee !important;
}

nav > .nav.nav-tabs {
  border: none;
  color: #fff;
  background: #272e38;
  border-radius: 0;
}

nav > div a.nav-item.nav-link,
nav > div a.nav-item.nav-link.active {
  border: none;
  padding: 18px 25px;
  color: #fff;
  background: #272e38;
  border-radius: 0;
}

nav > div a.nav-item.nav-link.active:after {
  content: "";
  position: relative;
  bottom: -60px;
  left: -10%;
  border: 15px solid transparent;
  border-top-color: #e74c3c;
}

.tab-content {
  background: #fdfdfd;
  line-height: 25px;
  border: 1px solid #ddd;
  border-top: 5px solid #e74c3c;
  border-bottom: 5px solid #e74c3c;
  padding: 30px 25px;
}

nav > div a.nav-item.nav-link:hover,
nav > div a.nav-item.nav-link:focus {
  border: none;
  background: #e74c3c;
  color: #fff;
  border-radius: 0;
  transition: background 0.2s linear;
}

.box-container {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  margin-top: 20px;
  margin-left: 30px;
  margin-right: 30px;
  width: 69%;
}

.box {
  flex: 1;
  padding: 20px;
  background-color: #eef1ef;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.box h5 {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .box-container {
    flex-direction: column;
  }
}

/* scroller hero section old */
/* .scroller {
    max-height: 585px;
    overflow: hidden;
    margin-right: 1rem;
}

.scroller__inner {
    display: flex;
    flex-direction: column;
    padding-block: 1rem;
    gap: 1rem;
}

.scroller[data-animated="true"] .scroller__inner {
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="up"] {
    --_animation-direction: forwards;
}

.scroller[data-direction="down"] {
    --_animation-direction: reverse;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 10s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 20s;
}

@keyframes scroll {
    to {
        transform: translateY(calc(-50% - 0.5rem));
    }
}

.images1 {
    max-height: 200px;
    max-width: 250px;
    border-radius: 4px;
    object-fit: cover;
    transition: 300ms;
    filter: grayscale(0.2);
    cursor: pointer;
}

.scroller[data-animated="true"] .scroller__inner:has(img:hover, img:active, img:focus) {
    animation-play-state: paused;
}
 */

.scroller {
  max-height: 585px;
  overflow: hidden;
  margin-right: 1rem;
}

.scroller__inner {
  display: flex;
  flex-direction: column;
  padding-block: 1rem;
  gap: 1rem;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.scroller[data-animated="true"] .scroller__inner {
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="up"] {
  --_animation-direction: forwards;
}

.scroller[data-direction="down"] {
  --_animation-direction: reverse;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 10s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 20s;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(calc(-100% + 585px));
  }

  100% {
    transform: translateY(0);
  }
}

/* Image styling */
.images1 {
  max-height: 200px;
  max-width: 250px;
  border-radius: 4px;
  object-fit: cover;
  transition: 300ms;
  filter: grayscale(0.2);
  cursor: pointer;
}

/* Pause and reverse the animation on hover */
.scroller[data-animated="true"] .scroller__inner:hover {
  animation-play-state: paused;
  animation-direction: reverse;
  transition: all 0.5s ease-in-out;
}

/* Resume animation smoothly after hover */
.scroller[data-animated="true"] .scroller__inner:hover:out {
  animation-play-state: running;
  animation-direction: forwards;
  transition: all 0.5s ease-in-out;
}

.style-3 {
  padding-bottom: 50px !important;
}

.homePageBannerSilder:before {
  content: "";
  position: absolute;
  background: #fff;
  opacity: 1;
  filter: blur(60px);
  width: 200%;
  height: 35%;
  top: -134px;
  z-index: 9;
  right: -49px;
}

@media only screen and (max-width: 768px) {
  .homePageBannerSilder:before {
    content: "";
    position: absolute;
    background: none;
    opacity: 1;
    filter: blur(12px) !important;
    width: 120%;
    height: 9%;
    top: 325px;
    z-index: 9;
    left: -16px;
  }
}
clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%);
/*@media (max-width: 768px) {*/
/*      .homePageBannerSilder:before {*/
/*        content: "";*/
/*        position: absolute;*/
/*        background: aliceblue;*/
/*        opacity: 1;*/
/*        filter: blur(1000px);*/
/*        width: 120%;*/
/*        height: 30%;*/
/*        top: -100px;*/
/*        z-index: 9;*/
/*      }*/
/*      .homePageBannerSilder {*/
/*        position: relative; */
/*      }*/
/*    }*/

/* .homePageBannerSilder:after {
    transform: rotate(-3deg);
    bottom: -70px;
    right: -5px;
    z-index: 0;
    width: 104%;
    height: 97px;
    background: #fafafa;
    position: absolute;
    content: "";
} */

.homePageBannerSilder:after {
  transform: rotate(-3deg);
  bottom: -90px;
  right: -6px;
  z-index: 0;
  width: 104%;
  height: 140px;
  background: #fafafa;
  position: absolute;
  content: "";
}

@media (max-width: 768px) {
  /* .homePageBannerSilder:after {
        transform: rotate(-3deg);
        bottom: -59px;
        right: -18px;
        z-index: 0;
        width: 112%;
        height: 100px;
        background: #fafafa;
        position: absolute;
        content: "";
    } */

  .homePageBannerSilder:after {
    transform: rotate(-3deg);
    bottom: -61px;
    right: -18px;
    z-index: 0;
    width: 118%;
    height: 18px;
    background: #fafafa;
    position: absolute;
    content: "";
  }

  .images1 {
    max-height: 200px;
    max-width: 141px;
    border-radius: 4px;
    object-fit: cover;
    transition: 300ms;
    filter: grayscale(0.2);
    cursor: pointer;
  }
}

.p-weight {
  font-weight: 500 !important;
  font-size: medium !important;
}

.h5-weight {
  font-weight: 700;
  font-size: larger;
}

.shadow-text {
  color: #000;
  /* text-shadow: 1px 1px 2px #7e7b7b; */
}

/* animate border by satyendra */
.animate-border {
  position: relative;
  display: block;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, #b10f3c 0%, #f69321 63%, #f69321 100%);
  overflow: hidden;
}

.animate-border:after {
  position: absolute;
  content: "";
  width: 35px;
  width: 150px;
  height: 3px;
  bottom: 0;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  animation: animborder 4s linear infinite;
}

@keyframes animborder {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(150px);
  }
}

/* animate border by satyendra end*/
.loader51 {
  position: relative;
  width: 523px;
  height: 3px;
  background: #fe6a00;
  text-align: center;
  left: 295px;
}

.loader51::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  background: #010684;
  transform-origin: left;
  animation: animte51 8s linear infinite;
}

@keyframes animte51 {
  0%,
  20% {
    transform: scaleX(0);
  }

  40% {
    transform: scaleX(1);
    transform-origin: left;
  }

  60% {
    transform: scaleX(1);
    transform-origin: right;
  }

  80%,
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.loader51::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  left: 0px;
  height: 10px;
  background: #010684;
  border-radius: 50%;
  animation: animateDot51 8s linear infinite;
}

@keyframes animateDot51 {
  0% {
    transform: translateY(-50%) scale(0);
  }

  5% {
    transform: translateY(-50%) scale(1);
  }

  15%,
  20% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
  }

  40% {
    transform: translateY(-50%) translateX(523px) scale(1);
    -webkit-transform: translateY(-50%) translateX(523px) scale(1);
    -moz-transform: translateY(-50%) translateX(523px) scale(1);
    -ms-transform: translateY(-50%) translateX(523px) scale(1);
    -o-transform: translateY(-50%) translateX(523px) scale(1);
  }

  80% {
    transform: translateY(-50%) translateX(523px) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
    -webkit-transform: translateY(-50%) translateX(523px) scale(1);
    -moz-transform: translateY(-50%) translateX(523px) scale(1);
    -ms-transform: translateY(-50%) translateX(523px) scale(1);
    -o-transform: translateY(-50%) translateX(523px) scale(1);
  }

  95% {
    transform: translateY(-50%) translateX(660px) scale(1);
    box-shadow: none;
    -webkit-transform: translateY(-50%) translateX(523px) scale(1);
    -moz-transform: translateY(-50%) translateX(523px) scale(1);
    -ms-transform: translateY(-50%) translateX(523px) scale(1);
    -o-transform: translateY(-50%) translateX(523px) scale(1);
  }

  100% {
    transform: translateY(-50%) translateX(523px) scale(0);
    -webkit-transform: translateY(-50%) translateX(523px) scale(0);
    -moz-transform: translateY(-50%) translateX(523px) scale(0);
    -ms-transform: translateY(-50%) translateX(523px) scale(0);
    -o-transform: translateY(-50%) translateX(523px) scale(0);
  }
}
/* Animate Loader1 Start */
.loader14 {
  position: relative;
  width: 468px;
  height: 3px;
  background: #fe6a00;
}

.loader14::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #010684;
  transform-origin: left;
  animation: animte14 8s linear infinite;
}

@keyframes animte14 {
  0%,
  20% {
    transform: scaleX(0);
  }

  40% {
    transform: scaleX(1);
    transform-origin: left;
  }

  40.000001%,
  60% {
    transform: scaleX(1);
    transform-origin: right;
  }

  80%,
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.loader14::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  background: #010684;
  border-radius: 50%;
  animation: animateDot14 8s linear infinite;
}

@keyframes animateDot14 {
  0% {
    transform: translateY(-50%) scale(0);
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
  }

  5% {
    transform: translateY(-50%) scale(1);
  }

  15%,
  20% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
  }

  40% {
    transform: translateY(-50%) translateX(468px) scale(1);
    -webkit-transform: translateY(-50%) translateX(468px) scale(1);
    -moz-transform: translateY(-50%) translateX(468px) scale(1);
    -ms-transform: translateY(-50%) translateX(468px) scale(1);
    -o-transform: translateY(-50%) translateX(468px) scale(1);
  }

  80% {
    transform: translateY(-50%) translateX(468px) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
    -webkit-transform: translateY(-50%) translateX(468px) scale(1);
    -moz-transform: translateY(-50%) translateX(468px) scale(1);
    -ms-transform: translateY(-50%) translateX(468px) scale(1);
    -o-transform: translateY(-50%) translateX(468px) scale(1);
  }

  95% {
    transform: translateY(-50%) translateX(468px) scale(1);
    box-shadow: none;
    -webkit-transform: translateY(-50%) translateX(468px) scale(1);
    -moz-transform: translateY(-50%) translateX(468px) scale(1);
    -ms-transform: translateY(-50%) translateX(468px) scale(1);
    -o-transform: translateY(-50%) translateX(468px) scale(1);
  }

  100% {
    transform: translateY(-50%) translateX(468px) scale(0);
    -webkit-transform: translateY(-50%) translateX(468px) scale(0);
    -moz-transform: translateY(-50%) translateX(468px) scale(0);
    -ms-transform: translateY(-50%) translateX(468px) scale(0);
    -o-transform: translateY(-50%) translateX(468px) scale(0);
  }
}
/* Animate Loader12 Start */
.loader12 {
  position: relative;
  width: 530px;
  height: 3px;
  background: #fe6a00;
}

.loader12::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #010684;
  transform-origin: left;
  animation: animte 8s linear infinite;
}

@keyframes animte {
  0%,
  20% {
    transform: scaleX(0);
  }

  40% {
    transform: scaleX(1);
    transform-origin: left;
  }

  40.000001%,
  60% {
    transform: scaleX(1);
    transform-origin: right;
  }

  80%,
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.loader12::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  background: #010684;
  border-radius: 50%;
  animation: animateDot12 8s linear infinite;
}

@keyframes animateDot12 {
  0% {
    transform: translateY(-50%) scale(0);
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
  }

  5% {
    transform: translateY(-50%) scale(1);
  }

  15%,
  20% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
  }

  40% {
    transform: translateY(-50%) translateX(530px) scale(1);
    -webkit-transform: translateY(-50%) translateX(530px) scale(1);
    -moz-transform: translateY(-50%) translateX(530px) scale(1);
    -ms-transform: translateY(-50%) translateX(530px) scale(1);
    -o-transform: translateY(-50%) translateX(530px) scale(1);
  }

  80% {
    transform: translateY(-50%) translateX(530px) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
    -webkit-transform: translateY(-50%) translateX(530px) scale(1);
    -moz-transform: translateY(-50%) translateX(530px) scale(1);
    -ms-transform: translateY(-50%) translateX(530px) scale(1);
    -o-transform: translateY(-50%) translateX(530px) scale(1);
  }

  95% {
    transform: translateY(-50%) translateX(530px) scale(1);
    box-shadow: none;
    -webkit-transform: translateY(-50%) translateX(530px) scale(1);
    -moz-transform: translateY(-50%) translateX(530px) scale(1);
    -ms-transform: translateY(-50%) translateX(530px) scale(1);
    -o-transform: translateY(-50%) translateX(530px) scale(1);
  }

  100% {
    transform: translateY(-50%) translateX(530px) scale(0);
    -webkit-transform: translateY(-50%) translateX(530px) scale(0);
    -moz-transform: translateY(-50%) translateX(530px) scale(0);
    -ms-transform: translateY(-50%) translateX(530px) scale(0);
    -o-transform: translateY(-50%) translateX(530px) scale(0);
  }
}
/* Mobile Responsive */
@media (max-width: 575.98px) {
  .loader1 {
    position: relative;
    width: 350px;
    height: 3px;
    background: #fe6a00;
    left: 4px;
    text-align: left;
  }

  .loader1::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #010684;
    transform-origin: left;
    animation: animte 8s linear infinite;
  }

  @keyframes animte {
    0%,
    20% {
      transform: scaleX(0);
    }

    40% {
      transform: scaleX(1);
      transform-origin: left;
    }

    40.000001%,
    60% {
      transform: scaleX(1);
      transform-origin: right;
    }

    80%,
    100% {
      transform: scaleX(0);
      transform-origin: right;
    }
  }

  .loader1::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 10px;
    height: 10px;
    background: #010684;
    border-radius: 50%;
    animation: animateDot 8s linear infinite;
  }

  @keyframes animateDot {
    0% {
      transform: translateY(-50%) scale(0);
    }

    5% {
      transform: translateY(-50%) scale(1);
    }

    15%,
    20% {
      transform: translateY(-50%) scale(1);
      box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
        0 0 40px #010684, 0 0 60px #010684;
    }

    40% {
      transform: translateY(-50%) translateX(350px) scale(1);
    }

    80% {
      transform: translateY(-50%) translateX(350px) scale(1);
      box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
        0 0 40px #010684, 0 0 60px #010684;
    }

    95% {
      transform: translateY(-50%) translateX(350px) scale(1);
      box-shadow: none;
    }

    100% {
      transform: translateY(-50%) translateX(350px) scale(0);
    }
  }

  .loader2 {
    position: relative;
    width: 347px;
    height: 3px;
    background: #fe6a00;
    text-align: center;
    left: 0px;
  }

  .loader2::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    background: #010684;
    transform-origin: left;
    animation: animte1 8s linear infinite;
  }

  @keyframes animte1 {
    0%,
    20% {
      transform: scaleX(0);
    }

    40% {
      transform: scaleX(1);
      transform-origin: left;
    }

    60% {
      transform: scaleX(1);
      transform-origin: right;
    }

    80%,
    100% {
      transform: scaleX(0);
      transform-origin: right;
    }
  }

  .loader2::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 10px;
    left: 0px;
    height: 10px;
    background: #010684;
    border-radius: 50%;
    animation: animateDot1 8s linear infinite;
  }

  @keyframes animateDot1 {
    0% {
      transform: translateY(-50%) scale(0);
    }

    5% {
      transform: translateY(-50%) scale(1);
    }

    15%,
    20% {
      transform: translateY(-50%) scale(1);
      box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
        0 0 40px #010684, 0 0 60px #010684;
    }

    40% {
      transform: translateY(-50%) translateX(347px) scale(1);
      /* Match the full width */
    }

    80% {
      transform: translateY(-50%) translateX(347px) scale(1);
      box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
        0 0 40px #010684, 0 0 60px #010684;
    }

    95% {
      transform: translateY(-50%) translateX(347px) scale(1);
      box-shadow: none;
    }

    100% {
      transform: translateY(-50%) translateX(485px) scale(0);
    }
  }
}

/* Animate Loader1 End */
.loader20 {
  position: relative;
  width: 423px;
  height: 3px;
  background: #fe6a00;
  text-align: center;
  left: 318px;
}

.loader20::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  background: #010684;
  transform-origin: left;
  animation: animte20 8s linear infinite;
  -webkit-animation: animte20 8s linear infinite;
}

@keyframes animte20 {
  0%,
  20% {
    transform: scaleX(0);
  }

  40% {
    transform: scaleX(1);
    transform-origin: left;
  }

  60% {
    transform: scaleX(1);
    transform-origin: right;
  }

  80%,
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.loader20::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  left: 0px;
  height: 10px;
  background: #010684;
  border-radius: 50%;
  animation: animateDot20 8s linear infinite;
  -webkit-animation: animateDot20 8s linear infinite;
}

@keyframes animateDot20 {
  0% {
    transform: translateY(-50%) scale(0);
  }

  5% {
    transform: translateY(-50%) scale(1);
  }

  15%,
  20% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
  }

  40% {
    transform: translateY(-50%) translateX(423px) scale(1);
    -webkit-transform: translateY(-50%) translateX(423px) scale(1);
    -moz-transform: translateY(-50%) translateX(423px) scale(1);
    -ms-transform: translateY(-50%) translateX(423px) scale(1);
    -o-transform: translateY(-50%) translateX(423px) scale(1);
  }

  80% {
    transform: translateY(-50%) translateX(423px) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
    -webkit-transform: translateY(-50%) translateX(423px) scale(1);
    -moz-transform: translateY(-50%) translateX(423px) scale(1);
    -ms-transform: translateY(-50%) translateX(423px) scale(1);
    -o-transform: translateY(-50%) translateX(423px) scale(1);
  }

  95% {
    transform: translateY(-50%) translateX(423px) scale(1);
    box-shadow: none;
    -webkit-transform: translateY(-50%) translateX(423px) scale(1);
    -moz-transform: translateY(-50%) translateX(423px) scale(1);
    -ms-transform: translateY(-50%) translateX(423px) scale(1);
    -o-transform: translateY(-50%) translateX(423px) scale(1);
  }

  100% {
    transform: translateY(-50%) translateX(423px) scale(0);
    -webkit-transform: translateY(-50%) translateX(423px) scale(0);
    -moz-transform: translateY(-50%) translateX(423px) scale(0);
    -ms-transform: translateY(-50%) translateX(423px) scale(0);
    -o-transform: translateY(-50%) translateX(423px) scale(0);
  }
}

.loader3 {
  position: relative;
  width: 490px;
  height: 3px;
  background: #fe6a00;
  text-align: center;
  left: 122px;
}

.loader3::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  background: #010684;
  transform-origin: left;
  animation: animte1 8s linear infinite;
}

@keyframes animte1 {
  0%,
  20% {
    transform: scaleX(0);
  }

  40% {
    transform: scaleX(1);
    transform-origin: left;
  }

  60% {
    transform: scaleX(1);
    transform-origin: right;
  }

  80%,
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.loader3::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  left: 0px;
  height: 10px;
  background: #010684;
  border-radius: 50%;
  animation: animateDot1 8s linear infinite;
}

@keyframes animateDot1 {
  0% {
    transform: translateY(-50%) scale(0);
  }

  5% {
    transform: translateY(-50%) scale(1);
  }

  15%,
  20% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
  }

  40% {
    transform: translateY(-50%) translateX(485px) scale(1);
    /* Match the full width */
  }

  80% {
    transform: translateY(-50%) translateX(485px) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
  }

  95% {
    transform: translateY(-50%) translateX(485px) scale(1);
    box-shadow: none;
  }

  100% {
    transform: translateY(-50%) translateX(485px) scale(0);
  }
}

.loader4 {
  position: relative;
  width: 600px;
  height: 3px;
  background: #fe6a00;
  text-align: center;
  left: 66px;
}

.loader4::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  background: #010684;
  transform-origin: left;
  animation: animte1 8s linear infinite;
}

@keyframes animte1 {
  0%,
  20% {
    transform: scaleX(0);
  }

  40% {
    transform: scaleX(1);
    transform-origin: left;
  }

  60% {
    transform: scaleX(1);
    transform-origin: right;
  }

  80%,
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.loader4::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  left: 0px;
  height: 10px;
  background: #010684;
  border-radius: 50%;
  animation: animateDot4 8s linear infinite;
}

@keyframes animateDot4 {
  0% {
    transform: translateY(-50%) scale(0);
  }

  5% {
    transform: translateY(-50%) scale(1);
  }

  15%,
  20% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
  }

  40% {
    transform: translateY(-50%) translateX(600px) scale(1);
    -webkit-transform: translateY(-50%) translateX(600px) scale(1);
    -moz-transform: translateY(-50%) translateX(600px) scale(1);
    -ms-transform: translateY(-50%) translateX(600px) scale(1);
    -o-transform: translateY(-50%) translateX(600px) scale(1);
  }

  80% {
    transform: translateY(-50%) translateX(600px) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
    -webkit-transform: translateY(-50%) translateX(600px) scale(1);
    -moz-transform: translateY(-50%) translateX(600px) scale(1);
    -ms-transform: translateY(-50%) translateX(600px) scale(1);
    -o-transform: translateY(-50%) translateX(600px) scale(1);
  }

  95% {
    transform: translateY(-50%) translateX(600px) scale(1);
    box-shadow: none;
    -webkit-transform: translateY(-50%) translateX(600px) scale(1);
    -moz-transform: translateY(-50%) translateX(600px) scale(1);
    -ms-transform: translateY(-50%) translateX(600px) scale(1);
    -o-transform: translateY(-50%) translateX(600px) scale(1);
  }

  100% {
    transform: translateY(-50%) translateX(600px) scale(0);
    -webkit-transform: translateY(-50%) translateX(600px) scale(0);
    -moz-transform: translateY(-50%) translateX(600px) scale(0);
    -ms-transform: translateY(-50%) translateX(600px) scale(0);
    -o-transform: translateY(-50%) translateX(600px) scale(0);
  }
}

.loader5 {
  position: relative;
  width: 663px;
  height: 3px;
  background: #fe6a00;
  text-align: center;
  left: 290px;
}

.loader5::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  background: #fff;
  transform-origin: left;
  animation: animte1 8s linear infinite;
}

@keyframes animte1 {
  0%,
  20% {
    transform: scaleX(0);
  }

  40% {
    transform: scaleX(1);
    transform-origin: left;
  }

  60% {
    transform: scaleX(1);
    transform-origin: right;
  }

  80%,
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.loader5::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  left: 0px;
  height: 10px;
  background: #010684;
  border-radius: 50%;
  animation: animateDot1 8s linear infinite;
}

@keyframes animateDot1 {
  0% {
    transform: translateY(-50%) scale(0);
  }

  5% {
    transform: translateY(-50%) scale(1);
  }

  15%,
  20% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
  }

  40% {
    transform: translateY(-50%) translateX(663px) scale(1);
    -webkit-transform: translateY(-50%) translateX(663px) scale(1);
    -moz-transform: translateY(-50%) translateX(663px) scale(1);
    -ms-transform: translateY(-50%) translateX(663px) scale(1);
    -o-transform: translateY(-50%) translateX(663px) scale(1);
  }

  80% {
    transform: translateY(-50%) translateX(663px) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
    -webkit-transform: translateY(-50%) translateX(663px) scale(1);
    -moz-transform: translateY(-50%) translateX(663px) scale(1);
    -ms-transform: translateY(-50%) translateX(663px) scale(1);
    -o-transform: translateY(-50%) translateX(663px) scale(1);
  }

  95% {
    transform: translateY(-50%) translateX(663px) scale(1);
    box-shadow: none;
    -webkit-transform: translateY(-50%) translateX(663px) scale(1);
    -moz-transform: translateY(-50%) translateX(663px) scale(1);
    -ms-transform: translateY(-50%) translateX(663px) scale(1);
    -o-transform: translateY(-50%) translateX(663px) scale(1);
  }

  100% {
    transform: translateY(-50%) translateX(663px) scale(0);
    -webkit-transform: translateY(-50%) translateX(663px) scale(0);
    -moz-transform: translateY(-50%) translateX(663px) scale(0);
    -ms-transform: translateY(-50%) translateX(663px) scale(0);
    -o-transform: translateY(-50%) translateX(663px) scale(0);
  }
}

/* loader6 start */
.loader6 {
  position: relative;
  width: 287px;
  height: 3px;
  background: #fe6a00;
  text-align: center;
  left: 221px;
}

.loader6::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  background: #010684;
  transform-origin: left;
  animation: animte6 8s linear infinite;
}

@keyframes animte6 {
  0%,
  20% {
    transform: scaleX(0);
  }

  40% {
    transform: scaleX(1);
    transform-origin: left;
  }

  60% {
    transform: scaleX(1);
    transform-origin: right;
  }

  80%,
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.loader6::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  left: 0px;
  height: 10px;
  background: #010684;
  border-radius: 50%;
  animation: animateDot6 8s linear infinite;
}

@keyframes animateDot6 {
  0% {
    transform: translateY(-50%) scale(0);
  }

  5% {
    transform: translateY(-50%) scale(1);
  }

  15%,
  20% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
  }

  40% {
    transform: translateY(-50%) translateX(287px) scale(1);
    -webkit-transform: translateY(-50%) translateX(287px) scale(1);
    -moz-transform: translateY(-50%) translateX(287px) scale(1);
    -ms-transform: translateY(-50%) translateX(287px) scale(1);
    -o-transform: translateY(-50%) translateX(287px) scale(1);
  }

  80% {
    transform: translateY(-50%) translateX(287px) scale(1);
    box-shadow: 0 0 0 4px #484cae, 0 0 10px #484cae, 0 0 20px #010684,
      0 0 40px #010684, 0 0 60px #010684;
    -webkit-transform: translateY(-50%) translateX(287px) scale(1);
    -moz-transform: translateY(-50%) translateX(287px) scale(1);
    -ms-transform: translateY(-50%) translateX(287px) scale(1);
    -o-transform: translateY(-50%) translateX(287px) scale(1);
  }

  95% {
    transform: translateY(-50%) translateX(287px) scale(1);
    box-shadow: none;
    -webkit-transform: translateY(-50%) translateX(287px) scale(1);
    -moz-transform: translateY(-50%) translateX(287px) scale(1);
    -ms-transform: translateY(-50%) translateX(287px) scale(1);
    -o-transform: translateY(-50%) translateX(287px) scale(1);
  }

  100% {
    transform: translateY(-50%) translateX(287px) scale(0);
    -webkit-transform: translateY(-50%) translateX(287px) scale(0);
    -moz-transform: translateY(-50%) translateX(287px) scale(0);
    -ms-transform: translateY(-50%) translateX(287px) scale(0);
    -o-transform: translateY(-50%) translateX(287px) scale(0);
  }
}

/* loader6 end */
@media (min-width: 576px) {
  .section-header.left-style {
    margin-bottom: 40px !important;
  }
}

@media (min-width: 992px) {
  .banner-section.style-3 {
    padding: 70px 0 182px;
  }
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    /* margin-top:32px; */
    /* margin-left: 42px; */
  }
}
@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");

.social-box .box {
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  margin: 20px 0;
  /* padding: 40px 10px; */
  transition: all 0.5s ease-out;
}

.social-box .box:hover {
  box-shadow: 0 0 6px #010684;
}

.social-box .box-text {
  font-size: 15px;
  line-height: 30px;
  margin: 20px 0;
}

.social-box .box-btn a {
  color: #010684;
  font-size: 16px;
  text-decoration: none;
}

.social-box .fa {
  color: #010684;
}
.desktop-only1 {
  display: block;
}

.mobile-only1 {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only1 {
    display: none;
  }

  .mobile-only1 {
    display: block;
    margin-left: 0px;
  }
}

.responsive-image {
  max-width: 270px;
  max-height: 338px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.responsive-image1 {
  /* max-width: 270px;
    max-height: 338px; */
  max-width: 180px;
  max-height: 322px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.responsive-image2 {
  max-width: 200px;
  max-height: 338px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .responsive-image1 {
    max-width: 273px;
    max-height: 135px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-left: 11px;
  }

  .responsive-image {
    max-width: 197px;
    max-height: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}

.card-mobile {
  width: 14rem;
}

.card {
  transition: all 0.3s ease;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .card-mobile {
    width: 9rem;
  }

  .responsive-image3 {
    max-width: 109px;
    max-height: 185px;
    width: 70px;
  }
}
/* payment logo start */

/* Slider styling */
.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  top:6px;
}

.slick-track {
  position: relative;
  display: block;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-initialized .slick-slide {
  display: block;
}

.customer-logos .slide img {
  width: 100%;
  height: auto;
  max-width: 300px;
}

.mt-3 {
  margin-top: 1.2rem !important;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }

  .customer-logos .slide img {
    max-width: 200px;
  }
}
/* payment logo end */

