:root {
  --bluecolor: #2b569a;
}

.btn {
  border-radius: 0px;
  padding: 10px 15px;
  transition: all 0.3s 0s linear;
}
.web-btn {
  background-color: var(--bluecolor);
  color: white;
}
.web-btn:hover {
  background-color: #214682;
  color: white;
}
.section-heading {
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: bold;
}

.header {
  padding: 10px 0px;
}
.header p {
  margin: 0px;
  font-weight: bold;
  font-size: 14px;
}
.header p a {
  color: var(--bluecolor);
}
.banner {
  padding: 20px 0px;
  background: url("../images/banner-aarogyam.png") #eee;
  background-size: cover;
}
.banner .box {
  background-color: white;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin-right: 50px;
  text-align: center;
}
.banner .box h1 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--bluecolor);
}
.banner .box .form-title {
  font-size: 12px;
  font-weight: bold;
}
.banner .box p {
  margin: 0px 0px 10px;
  line-height: 18px;
}
.banner .box p.d-flex input {
  margin-top: 4px;
}

.compare {
  padding: 40px 0px;
}
.compare .box {
  background-color: #eee;
  border: 1px solid #ddd;
  margin: 0px 10px;
}
.compare .box .box-body {
  padding: 15px;
}
.compare .box .title {
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0px;
}
.compare .box .box-price {
  background-color: var(--bluecolor);
  color: white;
  padding: 10px 15px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.compare .box .box-price .certificate {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare .box .box-price .certificate i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 50px;
  z-index: 0;
  color: #80a2ef;
}
.compare .box .box-price .certificate span {
  position: relative;
  z-index: 1;
  font-weight: bold;
}
.compare .box .box-price .content {
  width: calc(100% - 60px);
}
.compare .box .box-price .content h4 {
  font-size: 20px;
  margin: 0px;
}
.compare .box .box-price .content p {
  margin: 0px;
  font-size: 14px;
}

.compare .box .accordion .accordion-item {
  margin-bottom: 5px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.compare .box .accordion .accordion-header button {
  background-color: #fff;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 5px;
  box-shadow: none;
}
.compare .box .accordion .accordion-body {
  padding: 0px 15px 15px;
}
.compare .box .accordion ul {
  margin: 0px;
  padding-left: 15px;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 500;
}
.compare .box .web-btn {
  margin-top: 10px;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--bluecolor) !important;
  color: white !important;
  z-index: 1;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-nav button span {
  font-size: 30px;
  margin-bottom: 8px;
}
.owl-nav button.owl-prev {
  left: -20px;
}
.owl-nav button.owl-next {
  right: -20px;
}

.why-section {
  overflow: hidden;
}
.why-section .img-box {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.why-section .right-side {
  background-color: #f5f5f5;
  padding: 50px;
}
.why-section .section-heading {
  margin-bottom: 20px;
}
.why-section .box {
  background-color: white;
  padding: 30px;
  height: 100%;
  text-align: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.why-section .box i {
  font-size: 35px;
  margin-bottom: 10px;
}
.why-section .box p {
  margin: 0px;
}

.footer {
  background-color: var(--bluecolor);
  padding: 20px 0px;
  text-align: center;
}
.footer p {
  margin: 0px;
  color: white;
}

.slick-prev:before,
.slick-next:before {
  color: var(--bluecolor);
  opacity: 1;
}
.slick-next {
  right: 0px;
}
.slick-prev {
  left: 0px;
}
.slick-next,
.slick-prev {
  z-index: 10;
}

@media (max-width: 992px) {
  .header {
    text-align: center;
  }
  .banner {
    padding: 0px;
    background: none;
  }
  .banner img {
    margin-bottom: 15px;
  }
  .banner .box {
    margin: 0px;
  }
  .why-section .img-box {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .header .img img {
    height: 50px;
    width: 100%;
    object-fit: contain;
  }
  .section-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .why-section .right-side {
    padding: 20px;
  }
  .owl-carousel {
    padding-bottom: 50px;
  }
  .owl-nav button {
    top: unset;
    transform: unset;
    bottom: 0px;
  }
  .owl-nav button.owl-prev {
    left: 37%;
  }
  .owl-nav button.owl-next {
    right: 37%;
  }
  .why-section .img-box {
    height: 200px;
  }
}
