img {
  display: block;
  max-width: 100%;
}

.text-dark {
  color: #000;
}

.extra-content-space {
  padding-left: 140px;
  padding-right: 140px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .extra-content-space {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .extra-content-space {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .extra-content-space {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.normal-content-space {
  padding-left: 140px;
  padding-right: 140px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .normal-content-space {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .normal-content-space {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .normal-content-space {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.btn {
  border-radius: 50px;
  padding: 8px 60px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .btn {
    padding: 10px 40px;
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .btn {
    padding: 8px 30px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .btn {
    padding: 8px 20px;
    font-size: 15px;
    min-width: 152px !important;
  }
}

.btn-light {
  color: #000;
}

.btn-danger {
  background-color: #c0820e;
}

body {
  font-family: "Inter", sans-serif;
  color: #000;
}

nav .container-fluid {
  padding-left: 140px;
  padding-right: 140px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  nav .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  nav .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  nav .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.navbar-brand {
  padding: 0px !important;
}

.navbar {
  padding-top: 15px;
}

.navbar-nav .nav-link {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  padding: 0 20px !important;
  color: #fff;
}
.navbar-nav .nav-link span {
  display: inline-block;
  padding: 5px;
  border-bottom: 2px solid transparent;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .navbar-nav .nav-link {
    padding: 0 15px !important;
    font-size: 17px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .navbar-nav .nav-link {
    padding: 5px 15px !important;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .navbar-nav .nav-link {
    padding: 5px 15px !important;
    font-size: 16px;
  }
}
.navbar-nav .nav-link.signin {
  font-weight: 700;
  color: #000;
  background: #F2C94C;
  border-radius: 50px;
  padding: 10px 30px !important;
  display: inline-block;
}
.navbar-nav .nav-link.signin:hover {
  color: #000;
}
.navbar-nav .nav-link:hover {
  color: #F2C94C;
}
.navbar-nav .nav-link.active {
  color: #F2C94C;
}
.navbar-nav .nav-link.active span {
  border-color: #F2C94C;
}

h1,
h2,
h3,
h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700 !important;
  font-weight: 600 !important;
}

.hero-main {
  position: relative;
  overflow: hidden;
}
.hero-main:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  right: 0;
  left: 0px;
  top: 0;
  bottom: 0px;
  z-index: 1;
}
.hero-main.whitedots:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../images/RepeatGrid26-white.svg) repeat;
  right: 0;
  z-index: 333;
  width: 338px;
  background-repeat: no-repeat;
  z-index: 1;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .hero-main.whitedots:after {
    width: 240px;
    height: 60%;
    margin-top: 25px;
    background-size: 85%;
    right: -40px;
  }
}

.banner-left-caption-area {
  flex: 0 0 47%;
  max-width: 47%;
  background: rgb(0, 0, 0);
  background: linear-gradient(52deg, rgb(0, 0, 0) 35%, rgb(124, 125, 125) 100%);
}

.banner-right-image-area {
  flex: 0 0 53%;
  max-width: 53%;
}
.banner-right-image-area img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.banner-caption {
  padding: 60px 40px 20px 140px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 70px !important;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .banner-caption {
    padding: 100px 20px 20px 30px !important;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .banner-caption {
    padding: 20px 20px 20px 50px;
  }
}
@media (max-width: 767px) {
  .banner-caption {
    padding: 15px;
  }
}
.banner-caption h1 {
  font-size: 35px;
  color: #fff;
  margin-bottom: 30px;
}
.banner-caption h1 span {
  color: #F2C94C;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .banner-caption h1 {
    font-size: 25px;
    line-height: 50px;
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .banner-caption h1 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .banner-caption h1 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
  }
}
.banner-caption p {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 400;
  padding-right: 70px;
}
.banner-caption p a {
  color: #F2C94C;
  font-weight: 700;
  text-decoration: none;
}
.banner-caption p strong {
  font-weight: 900;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .banner-caption p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .banner-caption p {
    font-size: 13px;
    line-height: 13px;
  }
}
@media (max-width: 767px) {
  .banner-caption p {
    font-size: 13px;
    line-height: 13px;
  }
}
.banner-caption h3 {
  font-size: 26px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 20px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .banner-caption h3 {
    font-size: 18px;
    line-height: normal;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .banner-caption h3 {
    font-size: 16px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .banner-caption h3 {
    font-size: 18px;
    line-height: 26px;
  }
}

.ready-service {
  background: url(../images/getready-bg.png) no-repeat;
  background-size: cover;
  padding: 25px 0;
}
.ready-service h2 {
  margin-bottom: 0px;
}

.service-section {
  background-color: #000;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .service-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .service-section {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .service-section {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .service-section {
    padding: 15px 15px 50px 15px;
  }
}
.service-section h3 {
  font-size: 20px;
  font-family: "Inter", sans-serif;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .service-section h3 {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .service-section h3 {
    font-size: 20px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .service-section h3 {
    font-size: 18px;
    line-height: normal;
  }
}
.service-section p {
  color: #827E7E;
}
.service-section h4 {
  font-size: 22px;
  font-family: "Inter", sans-serif;
  line-height: 38px;
  font-weight: 700 !important;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .service-section h4 {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .service-section h4 {
    font-size: 28px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .service-section h4 {
    font-size: 16px;
    line-height: normal;
  }
}
.service-section ul {
  margin: 30px 0;
}
@media (max-width: 767px) {
  .service-section ul {
    margin: 15px 0;
  }
}
.service-section ul li {
  font-size: 22px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .service-section ul li {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .service-section ul li {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .service-section ul li {
    font-size: 15px;
    line-height: 24px;
  }
}

.plan-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #000 url(../images/img-plan.png) no-repeat;
  background-size: cover;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .plan-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .plan-section {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .plan-section {
    padding: 30px 0;
  }
}
.plan-section .plan-block {
  background-color: #FFF9E8;
  padding: 30px 20px 30px 115px;
  margin-bottom: 30px;
  align-items: center;
  position: relative;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
}
.plan-section .plan-block img {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 85px;
  height: 85px;
}
.plan-section .plan-block h3 {
  font-size: 27px;
  color: #A4831F;
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .plan-section .plan-block h3 {
    font-size: 18px;
  }
}
.plan-section .plan-block p {
  font-size: 16px;
  color: #000;
}
.plan-section .plan-block p strong {
  font-weight: 900;
  display: block;
}
@media (max-width: 991px) {
  .plan-section .plan-block {
    flex-wrap: wrap;
  }
}

.section-title {
  font-size: 35px;
  margin-bottom: 30px;
  font-weight: 600;
}
.section-title.white-title {
  color: #fff;
}
.section-title.white-title span:before {
  content: "";
  background: url(../images/SCISOR-white-right.png) no-repeat;
  width: 40px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
}
.section-title.white-title span:after {
  content: "";
  background: url(../images/SCISOR-white-left.png) no-repeat;
  width: 40px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
}
.section-title span:before {
  content: "";
  background: url(../images/SCISOR-dark-right.png) no-repeat;
  width: 40px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
}
.section-title span:after {
  content: "";
  background: url(../images/SCISOR-dark-left.png) no-repeat;
  width: 40px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .section-title {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .section-title {
    font-size: 25px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 20px;
    line-height: normal;
  }
}
.section-title.light-title {
  color: #fff;
}
.section-title span {
  display: inline-block;
}

.subsection-title {
  font-size: 34px;
  font-family: "Inter", sans-serif;
  font-weight: 400 !important;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .subsection-title {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .subsection-title {
    font-size: 26px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .subsection-title {
    font-size: 18px;
    line-height: normal;
  }
}

.review-box {
  text-align: center;
}
.review-box .media {
  border: 1px solid #818181;
  width: 120px;
  margin: auto;
  text-align: center;
  height: 120px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .review-box .media {
    width: 160px;
    height: 160px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .review-box .media {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 767px) {
  .review-box .media {
    width: 80px;
    height: 80px;
  }
}
.review-box .media img {
  width: 60px;
  margin: auto;
}
@media (max-width: 767px) {
  .review-box .media img {
    width: 35px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .review-box .media img {
    width: 45px;
  }
}
.review-box .media-body h5 {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .review-box .media-body h5 {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .review-box .media-body h5 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .review-box .media-body h5 {
    font-size: 15px;
  }
}
.review-box a {
  display: block;
  text-decoration: none;
  color: #000;
}
.review-box a:hover {
  color: #c0820e;
}

.owl-nav-v-center .owl-prev {
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  position: absolute;
}
.owl-nav-v-center .owl-next {
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  position: absolute;
}

.owl-nav-vtop-center .owl-prev {
  top: 23%;
  left: -30px;
  transform: translateY(-30%);
  position: absolute;
  color: #818181;
}
@media (max-width: 767px) {
  .owl-nav-vtop-center .owl-prev {
    left: 0px;
  }
}
.owl-nav-vtop-center .owl-prev .fa {
  color: #818181 !important;
}
.owl-nav-vtop-center .owl-prev .fa:hover {
  color: #BB4670 !important;
}
.owl-nav-vtop-center .owl-next {
  top: 23%;
  right: -30px;
  transform: translateY(-30%);
  position: absolute;
  color: #818181;
}
@media (max-width: 767px) {
  .owl-nav-vtop-center .owl-next {
    right: 0px;
  }
}
.owl-nav-vtop-center .owl-next .fa {
  color: #818181 !important;
}
.owl-nav-vtop-center .owl-next .fa:hover {
  color: #BB4670 !important;
}

.owl-nav-vtop .owl-prev {
  top: 20px;
  left: -15px;
  transform: translateY(-30%);
  position: absolute;
  color: #818181;
}
.owl-nav-vtop .owl-prev .fa {
  color: #818181 !important;
}
.owl-nav-vtop .owl-prev .fa:hover {
  color: #BB4670 !important;
}
.owl-nav-vtop .owl-next {
  top: 20px;
  right: -15px;
  transform: translateY(-30%);
  position: absolute;
  color: #818181;
}
.owl-nav-vtop .owl-next .fa {
  color: #818181 !important;
}
.owl-nav-vtop .owl-next .fa:hover {
  color: #BB4670 !important;
}

.services-crousel {
  margin: 80px 0 50px 0;
}

.fa-2x {
  font-size: 50px !important;
}

.clip-img {
  -webkit-clip-path: polygon(100% 0, 0 100%, 0 0);
          clip-path: polygon(100% 0, 0 100%, 0 0);
  position: absolute;
  left: 0px;
  top: 0px;
  width: 68%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.service-column {
  margin-bottom: 30px;
}

.service-block {
  padding: 30px 30px 50px 30px;
  position: relative;
  text-align: center;
  min-height: 100%;
  background: rgb(255, 242, 229);
  padding-top: 200px;
  background: linear-gradient(52deg, rgb(255, 242, 229) 0%, rgb(252, 251, 219) 100%);
}
.service-block h3 {
  font-weight: 900;
  color: #000;
}

.icon-btn {
  background: #fff;
  border: 0px;
  font-size: 18px;
  box-shadow: 0 15px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  color: #F2C94C;
  text-decoration: none;
}
.icon-btn:hover {
  background-color: #F2C94C;
  color: #000;
}

.custom-tab {
  margin: 0px 0 15px 0;
  border: 0px;
  justify-content: space-between;
}
.custom-tab .nav-link {
  border: 0px;
  border-bottom: 3px solid transparent;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 500;
  font-size: 32px;
  color: #000;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .custom-tab .nav-link {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .custom-tab .nav-link {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 16px;
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .custom-tab .nav-link {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 15px;
    margin-top: 10px;
  }
}
.custom-tab .nav-link.active {
  color: #F2C94C;
  border-color: #F2C94C;
}
.custom-tab .nav-link.active {
  color: #F2C94C;
  border-color: #F2C94C;
}

.active.current .nav-link {
  color: #F2C94C;
  border-color: #F2C94C;
}

.tab-content-services h3 {
  font-size: 48px;
  color: #c0820e;
  margin: 50px 0;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .tab-content-services h3 {
    font-size: 38px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .tab-content-services h3 {
    font-size: 30px;
    margin: 15px 0;
  }
}
@media (max-width: 767px) {
  .tab-content-services h3 {
    font-size: 20px;
    margin: 10px 0;
  }
}
.tab-content-services p {
  font-size: 24px;
  line-height: 38px;
  color: #000;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .tab-content-services p {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .tab-content-services p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tab-content-services p {
    font-size: 16px;
  }
}
.tab-content-services p strong {
  font-weight: 500;
  color: #818181;
}

.emergency-section {
  background: #f05e86;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #f05e86 0%, #6a81fa 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f05e86", endColorstr="#6a81fa", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .emergency-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .emergency-section {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .emergency-section {
    padding: 30px 0;
  }
}
.emergency-section .section-title {
  margin-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 1185px) {
  .emergency-section .section-title {
    margin-bottom: 15px;
  }
}
.emergency-section .emergency-content p {
  font-size: 24px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 64px;
}
@media (min-width: 768px) and (max-width: 1185px) {
  .emergency-section .emergency-content p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}

.frame {
  padding: 38px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.5);
}
.frame img {
  border-radius: 24px;
}

.after-star-frame {
  position: relative;
}
.after-star-frame:after {
  content: "";
  left: 0;
  background: url(../images/white-dotted.svg);
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  height: 100%;
  right: 8px;
  z-index: 2;
  background-position: right;
  background-size: 82px;
  top: 0;
}

picture {
  display: block;
}
picture img {
  width: 100%;
}

.health-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .health-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .health-section {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .health-section {
    padding: 30px 0;
  }
}

.helth-content ul {
  margin: 0px 0 70px 0;
  padding: 0px 0 0 24px;
}
@media (min-width: 768px) and (max-width: 1185px) {
  .helth-content ul {
    margin-bottom: 15px;
  }
}
.helth-content ul li {
  font-size: 24px;
  line-height: 38px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .helth-content ul li {
    font-size: 18px;
    line-height: normal;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .helth-content ul li {
    font-size: 16px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .helth-content ul li {
    font-size: 15px;
    line-height: 24px;
  }
}

.picture-frame-rotate {
  position: relative;
}
.picture-frame-rotate:after {
  content: "";
  left: 0;
  top: 0px;
  background: #E9E9E9;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: rotate3d(1, 1, 1, -13deg);
  z-index: -2;
}
@media (max-width: 767px) {
  .picture-frame-rotate:after {
    left: 10px;
    right: 10px;
    width: auto;
  }
}

.rounded-md {
  border-radius: 50px;
}

.picture-frame {
  max-width: 614px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .picture-frame {
    max-width: 500px;
  }
}

.health-row {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (min-width: 768px) and (max-width: 1185px) {
  .health-row {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .health-row {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.text-danger {
  color: #c0820e !important;
}

.emi-facilites-section {
  background: rgb(111, 134, 250);
  background: linear-gradient(52deg, rgb(111, 134, 250) 0%, rgb(96, 232, 235) 100%);
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .emi-facilites-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .emi-facilites-section {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .emi-facilites-section {
    padding: 30px 0;
  }
}
@media (max-width: 1181px) {
  .emi-facilites-section {
    margin-top: 15px !important;
  }
}

.facilites-content h4 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 30px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .facilites-content h4 {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .facilites-content h4 {
    font-size: 20px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .facilites-content h4 {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 10px;
  }
}

.testimonial-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .testimonial-section {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .testimonial-section {
    padding: 30px 0;
  }
}

.carousel-3d-slide {
  background: #fff !important;
  padding: 70px 50px;
  box-shadow: 0 0px 15px #ccc;
  min-width: 500px;
  border-radius: 33px !important;
  height: auto !important;
  border: none !important;
  margin: 10px !important;
}
.carousel-3d-slide h6 {
  color: #c0820e;
  margin-top: 50px;
}
.carousel-3d-slide .position {
  display: none !important;
}

.carousel-3d-container[data-v-07917306] {
  height: 450px !important;
}

.carousel-3d-container a[aria-label="Previous slide"] span {
  font-size: 0px;
}

.carousel-3d-container a[aria-label="Previous slide"] span::before {
  display: inline-block;
  color: #c0820e;
  font-size: 38px;
  content: "\f104";
  font-family: FontAwesome;
}

.carousel-3d-container a[aria-label="Next slide"] span {
  font-size: 0px;
}

.carousel-3d-container a[aria-label="Next slide"] span::before {
  display: inline-block;
  font-size: 38px;
  color: #c0820e;
  content: "\f105";
  font-family: FontAwesome;
}

.faq-block {
  background: #f05e86;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #f05e86 0%, #6a81fa 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f05e86", endColorstr="#6a81fa", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
  border-radius: 50px;
  padding: 56px;
  text-align: center;
}
@media (max-width: 767px) {
  .faq-block {
    padding: 30px;
  }
}
.faq-block.add-block {
  background: #fff;
  box-shadow: 0 0 6px #ccc;
}
.faq-block.add-block h3 {
  font-size: 32px;
  color: #000;
  margin: 40px 0;
}
@media (max-width: 767px) {
  .faq-block.add-block h3 {
    margin: 20px 0 10px 0;
  }
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .faq-block.add-block h3 {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .faq-block.add-block h3 {
    font-size: 24px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .faq-block.add-block h3 {
    font-size: 16px;
    line-height: normal;
  }
}
.faq-block.add-block p {
  font-size: 24px;
  color: #000;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .faq-block.add-block p {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .faq-block.add-block p {
    font-size: 16px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .faq-block.add-block p {
    font-size: 15px;
    line-height: 24px;
  }
}
.faq-block picture {
  width: 252px;
  height: 252px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 100%;
  background: #000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
@media (max-width: 767px) {
  .faq-block picture {
    width: 108px;
    height: 108px;
  }
}
.faq-block picture img {
  width: 150px;
}
.faq-block h3 {
  font-size: 56px;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .faq-block h3 {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .faq-block h3 {
    font-size: 30px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .faq-block h3 {
    font-size: 20px;
    line-height: normal;
  }
}
.faq-block p {
  text-align: left;
  font-size: 16px;
}
@media (max-width: 767px) {
  .faq-block p {
    font-size: 15px;
    line-height: 24px;
  }
}
.faq-block p a {
  color: #000;
  font-size: 32px;
}
.faq-block p a.email {
  font-size: 24px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .faq-block p a.email {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .faq-block p a.email {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .faq-block p a {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .faq-block p a {
    font-size: 20px;
  }
}

.form-control-styled {
  border-color: #c0820e !important;
  min-height: 50px;
}

.contact-block {
  border: 1px solid #c0820e;
  padding: 60px 120px;
  height: 100%;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .contact-block {
    height: auto;
    margin-bottom: 15px;
  }
}
.contact-block h3 {
  font-size: 56px;
  color: #c0820e;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .contact-block h3 {
    font-size: 46px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .contact-block h3 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .contact-block {
    padding: 50px 120px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .contact-block {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .contact-block {
    padding: 15px 30px;
  }
}

footer {
  background: #272525;
  padding-top: 70px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  footer {
    padding-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  footer {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  footer {
    padding-top: 20px;
  }
}
footer .logo-container {
  margin: 0 0 50px 0;
  text-align: center;
  display: block;
}
footer .logo-container img {
  display: inline-block;
}

.social-list {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
@media (max-width: 767px) {
  .social-list {
    margin-bottom: 30px;
    margin-top: 15px;
  }
}
.social-list li {
  display: inline-block;
  margin-right: 20px;
}
.social-list li a {
  text-decoration: none;
}
.social-list li a .fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  vertical-align: middle;
  background: #000;
  color: #fff;
}
.social-list li a:hover .fa {
  background: #b02a37;
}

.footer-column h3 {
  font-size: 32px;
  margin-bottom: 25px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .footer-column h3 {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .footer-column h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .footer-column h3 {
    font-size: 18px;
  }
}
.footer-column h3 p {
  font-size: 24px;
  line-height: 38px;
}
.footer-column h3 h4 {
  font-size: 24px;
  line-height: 38px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 700 !important;
}

.got-question-section {
  padding: 50px 0 114px 0;
}

.resonal-center h5 {
  font-size: 24px;
  font-weight: bold;
  color: #F2C94C;
}
@media (max-width: 767px) {
  .resonal-center h5 {
    font-size: 18px;
    margin-bottom: 0px !important;
  }
}
.resonal-center p {
  font-size: 15px;
  color: #fff;
}
@media (max-width: 767px) {
  .resonal-center h4 {
    margin-bottom: 15px !important;
  }
}

.foot-copyright {
  display: grid;
  height: 55px;
  width: 100%;
  background: #000;
  color: #fcfcfc;
  place-content: center;
}
@media (max-width: 767px) {
  .foot-copyright {
    height: 35px;
  }
}
.foot-copyright p {
  margin: 0;
  font-size: 13px;
}
@media (max-width: 767px) {
  .foot-copyright p {
    font-size: 12px;
  }
}

.founders-section,
.faqs-section {
  background-color: #fafafa;
  padding: 110px 0;
}

.founders-section .section-title {
  margin-bottom: 50px;
}

.founder-card {
  border: 1px solid #c0820e;
  border-radius: 20px;
  padding: 45px;
  align-items: center;
}
@media (max-width: 767px) {
  .founder-card {
    text-align: center;
  }
}
.founder-card .card-img {
  position: relative;
  flex: 0 0 274px;
  max-width: 274px;
}
@media (max-width: 767px) {
  .founder-card .card-img {
    margin: 0 auto;
  }
}
.founder-card .card-img::after {
  content: "";
  display: inline-block;
  height: 180px;
  width: 1px;
  background-color: #c0820e;
  position: absolute;
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
}
.founder-card .card-img img {
  max-width: 274px;
  height: 274px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
.founder-card .card-body {
  margin-left: 120px;
}
.founder-card .card-body .card-head {
  font-size: 32px;
  color: #c0820e;
}
.founder-card .card-body .card-discription {
  font-size: 22px;
}

.questions {
  margin-bottom: 40px;
}
.questions h6 {
  font-size: 22px;
  font-weight: bold;
}
.questions p {
  font-size: 22px;
  font-weight: 400;
}

.contact-map {
  border-radius: 50px;
  overflow: hidden;
}

.contact-map iframe {
  height: 655px;
  width: 100%;
}

.contact-address {
  border-radius: 12px;
  border: 1px solid gray;
}

.about-gradiant-bg {
  background: #f05e86;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #f05e86 0%, #6a81fa 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f05e86", endColorstr="#6a81fa", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

.faq-gradiant-bg {
  background: rgb(144, 119, 216);
  background: linear-gradient(90deg, rgb(144, 119, 216) 0%, rgb(250, 92, 126) 100%);
}

footer hr {
  margin-top: 30px !important;
}

.dropdown-menu {
  min-width: 256px;
  left: 20px !important;
}

/*btn-only*/
.btn {
  min-width: 245px;
}
@media (max-width: 1024px) {
  .btn {
    min-width: 155px !important;
  }
}

.btn-light:hover {
  color: #000;
  background-color: #fff;
  border-color: #F2C94C;
}

.btn-danger:hover {
  color: #B41644;
  background-color: #fff;
  border-color: #B41644;
}

.partner-crousel .item {
  text-align: center;
}

.partner-crousel .item img {
  width: auto !important;
  display: inline-block;
  height: 65px;
}

.helth-content h3 {
  font-size: 48px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .helth-content h3 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .helth-content h3 {
    font-size: 20px;
  }
}

.facilites-content {
  padding-left: 50px;
}

.facilites-content p {
  font-size: 24px;
}
@media (max-width: 767px) {
  .facilites-content p {
    font-size: 15px;
    line-height: 24px;
  }
}

.emi-facilites-section .section-title {
  margin-bottom: 60px;
}

.seems-tab-slider button {
  padding: 0px;
}

.service-img-block img {
  border-radius: 6px;
}

.mobile-terms ul {
  list-style: none;
  margin: 0px 0 30px 0;
  padding: 0px;
}

header {
  position: fixed;
  z-index: 9;
  top: 0px;
  left: 80px;
  right: 80px;
}
@media (max-width: 767px) {
  header {
    left: 0px;
    right: 0px;
    background: #000;
  }
}

.top-nav {
  border-radius: 0 0 30px 30px;
  background: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
}
.top-nav ul {
  margin: 0px;
  padding: 0px;
}
.top-nav ul li {
  display: inline-block;
  padding: 0 5px;
}
.top-nav ul li a {
  color: #000;
}
.top-nav p {
  margin-bottom: 0px;
  padding: 0px;
}
.top-nav p a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 767px) {
  .top-nav {
    display: none;
  }
}

.business-hrs {
  margin: 0px;
  padding: 0px;
  max-width: 60%;
}
.business-hrs li {
  list-style: none;
  color: #fff;
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
}

.input-group-custom {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
}
.input-group-custom .form-control {
  border: 0px;
  box-shadow: none;
}
.input-group-custom .input-group-text {
  background: none;
  padding: 0px;
}
.input-group-custom .btn {
  border: 0px;
}

footer hr {
  background-color: #ccc;
}

.make-appointment-section {
  background: url(../images/left-bg.jpg) no-repeat left top, url(../images/right-bg.jpg) no-repeat right top;
  background-size: 40% auto;
  background-attachment: fixed;
}
.make-appointment-section .form-control {
  min-height: 55px;
}
.make-appointment-section .btn {
  border-radius: 5px;
  width: 100%;
}

.service-provide {
  background: #d9a960;
  padding: 50px;
}
@media (max-width: 1024px) {
  .service-provide {
    padding: 15px;
  }
}

.portfolio-section {
  background: #fff;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (min-width: 1200px) and (max-width: 1680px) {
  .portfolio-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1185px) {
  .portfolio-section {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .portfolio-section {
    padding: 30px 0;
  }
}
.portfolio-section .img-port {
  margin-bottom: 30px;
}
.portfolio-section img {
  width: 100%;
}

header, .navbar {
  transition: all ease-in-out 0.5s !important;
}

header.fixed {
  position: static !important;
}
header.fixed .navbar {
  z-index: 3;
  background: #000;
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  padding-bottom: 15px;
}
header.fixed .navbar img {
  max-height: 50px;
}
header.fixed .navbar .navbar-nav .nav-link {
  font-size: 16px;
}

.inner-header {
  /*min-height: 450px;*/
  min-height: 150px;
  background: rgb(0, 0, 0);
  background: linear-gradient(52deg, rgb(0, 0, 0) 35%, rgb(124, 125, 125) 100%);
}

.inner-header h1{display:none!important}

.inner-header.banner-caption {
  width: 100%;
  padding-top: 20px !important;
  
  /*padding-top: 250px !important;*/
}/*# sourceMappingURL=layout.css.map */