.banner_bottom {
    background: linear-gradient(to right, rgb(0 0 0 / .5), rgb(0 0 0 / .5)),
     center url('../img/banner/background-bottom.png');
     background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

  .cards{
    padding: 15px;
    background-color: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 15px;
    background: #17294c70;
    position: relative;
  }
  .cards img {
    width: 190px;
  }
  .cards h3{
    color: #fff;
    font-weight: bold;
    margin-bottom: 24px;
    font-family: "Montserrat", sans-serif;
  }
  .cards p{
    color: #fff;
    margin-bottom: 24px;
    font-family: "Montserrat", sans-serif;
  }
  /** // hover effect start // **/
  .cards .cards-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
  }
  .cards .cards-overlay {
    background: #17294c70;
    color: #fff;
    transform-origin: 0 0;
    transform: rotate(90deg);
    -webkit-transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
  }
  .cards:hover .cards-overlay {
    opacity: 1;
    visibility: visible;
    transform: rotate(0deg);
    border-radius: 15px;
  }
  .cards:hover .cards-overlay .cards-overlay-box {
    border-radius: 15px;
    background: #17294c;
  }
  .cards:hover .cards-overlay .cards-overlay-box img {
    background: #fff;
    border-radius: 50%;
  }
  /** // hover effect end // **/


.Marquee {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
  }
  
  .Marquee-content {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-animation: marquee 10s linear infinite running;
    -moz-animation: marquee 10s linear infinite running;
    -o-animation: marquee 10s linear infinite running;
    -ms-animation: marquee 10s linear infinite running;
    animation: marquee 20s linear infinite running;
  }
  
  .Marquee-content:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    -ms-animation-play-state: paused;
    animation-play-state: paused;
  }
  
  .Marquee-tag {
    width: 200px;
    background: rgba(255, 255, 255, 0.1);
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  .Marquee-tag:hover {
    background: rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
  }

  

@-moz-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
  
    100% {
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -o-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }
  
  @-webkit-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
  
    100% {
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -o-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }
  
  @-o-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
  
    100% {
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -o-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }
  
  @keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
  
    100% {
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -o-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }

  .logo-slider{
    padding: 22px;  
  }


  .box-border {
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 4px 10px 6px rgb(228 225 225);
}

.benefits-box {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-bottom: 2.5px solid #f82a2a;
  border-radius: 11px;
}
.benefits-box i {
  color: red;
  border-radius: 11px;
  border-radius: 11px;
}


.Marquee-tag {
  border: 1px solid #ddd;
  border-collapse: collapse;
  width: 160px;
  padding: 10px;
  overflow: hidden;
}