.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav div.owl-next,
.owl-carousel .owl-nav div.owl-prev {

  width: 30px;

  /*line-height: 50px;*/
  border-radius: 50%;
  border: 0px solid;
  outline: none;

  display: inline-block;

}

.owl-prev img,
.owl-next img {
  width: 100%;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav div.owl-prev {
  float: left;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav div.owl-next {
  float: right;

}

.owl-carousel .owl-nav span {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 30px;
}

.owl-carousel .owl-nav {

  margin: auto;

  position: absolute;
  background: transparent;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  padding: 0 0px;
  width: 100%;
}

.mobile-show {
  display: none;
}

.both-slider-home .owl-carousel .owl-nav {
  margin: 0 !important;
  padding: 0 15px;
  /* display: none !important; */
}

.join-bmr-2024-btn {
  position: fixed;
  z-index: 1111;
  bottom: 13%;
  right: 1%;
  animation: customAni 1s ease-in-out 0s infinite alternate-reverse none;

}



@keyframes customAni {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}



.main-button {
  background-color: #066839;
  border: 0;
  padding: 10px 30px;
  font-size: 16px;
  /* font-family: 'Open Sans'; */
  border-radius: 3px;
  cursor: pointer;
  color: #fff;
  position: relative;
  border-radius: 5px;
  transform: rotate(0deg);
  text-orientation: upright;

  /* text-transform: uppercase; */
  &:after {
    background-color: #eb4d4b;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    animation-name: blink;
    animation-duration: 1.3s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    // animation-timing-function: cubic-bezier(1, 0, 0, 1);
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  }
}

@keyframes blink {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0.8;
  }

  100% {
    transform: scale3d(1.1, 1.3, 1.1);
    opacity: 0;
  }
}



@media only screen and (max-width: 600px) {
  .desktop-show {
    display: none;
  }

  .mobile-show {
    display: block;
  }
}


@media screen and (max-width: 768px) and (min-width: 320px) {
  .join-bmr-2024-btn {
    right: 6%;
    bottom: 14%;
  }
}