@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", "Roboto", sans-serif;
}

:root {
  --white: white;
  --light: rgb(248, 246, 246);
  --dark-light: rgb(197, 197, 197);
  --dark: rgb(20, 20, 20);
  --light-dark: rgba(51, 51, 51, 0.199);
  --prim: rgb(22, 163, 219);
}

nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1000;
  background: rgb(166, 250, 250);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.082);
}

.toggler {
  display: none;
}

a {
  text-decoration: none;
}

.header-icon {
  margin-left: 30px;
}

.header-icon img {
  width: 450px;
}

.nav-bar {
  color: black;
}

.nav-bar ul {
  list-style: none;
  display: flex;
}

.nav-bar ul li {
  padding: 0px 16px;
  position: relative;
  padding-top: 20px;
}

.nav-bar ul li a {
  color: black;
  font-size: 18px;
  position: relative;
  display: block;
  font-weight: 500;
  line-height: 70px;
  font-family: "Poppins", sans-serif;
}

.nav-bar ul li a:hover {
  color: var(--prim);
  text-decoration: none !important;
}

.drop-down-nav {
  width: 300px;
  position: absolute;
  top: 120px;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.075);
  transition: 0.5s ease;
  opacity: 0;
  visibility: hidden;
  padding: 10px 12px;
}

.drop-down-nav::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -15px;
  border: 8px solid transparent;
  border-bottom-color: var(--prim);
}

.drop-down-nav .drop-down-nav::before {
  left: -15px;
  top: 25px;
  border: 8px solid transparent;
  border-right-color: rgb(0, 0, 0);
}

.drop-down-nav .drop-down-nav {
  top: 10px;
  left: 120%;
}

ul.drop-down-nav li a {
  line-height: 20px;
}

ul.drop-down-nav li {
  padding: 10px 16px;
}

ul.drop-down-nav li:hover {
  background: var(--light);
}

.nav-bar li:hover > .drop-down-nav {
  top: 90px;
  visibility: visible;
  opacity: 1;
}

.nav-bar li .drop-down-nav li:hover > .drop-down-nav {
  left: 210px;
  top: 0;
  visibility: visible;
  opacity: 1;
}

.sidebar-logo {
  display: none;
}

@media screen and (max-width: 800px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80px;
    background: rgb(255, 255, 255);
    flex-direction: column;
    border-bottom: 4px solid rgb(74, 184, 248);
  }

  nav ul.nav-ul {
    z-index: 2000;
    line-height: 30px;
    background: var(--white);
    position: fixed;
    top: 0px;
    left: -100%;
    width: 80%;
    height: 100vh;
    transition: 0.7s ease-in-out;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.158);
    overflow-y: scroll;
  }

  nav ul.nav-ul.active {
    left: 0;
  }

  .nav-bar ul {
    flex-direction: column;
  }
  .nav-bar ul li{
    padding: 5px 10px;
  }
  .nav-bar ul li a {
    color: var(--dark);
    line-height: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 13px;
  }

  .drop-down-nav {
    position: initial;
    max-height: 0;
    background: transparent;
    border: 3px solid transparent;
    border-left-color: var(--prim);
    margin-left: 10px;
    padding: 0 !important;
  }

  .nav-bar ul li:hover > .drop-down-nav {
    max-height: initial;
  }

  .drop-down-nav::before {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    /* padding: 20px 0; */
    margin-top: 10px;
    cursor: pointer;
    animation: humanim 0.4s 1 delay ease-in inZZ;
  }

  .hamburger span {
    background: black;
    width: 28px;
    height: 2px;
    margin-bottom: 8px;
  }

  .hamburger span {
    transform-origin: left;
    transition: all 0.3s ease-in-out;
  }

  .header-icon img {
    width: 320px;
  }

  .header-icon {
    margin-left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .sidebar-logo {
    margin-top: 30px;
    display: inline-block;
  }

  .sidebar-logo img {
    width: 200px;
    margin-left: 40px;
  }
}

@media screen and (max-width: 800px) {
  .header-icon img {
    width: 280px;
  }
}

/* ********************************************************************************************************** */
/* *******************************************Header Carousel************************************************ */
/* ********************************************************************************************************** */
.item {
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.owl-nav {
  position: absolute;
  bottom: 10%;
  right: 10%;
}

.nav-btn {
  background-color: var(--dark);
  color: var(--white);
  border-radius: 50%;
  padding: 10px;
  border: 2px solid transparent;
  transition: 0.3s ease-in-out;
}

.nav-btn:hover {
  background: transparent;
  border: 2px solid rgb(255, 255, 255);
}

.owl-nav .owl-prev {
  margin-right: 20px;
}

.owl-nav .owl-next {
  margin-left: 20px;
}

.owl-nav .owl-prev:hover {
  background: none !important;
  outline: none;
}

.owl-nav .owl-prev:focus {
  outline: none;
}

.owl-nav .owl-next:hover {
  background: none !important;
  outline: none;
}

.owl-nav .owl-next:focus {
  outline: none;
}

.owl-dots {
  position: absolute;
  bottom: 5%;
  left: 47%;
}

.owl-dots.active {
  transition: 0.4s ease-in;
  transform: scale(1.6);
}

/* header carousel */

@media screen and (max-width: 800px) {
  .head-carousel {
    /* margin-top: 55px; */
  }

  .item {
    height: 350px;
    object-fit: fill;
    object-position: center;
  }

  .owl-nav {
    display: none;
  }

  .owl-dots {
    bottom: 10%;
    left: 37%;
  }
}

@media screen and (max-width: 500px) {
  /* .item {
    height: 280px;
  } */

  .owl-dots {
    bottom: 21%;
    left: 32%;
  }
}

/* ********************************************************************************************************** */
/* ****************************************** Header Carousel *********************************************** */
/* ********************************************************************************************************** */

/* ********************************************************************************************************** */
/* ****************************************** About Carousel *********************************************** */
/* ********************************************************************************************************** */
.about-us {
  padding-top: 40px;
}

.about-us h1 {
  padding: 10px 0;
  font-size: 35px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: rgb(17, 6, 173);
  text-align: center;
  padding-bottom: 6px;
  margin-bottom: 0px;
}

.about-us img {
  width: 100%;
}

.about-us h5 {
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.about-us h1 span {
  color: var(--prim);
}

.hr {
  margin-left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  margin-top: 10px;
  background: blue;
  margin-bottom: 30px;
}

.about-content p {
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  color: #1f1f1f;
  line-height: 160%;
  margin-bottom: 15px;
}

@media screen and (max-width: 800px) {
  .about-us {
    padding-top: 0px;
  }
  .about-us.separate-about {
    margin-top: 50px;
  }

  .about-us h1 {
    padding-bottom: 0px;
    font-size: 20px;
    /* text-align: left; */
  }

  .about-us h1 span {
    font-size: 30px;
    display: block;
  }

  .about-content p:first-child {
    margin-top: 20px;
  }
}

/* ********************************************************************************************************** */
/* ****************************************** About Carousel *********************************************** */
/* ********************************************************************************************************** */

/* ********************************************************************************************************** */
/* ****************************************** service page *********************************************** */
/* ********************************************************************************************************** */

.services-cards {
  padding: 40px 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.253),
      rgba(255, 255, 255, 0.11)
    ),
    url("https://assets.awwwards.com/awards/images/2015/04/pattern.jpg");
}

.service-card {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.service-card .service-card-out {
  padding: 0 18px;
}

.service-card .service-card-in {
  padding: 12px 22px;
  background: rgb(255, 255, 255);
  text-align: center;
  /* border: 1px solid rgb(109, 109, 109); */
  border-radius: 15px 5px 15px 5px;
  cursor: pointer;
  transition: 0.5s ease-in;
}

.service-card .service-card-in:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.24);
}

.service-card .service-card-in .service-content h4 {
  color: var(--prim);
  padding: 8px 0;
}

.service-btn a {
  text-decoration: none;
  color: black;
  transform: translateX(-50%);
  font-weight: 700;
}

.service-btn a:hover {
  transform: translateX(-3px);
  color: var(--prim);
}

.service-btn a:hover i {
  transform: translateX(3px);
}

@media screen and (max-width: 800px) {
  .service-card {
    flex-direction: column;
  }

  .service-card .service-card-out {
    padding: 0 0px;
    margin-top: 25px;
  }
}

/* ********************************************************************************************************** */
/* ****************************************** service oage *********************************************** */
/* ********************************************************************************************************** */

/* ********************************************************************************************************** */
/* ****************************************** Footer *********************************************** */
/* ********************************************************************************************************** */

.bg-voilet {
  background-color: var(--dark) !important;
}

.text-voilet {
  color: var(--dark) !important;
}

.bg-1 {
  background-image: url("https://images.pexels.com/photos/693776/pexels-photo-693776.jpeg?auto=compress&cs=tinysrgb&dpr=hu&h=650&w=940");
  background-color: var(--dark);
}

/* ********************************************************************************************************** */
/* ****************************************** Footer *********************************************** */
/* ********************************************************************************************************** */

/* ********************************************************************************************************** */
/* ****************************************** Service Page *********************************************** */
/* ********************************************************************************************************** */

.service-image {
  width: 100%;
}

.service-image img {
  width: 100%;
}

.service-content p {
  color: #212529;
  font-family: "Poppins", serif;
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  line-height: 1.8;
  margin-top: 15px;
}

.service-content p b {
  color: var(--prim);
  margin-right: 6px;
}

.service-content b {
  padding-bottom: 15px;
}

.service-content ul {
  margin-top: 10px;
  margin-left: 6px;
  list-style-type: none;
}
.service-content ul li {
  margin-top: 15px;
}
.service-content ul li i {
  color: var(--prim);
  margin-right: 4px;
}

.all-services h3 {
  font-family: "Poppins", sans-serif;
  color: var(--prim);
}

.all-services hr {
  width: 15%;
  border: 1px solid var(--prim);
}

.all-services ul {
  list-style-type: none;
}

.all-services ul li {
  padding: 12px 10px;
  margin-top: 5px;
  background: transparent;
  border: 1px solid var(--light-dark);
}

.all-services ul li:hover {
  padding: 12px 10px;
  margin-top: 5px;
  background: var(--light);
  border: 1px solid var(--light);
}

.all-services ul li a {
  color: var(--dark);
  font-weight: 600;
  transition: 0.3s ease-in;
}

.all-services ul li:hover > a {
  color: var(--prim);
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  .service-section {
    margin-top: 60px;
  }
}

/* ********************************************************************************************************** */
/* ****************************************** Service Page *********************************************** */
/* ********************************************************************************************************** */

/* ********************************************************************************************************** */
/* ****************************************** Appointment Page *********************************************** */
/* ********************************************************************************************************** */

/* Appointment */
.get-quote-area-3 {
  z-index: 1;
  margin: 0;
}

.get-quote-area {
  position: relative;
  z-index: 2;
}

.bg_img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

[data-overlay] {
  position: relative;
}

.pb-130 {
  padding-bottom: 130px;
}

.pt-130 {
  padding-top: 60px;
}

.get-qote-content {
  background: #fff;
  padding-left: 50px;
  padding-top: 65px;
  padding-bottom: 65px;
  -webkit-box-shadow: 0px 15px 30px #f5f5f5;
  box-shadow: 0px 15px 30px #00000042;
}

.get-quote-area .section-heading {
  margin-bottom: 30px;
}

.get-quote-area .section-heading .sub-title {
  margin-bottom: 13px;
}

.section-heading .sub-title {
  font-size: 14px;
  text-transform: uppercase;
  color: #7a8a9e;
  font-weight: 700;
  margin-bottom: 21px;
  letter-spacing: 2px;
}

.section-heading .title {
  font-size: 36px;
  font-weight: 700;
  color: #223645;
  margin-bottom: 30px;
  line-height: 45px;
}

.get-qote-content-3 .get-qote-form {
  padding-right: 25px;
}

.get-qote-content-3 .get-qote-form .from-groups {
  margin-left: -10px;
}

.from-groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.from-groups .form-group {
  position: relative;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding: 10px;
  margin-bottom: 5px;
}

.get-qote-content-3 .get-qote-form .site-btn {
  margin-left: 0;
}

.get-qote-form .site-btn {
  border: transparent;
  margin-left: 10px;
  padding: 18px 47px;
  margin-top: 6px;
  margin-top: 15px;
}

.site-btn {
  background: var(--prim);
  position: relative;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  padding: 18px 36px;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.get-qote-form .form-group label {
  display: block;
  color: #223645;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.from-groups .form-group input:focus,
.from-groups .form-group input:hover {
  border-color: var(--prim);
  color: #8a8a8a;
  background: #fff;
}

.from-groups .form-group input {
  padding: 17px 20px;
  border: 2px solid transparent;
  font-size: 14px;
  color: #8a8a8a;
  width: 100%;
  margin-bottom: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: #e8f0f5;
}

.from-groups .form-group span {
  font-size: 14px;
  position: absolute;
  right: 30px;
  -webkit-transform: translateY(19px);
  -ms-transform: translateY(19px);
  transform: translateY(19px);
  color: var(--prim);
}

.from-groups .form-group .nice-select {
  width: 100%;
  text-align: left;
  height: 60px;
  background: #e8f0f5;
  border-color: transparent;
  padding-left: 20px;
  border: 2px solid transparent;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.from-groups .form-group span.current {
  position: inherit;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  right: 0;
  line-height: 60px;
  color: #8a8a8a;
  font-size: 14px;
}

.form-group .nice-select.open .list {
  width: 100%;
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.from-groups .nice-select .option.selected {
  font-weight: 600;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 780px) {
  .pb-130 {
    padding-bottom: 30px;
  }

  .pt-130 {
    padding-top: 20px;
  }

  .get-qote-content {
    padding-left: 50px;
  }

  .from-groups {
    flex-direction: column;
  }
}

/* Appointment */

/* ********************************************************************************************************** */
/* ****************************************** Appointment Page *********************************************** */
/* ********************************************************************************************************** */

/* ********************************************************************************************************** */
/* ****************************************** Testimonials Page *********************************************** */
/* ********************************************************************************************************** */

.testimonial-section2 {
  /*height: 600px;*/
  position: relative;
  padding: 50px 0;
  background-color: #ffffff;
}

.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  padding: 40px 20px;
  margin: auto;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: rgb(202, 202, 202);
  cursor: pointer;
  font-size: 2em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 5px;
  z-index: 22222222;
}

.testim .arrow:before {
  cursor: pointer;
}

.testim .arrow:hover {
  color: #2b288d;
}

.testim .arrow.left {
  left: 10px;
}

.testim .arrow.right {
  right: 10px;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  z-index: 10;
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgb(82, 82, 82);
  margin: 0 10px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: #2b288d;
  border-color: #2b288d;
}

.testim .dots .dot.active {
  -webkit-animation: testim-scale 0.5s ease-in-out forwards;
  -moz-animation: testim-scale 0.5s ease-in-out forwards;
  -ms-animation: testim-scale 0.5s ease-in-out forwards;
  -o-animation: testim-scale 0.5s ease-in-out forwards;
  animation: testim-scale 0.5s ease-in-out forwards;
}

.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont > div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont > div.inactive {
  opacity: 1;
}

.testim .cont > div.active {
  position: relative;
  opacity: 1;
}

.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div .h4 {
  color: #2b288d;
  font-size: 1.2em;
  margin: 15px 0;
}

.testim .cont div p {
  font-size: 1.15em;
  color: rgb(61, 61, 61);
  width: 80%;
  margin: auto;
}

.testim .cont div.active .img img {
  -webkit-animation: testim-show 0.5s ease-in-out forwards;
  -moz-animation: testim-show 0.5s ease-in-out forwards;
  -ms-animation: testim-show 0.5s ease-in-out forwards;
  -o-animation: testim-show 0.5s ease-in-out forwards;
  animation: testim-show 0.5s ease-in-out forwards;
}

.testim .cont div.active .h4 {
  -webkit-animation: testim-content-in 0.4s ease-in-out forwards;
  -moz-animation: testim-content-in 0.4s ease-in-out forwards;
  -ms-animation: testim-content-in 0.4s ease-in-out forwards;
  -o-animation: testim-content-in 0.4s ease-in-out forwards;
  animation: testim-content-in 0.4s ease-in-out forwards;
}

.testim .cont div.active p {
  -webkit-animation: testim-content-in 0.5s ease-in-out forwards;
  -moz-animation: testim-content-in 0.5s ease-in-out forwards;
  -ms-animation: testim-content-in 0.5s ease-in-out forwards;
  -o-animation: testim-content-in 0.5s ease-in-out forwards;
  animation: testim-content-in 0.5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
  -webkit-animation: testim-hide 0.5s ease-in-out forwards;
  -moz-animation: testim-hide 0.5s ease-in-out forwards;
  -ms-animation: testim-hide 0.5s ease-in-out forwards;
  -o-animation: testim-hide 0.5s ease-in-out forwards;
  animation: testim-hide 0.5s ease-in-out forwards;
}

.testim .cont div.inactive .h4 {
  -webkit-animation: testim-content-out 0.4s ease-in-out forwards;
  -moz-animation: testim-content-out 0.4s ease-in-out forwards;
  -ms-animation: testim-content-out 0.4s ease-in-out forwards;
  -o-animation: testim-content-out 0.4s ease-in-out forwards;
  animation: testim-content-out 0.4s ease-in-out forwards;
}

.testim .cont div.inactive p {
  -webkit-animation: testim-content-out 0.5s ease-in-out forwards;
  -moz-animation: testim-content-out 0.5s ease-in-out forwards;
  -ms-animation: testim-content-out 0.5s ease-in-out forwards;
  -o-animation: testim-content-out 0.5s ease-in-out forwards;
  animation: testim-content-out 0.5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -webkit-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-moz-keyframes testim-scale {
  0% {
    -moz-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -moz-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -moz-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -moz-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-ms-keyframes testim-scale {
  0% {
    -ms-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -ms-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -ms-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -ms-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-o-keyframes testim-scale {
  0% {
    -o-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -o-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -o-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -o-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-webkit-keyframes testim-content-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes testim-content-in {
  from {
    opacity: 0;
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes testim-content-in {
  from {
    opacity: 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes testim-content-in {
  from {
    opacity: 0;
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes testim-content-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes testim-content-out {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-moz-keyframes testim-content-out {
  from {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-ms-keyframes testim-content-out {
  from {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-o-keyframes testim-content-out {
  from {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes testim-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@-webkit-keyframes testim-show {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes testim-show {
  from {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes testim-show {
  from {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes testim-show {
  from {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes testim-show {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes testim-hide {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-moz-keyframes testim-hide {
  from {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }
}

@-ms-keyframes testim-hide {
  from {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }
}

@-o-keyframes testim-hide {
  from {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes testim-hide {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0);
  }
}

@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5em;
  }

  .testim .cont div p {
    line-height: 25px;
  }
}

/* ********************************************************************************************************** */
/* ****************************************** Testimonials Page *********************************************** */
/* ********************************************************************************************************** */

/* ********************************************************************************************************** */
/* ****************************************** Testimonials Page *********************************************** */
/* ********************************************************************************************************** */

/* Contact Information */

.contact-information {
  padding: 50px 0;
}

.contact-information .contact-item {
  padding: 60px 30px;
  background-color: var(--light);
  text-align: center;
}

.contact-information .contact-item i {
  color: var(--prim);
  font-size: 48px;
  margin-bottom: 40px;
}

.contact-information .contact-item h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.25px;
  margin-bottom: 15px;
}

.contact-information .contact-item p {
  margin-bottom: 20px;
}

.contact-information .contact-item a {
  font-weight: 600;
  color: var(--prim);
  font-size: 15px;
}

/* ********************************************************************************************************** */
/* ****************************************** Testimonials Page *********************************************** */
/* ********************************************************************************************************** */

/* common */
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--prim);
  text-align: center;
  padding-top: 20px;
}

a:hover {
  text-decoration: none !important;
}

.book-appointment {
  background: linear-gradient(
      rgba(201, 201, 201, 0.9),
      rgba(214, 210, 210, 0.788)
    ),
    url("https://images.pexels.com/photos/853408/pexels-photo-853408.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.book-appointment .row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.container-fluid,
.container {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.float-whatsapp{
	position:fixed;
	width:50px;
	height:50px;
	bottom:20px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:20px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float-phone{
	position:fixed;
	width:50px;
	height:50px;
	bottom:20px;
	left:20px;
	background-color:#ec140d;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:20px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
h1.heading.serveice-head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  margin: auto;
  background: linear-gradient(
      45deg,
      rgba(219, 219, 219, 0.418),
      rgba(238, 235, 235, 0.856),
      rgba(238, 235, 235, 0.856),
      rgba(238, 235, 235, 0.856),
      rgba(238, 235, 235, 0.582)
    ),
    url("https://www.hackensackmeridianhealth.org/wp-content/uploads/2018/10/scoleosis.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 800px){
  h1.heading.serveice-head {
    margin-top: 50px;
  }
  .about-us.separate-about{
    margin-top: 80px;
  }
  .posts{
    margin-top: 80px;
  }
}
/* common */
