/* services container */
.service-container {
  background-color: #ffffff;
}

.service-container .service-box .heading h2 {
  position: relative;
  color: #f68620;
  font-size: 12px;
  font-weight: 500;
  margin-left: 70px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-container .service-box .heading h2::before {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  left: -60px;
  width: 50px;
  height: 1px;
  background-color: #f28135;
}

.service-container .service-box .heading h1 {
  font-size: 28px;
}

.service-container .service-box .heading p {
  color: #61656a;
  font-size: 14px;
}

.service-container .service-box .img-box {
  width: 100%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.service-container .service-box .img-box img {
  width: 100%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.service-container .service-box .box-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-container .service-box .box-wrapper .box {
  padding: 20px;
  text-decoration: none;
  border: 1px solid #ededed;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.service-container .service-box .box-wrapper .box .heading {
  margin-bottom: 14px;
}

.service-container .service-box .box-wrapper .box .heading .count {
  min-height: 36px;
  min-width: 36px;
  max-height: 36px;
  max-width: 36px;
  background-color: #fff9ed;
  margin-right: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.service-container .service-box .box-wrapper .box .heading .count h1 {
  font-size: 18px;
  color: #f68620;
  font-weight: 600;
}

.service-container .service-box .box-wrapper .box .heading .title h1 {
  font-size: 18px;
  font-weight: 700;
  color: #040a15;
}

.service-container .service-box .box-wrapper .box .info p {
  color: #61656a;
  font-size: 14px;
  line-height: 24px;
}

.service-container .service-box .box-wrapper .box:hover {
  background-color: #f68620;
}

.service-container .service-box .box-wrapper .box:hover .heading .count {
  background-color: rgba(255, 255, 255, 0.4);
}

.service-container .service-box .box-wrapper .box:hover .heading .count h1 {
  color: #ffffff;
}

.service-container .service-box .box-wrapper .box:hover .heading .title h1 {
  color: #ffffff;
}

.service-container .service-box .box-wrapper .box:hover .info p {
  color: #ffffff;
}

/* bottom banner container  */
.bottom-banner-container .bottom-banner-box .info-box {
  position: relative;
  background-color: #edf0f5;
  padding: 0 70px;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.bottom-banner-container .bottom-banner-box .info-box .vector {
  position: absolute;
}

.bottom-banner-container .bottom-banner-box .info-box .vector.circle {
  bottom: -40%;
  right: -2%;
  height: 300px;
  width: 300px;
  background: #f68620;
  opacity: 0.2;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.bottom-banner-container .bottom-banner-box .info .title {
  position: relative;
}

.bottom-banner-container .bottom-banner-box .info .title .quote {
  position: absolute;
  right: -10px;
  top: -50px;
}

.bottom-banner-container .bottom-banner-box .info .title .quote img {
  height: 60px;
}

.bottom-banner-container .bottom-banner-box .info h1 {
  color: #090914;
  font-size: 36px;
  font-weight: 600;
}

.bottom-banner-container .bottom-banner-box .info p {
  color: #61656a;
  line-height: 28px;
}

.bottom-banner-container .bottom-banner-box .info .btn-box {
  column-gap: 20px;
}

.bottom-banner-container .bottom-banner-box .info .btn-box a {
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid;
  text-decoration: none;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.bottom-banner-container .bottom-banner-box .info .btn-box a.book-btn {
  border-color: #f68620;
  background-color: #f68620;
  color: #ffffff;
}

.bottom-banner-container
  .bottom-banner-box
  .info
  .btn-box
  a.get-appointment-btn {
  border-color: #040a15;
  background-color: transparent;
  color: #040a15;
}

/* responsive */
@media (max-width: 1023px) {
  .service-container .service-box .box-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .bottom-banner-container .bottom-banner-box .info .title .quote {
    right: 10%;
  }
  .bottom-banner-container .bottom-banner-box .info-box {
    padding: 0 50px;
  }
  .bottom-banner-container .bottom-banner-box .info p br {
    display: none;
  }
}

@media (max-width: 900px) {
  .bottom-banner-container .bottom-banner-box .info .title .quote {
    right: 0;
  }
}

@media (max-width: 767px) {
  .service-container .service-box .heading h1 {
    font-size: 26px;
  }
  .service-container .service-box .heading h1 br {
    display: none;
  }
  .service-container .service-box .heading p br {
    display: none;
  }
  .service-container .service-box .box-wrapper {
    grid-template-columns: 1fr;
  }
  .bottom-banner-container .bottom-banner-box .info-box {
    padding: 0 40px;
    height: 370px;
  }
  .bottom-banner-container .bottom-banner-box .info h1 {
    font-size: 32px;
  }
  .bottom-banner-container .bottom-banner-box .info-box .vector.circle {
    bottom: -50%;
  }
}

@media (max-width: 650px) {
  .service-container .service-box .img-box {
    height: 200px;
  }
  .service-container .service-box .img-box img {
    height: 100%;
    object-fit: cover;
  }
  .bottom-banner-container .bottom-banner-box .info-box {
    padding: 0 30px;
  }
  .bottom-banner-container .bottom-banner-box .info .btn-box {
    column-gap: 10px;
  }
}

@media (max-width: 500px) {
  .bottom-banner-container .bottom-banner-box .info-box {
    height: auto;
    padding: 80px 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .bottom-banner-container .bottom-banner-box .info h1 {
    font-size: 28px;
  }
  .bottom-banner-container .bottom-banner-box .info p {
    font-size: 14px;
  }
  .bottom-banner-container .bottom-banner-box .info .btn-box {
    flex-direction: column;
    align-items: flex-start;
    column-gap: 0;
    row-gap: 10px;
  }
}
