@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

/***
====================================================================
	Reset
====================================================================
***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
}

.mobile-view {
  display: none;
}

:root {
  --color-default: #292929;
  /* --color-primary: #894242;
  --color-secondary:  #514945; */
  --color-primary: #e82023;
  --color-secondary: #043a75;
}

@font-face {
  font-family: "Minerva Modern";
  src: url(../webfont/minerva-modern/minerva-modern-black.otf);
  src: url(../webfont/minerva-modern/minerva-modern-bold.otf);
  src: url(../webfont/minerva-modern/minerva-modern-regular.otf);
  display: swap;
}

@font-face {
  font-family: 'audrey';
  src: url(../webfont/audrey/Audrey-Bold.otf);
  src: url(../webfont/audrey/Audrey-Medium.otf);
  src: url(../webfont/audrey/Audrey-Normal.otf);
  display: swap;
}

.container {
  position: relative;
}

.mobile-view {
  display: none;
}

/*** 
====================================================================
	Global Settings
====================================================================
 ***/
body {
  font-size: 16px;
  color: var(--color-default);
  line-height: 1.6em;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "IBM Plex Sans", serif;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--color-secondary);
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
  color: var(--color-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: 600;
  margin: 0px;
  background: none;
  line-height: 1.2em;
}

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

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol,
li {
  margin: 0;
  padding: 0;
}

.main-menu .navigation>li .active {
  color: #fff;
  background: var(--color-secondary);
}

.main-menu .navigation>li .active:hover {
  background: var(--color-primary);
  color: #fff;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.page-wrapper {
  margin: 0 auto;
  width: 100%;
  min-width: 320px;
  overflow: hidden;
  position: relative;
}

.page-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -10;
  background-image: url(../gallery/bg.jpg);


  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.top-wrap {
  position: relative;
  height: 100vh;
}

.top-border {
  width: 60%;
  height: 2px;
  position: relative;
  margin: auto;
  background: var(--color-secondary);
}

/**header-main**/
.header-main {
  position: absolute;
  width: 100%;
  z-index: 5;
}

.header-one {
  position: relative;
}

.header-one .container {
  position: relative;
  max-width: 1200px;
}

.header-one .lower-box {
  position: relative;
  height: 100%;
}

.lower-box .logo {
  top: 13px;
  position: absolute;
  display: inline-block;
  z-index: 999;
  width: 285px;
}

.lower-box .nav-outer {
  position: relative;
  display: inline-block;
  text-align: right;
  margin-left: 0;
  width: 100%;
  padding: 0;
  margin-top: 0;
}

.nav-outer .mobile-nav-toggler {
  position: relative;
  display: none;
  float: right;
  cursor: pointer;
  padding: 25px 0;
}

.nav-outer .mobile-nav-toggler .inner {
  position: relative;
  display: block;
  padding: 3px 5px;
}

.main-menu {
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 68px 0 0;
  top: 0;
}

.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}

.main-menu .navigation {
  position: relative;
  display: block;
  padding: 3px 11px;
  border-top: 1px solid;
}

.main-menu .navigation>li {
  position: relative;
  display: inline-table;
}

.main-menu .navigation>li>a:hover {
  color: var(--color-primary);
}

.main-menu .navigation>li>a {
  position: relative;
  display: block;
  font-size: 19px;
  line-height: 30px;
  border-right: 0px;
  padding: 2px 10px;
  opacity: 1;
  color: var(--color-default);
}

.main-menu .navigation>li>a i {
  font-size: 14px;
  color: var(--color-primary);
}

/*** 
========================================
    Mobile Menu
========================================
***/
.nav-outer .mobile-nav-toggler {
  position: relative;
  display: none;
  float: right;
  cursor: pointer;
  padding: 25px 0;
}

.nav-outer .mobile-nav-toggler .inner {
  position: relative;
  display: block;
  padding: 3px 5px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  padding-right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #393939;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.7;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .mCSB_inside>.mCSB_container {
  margin-right: 5px;
}

.mobile-menu .navbar-collapse {
  display: block !important;
}

.mobile-menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}

.mobile-menu .nav-logo a {
  position: relative;
  display: inline-block;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--color-secondary);
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li>ul>li {
  border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li>ul>li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li>a {
  position: relative;
  display: block;
  padding: 10px 25px;
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li>a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
  height: 100%;
}

.mobile-menu .navigation li ul li>a {
  font-size: 15px;
  font-weight: 400;
  margin-left: 20px;
  text-transform: capitalize;
  position: relative;
  color: var(--color-default);
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 32px;
  background: var(--color-primary);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
  display: none;
  background: #fff;
}

.main-menu .navigation>li>.custom-width {
  width: 133px;
}

.main-menu .navigation>li>ul.cstmwidth {
  width: 105px;
}

.main-menu .navigation>li>ul.cstmwidth1 {
  width: 180px;
}

.main-menu .navigation>li>ul>li>a:hover {
  padding-left: 30px;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {
  padding-left: 30px;
}

.main-menu .navigation>li>ul {
  position: absolute;
  top: 110%;
  visibility: hidden;
  left: 0;
  width: 300px;
  opacity: 0;
  z-index: 100;
  background-color: var(--color-secondary);
  box-shadow: 0px 0px 5px #252525;
}

.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  top: 0px;
  visibility: hidden;
  left: 100%;
  width: 300px;
  opacity: 0;
  z-index: 100;
  background-color: var(--color-secondary);
  box-shadow: 0px 0px 5px #252525;
}

.main-menu .navigation>li.dropdown:hover>ul {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li.dropdown:hover>ul {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.right-icon i {
  position: absolute;
  right: 20px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
}

.main-menu .navigation>li>ul>li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d6d6d621;
}

.main-menu .navigation>li>ul>li>ul>li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d6d6d621;
}

.main-menu .navigation>li>ul>li>a:hover {
  background: var(--color-primary);
  color: #fff;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {
  background: var(--color-primary);
  color: #fff;
}

.main-menu .navigation>li>ul>li>a {
  position: relative;
  display: block;
  padding: 5px 20px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
  color: #ffffff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li>a {
  position: relative;
  display: block;
  padding: 5px 20px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
  color: #ffffff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li:last-child {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
  border-bottom: none;
}

/*
* 4. banner style
*/
.banner-wrapper {
  position: relative;
}

.banner-one__slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.slide-one {
  background-image: url(../gallery/banners/banner1.png);
}

.slide-two {
  background-image: url(../gallery/banners/banner2.png);
}

.slide-three {
  background-image: url(../gallery/banners/banner3.png);
}

.slide-four {
  background-image: url(../gallery/banners/banner4.png);
}

.slide-five {
  background-image: url(../gallery/banners/banner5.png);
}

.slide-six {
  background-image: url(../gallery/banners/banner6.png);
}

.slide-seven {
  background-image: url(../gallery/banners/banner7.png);
}

/***
====================================================================
	Scroll To Top style
====================================================================
***/
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  color: #ffffff;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
  z-index: 9999;
  cursor: pointer;
  background: var(--color-primary);
  display: none;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  background: var(--color-secondary);
}

.sec-head p {
  padding: 0px 240px;
}

.numb-sec {
  position: relative;
  margin-bottom: 75px;
}

.numb-block {
  position: relative;
  cursor: pointer;
}

.stats-content {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  text-align: center;
}

.stats-content::before {
  content: " ";
  position: absolute;
  width: 160px;
  height: 160px;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -1;
  background: #fff;
  box-shadow: 0px 14px 11px -10px #000000b1;
  border-radius: 5px;
}

.stats-icon {
  /* background: linear-gradient(45deg, #282320, #a97070); */
  width: 110px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  margin: auto;
  border-radius: 50%;
  position: relative;
  top: 11px;
}

.stats-icon span {
  color: #000000;
  font-size: 38px;
  font-family: "Minerva Modern";
}

.stats-content p {
  font-size: 17px;
  font-weight: 400;
  text-transform: capitalize;
}

.abt-head h2 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 9px;
  background: var(--color-secondary);
  display: inline-block;
  padding: 2px 13px;
  border-radius: 20px;
  color: #fff;
  position: relative;
}

.abt-head h1 {
  font-family: "Minerva Modern";
  font-weight: 500;
  text-transform: uppercase;
  font-size: 56px;
  color: var(--color-primary);
}

.sec-head h3 {
  font-family: "Minerva Modern";
  font-weight: 500;
  text-transform: capitalize;
  font-size: 56px;
  color: var(--color-primary);
  line-height: 45px;
  margin-bottom: 18px;
}

.sec-head h2 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 9px;
  background: var(--color-secondary);
  display: inline-block;
  padding: 2px 13px;
  border-radius: 20px;
  color: #fff;
  position: relative;
}

.abt-matter p {
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 15px;
}

.abt-matter a {
  margin-bottom: 25px;
  display: inline-block;
  border: 1px solid;
  padding: 0px 10px;
}

.abt-sec {
  position: relative;
  margin-bottom: 55px;
  padding-top: 75px;
}

.doc-img img {
  border: 2px solid #ffffff;
  box-shadow: 0px 16px 18px -10px #5e5e5e;
  margin: auto;
  border-radius: 20px 20px 0px 0px;
}

.doc-content {
  padding-top: 15px;
}

.doc-content h3 {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 10px;
  font-weight: 400;
  color: #5a5a5a;
}

.doc-content h2 {
  color: var(--color-secondary);
  margin-bottom: 4px;
  font-size: 30px;
}

.doc-content a {
  background: var(--color-secondary);
  color: #fff;
  padding: 4px 9px;
  font-size: 14px;
}

.doc-block {
  position: relative;
  padding-top: 20px;
  cursor: pointer;
}

.doc-block::before {
  content: " ";
  position: absolute;
  width: 95%;
  height: 100%;
  /* background: linear-gradient(to bottom, #f4836542, #ffffff00); */
  left: 0px;
  border-radius: 160px 160px 0px 0px;
  right: 0px;
  margin: auto;
  top: 0px;
  z-index: -1;
}

.doc-scroll .owl-dots {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.doc-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 1;
  margin: 0 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.doc-scroll .owl-dot:hover,
.doc-scroll .owl-dot.active {
  opacity: 1;
  background: var(--color-primary);
}

.doc-sec {
  margin-bottom: 80px;
  position: relative;
}

.exp-sec .col-md-4:nth-child(2) {
  margin-top: 70px;
}

.exp-block {
  position: relative;
}

.exp-content {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  min-height: fit-content;
}

.exp-content p {
  font-size: 14px;
  line-height: 20px;
}

.hosp-img {
  position: relative;
}

/* .hosp-img::before {
  content: " ";
  position: absolute;
  width: 95%;
  height: 100%;
  border: 1px solid var(--color-secondary);
  z-index: -1;
  top: -27px;
  right: -20px;
} */
.hosp-img img {
  width: 430px;
  box-shadow: 0px 17px 15px -10px #4b4b4b;
  border: 7px solid #fff;
}

.hosp-emer-img img {
  width: 45px;
}

.hosp-emer-img {
  display: inline-block;
  background: var(--color-primary);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  position: absolute;
  left: -214px;
  right: 0px;
  margin: auto;
  bottom: -19px;
}

.hosp-emer-btn {
  display: inline-block;
  background: var(--color-secondary);
  padding: 5px 20px;
  margin-top: 50px;
  right: -20px;
  position: relative;

}

.hosp-emer-btn a {
  color: #fff;
}

.ad-blk {
  position: relative;
  margin: 25px 0px;
  padding: 45px 0px 30px;
}

.ad-shape::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-left: 4px solid var(--color-secondary);
  border-bottom: 4px solid var(--color-secondary);
  left: 0px;
  bottom: -3px;
}

.ad-shape::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-right: 4px solid var(--color-secondary);
  border-bottom: 4px solid var(--color-secondary);
  right: 0px;
  bottom: -3px;
}

.num-blk h2 {
  font-weight: 500;
}


.num-blk span {
  display: block;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 6px;
}

.num-blk .n-p {
  position: relative;
  margin-bottom: 5px;
  z-index: 1;
}

.n-p::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 50%;
  background-color: #5d5d5ddd;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

.num-blk .n-p p {
  color: #fff;
  background-color: var(--color-secondary);
  display: inline-block;
  border-radius: 15px;
  padding: 1px 10px;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 0px;
}

.num-blk .emg-txt a {
  font-size: 25px;
  font-weight: 600;
  margin-top: 11px;
  margin-bottom: 0;
  color: var(--color-default);
}

.num-blk::after {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, #ffffff00, #fff);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

.numb-btm-content {
  margin-top: 76px;
}

.numb-btm-content h2 {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 1px;
  border: 1px solid #ababab38;
  display: inline-block;
  padding: 17px 17px 50px;
  line-height: 37px;
}

.numb-btm-content a {
  position: relative;
  font-size: 30px;
  font-weight: 400;
  background: var(--color-primary);
  color: #fff;
  display: inline-block;
  padding: 15px 22px;
  /* margin-bottom: 10px; */
  margin-top: -62px;
  top: -14px;
  border-radius: 40px;
}

.numb-btm-content a::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #ababab;
  z-index: -1;
  top: 10px;
  right: -5px;
  border-radius: 40px;
}

.serv-sec {
  position: relative;
  margin-bottom: 100px;
  padding: 70px 0px 80px;
}

.serv-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  /* background: var(--color-secondary); */
  background: linear-gradient(45deg, #790002, var(--color-secondary));
}

.serv-sec::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-image: url(../gallery/serv-bg.png);
  background-position: center;
  opacity: 0.1;

}

.serv-sec .sec-head h3 {
  color: #fff;
}

.serv-sec .sec-head h2 {
  background: #fff;
  color: var(--color-secondary);
}

.serv-sec .sec-head p {
  color: #fff;
}

.serv-row {
  padding-top: 40px;
}

.main-serv-block {
  position: relative;
  cursor: pointer;
  height: 440px !important;
  z-index: 1;
  margin-top: 30px;
  margin-left: 30px;
}

.main-serv-outer-img {
  position: relative;
  width: fit-content;
}

.main-serv-inner-img::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 0px;
  /* background: linear-gradient(to top,var(--color-secondary),transparent); */
  background: var(--color-secondary);
  bottom: 0px;
  transition: 0.5s all ease-out;
  opacity: 0.3;
}

.main-serv-block:hover .main-serv-inner-img::after {
  height: 100%;
}

.main-serv-inner-img {
  position: relative;
  overflow: hidden;
  border-radius: 0px 60px 60px 60px;
}

.main-serv-outer-img::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  top: -8px;
  left: -9px;
  z-index: 1;
  border-radius: 0px 60px 60px 60px;
}

.main-serv-outer-img img {
  border-radius: 0px 60px 60px 60px;
  transition: 0.5s all ease-out;
}

.main-serv-block:hover .main-serv-inner-img img {
  transform: scale(1.2);
  filter: grayscale(1);
}

.main-serv-block:hover .main-serv-btn-icon {
  background: var(--color-primary);
  transform: scale(1.2);
}

.main-serv-btn {
  position: absolute;
  right: 0px;
  bottom: 0px;
  /* background:#ffffff14; */
  width: 130px;
  height: 130px;
  z-index: -1;
  border-radius: 0px 33px;
}

.main-serv-btn-icon {
  position: absolute;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  right: 11px;
  bottom: 13px;
  background: #043a75;
  border-radius: 50%;
  color: #fff;
  transition: 0.5s all ease-out;
  font-size: 26px;
}

.main-serv-btn-icon a {
  color: #fff;
}

.main-serv-block:hover .main-serv-icon {
  opacity: 1;
  top: 60px;
}

.main-serv-block:hover .main-serv-icon::before {
  height: 100%;
}

.main-serv-icon::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 0px;
  background: #fff;
  top: -59px;
  transition: 0.5s all ease-out;
  left: 0px;
  right: 0px;
  margin: auto;
}

.main-serv-icon {
  position: absolute;
  padding-top: 12px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--color-primary);
  text-align: center;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  opacity: 0.4;
  transition: 0.5s all ease-out;
  z-index: 1;
}

.main-serv-block:hover .main-serv-icon img {
  filter: brightness(0) invert(1);
}

.main-serv-icon img {
  width: 40px !important;
  filter: brightness(0) invert(1);
  border-radius: 0px;
  margin: auto;
}

.main-serv-content {
  position: absolute;
  bottom: 0px;
  left: 3px;
}

.main-serv-content h2 {
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  opacity: 0.3;
  transition: 0.5s all ease-out;
  font-size: 30px;
  position: relative;
  padding-bottom: 2px;
}

.main-serv-content h2::before {
  content: " ";
  position: absolute;
  width: 0px;
  height: 1px;
  background: #fff;
  bottom: 0px;
  left: 0px;
  transition: 0.5s all ease-out;
}

.main-serv-block:hover .main-serv-content h2::before {
  width: 100%;
}

.main-serv-block:hover .main-serv-content h2 {
  opacity: 1;
}

.serv-scroll .owl-dots {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.serv-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 21px;
  border: 3px solid #fff;
  opacity: 1;
  margin: -13px 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  background: var(--color-secondary);
}

.serv-scroll .owl-dot:hover,
.serv-scroll .owl-dot.active {
  opacity: 1;
  border: 3px solid var(--color-primary);
}

.main-serv-btm {
  position: relative;
  margin-top: 30px;
}

.main-serv-shape {
  position: relative;
  background: #fff;
  width: 80%;
  height: 1px;
  opacity: 0.3;
  bottom: -25px;
  margin: auto;
}

.main-serv-shape::before {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  bottom: -3px;
  opacity: 0.5;
  right: 0px;
  border-radius: 50%;
  z-index: 1;
}

.main-serv-shape::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  bottom: -3px;
  opacity: 0.5;
  left: 0px;
  border-radius: 50%;
  z-index: 1;
}

.main-serv-btm h2 {
  font-weight: 400;
  color: #fff;
  margin: 0px 90px;
}

.apponit-para {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-top: 13px;
  padding: 0px 20px;
}

.apponit-para p {
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
}

.footer-address-row1 {
  padding-top: 13px;
  border-top: 1px dotted #ffffff3d;
}

.appont-social li {
  display: inline-block;
  margin-right: 1px;
}

.appont-social li:last-child {
  border-right: 0;
}

.appont-social p {
  margin-bottom: 0px;
  line-height: 28px;
  margin-right: 10px;
  color: #fff;
  font-weight: 600;
}

.appont-social li a {
  display: block;
  width: 34px;
  height: 32px;
  color: #fff;
  text-align: center;
  line-height: 31px;
  font-size: 14px;
  margin: 0px 1px;
  border: 1px solid #cccccc7d;
}

.facilities-sec {
  position: relative;
  margin-bottom: 100px;
  padding: 90px 0px;
}

.facilities-sec .col-md-7::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to top, #ffffff00, #fff, #ffffff00);
  box-shadow: 0px 0px 13px #000;
  top: 0px;
  right: 0px;
}

.facilities-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-default);
  z-index: -1;
  top: 0px;
  left: 0px;
  transform: skewY(4deg);
}

.facilities-btm {
  display: none;
  margin-top: 0px;
}

.facilities-block img {
  /* width: 380px; */
}

.facilities-head {
  bottom: -10px;
  left: 0px;
  right: 0px;
  margin: auto;
  width: fit-content;
  height: fit-content;
  position: absolute;
}

.facilities-head h2 {
  font-family: "Minerva Modern";
  font-weight: 500;
  text-transform: uppercase;
  color: #ec4244;
  font-size: 55px;
}

.appointment-inner-form .col-md-6,
.appointment-inner-form .col-md-12 {
  padding: 0px 5px;
}

.facilities-box {
  position: relative;
  text-align: center;
}

.facilities-btm p {
  font-size: 23px;
  color: #f5f5f5;
  text-transform: capitalize;
}

.facilities-lines {
  position: absolute;
  top: initial;
  bottom: -75px;
  margin: auto;
  height: fit-content;
  left: 0px;
  right: 0px;
  text-align: center;
  width: auto;
}

/* .facilities-lines {
  position: absolute;
  top: 195px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
  left: 0px;
  right: 0px;
  text-align: center;
  width: 700px;
} */
.facilities-lines h3 {
  font-weight: 400;
  font-size: 20px;
  /* background: #4e4f4f; */
  color: #ffffffc9;
  padding: 5px 10px;
}

.appnt-feed-sec {
  position: relative;
  margin-bottom: 20px;

}

.appointment-form h2 {
  font-weight: 500;
  color: #fff;
  font-family: "Minerva Modern";
  text-transform: capitalize;
  font-size: 40px;
  line-height: 30px;
  margin-bottom: 18px;
}

.appointment-head p {
  font-size: 15px;
  color: #fff;
}

.appointment-form {
  padding: 32px 40px 15px;
  position: relative;
  background: linear-gradient(45deg, #790002, var(--color-secondary));
}

.appointment-form::before {
  content: " ";
  position: absolute;
  width: 96%;
  height: 97%;
  border: 1px solid #ffffff5e;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  border-radius: 10px;
}

.btn-style-one {
  margin-top: 13px;
  background: #fff;
  color: #5b0e1f;
  padding: 2px 10px;
  border-radius: 24px;
}

.form-group i {
  position: absolute;
  left: 18px;
  top: 15px;
  color: #ffffff99;
  font-size: 15px;
}

.custom-select {
  position: relative;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: transparent;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 20px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #ffffff transparent transparent transparent;
}

.appointment-form textarea {
  height: 85px;
}

.appointment-form .form-control::placeholder {
  color: #eeeeeec7;
}

.appointment-form .form-control {
  color: #eeeeeec7;
  border-bottom: none;
  background: #ffffff0f;
  padding: 11px 35px;
  font-size: 15px;
}

::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #ffffff transparent;
  top: 7px;
}

.select-selected {
  color: #eeeeeec7;
  padding: 0px 0px;
  font-family: "IBM Plex Sans", serif;
  border-color: transparent transparent rgba(0, 0, 0) transparent;
  cursor: pointer;
  user-select: none;
  text-align: left;
}


.select-items div {
  color: #000000;
  padding: 4px 12px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
  text-align: left;
  font-family: "IBM Plex Sans", serif;
  font-size: 15px;
}


.select-items {
  position: absolute;
  background-color: #f2f2f2;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  font-family: "IBM Plex Sans", serif;
}


.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: var(--color-primary);
  color: #fff !important;
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 11px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background-color: transparent;
  border-bottom: 1px solid #ced4da93;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.appnt-feed-block {
  position: relative;
}

.testimonial-name h2 {
  font-weight: 500;
  color: var(--color-secondary);
}

.feed-block {


  position: relative;
}

.feed-block h3 {
  margin-bottom: 0px;
}

.feed-box {
  position: absolute;
  width: 550px;
  top: 0px;
}

.test-bg {
  position: relative;

}

/* 
.feed-block::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/feed-img.png);
  top: 0px;
  z-index: -1;
  background-repeat: no-repeat;
  opacity: 0.3;
  background-position: center;
  background-size: 78%;
  filter: grayscale(1);
} */

.feed-block .sec-head p {
  padding: 0px;
}

.testimonial-qoute-img img {
  width: 12% !important;
  margin: auto;
}

.feed-block .sec-head {
  margin-bottom: -25px;
}

.testimonial-content {
  margin-top: 15px;
  padding: 123px 96px 96px;
}

.testi-row {
  padding-top: 20px;
}

.testimonial-scroll .owl-dots {
  position: relative;
  left: 0;
  bottom: 0px;
  width: 100%;
  text-align: center;
}

.testimonial-scroll .owl-dot {
  position: relative;
  display: inline-block;
  height: 0px;
  width: 21px;
  border: 3px solid var(--color-secondary);
  opacity: 1;
  margin: 0 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  background: var(--color-secondary);
}

.testimonial-scroll .owl-dot:hover,
.testimonial-scroll .owl-dot.active {
  opacity: 1;
  border: 3px solid var(--color-primary);
}

.testimonial-block {
  padding: 7px 25px 0px;
}

.testimonial-content p {
  margin-bottom: 0px;
}

.faq-sec {
  position: relative;
  margin-bottom: 60px;
}

.faq-main-content {
  position: absolute;
  top: -15px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
  padding-left: 216px;
  padding-right: 37px;
}

.faq-block {
  position: relative;
}

.faq-main-content h2 {
  font-size: 20px;
}

.faq-sec .col-md-6:nth-child(2) .faq-main-content {
  padding-left: 50px;
  text-align: right;
  padding-right: 216px;
}

.faq-row {
  padding-top: 20px;
}

.services {
  color: #111;
  text-align: center;
  width: 310px;
  padding: 0 15px 15px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services:before,
.services:after {
  content: '';
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 75px;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.services:after {
  background: linear-gradient(#033e8063, #fff);
  height: 123px;
  border-radius: 0 0 150px 150px;
  width: 228px;
  margin: auto;
  top: -79px;
}

.services .services-value {
  color: #fff;
  background: linear-gradient(var(--color1), var(--color2));
  font-size: 35px;
  font-weight: 700;
  line-height: 150px;
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: block;
}

.services h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 25px;
  text-transform: uppercase;
  margin: 0;
}

.services:hover h3 {
  color: var(--color-primary);
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width:990px) {
  .services {
    margin-bottom: 20px;
  }
}

.serv-sec .ad-serv-txt {
  position: relative;
  margin: 42px 0px;
}

.box1 {
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

.box1:before {
  content: "";
  background: #fff;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  transform: rotate3d(1, -1, 0, 100deg);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.services:hover:before {
  opacity: 0.9;
  transform: rotate3d(0, 0, 0, 0deg);
}

.box1 img {
  width: 100%;
  height: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition: all 0.5s ease 0s;
}

.services:hover img {
  opacity: 0.3;
  transform: translate3d(-12px, 0, 0) scale(1.1) rotate(3deg);
}

.box1 .box-content {
  color: #ff416c;
  width: 100%;
  padding: 15px 10px;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.services:hover .box-content {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%);
}

.box1 .title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 3px;
}

.box1 .post {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0 0 10px;
  display: block;
}

.box1 .icon {
  padding: 0;
  margin: 0;
  list-style: none;
}

.box1 .icon li {
  display: inline-block;
  margin: 0 2px;
}

.box1 .icon li a {
  color: var(--color-secondary);
  background: #fff;
  font-size: 20px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: block;
  transition: all .35s;
}

.box1 .icon li a:hover {
  color: var(--color-primary);
  background: #fff;
  box-shadow: 4px 4px rgba(0, 0, 0, 0.5);
}

.box1 .icon li a i {
  line-height: inherit;
}

@media only screen and (max-width:990px) {
  .box1 {
    margin: 0 0 30px;
  }
}

.blog-sec {
  position: relative;
  margin-bottom: 100px;
}

.services p {
  font-size: 15px;
}



.footer_section {
  position: relative;

}

.footer_section::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/footer-bg.png);
  filter: grayscale(1);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 80%;
  opacity: 0.12;
  z-index: -1;
}

.footer_section .footer_add_row {
  position: relative;
}

.footer_add_row .col-md-4:nth-child(1),
.footer_add_row .col-md-4:nth-child(2) {
  border-right: 1px solid #fff;
}

.address_info_sec {
  position: relative;
  text-align: center;

}

.address_info_sec i {
  position: relative;
  left: 0px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  line-height: 55px;
  display: inline-block;
}

.address_info_sec span {
  display: block;
  line-height: 24px;
}

.bottom-footer p {
  margin: 0;
  font-size: 15px;
  background: var(--color-secondary);
  display: inline-block;
  color: #fff;
  padding: 5px 18px;
}

.bottom-footer a {
  color: var(--color-primary);
}

.footer_section .footer_wid p a {
  color: var(--color-primary);
}

.footer_section .footer_wid .footer_logo {
  width: 300px;

}

.footer_section .footer_top {
  position: relative;
  padding: 8px 10px 10px;

}

.footer_section .footer_top h2 {
  color: var(--color-secondary);
  font-size: 22px;
  text-transform: uppercase;
}

.footer_section .footer_wid p {
  line-height: 25px;
  display: block;
}

.footer_section .footer_wid .col-md-12 p {
  border-top: 1px dashed;
}

.footer_section .footer_wid .col-md-6 {
  padding: 0px;
}

.footer_section .footer_wid .col-md-6:nth-child(1) p {
  border-right: 1px dashed;
}

.footer-address {
  margin-top: 30px;
}

.footer_section .footer_wid_text {
  position: relative;
  padding-bottom: 6px;
  margin: 10px 0px;

}

.footer_section .footer_wid_text li {
  font-size: 14px;
}

.social-icon-two {
  position: relative;
  margin: 2px 0px;
}

.social-icon-two li {
  position: relative;
  display: inline-block;
}

.social-icon-two li a {
  position: relative;
  display: block;
  font-size: 24px;
  width: 38px;
  height: 38px;
  line-height: 37px;
  color: var(--color-default);
  border-radius: 50%;
  font-weight: 400;
  margin: 0 1px;

}

.footer_top .footer-address .footer_wid_text::after {
  right: -9px;
  margin: auto;
}

.footer-address-row {
  margin-top: 19px;
}

.footer_top .footer-address .footer_wid_text:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: 3px;
  right: 0px;
  margin: auto;
}

.footer_top .footer_wid_text:after,
.footer_top .footer_wid_text:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: 3px;
}

.footer_top .footer_wid_text:after {
  left: 44px;
  width: 4px;
  background-color: var(--color-primary);
}


.footer_wid li a {
  color: #1d1d1d;
}

.footer_wid li a:hover {
  color: var(--color-primary);
}


.footer_section .footer_wid ul li::before {
  content: "\f0da";
  position: absolute;
  left: 14px;
  display: block;
  font-size: 14px;
  line-height: 26px;
  color: var(--color-primary);
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}

.footer_section .footer_wid ul li {
  padding-left: 20px;
}

.footer-widget__social {
  text-align: center;
}

.footer-widget__social span {
  color: #06334d;
  font-size: 24px;
  font-weight: 600;
}

.footer-widget__social ul {
  display: inline-flex;
  list-style: none;
  margin: 20px 8px 0;
  padding: 0;
}

.footer-widget__social li a {
  display: block;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  color: #333;
  background-color: #fff;
  margin: 0 4px;
  box-shadow: 0px 0px 5px #6464649e;
  font-size: 19px;
}

.footer-widget__social li:nth-child(1) a {
  color: #3978ca;
}

.footer-widget__social li:nth-child(2) a {
  color: #eb2020;
}

.footer-widget__social li:nth-child(3) a {
  color: #0e9ec8;
}

.footer-widget__social li:nth-child(4) a {
  color: #e9289a;
}

.footer-widget__social li:nth-child(5) a {
  color: #f00;
}

.footer-widget__social li a:hover {
  color: #ffffff;
  background: var(--color-primary);
}


.footer_add_row .col-md-3:nth-child(1) {
  background: linear-gradient(to right, transparent, #ddd);
}

.footer_add_row .col-md-3:nth-child(2) {
  background: linear-gradient(to right, transparent, #ddd, transparent);
}

.footer_add_row .col-md-3:nth-child(3) {
  background: linear-gradient(to left, transparent, #ddd);
}

.footer_mp iframe {
  border: 5px solid #f5f5f5;
  background: #fff;

  box-shadow: 0px 0px 11px #919191;
}

.as_inner_textad h2 a {
  color: var(--color-default);
  font-weight: 600;
}

.footer_wid .address_info_sec:nth-child(3) {
  border-top: 1px dashed var(--color-default);
  border-bottom: 1px dashed var(--color-default);
}

.footer-about p {
  line-height: 25px;
  margin: 0;
  padding: 0px 0px 25px;

}

.footer-about p a {
  color: var(--color-primary);
}


.footer-logo {
  margin-bottom: 25px;
}

.footer-ad img {
  width: 300px;
  /* border: 7px solid #fff; */
  box-shadow: 0px 0px 11px #00000047;
}

.footer-logo img {
  width: 300px;
}

.footer-ad iframe {
  height: 268px;
  border: 5px solid #f5f5f5;
  box-shadow: 0px 14px 10px -10px #0000003d;
  width: 100%;
}

.call-us img {
  width: 70px;
  filter: drop-shadow(0 0px 8px rgb(0 0 0 / 38%));
  background: var(--color-primary);
  border-radius: 50%;
  padding: 9px;
}

.call-us {
  position: fixed;
  bottom: 82px;
  right: 6px;
  line-height: 48px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  padding: 10px 16px;
  align-items: center;
}

.footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-bottom: 25px;
}

.footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

.footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background-color: var(--color-secondary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}


.footer_section .footer_top h2 {
  color: var(--color-secondary);
  font-size: 21px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 500;
  background-color: #fbfbfb;
  border-bottom: 2px solid var(--color-primary);
  padding: 2px 10px;
  border-radius: 25px;
  box-shadow: 0px 3px 5px #c1c1c1;
}

.footer_links1 {
  text-align: center;
}

.footer_links1 ul {
  display: inline-block;
  margin: 0 0 15px;
}

.footer_links1 ul li {
  display: inline-block;
  line-height: 35px;
}

.footer_links1 ul li a {
  color: var(--color-default);
  font-size: 15px;
  line-height: 19px;
  border-right: 1px dashed;
  padding: 0 11px;
}

.address-info {
  position: absolute;
  z-index: 9;
  margin-top: 0;
  bottom: auto;
  /* padding: 7px 9px; */
  background: transparent;
  padding-left: 0;
  border-radius: 30px;
  right: 220px;
  top: 24px;
}

.address-info li:nth-child(1) {
  padding-right: 26px;
}

.address-info li {
  display: inline-block;
  padding: 0 12px;
  position: relative;
  width: auto;
  text-align: center;
  border-right: 1px dashed var(--color-secondary);
}

.address-info li:last-child {
  border-right: none;
}

.address-info li a {
  color: #353535;
  font-size: 16px;
}

.address-info li i {
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 999px;
  color: var(--color-secondary);
  line-height: 30px;
  font-size: 15px;
}

.social-icons {
  position: absolute;
  z-index: 3;
  top: 23px;
  right: 34px;
}

.social-icons ul li {
  display: inline-flex;
  margin-right: 2px;
}

.social-icons ul li a {
  display: block;
  width: 31px;
  height: 31px;
  line-height: 31px;
  /* background: linear-gradient(45deg, var(--color-primary), var(--color-secondary)); */
  border: 1px solid #043a7580;
  color: var(--color-secondary);
  text-align: center;
  font-size: 14px;
  border-radius: 9px;
}

.social-icons ul li a:hover {
  color: var(--color-primary);
  border: 1px solid #e8202387;
}


.breadcrumb {
  position: relative;
  text-align: center;
  padding: 170px 0 30px;
  margin-bottom: 0;
  z-index: 2;
  display: block;
  /* background: linear-gradient(to bottom, #fcecf0, transparent); */
  background: transparent;
}

.bread-bg {
  padding: 93px 0px;
  position: relative;
}

.bread-bg::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #7c070a, #07376a);
  left: 0px;
  top: 0px;
  opacity: 0.85;
}

.bread-bg::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/breadcrumb-bg.jpg);
  background-size: cover;
  background-position: center;
  left: 0px;
  top: 0px;
  z-index: -1;
}

.breadcrumb h1 {
  color: #fff;
  font-size: 45px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 0px;
  font-family: "Minerva Modern";
}

.breadcrumb ul li a {
  font-weight: 500;
  color: #fff;
}


.breadcrumb ul li::before {
  content: "/";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  color: #fff;
}

.breadcrumb ul li:last-child::before {
  content: none
}

.breadcrumb ul li {
  font-size: 17px;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
  padding: 0 14px;
  margin: 0
}

.breadcrumb ul {
  padding: 6px 9px;
  position: relative;
  display: inline-block;
}


.inner-section {
  position: relative;
  min-height: 47vh;
  padding: 110px 0px 80px;
}


.inner-section1 {
  position: relative;
  padding: 45px 0px 85px;
}


.serv-matter p {
  text-align: justify;
  line-height: 27px;
  margin-bottom: 10px;
}

.serv-image {
  position: relative;
  border: 1px solid #2d2d2d85;
  padding: 10px;
  margin-bottom: 10px;
}

.serv-image img {
  box-shadow: 0px 0px 10px #9f9f9f;
  border-radius: 10px;
}

.ol_styles {
  padding: 0;
  padding-left: 20px;
}

.ol_styles li {
  position: relative;
  padding-left: 1px;
  margin-bottom: 5px;
  line-height: 28px;
  text-align: justify;
  list-style: disc;
}

.serv-matter h2 {
  color: var(--color-primary);
  font-size: 20px;
  margin: 15px 0px;
}

.serv-matter h3 {
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 400;
  margin: 15px 0px;
}

.serv-matter p a,
.serv-matter ol li a {
  color: var(--color-primary);
}


.counter {
  text-align: center;
}

.counter .counter-icon {
  color: #fff;
  background-color: var(--color-primary);
  font-size: 40px;
  line-height: 90px;
  height: 100px;
  width: 100px;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.counter .counter-icon i {
  line-height: inherit;
}

.counter .counter-value {
  color: var(--color-default);
  background-color: #eee;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 15px;
  margin: -25px 0 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: block;
}

.counter h3 {
  color: #fff;
  background-color: var(--color-secondary);
  font-size: 17px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 20px 12px;
  margin: 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2) inset;
  display: inline-block;
}

@media screen and (max-width:990px) {
  .counter {
    margin-bottom: 40px;
  }
}

.gallery_box {
  position: relative;
  margin-bottom: 35px;
}

.gallery_box .box {
  background: linear-gradient(to top right, #052282 0.3%, #1e2130 90.2%);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease 0s;
  margin-bottom: 16px;
}

.gallery_box .box:hover {
  filter: drop-shadow(5px 5px 10px #808080);
}

.gallery_box .box:before {
  content: "";
  width: 50px;
  height: 50px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform-origin: top right;
  transform: scale(0);
  position: absolute;
  top: 20px;
  right: 20px;
  transition: all 0.4s ease;
}

.gallery_box .box:hover:before {
  transform: scale(1);
}

.gallery_box .box img {
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
}

.gallery_box .box:hover img {
  opacity: 0.2;
}

.gallery_box .box .box-content {
  color: #fff;
  opacity: 0;
  position: absolute;
  bottom: 15px;
  left: 15px;
  transition: all 0.4s ease;
}

.gallery_box .box:hover .box-content {
  opacity: 1;
  transition-delay: 0.25s;
}

.gallery_box .box .title {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, .6);
  margin: 0 0 3px;
}

.gallery_box .box .post {
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, .6);
  display: block;
}

.gallery_box .box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
  transform: translateX(-50%) translateY(-50%) scale(0) rotate(0);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.4s ease;
}

.gallery_box .box:hover .icon {
  transform: translateX(-50%) translateY(-50%) scale(1) rotate(360deg);
}

.gallery_box .box .icon li {
  margin: 0 4px;
  display: inline-block;
}

.gallery_box .box .icon li a {
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 33px;
  height: 35px;
  width: 35px;
  border: 1px solid #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, .6);
  display: block;
  transition: all 0.3s;
}

.gallery_box .box .icon li a:hover {
  border-radius: 0 10px;
  background: var(--color-primary);
}


.adr-icon {
  width: 125px;
  position: relative;
  margin: auto;
}

.adr-txt {
  margin-top: 10px;
}

.adr-blk {
  position: relative;
}

.adr-txt p {
  font-size: 18px;
}

.abt-quote {
  margin-top: 20px;
}

.abt-quote h2 {
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  border-top: 1px solid;
  padding-top: 9px;
}

.abt-page h2 {
  font-weight: 300;
}

.abt-page h2 span {
  color: var(--color-secondary);
  font-size: 40px;
  font-weight: 600;
}

.fac-row {
  position: relative;
  padding-top: 25px;
}

.fac-blk {
  position: relative;
  margin-bottom: 39px;
}


.fac-blk h2 {
  font-weight: 500;
  font-size: 25px;
  color: var(--color-secondary);
  margin-top: -10px;
}

._cform::before {
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  background-image: url(../gallery/form-tp.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -40px;
  left: -35px;



}


.c-map::after {
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  background-image: url(../gallery/form-tp.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -23px;
  right: -14px;
  transform: scaleX(-1) scaleY(-1);


}

._cform {
  position: relative;
  padding: 23px 23px;
  max-width: 1000px;
  margin: auto;
  margin-top: 39px;
  text-align: center;
  box-shadow: 0 0 10px #ccc;
  border: 7px solid #f5f5f5;
  background: linear-gradient(to top, #e820231f, #fff, #e8202300);
}

._cform h3 {
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 34px;
  color: var(--color-secondary);
  font-family: "Minerva Modern";
}

._cform .form-control {
  border-bottom: 1px solid #043a75fa;
  height: 50px;
}

._cform textarea {
  height: 100px !important;
}

.c-map {
  margin-top: 39px;
}

iframe {
  box-shadow: 0 0 10px #ccc;
  border: 7px solid #f5f5f5;
}

._cform .form-control::placeholder {
  color: #000000;
  opacity: 1
}

._cform .form-control:focus {
  color: #000;
}

._cform .btn {
  background: var(--color-primary);
  border-color: transparent;
}

.panelrow .col-md-3 {
  padding: 0 5px;
}


.panellist {
  box-shadow: 0 0 10px #ccc;
  margin-bottom: 10px;
  cursor: pointer;
}


.main-timeline {
  position: relative;
}

.main-timeline .timeline {
  width: 50%;
  padding: 0 15px 30px 0;
  margin: 0 5px 30px 0;
  float: left;
}

.main-timeline .timeline-content {
  padding: 20px 120px 20px 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  display: block;
  position: relative;
}

.main-timeline .timeline-content:hover {
  text-decoration: none;
}

.main-timeline .timeline-content:before {
  content: '';
  background: linear-gradient(to left, var(--color-secondary), var(--color-primary));
  height: 30px;
  width: 100%;
  position: absolute;
  left: 30px;
  top: 100%;
}

.main-timeline .timeline-icon {
  color: var(--color-default);
  font-size: 50px;
  text-align: center;
  line-height: 100px;
  width: 100px;
  height: 100px;
  border-left: 1px solid #000;
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  top: 50%;
}

.main-timeline .title {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 7px;
}

.main-timeline .description {
  color: #161616;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  margin: 0;
}

.main-timeline .timeline:nth-child(even) {
  padding: 0 0 30px 15px;
  margin: 0 0 30px 5px;
  float: right;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
  padding: 20px 20px 20px 120px;
}

.main-timeline .timeline:nth-child(even) .timeline-content:before {
  left: auto;
  right: 30px;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid #000;
}

@media screen and (max-width:767px) {

  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    width: 100%;
  }
}

@media screen and (max-width:479px) {

  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    padding: 0 0 30px;
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    text-align: center;
    padding: 120px 20px 20px;
  }

  .main-timeline .timeline-content:before,
  .main-timeline .timeline:nth-child(even) .timeline-content:before {
    left: 0;
    right: auto;
  }

  .main-timeline .timeline-icon,
  .main-timeline .timeline:nth-child(even) .timeline-icon {
    border: none;
    border-bottom: 1px solid #000;
    transform: translateX(-50%) translateY(0);
    top: 0;
    left: 50%;
    right: auto;
  }
}


.team-img img {
  border-radius: 50%;
  border: 6px solid #f5f5f5;
  box-shadow: 0px 0px 7px #00000075;
  width: 285px;
  margin: auto;
}

.team-block {
  padding: 20px 10px;
  box-shadow: 0px 0px 7px #00000024;
  border-top: 3px solid #043a75;
  margin-bottom: 30px;
}

.team-block .doc-content h2 {
  font-size: 25px;
}

.team_modal .modal-dialog {
  max-width: 800px;
}

.team_modal .modal-header {
  display: block;
  padding: 0px;
  border: none;
}

.team_modal .modal-header .close {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 2;
  background: var(--color-primary);
  opacity: 1;
  color: #fff;
  padding: 7px 8px;
}

.modal_team_head {
  text-align: center;
  margin-bottom: 25px;
  box-shadow: 0px 4px 2px #ccc;
  padding: 0 0 16px;
}

.modal_team_head h2 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 29px;
}

.modal_team_head h3 {
  font-size: 19px;
}

.modal_team_head h4 {
  font-size: 19px;
  color: var(--color-secondary);
}

.team_info h3 {
  text-transform: uppercase;
  font-weight: 600;
  color: #e94611;
  font-size: 27px
}

.team_info h4 {
  font-size: 17px;
  margin: 6px 0px 2px;
  color: #212121;
  font-weight: 500;
}

.team_info h5 {
  font-size: 21px;
  font-weight: 500;
  color: #212121;
  margin-bottom: 10px;
  margin-top: 7px;
}

.team_info h6 {
  font-size: 18px;
  font-weight: 600;
  color: #152e6a
}

.team_info span {
  display: inline-block;
  /* background: linear-gradient(to left, var(--color-primary), var(--color-secondary)); */
  /* background: var(--color-default); */
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  cursor: pointer;
  padding: 1px 9px;
  border-radius: 7px;
  font-size: 15px;
}

.team_header {
  display: block;
  padding: 10px 0
}

.team_header h4 {
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  font-size: 31px;
  color: var(--color-secondary)
}

.team_header h5 {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-default);
}

.modal-matter h2 {
  font-size: 20px;
  color: var(--color-primary);
}

.team_header .close {
  position: absolute;
  background: var(--color-primary);
  opacity: 1;
  color: #fff;
  padding: 10px 9px;
  right: 0
}

.team_modal_doilauge.modal-dialog {
  max-width: 682px;
  margin-top: 7%
}

.team_m_content.modal-content {
  border: 7px solid #d2d2d2;
  padding: 18px 0px;
}

.list-style {
  padding-left: 20px;
  margin-bottom: 19px
}

.list-style li {
  position: relative;
  color: #484848;
  margin: 3px 0;
  padding-left: 23px;
  list-style-type: none;
  font-size: 17px;
}

.list-style li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f140";
  position: absolute;
  left: 0;
  top: 0px;
  color: var(--color-primary);
  font-weight: 800;
  font-size: 14px
}

.team-second-row {
  margin-top: 30px;
}

.modal-matter {
  padding: 15px 30px 0px;
  border-top: 1px solid #d7d7d7;
}

.modal-matter p {
  text-align: center;
}

.top-wrap1 {
  position: relative;
}


.video-page iframe {
  width: 100%;
  height: 200px;
  box-shadow: 0 0 13px #043a7538;
  margin-bottom: 25px;
  border: 5px solid #ffffff;
}