﻿/* Home page */
/* Offers carousel arrows below cards */
.offers-controls .offers-arrow-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  color: #333;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.offers-controls .offers-arrow-btn:hover {
  background: #882d8e;
  border-color: #882d8e;
  color: #fff;
}

/* What People Say */
.testi-sec-two {
  background: #f7e6fb;
}

.testi-sec-two .sec-title h2 {
  letter-spacing: 1px;
}

.testi-sec-two .testi-image-frame {
  position: relative;
  display: inline-block;
  padding: 14px;
  max-width: 280px;
}

.testi-sec-two .testi-image-frame::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 6px solid #000000;
}
.testi-sec-two .testi-image-frame::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 6px solid #882d8e;
}

.testi-sec-two .testi-image-frame::before {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.testi-sec-two .testi-image-frame::after {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.testi-sec-two .testi-image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.testi-sec-two .testi-name {
  color: #000000;
  font-weight: 700;
  font-size: 1.15rem;
}

.testi-sec-two .testi-place {
  font-size: 0.9rem;
}

.testi-sec-two .testi-text {
  color: #000000;
  line-height: 1.65;
}

.testi-sec-two .testi-arrows .btn {
  font-size: 1.1rem;
  line-height: 1;
}

.testi-sec-two .testi-arrows .btn:hover {
  color: #6b1f8f !important;
}

/* What Makes Us Different */
.differentiators-section .differentiators-card {
  background: #f9eefc;
  border-radius: 14px;
}

.differentiators-section .differentiator-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #882d8e;
  color: #fff;
  font-weight: 700;
  font-size: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.differentiators-section .differentiator-title {
  font-weight: 700;
  color: #1a1a1a;
}

.differentiators-section .differentiator-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.45;
  padding-bottom: 0.75rem;
  /* border-bottom: 2px solid #d9b3e6; */
  display: inline-block;
  min-width: 50%;
}

/* Vertical divider between cards (lg+) */
.differentiators-section .row > [class*="col-"] {
  position: relative;
}

@media (min-width: 992px) {
  .differentiators-section .row > [class*="col-"] + [class*="col-"]::before {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 0;
    width: 2px;
    background: #d9b3e6;
  }
}

.btn-con {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0px !important;
  background-color: #1d75bc;
  color: #fff;
}

.btn-con:hover {
  background-color: #155d8b;
  color: #fff;
}

.btnA-con {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0px !important;
  background-color: transparent;
  color: #fff;
  border: 2px solid #1d75bc;
}

.btnA-con:hover {
  background-color: #155d8b;
  color: #fff;
}

.homeicon {
  width: 80px;
  height: 80px;
  background-color: #ffde16;
  border-radius: 50%;
}
.homeicon i {
  font-size: 40px !important;
}
.homeicon h3 {
  font-size: 24px;
  text-align: center !important;
}
.homeicon p {
  text-align: left !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .homeicon h3 {
    text-align: left !important;
  }
  .homeicon p {
    text-align: left !important;
  }
}

.hero-indicators {
  justify-content: flex-end !important;
  margin-right: 40px;
  margin-bottom: 25px;
  left: auto !important;
  right: 0;
}

.hero-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  margin: 0 5px !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
  border: none !important;
  text-indent: -9999px; /* hide any text */
}

.hero-indicators button.active {
  background-color: #fff !important;
  transform: scale(1.2);
}

