/*
@File:  

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Navbar CSS
** - Buttons
** - Home 1
** - Home 2
** - Home 3
** - inner-page-banner
** - About Page
** - Service Page
** - Service Details Page
** - Shop Page
** - cart Page
** - Shop Details Page
** - Checkout Page
** - Blog Page
** - Blog Details Page
** - Contact Page
** - Privacy Page
** - Login Page
 
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
:root {
  --fontFamily: 'Raleway', sans-serif;
  --font-color: #515151;
  --home1-main-color: #21CDC0;
  --home1-main-color-2: #bda56f;
  --white-color: #ffffff;
  --black-color: #262521;
  --nevy-blue: #1D2A4D;
  --lite-background-color: #FCF8ED;
  --home2-main-color: #3368C6;
  --home3-main-color: #4A56AF;
  --home2-main-color-2: #DFBB9C;
  --home3-hover-color:  #848bc4;
  --new-btn:  #000;
  --homecolor:  #224487;
}

html {
  padding: 0;
  margin: 0;
  overflow-x:hidden;
}

body {
  font-family: var(--fontFamily);
  font-size: 16px;
}

button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #ced4da;
}

.btn.focus, .btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #ced4da;
}

.form-select {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  width: 100%;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 100000 !important;
  -webkit-box-shadow: 2px 2px 10px #c9c6c6;
          box-shadow: 2px 2px 10px #c9c6c6;
}

.sticky .main-nav nav .navbar-nav .nav-item {
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-family: var(--titleFontFamily);
  margin-top: -7px;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--font-color);
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: var(--blackColor);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  color: var(--blackColor);
}

.table {
  margin-bottom: 0;
}

.pb-140 {
  padding-bottom: 140px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-50 {
  padding-bottom: 50px;
}

.gotopbtn {
  position: fixed;
  width: 40px;
  height: 40px;
  background: #204386;
  bottom: 30px;
  right: 30px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  cursor: pointer;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.gotopbtn i {
  color: var(--white-color);
  font-size: 20px;
  line-height: 40px;
}

.gotopbtn.active {
  visibility: visible;
  opacity: 1;
  border: 2px solid var(--greenColor);
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  font-family: var(--fontFamily);
}

.custom-card {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.card-title {
  font-size: 19px;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.medium-font {
  font-size: 18px;
  font-weight: 600;
  color: var(--font-color);
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

ul li {
  list-style: none;
}

.line {
  width: 70px;
  height: 3px;
  background: var(--home1-main-color-2);
}

.nice-select {
  background: transparent;
  border: none;
  padding-left: 8px;
  padding-right: 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 52px;
}

.nice-select:after {
  width: 8px;
  height: 8px;
  margin-top: 0;
}

/*================================================
Buttons
=================================================*/
button {
  border: none;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.default-btn {
  position: relative;
  font-size: 16px;
  padding: 12px 30px;
  background: var(--home1-main-color);
  color: var(--white-color);
  height: 100%;
  border-radius: 5px;
  display: inline-block;
}

.default-btn span {
  z-index: 999;
}

.default-btn::before {
  content: "";
  background: var(--home1-main-color-2);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 0;
  height: 100%;
  border-radius: 5px;
}

.default-btn:hover::before {
  width: 100%;
}

.default-btn:hover::before span {
  color: var(--white-color) !important;
}

.default-btn:hover {
  background: transparent;
  color: var(--white-color);
}

.paste-btn {
  position: relative;
  font-size: 16px;
  padding: 7px 20px;
  border-radius: 5px;
  display: inline-block;
  background: var(--homecolor);
  color: var(--white-color);
}

.paste-btn:hover {
  background: var(--new-btn);
  color: var(--white-color);
  border-radius: 30px 0 30px 0;
}

.violate-btn {
  position: relative;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 5px;
  display: inline-block;
  background: #204386;
  color: var(--white-color);
}

.violate-btn:hover {
  background: var(--home3-hover-color);
  color: var(--white-color);
  border-radius: 30px 0 30px 0;
}

.circle-blue-btn {
  padding: 12px 30px;
  border-radius: 25px;
  background: var(--home2-main-color);
  color: var(--white-color);
  display: inline-block;
}

.reactangle-blue-btn {
  padding: 12px 30px;
  border-radius: 5px;
  background: var(--home2-main-color);
  color: var(--white-color);
  display: inline-block;
}

.reactangle-blue-btn:hover {
  background: cornflowerblue;
  border-radius: 30px 0 30px 0;
  color: var(--white-color);
}

.circle-blue-btn:hover {
  background: var(--home2-main-color-2);
  color: var(--white-color);
}

.home2-hover-btn {
  position: relative;
  font-size: 16px;
  padding: 12px 30px;
  background: var(--home2-main-color);
  color: var(--white-color);
  height: 100%;
  border-radius: 25px;
  display: inline-block;
}

.home2-hover-btn span {
  z-index: 999;
}

.home2-hover-btn::before {
  content: "";
  background: var(--home2-main-color-2);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 0;
  height: 100%;
  border-radius: 25px;
}

.home2-hover-btn:hover::before {
  width: 100%;
}

.home2-hover-btn:hover::before span {
  color: var(--white-color) !important;
}

.home2-hover-btn:hover {
  background: transparent;
  color: var(--white-color);
}

.mobile-search-bar {
  display: none;
}

/*================================================
Home 1
=================================================*/
#home1-header .mean-container .mean-nav ul li a.active {
  color: #21CDC0;
}

#home1-header .main-nav nav .navbar-nav .nav-item a:hover,
#home1-header .main-nav nav .navbar-nav .nav-item a.active {
  color: #204386;
}

#home1-header .top-menu {
  background: var(--nevy-blue);
  padding: 0px 100px;
}

#home1-header .top-menu .home1-top-menu-ul {
  margin: 10px 0 8px;
}

.main-nav {
  padding: 0 100px;
}

.header-area .reactangle-blue-btn, .header-area .default-btn, .header-area .home2-hover-btn {
  position: relative;
  top: -3px;
}

.header-area .default-btn {
  padding: 12px 20px;
}

.header-area .top-menu {
  background: var(--nevy-blue);
  padding-top: 20px;
  padding-left: 100px;
  padding-right: 100px;
}

.header-area .top-menu .support-btn {
  background: var(--white-color);
  color: var(--black-color);
  border-radius: 5px;
  padding: 15px 25px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.header-area .top-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
}

.header-area .top-menu ul li {
  display: inline-block;
  list-style: none;
}

.header-area .top-menu .home1-top-menu-ul {
  float: right;
  margin-bottom: 18px;
}

.header-area .top-menu .home1-top-menu-ul li {
  color: #bbb9b9;
}

.header-area .top-menu .home1-top-menu-ul li i {
  margin-right: 7px;
}

.header-area .top-menu .home1-top-menu-ul li span {
  color: var(--white-color);
  margin-right: 15px;
}

.header-area .top-menu .home1-top-menu-ul li:first-child {
  margin-right: 50px;
}

.header-area .right-menu {
  margin-top: 0px;
}

.header-area .right-menu .nice-select {
  font-weight: 600;
  margin-right: 10px;
}

.header-area .language {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header-area .language img {
  width: 18px;
  height: 18px;
  margin-bottom: -9px;
}

.header-area .language .form-select-1 {
  width: 65px;
  font-size: 16px;
  font-weight: bold;
  padding: .375rem 0px .375rem 6px;
}

.home1-banner-section .banner {
  background-size: cover!important;
  width: 100%;
  padding:220px 0 500px;
}

.home1-banner-section .text-content {
  margin-left: 100px;
  max-width: 700px;
  margin-right: auto;
}

.home1-banner-section .text-content h1 {
  font-size: 40px;
  font-weight: bold;
  color: var(--black-color);
}

.home1-banner-section .text-content p {
  margin: 30px 0 40px;
  font-size: 20px;
  color: var(--black-color);
}

.appoinment-section .appoinment-text {
  max-width: 1230px;
  background: var(--lite-background-color);
      z-index: 1000;
    border-radius: 20px;
    margin-top: 20px;
    position: relative;
    margin-bottom:50px;
    z-index:1;
}

.appoinment-section .appoinment-text .form-select-1 {
  border: 1px solid #dbdada !important;
  width: 100%;
  background: var(--white-color);
  padding-top: 8px;
  line-height: 40px;
  font-weight: 400;
  padding-left: 13px;
}

.appoinment-section .appoinment-text .nice-select::after {
  right: 18px;
  top: 40%;
}

.appoinment-section .appoinment-text .quote-text {
  padding: 60px 50px 40px;
  background: var(--white-color);
  border-radius: 20px;
  -webkit-box-shadow: -3px 0px 6px #c4c4c4;
          box-shadow: -3px 0px 6px #c4c4c4;
}

.appoinment-section .appoinment-text .quote-text p {
  margin: 25px 0 30px;
}

.appoinment-section .appoinment-text .form-content {
  padding: 0 60px 0 30px;
}

.appoinment-section .appoinment-text .form-content .form-select-1, .appoinment-section .appoinment-text .form-content input {
  height: 55px;
  margin-bottom: 15px;
}

.appoinment-section .appoinment-text .form-content .form-select-1 {
  border: 1px solid #dbdada !important;
  width: 100%;
  background: var(--white-color);
}

.appoinment-section .appoinment-text .form-content .form-select-1 {
  padding-bottom: 40px;
}

.appoinment-section .appoinment-text .form-content .paste-btn {
  display: block;
  text-align: center;
  margin-top: 15px;
}

.home1-service-section .service-top {
  max-width: 445px;
  margin: 0 auto 0px;
}

.home1-service-section .custom-service-cards .custom-card {
  padding: 30px 15px;
  background: var(--lite-background-color);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  border-radius: 25px;
  margin-bottom: 30px;
}

.home1-service-section .custom-service-cards .custom-card .card-title {
  margin: 15px 0;
  min-height: 50px;
}

.home1-service-section .custom-service-cards .custom-card p {
  margin-bottom: 25px;
  min-height: 60px;
}

.home1-service-section .custom-service-cards .custom-card:hover {
  background: var(--white-color);
  -webkit-box-shadow: 0px 10px 20px #c0bdbd;
          box-shadow: 0px 10px 20px #c0bdbd;
}

.home1-service-section .custom-service-cards .service-slider img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.home1-service-section .custom-service-cards .owl-dots {
  position: absolute;
  left: 50%;
  bottom: -40px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  margin-top: 30px;
}

.home1-service-section .custom-service-cards button.owl-dot {
  background: #cf649d;
  margin: 0 7px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
}

.home1-service-section .custom-service-cards button.owl-dot.active {
  background: var(--home1-main-color-2);
}
  /*
  .home1-clinic-service-section .two-s-cards {
    background: var(--lite-background-color);
  }*/

.home1-clinic-service-section .two-s-cards .online-service .row {
  --bs-gutter-x: 0;
}

.home1-clinic-service-section .two-s-cards .online-service .service-texts {
  max-width: 550px;
  margin-left: 30px;
  margin-right: auto;
}

.home1-clinic-service-section .two-s-cards .online-service .service-texts .line {
  margin-bottom: 20px;
}

.home1-clinic-service-section .two-s-cards .online-service .service-texts .section-title {
  margin: -8px 0 15px;
  font-size: 38px;
}

.home1-clinic-service-section .two-s-cards .online-service .service-texts .card-title {
  margin: 10px 0;
  font-size: 16px;
}

.home1-clinic-service-section .two-s-cards .online-service .service-texts ul {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home1-clinic-service-section .two-s-cards .online-service .service-texts ul li {
  list-style: none;
  margin-bottom: 5px;
  display: inline-block;
}

.home1-clinic-service-section .two-s-cards .online-service .service-texts ul li i {
  color: var(--home1-main-color-2);
  margin-right: 10px;
}

.home1-clinic-service-section .two-s-cards .online-service .service-texts .paste-btn {
  margin-top: 10px;
}

.home1-clinic-service-section .two-s-cards .online-service-2 .row {
  margin: 0;
  --bs-gutter-x: 0;
}

.home1-clinic-service-section .two-s-cards .online-service-2 .section-title {
  margin: -8px 0 15px;
}

.home1-clinic-service-section .two-s-cards .online-service-2 p {
  margin-bottom: 0;
}

.home1-clinic-service-section .two-s-cards .online-service-2 .paste-btn {
  margin-top: 5px;
}

.home1-clinic-service-section .two-s-cards .online-service-2 .service-texts {
  margin-right: 30px;
  max-width: 550px;
  margin-left: auto;
}

.home1-clinic-service-section .two-s-cards .online-service-2 .service-texts p {
  margin: 0px 0 10px;
}

.home1-clinic-service-section .two-s-cards .online-service-2 .service-texts .card-title {
  margin-bottom: 7px;
  color: var(--black-color);
  margin-top: 15px;
}

.home1-clinic-service-section .two-s-cards .online-service-2 .service-texts .line {
  margin-bottom: 20px;
}

.home1-clinic-service-section .online-service-3 {
  padding: 100px 0 50px;
}

.home1-clinic-service-section .online-service-3 .service-texts {
  margin-bottom: 50px;
}

.home1-clinic-service-section .online-service-3 .service-texts .section-title {
  margin: -8px 0 15px;
}

.home1-clinic-service-section .online-service-3 .service-texts .card-title {
  margin: 20px 0 10px;
}

.home1-clinic-service-section .online-service-3 .circle-chart {
  width: 200px;
  height: 200px;
  margin-bottom: 50px;
}

.home1-clinic-service-section .online-service-3 .circle-chart p {
  max-width: 100px;
}

.home1-clinic-service-section .online-service-3 .text {
  width: 100px;
}

.home1-clinic-service-section .online-service-3 .line {
  margin-bottom: 20px;
}

.home1-clinic-service-section .online-service-3 .success-stroke {
  stroke: var(--home1-main-color);
}

.home1-clinic-service-section .online-service-3 .circle-chart__percent {
  font-size: 8px;
  color: var(--home1-main-color-2);
  font-weight: bold;
}

.home1-clinic-service-section .online-service-3 .circle-chart__subline {
  font-size: 2px;
}

.home1-team-section .owl-dots {
  position: absolute;
  left: 50%;
  bottom: -40px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  margin-top: 30px;
}

.home1-team-section button.owl-dot {
  background: #cf649d;
  margin: 0 7px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
}

.home1-team-section button.owl-dot.active {
  background: var(--home1-main-color-2);
}

.why-choose-us-section {
  background-size: cover;
  width: 100%;
}

.why-choose-us-section .top-section {
  max-width: 700px;
  margin: 0 auto;
}

.why-choose-us-section .custom-card {
  background: var(--white-color);
  padding: 40px;
  border-radius: 25px;
  position: relative;
}

.why-choose-us-section .custom-card .fa-quote-left {
  font-size: 90px;
  color: #224487cc;
  position: absolute;
  right: 40px;
  top: 30px;
  opacity:0.5;
}

.why-choose-us-section .custom-card ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.why-choose-us-section .custom-card ul li {
  display: inline-block;
}

.why-choose-us-section .custom-card ul li img {
  border-radius: 50%;
  width: 50%;
}

.why-choose-us-section .custom-card ul li{
    width:40%;
}

.why-choose-us-section .custom-card ul li:first-child {
  margin-right: 15px;
}

.why-choose-us-section .custom-card P {
  margin-bottom: 0;
  font-size:14px;
}

.why-choose-us-section .owl-dots {
  position: absolute;
  left: 50%;
  bottom: -40px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  margin-top: 30px;
}

.why-choose-us-section button.owl-dot {
  background: #cf649d;
  margin: 0 7px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
}

.why-choose-us-section button.owl-dot.active {
  background: var(--home1-main-color-2);
}

.home1-newsletter-section {
  background: var(--nevy-blue);
}

.home1-newsletter-section .section-title {
  color: var(--white-color);
  margin-bottom: -5px;
}

.home1-newsletter-section .mb-3 {
  margin-bottom: 0;
}

.home1-newsletter-section .input-group {
  height: 56px;
  background: var(--white-color);
  border-radius: 5px;
}

.home1-newsletter-section .input-group input {
  border-radius: 5px;
  border-right: none;
}

.home1-newsletter-section .input-group button {
  background: var(--home1-main-color);
  height: 50px;
  margin-top: 3px;
  margin-right: 3px;
  border: none;
  padding: 0px 25px;
  border-radius: 5px;
  color: var(--white-color);
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

.home1-team-section .custom-card {
  position: relative;
}

.home1-team-section .custom-card .overlay-card {
  -webkit-clip-path: polygon(0 0, 71% 0, 100% 26%, 100% 100%, 80% 100%, 0 100%, 0% 80%, 0% 20%);
          clip-path: polygon(0 0, 71% 0, 100% 26%, 100% 100%, 80% 100%, 0 100%, 0% 80%, 0% 20%);
  background: #21cdbfe7;
  padding: 150px auto;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 0;
  width: 80%;
  visibility: hidden;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  border-radius: 15px;
}

.home1-team-section .custom-card .overlay-card .texts {
  margin: auto;
  margin-top: 43%;
}

.home1-team-section .custom-card .overlay-card .texts p {
  margin-bottom: 0;
}

.home1-team-section .custom-card .overlay-card .card-title, .home1-team-section .custom-card .overlay-card post, .home1-team-section .custom-card .overlay-card p, .home1-team-section .custom-card .overlay-card i {
  color: var(--white-color);
}

.home1-team-section .custom-card .overlay-card .card-title {
  margin-bottom: 5px;
}

.home1-team-section .custom-card .overlay-card .social-icons {
  margin-top: 15px;
}

.home1-team-section .custom-card .overlay-card .social-icons i {
  margin-right: 10px;
  font-size: 20px;
}

.home1-team-section .custom-card:hover .overlay-card {
  visibility: visible;
  top: 8%;
  right: 10%;
  left: 10%;
  bottom: 12.5%;
  height: 85%;
}

.news-article-section {
  position: relative;
}

.news-article-section .top-section {
  max-width: 470px;
  margin: 0 auto;
}

.news-article-section .custom-card {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.news-article-section .custom-card .card-title {
  margin-bottom: 20px;
}

.news-article-section .custom-card ul li {
  display: inline-block;
}

.news-article-section .custom-card ul li i {
  color: var(--home1-main-color);
  margin-right: 8px;
}

.news-article-section .custom-card ul li:first-child {
  margin-right: 30px;
}

.news-article-section .left-side .custom-card {
  background: var(--lite-background-color);
  padding: 50px 30px;
  margin-bottom: 30px;
  border-radius: 25px;
}

.news-article-section .left-side .custom-card .circle-box {
  background: var(--home1-main-color);
  padding: 5px 30px;
  border-radius: 25px;
  color: var(--white-color);
  display: inline-block;
}

.news-article-section .left-side .custom-card .card-title {
  margin: 20px 0;
}

.news-article-section .right-side .custom-card {
  padding: 390px 30px 40px;
  border-radius: 25px;
}

.news-article-section .right-side .custom-card .card-title {
  color: var(--white-color);
}

.news-article-section .right-side .custom-card ul li {
  color: var(--white-color);
}

.news-article-section .right-side .custom-card ul li i {
  color: var(--white-color);
}

.news-article-section .right-side .custom-card-1 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(33, 205, 192, 0.98)), color-stop(29%, rgba(151, 232, 225, 0.5)), color-stop(80%, rgba(252, 248, 237, 0.4))), url(../images/news-&-articles/news-1.jpg) center center no-repeat;
  background: linear-gradient(0deg, rgba(33, 205, 192, 0.98) 0%, rgba(151, 232, 225, 0.5) 29%, rgba(252, 248, 237, 0.4) 80%), url(../images/news-&-articles/news-1.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
}

.news-article-section .right-side .custom-card-2 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(33, 205, 192, 0.98)), color-stop(29%, rgba(151, 232, 225, 0.5)), color-stop(80%, rgba(252, 248, 237, 0.4))), url(../images/news-&-articles/news-2.jpg) center center no-repeat;
  background: linear-gradient(0deg, rgba(33, 205, 192, 0.98) 0%, rgba(151, 232, 225, 0.5) 29%, rgba(252, 248, 237, 0.4) 80%), url(../images/news-&-articles/news-2.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
}

.news-article-section .owl-dots {
  position: absolute;
  left: 50%;
  bottom: -40px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  margin-top: 30px;
}

.news-article-section button.owl-dot {
  background: #cf649d;
  margin: 0 7px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
}

.news-article-section button.owl-dot.active {
  background: var(--home1-main-color-2);
}

.home1-footer {
  background: var(--nevy-blue);
}

.home1-footer p, .home1-footer .card-title, .home1-footer i {
  color: var(--white-color);
}

.home1-footer .row {
  margin-bottom: -6px;
}

.home1-footer .first-col {
  padding: 30px;
  background: var(--white-color);
  border-radius: 25px;
}

.home1-footer .first-col p, .home1-footer .first-col h5 {
  color: var(--black-color);
}

.home1-footer .first-col h5 {
  margin-bottom: 20px;
}

.home1-footer .first-col i {
  color: var(--home1-main-color);
}

.home1-footer .first-col li {
  margin-bottom: 10px;
}

.home1-footer .first-col li i {
  margin-right: 10px;
}

.home1-footer .first-col .social-icons {
  margin-top: 10px;
}

.home1-footer .first-col .social-icons i {
  margin-right: 0px;
  color: var(--home1-main-color);
  background: var(--white-color);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  font-size: 16px;
  height: 30px;
  width: 30px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--home1-main-color);
  margin-right: 10px;
}

.home1-footer .first-col .social-icons i:hover {
  background: var(--home1-main-color);
  color: var(--white-color);
}

.home1-footer .second-col, .home1-footer .third-col {
  padding-left: 50px;
  padding-top: 5px;
}

.home1-footer .second-col i, .home1-footer .third-col i {
  margin-right: 5px;
}

.home1-footer .second-col .card-title, .home1-footer .third-col .card-title {
  margin-bottom: 30px;
}

.home1-footer .last-col .logo {
  margin-bottom: 30px;
}

.home1-footer .last-col p {
  margin-bottom: 30px;
}

.copyright {
  /*background: var(--nevy-blue);*/
  /*border-top: 1px solid #5f5d5d;*/
}

.copyright p {
  color: var(--white-color);
  padding: 15px 0;
}

.copyright p a:hover {
  border-bottom: 1px solid var(--white-color);
  -webkit-transition: all 0.7s !important;
  transition: all 0.7s !important;
}

/*================================================
Home 2
=================================================*/
.home2-header .main-nav {
  background: var(--white-color);
}

.home2-header .main-nav nav .navbar-nav .nav-item a:hover,
.home2-header .main-nav nav .navbar-nav .nav-item a.active {
  color: var(--home2-main-color);
}

.home2-header .main-nav nav .navbar-nav .nav-item .dropdown-menu {
  border-top: 3px solid var(--home2-main-color);
}

.home2-banner-section {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.7)), color-stop(35%, rgba(255, 255, 255, 0.5))), url(../images/banner/banner-bg-2.jpg) center center no-repeat;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.5) 35%), url(../images/banner/banner-bg-2.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  padding: 220px 0 150px;
}

.home2-banner-section .text-content {
  max-width: 700px;
  margin-left: 100px;
  margin-right: auto;
}

.home2-banner-section .text-content h1 {
  font-size: 68px;
  font-weight: bold;
}

.home2-banner-section .text-content p {
  margin: 20px 0 30px;
  font-size: 20px;
  color: var(--black-color);
}

.home2-get-appoinment-section {
  padding-bottom: 85px;
  background: var(--home2-main-color);
}

.home2-get-appoinment-section .section-title {
  color: var(--white-color);
  margin-bottom: 15px;
}

.home2-get-appoinment-section .appoinment-form .form-select-1, .home2-get-appoinment-section .appoinment-form input, .home2-get-appoinment-section .appoinment-form .circle-wheat-btn {
  height: 55px;
  margin-bottom: 15px;
  border-radius: 30px;
  padding: 0 20px;
}

.home2-get-appoinment-section .appoinment-form .form-select-1 {
  border: 1px solid #dbdada !important;
  width: 100%;
  background: var(--white-color);
  padding-top: 8px;
  line-height: 40px;
  font-weight: 400;
}

.home2-get-appoinment-section .appoinment-form .form-select-1 option {
  width: 100%;
}

.home2-get-appoinment-section .appoinment-form .nice-select:after {
  right: 22px;
  width: 10px;
  height: 10px;
  margin-top: -7px;
}

.home2-get-appoinment-section .appoinment-form .circle-wheat-btn {
  background: var(--white-color);
  color: var(--black-color);
  width: 100%;
  padding-top: 0px;
  text-align: center;
}

.home2-get-appoinment-section .appoinment-form .circle-wheat-btn:hover {
  background: var(--home2-main-color-2);
  color: var(--white-color);
}

.home2-provide-shape-section .section-title {
  margin-bottom: 20px;
}

.home2-provide-shape-section .text-content {
  margin-left: 20px;
}

.home2-provide-shape-section .icon-p {
  margin: 20px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home2-provide-shape-section .icon-p li {
  display: inline-block;
}

.home2-provide-shape-section .icon-p li img {
  width: 130px;
  height: auto;
  margin-right: 20px;
}

.home2-provide-shape-section .icon-p li:first-child {
  margin-right: 10px;
}

.home2-provide-shape-section .provide-services .button {
  margin-top: 10px;
}

.home2-provide-shape-section .provide-services .card-title {
  margin-bottom: 15px;
}

.home2-provide-shape-section .provide-services .card-title span {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: var(--home2-main-color-2);
  margin-right: 10px;
  border-radius: 50%;
  padding: 10px 12px;
}

.home2-provide-shape-section .provide-services .card-title i {
  height: 20px;
  width: 20px;
  color: var(--white-color);
}

.home2-choose-us-section .top-section {
  max-width: 500px;
  margin: 0 auto 50px;
}

.home2-choose-us-section .custom-card {
  padding: 15px 0px 0px;
  background: #FAFAFA;
  text-align: center;
  border: 1px solid #e9e9e9;border-radius: 25px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  margin-bottom: 10px;
}

.home2-choose-us-section .custom-card .card-title {
  margin-bottom: 15px;
  font-size: 22px;
}

.home2-choose-us-section .custom-card .number {
  width: 90px;
  height: 90px;
  line-height: 80px;
  text-align: center;
  background: #204386;
  border-radius: 50%;
  margin: 0 auto 30px;
}
.home2-choose-us-section{
  background: url(../images/bg.png);
  background-size: contain;
  background-position: center center;
  -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.home2-choose-us-section .custom-card .number .count-num {
  padding-top: 26px;
  font-size: 30px;
  font-weight: bold;
  color: var(--white-color);
}

.home2-choose-us-section .custom-card .number .count-num span {
  color: var(--white-color);
}

.home2-choose-us-section .custom-card .number .odometer.odometer-auto-theme, .home2-choose-us-section .custom-card .number .odometer.odometer-theme-car {
  font-family: var(--fontFamily);
  padding: 0;
  background: transparent;
  color: #eee0d3;
}

.home2-choose-us-section .custom-card .number .odometer.odometer-auto-theme .odometer-digit, .home2-choose-us-section .custom-card .number .odometer.odometer-theme-car .odometer-digit {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.home2-choose-us-section .custom-card .number .odometer.odometer-auto-them {
  background: transparent;
}

.home2-choose-us-section .custom-card:hover {
  background: var(--white-color);
  -webkit-box-shadow: 5px 10px 30px #c2bfbf;
          box-shadow: 5px 10px 30px #c2bfbf;
  margin-top: -10px;
}

.home2-service-section {
  background: #FAFAFA;
}

.home2-service-section .top-section {
  max-width: 460px;
  margin: 0 auto 0px;
}

.home2-service-section .fixed-height {
  height: 600px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--nevy-blue) var(--lite-background-color);
}

.home2-service-section .fixed-height .custom-card {
  padding: 40px 25px;
  background: #F4F1EA;
  border-radius: 25px;
  margin-bottom: 20px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.home2-service-section .fixed-height .custom-card ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home2-service-section .fixed-height .custom-card ul li {
  display: inline-block;
  margin-right: 10px;
}

.home2-service-section .fixed-height .custom-card ul li:first-child {
  margin-right: 15px;
}

.home2-service-section .fixed-height .custom-card:hover {
  background: var(--white-color);
  -webkit-box-shadow: 5px 10px 20px #c2bebe;
          box-shadow: 5px 10px 20px #c2bebe;
}

.home2-service-section .fixed-height .fixed-height::webkit-scrollbar {
  width: 3px;
  padding-top: 30px;
}

.home2-service-section .fixed-height .fixed-height::webkitscrollbar-track {
  background: #f1f1f1;
  height: 85px !important;
}

.home2-service-section .fixed-height .fixed-height::webkitscrollbar-thumb {
  background: var(--home2-main-color);
}

.home2-service-section .right-content .section-title {
  margin: 25px 0 20px;
}

.home2-service-section .right-content p {
  margin-bottom: 0;
}

.home2-service-section .right-content .button {
  margin-top: 25px;
}

.home2-surgery-section .surgery-img img {
  border-radius: 25px;
}

.home2-surgery-section .right-content .top-section {
  margin-bottom: 30px;
}

.home2-surgery-section .right-content .top-section .section-title {
  margin-bottom: 25px;
}

.home2-surgery-section .right-content .custom-card {
  margin-bottom: 25px;
  text-align: center;
}

.home2-surgery-section .right-content .custom-card .surgery-image {
  border: 1px dotted var(--home2-main-color);
  height: 105px;
  width: 105px;
  line-height: 100px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 auto 15px;
  text-align: center;
}

.home2-surgery-section .right-content .custom-card .surgery-image img {
  border-radius: 50%;
}

.home2-client-section .top-section {
  max-width: 460px;
  margin: 0 auto 0px;
}

.home2-client-section .custom-card {
  padding: 70px 30px;
  background: #FAFAFA;
  border-bottom: 25px;
  -webkit-clip-path: polygon(14% 0, 100% 0, 100% 20%, 100% 74%, 86% 100%, 20% 100%, 0 100%, 0 24%);
          clip-path: polygon(14% 0, 100% 0, 100% 20%, 100% 74%, 86% 100%, 20% 100%, 0 100%, 0 24%);
  margin-bottom: 30px;
  position: relative;
}

.home2-client-section .custom-card ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home2-client-section .custom-card ul li {
  display: inline-block;
}

.home2-client-section .custom-card ul li p {
  line-height: 1.6;
  margin-top: 5px;
  margin-bottom: -10px;
}

.home2-client-section .custom-card ul li img {
  margin-right: 10px;
  border-radius: 50%;
}

.home2-client-section .custom-card .fa-quote-left {
  position: absolute;
  font-size: 100px;
  color: var(--home2-main-color-2);
  right: 40px;
  bottom: 40px;
}

.home2-client-section .custom-card:last-child {
  margin-bottom: 0;
}

.home2-client-says-section {
  background: var(--home2-main-color);
  position: relative;
}

.home2-client-says-section .left-clip {
  -webkit-clip-path: polygon(66% 0, 100% 0, 0 100%, 0 63%);
          clip-path: polygon(66% 0, 100% 0, 0 100%, 0 63%);
  height: 200px;
  width: 200px;
  background: var(--white-color);
  position: absolute;
  left: 0;
  top: 0;
}

.home2-client-says-section .right-clip {
  -webkit-clip-path: polygon(100% 0, 100% 36%, 35% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 36%, 35% 100%, 0 100%);
  height: 200px;
  width: 200px;
  background: var(--white-color);
  position: absolute;
  right: 0;
  bottom: 0;
}

.home2-client-says-section .top-section {
  max-width: 770px;
  margin: 0 auto;
}

.home2-client-says-section .top-section .input-group {
  max-width: 560px;
  margin: 0 auto;
}

.home2-client-says-section .top-section button {
  background: var(--home2-main-color-2);
}

.home2-client-says-section .top-section .section-title {
  max-width: 500px;
  margin: -6px auto 20px;
}

.home2-client-says-section .top-section p {
  margin-bottom: 30px;
  color: var(--white-color);
}

.home2-team-section {
  position: relative;
  padding-bottom: 80px;
}

.home2-team-section .top-section {
  max-width: 440px;
  margin: 0 auto;
}

.home2-team-section .custom-card {
  -webkit-transition: all 0.6;
  transition: all 0.6;
  text-align: center;
  margin: 10px 10px 20px;
}

.home2-team-section .custom-card .team-image img {
  border-radius: 25px;
}

.home2-team-section .custom-card .text-content {
  padding: 30px;
  margin-top: 20px;
  border-radius: 25px;
  background: var(--home2-main-color);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.home2-team-section .custom-card .text-content .card-title {
  margin: 0;
  margin-bottom: 10px;
}

.home2-team-section .custom-card .text-content p {
  margin-bottom: 0;
}

.home2-team-section .custom-card .text-content .card-title, .home2-team-section .custom-card .text-content p, .home2-team-section .custom-card .text-content i {
  color: var(--white-color);
}

.home2-team-section .custom-card .text-content i {
  margin-right: 10px;
  font-size: 20px;
}

.home2-team-section .custom-card .text-content .social-icons {
  margin-top: 10px;
}

.home2-team-section .owl-dots {
  position: absolute;
  left: 50%;
  bottom: -40px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  margin-top: 30px;
}

.home2-team-section button.owl-dot {
  background: #537fca;
  margin: 0 7px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
}

.home2-team-section button.owl-dot.active {
  background: var(--home2-main-color);
}

.home2-team-section .custom-card:hover .text-content {
  background: var(--white-color);
  -webkit-box-shadow: -2px 10px 20px #c9c6c6;
          box-shadow: -2px 10px 20px #c9c6c6;
}

.home2-team-section .custom-card:hover .text-content .card-title, .home2-team-section .custom-card:hover .text-content p {
  color: var(--black-color);
}

.home2-team-section .custom-card:hover .text-content .fa-facebook-f {
  color: var(--home3-main-color) !important;
}

.home2-team-section .custom-card:hover .text-content .fa-twitter {
  color: #4090f8 !important;
}

.home2-team-section .custom-card:hover .text-content .fa-google-plus-g {
  color: rgba(184, 13, 13, 0.877) !important;
}

.home2-team-section .custom-card:hover .text-content .fa-linkedin-in {
  color: var(--home2-main-color);
}

.home2-news-article-section .custom-card ul li i {
  color: var(--home2-main-color);
}

.home2-news-article-section .left-side .custom-card .circle-box {
  background: var(--home2-main-color-2);
}

.home2-news-article-section .right-side .custom-card-1 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 104, 198, 0.95)), color-stop(42%, rgba(76, 114, 181, 0.5)), color-stop(87%, rgba(252, 248, 237, 0))), url(../images/news-&-articles/news-1.jpg) center center no-repeat;
  background: linear-gradient(0deg, rgba(51, 104, 198, 0.95) 0%, rgba(76, 114, 181, 0.5) 42%, rgba(252, 248, 237, 0) 87%), url(../images/news-&-articles/news-1.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
}

.home2-news-article-section .right-side .custom-card-2 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 104, 198, 0.95)), color-stop(42%, rgba(76, 114, 181, 0.5)), color-stop(87%, rgba(252, 248, 237, 0))), url(../images/news-&-articles/news-2.jpg) center center no-repeat;
  background: linear-gradient(0deg, rgba(51, 104, 198, 0.95) 0%, rgba(76, 114, 181, 0.5) 42%, rgba(252, 248, 237, 0) 87%), url(../images/news-&-articles/news-2.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
}

.home2-news-article-section .owl-dots {
  position: absolute;
  left: 50%;
  bottom: -40px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  margin-top: 30px;
}

.home2-news-article-section button.owl-dot {
  background: #726ffa;
  margin: 0 7px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
}

.home2-news-article-section button.owl-dot.active {
  background: var(--home2-main-color);
}

.home2-footer {
  background: var(--home2-main-color);
}

.home2-footer .first-col i {
  color: var(--home2-main-color);
}

.home2-footer .first-col .social-icons {
  margin-top: 10px;
}

.home2-footer .first-col .social-icons i {
  color: var(--home2-main-color);
  background: var(--white-color);
  height: 30px;
  width: 30px;
  border: 1px solid var(--home2-main-color);
}

.home2-footer .first-col .social-icons i:hover {
  background: var(--home2-main-color);
  color: var(--white-color);
}

.home2-footer .paste-btn {
  background: var(--home2-main-color-2);
}

.home2-copyright {
  background: var(--home2-main-color);
  border-top: 1px solid rgba(219, 215, 215, 0.397);
}

/*================================================
Home 3
=================================================*/
.header-area .top-menu-3 {
  background: var(--home3-main-color);
  padding: 10px 0;
}

.header-area .top-menu-3 .home1-top-menu-ul {
  float: right;
  margin-bottom: 0px;
  padding-top: 8px;
}

.header-area .top-menu-3 .home1-top-menu-ul li:first-child {
  margin-right: 20px;
}

.header-area .top-menu-3 .home1-top-menu-ul li:nth-child(2) {
  margin-right: 20px;
}

.header-area .top-menu-3 .home1-top-menu-ul li {
  color: #f1e9e9;
}

.header-area .top-menu-3 .home1-top-menu-ul li span {
  margin-right: 7px;
}

.header-area .top-menu-3 .home1-top-menu-ul li i {
  margin-right: 4px;
}

.header-area .top-menu-3 input {
  border: none;
}

.header-area .top-menu-3 button {
  background: var(--white-color);
  border: 1px solid var(--white-color);
}

.header-area .top-menu-3 button i {
  color: var(--home3-main-color);
}

.c-header .main-nav nav .navbar-nav .nav-item a.active {
  color: var(--black-color);
  font-weight: 600;
}

.home3-header .top-menu-3 {
  padding: 10px 100px;
}

.home3-header .main-nav nav .navbar-nav .nav-item:hover a {
  color: var(--black-color);
}

.home3-header .main-nav nav .navbar-nav .nav-item .dropdown-menu {
  border-top: 3px solid var(--home3-main-color);
}

.home3-header .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--black-color);
}

.home3-header .home3-sticky {
  -webkit-box-shadow: 3px 10px 20px #d3cfcf !important;
          box-shadow: 3px 10px 20px #d3cfcf !important;
}

.home3-header .home3-sticky .main-nav {
  background: var(--white-color);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.home3-banner-section {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.9)), color-stop(35%, rgba(255, 255, 255, 0))), url(../images/banner/banner-bg-3.jpg) center center no-repeat;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 35%), url(../images/banner/banner-bg-3.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  padding: 70px 0px 0;
}

.home3-banner-section .owl-dots {
  top: 35%;
  right: 100px;
  position: absolute;
}

.home3-banner-section .owl-carousel button.owl-dot {
  height: 12px;
  width: 12px;
  border-radius: 50px;
  padding: 10px;
  margin-right: 15px;
  background: var(--home3-main-color);
  outline: none;
  padding: 2px;
  display: block;
  margin: 10px 0;
}

.home3-banner-section .owl-carousel button.owl-dot.active {
  height: 15px;
  width: 15px;
  border-radius: 50px;
  padding: 2px;
  margin-right: 15px;
  background: var(--home3-main-color);
  outline: none;
  border: 2px solid white !important;
  -webkit-box-shadow: 0 0px 0 2px var(--home3-main-color);
          box-shadow: 0 0px 0 2px var(--home3-main-color);
  padding: 2px;
  margin: 10px 0;
}

.home3-banner-section .banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home3-banner-section .banner-content .banner-text {
  max-width: 600px;
  margin-left: 100px;
  margin-right: auto;
}

.home3-banner-section .banner-content .banner-text h1 {
  font-size: 50px;
}

.home3-banner-section .banner-content .bannner-img {
  margin-right: 50px;
  margin-left: auto;
}

.home3-banner-section h1 {
  font-size: 48px;
  font-weight: bold;
}

.home3-banner-section p {
  font-size: 20px;
  margin: 20px 0;
  color: var(--black-color);
}

.home3-online-network-section .section-title {
  margin-bottom: 20px;
}

.home3-online-network-section .right-content {
  padding-left: 20px;
}

.home3-online-network-section .custom-card {
  padding: 30px 30px 10px;
  border-radius: 25px;
  background: #F5F5F5;
  margin-top: 25px;
}

.home3-online-network-section .custom-card .form-select-1, .home3-online-network-section .custom-card input {
  height: 55px;
  margin-bottom: 20px;
  padding-top: 8px;
  line-height: 40px;
  font-weight: 400;
  padding-left: 10px;
}

.home3-online-network-section .custom-card .form-select-1 {
  border: 1px solid #dbdada !important;
  width: 100%;
  background: var(--white-color);
}

.home3-online-network-section .custom-card .nice-select::after {
  right: 13px;
  top: 42%;
}

.home3-online-network-section .custom-card .violate-btn {
  display: block;
  text-align: center;
  padding: 14px 0px;
  width: 100%;
}

.home3-service-section .top-section {
  max-width: 480px;
  margin: 0 auto 0px;
}

.home3-service-section .custom-card {
  background: var(--white-color);
  -webkit-box-shadow: 3px 10px 20px #d3cfcf;
          box-shadow: 3px 10px 20px #d3cfcf;
  border-radius: 30px 30px 10px 30px;
  margin-bottom: 30px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.home3-service-section .custom-card img {
  border-radius: 30px 30px 0 0;
}

.home3-service-section .custom-card .text-content {
  padding: 30px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.home3-service-section .custom-card .text-content p {
  margin: -10px 0 25px;
}

.home3-service-section .custom-card:hover {
  margin-top: -10px;
}

.home3-service-section .custom-card:hover .text-content {
  background: #204386;
  border-radius: 0px 0px 10px 30px;
  -webkit-box-shadow: 3px 10px 20px #959bc7;
          box-shadow: 3px 10px 20px #959bc7;
}

.home3-service-section .custom-card:hover .text-content p, .home3-service-section .custom-card:hover .text-content h5 {
  color: var(--white-color);
}

.home3-service-section .custom-card:hover .text-content .violate-btn {
  background: var(--white-color);
  color: var(--home3-main-color);
}

.home3-choose-us-section {
  background: #F5F5F5;
}

.home3-choose-us-section .section-title {
  margin-bottom: 30px;
}

.home3-choose-us-section p:first-child {
  margin-bottom: 20px;
}

.home3-choose-us-section img {
  border-radius: 30px;
}

.home3-choose-us-section .card-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.home3-choose-us-section .card-title span {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: var(--home3-main-color);
  margin-right: 5px;
  border-radius: 50%;
  padding: 10px 11px;
}

.home3-choose-us-section .card-title svg {
  height: 20px;
  width: 20px;
  color: var(--white-color);
}

.home3-choose-us-section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home3-choose-us-section ul li {
  display: inline-block;
  margin-bottom: 15px;
}

.home3-choose-us-section .violate-btn {
  margin-top: 10px;
}

.home3-shop-section .top-section {
  max-width: 500px;
  margin: 0 auto 0px;
}

.home3-shop-section .text-content {
  padding-top: 30px;
}

.home3-shop-section .text-content .card-title {
  margin-bottom: 20px;
}

.home3-shop-section .text-content .star-icons {
  margin-bottom: 15px;
}

.home3-shop-section .text-content .star-icons i {
  color: #FDB923;
}

.home3-shop-section .text-content P span {
  color: #FDB923;
  font-weight: 600;
  margin-right: 10px;
}

.home3-qualified-doctor-section .section-title {
  margin-bottom: 20px;
}

.home3-qualified-doctor-section .card-title {
  margin-bottom: 10px;
}

.home3-qualified-doctor-section .right-content {
  padding-left: 20px;
}

.home3-clients-opinion-section {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(74, 86, 175, 0.9)), color-stop(42%, rgba(74, 86, 175, 0.9))), url(../images/client/home3-client-bg.jpg) center center no-repeat;
  background: linear-gradient(0deg, rgba(74, 86, 175, 0.9) 0%, rgba(74, 86, 175, 0.9) 42%), url(../images/client/home3-client-bg.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
}

.home3-clients-opinion-section .opinion-form {
  max-width: 1100px;
  background: #f5f5f5;
  border-radius: 25px;
  -webkit-clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 70% 100%, 14% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 70% 100%, 14% 100%, 0% 70%, 0% 30%);
  padding: 50px 130px;
  margin: 0 auto;
}

.home3-clients-opinion-section .opinion-form .section-title {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  margin-top: -7px;
}

.home3-clients-opinion-section .opinion-form .ul span {
  font-weight: 600;
}

.home3-clients-opinion-section .opinion-form p {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}

.home3-clients-opinion-section .opinion-form .row input {
  height: 55px;
  background: var(--white-color);
}

.home3-clients-opinion-section .opinion-form ul {
  padding-left: 0;
  margin: 30px auto;
  max-width: 450px;
  text-align: center;
}

.home3-clients-opinion-section .opinion-form ul li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
}

.home3-clients-opinion-section .opinion-form ul li .form-check-input {
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -3px;
}

.home3-clients-opinion-section .opinion-form button {
  margin: 0 auto;
  text-align: center;
}

.home3-team-section .top-section {
  max-width: 440px;
  margin: 0 auto;
}

.home3-team-section .custom-card {
  position: relative;
  overflow: hidden;
}

.home3-team-section .custom-card .overlay-text {
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  border-radius: 25px;
}

.home3-team-section .custom-card .overlay-text .text-content {
  position: relative;
  top: 80%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  visibility: hidden;
  width: 100%;
  text-align: center;
}

.home3-team-section .custom-card .overlay-text .text-content p {
  margin: 0;
}

.home3-team-section .custom-card .overlay-text .text-content h5, .home3-team-section .custom-card .overlay-text .text-content p, .home3-team-section .custom-card .overlay-text .text-content i {
  color: var(--white-color);
}

.home3-team-section .custom-card .overlay-text .text-content .card-title {
  margin-bottom: 10px;
}

.home3-team-section .custom-card .overlay-text .text-content .social-icons {
  margin-top: 10px;
}

.home3-team-section .custom-card .overlay-text .text-content .social-icons i {
  margin-right: 10px;
}

.home3-team-section .custom-card:hover .overlay-text {
  top: 0%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.home3-team-section .custom-card:hover .overlay-text .text-content {
  visibility: visible;
}

.home3-footer {
  background: var(--home3-main-color);
}

.home3-footer .first-col i {
  color: var(--home3-main-color);
}

.home3-footer .first-col .social-icons i {
  color: var(--home3-main-color);
  background: var(--white-color);
  border: 1px solid var(--home3-main-color);
}

.home3-footer .first-col .social-icons i:hover {
  background: var(--home3-main-color);
}

.home3-footer .paste-btn {
  background: var(--white-color);
  color: var(--black-color);
}

.copyright-3 {
  background: var(--home3-main-color);
  border-top: 1px solid rgba(255, 255, 255, 0.425);
}

/*================================================
inner-page-banner
=================================================*/
.inner-page-header .main-nav {
  -webkit-box-shadow: 3px 3px 8px rgba(194, 189, 189, 0.664) !important;
          box-shadow: 3px 3px 8px rgba(194, 189, 189, 0.664) !important;
}

.inner-page-banner-section {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(24%, rgba(51, 104, 198, 0.6)), color-stop(72%, rgba(51, 104, 198, 0.6))), url(../images/about-bg.jpg) center center no-repeat;
  background: linear-gradient(0deg, rgb(34 68 135 / 85%) 24%, rgb(29 42 77 / 71%) 72%), url(../images/about-bg.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  padding: 70px 0 0px;
  /* text-align: center; */
}

.inner-page-banner-section h1 {
  font-size: 68px;
  font-weight: bold;
  color: var(--white-color);
  margin-bottom: 10px;
}

.inner-page-banner-section p {
  color: var(--white-color);
}

.inner-page-banner-section p span {
  font-weight: 600;
}

/*================================================
About Page
=================================================*/
.about-choose .custom-card {
  padding: 40px 30px 30px;
}

.about-choose .custom-card .number {
  background: var(--home2-main-color);
}

.about-provide .provide-services .card-title i {
  background: var(--home2-main-color);
}

.about-clients-opinion {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(24%, #3368c6), color-stop(72%, #3368c6));
  background: linear-gradient(0deg, #3368c6 24%, #3368c6 72%);
}

.about-clients-opinion .violate-btn {
  background: var(--home2-main-color);
}

.about-client-section .custom-card {
  -webkit-clip-path: none;
          clip-path: none;
  padding: 40px 30px;
  border-radius: 30px;
}

.about-client-section .custom-card ul {
  margin-top: 0;
}

.about-client-section .custom-card ul li:first-child {
  margin-right: 10px;
}

.about-client-section .fa-quote-left {
  position: absolute;
  top: 30px;
  color: #3369c6a8 !important;
  font-size: 70px !important;
}

/*================================================
Service Page
=================================================*/
.service-banner {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(24%, rgba(51, 104, 198, 0.6)), color-stop(72%, rgba(51, 104, 198, 0.6))), url(../images/service-section/service-bg.jpg) center center no-repeat;
  background: linear-gradient(0deg, rgba(51, 104, 198, 0.6) 24%, rgba(51, 104, 198, 0.6) 72%), url(../images/service-section/service-bg.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
}

/*================================================
Service Details Page
=================================================*/
.service-details-banner {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(24%, rgba(51, 104, 198, 0.6)), color-stop(72%, rgba(51, 104, 198, 0.6))), url(../images/service-section/service-details-bg.jpg) center center no-repeat;
  background: linear-gradient(0deg, rgba(51, 104, 198, 0.6) 24%, rgba(51, 104, 198, 0.6) 72%), url(../images/service-section/service-details-bg.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
}

.service-details-section .comment-title {
  margin-top: -2px;
}

.service-details-section .row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.service-details-section .top p {
  margin-bottom: 0;
}

.service-details-section .fa-quote-left {
  color: #3369c69c;
  font-size: 60px;
  float: right;
  margin-top: -30px;
}

.service-details-section .details-image {
  margin-bottom: 30px;
}

.service-details-section .details-image img {
  margin: 30px 0;
}

.service-details-section .comment-box {
  margin-top: 30px;
  padding: 30px 30px 25px;
  background: #F7F5FA;
}

.service-details-section .comment-box .icon-text {
  text-align: right;
}

.service-details-section .comment-box .icon-text .card-title {
  margin-top: -7px;
}

.service-details-section .comment-box .icon-text span {
  margin-left: 20px;
  margin-top: 20px;
}

.service-details-section .comment-box .icon-text span i {
  font-size: 22px;
  margin-right: 10px;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 7px;
  background: var(--white-color);
  -webkit-box-shadow: 3px 8px 15px #e6e0e0;
          box-shadow: 3px 8px 15px #e6e0e0;
}

.service-details-section .comment-box .icon-text span .fa-facebook-f {
  color: #3368C6;
}

.service-details-section .comment-box .icon-text span .fa-google-plus-g {
  color: #dd0404;
}

.service-details-section .comment-box .icon-text span .fa-whatsapp {
  color: green;
}

.service-details-section .comment-box .icon-text span .fa-twitter {
  color: #537fca;
}

.service-details-section .comment-card {
  background: #F7F5FA;
  padding: 30px 30px;
  margin: 30px 0;
  border-radius: 20px;
}

.service-details-section .comment-card .doctors-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-details-section .comment-card .doctors-comment img {
  width: 170px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #e2dede;
}

.service-details-section .comment-card .doctors-comment .card-title {
  margin-top: 3px;
}

.service-details-section .comment-card .doctors-comment .name {
  font-size: 18px;
  font-weight: 500;
  margin-top: 6px;
}

.service-details-section .comment-card .doctors-comment li {
  display: inline-block;
}

.service-details-section .comment-card .doctors-comment li p {
  margin-bottom: 10px;
}

.service-details-section .comment-card .doctors-comment li:first-child {
  margin-right: 15px;
  color: var(--home2-main-color);
}

.service-details-section .comment-card .reply li i {
  color: var(--home2-main-color);
}

.service-details-section .comment-card .reply li:first-child {
  margin-right: 30px;
  font-weight: bold;
}

.service-details-section .comment-card .reply li:nth-child(2) {
  margin-right: 40px;
}

.service-details-section .comment-form .comment {
  margin-top: 20px;
  padding: 30px;
  background: #F7F5FA;
  border-radius: 20px;
}

.service-details-section .comment-form .comment input {
  margin: 0px 0 15px;
}

.service-details-section .comment-form .comment textarea {
  margin-bottom: 15px;
  height: 150px;
}

.service-details-section .right-content {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(24%, rgba(0, 0, 0, 0.6)), color-stop(72%, rgba(0, 0, 0, 0.6))), url(../images/service-section/service-details-img2.jpg) center center no-repeat;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 24%, rgba(0, 0, 0, 0.6) 72%), url(../images/service-section/service-details-img2.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  margin-top: 30px;
  border-radius: 25px;
}

.service-details-section .right-content .texts {
  padding: 223px 50px;
}

.service-details-section .right-content .texts h2, .service-details-section .right-content .texts p {
  color: var(--white-color);
}

.service-details-section .right-content .texts h2 {
  margin-bottom: 15px;
}

/*================================================
Shop Page
=================================================*/
.fa-star {
  cursor: pointer;
}

.shop-section {
  position: relative;
}

.shop-section .custom-card {
  margin-bottom: 30px;
  position: relative;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.shop-section .custom-card .overlay-icon {
  position: absolute;
  top: 30px;
  right: 30px;
}

.shop-section .custom-card .overlay-icon i {
  height: 0px;
  width: 0px;
  line-height: 20px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid var(--home2-main-color);
  color: var(--home2-main-color);
  font-size: 0px;
  visibility: hidden;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.shop-section .custom-card .overlay-icon i:hover {
  background: var(--home2-main-color);
  color: var(--white-color);
}

.shop-section .custom-card .overlay-icon .icon {
  margin-bottom: 5px;
}

.shop-section .custom-card:hover .overlay-icon i {
  height: 45px;
  width: 45px;
  line-height: 45px;
  font-size: 20px;
  visibility: visible;
}

.shop-section .section-title {
  display: inline-block;
  text-align: center !important;
  margin: 0 auto;
}

.shop-section .search-option {
  position: absolute;
}

.shop-section .search-option .search-bar {
  position: relative;
  max-width: 290px;
  display: inline-block;
}

.shop-section .search-option .search-bar input {
  height: 50px;
  padding-right: 35px;
  display: inline-block;
}

.shop-section .search-option .search-bar .fa-search {
  position: absolute;
  top: 15px;
  right: 15px;
  color: cornflowerblue;
  font-size: 20px;
}

/*================================================
cart Page
=================================================*/
.cart-section .table > :not(caption) > * > * {
  padding: 20px .5rem;
}

.cart-section .table {
  border-bottom: 2px solid #c7c2c2;
  padding: 30px 0;
}

.cart-section .table tbody, .cart-section .table td, .cart-section .table tfoot, .cart-section .table th, .cart-section .table thead, .cart-section .table tr {
  border-color: none;
  border-style: none;
}

.cart-section .table thead {
  background: #F5F5F5;
  border-bottom: none;
}

.cart-section .table thead tr {
  border-style: none !important;
}

.cart-section .table td {
  vertical-align: middle;
}

.cart-section .table .price {
  color: var(--home2-main-color);
}

.cart-section .table .nice-number {
  border: 1px solid var(--home2-main-color);
  border-radius: 5px;
}

.cart-section .table .nice-number button {
  background: transparent;
  padding: 5px 10px;
  font-size: 20px;
  color: var(--home2-main-color);
  border: none;
  font-weight: bold;
}

.cart-section .table .nice-number input {
  border: none;
}

.cart-section .table .nice-number button:first-child {
  border-right: none;
}

.cart-section .table .nice-number button:last-child {
  border-left: none;
}

.cart-section .button {
  margin-top: 15px;
  color: var(--home2-main-color);
}

.cart-section .button i {
  color: var(--home2-main-color);
  margin-right: 10px;
}

.cart-section .button span {
  float: right;
}

.cart-section .custom-card {
  background: #f5f5f5;
  padding: 30px;
}

.cart-section .custom-card .card-title {
  margin-bottom: 10px;
}

.cart-section .custom-card .nice-select {
  width: 100%;
  background: var(--white-color);
  margin-top: 10px;
  padding-bottom: 10px;
  line-height: 40px;
}

.cart-section .custom-card .nice-select .select {
  height: 45px;
  background: var(--white-color);
}

.cart-section .custom-card .reactangle-blue-btn {
  margin-top: 0px;
}

/*================================================
Shop Details Page
=================================================*/
.quick-view-details .image-section .card-title {
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 18px;
}

.quick-view-details .image-section .social-icons {
  margin-left: 20px;
}

.quick-view-details .image-section .social-icons i {
  font-size: 20px;
  margin-right: 10px;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 7px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 8px 15px #dbd7d7;
          box-shadow: 0px 8px 15px #dbd7d7;
}

.quick-view-details .image-section .social-icons .fa-facebook-f {
  color: #3368C6;
}

.quick-view-details .image-section .social-icons .fa-google-plus-g {
  color: #dd0404;
}

.quick-view-details .image-section .social-icons .fa-whatsapp {
  color: green;
}

.quick-view-details .image-section .social-icons .fa-twitter {
  color: #537fca;
}

.quick-view-details .icon-section .card-title {
  margin-top: 20px;
  margin-bottom: 0 !important;
  font-size: 18px;
}

.quick-view-details .icon-section .social-icons {
  margin-left: 20px;
}

.quick-view-details .icon-section .social-icons i {
  font-size: 20px;
  margin-right: 10px;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 7px;
  background: var(--white-color);
  -webkit-box-shadow: -2px 5px 15px #dbd7d7;
          box-shadow: -2px 5px 15px #dbd7d7;
}

.quick-view-details .icon-section .social-icons .fa-facebook-f {
  color: #3368C6;
}

.quick-view-details .icon-section .social-icons .fa-google-plus-g {
  color: #dd0404;
}

.quick-view-details .icon-section .social-icons .fa-whatsapp {
  color: green;
}

.quick-view-details .icon-section .social-icons .fa-twitter {
  color: #537fca;
}

.quick-view-details .top-section {
  text-align: left;
  padding-bottom: 0;
  padding-left: 20px;
}

.quick-view-details .section-title {
  margin-bottom: 15px;
}

.quick-view-details ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quick-view-details ul li {
  display: inline-block;
}

.quick-view-details .card-title {
  margin-bottom: 15px;
}

.quick-view-details .fa-star {
  color: #FDB923;
}

.quick-view-details .ul-one {
  margin: 15px 0;
}

.quick-view-details .ul-one li {
  margin-right: 30px;
}

.quick-view-details .ul-one li .bold {
  font-weight: bold;
}

.quick-view-details .ul-one li .a {
  color: var(--home2-main-color);
}

.quick-view-details .ul-two {
  margin: 15px 0 25px;
}

.quick-view-details .ul-two li:last-child {
  margin-left: 0px;
}

.quick-view-details .ul-two .reactangle-blue-btn {
  margin-left: 30px;
}

.quick-view-details .ul-two .nice-number {
  border: none;
  border-radius: 5px;
}

.quick-view-details .ul-two .nice-number button {
  background: #f5f5f5;
  padding: 8px 20px;
  font-size: 20px;
  color: var(--home2-main-color);
  border: none;
  font-weight: bold;
}

.quick-view-details .ul-two .nice-number input {
  border: none;
  background: #f5f5f5;
}

.quick-view-details .ul-two .nice-number button:first-child {
  border-right: none;
}

.quick-view-details .ul-two .nice-number button:last-child {
  border-left: none;
}

.quick-view-details .date li {
  background: #f5f5f5;
  border-radius: 5px;
  height: 70px;
  width: 70px;
  padding-top: 15px;
  text-align: center;
  margin-right: 10px;
}

.quick-view-details .date li h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--font-color);
}

.quick-navtab .nav {
  text-align: center;
  padding-left: 0;
  margin-bottom: 40px;
  list-style-type: none;
  display: block;
}

.quick-navtab .nav .nav-item {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
  border: none;
}

.quick-navtab .nav .nav-item .nav-link {
  color: #cccccc;
  border: none;
  border-bottom: 1px solid #eeeeee;
  padding: 0;
  background-color: transparent;
  position: relative;
  padding-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}

.quick-navtab .nav .nav-item .nav-link.active {
  color: var(--blackColor);
}

.quick-navtab .nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--home2-main-color);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  bottom: -2px;
}

.quick-navtab .nav .nav-item .nav-link.active::before {
  width: 100%;
}

.quick-navtab .nav {
  margin-bottom: 20px;
}

/*================================================
Checkout Page
=================================================*/
.checkout-section .left-side .section-title {
  margin: -4px 0 20px;
}

.checkout-section .left-side input {
  margin-bottom: 15px;
}

.checkout-section .left-side .card-title {
  margin: 30px 0 15px;
}

.checkout-section .left-side .reactangle-blue-btn {
  margin-top: 20px;
}

.checkout-section .right-side .custom-card {
  padding: 33px  30px;
  background: #f5f5f5;
  border-radius: 25px;
}

.checkout-section .right-side .section-title {
  margin-bottom: 30px;
}

.checkout-section .right-side .table > :not(caption) > * > * {
  padding: 13px .5rem;
}

.checkout-section .right-side .table {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid white;
}

.checkout-section .right-side .table thead {
  background: var(--white-color);
  border-radius: 10px;
}

.checkout-section .right-side .table input[type="number"] {
  background: transparent;
}

.checkout-section .right-side .table tbody, .checkout-section .right-side .table td, .checkout-section .right-side .table tfoot, .checkout-section .right-side .table th, .checkout-section .right-side .table thead, .checkout-section .right-side .table tr {
  border-color: none;
  border-style: none;
}

.checkout-section .right-side .table td {
  vertical-align: middle;
}

.checkout-section .right-side .table .nice-number {
  border: 1px solid var(--home2-main-color);
  border-radius: 5px;
}

.checkout-section .right-side .table .nice-number button {
  background: transparent;
  padding: 5px 10px;
  font-size: 20px;
  color: var(--home2-main-color);
  border: none;
  font-weight: bold;
}

.checkout-section .right-side .table .nice-number input {
  border: none;
}

.checkout-section .right-side .table .nice-number button:first-child {
  border-right: none;
}

.checkout-section .right-side .table .nice-number button:last-child {
  border-left: none;
}

.checkout-section .right-side p {
  font-weight: bold;
}

.checkout-section .right-side p span {
  float: right;
}

/*================================================
Blog Page
=================================================*/
.blog-section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.blog-section ul li {
  display: inline-block;
  margin-right: 20px;
}

.blog-section .custom-card .text-content {
  padding-top: 20px;
}

.blog-section .custom-card .text-content i {
  color: var(--home2-main-color);
}

.blog-section .custom-card:hover li {
  color: var(--white-color);
}

.blog-section .custom-card:hover li i {
  color: var(--white-color);
}

/*================================================
Blog Details Page
=================================================*/
.blog-details-section .section-title {
  margin-top: 10px;
  margin-bottom: 15px;
}

.blog-details-section .comment-card {
  padding: 30px 30px 10px;
}

.blog-details-section .comment-card .card-title {
  margin-bottom: 30px;
}

.blog-details-section .left-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.blog-details-section .left-content .date {
  display: inline-block;
}

.blog-details-section .left-content .date i {
  color: var(--home2-main-color);
}

.blog-details-section .left-content .date:first-child {
  margin-right: 20px;
}

.blog-details-section .left-content img {
  margin-bottom: 30px; width: 100%!important;
    height: auto!important;
}

.blog-details-section .right-content .search-box {
  padding: 25px;
  background: #f5f5f5;
  border-radius: 10px;
}

.blog-details-section .right-content .search-box .input-group {
  background: var(--white-color);
  border-radius: 5px;
}

.blog-details-section .right-content .search-box .input-group input {
  height: 52px;
  border: none;
  border-radius: 5px;
}

.blog-details-section .right-content .search-box .input-group button {
  background: var(--home2-main-color);
  border: none;
  padding: 0 20px;
}

.blog-details-section .right-content .search-box .input-group button i {
  color: var(--white-color);
  font-size: 20px;
}

.blog-details-section .right-content .sidebar-content {
  padding: 5px 20px 30px;
  background: #f5f5f5;
  margin-top: 30px;
  border-radius: 10px; 
}

.blog-details-section .right-content .sidebar-content .card-title {
  margin: 15px 0 20px;
  padding-bottom: 10px; font-size: 18px;
  border-bottom: 2px solid #d8d4d4;
}

.blog-details-section .right-content .sidebar-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.blog-details-section .right-content .sidebar-content ul li {
  display: inline-block;
}

.blog-details-section .right-content .sidebar-content ul li img {
  width: 160px;
  height: 80px;
}

.blog-details-section .right-content .sidebar-content ul li p {
  margin-top: 10px;
}

.blog-details-section .right-content .sidebar-content ul li p span:first-child {
  margin-right: 20px;
}

.blog-details-section .right-content .sidebar-content ul li:last-child {
  margin-left: 10px; margin-top: 5px;
}

.blog-details-section .right-content .tags {
  padding: 25px 20px 15px;
  background: #f5f5f5;
  margin-top: 30px;
  border-radius: 15px;
}

.blog-details-section .right-content .tags .card-title {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #d8d4d4;
}

.blog-details-section .right-content .tags a {
  padding: 8px 15px;
  background: var(--white-color);
  color: var(--black-color);
  margin-right: 7px;
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 10px;
}

/*================================================
Contact Page
=================================================*/
.contact-section .row {
  --bs-gutter-x: 0;
  margin: 0;
}

.contact-section .top-portion {
  background: #f5f5f5;
}

.contact-section .top-portion .upper-right-content {
  max-width: 550px;
  margin-left: 30px;
  margin-right: auto;
}

.contact-section .top-portion .upper-right-content p {
  margin: 15px 0 20px;
}

.contact-section .top-portion .upper-right-content .input {
  margin-bottom: 10px;
  height: 50px; width: 98%;
}

.contact-section .top-portion .upper-right-content input {
  border: none;
}

.contact-section .top-portion .upper-right-content textarea {
  margin-bottom: 15px;
  height: 80px;
  border: none;
}

.contact-section .top-portion .upper-right-content .reactangle-blue-btn {
  margin-top: 15px;
}

.contact-section .top-portion .upper-right-content .form-check a {
  color: var(--home2-main-color);
  font-weight: 600;
  border-bottom: 1px solid var(--home2-main-color); 
}

.contact-section .lower-portion {
  background: #f5f5f5;
}

.contact-section .lower-portion .section-title {
  margin-bottom: 20px;
}

.contact-section .lower-portion .lower-left-content {
  max-width: 550px;
  margin-right: 30px;
  margin-left: auto;
}

.contact-section .lower-portion .lower-left-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
}

.contact-section .lower-portion .lower-left-content ul li {
  display: inline-block;
  margin-right: 20px;
}

.contact-section .lower-portion .lower-left-content ul li .card-title {
  margin-bottom: 5px;
}

.contact-section .lower-portion .lower-left-content ul li p {
  margin: 0;
}

.contact-section .lower-portion .lower-left-content ul li i {
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 100px;
  background: var(--white-color);
  border-radius: 50%;
  font-size: 40px;
  color: var(--home2-main-color);
}

.contact-section .lower-portion .lower-left-content ul:last-child {
  margin-bottom: 0;
}

.google-map {
  height: 600px;
  width: 100%;
}

.google-map .map {
  height: 100%;
  width: 100%;
}

/*================================================
Privacy Page
=================================================*/
.privacy-policy-section .inner-section {
  padding: 30px;
  background: #f5f5f5;
}

.privacy-policy-section .inner-section .section-title {
  margin-bottom: 15px;
}

.privacy-policy-section .inner-section .second-row, .privacy-policy-section .inner-section .first-row {
  margin-bottom: 40px;
}

/*================================================
Login Page
=================================================*/
.login-register-section .custom-card {
  padding: 30px;
  background: #f5f5f5;
  border-radius: 25px;
  margin-bottom: 30px;
}

.login-register-section .section-title {
  margin-bottom: 30px;
}

.login-register-section input {
  margin-bottom: 15px;
}

.login-register-section .form-control {
  height: 50px;
}

.login-register-section .form-check {
  margin: 20px 0;
}

.about-provide .provide-services .card-title span {
  background: var(--home2-main-color);
}

.appointment-page .custom-card {
  margin-top: 0;
  padding: 30px;
}

.appointment-page .custom-card span {
  font-weight: 500;
  margin-right: 10px;
}

.appointment-page .custom-card .card-title {
  margin-bottom: 20px;
}

.appointment-page .custom-card-2 {
  padding: 30px 30px 25px;
}

.shape {
  -webkit-animation: zoomInOut 3s infinite;
          animation: zoomInOut 3s infinite;
}

@-webkit-keyframes zoomInOut {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoomInOut {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.doctors-section .custom-card {
  margin-bottom: 30px;
}

.doctors-section .custom-card img {
  border-radius: 25px;
}
/*# sourceMappingURL=style.css.map */
.social-header li a{
  color: #fff;
  font-size: 16px;
}
.social-header li{
  padding: 0 10px;
}
.top-bottom-spacing {
  padding: 80px 0 ;
  background: #f7f7f7;
}
@media (max-width :767px) {

    .why-choose-us-section .custom-card
    {
        padding: 40px 12px!important;
    }
  .top-bottom-spacing {
    padding: 64px 0 24px
  }
   footer .list-type1 li
    {
        display: initial;
    margin-bottom: 15px!important;
    border-bottom: none!important;
    border-right: 1px solid #cccccc47;
    padding: 0px 7px!important;
    }
      footer .list-type1 li:last-child
    {
    border-right:none;
     }
    .contact-section .lower-portion .lower-left-content
    {
        padding:0!important;
    }
  
  
}

.pentagon img {
  position: absolute;
  left: -7px;
  top: 0;
  z-index: -11;
  -webkit-transition: .3s ease-out;
  -moz-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
  -webkit-backface-visibility: hidden
}

.cta-content:hover .mask img,
.pentagon .mask:hover img {
  left: 0
}

.mask {
  width: 140px;
  height: 140px;
  position: relative;
  background: #324c73
}

.cta-content .mask.mask-img,
.cta-content:hover .mask.mask-img,
.mask-img {
  background: 0 0
}

.mask-img {
  width: 275px;
  height: 275px
}

.mask-img-sm {
  width: 250px;
  height: 250px
}

.mask-img-xs {
  width: 232px!important;
  height: 230px!important
}

.cta-content:hover .mask {
  background: #8ECBEE
}

.pentagon .mask:before {
  width: 150%;
  height: 150%;
  position: absolute;
  top: -28%;
  left: -26%;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: url(../images/pentagon-mask-white.png) no-repeat;
  -webkit-transition: -webkit-transform .3s ease-out;
  -moz-transition: -moz-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-backface-visibility: hidden;
  background-size: contain;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  content: '';
}

.grey-bg .pentagon .mask::before,
.pentagon .mask::before {
  background: url(../images/pentagon-mask-grey.png) no-repeat;
  background-size: contain
}

.pentagon .mask::before,
.pentagon .mask::before {
  background: url(../images/pentagon_mask-white.png) no-repeat;
  background-size: contain
}

.white-bg .pentagon .mask::before {
  background: url(../images/pentagon-mask-white.png) no-repeat;
  background-size: contain;
  z-index: -1;
}

.mask-icon i:before {
  font-family: FlatIcon;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  text-align: center;
  z-index: 1;
  font-size: 50px;
  color: #fff
}

.item:hover .mask:before,
.item .mask:hover:before {
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg)
}

.mask-img:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 1;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s
}

.cta-content:hover .mask-img:after {
  opacity: 1
}

.mask:hover.mask-img:after,
.owl-carousel .owl-buttons {
  opacity: 0
}

@media (min-width:992px) {
  .sec-small [class*=bg-color-],
  .sec-small [class*=bg-color-img]:before {
    min-height: 710px
  }
}

.bg-color-01 {
  background: #F5f5f5
}

.bg-color-02 {
  background: #efefef
}

.bg-color-img-01 {
  background: url(../images/square01.jpg) no-repeat
}

.bg-color-img-02 {
  background: url(../images/square04.jpg) no-repeat
}

[class*=bg-color-img] {
  position: relative;
  background-size: cover
}

@media (max-width:991px) {
  [class*=bg-color-img] {
    min-height: 500px
  }
}

.hover-content-section {
  z-index: 9;
  position: relative
}

.hover-content {
  position: relative
}

.hover-content.panel-body {
  position: relative;
  padding: 15px
}

.hover-content .hover-hide-show-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(5%);
  -webkit-transform: translateY(5%);
  -moz-transform: translateY(5%);
  -ms-transform: translateY(5%);
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  position: absolute;
  left: 0;
  right: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}

.hover-hide-show-content a {
  color: #ced9e4;
  display: block;
  padding: 12px 15px;
  text-transform: capitalize
}

.banner #contact_form .form-title,
.banner #contact_form button,
.click-here,
.panel-title,
.subbanner-type-2 .skew-effect,
.title {
  text-transform: uppercase
}

.hover-content .list-group {
  background-color: #324C73;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px
}

.hover-content .list-group-item {
  background: 0 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  border-radius: 0;
  padding: 0
}

.hover-content .list-group-item:hover {
  background: rgba(255, 255, 255, .07)
}

.hover-content:hover .hover-hide-show-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  z-index: 9999;
  width: 100%
}
.mask.mask-img.mask-img-xs{
  margin-left: 10%;
}
#service-slider .owl-nav .owl-prev{
    position: absolute;
    top: 40%;
    left: -40px;
    font-size: 40px;
    z-index: 9999;
    background: #224487;
    height: 50px;
    width: 50px;
    color: #fff;
    border-radius: 50%;
    line-height: 0;
    opacity: 0.3;
}
#service-slider .owl-nav .owl-next{
    position: absolute;
    top: 40%;
    right: -40px;
    font-size: 40px;
    z-index: 9999;
    background: #224487;
    height: 50px;
    width: 50px;
    color: #fff;
    border-radius: 50%;
    line-height: 0;
    opacity: 0.3;
}
#service-slider .owl-nav .owl-prev span{
    position: absolute;
    left: -5px;
    right: 0;
    top: 47%;
}
#service-slider .owl-nav .owl-next span{
    position: absolute;
    left: 0;
    right: -5px;
    top: 47%;
}
#service-slider .owl-nav .owl-next:hover, #service-slider .owl-nav .owl-prev:hover{
  opacity: 1;
}
footer .list-type1 li,
footer .table-min .dl-horizontal {
  border-bottom: 1px solid rgba(120, 120, 120, .2)
}

footer {
  background: #282E33;
  color: #748796;
  position: relative;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  z-index: 1;
  box-shadow: 0 15px 15px -20px #b0b0b0 inset;
  -moz-box-shadow: 0 15px 15px -20px #b0b0b0 inset;
  -webkit-box-shadow: 0 15px 15px -20px #b0b0b0 inset
}

.footer {
  background: url(../images/footer.jpg) top center!important;
  background-size: cover!important
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgb(0 0 0 / 85%) 0%, rgb(0 0 0 / 85%) 35%, rgb(0 0 0 / 85%) 100%), url(../images/footerbg.jpg);
  z-index: -1
}

.footer {
  padding-top: 100px;
  position: relative;
  z-index: 0
}

.footer-logo img {
  width: 240px;
  margin-top: -42px
}

.footer .footer-title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 700
}

.footer p {
  font-size: inherit
}

.footer a,
.footer p {
  color: #8B9FAF
}

.footer a.btn {
  color: #fff!important
}

footer .list-type1 li {
  font-size: inherit;
  color: inherit;
  width: 100%;
  padding: 5px 0;
}

.footer-menu ul li a:before,
.footer-strip-menu a:after {
  content: '';
  right: -3px;
  height: 12px;
  width: 1px
}

.footer-bottom-strip {
  padding: 20px 0;
      border-top: 1px solid #ffffff4d;
    margin-top: 50px;
}

.copyright {
  font-size: 14px
}

.footer-menu ul li a {
  font-size: 18px;
  line-height: 32px;
  padding: 0 10px;
  font-weight: 500;
  position: relative
}

.footer-menu ul li a:before {
  position: absolute;
  top: 5px;
  background: rgba(201, 201, 201, .5)
}

.footer-menu ul li:last-child a:before {
  display: none
}

.footer-menu ul li:first-child a {
  padding-left: 0
}

.footer-menu ul li:last-child a {
  padding-right: 0
}

.footer-strip-menu {
  text-align: right
}

.footer-strip-menu li {
  position: relative;
  display: inline-block;
  padding: 0 12px
}

.footer-strip-menu a:after {
  position: absolute;
  top: 7px;
  background: #7C9FAF
}

.footer-strip-menu li:last-child a:after {
  display: none
}

.footer-strip {
  position: relative;
  overflow: hidden
}

.footer-strip .footer-bottom-border {
  background: #324c73;
  height: 5px
}

.footer-strip .back-to-top {
  overflow: hidden;
  padding-top: 15px;
  width: 160px;
  height: 80px;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  background: #324c73;
  margin: 0 auto -40px;
  text-align: center;
  display: block
}

.footer-strip .back-to-top i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 20px;
  border-radius: 50%;
  background: #8ECBEE;
  color: #333
}

.footer-strip .back-to-top:hover i {
  line-height: 30px;
  color: #111;
  background: #fff
}

.back-to-top-fixed {
  position: fixed;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #8ECBEE;
  color: #E5E6DD;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  border-radius: 3px;
  text-align: center;
  font-size: 20px
}

.back-to-top-fixed:hover {
  background: #324c73;
  color: #fff
}

.back-to-top-fixed:before {
  content: '\f106';
  font-family: FontAwesome
}

.top-strip {
  background: fixed rgba(255, 255, 255, 1);
  padding: 30px 0;
  font-size: 20px
}

.footer-call i:before {
  color: #8e98ac;
  font-size: 18px;
  text-align: right;
  margin-right: 15px;
  vertical-align: middle
}
.media-body a:hover{
  color: #fff;
}
.marbot20{
  padding-bottom: 10px;
}
.footer-call .media-left {
  padding-right: 0
}
.media-left, .media-right {
    white-space: nowrap;
}
.media-left, .media-right, .media-body {
    display: table-cell;
    vertical-align: top;
}
@media (max-width:991px) {
  .top-strip .media-body {
    width: 100%;
    text-align: left
  }
  .copyright,
  .footer-strip-menu {
    text-align: center
  }
}

.footer-social-bg ul li a,
.social-icons-simple.social-bg-grey li:hover a {
  background: #324c73;
  color: #fff
}

.social-icons-simple.footer-social-bg {
  display: block
}

.footer-social-bg ul li a:hover {
  background: #8ECBEE;
  color: #fff
}
.table-min .dl-horizontal dt {
  width: 60px;
  text-align: left;
  font-weight: 500;
  color: #fff;
  letter-spacing: -.5px;
  float: left;
  white-space: normal;
  font-size: 14px
}

.table-min .dl-horizontal dd {
  margin-left: 65px;
  letter-spacing: -.5px;
  font-size: 14px
}
.footer .table-min .dl-horizontal dt {
  width: 100px
}

.footer .table-min .dl-horizontal dd {
  margin-left: 105px
}
@media (max-width :991px) {
  .footer .marbot50-md-xs {
    margin-bottom: 60px
  }
  .list-type2 li.active:after,
  .list-type2 li.current:after,
  .list-type2 li:hover:after {
    display: none
  }
  .absolute-video .embed-responsive {
    min-height: inherit
  }
  .footer .footer-title {
    margin-bottom: 20px
  }
}
.fadeInUp.go { 
    -webkit-animation-name: fadeInUp; 
    animation-name: fadeInUp; 
}
.pentagon-text .fontresize{
    color: #6d6d6d;
    line-height: 27px;
    margin-bottom: 10px;
}
.read-more {
    font-size: 13px;
    font-weight: 600;
    color: #324c73;
    letter-spacing: 1px;
}
.pentagon-text h4{
  font-size: 16px!important;
  margin-bottom: 10px!important;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 700;
}
.box1-cta{
  margin-bottom: 20px;
}
.home2-choose-us-section{
  padding: 80px 0;
  padding-bottom: 60px;
}
.color-class h2{
  color: #fff;
}
.adj-class{
  line-height: 40px;
}
.footer-btn{
  background: #fff;
  color: #000!important;
  font-weight: 700;
}
.footer-btn:hover{
  color: #fff!important; background: #224487;
}
.text-content ul{
  justify-content: space-between;
}
.marbot50-md-xs img{
  margin-top: -20px;
  margin-bottom: 30px;
}
.text-left{
  text-align: left!important;
}
.quote-text h2{
  font-size: 30px;
  line-height: 40px;
}
.mask-img:after {
    background: rgba(8,44,70,0.4);
}
.bg-cls{
  background: url(../images/therapy1.png)!important;
  background-size: cover!important;
}
.bg-cls h5, .bg-cls p{
  color: #fff!important;
}
.bg-cls img{
  width: 30%!important;
  filter: invert(100%);
}
.bg-cls1{
  background: url(../images/bg1.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.the-btn:hover{
  background: #fff!important;
  color: #000!important;
  font-weight: bold;
}
.the-btn{
  background: #fff!important;
  color: #000!important;
}
.shadow{
  box-shadow: 3px 4px 15px #00000026;
}
#choose-us-slider .owl-stage, #blog-slider .owl-stage {
  padding: -15px;
}
#choose-us-slider .owl-stage .owl-item, #blog-slider .owl-stage .owl-item{
  padding: 15px;
}
/*.service-texts::before{
  position: absolute;
  top: 0;
  width: 500px;
  height: 500px;
  background: url("../images/about-bg.png");
  opacity: 0.5;
  z-index: -11;
  content: "";
}*/





.time {
  margin-top: 8px;
  width: 50%;
}
.time__heading {
  text-align: center;
  color: #fff;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}
.time__input {
  width: 100%;
}
.time__input .timepicker {
  width: 100%;
  font-size: 1rem;
  height: 55px!important;
  border-radius: 0.25rem;
  padding: .375rem .75rem;
  font-weight: 300;
  text-align: left;
  border: 1px solid #ced4da;
  color: #303233;
  outline: none;
}

div[id^=tp_].timepicker__wrapper {
  opacity: 0;
  height: auto;
  min-width: 150px;
  max-height: 0px;
  overflow: hidden;
  position: absolute;
  transition: max-height 0.1s ease-in-out;
  background: #F4F5F7;
  background: linear-gradient(to bottom, #e3e3e5 0%, #efefef 7%, #f4f5f7 100%);
  border-radius: 0px 0px 5px 5px;
  border: 2px solid #303233;
  border-top: transparent;
  /*box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1);*/
  text-align: center;
}
div[id^=tp_].timepicker__wrapper * {
  box-shadow: border-box;
}
div[id^=tp_].timepicker__wrapper-active {
  opacity: 1;
  max-height: 100px;
  padding: 15px;
}
div[id^=tp_].timepicker__wrapper-full > div {
  width: 33% !important;
}
div[id^=tp_].timepicker__wrapper > div {
  margin: 0px;
  padding: 0px;
  display: inline-block;
  text-align: center;
  width: 50%;
  max-width: 75px;
}
div[id^=tp_].timepicker__wrapper > div .display {
  color: #303233;
  font-size: 20px;
  font-weight: 100;
  line-height: 35px;
  margin: 0px;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
div[id^=tp_].timepicker__wrapper > div .timepicker__button {
  margin: 0px auto;
  padding: 0px;
  background: #fff;
  cursor: pointer;
  background: transparent;
  border: solid 5px transparent;
}
div[id^=tp_].timepicker__wrapper > div .timepicker__button__up > div {
  width: 0px;
  height: 0px;
  margin: auto;
  border-left: solid 5px transparent;
  border-right: solid 5px transparent;
  border-bottom: solid 5px #303233;
}
div[id^=tp_].timepicker__wrapper > div .timepicker__button__down > div {
  width: 0px;
  height: 0px;
  margin: auto;
  border-left: solid 5px transparent;
  border-right: solid 5px transparent;
  border-top: solid 5px #303233;
}
.footer-form input, .footer-form textarea{
  margin: 5px 0px;
  padding: 5px 10px;
  background: transparent;
  border-radius: 0;
  border: 1px solid #aaaaaa59;
  color: #000!important;
  width: 100%;
}
.footer-form button{
  width: 100%!important;
  border-radius: 0px!important;
}
.footer-form .form-group .form-control:focus{
  background: transparent!important;
}
.two-s-cards{
  position: relative;
}
.online-service-2::before{
    position: absolute;
    top: 70px;
    left: 0;
    background: url(../images/about-bg.png);
    width: 50%;
    background-size: contain;
    background-repeat: repeat;
    height: 100%;
    opacity: 0.1;
    content: "";
}
.why-choose-us-section.bg-cls1{
  padding-top: 100px;
  padding-bottom: 80px;
}
.blog-section.service-section.home3-service-section{
  padding-bottom: 40px;
}
#banner{
  margin: 0;
  padding: 0;
}

.call_me{position:fixed;bottom:30px;left:30px;width:60px;height:60px;text-align:center;border-radius:50%;-webkit-border-radius:50%;z-index:100000!important;cursor:pointer}.call_me,.call_me::before{background:radial-gradient(#33a93c,#33a93c,#18791f)}.call_me i{color:#fff;font-size:24px;line-height:60px;-webkit-animation:uptocallphone 1.5s linear infinite;-moz-animation:uptocallphone 1.5s linear infinite;animation:uptocallphone 1.5s linear infinite;position:relative;z-index:10001}.call_me::before{content:'';transform:scale(1,1);opacity:.5;width:60px;height:60px;display:block;position:fixed;left:30px;bottom:30px;border-radius:100%;z-index:9999;-webkit-animation:uptocallmini 1.5s infinite;-moz-animation:uptocallmini 1.5s infinite;animation:uptocallmini 1.5s infinite}@-webkit-keyframes uptocallphone{0%{-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}25%{-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg)}50%{-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}75%{-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg)}100%{-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}}@-moz-keyframes uptocallphone{0%{-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}25%{-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg)}50%{-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}75%{-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg)}100%{-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes uptocallphone{0%{-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}25%{-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg)}50%{-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}75%{-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg)}100%{-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes uptocallmini{0%{-webkit-transform:scale(1,1);opacity:.5}80%{opacity:0;-webkit-transform:scale(1.5,1.5)}85%{-webkit-transform:scale(.5,.5);opacity:0}100%{-webkit-transform:scale(1,1);opacity:.5}}@keyframes uptocallmini{0%{transform:scale(1,1);opacity:.5}80%{opacity:0;transform:scale(1.5,1.5)}85%{transform:scale(.5,.5);opacity:0}100%{transform:scale(1,1);opacity:.5}}
.about-img img{
  width: 80%;
  padding: 50px;
}
.about-img{
    display:flex;
    justify-content:center;
    align-items:center;
}
/*.about-img::before{*/
/*    position: absolute;*/
/*    top: 110px;*/
/*    right: 160px;*/
/*    width: 440px;*/
/*    height: 470px;*/
/*    background: #204386;*/
/*    z-index: -9;*/
/*    content: "";*/
/*}*/
.media{
    word-break:break-all;
}
.about-provide img 
{
  border-radius: 15px;
}

.section-title {
    margin-bottom: 25px;
}
.single-vision-box {
    margin-bottom: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 55px 5px rgb(137 173 255 / 20%);
    box-shadow: 0 10px 55px 5px rgb(137 173 255 / 20%);
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 470px;
    overflow: hidden;
}
.single-vision-box::before {
    width: 0;
    height: 100%;
    z-index: -1;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1A76D1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-vision-box .icon {
    margin-bottom: 20px;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 100%;
    background-color: #224487;
    color: #ffffff;
    font-size: 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-vision-box::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 10px solid #ffffff;
    left: -80px;
    bottom: -80px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-vision-box:hover .icon
{
  background-color: #ffffff;
    color: #224487;
}
.single-vision-box:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); border-radius: 10px 30px 10px 30px;
}
.single-vision-box {
    margin-bottom: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 55px 5px rgb(137 173 255 / 20%);
    box-shadow: 0 10px 55px 5px rgb(137 173 255 / 20%);
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 320px;
    overflow: hidden;
}
.single-vision-box:hover::before {
    width: 100%;
}
.single-vision-box:hover::after {
    left: -50px;
    bottom: -50px;
}
.single-vision-box::before
{
    background: #224487;
}

.single-vision-box:hover p, .single-vision-box:hover h3 
{
  color: #fff;
}
.single-vision-box p {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 12px;
    margin-bottom: 0;
}
#awards-slider .item
{
  border: 1px solid #efefef;
    border-radius: 10px 30px 10px 30px;
    padding: 5px;
    overflow: hidden;
}

.breadcrumb-holder {
    padding-top: 40px;
    padding-bottom: 45px;
    padding-left: 15px;
}
.breadcrumb {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
}
.breadcrumb-item a {
    color: #333;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item {
    padding-left: 10px;
}
.breadcrumb-item.active {
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
    margin-top: 2px;
}
.breadcrumb-item + .breadcrumb-item::before {
    font-size: 1.05rem;
    display: inline-block;
    padding-right: 8px;
    margin-top: -2px;
    color: #858585;
    content: "\00bb";
}
.breadcrumb-holder h4 {
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    margin-top: 10px; color: #224487;
    margin-bottom: 0;
}
.category-ul.active
{
  background: #224487;
  margin: 0px 0;
  margin-bottom: 0!important;
  padding: 10px; border-radius: 5px 15px 5px;
  color: #fff;
}
.category-ul
{
  
  margin: 0px 0;
    margin-bottom: 0!important;
    padding: 10px;
    border-bottom: 1px dashed #5b56516e;
}
 

.job-card {
  padding: 20px 16px;
  background-color: #f7f7f7;
  border-radius: 8px;
  cursor: pointer; margin-bottom: 20px;
  transition: 0.2s;
}
.job-card:hover {
  transform: scale(1.02);
}
.job-card svg {
  width: 46px;
  padding: 10px;
  border-radius: 8px;
}
.job-card-title {
  font-weight: 900;
  margin-top: 16px;
  font-size: 24px;
}
.job-card-subtitle {
   
  font-size: 15px;
  margin-top: 14px;
  line-height: 1.6em;
}
.job-card-header {
  display: flex;
  align-items: flex-start;
}
 
.search-buttons {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    /* margin-top: 14px; */
    border: navajowhite;
}
.detail-button {
    background-color: #e1f1e2;
    color: #595959;
    font-size: 12px;
    font-weight: 500;
    width: 100%;
    padding: 6px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.workshop-ul li 
{
  font-size: 15px; list-style: inside;
}
 .workshop-side
{
  border-right: 1px solid #ccc;
}
.job-card-buttons .violate-btn
{
  width: 100%;
}
 
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #ffffff;
    background-color: #224487;
    /* border-color: #dee2e6 #dee2e6 #fff; */
}
.nav-pills .nav-link{
   margin-bottom: 10px!important;
    border: 1px solid #ebebeb;
    background: #fff;
    margin: 0 2px;
    padding: 5px 13px;
    font-size: 14px;
    border-radius: inherit;
   
}
.nav-tabs {
    border:none;
}
.ig-class{
  display: flex;
}
.bg-class{
    background: #224487;
    color: #fff!important;
    border: 1px solid #224487!important;
}
.category-ul h6
{
    font-size:14px!important;
}
 
.jobWrap{padding:20px 10px; margin: 0; border-top: 2px dotted #aaa;}
.jobWrap h3{color: #820024; font-weight: 300; font-size: 25px; margin: 0 0 10px;}

.jobDetail{padding-top: 30px; padding-bottom: 30px; display: none;}
.jobWrap h4{color: #222; font-weight: 400; font-size: 18px; margin: 0 0 10px;}
.applyForm{
	padding: 20px; 
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.41);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.41);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.41);
}


.hidecls{
    display:block;
}
@media(max-width:769px){
    .hidecls{
        display:none;
    }
    .header-area .top-menu .home1-top-menu-ul li:first-child{
        display:none;
    }
    #home1-header .top-menu{
        padding:0 10px;
    }
    .home1-banner-section .text-content h1{
        font-size:30px;
    }
    .home1-banner-section .banner{
        padding:50px 0 110px;
    }
    .home1-banner-section .text-content {
        max-width: 700px;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .appoinment-section .appoinment-text{
        z-index:1;
        margin-top:10px;
    }
    .appoinment-section .appoinment-text .form-content , .appoinment-section .appoinment-text .quote-text{
        padding: 30px;
    }
    .appoinment-section .appoinment-text .quote-text p {
        margin-top: -20px;
        margin-bottom: 0;
    }
    .top-bottom-spacing{
        padding:60px 0;
    }
    .col-lg-3.col-md-12.marbot40.fadeInLeft.animated{
        padding-bottom:30px;
    }
    .online-service-2::before{
        width:100%;
        z-index:-1;
    }
    .home1-clinic-service-section .two-s-cards .online-service-2 .service-texts{
        margin:50px;
        margin-bottom:0px;
        max-width:100%;
    }
    .why-choose-us-section.bg-cls1{
        padding-top:50px;
    }
    .why-choose-us-section .top-section , .home3-service-section .top-section {
        padding-bottom:0px;
    }
    .card-title{
        font-size:20px;
    }
    .image{
        text-align:center;
        padding-bottom:50px;
    }
    .about-provide.home2-provide-shape-section{
        padding-top:70px;
    } 
    .about-surgery-section.home2-surgery-section{
        padding-top:0px;
        padding-bottom:20px;
    }
    .single-vision-box{
        height:350px;
    }
    .right-content{
        padding-top:50px;
    }
    .inner-page-banner-section{
        padding-top:0px;
    }
    .blog-section.service-section.home3-service-section{
        padding-top:60px;
    }
    .blog-details-section .right-content .sidebar-content ul li img{
        height:80px;
    }
    .blog-details-section{
        padding-top:40px;
    }
    .contact-1{
        padding:30px 20px 40px!important;
    }
    .ccontact-1{
        padding:0px 20px 40px!important;
    }
    .contact-section .top-portion .upper-right-content , .contact-section .lower-portion .lower-left-content {
        margin:10px;
        max-width:100%;
    }
    .booking-form{
        padding:50px!important;
    }
    .services-section {
        padding: 40px 0!important;
    }
    .lg-cls{
        text-align:center;
    }
    
}


.hide-sm{
    display:block;
}
@media(max-width:426px){
    .hide-sm{
        display:none;
    }
    .home2-choose-us-section .custom-card{
        padding:20px;
    }
    #home1-header .top-menu .home1-top-menu-ul{
        display:none;
    }
    .home1-banner-section .banner{
        /* padding:40px 30px; */
        background-size: cover!important;
    }
    .header-area .top-menu ul{
        justify-content:center;
        padding:5px;
    }
    .home1-banner-section .text-content p{
        margin: 10px 0;
        font-size: 12px;
    }
    .home1-banner-section .text-content h1 {
        font-size: 17px;
    }
    .quote-text h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .time{
        width:100%;
    }
    .timepicker__wrapper.timepicker__wrapper-full.timepicker__wrapper-active{
        z-index:1;
        margin-top:-15px;
    }
    .col-lg-3.col-md-12.marbot40.fadeInLeft.animated{
        padding:20px;
    }
    .home1-clinic-service-section .two-s-cards .online-service-2 .service-texts{
        margin:30px;
    }
    .about-img img {
        width: 100%;
        padding: 30px;
    }
    .home1-service-section .custom-service-cards .custom-card .card-title , .home1-service-section .custom-service-cards .custom-card p{
        min-height:auto;
    }
    .why-choose-us-section .custom-card .fa-quote-left{
        display:none;
    }
    .card-title{
        margin-bottom:0px;
    }
    .why-choose-us-section .custom-card ul li img{
        width:100%;
    }
    .why-choose-us-section.bg-cls1{
        padding-bottom:0px;
    }
    .text-content .card-title{
        padding-bottom:30px;
    }
    #footer .footer{
        padding:60px 10px 0px;
    }
    .home1-service-section .service-top{
        padding-bottom:0px;
    }
    .home2-choose-us-section{
        padding-bottom:20px;
    }
    .about-provide.home2-provide-shape-section{
        padding-top:20px;
    }
    .provide-services .card-title{
        margin-bottom:0px!important;
        padding-bottom:10px;
    }
    .right-content {
        padding: 10px;
    }
    form .row, .row.widthclass{
        --bs-gutter-x:0;
    }
    form{
        padding:10px;
    }
    .text-center.mb-2.mb-md-3.mb-lg-4{
        display:none;
    }
    .booking-form{
        padding:10px 10px 20px!important;
    }
    .services-section {
        padding: 0!important;
    }
    .blog-details-section .right-content .sidebar-content ul li img {
        width: 200px;
        height: 60px;
    }
    .blog-details-section{
        padding-bottom:40px;
    }
    .breadcrumb-item.active{
        display:none;
    }
    .ig-class{
        flex-wrap:wrap;
    }
    .ig-class li{
        margin-bottom:10px;
    }
    .card-image iframe{
        height:250px;
        width:250px;
    }
    .hover-content-section{
        z-index:1;
    }
    .clearfix.table-min.marbot30-md-xs{
        margin-top:40px;
    }
    .upper-right-content h2{
        font-size:24px;
        margin-bottom:0px;
    }
    .mask.mask-img.mask-img-xs{
        margin-left:17%;
    }
    .lower-left-content ul{
        flex-direction:column;
    }
    .contact-section .lower-portion .lower-left-content ul li{
        margin-right:0px;
        margin-bottom:20px;
    }
    .contact-section .lower-portion .lower-left-content ul li:last-child{
        text-align:center;
        margin-bottom:0px;
    }
    .work{
        padding:0 20px;
    }
    
}

.f-14
{
    font-size:14px;
}
.mm-class{
    margin-top:100px;
}
.we-form input, .we-form button{
    margin:10px 0;
}
.we-form button{
    margin-bottom:30px;
}
.form-control.violate-btn:hover{
    border-radius: 5px;
    display: inline-block;
    background: #204386;
    color: var(--white-color);
    font-weight:600;
}
.page img{
    width:60%;
}
  .services-detail-section ul{
       display:block !important;
   }
   .services-detail-section ul li{
      list-style:inside !important;
      display:list-item !important; padding-bottom: 10px!important;
   }



 .blog-details-section .left-content ul{
       display:block !important;
   }
   .blog-details-section .left-content ul li{
      list-style:inside !important;
      display:list-item !important; padding-bottom: 10px!important;
   }


    .therapy-details-section .left-content ul{
       display:block !important;
   }
   .therapy-details-section .left-content ul li{
      list-style:inside !important;
      display:list-item !important; padding-bottom: 10px!important;
   }





a.banner-call-phone i {
    background: #224487;
    color: #fff;
    padding: 10px;
    border-radius: 100px;
    transform: rotate(86deg);
    margin-right: 10px;
}


.h-decor {
    display: inline-block;
    height: 3px;
    width: 53px;
    background-color: #224487;
}

#myPopupModal {
     z-index:99999;
}
#myPopupModal .modal-body{
    padding:0;
}

#myPopupModal  .modal-content{
    width: 90%;
    margin: 0 auto;
}
#myPopupModal .btn-close{

    position: absolute;
    right: -11px;
    top: -13px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background: #1D2A4D;
    color: #fff;
    opacity:1;
    z-index:1;
    
}

#myPopupModal .btn-close span{
    
    font-size: 30px;
    line-height: 0.8;
    margin-left: 2px;
}

#myPopupModal .modal-backdrop{
    height:100%;
    z-index:9999;
}

.header-area.home1-header{
    position:relative;
    z-index:20;
}

/*#myPopupModal img{*/
/* height: 100%;*/
/*    object-fit: cover;*/
/*}*/
#myPopupModal .container{
    padding:20px;
}

#myPopupModal input{
    height:auto;
}

#myPopupModal .contact-section .top-portion .upper-right-content{
     margin: 20px 15px;
}

#myPopupModal  .contact-section .top-portion .upper-right-content .reactangle-blue-btn{
    margin-top:0;
}

#myPopupModal .form-select-1{
    width: 100%;
    background: var(--white-color);
    height: initial;
    padding-top: 7px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 8px;
    font-size: 14px;
}

#myPopupModal .current{
        color: #6e6e6e;
}
#myPopupModal .nice-select:after{
    top:40%;
}

#myPopupModal .popup-img{
    
    height: 100%;
    object-fit: cover;

}
i.fas.fa-phone {
    transform: rotate(90deg);
}
form label {
    font-style: italic;
    font-size: 15px;
    font-weight: bold;
    color: #959595;
    margin-bottom: 5px;
}
