.dropdown-item.active, .dropdown-item:active {
    color: #cf2027;
    text-decoration: none;
    background-color: #fff;
}

.img-scaling {
    animation: anim-img-scaling 2s infinite alternate-reverse linear;
} @keyframes anim-img-scaling {
    from { transform: scale(0.98) }
    to { transform: scale(1.02) }
}

.play-btn {
  width: 45px;
  height: 45px;
  background: #cf2027;
  border-radius: 50%;
  position: relative;
  display: block;
  box-shadow: 0px 0px 25px 3px rgba(207, 32, 39, 0.8);
}

/* triangle */
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, .75);
  top: -26%;
  left: -26%;
  background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}


/* About us core values section  */
.about_us {
    position: relative;
}
.about_us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url("../images/bg_about.jpg") center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /*opacity: .2;*/
    z-index: -1;
}


.value {
    position: relative;
}
.value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url("../images/bg4.jpg") center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    opacity: .2;
    z-index: -1;
    filter: grayscale(1);
}
.value .col-md-3 {
    font-weight: 600;
}
.value .col-md-3 span {
    color: #cf2027 !important;
}
.value h2 span{
    color: #cf2027 !important;
}
.value .card .card-body span {
    font-weight: 600;
}
.value .card .card-body span span {
    color: #cf2027 !important;
}
.value .card {
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.pt-100 {
    padding-top: 100px !important;
}
.pb-100 {
    padding-bottom: 100px !important;
}
.fs-2 {
    font-size: 2rem!important;
}
.fs-4 {
    font-size: 1.5rem!important;
}
.ms-1 {
    margin-left: 0.25rem!important;
}

.order-1 {
    order: 1!important
}
.order-2 {
    order: 2!important
}
.order-3 {
    order: 3!important
}
.order-4 {
    order: 4!important
}
.order-5 {
    order: 5!important
}
.order-6 {
    order: 6!important
}
.order-7 {
    order: 7!important
}
.order-8 {
    order: 8!important
}
.order-9 {
    order: 9!important
}
.order-10 {
    order: 10!important
}

@media (max-width: 576px) {
    .order-sm-1 {
        order: 1!important
    }
    .order-sm-2 {
        order: 2!important
    }
    .order-sm-3 {
        order: 3!important
    }
    .order-sm-4 {
        order: 4!important
    }
    .order-sm-5 {
        order: 5!important
    }
    .order-sm-6 {
        order: 6!important
    }
    .order-sm-7 {
        order: 7!important
    }
    .order-sm-8 {
        order: 8!important
    }
    .order-sm-9 {
        order: 9!important
    }
    .order-sm-10 {
        order: 10!important
    }
}

.pagination {
    justify-content: center !important;
}