@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --color-1 : #0c6660;
  --color-2 : #ed1f24;
  --color-3 : #242734;
  --color-4 : #033f63;
  --yellowColor : #FFCD02;
  overflow-x : hidden;
  --font-1 : 'Lato', sans-serif;
  --font-2 : 'Fira Sans', sans-serif;
}
a {
  text-decoration : none!important;
}
body {
  padding-right : 0!important;
}
h1,h2,h3,h4,h5,h6 {
  font-family : var(--font-1);
}
ul,ol {
  margin : 0;
  padding : 0;
  font-family : var(--font-2);
  font-size : 15px;
}
ul {
  list-style : none;
}
p {
  font-family : var(--font-2);
  color : #444;
  font-weight : 400;
}
li,p,span,a {
  font-family : var(--font-2);
}
figure {
  margin : 0;
}
/* COMMON STYLES */
.container {
  position : relative;
}
.p0 {
  padding : 0;
}
.whatsapp-btn {
  display : inline-block;
  position : fixed;
  right : 10px;
  bottom : 20px;
  --value : 50px;
  width : var(--value);
  height : var(--value);
  line-height : 45px;
  border-radius : var(--value);
  background : #0ea647;
  color : #fff;
  font-weight : bold;
  text-align : center;
  font-size : 28px;
  border : none;
  z-index: 10;
}
header.top {
  background : var(--color-1);
  color : #fff;
  padding : 4px;
}
header.top p {
  margin : 0;
}
header.top p a {
  color : #fff;
  font-size : 15px;
  display : inline-block;
  padding : 2px 0;
}
.grid-top-header {
  display : grid;
  grid-template-columns : 250px auto 250px;
  grid-gap : 20px;
}
@media(max-width : 991px) {
  header.top {
    padding : 4px 4px 2px;
  }
  .grid-top-header {
    display : block;
  }
  .grid-top-header .left,
  .grid-top-header .right {
    display : none;
  }
}
.grid-top-header .middle marquee {
  position : relative;
  color : #f8dd6b;
  font-size : 16px;
  font-weight : bold; 
  text-align : center;
  margin : 0;
  top : 2px;
}

.grid-top-header .right {
  text-align : right;
}
.cashless {
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  position : relative;
  top : 3px;
}
@keyframes example {
  0% {color: var(--yellowColor);}
  25% {color: white;}
  50% {color: var(--yellowColor);}
  75% {color: white;}
  100% {color: var(--yellowColor);}
}
.navbar {
  position: absolute;
  left: 0;
  z-index: 10;
  padding: 40px 0;
  width: 100%;
  transition : .5s ease;
}
.navbar.sticky {
  position : sticky;
  top : 0;
  background :#fff;
  padding : 0 0;
  z-index : 1001;
}
.grid-navbar {
  display : grid;
  grid-template-columns: 290px auto 200px;
  grid-gap : 20px;
  padding : 0;
  width : 100%;
  max-width : 1366px;
  margin : auto;
}
@media(max-width : 1200px) {
  .grid-navbar {
    grid-template-columns : 200px auto;
  }
  .touch {
    display : none;
  }
}
.navbar-brand h1 {
  font-size : 25px;
  text-transform: uppercase;
  position : relative;
  top : 18px;
  color : var(--color-1);
  font-weight : bold;
  margin: 0;
}
.navbar-brand img {
  width: 50px;
}
.navbar-nav {
  display : block;
  position : relative;
  text-align : right;
}
.navbar.sticky .navbar-nav {
  text-align : right;
}
.navbar-expand-lg .navbar-nav .nav-item {
  display : inline-block;
}
.navbar-expand-lg .navbar-nav .nav-link {
  display : block;
  color : #fff;
  padding: 23px 13px;
  font-family : var(--font-1);
  font-size : 13px;
  font-weight : bold;
  text-transform: uppercase;
}
.navbar-expand-lg .navbar-nav li.active .nav-link {
  color : var(--color-2)!important;
}
.navbar.sticky .navbar-nav .nav-link {
  color : #222;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  margin-top : 0;
  padding : 5px 0 5px;
  border-radius : 0;
  top : 103%;
  border : none;
  border-radius : 0 0 10px 10px;
  background : var(--color-4);
}
.navbar-expand-lg .navbar-nav .dropdown-menu::before {
  content : '';
  position: absolute;
  left: 15px;
  top: -10px;
  width : 0;
  height : 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--color-4);
}
.navbar-expand-lg .navbar-nav .dropdown-menu.lg::before {
  left: 90px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu li:first-child {
  border-radius : 10px 10px 0 0;
  overflow : hidden;
}
.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child {
  border-radius : 0 0 10px 10px;
  overflow : hidden;
}
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
  padding : 8px 20px;
  font-size : 14px;
  color : #fff;
  white-space : normal;
  font-family : var(--font-1);
  line-height : 17px;
  background : transparent!important;
}
.navbar-expand-lg .navbar-nav a.active {
  color : var(--yellowColor)!important;
}
.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child .dropdown-item {
  border-bottom : none;
  box-shadow : none!important;
}
.accordion-button {
  outline : none;
  box-shadow : none!important;
}
.service-menu-widget
.accordion-collapse {
  border-top: none;
  border-radius: 0 0 6px 6px;
}
.service-menu-widget
.accordion-collapse a {
  position : relative;
  padding: 10px 25px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #111;
  margin: 5px 0;
  border: 1px solid #eee;
  white-space : normal;
}
.service-menu-widget
.accordion-collapse a:last-child {
  margin-bottom : 0;
}
.service-menu-widget
.accordion-collapse a::before {
  content : '\f105';
  position : absolute;
  right : 20px;
  top : 10px;
  font-weight : bold;
  font-family : 'FontAwesome';
}
.service-menu-widget
.accordion-service-detail a {
  padding-left : 35px;
}
.service-menu-widget
.accordion-service-detail a.active {
  background : var(--color-1);
  color : #fff;
}
.service-menu-widget
.accordion-service-detail a::before {
  content : '\f0f1';
  position : absolute;
  left : 12px;
  top : 11px;
  font-family : 'FontAwesome';
}
.service-menu-widget .accordion-button:not(.collapsed) {
  color : #222;
  font-weight : bold;
}
.accordion-xs-radio,
.accordion-xs {
  display : none;
}
.accordion-xs-radio + label {
  position : relative;
}
.accordion-xs-radio + label::before {
  content : '\f107';
  position : absolute;
  right : 10px;
  top : 0px;
  font-family: 'FontAwesome';
  font-size : 18px;
  transition : .5s ease;
}
.accordion-xs-radio:checked + label::before {
  content : '\f106';
}
.accordion-xs-radio:checked ~ .accordion-xs {
  display : block;
  /* background: #fff; */
  padding : 0;
}
.dropdown-menu.md {
  width : 200px!important;
}
.dropdown-menu.lg {
  width : 500px!important;
  left : 0px;
}
.dropdown-menu.lg .inner {
  display : grid;
  grid-template-columns: 1fr 1.5fr;
  grid-gap : 10px;
}
.dropdown-menu.lg .inner a.active {
  color : var(--yellowColor);
  background : transparent;
}
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover {
  background : transparent;
  color : var(--yellowColor);
}
.sub-menu-radio,
.sub-menu {
  display : none;
}
.sub-menu-radio:checked + .sub-menu {
  display : block;
}
.sub-menu a {
  padding : 2px 13px;
}
.btn-call {
  position : relative;
  display : inline-block;
  padding: 8px 20px 10px;
  background : var(--color-1);
  border-radius: 30px;
  color : #fff!important;
  line-height: 20px;
  top: 6px;
  font-family : var(--font-1);
  font-size : 16px;
  margin-bottom : 20px;
}
.touch a {
  position : relative;
  display : block;
  padding: 8px 20px 10px;
  background : var(--color-1);
  border-radius: 30px;
  color : #fff!important;
  line-height: 20px;
  top: 6px;
  font-family : var(--font-1);
  font-size : 16px;
}
.touch a.type-1 {
  background : var(--color-2);
  padding-left : 45px;
  line-height: 19px;
}
.touch a.type-1 span {
  display : block;
  font-size : 16px;
  color : yellow;
}
@media(min-width : 992px) {
  .touch a.type-1 .fa {
    position : absolute;
    left: 18px;
    top: 7px;
    font-size: 40px;
  }
}

.owl-carousel-1 {
  margin-top : 15px;
}
.owl-carousel-1 .owl-nav {
  margin-top: 20px;
}
.owl-carousel-1 .owl-nav button.owl-next,
.owl-carousel-1 .owl-nav button.owl-prev {
  position: absolute!important;
  top : 37%;
  width : 40px;
  height : 40px;
  border-radius : 6px;
  font-size: 40px!important;
  background : #111!important;
  color : #fff!important;
  text-align : center;
  position : relative;
  margin-left: 10px;
}
.owl-carousel-1 .owl-nav button.owl-next.disabled,
.owl-carousel-1 .owl-nav button.owl-prev.disabled {
  opacity : .65!important;
}
.owl-carousel-1 .owl-nav button.owl-prev {
  left : -50px;
}
.owl-carousel-1 .owl-nav button.owl-next {
  right : -40px;
}
.owl-carousel-1 .owl-nav button span {
  position: absolute;
  top: -12px;
  left: 13px;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: rgba(0, 0, 0, .75);
  width: 40px;
  height: 40px;
  border-radius: 30px;
  background-size: 50%;
}
.accordion-body {
  padding : 0;
}
.accordion-item {
  border : none;
}
.navbar-expand-lg .navbar-nav .dropdown-menu .accordion-body .dropdown-item {
  background : var(--color-3)!important;
}
.accordion-button:focus {
  border : none!important;
}
ul.style-1 li {
  position : relative;
  padding-left : 20px;
  margin-bottom : 10px;
}
ul.style-1 li a {
  color : inherit;
  display : block;
}
ul.style-1.lite li {
  color : #fff;
}
ul.style-1.social li .fa,
ul.style-1 li::before {
  content : '\f043';
  position : absolute;
  left : 0;
  top : 2px;
  font-family: 'FontAwesome';
}
ul.style-1 ol {
  margin-top : 10px;
  margin-left : 25px;
}
ul.style-1 ol > li:before {
  display : none;
}
ul.style-1 ol > li {
  padding-left : 8px!important;
}
ul.style-1.social li {
  padding-left : 25px;
}
ul.style-1.social li .fa {
  top : 3px;
}
ul.style-1.social li::before {
  display : none!important;
}
ul.style-1 ul {
  margin-top : 10px;
}
ul.style-1 ul li::before {
  content : '';
  width : 8px;
  height : 8px;
  border-radius : 8px;
  left : 0;
  top : 7px;
  border : 1px solid #222;
}
ul.style-2 li {
  position: relative;
  padding-left : 25px;
  margin-bottom: 10px;
  line-height: 24px;
}
ul.style-2 li .fa {
  position : absolute;
  left : 0;
  top : 3px;
  color : #fff;
  font-size : 18px;
}
ul.style-2 li p {
  color : #fff;
  margin-bottom: 0;
}
ul.style-2 li span {
  color : #a8aec4;
  font-size : 14px;
  font-weight : normal;
}
.broucher-box a.broucher {
  position: relative;
  display: block;
  padding: 15px 20px;
  color: #232323;
  background: #eee;
  font-weight: 500;
  border-radius: 10px;
  transition : .5s ease;
  margin-bottom : 5px;
}
.broucher-box a.broucher span {
  position : absolute;
  right : 20px;
  top : 0;
  background : var(--color-1);
  padding : 4px 10px;
  border-radius : 0 0 6px 6px;
  color : #fff;
}
.broucher-box a.broucher:hover {
  background : var(--color-1);
  color : #fff;
}
.broucher-box a.broucher:hover span {
  background : var(--color-3);
}

/* PAGE HEADER */
.page-header {
  background : var(--color-3);
  text-align : center;
  padding : 15px 10px;

  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.page-header p {
  margin-bottom : 0;
  position : relative;
  color : var(--yellowColor);
  font-size : 15px;
  text-transform: uppercase;
  font-family : var(--font-1);
}
.page-header p a {
  position : relative;
  color : #fff;
  padding-right : 35px;
}
.page-header p a::before {
  content : '\f105';
  position : absolute;
  right : 13px;
  top : -2px;
  font-family : 'FontAwesome';
}

/* PAGE LOADER */
.pageloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  display: flex;
}
.pageloader img {
  margin: auto;
  width: 300px;
}
/* TITLES */
.title-block {
  max-width : 600px;
  margin : 0 auto 30px;
}
.title-1 {
  color : #262937;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}
@media(max-width : 767px) {
  .title-1 {
    font-size : 20px;
  }
}
.lite {
  color : #eee;
}
.title-2 {
  font-size : 45px;
  color : #262937;
  font-weight: 700;
  font-style: normal;
}
.title-2.lite {
  color : #fff;
}
.title-3 {
  font-size : 24px;
  font-weight : bold;
  padding : 6px 0;
  margin-bottom : 0px;
}
.title-3.bordered {
  padding : 6px 15px;
  border-left : 4px solid var(--color-1);
  border-radius : 6px 0 0 6px;
  margin-bottom : 15px;
}

/* BTNS OR BUTTONS */
.btn-block {
  width : 100%;
  display : block;
}
.btn-1,
.btn-2,
.btn-3,
.btn-4 {
  display : inline-block;
  color : #fff;
  padding : 9px 20px 8px 20px;
  border-radius : 30px;
  text-align : center;
  background-color : var(--color-1);
  text-decoration : none;
  font-size : 14px;
  font-family : var(--font-2);
  border : none;
  font-weight : 600;
}
.btn-1.big,
.btn-2.big,
.btn-3.big,
.btn-4.big {
  padding : 12px 24px;
}
.btn-1.inverse, 
.btn-2:hover,
.btn-1:hover {
  background-color : var(--color-2);
  color : #fff;
}
.btn-3 {
  background-color : var(--color-3);
  color : #fff;
}
.btn-3:hover {
  background-color : #fff;
  color : #222;
}
.btn-4 {
  background-color : #fff;
  color : #222;
}
.btn-4:hover {
  background-color : var(--color-3);
  color : #fff;
}
.btn-group-1 {
  display : block;
  margin-top : 35px;
}
@media(max-width : 559px) {
  .btn-group-1 a {
    display : block;
    margin-bottom : 10px;
  }
}
/* INDEX PAGE */
.carousel-indicators {
  bottom : 30px;
}
@media(max-width : 767px) {
  .carousel-indicators {
    display : none!important;
  }
}
.carousel-control-next, .carousel-control-prev,
.carousel-indicators button {
  opacity : 1!important;
}
.carousel-indicators .active {
  background : var(--color-1);
}
.carousel-indicators .auto {
  margin : auto;
}
.carousel-indicators [data-bs-target] {
  width : 25px;
  height : 6px;
  border-radius : 10px;
  border : none;
}

section.department-block {
  position : relative;
  background-image : url('../../images/bg/pattern-1.jpg');
  background-size : 500px;
  padding: 40px 40px 0px;
}
@media(max-width : 767px) {
  section.department-block {
    padding: 25px 10px 0px;
  }
}
section.department-block::before {
  content : '';
  position : absolute;
  left : 0;
  top : 0;
  width : 100%;
  height : 100%;
  background : rgb(0 235 185 / 70%);
}
section.department-block .container {
  position : relative;
}
.grid-department {
  display : grid;
  grid-template-columns : repeat(4, 1fr);
  grid-gap : 20px;
  margin-top : 30px;
}
@media(max-width : 991px) {
  .grid-department {
      grid-template-columns : repeat(3, 1fr);
  }
}
@media(max-width : 767px) {
  .grid-department {
      grid-template-columns : 1fr 1fr;
  }
}
@media(max-width : 559px) {
  .grid-department {
      grid-template-columns : 1fr;
  }
}
.department-box {
  border-radius : 6px;
  overflow : hidden;
  background-color: #fff;
  color: #666;
  box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
  display : block;
}
@media(min-width : 768px) {
  .department-box.grid-type {
      display : grid;
      grid-template-columns : 1fr 1fr;
  }
}
.department-box:hover {
  color : #666;
}
.department-box figure {
  margin : 0;
  overflow : hidden;
}
.department-box figure img {
  transition : .6s ease;
  width : 100%;
  height : 100%;
  object-fit : cover;
}
.department-box:hover img {
  transform : scale(1.1);
}
.department-box .content {
  padding : 20px;
  text-align : center;
  position : relative;
}
.department-box.grid-type .content {
  text-align : left;
}
.department-box .content h2 {
  margin : 0 0 10px;
  font-size : 18px;
  font-weight : bold;
  color : #444;
}
.department-box .content h2.eC {
  font-size : 15px;
  color : #222;
}

.home-chairman .container-fluid {
  padding : 0;
}
.grid-home-chairman {
  display : grid;
  grid-template-columns :  1fr 1fr;
}
@media(max-width : 991px) {
  .grid-home-chairman {
    grid-template-columns :  1fr;
  }
}
.home-chairman-left img {
  width : 100%;
  height : 100%;
  object-fit : cover;
}
.home-chairman-right {
  padding : 50px;
}
@media(max-width : 767px) {
  .home-chairman-right   {
    padding : 25px;
  }
}
.signature {
  max-width : 200px;
}

section.experience {
  padding : 30px 30px 45px;
}
@media(max-width : 767px) {
  section.experience  {
    padding : 15px 15px 30px;
  }
}
.grid-experience {
  display : grid;
  grid-template-columns : 1fr;
  grid-gap : 15px;
}
@media(max-width : 991px)  {
  .grid-experience {
    grid-template-columns : 1fr;
  }
}
.experience-box-left figure {
  position: relative;
}
.experience-box-left figure .overlay {
  position: absolute;
  left : 0;
  top : 0;
  width : 100%;
  height : 100%;
  display : flex;
}
.experience-box-left figure img {
  width : 100%;
}
.experience-box-left figure .overlay a{
  margin : auto;
  display : inline-block;
  width : 80px;
  height : 80px;
  border-radius : 80px;
  line-height : 80px;
  font-size : 26px;
  color : #fff;
  background : var(--color-1);
  text-align : center;
}
.experience-box-left .content {
  margin-top : 20px;
}
.experience-box-right {
  position : relative;
  background-image : url('../../images/experience-right.jpg');
  background-size : cover;
}
.experience-box-right .overlay {
  position : relative;
  width : 100%;
  height : 100%;
  padding : 60px 60px;
  transition : .4s ease;
  background : transparent;
}
.experience-box-right:hover .overlay {
  background : #272A39;
}
.experience-box-right .title-1 {
  max-width : 400px;
}
.experience-box-right img {
  width : 100%;
}
.experience-box-right h3 {
  font-size : 24px;
  color : var(--color-2);
  margin-bottom : 30px;
}

section.explore {
  position : relative;
  background-image : url('../../images/bg/bg-1.jpg');
  background-size : cover;
  padding : 50px 60px;
  text-align : center;
}
section.explore::before {
  content : '';
  position : absolute;
  left : 0;
  top : 0;
  width : 100%;
  height : 100%;
  background : rgb(0 65 63 / 85%);
}
section.explore .container {
  position : relative;
}
.grid-explore {
  display : grid;
  grid-template-columns : repeat(3, 1fr);
  grid-gap : 20px;
  margin : 20px auto;
  color : #fff;
}
.grid-explore.facilities {
  grid-template-columns : repeat(4, 1fr);
}
@media(max-width : 991px) {
  .grid-explore.facilities,
  .grid-explore {
    grid-template-columns : 1fr 1fr;
  }
}
@media(max-width : 767px) {
  section.explore {
    padding : 35px 5px;
  }
  .grid-explore {
    grid-template-columns : 1fr;
  }
  .grid-explore.facilities {
    grid-template-columns : 1fr 1fr;
  }
}
@media(max-width : 560px) {
  .grid-explore.facilities {
    grid-template-columns : 1fr;
  }
}
.explore-box {
  text-decoration : none;
  color : #fff;
}
.explore-box:hover {
  color : #fff;
}
.explore-box .icon {
  display : inline-block;
  width : 50px;
  margin-bottom : 15px;
}
.explore-box .icon img {
  width : 100%;
}
.explore-box .icon i {
  color : var(--yellowColor);
  font-size : 50px;
}
.explore-box p {
  color : #ddd;
}
.explore-box .read-more {
  color : var(--yellowColor);
}
.explore-box:hover h4 {
  color : var(--yellowColor);
}

.explore-box-type-1 {
  background-color: #fff;
  padding : 20px;
  border-radius : 6px;
  position : relative;
}
.explore-box-type-1.type-2 {
  padding : 0 0;
  overflow : hidden;
}
.explore-box-type-1 img {
  width : 100%;
  border-radius : 6px;
}
.explore-box-type-1.type-2 img {
  border-radius : 6px 6px 0 0;
}
.explore-box-type-1 .content {
  position : relative;
  width : calc(100% - 40px);
  margin : 20px;
  margin-top : -40px;
  background : #fff;
  padding : 20px;
  border-radius : 6px;
  color : #333;
  box-shadow : 0 0 15px rgb(0 0 0 / 8%);
}
.explore-box-type-1.type-2 .img-wrap {
  overflow : hidden;
}
.explore-box-type-1.type-2 img {
  transition : .5s ease;
}
.explore-box-type-1.type-2:hover img {
  transform : scale(1.1);
}
.explore-box-type-1.type-2 .content {
  margin : 0;
  box-shadow : none;
  width : 100%;
  border-radius : 0;
  text-align : left;
}
.explore-box-type-1 .content h3 {
  font-size : 22px;
}
.explore-box-type-1.type-2 .content h3 {
  margin : 0 0 0px;
}
.grid-explore.facilities .explore-box-type-1 h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
  font-weight: bold;
}
.explore-box-type-1 .content p {
  margin-bottom : 15px;
}
.explore-box-type-1.type-2 .content p {
  margin-bottom : 0;
  font-size : 14px;
}
p.view-detail {
  position : relative;
  top : 5px;
  color : var(--color-2)
}

.doctors-home{
  padding : 40px 40px;
  background-color: #eee;
}
.grid-our-doctors {
  display : grid;
  grid-template-columns :  1fr 2fr 1fr;
  grid-gap : 20px;
  margin-top : 20px;
}
.doctor-box-1{
  background: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius : 6px;
}
.doctor-box-1 img{
  --img-width : 120px;
  width: var(--img-width);
  height: var(--img-width);
  border-radius: var(--img-width);
  margin-bottom: 20px;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}
.doctor-box-1 h4{
  line-height: 25px;
  color: var(--color-1);
  text-transform: uppercase;
  font-size : 20px;
  font-weight : bold;
}
.doctor-box-1 p.limit{
  color: #333;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient : vertical;
  -webkit-line-clamp : 3;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.doctor-box-1.vision{
  padding : 0;
}
.doctor-box-1.vision iframe{
  width: 100%;
  height: 100%;
}
  
.full-bg-1 {
  background-image : url('../../images/bg/bg-2.jpg');
  background-size : cover;
  padding : 90px 30px;
  color : #fff;
}
.grid-split-1 {
  display : grid;
  grid-template-columns : 1fr 1fr;
  grid-gap : 30px;
}


.testimonial {
  color : #222;
  position : relative;
  background-image : url('../../images/bg/pattern-1.jpg');
  background-size : 500px;
  margin-bottom : -20px;
}
.testimonial::before {
  content : '';
  position : absolute;
  left : 0;
  top : 0;
  width : 100%;
  height : 100%;
  background: rgb(154 219 222 / 70%);
}
.text-carousel .carousel-caption {
  position : relative;
  left : 0;
  bottom : auto;
  top : auto;
  text-align : center;
  width : 100%;
}
.text-carousel .carousel-caption img {
  width : 90px;
  height : 90px;
  border-radius : 90px;
  margin : 15px auto;
}
.text-carousel .carousel-caption h2 {
  font-size : 22px;
  text-transform: uppercase;
  margin : 10px 0;
  color : #222;
  text-shadow : none;
  font-weight : bold;
}
.text-carousel .carousel-caption p {
  display : -webkit-box;
  -webkit-box-orient : vertical;
  -webkit-line-clamp : 2;
  text-overflow : ellipsis;
  overflow : hidden;
  color : #444;
  text-shadow : none;
}
.text-carousel .carousel-indicators {
  position : relative;
  margin-top : 10px;
  margin-bottom : 20px;
}
.text-carousel .carousel-indicators button {
  width : 20px;
  height : 5px;
  background : var(--color-1);
  border : none;
  margin : 0!important;
}
.text-carousel .carousel-indicators button.active {
  background : var(--color-2);
}
@media (min-width: 768px) {
  .testimonial-box-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }
}

@media(max-width : 991px) {
  .full-bg-1 {
    padding : 30px;
  }
  .grid-split-1 {
    grid-template-columns : 1fr;
  }
}
.grid-split-1 p {
  color : #ddd;
}
.icon-split-1 {
  display : grid;
  grid-template-columns : 1fr 1fr;
  grid-gap : 20px;
}
@media(max-width : 559px) {
  .icon-split-1 {
    grid-template-columns : 1fr;
  }
}
.icon-split-box {
  display : grid;
  grid-template-columns : 70px auto;
  grid-gap : 30px;
}
.icon-split-box span {
  font-size : 70px;
}
.icon-split-box div {
  display : flex;
}
.icon-split-box div h3 {
  margin : auto 0;
  font-weight : bold;
  text-align : left;
}

.split-right img {
  width : 100%;
}

section.activities {
  padding : 25px 0;
}
.grid-activities .top,
.grid-activities .bottom {
  display : grid;
  grid-template-columns : 1fr 1fr;
  grid-gap : 10px;
  margin : 10px;
}
.grid-activities .bottom {
  grid-template-columns : 1fr 1fr 1fr;
  margin-bottom : 0;
}
@media(max-width : 991px) {
  section.activities {
    padding : 20px 0;
  }
  .grid-activities > div {
    margin : 0;
  }
  .grid-activities .top{
    grid-template-columns : 1fr 1fr;
    grid-gap : 10px;
    margin : 10px;
  }
  .grid-activities .bottom{
    grid-template-columns : 1fr 1fr 1fr;
    grid-gap : 10px;
    margin : 10px;
  }
}
@media(max-width : 767px) {
  .grid-activities .bottom {
    grid-template-columns : 1fr 1fr;
    grid-gap : 10px;
    margin : 10px;
  }
  .grid-activities .bottom > div:last-child {
    grid-column-start : 1;
    grid-column-end : 3;
  }
}
.activities-box {
  position : relative;
  display : block;
}
.activities-box .overlay {
  position : absolute;
  left : 0;
  bottom : 0;
  width : 100%;
  padding : 20px;
  transition : .6s ease;
  background: linear-gradient(rgba(38,41,55,0) 0%,rgba(38,41,55,0) 65%,rgba(38,41,55,1) 100%);
}
@media(max-width : 767px) {
  .activities-box .overlay {
    padding : 10px;
  }
}
.activities-box::before {
  content : '';
  position : absolute;
  left : 0;
  top : 0;
  width : 100%;
  height : 100%;
  background: rgba(0, 0, 0, 0);
  transition : .6s ease;
}
.activities-box:hover::before {
  background: rgba(0, 0, 0, .3);
}
.activities-box img {
  width : 100%;
  height : 100%;
  object-fit : cover;
}
.activities-box h3 {
  margin : 0;
  color : #fff;
  font-weight : bold;
}

section.full-bg-2 {
  background-image : url('../../images/bg/bg-3.jpg');
  background-size : cover;
  padding : 60px 30px;
}
.grid-form-1 .top,
.grid-form-1 .bottom {
  display : grid;
  grid-template-columns : 1fr 1fr 1fr;
  grid-gap : 15px;
}
.grid-form-1 .bottom {
  grid-template-columns : 1fr 1fr;
}
@media(max-width : 991px) {
  .grid-form-1 .top,
  .grid-form-1 .bottom {
    grid-template-columns : 1fr 1fr;
  }
  .grid-form-1 .top > div:last-child {
    grid-column-start : 1;
    grid-column-end : 2;
  }
}
@media(max-width : 767px) {
  .grid-form-1 .top,
  .grid-form-1 .bottom {
    grid-template-columns : 1fr;
  }
}
.grid-form-1 .form-control {
  height: 50px;
  border-radius : 0;
  padding-left : 18px;
}
.grid-form-1 .form-group {
  position : relative;
}
.grid-form-1 .form-group span {
  position : absolute;
  right : 20px;
  top : 15px;
}
.agree {
  display : block;
  text-align : center;
  color : #fff;
}
.agree a {
  text-decoration : none;
  color : var(--color-2);
}

/* FOOTER */
footer {
  background : var(--color-4);
  padding : 45px;
}
@media(max-width : 767px) {
  footer {
    padding : 30px 20px;
  }
}
.grid-footer {
  display : grid;
  grid-template-columns : 2fr 1fr 1.5fr;
  grid-gap : 50px;
}
@media(max-width : 991px) {
  .grid-footer {
    grid-template-columns : repeat(2, 1fr);
  }
}
@media(max-width : 767px) {
  .grid-footer {
    grid-template-columns : repeat(1, 1fr);
  }
}
.footer-box h4 {
  color : var(--yellowColor);
  font-weight : bold;
  font-size : 18px;
  margin-bottom : 20px;
  text-transform: uppercase;
}
.footer-box .logo{
  width : 180px;
  margin-bottom : 15px;
}
.footer-box h4 + p {
  color : #fff;
  font-size : 15px;
  line-height : 24px;
}
.footer-box ul li a {
  display : block;
  color : #fff;
}
.footer-box ul li a:hover {
  color : var(--yellowColor);
}
.social-media-links a {
  display : inline-block;
  width : 40px;
  height : 40px;
  line-height : 40px;
  text-align : center;
  border-radius : 4px;
  margin-right : 3px;
  background : #fff;
  color : #222;
  font-weight : bold;
  font-size : 17px;
}
.social-media-links.top img {
  width : 40px;
}
.social-media-links.top a {
  height : 30px;
  line-height : 33px;
  background : transparent;
  color : #fff;
}
.subscribe {
  display : grid;
  grid-template-columns : auto 50px;
  grid-gap : 10px;
  border-radius : 10px;
  background : #fff;
  overflow : hidden;
}
.subscribe input {
  border : none;
  height : 45px;
  padding-left : 15px;
  outline : none!important;
}
.subscribe button {
  color : var(--color-1)
}
footer.copyright {
  background : var(--color-3);
  text-align : center;
  padding : 10px;
}
footer.copyright p {
  margin : 0;
  color : #eee;
  font-family : var(--font-1);
  font-size : 13px;
  text-transform: uppercase;
}

/* ABOUT PAGE */
section.about-page {
  background: linear-gradient(99.18deg, #fef3f0, #ebf9ff);
}
#expert {
  padding : 35px 20px;
  font-size: 14px; background: linear-gradient(99.18deg, #fef3f0, #ebf9ff);
}
@media(max-width : 767px) {
  #expert {
    padding : 35px 10px;
  }
}
#expert h2 + p {
  font-size : 14px;
  margin-top : 10px;
}
.grid-services-box {
  display : grid;
  grid-template-columns : repeat(4, 1fr);
  grid-gap : 10px;
  margin-top : 30px;
}
@media(max-width : 991px) {
  .grid-services-box {
    grid-template-columns : repeat(2, 1fr);
  }
}
@media(max-width : 559px) {
  .grid-services-box {
    grid-template-columns : repeat(2, 1fr);
  }
}
.services-box {
  border: 0.5px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 52px 34px 128px rgb(0 0 0 / 12%);
  background: #fff;
  padding: 50px 15px 30px;
  position : relative;
  text-align : center;
}
@media(max-width : 767px) {
  .services-box {
    padding : 20px;
  }
}
.services-box.highlight {
  display : flex;
}
.services-box.highlight div {
  margin : auto;
}
@media(min-width : 992px) {
  .services-box.big {
    grid-column-start : 2;
    grid-column-end : 4;
  }
}
@media(max-width : 991px) {
  .services-box.big + div {
    grid-column-start : 1;
    grid-column-end : 3;
  }
}
.services-box:hover {
  -webkit-box-shadow: 12px 7px 128px rgb(0 0 0 / 32%);
  -moz-box-shadow: 12px 7px 128px rgb(0 0 0 / 32%);
  box-shadow: 12px 7px 128px rgb(0 0 0 / 32%);
  transition: all 500ms ease-in-out;
}

.app-h1 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom : 15px;
  color: #444;
}
.services-box p {
  color : #525252;
  font-size : 14px;
}
.services-box span.number {
  height: 30px;
  width: 30px;
  display: inline-block;
  top: 10px;
  left: 10px;
  position: absolute;
  border-radius: 19px;
  padding-top: 0;
  border-bottom: 2px solid #375E97;
  text-align : center;
  font-weight : bold;
  line-height : 28px;
}
@media(max-width : 767px) {
  .services-box span.number {
    position : relative;
    margin-bottom : 20px;
  }
}
.services-box span.number.color-2 {
  border-color : #00b050;
  color : #00b050;
}
.services-box span.number.color-3 {
  border-color : #FFBB00;
  color : #FFBB00;
}
.services-box span.number.color-4 {
  border-color : #3F681C;
  color : #3F681C;
}
.services-box span.number.color-5 {
  border-color : #FB6542;
  color : #FB6542;
}
.services-box span.number.color-6 {
  border-color : #4D648D;
  color : #4D648D;
}
.btn-services {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  border : 1px solid #6c757d;
  padding : 0px 10px;
  border-radius : 4px;
  font-size : 12px;
  color : #6c757d;
  font-weight : bold;
  margin-top : 15px;
}
.btn-services:hover {
  background : #6c757d;
  color : #fff;
}

.vision-box {
  color : #fff;
  position : relative;
}
.vision-box p {
  margin-bottom : 0;
}
.grid-mission-value {
  text-align : left;
  position : relative;
}
@media(min-width : 768px) {
  .grid-mission-value {
    display : grid;
    grid-template-columns :  1fr 1fr;
    grid-gap : 15px;
    text-align : left;
    position : relative;
  }
}
.vision-box *,
.grid-mission-value * {
  color : #fff;
}
.mission-box,
.value-box {
  padding: 35px;
  background: rgba(0, 0, 0, .3);
  border-radius: 5px;
}
.service-any-question.mission-core {
  padding : 0;
  margin : 0;
  margin-top : 20px;
  width : 100%!important;
  border-radius : 5px;
}
.service-any-question.mission-core
.grid-mission-value {
  grid-gap : 1px;
}
.service-any-question.mission-core
.grid-mission-value > div {
  border-radius : 0;
}

/* SERVICE DETAIL PAGE */
section.service-detail-block {
  background-color : #fff;
  padding : 30px 0;
}
.grid-service-detail {
  display : grid;
  grid-template-columns : 400px auto;
  grid-gap : 30px;
}
@media(max-width : 991px) {
  section.service-detail-block {
    padding : 15px 0;
  }
  .grid-service-detail {
    display: block;
  }
}
.service-detail figure + figure {
  margin-top : 10px;
}
.service-detail .title-3 {
  margin-bottom : 10px;
}
.service-detail ul {
  margin-bottom : 35px;
}
.service-detail ul span.highlight {
  font-weight : bold;
}
.service-menu-widget {
  margin-bottom: 25px;
  padding: 30px 25px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.125);
}
.open-menu {
  display : none;
}
.close-menu {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  padding: 8px 15px;
  background: #eee;
  color: var(--color-3);
  font-size: 18px;
  display : none;
}
@media(max-width : 991px) {
  .open-menu {
    position : fixed;
    right : 10px;
    bottom: 75px;
    width: 50px;
    height: 50px;
    border-radius : 45px;
    line-height: 40px;
    text-align : center;
    background : var(--color-3);
    border : 1px solid #fff;
    color : #fff;
    font-size: 18px;
    display : inline-block;
  }
  .close-menu {
    display : inline-block;
  }
  .service-menu {
    position : fixed;
    top : 0;
    left : 0;
    width : 100%;
    height : 100%;
    min-height : 100vh;
    z-index : 1001;
    display : none;
  }
  body.active-menu .service-menu {
    display : block;
  }
  .service-menu .holder {
    position : relative;
    max-width : 350px;
    width : 100%;
    height : 100%;
    overflow : auto;
    background : #fff;
    transition : .6s ease;
    transition-delay : .24s;
    left : -350px;
  }
  body.active-menu .service-menu .holder {
    left : 0;
  }
  .service-menu-widget {
    border : none;
    border-radius : 0;
    padding : 25px 25px 0 25px;
  }
  .overlay-service-menu {
    display : block;
    position : absolute;
    left : 0;
    top : 0;
    width : 100%;
    height : 100%;
    background : rgba(0, 0, 0, .75);
  }
  .service-any-question {
    margin : 0 25px 25px;
    width : calc(100% - 50px);
  }
}
.service-detail .title-3 {
  margin-top : 15px;
}
.service-detail img.curved {
  border-radius : 8px;
}
.service-detail p {
  color : #222;
}
.grid-service-feature {
  display : grid;
  grid-template-columns :  repeat(4, 1fr);
  grid-gap : 20px;
  margin : 20px 0;
}
@media(max-width : 767px) {
  .grid-service-feature {
    grid-template-columns :  1fr 1fr;
  }
}
.service-feature-box {
  position : relative;
  background : #eee;
  padding : 30px 25px 30px;
  border-radius : 10px;
  overflow: hidden;
}
.service-feature-box span {
  position : absolute;
  right: -10px;
  top: -10px;
  width: 60px;
  height: 60px;
  border-radius: 90px 90px 0;
  line-height: 52px;
  text-align : center;
  background : var(--color-1);
  padding : 10px;
  color : #fff;
}
.service-feature-box .fa {
  font-size: 26px;
}
.service-feature-box p {
  margin-bottom : 0;
  font-size : 20px;
  text-transform: uppercase;
}
.service-feature-box .title-3 {
  margin-top : 0;
  color : #222;
  font-size : 50px;
  font-family : var(--font-2);
  font-weight : bold;
}
.split-1 {
  display : grid;
  grid-template-columns : 1fr 1fr;
  grid-gap : 30px;
  margin-top : 15px;
}
@media(max-width : 767px) {
  .split-1 {
    grid-template-columns :  1fr;
    grid-gap : 0;
  }
  .service-feature-box .title-3 {
    font-size : 24px;
  }
  .service-feature-box p {
    font-size : 14px;
  }
}
.split-1 img {
  width : 100%;
}
.service-any-question {
  padding : 50px 30px;
  text-align : center;
}
.service-any-question {
  background-image : url('../../images/bg/bg-3.jpg');
  background-size : cover;
  border-radius : 6px;
  position : relative;
  overflow : hidden;
}
.service-any-question {
  border-radius : 0;
}
.service-any-question::before {
  content : '';
  position : absolute;
  left : 0;
  top : 0;
  width : 100%;
  height : 100%;
  background : rgba(0, 0, 0, .7);
}
.avatar-block {
  position: relative;
  text-align : center;
}
.avatar-block img {
  width : 90px;
  height : 90px;
  border-radius : 90px;
  margin : 0 auto;
  margin-bottom : 10px;
}
.avatar-block h4 {
  color : #fff;
}
.avatar-block a {
  display : block;
  color : #fff;
  margin-bottom : 10px;
}
.social-block {
  position : relative;
  margin-top : 20px;
}
.social-block a {
  display : inline-block;
  width : 40px;
  height : 40px;
  border-radius : 40px;
  line-height : 40px;
  text-align : center;
  background : #eee;
  color : #222;
}

/* GALLERY PAGE */
.grid-item-wrapper {
  padding : 10px 0;
}
.grid-gallery {
  display : grid;
  grid-template-columns : repeat(4, 1fr);
  grid-gap : 10px;
  padding : 0 0;
}
@media(max-width : 991px) {
  .grid-gallery {
    grid-template-columns : repeat(3, 1fr);
  }
}
@media(max-width : 767px) {
  .grid-gallery {
    grid-template-columns : repeat(2, 1fr);
  }
}
.grid-item {
  position : relative;
  border-radius : 5px;
  overflow : hidden;
}
.grid-item img {
  width : 100%;
  height : 100%;
  object-fit : cover;
}
.grid-item a {
  display : block;
}
.grid-item h4 {
  margin-bottom : 0;
}
.grid-item h4 a {
  display : block;
  background : #111;
  padding : 5px;
  text-align : center;
  border-radius : 0 0 6px 6px;
  color : #fff;
  font-size : 20px;
  z-index : 10;
}
.grid-item:hover h4 a {
  background : var(--theme-primary-color);
}
.grid-item .overlay-gallery {
  display : flex;
  position : absolute;
  left : 0;
  top : 0;
  width : 100%;
  height : 100%;
  background : rgba(0, 0, 0, .65);
  opacity : 0;
  z-index : 10;
  pointer-events : none;
}
.grid-item .overlay-gallery .auto {
  margin : auto;
  color : #fff;
}
.grid-item-wrapper .grid-item img {
  transition : .6s ease;
  max-width : 100%;
}
.grid-item-wrapper .grid-item:hover .overlay-gallery {
  opacity : 1;
}
.grid-item-wrapper .grid-item:hover img {
  transform : scale(1.1);
}
.sl-overlay {
  background : #000;
}
.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-close, .sl-wrapper .sl-counter {
  color : #fff;
}
.sl-caption {
  padding : 25px!important;
}
.sl-caption h5 {
  text-transform: uppercase;
  color : var(--yellowColor);
  font-size : 16px;
}
.sl-caption a {
  color : var(--yellowColor);
}


/* DOCTORS PAGE */
section.doctors {
  padding : 20px 20px 20px;
}
.grid-doctor-1 {
  display : grid;
  grid-template-columns : repeat(5, 1fr);
  grid-gap : 15px;
  margin-top : 20px;
}
@media(max-width : 991px) {
  .grid-doctor-1 {
    grid-template-columns : repeat(3, 1fr);
  }
}
@media(max-width : 767px) {
  .grid-doctor-1 {
    grid-template-columns : repeat(2, 1fr);
  }
}
.doctor-box {
  position : relative;
  border-radius : 5px;
  overflow : hidden;
  display : block;
  -webkit-box-shadow: 5px 8px 30px 0 rgb(31 35 37 / 8%);
  -moz-box-shadow: 5px 8px 30px 0 rgba(31, 35, 37, 0.08);
  box-shadow: 5px 8px 30px 0 rgb(31 35 37 / 8%);
}
.doctor-box img {
  width : 100%;
  height : 100%;
  transition : .8s ease;
  object-fit : cover;
}
.doctor-box:hover img {
  transform : scale(1.1);
}
.doctor-box .top-wrapper {
  position : relative;
  overflow : hidden;
}
.doctor-box .overlay-doctor {
  content : '';
  position : absolute;
  left : 0;
  bottom : 0;
  width : 100%;
  background: -webkit-linear-gradient(90deg, #222222 0%, rgba(34, 34, 34, 0) 100%);
  background: -moz-linear-gradient(90deg, #222222 0%, rgba(34, 34, 34, 0) 100%);
  background: -o-linear-gradient(90deg, #222222 0%, rgba(34, 34, 34, 0) 100%);
  background: -ms-linear-gradient(90deg, #222222 0%, rgba(34, 34, 34, 0) 100%);
  background: linear-gradient(0deg, #222222 0%, rgba(34, 34, 34, 0) 100%);
  pointer-events : none;
  z-index : 1;
  opacity : 1;
  transition : .8s ease;
  padding : 15px;
  color : #fff;
}
.doctor-box:hover .overlay-doctor {
  opacity : 1;
}
.doctor-box .overlay-doctor span.views {
  font-size : 12px;
  display : inline-block;
  background : var(--yellowColor);
  padding : 0 5px;
  border-radius : 5px;
  color : #222;
}
.doctor-box .bottom-wrapper {
  padding : 20px;
}
.doctor-box .bottom-wrapper h4 {
  font-size : 18px;
  font-weight : bold;
}
.doctor-box .bottom-wrapper p {
  font-size : 14px;
  color : #222;
  margin : 0;
}

/* Cashless Insurance */
.cashless-treament {
  padding : 30px 0 30px 0;
}
@media(max-width : 767px) {
  .cashless-treament {
    padding-bottom : 0;
  }
}
.cashless-treament.grid {
  display : grid;
  grid-template-columns : 3fr 1fr;
}
.cashless-treament img {
  max-width : 100%;
  height : 50px;
}
.cashless-treament img.auto {
  height : auto;
}
.cashless-treament img + h2{
  margin-top : 18px;
  text-transform: uppercase;
  font-weight : bold;
  font-size : 16px;
}
.scheme-box {
  margin-bottom : 30px;
}
.scheme-box + 
.scheme-box .title-1 {
  margin-bottom : 25px;
}

/* CONTACT PAGE */
section.contact {
  position : relative;
  padding : 30px 30px;
  background-image : url('../../images/bg/bg-2.jpg');
  background-size : cover;
}
section.contact::before {
  content : '';
  position : absolute;
  left : 0;
  top : 0;
  width : 100%;
  height : 100%;
  background : rgba(0, 0, 0, .75);
}
.grid-contact {
  position : relative;
  display : grid;
  grid-template-columns : 1fr 1fr;
  grid-gap : 30px;
}
@media(max-width : 991px) {
  section.contact {
    padding : 30px 25px;
  }
  .grid-contact {
    grid-template-columns : 1fr;
    grid-gap : 15px;
  }
}
.contact-form {
  position: relative;
  background: transparent;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 15px rgb(0 0 0 / 8%);
  z-index: 9;
  padding : 50px;
}
.combined-input {
  display : grid;
  grid-template-columns :  1fr 1fr;
  grid-column-gap : 15px;
}
@media(max-width : 767px) {
  .combined-input {
    grid-template-columns : 1fr;
  }
}
.contact-input-box {
  position : relative;
  margin-bottom : 15px;
}
.contact-input-box > label {
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 14px;
  font-weight: 500;
}
.contact-input-box .form-control {
  min-height : 45px;
  border-radius : 10px;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  resize : none;
}
textarea.form-control {
  height : 90px;
}
.grid-contact-right {
  margin-top : 70px;
}
@media(max-width : 991px) {
  .grid-contact-right {
    margin-top : 0px;
  }
}
.grid-contact-right .title-1,
.grid-contact-right p {
  color : #fff;
}
ul.contact {
  padding : 0;
}
ul.contact li {
  position : relative;
  padding-left : 32px;
  margin-bottom : 10px;
  font-family: var(--font-1);
  font-size : 17px;
}
ul.contact li .fa {
  position : absolute;
  left : 0;
  top : 5px;
  color : var(--yellowColor);
  font-size : 18px;
}
iframe.map {
  width : 100%;
  height : 450px;
}

/* SM XS HEADER */
.grid-header-sm-xs {
  position : fixed;
  left : 0;
  top : 0;
  width : 100%;
  display : grid;
  grid-template-columns : auto 130px;
  grid-gap : 15px;
  z-index : 1001;
  background : #fff;
  padding : 5px;
  height : 50px;
}
.profile-img h1,
.grid-header-sm-xs .logo h1 {
  position : relative;
  top: 2px;
  left: 4px;
  font-weight : bold;
  text-transform: uppercase;
  font-size : 17px;
  margin: 0;
  color : var(--color-1)
}
.header-sm-xs .logo img {
  width : 50px;
}
.grid-header-sm-xs .touch {
  text-align : right;
  display: grid;
  grid-template-columns: auto 43px;
  grid-column-gap: 7px;
  position: relative;
  top: 2px;
  right: 5px;
}
.grid-header-sm-xs .touch a {
  padding: 6px 15px 6px;
  top: 2px;
}

.offcanvas-1 {
  width : 100%;
  max-width : 400px;
  background: var(--color-1);
  color: #fff;
}
.offcanvas-1 ul.style-1 li label,
.offcanvas-1 ul.style-1 li a {
  padding : 5px;
  font-family : var(--font-2);
}
.offcanvas-1 ul.style-1 li a.active {
  color : var(--yellowColor);
}
.offcanvas-1 ul.style-1 li::before {
  top : 4px;
}
.offcanvas .accordion-item {
  background : transparent;
}
.offcanvas-1 .accordion-button {
  padding : 10px 0;
  background : transparent!important;
  box-shadow : none!important;
  color : var(--color-3);
}
.offcanvas-1 .collapsed,
.offcanvas-1 .collapse {
  background : var(--color-3);
  padding : 10px;
}
.offcanvas-1 .offcanvas-body {
  padding : 0 20px;
}
.offcanvas-1 .dropdown-item {
  white-space : normal;
  line-height: 20px;
  border-bottom : 1px dashed rgba(255, 255, 255, .4);
  padding : 10px 15px!important;
  background : transparent!important;
}
.offcanvas-1 .dropdown-item.active {
  color : var(--yellowColor);
}
.accordion-item:last-of-type .accordion-collapse {
  border-radius : 0;
}
.offcanvas-1 .dropdown-item:last-child {
  border-bottom : none;
}
.offcanvas-1 label {
  display : block;
}
.offcanvas-start {
  border-right : none;
}
.canvas-holder-1 {
  margin-bottom : 25px;
  font-size : 14px;
}
.canvas-holder-1 p {
  margin-bottom : 5px;
  color : #eee;
}
.canvas-holder-1 p a {
  font-weight : bold;
  color : #eee;
}
.canvas-holder-1 h3 {
  font-size : 20px;
  margin-bottom : 15px;
}
.offcanvas-header {
  position: relative;
  width: 100%;
  background : #eee;
  margin-bottom : 15px;
}
.offcanvas-header .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  opacity: 1;
}
.user-profile {
  padding: 0 0;
  width: 100%;
}
.user-profile img {
  width: 200px;
}

/* YOUTUBE MODAL */
.modal-backdrop.show {
  opacity: .8;
}
.modal-1 .modal-content,
.modal-1 .modal-body {
  background : transparent;
  border : none;
}
.youtube-video-holder iframe {
  width : 100%;
  height : 400px;
}
@media(max-width : 768px) {
  .youtube-video-holder iframe {
    width : 100%;
    height : 280px;
  }
}

/* MEDIA QURIES */
.visible-sm-xs {
  display : none;
}
@media(max-width : 991px) {
  body.inner-pages,
  body {
    padding-top: 50px;
  }
  .hidden-sm-xs {
    display : none;
  }
  .visible-sm-xs {
    display : block;
  }
}