.custom-button {
  border: none;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
}

.background-colour-blue {
  /* background-color: #3997df; */
  background-color: #1F7BC1;

}
.border-colour-blue {
  border: 1px solid #1F7BC1;
}

.background-colour-red {
  background-color: #eb5e5e;
}
.border-colour-red {
  border: 1px solid #eb5e5e;
}

.background-colour-green {
  background-color: #03979d;
}
.border-colour-green {
  border: 1px solid #03979d;
}

.background-colour-purple {
  background-color: #925489;
}
.border-colour-purple {
  border: 1px solid #925489;
}

.align-height {
  height: 400px;
}
h2.home-page-head {
  font-weight: bold;
}

.home-page-feature-box {
  width: 310px; 
  min-width: 200px;
}
.home-page-feature-box-title {
  padding: 16px 14px 14px 14px;
  color: white;
  border-radius: 10px 10px 0 0;
  color: white;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0;
  line-height: 2.0rem;
}
.home-page-feature-box-text {
  padding: 12px;
  border-radius: 0 0 10px 10px;
}

.hpf-para {
  min-height: 120px;
}

/* Main carousel */
.main-carousel {

  border: 1px solid #925489;
  border-radius: 15px;
  position: relative;

  .carousel-head {
    background-color: #925489;
    border-radius: 10px 10px 0 0;
    padding: 1.25rem 1.25rem 0.25rem 1.25rem;
    text-align: center;
  }
  .carousel-head-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
  }
  .carousel-head-text {
    color: white;
    font-size: 1.2rem;
  }
  .carousel-body {
    padding: 30px 40px;
  }
  .carousel-link {
    text-align: center;
  }

  /* Custom navigation buttons */
  button.owl-prev,
  button.owl-next {
    position:absolute;
    top: 50%;
  }
  button.owl-prev {
    left:0;
  }
  button.owl-next {
    right:0;
  }
  button.owl-prev span,
  button.owl-next span  {
    font-size: 80px!important;
    font-weight: 200;
    line-height: 80px;
    color: #869791!important;
  }
  button.owl-prev:hover,
  button.owl-next:hover {
    background: none!important;
  }
  button.owl-prev:hover span,
  button.owl-next:hover span {
    color: #687671!important;
  }
}
 
/* Slider carousel */
.slider-carousel-wrapper {
  padding: 0 40px;
}
.slider-carousel {

  position: relative;
 
  .slider-carousel-item {
    border: 1px solid #1F7BC1;
    border-radius: 15px;
    overflow: hidden;
  }

  .carousel-title {
    color: white;
    min-height: 50px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
    padding: 0 24px;
    font-size: 1.6rem;
  }
  .carousel-title div.link {
    position: absolute;
    right: 5px;
    a {
      font-size: 2.1rem;
      color: white;
    }
    a:hover {
      color: #ddd;
    }
  }
  .carousel-description {
    padding: 10px 20px;
    height: 140px;
  }
  .carousel-description ul {
    padding-left: 20px;
  }
  .carousel-description ul li {
    list-style-type: disc;
    line-height: 2.4rem;
  }

  /* Custom navigation arrows */
  button.owl-prev,
  button.owl-next {
    position:absolute;
    top: 20%;
  }
  button.owl-prev {
    left:-40px;
  }
  button.owl-next {
    right:-40px;
  }
  button.owl-prev span,
  button.owl-next span  {
    font-size: 80px!important;
    font-weight: 200;
    line-height: 80px;
    color: #869791!important;
  }
  button.owl-prev:hover,
  button.owl-next:hover {
    background: none!important;
  }
  button.owl-prev:hover span,
  button.owl-next:hover span {
    color: #687671!important;
  }
}
