@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"); 
 
/***
====================================================================
	Reset
====================================================================
***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
}

@font-face {
  font-family: "Minerva Modern";
  src: url(../webfonts/minerva-modern/minerva-modern-black.otf);
  src: url(../webfonts/minerva-modern/minerva-modern-bold.otf);
  src: url(../webfonts/minerva-modern/minerva-modern-regular.otf);
  display: swap;
}
 
:root {
  --color-default: #1e1e1e;
  --color-primary: #e4abcb;
  --color-secondary: #e42e66;
  --color-teritary: #50303f;
}

.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: "Open Sans", 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: var(--color-secondary);
}

.main-menu .navigation>li .active .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: -99;
  background-image: url(../gallery/bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

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

/**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: 25px;
  position: absolute;
  display: inline-block;
  z-index: 999;
  width: 415px;
}

.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 li .submenu {
  position: absolute;
  width: 150px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  background-color: #f2fcff;
  z-index: 25;
  box-shadow: 0 3px 3px #6e6e6e;
  right: -42px;
  padding: 14px;
  text-align: left;
}

.main-menu li .submenu li {
  display: block;
}

.main-menu li .submenu li a {
  padding: 6px 5px 1px;
  border-bottom: 1px solid #a2a2a27a;
  display: block;
  font-weight: 500;
  text-transform: initial;
  color: var(--color-default);
  font-size: 15px;
  transition: all 500ms ease;
  position: relative;
}

.main-menu li .submenu li a:before {
  position: absolute;
  content: "_";
  font-size: 15px;
  color: #fff;
  left: 0px;
  opacity: 0;
  transition: all 0.5s ease-out;
  top: -2px;
  bottom: 0px;
  margin: auto;
}

.main-menu li .submenu li a:hover:before {
  opacity: 1;
  left: 20px;
}

.main-menu li .submenu li a:hover {
  padding-left: 40px;
}

.main-menu li .submenu li a:hover {
  background: var(--color-secondary);
  color: #fff;
}

.main-menu li:hover>.submenu.mega-menu {
  width: 640px;
}

.main-menu li:hover>.submenu {
  left: -200px;
}

.mega-menu .row .col-md-6 {
  border-right: 1px dashed #a2a2a27a;
}

.mega-menu .col-md-6:nth-child(1) li:last-child a,
.mega-menu .col-md-6:nth-child(2) li:last-child a {
  border-bottom: 0px;
}

.mega-menu .row .col-md-6:last-child {
  border-right: 0px;
}

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

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

.main-menu .navigation {
  position: relative;
  display: block;
  padding: 0 11px;
}

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

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

.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-secondary);
}

.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0;
  width: 50px;
  height: 42px;
  border-left: 1px solid #04102a;
  text-align: center;
  font-size: 16px;
  line-height: 42px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  z-index: 5;
}

/*** 
========================================
    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>ul.cstmwidth {
  width: 105px;
}

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

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

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

.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  left: 100%;
  top: 0%;
  width: 240px;
  padding: 0px 0px;
  z-index: 100;
  background: var(--color-secondary);
  transition: all 200ms linear;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
}

.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;
}

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

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

.main-menu .navigation>li>ul>li:hover>a {
  background: linear-gradient(45deg, var(--color-primary), #ffffff00);
  color: #fff;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a {
  background: linear-gradient(45deg, var(--color-primary), #ffffff00);
  color: #fff;
}

.main-menu .navigation>li>ul>li>a {
  position: relative;
  display: block;
  padding: 5px 20px;
  line-height: 24px;
  font-size: 15px;
  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>a i {
  position: absolute;
  right: 7px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
}

.main-menu .navigation>li>ul>li>ul>li>a {
  position: relative;
  display: block;
  padding: 5px 20px;
  line-height: 24px;
  font-size: 14px;
  text-transform: capitalize;
  color: #fff;
  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;
  height: 100vh;
  overflow: hidden;
}

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

.slide-one {
  background-image: url(../gallery/banner.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-secondary);
  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);
}

.abt-sec {
  position: relative;
  padding-top: 38px;
}

.abt-top-head p {
  font-size: 18px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  margin-bottom: 4px;
  color: var(--color-default);
}

.abt-sec-head::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 85%;
  background: var(--color-teritary);
  top: -41px;
  left: -16px;
  z-index: -1;
}

.abt-sec-head::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-teritary);
  bottom: 65px;
  left: -21px;
  transform: rotate(45deg);
}

.abt-sec-head {
  position: relative;
}

.abt-sec-head h2 {
  text-transform: uppercase;
  font-size: 46px;
  font-family: "Minerva Modern";
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--color-secondary);
  background: linear-gradient(45deg, rgb(247 237 243), #ffffff00);
  border-left: 3px solid;
  padding-left: 8px;
  margin-bottom: 8px;
}

.top-border {
  position: relative;
  width: 80%;
  height: 4px;
  background: linear-gradient(to right, var(--color-primary), #ffffff00, var(--color-primary));
  border-radius: 40px;
  margin: auto;
}

.abt-sec-head h3 {
  color: var(--color-default);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.abt-sec-head h4 {
  color: var(--color-teritary);
  font-size: 16px;
  font-weight: 400;
}

.abt-doc-img img {
  box-shadow: 0px 14px 11px -10px #000000ad;
  border: 9px solid #fff;
}

.abt-doc-img {
  position: relative;
  cursor: pointer;
  top: -66px;
}

.abt-matter {
  position: relative; 
  padding-top: 8px;
  margin-bottom: 25px;
} 

.abt-matter p {
  line-height: 30px;
  font-size: 15px;
  margin-bottom: 10px; 
}

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

.sec-head h2 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 50px;
  color: var(--color-teritary);
}

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

.why-choose-us {
  position: relative;
  margin-bottom: 100px;
}  
.why-name {
  position: relative;
  margin-top: 20px;
}
 
.btm-ad::before {
  content: " ";
  position: absolute;
  width: 50%;
  height: 1px;
  background: var(--color-default);
  top: -8px;
  left: 0px;
  right: 0px;
  margin: auto;
  opacity: 0.3;
}

.why-block {
  position: relative;
  text-align: center;
}
  

.emg-call a {
  font-weight: 400;
  color: #50303f;
  /* padding: 3px 10px; */
}

.btm-ad {
  position: relative;
}

.btm-ad::after {
  content: " ";
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(to bottom, #e42e6630, #ffffff00);
  border-radius: 50%;
  bottom: 0px;
  z-index: -1;
  left: 0px;
  right: 0px;
  margin: auto;
  opacity: 0.3;
}

.why-name h2 {
  font-size: 21px;
  background: linear-gradient(45deg, #dbdbdb, transparent);
  display: inline-block;
  padding: 3px 10px;
  font-weight: 400;
  text-transform: uppercase;
} 

.serv-block {
  position: relative;
  margin-bottom: 50px;
  cursor: pointer;
}
  
.extra-round img {
  width: 61px;
  margin-bottom: 17px;
}

.extra-round p {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 17px;
  font-family: "Minerva Modern";
  margin-top: 10px;
  color: #e42e66;
}

.extra-round h2 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 8px;
  text-transform: capitalize;
}

.extra-round {
  position: relative;
}

.extra-round::before {
  content: " ";
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #e42e66, #ffffff00);
  /* border-radius: 50%; */
  z-index: -1;
  top: -8px;
  opacity: 0.15;
}
  

.extra-info {
  position: relative;
  margin-bottom: 100px;
  padding: 58px 0px 98px;
}

.extra-info::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-teritary);
  top: 0px;
  left: 0px;
  transform: skewY(8deg);
  z-index: -2;
}

.extra-info::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/extra-bg.png);
  top: 0px;
  right: 0px;
  transform: skewY(8deg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  opacity: 0.3;
  z-index: -1;
}

.extra-box {
  position: relative;
  color: #fff;
}

.extra-box {
  position: relative;
  padding-left: 28px;
}

.extra-box::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 95%;
  background: #fff;
  bottom: 0px;
  left: 0px;
}

.extra-box::after {
  content: " ";
  position: absolute;
  width: 0px;
  height: 0px;
  border-top: 10px solid transparent;
  border-left: 16px solid #ffffff;
  border-bottom: 10px solid transparent;
  top: 18px;
  left: 0px;
}

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

.ol_styles li {
  position: relative;
  padding-left: 1px;
  line-height: 28px;
  font-size: 15px;
  list-style: disc;
}

.serv-matter .ol_styles li {
  margin-bottom: 5px;
}

.extra-box h2 {
  font-weight: 300;
  font-size: 28px;
  line-height: 45px;
  margin-bottom: 10px;
  position: relative;
}

.extra-box h2::before {
  content: " ";
  position: absolute;
  width: 37%;
  height: 1px;
  background: linear-gradient(to right, #ffffff00, var(--color-primary));
  right: 32px;
  bottom: 25px;
}

.extra-box h2::after {
  content: " ";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  right: 28px;
  bottom: 22px;
}

.extra-box p {
  font-size: 15px;
}

.extra-box h2 span {
  font-weight: 600;
  font-size: 38px;
}

.extra-box-btm {
  position: relative;
  color: #fff;
}

.extra-box-btm h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.extra-box-btm h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.extra-box-btm {
  padding-top: 20px;
}

.extra-box-btm::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  top: 13px;
  left: 0px;
  opacity: 0.2;
}

.extra-info-bg {
  position: relative;
}

.extra-info-bg::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 118%;
  background: var(--color-primary);
  z-index: -3;
  top: 42px;
  bottom: 0px;
  margin: auto;
  transform: skewY(5deg);
}

.news-block-four {
  position: relative;
  margin-bottom: 24px;
}

.news-block-four .inner-box {
  position: relative;
  padding: 38px 13px 33px 142px;
  box-shadow: -17px 0px 10px -10px rgb(0 0 0 / 40%);
  transition: 0.3s;
  background: #ffe4ec3d;
}

.news-block-four .inner-box .image {
  position: absolute;
  left: -25px;
  top: 27px;
  width: 150px;
  height: auto;
  border: 1px solid #ccc;
  padding: 10px;
}

.news-block-four .inner-box .image img {
  box-shadow: 0 0 10px #8c8c8c;
}

.news-block-four .inner-box .post-meta {
  position: relative;
}

.news-block-four .inner-box .post-meta li:last-child {
  margin-right: 0;
  position: relative;
  display: inline-block;
}

.news-block-four .inner-box .post-meta li a {
  position: relative;
  color: var(--color-teritary);
  font-size: 15px;
  padding: 3px 15px 3px 37px;
  background: 0 0;
  border-radius: 30px;
  border: 2px solid #ccc;
}

.news-block-four .inner-box .post-meta li a .icon {
  position: absolute;
  left: 15px;
  top: 6px;
  color: #676767;
}

.news-block-four .inner-box h3 {
  position: relative;
  line-height: 25px;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 20px;
}

.news-block-four .inner-box h3 a {
  position: relative;
  color: var(--color-teritary);
  transition: 0.3s;
}

.news-block-four .inner-box .text {
  position: relative;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 6px;
}

.news-block-four .inner-box .read-more {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.news-block-four.two .inner-box {
  padding: 38px 142px 33px 13px;
  text-align: right;
  box-shadow: 17px 0px 10px -10px rgb(0 0 0 / 40%);
}

.news-block-four.two .inner-box .image {
  right: -25px;
  left: initial;
}

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

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

.blog-app-sec .sec-head {
  padding-bottom: 20px;
}

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

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

.appointment-form {
  padding: 38px 40px 25px;
  position: relative;
  background: var(--color-teritary);
}

.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: 25px;
  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: 1px solid #dedede45;
  background: #ffffff00;
  border-radius: 0px;
  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: "Open Sans", 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: "Open Sans", sans-serif;
  font-size: 15px;
}

.select-items {
  position: absolute;
  background-color: #f2f2f2;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  font-family: "Open Sans", 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-bg {
  position: relative;
  z-index: 1;
} 

.main-footer {
  position: relative;
  display: block;
}

.main-footer .footer-top {
  position: relative;
  display: block;
  background-color: transparent;
}

.logo-footer {
  width: 400px;
  margin: auto;
  margin-bottom: 20px;
}

.abt-footer p {
  line-height: 30px;
  font-size: 15px;
} 
.f_c_row {
  position: relative;
  margin-top: 20px;
}

.f_c_row::before {
  content: "";
  position: absolute;
  width: 42%;
  height: 1px;
  left: 0;
  right: 0;
  margin: auto;
  background: #343c38;
  top: 24px;
}

.social-icon-two {
  position: relative;
  text-align: center;
  margin-top: 0;
  display: inline-block;
  padding: 9px 17px;
}

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

.social-icon-two li a:first-child {
  margin-left: 0;
}

.social-icon-two li a {
  position: relative;
  display: block;
  font-size: 18px;
  width: 35px;
  height: 35px;
  line-height: 34px;
  color: var(--color-teritary);
  border: 1px solid var(--color-teritary);
  background: #fff;
  border-radius: 50%;
  font-weight: 400;
  text-align: center;
  margin: 0 5px;
  transition: 0.3s;
}

.main-footer .footer-bottom {
  position: relative;
  display: block;
  background-color: transparent;

}

.main-footer .footer-bottom .left-content .copyright {
  position: relative;
  display: block;
  color: #000;
  text-align: center;
  font-size: 15px;
  padding-top: 13px;
}

.main-footer .footer-bottom .left-content .copyright a {
  color: var(--color-teritary);
}

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

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

.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);
  cursor: pointer;
}

.addres-icon {
  position: relative;
  display: table;
  left: 0;
  top: 0;
  margin: 0 auto 8px;
  font-size: 17px;
  line-height: 34px;
  width: 34px;
  height: 34px;
  background: var(--color-teritary);
  text-align: center;
  color: #fff;
}

.addre-text p {
  font-size: 15px;
  margin-bottom: 0px;
}

.addre-footer .col-md-4 {
  background: linear-gradient(to right, #e4abcb3d, transparent, #e4abcb3d);
  border-radius: 10px;
}

.addre-footer .col-md-4::before,
.addre-footer .col-md-4::after {
  content: " ";
  position: absolute;
  width: 1px;
  height: 58%;
  background: var(--color-teritary);
  top: 0px;
  bottom: 0px;
  margin: auto;
  left: 0px;
}

.addre-footer .col-md-4::after {
  left: initial;
  right: 0px;
}

.addre-text {
  position: relative;
  padding: 12px 0px;
}

.imgs-sec {
  position: relative;
  margin: 55px 0;
  margin-bottom: 95px;
}

.imgs-sec .container {
  max-width: 1250px;
}

.imgs-blk {
  position: relative;
  overflow: hidden;
}

.imgs-blk img {
  transition: all 300ms ease;
}

.imgs-blk-out:hover .imgs-blk img {
  transform: scale(1.2);
}

.imgs-blk-out {
  position: relative;
  margin: 1px;
  cursor: pointer;
  height: 475px;
  overflow: hidden; /* Ensures any overflow from image is hidden */
}

.imgs-blk {
  height: 100%;
  width: 100%;
}

.imgs-blk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* Explicitly centers the image */
  display: block;
}
.imgs-blk-out:hover::before {
  background: none;
}

.imgs-blk-out::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--color-teritary);
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
  transition: all 300ms ease;
}

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

.top-wrap1 {
  position: relative;
}

.inner-section1 {
  position: relative;
  padding: 25px 0px 68px;
}

.breadcrumb {
  position: relative;
  padding: 170px 0 30px;
  margin-bottom: 0;
  z-index: 2;
  display: block;
  background: transparent;
}

.bread-bg {
  padding: 33px 0px;
  position: relative;
  text-align: right;
}

.breadcrumb::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/contact.png);
  background-size: cover;
  background-position: center;
  left: 0px;
  top: 0px;
  z-index: -1;
  opacity: 0.3;
  background-repeat: no-repeat;
}

.breadcrumb h1 {
  color: var(--color-secondary);
  font-size: 42px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 0px;
}

.breadcrumb ul li a {
  font-weight: 400;
  color: var(--color-default);
}

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

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

.breadcrumb ul li::before {
  content: "/";
  position: absolute;
  right: 0;
  top: 0;
  width: 0px;
  color: var(--color-secondary);
}

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

.breadcrumb ul i {
  font-size: 20px;
  color: var(--color-default);
}

.cip-blk {
  position: relative;
  padding-top: 48px;
  /* padding-bottom: 48px; */
}

.cip-blk::after {
  content: "";
  position: absolute;
  /* height: 100%; */
  height: 70%;
  width: 100%;
  background-color: var(--color-teritary);
  top: 0;
  left: 0;
  border-radius: 25px;
  border-top: 8px solid var(--color-primary);
  box-shadow: 0 6px 10px #0000003d;
  z-index: -1;
}

.cip-blk::before {
  content: "";
  position: absolute;
  /* height: 100%; */
  height: 70%;
  width: 100%;
  background-image: url(../gallery/contact-bg.jpg);
  background-position: center;
  top: 0;
  left: 0;
  border-radius: 25px;
  border-top: 8px solid var(--color-primary);
  opacity: 0.1;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-form {
  position: relative;
  text-align: center;
  padding: 50px 23px 48px;
  background: linear-gradient(to top, #f2f2f2, #ffffff);
  box-shadow: 0px 0px 12px 0px #00000042;

  z-index: 999;
}

.contact-form::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -2;
  border: 7px solid #d3d3d3;
}

.contact-form h2 {
  margin-bottom: 38px;
  color: var(--color-teritary);
  font-size: 33px;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid;
}

.contact-form .form-control {
  height: 49px;
  color: rgb(0, 0, 0);
  border-bottom: 0px;
  border-radius: 0px;
  font-size: 16px;
  background-color: rgb(233, 233, 233);
  font-size: 15px;
}

.contact-form .btn-danger {
  color: #fff;
  background: var(--color-secondary);

  margin-top: 28px;
  border-color: transparent;
}

.contact-form .form-group textarea {
  height: 100px;
}

.cip-map-blk {
  position: relative;
}

.cip-map-blk iframe {
  box-shadow: 0px 0px 12px 0px #00000042;
  border: 7px solid #d3d3d3;
}

.cip-adr-row {
  position: relative;
  margin-bottom: 55px;
}

.cip-adr-txt {
  color: #fff;
}

.cip-adr-row .col-md-4:nth-child(2) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 13px;
}

.main-timeline:before {
  content: "";
  height: 100%;
  width: 1px;
  border: 1px dashed #592049;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: 0;
}

.main-timeline:after {
  content: "";
  display: block;
  clear: both;
}

.main-timeline .timeline {
  width: 50%;
  padding: 10px 40px 10px 10px;
  margin: 0 10px 30px 0;
  float: left;
  position: relative;
}

.main-timeline .timeline:after {
  content: "";
  background: linear-gradient(to left, var(--color-secondary), var(--color-teritary));
  height: 24px;
  width: 24px;
  border-radius: 50%;
  position: absolute;
  right: -12px;
  bottom: 0;
}

.main-timeline .timeline-content {
  color: #444;
  background-color: #fff;
  padding: 25px 90px 25px 45px;
  border-radius: 0 80px;

  display: block;
  position: relative;
  background: linear-gradient(to left, #dfdfdf, #e42e6600);
}

.main-timeline .timeline:nth-child(even) .timeline-content {
  background: linear-gradient(to right, #dfdfdf, #e42e6600);
}

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

.main-timeline .timeline-icon {
  color: #fff;
  background-color: var(--color-teritary);
  font-size: 37px;
  line-height: 60px;
  text-align: center;
  height: 60px;
  width: 70px;
  border-radius: 30px 0 0 30px;
  position: absolute;
  bottom: 10px;
  right: 0;

  border: 2px solid #fff;

  box-shadow: 0 6px 10px #0000005c;
  border-right: 0;
}

.main-timeline .timeline-icon i {
  line-height: inherit;
}

.main-timeline .title {
  color: var(--color-teritary);
  font-size: 20px;
  font-weight: 600;

  text-transform: uppercase;
  margin: 0 0 5px;
}

.main-timeline .description {
  font-size: 14px;

  margin: 0;
}

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

.main-timeline .timeline:nth-child(even):after {
  right: auto;
  left: -12px;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
  padding: 25px 45px 25px 90px;
  border-radius: 80px 0;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
  border-radius: 0 30px 30px 0;
  left: 0;
  right: auto;
}

@media screen and (max-width: 767px) {
  .main-timeline:before {
    transform: translateX(0);
    left: 15px;
  }

  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    width: 100%;
    margin: 0 0 30px;
    padding: 10px 10px 10px 35px;
  }

  .main-timeline .timeline:after,
  .main-timeline .timeline:nth-child(even):after {
    left: -10px;
  }

  .main-timeline .timeline-icon,
  .main-timeline .timeline:nth-child(even) .timeline-icon {
    font-size: 30px;
    border-radius: 30px 0 0 30px;
    right: 0;
    left: auto;
    bottom: auto;
    top: 10px;
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 85px 25px 25px 25px;
    border-radius: 70px 0;
  }
}

@media screen and (max-width: 567px) {
  .main-timeline .title {
    font-size: 18px;
  }
}

.timeline-icon img {
  filter: brightness(0) invert(1);
  width: 45px;
  top: -2px;
  position: relative;
  left: 5px;
}

.main-timeline .timeline:nth-child(even) .timeline-icon img {
  transform: scaleX(-1) scaleY(-1);
  filter: brightness(0) invert(1);

  top: -5px;

  left: -1px;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
  border-left: 0px;
  border-right: 2px solid;
}

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

.ibox {
  text-align: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  border: 5px solid #50303f12;
  border-radius: 14px;
}

.ibox:before,
.ibox:after {
  content: "";
  width: 250%;
  height: 200%;
  background: rgba(88, 29, 72, 0.42);
  position: absolute;
  top: 0;
  left: 0;
  transform: skew(45deg) translateX(100%);
  transition: all 0.6s ease 0s;
}

.ibox:after {
  transform: skew(45deg) translateX(-100%);
}

.ibox:hover:before,
.ibox:hover:after {
  transform: skew(45deg) translateX(0px);
}

.ibox .ibox-content {
  width: 100%;
  position: absolute;
  top: 40%;
  left: 0;
  opacity: 0;
  z-index: 10;
  transform: scale(3);
  transition: all 0.3s ease 0s;
}

.ibox:hover .ibox-content {
  opacity: 1;
  transform: scale(1);
}

.ibox .iicon {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ibox .iicon li {
  display: inline-block;
}

.ibox .iicon li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease 0s;
}

.ibox .iicon li a:hover {
  background: #fff;
  color: var(--color-secondary);
}

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

.ibox img {
  width: 100%;
  height: auto;
  transform: scale(1.5);
  transition: all 0.3s ease 0s;
}

.ibox:hover img {
  transform: scale(1.5) rotate(-20deg);
  mix-blend-mode: hard-light;
}

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

.vid-iblk {
  margin: 5px;
  margin-bottom: 15px;
}

.vid-iblk iframe {
  box-shadow: 3px 22px 8px -18px #a2a2a2;
}

.iabt-doc-img img {
  box-shadow: 0 0 10px #581f4840;
}

.iabt-doc-img {
  border: 2px solid var(--color-teritary);
  padding: 10px;
}

.idoc-info {
  position: relative;
  padding: 10px 0;
  margin-bottom: 17px;
}

.idoc-info::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 90%;
  top: 0;
  left: -19px;
  background-color: #ead1e373;
  border-left: 3px solid var(--color-primary);
  z-index: -1;
}

.idoc-info p {
  margin-bottom: 0px;
}

.idoc-info h3 {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 38px;
  color: var(--color-teritary);
}

.idoc-info h4 {
  color: var(--color-teritary);
  font-size: 20px;
  margin-bottom: 3px;
}

.abt-inner-mater p {
  text-align: justify;
  line-height: 30px;
  font-size: 15px;
  margin-bottom: 6px;
}

.emg-call a {
  font-size: 43px;
  display: inline-block;
  margin-top: 25px;
}

.emg-call {
  font-size: 35px;
  /* background: #e42e660d; */
  /* padding: 20px 0px; */

  /* clip-path: polygon(0 0, 15% 51%, 0 100%, 100% 100%, 86% 49%, 100% 0); */
}

:root {
  --main-color: #009195;
  --border-color: #acacac;
}

.counter {
  width: 100%;
  padding: 12px;
  position: relative;
  margin: 0 auto;
  z-index: 1;
  background: linear-gradient(to left, #ffeff4, #fff);
  margin-bottom: 25px;
}

.counter .counter-icon {
  color: #fff;
  background: linear-gradient(to left, var(--color-teritary), var(--color-secondary));
  font-size: 30px;
  line-height: 40px;
  width: 60px;
  height: 60px;
  text-align: right;
  padding: 6px 4px 0 0;
  border-radius: 0 0 0 100%;
  position: absolute;
  right: 0;
  top: 0;
}

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

.counter .counter-content {
  padding: 15px 10px;
  border: 2px solid var(--border-color);

  box-shadow: 0 0 0 12px #fff, 0 0 18px rgba(0, 0, 0, 0.7);
}

.counter .counter-value {
  font-size: 30px;
  line-height: 30px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--color-secondary);
}

.counter h3 {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--color-teritary);
  min-height: 43px;
}

.counter.green {
  --main-color: #009144;
}

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

.edu-row {
  margin-top: 70px;

  padding: 34px;
  border-radius: 15px;
}

.edu-head {
  margin-bottom: 50px;
}

.edu-head h2 {
  display: inline-block;
  padding: 2px 35px;
  background: var(--color-teritary);

  border-top-left-radius: 0;

  background: linear-gradient(to bottom, #50303f5c, #50303f00);
  color: var(--color-teritary);
  text-transform: uppercase;
}

.awrd-aexp {
  position: relative;

  padding: 40px 35px;
  margin-bottom: 75px;
}

.awrd-aexp::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-teritary);
  border-radius: 25px;
  z-index: -1;
  top: 0;
}

.awrd-aexp .aexp-head h2 {
  display: inline-block;
  padding: 2px 35px;
  background: var(--color-teritary);
  border-top-left-radius: 0;
  background: linear-gradient(to top, #ffffff5c, #50303f00);
  color: #fff;
  text-transform: uppercase;
}

.ol_stylesa {
  position: relative;
  margin-bottom: 12px;
  list-style-type: none;
  margin-top: 25px;
  display: inline-block;
  text-align: center;
}

.ol_stylesa li::before {
  font-family: "FontAwesome";
  content: "\f14a";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 13px;
}

.ol_stylesa li {
  color: #fff;
  margin-right: 25px;
  position: relative;
  padding-left: 20px;
  font-size: 21px;
  line-height: 48px;
  margin-bottom: 4px;
  font-weight: 400;
  display: inline-block;
}

.aexp-head h2 {
  font-weight: 500;
}

.serv-matter p {
  text-align: justify;
  line-height: 30px;
  margin-bottom: 10px;
  font-size: 15px;
}

.serv-matter h2 {
  color: var(--color-secondary);
  font-size: 23px;
  margin: 15px 0px 5px;
}

.serv-matter h3 {
  color: var(--color-teritary);
  font-size: 20px;
  margin: 15px 0px 5px;
}

.inner-serv-img img {
  border: 6px solid #f5f5f5;
  box-shadow: 0px 0px 8px #00000052;
}

:root {
  --white: #fff;
  --main-color: #40739e;
}

.serviceBox {
  color: var(--main-color);
  background: var(--main-color);

  text-align: center;
  padding: 0 25px 40px;
  border-radius: 0 0 10px 10px;
  position: relative;
  z-index: 1;
  background: linear-gradient(45deg, #e42f673d, transparent);
  margin-bottom: 40px;
}

.serviceBox:before {
  content: "";
  background: var(--white);
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  border-radius: 100px 100px 10px 10px;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}

.serviceBox .service-icon {
  background: linear-gradient(to left, var(--color-secondary), var(--color-teritary));
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50px 50px;
  font-size: 35px;
  position: relative;
  margin: 0 auto 20px;
  z-index: 1;
}

.serviceBox .service-icon:before {
  content: "";
  background: var(--white);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50px 50px;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.serviceBox .service-icon i {
  line-height: inherit;
  color: var(--color-primary);
}

.serviceBox .title {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--color-teritary);
}

.serviceBox .description {
  color: #aaa;
  font-size: 13.5px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0;
}

@media only screen and (max-width: 1199px) {
  .serviceBox {
    margin: 0 0 40px;
  }
}

.iblg-inner-blk {
  position: relative;
  border: 2px solid #fff;
  box-shadow: 0 0 10px #0000003d;
}

.iblg-inner-blk .iblg-txt p {
  margin-bottom: 0px;
}

.iblg-inner-blk .iblg-txt {
  position: relative;
  padding: 17px;
  padding-top: 225px;
}

.iblg-txt h2 {
  color: var(--color-teritary);
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: capitalize;
}

.iblg-txt::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../gallery/b1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -2;
}

.iblg-txt::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, #fff 30%, #fff0);
  top: 0;
  left: 0;
  z-index: -1;
}

.iblg-blk .col-md-4:nth-child(3) .iblg-txt::after {
  background-image: url(../gallery/b2.jpg);
}

.iblg-blk .col-md-4:nth-child(1) .iblg-txt::after {
  background-image: url(../gallery/b3.jpg);
}

.blog-nav {
  position: relative;
  background-color: #310017;

  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 25px;
}

.blog-nav li {
  font-size: 17px;
  margin-bottom: 3px;
  padding: 1px 52px;

  display: block;
  position: relative;
  padding-top: 11px;
  text-align: left;
}

.blog-nav li a {
  color: #fff;
}

.blog-nav li a::before {
  content: "";
  position: absolute;
  width: 10px;
  border: 1px solid;
  left: 21px;
  top: 25px;
}

.blog-nav li .active {
  color: var(--color-secondary);
}

.blog-nav h2 {
  color: #fff;
  margin: 0px;
  padding-top: 26px;
  display: inline-block;
  text-transform: uppercase;
  border-bottom: 1px dashed;
  padding-bottom: 4px;
}

.blog-nav::before {
  content: "";
  position: absolute;
  background-image: url(../gallery/blog-nav.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.3;
}

.top-social {
  position: absolute;
  z-index: 91;
  text-align: center;
  top: 21px;
  right: 28px;
  width: auto;
  display: inline-flex;
  padding: 5px 0px;
  border-bottom: 1px solid var(--color-secondary);
}

.top-social::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  bottom: -5px;
  left: 0;
}

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

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

.top-social li img {
  filter: brightness(0) invert(1);
}

.top-social li a {
  display: block;
  width: 34px;
  height: 34px;
  color: #fff;
  text-align: center;
  line-height: 34px;
  font-size: 14px;
  margin: 0px 1px;
  background: var(--color-teritary);
  border-radius: 50%;
}

.top-social span {
  line-height: 33px;
  display: block;
  color: var(--color-default);
  font-size: 18px;
  margin-right: 10px;
}

.top-social li a:hover {
  color: #fff;
}

.top-social li a span {
  color: #fff;
}

.top-social li a span {
  margin-right: 0px;

  border-bottom: 0px;
}

.main-timeline-review {
  position: absolute;
  top: 0;
  right: 27px;
  padding: 9px 12px 4px;
  text-align: center;

  background: linear-gradient(to left, var(--color-primary), var(--color-secondary));
  border-radius: 31px;
  border-top: 4px solid var(--color-primary);
}

.main-timeline-review a {
  color: #fff;
}

.main-timeline-review a p {
  margin-bottom: 8px;
  font-size: 20px;
}

.main-timeline-review a i {
  font-size: 38px;
}

.main-timeline-review a img {
  width: 121px;
  filter: brightness(0) invert(1);
}

.chatbox {
  position: fixed;
  bottom: 91px;
  left: 28px;
  width: 260px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 2;
}

.chatbox-header {
  background: var(--color-secondary);
  color: white;
  padding: 13px 15px;
  display: flex;
  justify-content: space-between;
  /* border-radius: 10px 10px 0 0; */
}

.chatbox-footer .btn-success {
  color: #fff;
  background-color: var(--color-teritary);
  border-color: var(--color-teritary);
}

.chatbox-footer .btn-success.focus,
.chatbox-footer .btn-success:focus {
  box-shadow: 0 0 0 0.2rem #7f358485;
}

.chatbox-header h5 {
  line-height: 33px;
}

.chatbox-header .btn-danger {
  color: #fff;
  background-color: var(--color-teritary);
}

.chatbox-body {
  height: 200px;
  overflow-y: auto;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-image: url(../gallery/chat-bg.jpg);
  background-size: cover;
}

.close-btn {
  font-size: 34px;
  padding: 0px;
  line-height: 24px;
  width: 30px;
  height: 32px;
  text-align: center;
  display: block;
  padding-bottom: 5px;
}

#chatbox-open .btn {
  border: 0px;
}

#chatbox-open .btn.focus,
#chatbox-open .btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.chatbox-footer .form-control::placeholder {
  color: var(--color-teritary);
}

.chatbox-footer .form-control {
  border-bottom: none;
  font-size: 15px;
}

.chatbox-footer .form-control:focus {
  box-shadow: none;
}

.chatbox-footer {
  padding: 5px 10px;
  display: flex;
  gap: 5px;
}

#chatbox-open {
  position: fixed;
  bottom: 15px;
  left: 15px;
  padding: 0px;
  background: #ffffff00;
  z-index: 5;
} 
.btn img {
  width: 65px;
}

#chat-messages {
  padding: 8px;
  background: linear-gradient(to left, #ffcde97a, #50303f00);
  border-radius: 16px;
}

#chat-messages p {
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 23px;
  color: var(--color-teritary);
}

.num-sec {
  position: relative;
  margin-bottom: 70px;
}

.num-sec .num-img-blk {
  position: relative;
}

.num-img-blk .num-txt {
  position: absolute;
  top: 0;
  left: 0;
  padding: 61px 15px;
  width: 100%;
}

.num-img-blk .num-icon {
  position: absolute;
  top: 182px;
  left: 0;
  padding: 24px;
  width: 100px;
  right: 0px;
  margin: auto;
  background: #ad616600;
  border-radius: 50%;
  box-shadow: 0px 9px 10px #ad616633;
}

.num-img-blk .num-icon::before {
  content: " ";
  position: absolute;
  width: 93%;
  height: 93%;
  opacity: 0.7;
  border: 1px dashed var(--color-primary);
  border-radius: 50%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.num-img-blk .num-icon img {
  width: 100px;
  filter: brightness(0);
}

.num-txt h2 {
  font-family: "audrey";
  font-size: 65px;
  font-weight: 400;
  color: var(--color-secondary);
}

.consult-box {
  margin-top: 20px;
  padding-top: 10px;
  position: relative;
}

.consult-box::before {
  content: " ";
  position: absolute;
  width: 350px;
  height: 350px;
  background: linear-gradient(to bottom, #ffeeef, #ffffff00);
  border-radius: 50%;
  left: 0px;
  right: 0px;
  margin: auto;
  top: -91px;
  z-index: -1;
}

.consult-box h2 {
  font-size: 25px;
  font-weight: 300;
  line-height: 40px;
  display: inline-block;
  border-top: 1px solid #ad6166b5;
  padding-top: 13px;
  color: #1a1a1a;
} 
.emg-call a {
  font-size: 35px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-top: 0px;
}

.emg-call img {
  width: 80px;
}

.doc-name {
  position: absolute;
  bottom: 68px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.doc-main-block {
  position: relative;
}

.doc-name h2 {
  background: var(--color-teritary);
  color: #fff;
  display: inline-block;
  padding: 5px 20px;
  font-weight: 400;
  border-radius: 30px;
  font-size: 29px;
  font-size: 25px;
  text-transform: uppercase;
}

.doc-name::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--color-default);
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.doc-img-block {
  position: relative;
  filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.574));
}

.doc-deg h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 7px;
}

.doc-deg h4 {
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
}

.doc-deg {
  position: relative;
  padding: 0px 25px;
  margin-top: -20px;
}

.expertise-box {
  position: relative;
  min-height: 500px;
  padding: 30px;
  cursor: pointer;
  transition: 0.5s all ease-out;
}
 
.expertise-box:hover::before {
  filter: blur(0px);
}

.expertise-box::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #c6777d24;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
  border-radius: 20px;
  filter: blur(0.5px);
  box-shadow: 5px 6px 15px #0000004a;
  transition: 0.5s all ease-out;
}

.con-box {
  position: relative;
  background: #fff;
  padding: 17px 10px;
  border-radius: 15px;
  margin: 22px 20px;
  height: 125px;
  align-content: center;
  cursor: pointer;
  transition: 0.5s all ease-out;
}

.con-box::before {
  content: " ";
  position: absolute;
  width: 120px;
  height: 115px;
  border: 1px solid var(--color-secondary);
  border-radius: 12px;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  opacity: 0.1;
  transition: 0.5s all ease-out;
  z-index: -1;
}

.con-box:hover::before {
  opacity: 0.9;
}

.con-box:hover {
  box-shadow: 0px 14px 20px -10px #999999;
}

.con-box:hover .con-icon {
  transform: scale(1.1);
  top: -10px;
}

.con-icon {
  position: relative;
  z-index: 1;
  top: 0px;
  transition: 0.5s all ease-out;
}

.con-icon::before {
  content: " ";
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--color-secondary), #ffffff00);
  opacity: 0.2;
  top: 0px;
  border-radius: 50%;
  z-index: -1;
}

.con-box p {
  margin-bottom: 0px;
  line-height: 20px;
}

.con-icon img {
  width: 45px;
  margin-bottom: 10px;
}

.con-btm {
  position: relative;
  padding-top: 10px;
}

.con-btm::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  left: 0px;
  right: 0px;
  top: 0px;
}

.con-btm h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.con-btm h3 {
  font-weight: 400;
  margin-top: 16px;
  font-size: 20px;
  position: relative;
}

.con-btm a {
  background: var(--color-teritary);
  color: #fff;
  padding: 7px 14px;
  font-size: 23px;
  border-radius: 20px;
}

.expertise-head h2 {
  color: var(--color-teritary);
  font-weight: 400;
  font-family: "Minerva Modern";
  text-transform: uppercase;
  font-size: 29px;
}

.expertise-head p {
  margin-bottom: 0px;
}

.doc-sec {
  margin-bottom: 100px;
}

.about-sec .sec-head h2 {
  font-family: "Minerva Modern";
}
.about-sec .sec-head h1{
  font-weight: 400;
  font-size: 35px;
}
.why-block {
  position: relative;
  cursor: pointer;
}

.why-img1 img {
  transition: all 300ms ease;
  border-radius: 50%;
  width: 235px;
  box-shadow: 12px 13px 5px -10px #00000038;
  border: 5px solid #fff;
}

.why-img1 {
  position: relative;
}

.why-img1::before {
  content: " ";
  position: absolute;
  width: 235px;
  height: 235px;
  background: var(--color-teritary);
  left: -18px;
  right: 0px;
  top: -19px;
  bottom: 0px;
  margin: auto;
  z-index: -1;
  border-radius: 50%;
}

.why-name {
  position: relative;
  margin-top: 20px;
}

.why-row1 .col-md-4:nth-child(3) .why-img1 img {
  filter: grayscale(1);
}

.why-row1 .col-md-4:nth-child(3) .why-block:hover .why-img1 img {
  filter: grayscale(0) blur(0.5px);
}

.why-row1 .why-block:hover .why-img1 img {
  transform: scale(1.05);
  filter: grayscale(1) blur(0.5px);
}

.why-row1 .col-md-4:nth-child(3) .why-block {
  transform: scale(1.2);
}

.why-row1 .col-md-4:nth-child(2),
.why-row1 .col-md-4:nth-child(4) {
  margin-top: 80px;
}
 

.extra-div {
  margin-top: 15px;
}

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

.why-row1 {
  position: relative;
}
.why-row1::after {
    content: "";
    position: absolute;
    height: 58%;
    width: 100%;
    background: linear-gradient(to right, #50303f, #f5eaeb, #fff0);
    top: 0;
    left: 0;
    z-index: -2;
    bottom: 0;
    margin: auto;
} 
.ytube-txt{
  position: relative;
}
.ytube-txt::before{
  content: " ";
  position: absolute;
  width:70%;
  height: 1px;
  background: #fff;
  left: 0px;
  top: -10px;
  opacity: 0.4;
}
.ytube-txt::after{
  content: " ";
  position: absolute;
  width:70%;
  height: 1px;
  background: #fff;
  right: 0px;
  bottom: -10px;
  opacity: 0.4;
}
.ytube-txt h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 7px;
  color: #fff;
  text-transform: capitalize;
}

.ytube-txt img {
  width: 70px;
  margin: auto;
}

.extra-div .col-md-3:nth-child(2) {
  left: 53px;
}

.extra-div .col-md-3:nth-child(3) {
  left: 28px;
}

.ytube-txt img {
  width: 70px;
  display: block;
  margin: auto;
  position: relative;
  z-index: 2;
}

.ripple-wrapper {
  position: relative;

  margin: 0 auto;
}

.ripple-wrapper a {
  position: relative;
  z-index: 2;
}

.ripple-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background-color: #ffdce7;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 1;
  animation: ripple 3s infinite ease-out;
}

.circle1 {
  animation-delay: 0s;
}

.circle2 {
  animation-delay: 1s;
}

.circle3 {
  animation-delay: 2s;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.3;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}



.appnt-sec {
  position: relative;
  margin-bottom: 15px;
}

.appnt-bg::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-teritary);
  top: 0px;
  left: 0px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 69%, 0 100%);
}

.appnt-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/appt-bg.png);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 69%, 0 100%);
  top: 0px;
  bottom: 0px;
  background-position: center;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-size: cover;
}

.appnt-side {
  position: relative;
  right: -38px;
  color: #fff;
  text-align: center;
  top: -32px;
}

.appnt-hrs h2 {
  font-weight: 600;
  margin-bottom: 10px;
  border-bottom: 1px solid #975363;
  display: inline-block;
  padding-bottom: 5px;
}

.appnt-hrs-down {
  position: relative;
  padding-top: 10px;
  margin-top: 10px;
}

.appnt-hrs-down p {
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0px;
  line-height: 30px;
}

.appnt-hrs-down::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0px;
  right: 0px;
  top: 0px;
  margin: auto;
  opacity: 0.2;
}

.appnt-hrs p {
  margin-bottom: 7px;
  font-size: 20px;
}

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

.appnt-bg {
  position: relative;
}

.appnt-sec::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 83%;
  background: #f4e9ea;
  top: 0px;
  left: 0px;
  z-index: -1;
  transform: skewY(-6deg);
}

.appnt-hrs {
  position: relative;
}

.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: 80px 85px 15px;
  position: relative;
  background: linear-gradient(45deg, #8c4063, #533543);
  border-radius: 50%;
  width: 590px;
  height: 590px;
  top: -50px;
  box-shadow: 0px 14px 11px -10px #0707075c;
  left: -38px;
}

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

.btn-style-one {
  margin-top: 13px;
  background: #fff;
  color: var(--color-teritary);
  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: "Lato", 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: "Lato", sans-serif;
  font-size: 15px;
}

.select-items {
  position: absolute;
  background-color: #f2f2f2;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;

  font-family: "Lato", 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;
}


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

.test-row-img {
  position: relative;
}

.test-row-img::before {
  content: "";
  position: absolute;
  height: 40%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #efdfe4;
  background: linear-gradient(to left, #fff0, #efdfe4, #fff0);
  z-index: -1;
  border-radius: 27px;
}


.test-star {
  text-align: right;
}

.test-blk h2,
.test-blk p {
  text-align: right;
}

.test-blk p {
  margin-bottom: 4px;
  padding-left: 48px;
}

.test-blk h2 {
  color: var(--color-teritary);
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
}

.test-left-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px !important;
  z-index: -1;
}

.test-left-img {
  position: relative;
  top: 0px;
  margin: 25px 0px;
}

.facebook {
  position: relative;
}

.facebook iframe {
  position: relative;
  height: 500px;
  border: 6px solid #fff;
  box-shadow: 0 0 10px var(--color-teritary);
  border-radius: 15px;
}

.blog-app-sec .bp-sec h2{
  display: inline-block;
}

.blog-app-sec .bp-sec h2:after{
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, #fff0,var(--color-secondary),#fff0);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  
}



/***
============================================================
Footer section
============================================================
***/
.main-footer {
  position: relative;
}
.social-icon-two {
  position: relative;
  text-align: center;
  margin-top: 0;
  /* display: inline-block; */
  padding: 6px 4px;
  margin: 10px 0px 30px;
}
.social-icon-two li {
  position: relative;
  display: inline-block;
}
.social-icon-two li:last-child {
  border-right: 0px;
}
.social-icon-two li a {
  position: relative;
  display: block;
  font-size: 18px;
  width: 35px;
  height: 35px;
  line-height: 34px;
  border: 1px dashed var(--color-teritary);
  color: var(--color-secondary);
  background: #fff;
  border-radius: 50%;
  font-weight: 400;
  text-align: center;
  margin: 0 5px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-two li a img{
  width: 16px;
  transition: all 300ms ease;
}
.social-icon-two li a:hover img{
  filter: brightness(0) invert(1);
}
.social-icon-two li a:hover {
  color: #ffffff;
  background: var(--color-secondary);
}
.social-icon-two li a:first-child {
  margin-left: 0;
}
.user-links a:before {
  position: absolute;
  content: "\f101";
  font-family: "FontAwesome";
  font-size: 17px;
  font-weight: 300;
  color: #000;
  left: 0px;
  top: -4px;
  transition: all 500ms ease;
}
.user-links a:hover {
  color: var(--color-secondary);
}
.user-links a {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  padding-left: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #000;
  line-height: 30px;
}
.main-footer .footer-bottom {
  position: relative;
}
.main-footer .footer-bottom .copyright {
  position: relative;
  display: block;
  padding: 9px 0px 13px;

}

.main-footer .footer-bottom .copyright a {
 color: var(--color-secondary);
}
.footer_about p {
  margin-bottom: 5px;
  font-size: 15px;
}
.f-logo img {
  width: 425px;
  margin-bottom: 18px;
}
.main-footer .widget-title {
  position: relative;
  font-size: 27px;
  font-weight: 500;
  color: var(--color-teritary);
 
  margin-bottom: 7px;
  text-transform: uppercase;
  display: inline-block;
 
}


.main-footer .widget-title:after, .main-footer .widget-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 70px;
  height: 3px;
  background-color: var(--color-teritary);
  border-radius: 3px;
}

.main-footer .widget-title::after {
  left: 75px;
  width: 8px;

  background-color: var(--color-default);
}
.addr-row i {
  background: var(--color-primary);
  padding: 10px;
  border-radius: 32px;
  font-size: 20px;
  color: #fff;
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}
.mb-40 {
  margin-bottom: 0px;
}
.footer-widget iframe {
  border: 8px solid #f5f5f5;
  box-shadow: 0px 2px 10px #c5c5c5;
}
.addr-row .one {
  border: 2px solid var(--color-primary);
  padding: 15px;
  border-radius: 17px;
}
.subscribe-area {
  position: relative;
  z-index: 1;
  margin-bottom: 35px;
  margin-top: 25px;
}
.subscribe-inner {
  background-color: var(--color-default);
  -webkit-box-shadow: 0px 2px 10px #c5c5c5;
 
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0px 2px 10px #c5c5c5;
}
.subscribe-content h2 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}
.subscribe-content p {
  margin-bottom: 0;
  color: #f4f4f4;
}
.subscribe-form form {
  position: relative;
}
.subscribe-form form .input-newsletter {
  display: block;
  width: 100%;
  color: #130947;
  height: 45px;
  border-radius: 10px;
  border: none;
  background-color: #f4f4f4;
  padding-left: 20px;
  outline: 0;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  font-size: 16px;
  font-weight: 500;
}
.subscribe-form form .input-newsletter::-webkit-input-placeholder {
  color: #6d7a8c;
}
.subscribe-form form .input-newsletter:-ms-input-placeholder {
  color: #6d7a8c;
}
.subscribe-form form .input-newsletter::-ms-input-placeholder {
  color: #6d7a8c;
}
.subscribe-form form .input-newsletter::placeholder {
  color: #6d7a8c;
}
.subscribe-form form button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  height: 35px;
  line-height: 37px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-transform: uppercase;
  padding: 0 44px 0 15px;
  font-size: 14px;
  font-weight: 700;
}
.subscribe-form form button i {
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  display: inline-block;
  height: 29px;
  width: 30px;
  line-height: 28px;
  color: var(--color-secondary);
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.subscribe-form form button:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.subscribe-form #validator-newsletter {
  position: absolute;
  left: 0;
  bottom: -34px;
}
.usefull {
  text-align: center;
}
.useful-links {
  display: inline-block;
  padding: 12px 7px;
  margin-bottom: 5px;
  padding-bottom: 0px;
}
.useful-ul {
  text-align: center;
  margin: 0;
  padding: 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 10px 0px;
}
.useful-ul span {
  display: inline-block;
  text-transform: uppercase;
  color: var(--color-teritary);
  font-weight: 600;
  font-size: 20px;
}
.usefull .useful-ul li {
  display: inline-block;
}
.usefull .useful-ul li a {
  padding: 0 7px;
  border-right: 1px solid #818181;
  color: #000;
  font-size: 15px;
}
.usefull .useful-ul li:last-child a {
  border: none;
}
.usefull ul li a:hover {
  color: var(--color-secondary);
}
.add_bar_row1 .col-md-4:nth-child(1) {
  border-right: 1px dashed #000;
}
._addre_bar p {
  padding: 3px 0px;
  margin-bottom: 0px;
  font-size: 15px;
}
._addre_bar {
  padding-bottom: 5px;
  
  display: inline-block;
  padding-top: 5px;
}
.add_bar_row1 .col-md-12:nth-child(2) ._addre_bar {
  border-bottom: 0px;
}

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

.newletter_section {
  z-index: 1;
  position: relative;
  margin-bottom: 40px;
}
.subscribe-block {
  position: relative;
  padding: 25px 20px;
  background-color: var(--color-teritary);
}
.sub-title h2 {
  text-transform: uppercase;
  color: #fff;
  font-size: 33px;
}
.subscribe-input {
  position: relative;
  margin-top: 8px;
}
.sub-title p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}
.subscribe-input .form-control {
  height: 58px;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  color: var(--color-secondary);
}
.subscribe-input .form-control::placeholder {
  color: #6b6b6b;
}
.subscribe-input .btn {
  position: absolute;
  top: 5px;
  right: 6px;
  background: var(--color-secondary);
  border: none;
  border-radius: 0;
  padding: 12px 16px;
  color: #fff;
}

._addre_bar .fa{
  margin-right: 5px;
}

.copyright p{
  font-size: 15px;
  margin-bottom: 0px;
}


.con-box a{
  color: var(--color-default);
}