/*--------- Copyright (c) 2021 ---------
[Master Stylesheet] 
Project: Health Care - Responsive Html Template
Version: 1.0.0 
Author: Kamleshyadav
--------------------------
[Table of contents] 
1. body 
2. Top Header
3. Main Header
4. Banner Slider
5. Services
6. about
7. team
8. counter
9. contact
10. blog
11. testimonial
12. footer
---------------*/
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #1f2732;
}
a {
  color: #1f2732;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
  color: #1abc9c;
}
:focus {
  outline: none;
}
p {
  margin-bottom: 1.5rem;
}
input,
textarea {
  border: 1px solid #eee;
  outline: none;
  padding: 10px 15px;
  border-radius: 50px;
  width: 100%;
}
textarea {
  border-radius: 10px;
  height: 130px;
  resize: none;
}
.hc-spacer-top {
  padding-top: 20px;
}
.hc-spacer-bottom {
  /* padding-bottom: 80px; */
}
.hc-spacer-high {
  padding-top: 100px;
}
.hc-btn {
  display: inline-block;
  min-width: 140px;
  background: #1abc9c;
  color: #fff;
  text-transform: capitalize;
  outline: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  border: none;
  border-radius: 50px;
  transition: 0.3s;
  max-width: max-content;
  line-height: normal;
  position: relative;
  box-shadow: 0px 0px 0px 4px rgb(26 188 156 / 0.15);
}
.hc-btn:hover {
  background: #1abc9c;
  color: #fff;
  box-shadow: 0px 0px 0px 4px rgb(26 188 156 / 0.5);
  transform: scale(1.05);
}
.hc-btn:focus {
  outline: none;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
.hc-sub-heading {
  font-size: 20px;
  color: #1abc9c;
  position: relative;
  text-transform: capitalize;
}
.hc-sub-heading:after,
.hc-heading-wrap.text-center .hc-sub-heading:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #1abc9c;
  top: 0;
  bottom: 0;
  margin: auto 0 auto 15px;
}
.hc-heading-wrap.text-center .hc-sub-heading:before {
  margin-left: -65px;
}
.hc-heading {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 40px;
}
/* Main Css Start */

/* top header start */
.hc-top-header {
  background: #1abc9c;
  padding: 10px 0px;
}
.hc-top-head-div {
  padding: 5px 0px;
}
.hc-top-head-div p {
  margin: 0;
  color: #fff;
  font-weight: 500;
}
.hc-top-head-div span svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}
.hc-top-head-div span {
  margin-right: 5px;
  vertical-align: middle;
  width: 29px;
  height: 29px;
  background: #1abc9c;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.hc-top-head-right {
  text-align: right;
}
.hc-top-header .row,
.hc-main-header .row {
  display: flex;
  align-items: center;
}
/* top header end */
/* main header start */
.hc-main-head-flex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hc-navbar > ul > li a {
  text-transform: capitalize;
}
.hc-navbar > ul > li > a {
  padding: 15px 0px;
  display: inline-block;
}
.hc-main-header {
  padding: 10px 0;
  box-shadow: 0 10px 20px 0 rgb(0 0 0 / 3%);
  z-index: 5;
  background: #fff;
  top: -80px;
}
.hc-main-header.hc-header-sticky {
  position: sticky;
  top: 0;
  z-index: 99;
  transition: 1s;
}
.hc-has-submenu:after {
  position: absolute;
  content: "";
  right: 0;
  width: 6px;
  height: 6px;
  background: transparent;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto;
}
.hc-navbar > ul > li.hc-has-submenu > a {
  padding-right: 15px;
}
.hc-head-btn {
  margin-left: 20px;
}
li.hc-home-new {
  position: relative;
}
li.hc-home-new:after {
  position: absolute;
  content: "New";
  left: -9px;
  top: 0px;
  font-size: 8px;
  background: #ffffff;
  padding: 2px 8px;
  color: #1abc9c;
  border-radius: 30px;
  transform: rotate(-40deg);
  border: 1px dashed;
  animation: 0.5s hc_home_new linear alternate infinite;
}
@keyframes hc_home_new {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* main header end */
/* banner start */
.hc-banner {
  position: relative;
  overflow: hidden;
}
.hc-banner-content {
  padding: 100px 0;
  z-index: 2;
  position: relative;
}
.hc-banner-content h2 {
  font-size: 20px;
  color: #1abc9c;
  position: relative;
}
.hc-banner-content h1 {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 25px;
}
.hc-banner-box p {
  margin: 0;
}
.hc-banner-box {
  margin-bottom: 40px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 20px 0 #eee;
  border-left: 2px solid #1abc9c;
}
.hc-banner-content h2:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #1abc9c;
  top: 0;
  bottom: 0;
  margin: auto 0 auto 15px;
}
.hc-banner-img {
  text-align: center;
  position: relative;
  margin: auto;
  width: fit-content;
  width: -moz-fit-content;
  z-index: 10;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
.hc-banner-img:after,
.hc-banner-img:before {
  position: absolute;
  content: "";
  max-width: 400px;
  left: 20px;
  right: 20px;
  top: 20px;
  background: rgb(255 255 255 / 70%);
  z-index: 0;
  margin: auto;
  box-shadow: 0 0 20px 0 #eee;
  bottom: 20px;
  border-radius: 5px;
}
.hc-banner-img:before {
  top: 50px;
  bottom: 50px;
  left: 50px;
  right: 50px;
  z-index: 1;
}
.hc-banner-img img {
  z-index: 2;
  position: relative;
}
.hc-banner:after {
  position: absolute;
  content: "";
  right: -200px;
  top: -100px;
  bottom: -200px;
  background: #1abc9c;
  max-width: 765px;
  width: 100%;
  z-index: 0;
  transform: rotate(15deg);
}
.hc-banner-shape {
  position: absolute;
  top: 100px;
  right: 10px;
  border: solid 1px black;
}
.hc-banner-shape span {
  width: 235px;
  height: 235px;
  background: radial-gradient(#ffffff 2px, transparent 0px);
  z-index: 1;
  position: absolute;
  top: 100px;
  right: 100px;
  background-size: 20px 20px;
  opacity: 0.5;
  transform: rotate(-10deg);
}
.hc-banner:before {
  position: absolute;
  content: "";
  left: -150px;
  bottom: 0;
  width: 300px;
  height: 300px;
  background: #1abc9c;
  border-radius: 100%;
  opacity: 0.1;
}
/* banner end */
/* services start */
.hc-service,
.hc-team {
  padding-bottom: 50px;
  /* ab-edit */
  margin-top: 100px;
}
.hc-service-box {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 #eee;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  transition: 0.3s;
}
.hc-service-box:hover {
  box-shadow: 3px 3px 0 5px rgb(26 188 156 / 0.15);
}
.hc-service-box p {
  margin-bottom: 0;
  font-size: 13px;
  text-align: center;
}
.hc-service-title {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 16px;
}
.hc-service-icon {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1abc9c;
  margin: 0 auto 20px;
  border-radius: 10px;
  box-shadow: 0 0 0 5px rgb(253 150 120 / 15%);
}
.hc-service-ico-clr1 {
  background: #4fcecd;
  box-shadow: 0 0 0 5px rgb(79 206 205 / 15%);
}
.hc-service-ico-clr2 {
  background: #5aa2ec;
  box-shadow: 0 0 0 5px rgb(90 162 236 / 15%);
}
.hc-service-ico-clr3 {
  background: #fbbb1c;
  box-shadow: 0 0 0 5px rgb(251 187 28 / 15%);
}
.hc-service-arrow svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: 0.3s;
  fill: #1f2732;
}
.hc-service-arrow {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px 0 #eee;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -45px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.hc-service-box:hover .hc-service-arrow {
  bottom: -25px;
  opacity: 1;
  visibility: visible;
}
.hc-service-arrow:hover {
  background: #1abc9c;
  box-shadow: 0 0 0 5px rgb(253 150 120 / 15%);
}
.hc-service-arrow:hover svg {
  fill: #fff;
}
/* services end */
/* about start */
.hc-about,
.hc-blog {
  background: #faeeec;
  /* ab-edit */
  margin-top: 100px !important;
  padding: 90px 0 !important;
}
.hc-tab-list li {
  margin-right: 30px;
}
.hc-tab-list li a {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 3px;
}
.hc-tab-list li:last-child {
  margin-right: 0;
}
.hc-tab-list li a.active {
  border-bottom: 2px solid #1abc9c;
  color: #1abc9c;
}
.hc-tab-content {
  margin-top: 40px;
}
.hc-tab-content {
  margin-bottom: 30px;
}
.hc-image-style img {
  border-radius: 60% 10% 70% 60%/170% 80% 32% 40%;
  z-index: 2;
  position: relative;
}
.adity {
  position: relative;
  left: 40px;
}
.hc-image-style {
  position: relative;
}
.hc-image-style:after,
.hc-image-style:before {
  width: 160px;
  height: 160px;
  background: radial-gradient(#1abc9c 2px, transparent 0px);
  z-index: 0;
  position: absolute;
  top: 30px;
  right: 50px;
  background-size: 10px 10px;
  content: "";
  opacity: 0.5;
  transform: rotate(65deg);
}
.hc-image-style:after {
  right: auto;
  left: -40px;
  bottom: 0;
  top: auto;
  background: radial-gradient(#1abc9c 2px, transparent 0px);
  background-size: 10px 10px;
}
/* about end */
/* team start */
.hc-team-box {
  box-shadow: 0 0 20px 0 #eee;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  width: 100%;
  margin: 0 15px 30px;
  max-width: 332px;
}

/* .ab-founder {
  display: flex;
  flex-direction: column;
} */

.hc-team-name {
  font-size: 24px;
  margin-bottom: 0;
  margin-top: 20px;
}
.hc-team-designation {
  font-size: 18px;
  color: #1abc9c;
  margin-bottom: 0;
  margin-top: 10px;
}
.hc-team-img img {
  width: 100px;
  height: 100px;
  display: block;
  margin: auto;
  object-fit: cover;
  border-radius: 100%;
  box-shadow: 0 10px 20px 0 rgb(0 0 0 / 15%);
  border: 1px solid #fff;
}
.hc-dr-rating {
  font-size: 14px;
  color: #1abc9c;
  position: absolute;
  left: 0;
  top: 20px;
  padding: 3px 10px;
  background: rgb(253 150 120 / 15%);
  border-radius: 0 30px 30px 0;
}
.hc-team-box p {
  margin-bottom: 0;
  margin-top: 20px;
}
.hc-team-box {
  cursor: pointer;
}
.hc-team-social {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #eee;
}
.hc-team-social li {
  margin-right: 8px;
  display: inline-block;
}
.hc-team-social li:last-child,
.hc-blog-social li:last-child {
  margin-right: 0;
}
.hc-team-social li a,
.hc-blog-social li a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #eee;
  font-size: 16px;
  border-radius: 100%;
}
.hc-team-social li a:hover,
.hc-blog-social li a:hover {
  box-shadow: 0 0 0 3px rgb(253 150 120 / 15%);
}
.hc-team-box:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #1abc9c;
  width: 0;
  transition: 0.3s;
  margin: auto;
}
.hc-team-box:hover:after {
  width: 80%;
}
.hc-team-tab-list ul li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 8px;
}
.hc-team-tab-list {
  text-align: center;
  margin-bottom: 20px;
}
.hc-team-tab-list ul li:last-child {
  margin: 0;
}
.hc-team-tab-list ul li a {
  border: 1px solid #eee;
  padding: 2px 20px;
  display: inline-block;
  border-radius: 50px;
  cursor: pointer;
}
.hc-team-tab-list ul li a.hc-team-tab-active {
  color: #1abc9c;
  border-color: #1abc9c;
}
/* team end */
/* counters start */
.hc-counter {
  background: #1abc9c;
}
.hc-counter-wrap {
  margin-bottom: -200px;
}
.hc-counter-box {
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 10px 0 rgb(238 238 238 / 44%);
  margin-bottom: 30px;
}
.hc-count-head h2 {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 600;
}
.hc-count-data {
  display: flex;
  align-items: center;
}
.hc-count-icon {
  width: 60px;
}
.hc-count-head {
  width: calc(100% - 60px);
  padding-left: 15px;
}
.hc-counter-box p {
  margin-bottom: 0;
  margin-top: 20px;
}
.hc-count-no h2 {
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 800;
  opacity: 0.5;
  color: #1abc9c;
}
.hc-counter .hc-sub-heading,
.hc-counter .hc-heading {
  color: #fff;
}
.hc-counter .hc-sub-heading:after,
.hc-counter .hc-heading-wrap .hc-sub-heading:before {
  background: #fff;
}
/* counters end */
/* contact start */
.hc-contact-box label {
  display: block;
  font-weight: 500;
}
.hc-contact-box .hc-btn {
  margin-top: 30px;
}
.hc-contact-box input {
  margin-bottom: 15px;
}
.hc-map-box ul li {
  position: absolute;
}
.hc-map-box {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}
.hc-map-box ul li span {
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #1abc9c;
  color: #fff;
  border-radius: 100%;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
}
.hc-map-address {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 210px;
  margin-top: 15px;
  box-shadow: 0 0 20px 0 #eee;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: translateY(5px);
  z-index: 1;
}
.hc-map-box ul li:hover .hc-map-address {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.hc-map-address p {
  margin-bottom: 0;
}
.hc-map-address:after {
  position: absolute;
  content: "";
  left: 20px;
  top: -10px;
  border-top: 10px solid rgb(255 255 255 / 0%);
  border-left: 10px solid #1abc9c;
}
.hc-map-box ul li:nth-child(1) {
  bottom: 110px;
  right: 130px;
}
/* .hc-map-box ul li:nth-child(2) {
    top: 100px;
    right: 100px;
}
.hc-map-box ul li:nth-child(3) {
    bottom: 100px;
    right: 260px;
} */
.response {
  margin-top: 10px;
}
/* contact end */
/* blog start */
.hc-blog {
  padding-bottom: 30px;
}
.hc-blog-data {
  box-shadow: 0 8px 20px 0 #eee;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  top: -50px;
  left: 0;
  right: 0;
  width: 85%;
  background: #fff;
  margin: auto;
  transition: 0.3s;
}
.hc-blog-box:hover .hc-blog-data {
  box-shadow: 3px 3px 0 5px rgb(253 150 120 / 15%);
}
.hc-blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hc-blog-title {
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 0;
}
.hc-blog-data p {
  margin-bottom: 0;
  margin-top: 10px;
}
.hc-blog-more {
  margin-top: 15px;
  color: #1abc9c;
  font-weight: 500;
  display: block;
}
.hc-blog-more i {
  padding-left: 3px;
}
.hc-blog-more:hover {
  letter-spacing: 1px;
}
.hc-blog-img img {
  border-radius: 10px;
}
.hc-blog-social li {
  margin-right: 3px;
  display: inline-block;
}
/* blog end */
/* testimonial start */
.hc-testi-img img {
  width: 100px;
  height: 100px;
  margin: auto;
  object-fit: cover;
  border-radius: 100%;
  box-shadow: 0 10px 20px 0 rgb(0 0 0 / 15%);
  border: 1px solid #fff;
}
.hc-testi-img {
  padding-bottom: 20px;
}
.hc-testimonial .swiper-slide {
  opacity: 0;
}
.hc-testimonial .swiper-slide.swiper-slide-active,
.hc-testimonial .swiper-slide.swiper-slide-prev,
.hc-testimonial .swiper-slide.swiper-slide-next {
  opacity: 1;
}
.hc-testi-nav {
  position: absolute;
  top: 95px;
  height: 50px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 500px;
}
.hc-testi-data {
  position: relative;
}
.hc-testi-data svg {
  width: 110px;
  height: 110px;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: 0;
  margin: auto;
  fill: #58495e;
  opacity: 0.07;
}
.hc-testi-data p {
  margin-top: 15px;
  margin-bottom: 0px;
}
.hc-testi-data h4 {
  font-weight: 500;
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 0;
}
.hc-testi-data h5 {
  font-size: 14px;
  margin: 8px 0 0;
  color: #1abc9c;
}
.hc-testi-nav .swiper-button-prev,
.hc-testi-nav .swiper-button-next {
  background: transparent;
  box-shadow: none;
}
.hc-testi-nav .swiper-button-prev::before,
.hc-testi-nav .swiper-button-next::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 25px;
  height: 2px;
  background: #ccc;
  margin: auto;
  transition: 0.3s;
}
.hc-testi-nav .swiper-button-prev:after,
.hc-testi-nav .swiper-button-next:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  background: transparent;
  border-left: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  transform: rotate(45deg);
  margin: auto;
  transition: 0.3s;
}
.hc-testi-nav .swiper-button-prev:hover::after,
.hc-testi-nav .swiper-button-next:hover::after {
  border-left-color: #1abc9c;
  border-bottom-color: #1abc9c;
}
.hc-testi-nav .swiper-button-prev:hover::before,
.hc-testi-nav .swiper-button-next:hover::before {
  background: #1abc9c;
}
.hc-testi-nav .swiper-button-prev::before {
  left: 10px;
}
.hc-testi-nav .swiper-button-next::before {
  right: 10px;
}
.mt-em-testimonial .swiper-button-prev,
.mt-em-testimonial .swiper-button-next,
.hc-testimonial .swiper-slide-shadow-left,
.hc-testimonial .swiper-slide-shadow-right {
  background-image: none;
  outline: none;
}
.hc-testi-box {
  text-align: center;
}
.hc-testi-nav .swiper-button-next:after {
  transform: rotate(225deg);
  right: -10px;
}
/* testimonial end */
/* footer start */
.hc-footer {
  background: #1abc9c;
}
.hc-footer-logo {
  text-align: center;
}
.hc-footer-contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding-bottom: 10px;
}
.hc-foot-contact-box h2,
.hc-foot-contact-box p a,
.hc-footer-links li a {
  color: #fff;
}
.hc-footer-links li a:hover {
  color: #1abc9c;
}
.hc-foot-contact-box h2 {
  font-size: 22px;
  margin-bottom: 5px;
}
.hc-foot-contact-box p {
  margin-bottom: 0;
}
.hc-footer-links {
  padding-top: 40px;
}
.hc-footer-contact-list li {
  border-right: 1px solid #323d4c;
}
.hc-footer-contact-list li:last-child {
  border: none;
}
.hc-footer-links li {
  display: block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.hc-footer-links li:last-child {
  margin-bottom: 0;
}
.hc-footer-links li:before {
  position: absolute;
  content: "";
  left: 0;
  width: 10px;
  height: 2px;
  background: #1abc9c;
  top: 0;
  bottom: 0;
  margin: auto;
}
/* footer end */
/* copyright start */
.hc-copyright {
  background: #283240;
  padding: 5px 0;
  font-size: 12px;
  text-align: center;
}
.hc-copyright p {
  margin-bottom: 0;
  color: #fff;
}
/* copyright end */
/* appointment start */
.modal-header button.close {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 23px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 2px solid #fff;
  background: #f44336;
  opacity: 1;
  border-radius: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  outline: none;
}
.modal-content {
  border: none;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 15%);
}
.modal-content .hc-contact-box form {
  padding: 15px;
}
#hc-appointment .modal-header {
  background: #1abc9c;
  color: #fff;
}
/* appointment end */
/* go to top start */
.hc-go-top {
  width: 60px;
  height: 60px;
  line-height: 55px;
  text-align: center;
  background: #1abc9c;
  color: #fff;
  font-size: 25px;
  position: fixed;
  bottom: 50%;
  border-radius: 100%;
  right: 100px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hc-go-top.hc-go-top-show {
  bottom: 35px;
  opacity: 1;
  visibility: visible;
  transition: 1s;
}
.hc-go-top svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.hc-go-top:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  border-radius: 100%;
  z-index: -1;
  transition: 0.3s;
}
.hc-go-top:hover:after {
  animation: hc_gotop_wave 2s infinite;
}
@keyframes hc_gotop_wave {
  0% {
    box-shadow: 0px 0px 0px 0px #1abc9c;
  }
  100% {
    box-shadow: 0px 0px 0px 12px #1abc9c;
    opacity: 0;
  }
}
/* go to top end */
/* loader css start */
#hc-preloader {
  background-color: #000000;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2147483647;
}
.hc-loading {
  width: 100%;
  max-width: 550px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0px auto;
  margin-top: -90px;
}
.hc-loading svg {
  width: 100%;
  height: 100%;
}
.hc-loading #pulsar {
  stroke-dasharray: 281;
  -webkit-animation: dash 2.5s infinite linear forwards;
}
@-webkit-keyframes dash {
  from {
    stroke-dashoffset: 814;
  }
  to {
    stroke-dashoffset: -814;
  }
}
/* loader css end */
/* responsive start */
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
  .hc-submenu {
    background: #fff;
    box-shadow: 0 0px 20px 0 rgb(0 0 0 / 3%);
    border-top: 3px solid #1abc9c;
    border-bottom: 3px solid #1abc9c;
    position: absolute;
    top: 100%;
    max-width: 200px;
    width: max-content;
    min-width: 150px;
    padding: 8px 0;
    transform-origin: top;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: 0.3s;
    transform: scaleY(0);
  }
  .hc-submenu li {
    display: block;
  }
  .hc-submenu li a {
    display: block;
    padding: 5px 15px;
  }
  .hc-navbar > ul > li:hover .hc-submenu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }
  .hc-navbar > ul > li {
    display: inline-block;
    margin-right: 20px;
    position: relative;
  }
  .hc-navbar > ul > li:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1480px;
  }
}
@media screen and (max-width: 1199px) {
  .hc-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1f2732;
    margin-bottom: 4px;
    transition: 0.3s;
  }
  .hc-menu-toggle span:nth-child(3) {
    margin-bottom: 0px;
  }
  .hc-menu-toggle span:nth-child(2) {
    width: 12px;
    background: #1abc9c;
    margin-left: auto;
    margin-right: auto;
  }
  .hc-menu-toggle {
    width: 22px;
    text-align: center;
  }
  .hc-open-menu .hc-menu-toggle span:nth-child(3) {
    transform: translate(1px, -9px) rotate(48deg);
  }
  .hc-open-menu .hc-menu-toggle span:nth-child(1) {
    transform: translate(1px, 6px) rotate(-48deg);
  }
  .hc-open-menu .hc-menu-toggle span:nth-child(2) {
    transform: translateY(9px);
    width: 24px;
    transition: 0.3s;
    height: 5px;
    background: #1abc9c;
    border-radius: 5px;
  }
  .hc-main-head-flex {
    justify-content: flex-end;
  }
  .hc-navbar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -270px;
    width: 260px;
    background: #fff;
    z-index: 99;
    transition: 0.3s;
    overflow-y: auto;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
    text-align: left;
  }
  .hc-open-menu .hc-navbar {
    left: 0;
  }
  .hc-navbar > ul li {
    border-bottom: 1px solid #eee;
    position: relative;
  }
  .hc-navbar > ul li:last-child {
    border-bottom: 0;
  }
  .hc-navbar > ul li a {
    padding: 15px;
    display: inline-block;
  }
  .hc-navbar ul.hc-submenu li:first-child {
    border-top: 1px solid #eee;
  }
  ul.hc-submenu {
    display: none;
  }
  .hc-has-submenu:after {
    right: 15px;
    top: 23px;
    bottom: auto;
  }
  .hc-team-box {
    max-width: 280px;
  }
  .hc-banner-content {
    padding: 60px 0;
  }
  .hc-banner-content h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .hc-map-address {
    width: auto;
  }
  .hc-about-content {
    padding-top: 50px;
  }
  .hc-team-box {
    max-width: 310px;
  }
  .hc-go-top {
    right: 50px;
  }
  .hc-banner-img {
    position: unset;
  }
  .hc-banner-shape,
  .hc-banner:after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hc-top-head-div,
  .hc-top-head-right {
    text-align: center;
  }
  .hc-footer-contact-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .hc-footer-contact-list li {
    border-right: 0px solid #323d4c;
    border-bottom: 1px solid #323d4c;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .hc-footer-contact-list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .hc-main-head-flex {
    /* justify-content: center; */
    margin-top: -35px;
  }
  .hc-logo {
    /* text-align: center; */
    margin-bottom: 10px;
  }
  .hc-blog-img img {
    width: 100%;
  }
  .hc-team-box {
    max-width: 100%;
    margin: 0 0px 30px;
  }
  .hc-spacer-bottom {
    padding-bottom: 50px !important;
  }
  .hc-spacer-top {
    padding-top: 50px;
  }

  .ab-margin {
    margin-top: 2rem;
  }
  .hc-blog {
    padding-bottom: 10px;
  }
  .hc-service,
  .hc-team {
    padding-bottom: 30px;
  }
  .hc-map-box {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .hc-testi-img img {
    width: 80px;
    height: 80px;
  }
  .hc-heading {
    font-size: 30px;
  }
  .hc-go-top {
    width: 50px;
    height: 50px;
  }
  .adity {
    left: 0px;
  }
  .hc-go-top svg {
    width: 15px;
    height: 15px;
  }
  .hc-heading-wrap.text-center .hc-sub-heading:before {
    margin-left: -45px;
  }
  .hc-sub-heading:after,
  .hc-heading-wrap.text-center .hc-sub-heading:before {
    width: 30px;
  }
  .hc-go-top.hc-go-top-show {
    bottom: 20px;
  }
  .hc-go-top {
    right: 20px;
  }
  .hc-tab-list li {
    margin-right: 15px;
  }
  .hc-tab-content {
    margin-top: 20px;
  }
  .hc-blog-data {
    width: 95%;
  }
}

.img_container {
  position: relative;
  /* border: #000000 solid 1px; */
  z-index: 20;
  right: 150px;
}
.img_a {
  /* display:flex; */
  flex-wrap: wrap;
  /* width: 250px; */
}
/* responsive end */
.img_container_a {
  width: 250px !important;
  /* border: #000000 solid 1px;/ */
  border-radius: 20px;
  position: absolute;
  left: -170px;
  top: -80px;
  box-shadow: 7px 5px 28px 0px rgb(0, 0, 0);
}
.img_container_b {
  width: 200px;
  /* border: #000000 solid 1px; */
  position: absolute;
  border-radius: 20px;
  right: -100px;
  bottom: -50px;
  box-shadow: 3px 0px 28px 0px rgba(000, 000, 000, 1);
}
.img_container_c {
  width: 300px;
  border-radius: 20px;
}
.img_container_c img {
  object-fit: cover;
  width: 100%;
  height: 400px !important;
  z-index: 50 !important;
  border-radius: 20px;
}
.img_container_b img {
  border-radius: 20px;
}
.img_container_a img {
  border-radius: 20px;
}
