@keyframes move {
  0% {
      transform: translateY(0);
  }
  100% {
      transform: translateY(5%);
  }
}

.move {
    animation: 1.5s move infinite alternate linear;
}

.far, .fas, .fab{
    padding: 4px 0;
  font-size: 16px;
  color: white;
  margin-right: 8px;
}

.far.fa-gem {
  font-size: 30px;
  color: white;
    padding-top: 16px;
    margin-right: 15px;
  -webkit-animation: glow 2s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1.5s ease-in-out infinite alternate;
}

.blog-slider {
  width: 80%;
  position: relative;
  top: 5pc;
  left: 12%;
  background: #fff;
  box-shadow: 0px 14px 80px #CFD6FA;
  padding: 25px;
  border-radius: 25px;
  height: 450px;
  transition: all .3s;
}

.contain {
  width: 100%;
  position: relative;
  margin: auto;
}

.contain2 {
  position: absolute;
  margin: auto;
  top: 400px;
  float: right;
}

@media screen and (max-width: 770px) {
  .blog-slider {
    width: 98%;
    height: 400px;
    top: 1pc;
    left: 0pc;
  }

  .contain2 {
    position: static;
    margin: auto;
    float: right;
  }
}
@media screen and (max-width: 768px) {
  .blog-slider {
    height: 500px;
    height: auto;
    margin: 180px auto 90px auto;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
  }
}
.blog-slider__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
  }
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: .3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}

.blog-slider__img {
  width: 210px;
  flex-shrink: 0;
  height: 210px;
  background: white;
  box-shadow: 3px 4px 12px 2px #E1E1E1;
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}

.blog-slider__img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.8;
}

.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }
}
.blog-slider__content {
  width: 100%;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}

.hr4 {
  border: .5px solid #D5DFF6;
  margin: 0 0 20px 0 !important;
}

.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all .4s;
}
.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.blog-slider__code2 {
  color: black;
  margin-bottom: 10px;
  display: block;
  font-size: 20px;
}
.blog-slider__title {
  font-size: 22px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 10px;
}
.blog-slider__text {
  color: #4e4a67;
  margin-bottom: 10px;
  line-height: 1.5em;
  font-size: 16px;
    width: 100%;
}
.blog-slider__text2 {
  color: #336087;
  font-size:40px; 
  font-weight: bold;
  line-height: 1.5em;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #F15577, 0 0 10px #F15577, 0 0 10px #F15577, 0 0 10px #F15577, 0 0 10px #e6b2c6, 0 0 10px #e6b2c6, 0 0 10px #e6b2c6;
  }
  
  to {
    text-shadow: 0 0 10px #9CC1F5, 0 0 10px #9CC1F5, 0 0 10px #9CC1F5, 0 0 10px #9CC1F5, 0 0 10px #46b5d1, 0 0 10px #46b5d1, 0 0 10px #46b5d1;
  }
}

.blog-slider__button i {
    font-size: 16px !important;
    margin-right: 0px;
}

.blog-slider__button {
  display: inline-flex;
  background: #E91544;
  padding: 10px 30px;
  border-radius: 50px;
  border: 2px solid white;
  color: #fff;
  font-size: 10px;

  justify-content: center;
  text-align: center;

  width: auto;
  margin-right: 15px;
  box-shadow: 1px -4px 10px #CFD6FA;
  animation: 1s move infinite alternate linear;
  cursor: pointer;
}

.blog-slider__button2 i {
    font-size: 16px !important;
    margin-right: 0px !important;
}
.blog-slider__button2 {
    display: inline-flex;
    padding: 10px 30px;
    background: #F3F5FF;
    border-radius: 50px;
    border: 2px solid white;
    
    color: black;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    
    width: auto;
    margin-right: 16px;
    box-shadow: 1px -4px 10px #CFD6FA;
    font-size: 10px;
    animation: 2s move infinite alternate linear;
}

.blog-slider__button:hover {
    color: white;
    font-size: 16px;
}

.blog-slider__button2:hover {
  background: #E6E8F3;
    font-size: 14px;
}
@media screen and (max-width: 576px) {
  /*.blog-slider__button {
    width: 100%;
    font-size: 16px;
  }

  .blog-slider__button2 {
    width: 100%;
    font-size: 16px;
  }*/
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 95%;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all .3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #E91544;
  height: 30px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}