.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
  height: 522px;
  background-size: cover;
}

@media(max-width:480px) {
  .carousel-item {
    height: 280px;
  }
}

.carousel-item:after {
  display: block;
  content: " ";
  background: linear-gradient(90deg, black, transparent);
  top: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {

  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {

  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
  color: #C4C4C4;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
  color: #FFF;
}

.carousel-caption {
  position: absolute;
  left: 5%;
  top: 0;
  bottom: 0;
  width: 50%;
  padding-bottom: 1.25rem;
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.carousel-caption .btn {
  background: #fff;
  color: #000;
  text-transform: uppercase;
  padding: 7px 15px;
  font-weight: bold;
}

@media (max-width:480px) {
  .carousel-caption .fs-3 {
    font-size: 1.15rem !important;
  }
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}

.carousel-dark .carousel-caption {
  color: #000;
}

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg)
      /* rtl:ignore */
    ;
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg)
      /* rtl:ignore */
    ;
  }
}

.card-category {
  font-size: 1.25rem;
  color: #000;
}


.card-category span {
  position: relative;
  font-weight: normal;
}

.card-category span:after,
.card-category span:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 6px;
  background-color: #FFB612;
}
@media (max-width:480px) {
  .card-category {
    font-size: 0.8rem;
  }
  .card-category span:after,
  .card-category span:before {
    height: 3px;
    width: 35px;
  }
  .card-excerpt{
    font-size: 0.8rem;
  }
}

.card-category span:before {
  left: -60px;
}

.card-category span:after {
  right: -60px;
}

.read_more {
  position: absolute;
  bottom: 0;
  font-weight: 100 !important;
  bottom: 15px;
}

.read_more.normal {
  left: 15px;
}

.read_more.inverse {
  right: 15px;
}

.h5 {
  font-size: 1.25rem;
}

.fw-100 {
  font-family: "GothamLight", sans-serif;
  font-weight: 100 !important;
}

.ls-2 {
  letter-spacing: 2px;
}

.position-center {
  left: 50%;
  transform: translateX(-50%);
}

.btn-whats {
  position: relative;
  background: #3cb54a;
  color: #fff;
  padding: 1rem 1.5rem;
  line-height: normal;
  display: inline-block;
  border-radius: 50px;
}

.btn-whats:hover {
  color: #fff;
  background: #18b32a;
}

.btn-whats:after {
  content: "";
  background: url('../img/cursor.png') no-repeat;
  width: 58px;
  height: 52px;
  position: absolute;
  top: 50%;
  right: -40px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  line-height: normal;
  font-weight: bold;
}

.btn-danger {
  background-color: #ff2322;
  border-color: #dc3545;
  color: #fff;
}

.btn-danger:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
}