@import url("fontawesome-all.css");
@import url("flaticon.css");
@import url("owl.css");

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

:root {
  --color-default: rgb(34, 34, 34);
  --color-primary: #094371;
  --color-secondary: #15aabf;
}

body {
  font-size: 14px;
  color: #202020;
  line-height: 1.6em;
  font-weight: 400;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;

  color: var(--color-secondary);
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

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

textarea {
  overflow: hidden;
}

button {
  outline: none !important;
  cursor: pointer;
}

p,
.text {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

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

.page-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  opacity: 0.4;
  background-size: cover;
  z-index: -1;
  background-attachment: fixed;
  background-image: url(../imgs/hexa-3.jpeg);
}

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

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

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

/*** 

====================================================================
	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: 100;
  cursor: pointer;
  background: var(--color-secondary);
  display: none;
  border-radius: 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;
}

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

/*** 

====================================================================
	Main Header style
====================================================================

***/

.main-header {
  position: absolute;
  z-index: 999;
  vertical-align: middle;
  width: 100%;
}

.main-header .header-top {
  position: absolute;
  text-align: right;
  right: 0;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  margin-top: 19px;
}

.main-header .auto-container {
  max-width: 1161px;
}

/*=== Header Upper ===*/

.main-header .header-upper {
  position: relative;
  text-align: right;
  margin-top: 27px;
}

.main-header .header-upper .logo-outer {
  position: absolute;
  text-align: center;
  z-index: 999;
  width: 244px;
  top: 0;
  padding: 0 7px;
  left: 27px;
}

.main-header .header-upper .logo-outer:before {
  position: absolute;
  right: 100%;
  top: 0;
  content: "";
}

.main-header .header-upper .logo:before {
  right: -37px;
  margin: auto;
  content: "";
  position: absolute;
}

.main-header .header-upper .logo img {
  position: relative;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.main-header .nav-outer {
  position: relative;
  display: inline-block;
  margin: auto;
  padding: 7px 0px 0 0px;
  border-radius: 0px 30px 30px 0px;
}

.appointment {
  position: relative;
  background: transparent;
  padding: 0;
  margin-top: 19px;
  display: inline-block;
  border: 2px solid var(--color-secondary);
  border-radius: 32px;
  padding: 7px 18px;
  cursor: pointer;
}

.appointment span {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color-default);
}

.appointment:hover {
  color: #fff;
}

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

.main-menu {
  position: relative;
  margin: 36px 0 0;
}

.main-menu .navbar-collapse {
  padding: 0px;
}

.main-menu .navigation {
  position: relative;
  margin: 0px;
  left: 0;
}

.main-menu .navigation > li {
  position: relative;
  display: inline-block;
  padding: 9px 13px;
  margin-left: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation > li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  right: 0;
  transform: rotate(-18deg);
  top: 17px;
}

.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  opacity: 1;
  padding: 0 0;
  color: #000;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.navigation .dropdown .cstmwidth {
  width: 145px;
}

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

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

.main-menu .navigation > li.current > a {
  font-weight: 700;
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 280px;
  z-index: 100;
  display: none;
  opacity: 0;
  visibility: hidden;
  padding: 0px 0px;
  background-color: #ffffff;
  border-top: 3px solid var(--color-secondary);
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-box-shadow:
    2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow:
    2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow:
    2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow:
    2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow:
    2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.main-menu .navigation > li > ul > li > ul > li:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 0%;
  height: 100%;
  display: block;
  background: var(--color-primary);
}

.main-menu .navigation > li > ul > li > ul > li:hover:before {
  width: 100%;
  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:hover a {
  color: #fff;
}

.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 280px;
  top: -10%;
  width: 280px;
  z-index: 100;
  display: none;
  opacity: 0;
  visibility: hidden;
  padding: 0px 0px;
  background-color: #ffffff;
  border-top: 3px solid var(--color-secondary);
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-box-shadow:
    2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow:
    2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow:
    2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow:
    2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow:
    2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

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

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

.main-menu .navigation > li > ul > li::before {
  display: none;
}

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

.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  -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 {
  visibility: visible;
  opacity: 1;
  -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.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 30px;
  border: 1px solid #ffffff;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
  display: none;
}

/*** 

====================================================================
			Mobile Menu
====================================================================

***/

.nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 30px;
  line-height: 41px;
  cursor: pointer;
  color: var(--color-secondary);
  display: none;
}

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

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

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

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

.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(37, 189, 216, 0.8);
  -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;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  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 .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #003472;
  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;
  right: 10px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  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 {
  color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

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

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

.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;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  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 ul li > a {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.mobile-menu .navigation li > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 5px solid #ff4788;
  -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,
.mobile-menu .navigation li > a:hover {
  color: #ff4788;
}

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

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  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 {
  background: #ff4788;
  -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;
}

.top-border {
  position: relative;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, transparent, var(--color-primary), var(--color-secondary), var(--color-primary), transparent);
  top: 0;
}

/*** 

====================================================================
		Section Title
====================================================================

***/

.section_title_text {
  position: relative;
  z-index: 1;
  /* margin-bottom: 25px; */
}

.section_title_text h2 {
  font-size: 28px;
  display: inline-block;
  color: var(--color-default);
  font-weight: 400;
}

.section_title_text h1 {
  color: var(--color-primary);
  font-weight: 400;
  margin-bottom: 0;
  text-transform: none;
  font-size: 50px;
}

.section_title_text h3 {
  color: var(--color-default);
  margin-bottom: 16px;
  font-size: 33px;
  font-weight: 400;
}

.section_title_text h3 {
  text-transform: capitalize;
  font-weight: 400;
  color: var(--color-secondary);
  font-size: 37px;
}

.section_title_text p {
  color: var(--color-default);
  margin-bottom: 16px;
  font-size: 15px;
}

/*** 

====================================================================
		Banner Section
====================================================================

***/

.banner-section {
  position: relative;
}

.banner-section:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 23px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  z-index: 9;
}

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

.slide1 {
  background-image: url(../imgs/new-banners/banner-one.jpg);
}

.slide2 {
  background-image: url(../imgs/new-banners/banner-two.jpg);
}

.slide3 {
  background-image: url(../imgs/new-banners/banner-three.jpg);
}

.slide4 {
  background-image: url(../imgs/new-banners/banner-four.jpg);
}

/* ABOUT SECTION */

.about_section {
  position: relative;
  padding: 49px 0px 0px;
  margin-bottom: 65px;
}

.about_section p {
  margin-bottom: 20px;
  font-size: 15px;
  text-align: center;
}

.about_section span {
  color: var(--color-primary);
}

.about_section a {
  color: var(--color-primary);
  font-size: 500;
}

.servrow {
  padding-top: 45px;
}

/* DEPARTMENTS */

.treatment-section {
  position: relative;
  padding: 65px 0px 45px;
  background: linear-gradient(to top, var(--color-default));
}

.treatment-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 50% 100%, 0 70%);
  /* background-color:rgb(0 0 0 / 84%); */
  background: linear-gradient(to right, var(--color-primary), #094371d9, var(--color-secondary));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.treatment-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 50% 100%, 0 70%);
  background-image: url(../imgs/bg-overlayy.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  background-attachment: fixed;
}

.treatment-section .section_title_text h4 {
  text-transform: capitalize;
  font-weight: 400;
  color: #fff;
  font-size: 45px;
}

.treatment-section .section_title_text h2 {
  color: #fff;
}

.box {
  background: #394146;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.box:before {
  content: "";
  background: #000000;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  transform: translateY(150%);
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.box:hover:before {
  transform: translateY(0);
}

.box img {
  width: 100%;
  height: auto;
  transition: all 0.45s ease-in-out;
}

.box:hover img {
  opacity: 0.3;
}

.box-content {
  color: #fff;
  background: #15a9bebf;
  width: 85%;
  padding: 15px 5px;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: -50%;
  left: 50%;
  z-index: 2;
  transition: all 0.6s ease;
}

.box:hover .box-content {
  top: 50%;
}

.box .title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 2px;
}

.box .post {
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0 0 12px;
  display: block;
}

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

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

.box .icon li a {
  color: #581a14;
  background: #fff;
  font-size: 15px;
  line-height: 33px;
  width: 34px;
  height: 34px;
  display: block;
  position: relative;
  transition: all 0.35s;
}

.box .icon li a:hover {
  color: #fff;
  background: #842f28;
  border-radius: 50px;
}

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

/* 
========================================
appointment-section
======================================== 
*/
.appointment-section {
  position: relative;
  margin-top: 60px;
  margin-bottom: 80px;
}

.appointment-section .container {
  background: #394146;
  /* background: #098185; */
  box-shadow: 0px 0px 5px #8b8b8b;
}

.appointment-section .container::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/appointment-removebg-preview.png);
  background-repeat: no-repeat;
  right: -54%;
  opacity: 0.1;
  filter: brightness(0) invert(1);
}

.appointment-form {
  text-align: center;
  padding: 40px 51px;
  color: #000;
  position: relative;
  z-index: 999;
  border-radius: 49px;
  /* top: -20px; */
  left: -22px;
}

.appointment-form .select-items {
  color: #000;
}

.appointment-form .form-control {
  border: none;
  background-color: transparent;
  border-bottom: 1px dotted #000000;
  border-radius: 0px;
}

.appointment-form h2 {
  color: #ffffff;
}

.appointment-form p {
  color: #ffffff;
  margin-bottom: 10px;
}

.appointment-form .theme-btn {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 27px;
  color: #000;
  padding: 6px 16px;
  font-weight: 600;
  overflow: hidden;
  border-radius: 5px;
  background-color: #e8e5e5;
}

.text-bottom {
  padding-top: 36px;
  padding-bottom: 25px;
}

.text-bottom .service_txt_bottom h4 {
  display: inline-block;
  padding: 14px 21px;
  color: #737373;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 36px;
  margin: 0;
  border-top: 2px solid #737373;
  border-bottom: 2px solid #737373;
  border-radius: 10px;
}

/*
======================================
* 9. feature style
======================================
*/

.feature-one {
  padding: 0px 0 62px;
}

.feature-one__box {
  margin-bottom: 20px;
}

.feature-one__box-title {
  margin: 0;
  color: #f9fafd;
  font-size: 32px;
  line-height: 47px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 37px;
}

.feature-one__single {
  background-color: transparent;
  transition: all 0.4s ease;
  border-bottom: 1px dashed;
  padding: 0 20px 15px;
  margin-bottom: 15px;
  position: relative;
}

.feature-one__single::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #333;
  right: 0;
  border-radius: 50%;
  top: 4px;
}

.why-sec-2 .feature-one__single::before {
  left: 0px;
  right: 0px;
}

.whyrow .col-md-4 .feature-one__single:last-child {
  border-bottom: 0px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-one__icon i {
  font-size: 50px;
}

.feature-one__content {
  position: relative;
}

.feature-one__title {
  font-size: 19px;
  margin: 0;
}

.why-conatiner {
  position: relative;
}

.why-image img {
  width: 550px;
}

.whyrow .col-md-3 {
  background: linear-gradient(to right, #085ea147, transparent);
  padding: 36px 19px;
  border-radius: 35px;
}

.whyrow .col-md-3:nth-child(2) {
  background: none;
  padding: 0;
}

.whyrow .col-md-3:nth-child(3) {
  background: linear-gradient(to left, #15aabf96, transparent);
  text-align: right;
}

.whyrow .col-md-3:nth-child(1) {
  text-align: left;
}

.feature-one__title a {
  color: #181e44;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.feature-one__title a:hover {
  color: #eb4343;
}

.feature-one__text {
  margin: 0;
  color: #898989;
  font-size: 15px;
  line-height: 24px;
  margin-top: 15px;
}

.wcu-section {
  position: relative;
  padding: 45px 0px 20px;
}

.wcu-section .section_title_text {
  margin-bottom: 0px;
}

.feature-one {
  margin-top: 10px;
  padding-top: 55px;
}

.service_icon_abv {
  position: absolute;
  top: 11px;
  left: 40px;
  font-size: 26px;
  width: 40px;
  height: 40px;

  position: absolute;
  border-radius: 50%;

  padding: 10px;
  color: #fff;
  background: var(--color-primary);
}

.service_icon_btm {
  position: absolute;
  bottom: 11px;
  right: 40px;
  font-size: 26px;
  width: 40px;
  height: 40px;

  position: absolute;
  border-radius: 50%;

  padding: 10px;
  color: #fff;
  background: var(--color-primary);
}

.faqs {
  margin-bottom: 80px;
}

.our-team {
  overflow: hidden;
  position: relative;
}

.our-team:hover:after {
  top: 0;
  opacity: 1;
}

.our-team img {
  width: 100%;
  height: auto;
}

.doc-slider {
  padding-top: 20px;
}

.our-team .team-content {
  width: 100%;
  padding: 6px 0px;
  /* background: #fff;
  border-bottom: 3px solid var(--color-secondary); */
  text-transform: uppercase;
  position: relative;
  left: 0;
  text-align: center;
  z-index: 1;
}

.our-team .team-content:before {
  content: "";
  width: 100%;
  border-right: 420px solid #fff;
  /* border-top: 60px solid transparent; */
  position: absolute;
  top: -60px;
  left: 0;
}

.our-team .team-content a {
  background: var(--color-secondary);
  color: #fff;
  padding: 3px 5px;
}

.our-team img {
  box-shadow: 0px 0px 5px #8b8b8b;
  border: 9px solid #efeeee;
}

.our-team:hover .team-content:before {
  border-right-color: #f9f9f9;
}

.our-team .team-content:after {
  content: "";
  width: 3px;
  height: 50%;
  /* background: #8cbf48; */
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.our-team .title {
  font-size: 29px;
  color: #333;
  margin: 0;
  font-weight: 600;
}

.our-team .post {
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: #4a4a4a;
  margin-top: 3px;
  margin-bottom: 4px;
}

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

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

.doc-slider .owl-dot {
  position: relative;
  display: inline-block;
  height: 21px;
  width: 21px;
  border: 3px solid var(--color-primary);
  opacity: 1;
  margin: 0 2px;
  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;
  background: #fff;
}

.doc-slider .owl-dot:hover,
.doc-slider .owl-dot.active {
  opacity: 1;
  border: 3px solid var(--color-secondary);
}

.feedback-sec {
  margin-bottom: 100px;
  position: relative;
  padding-bottom: 55px;
  padding-top: 12px;
  color: #fff;
  margin-top: 10px;
}

.testimonial-carousel {
  padding-top: 10px;
}

.feedback-sec .col-md-6 {
  padding-right: 0px;
  padding-left: 0px;
}

.feed-backs-col {
  padding-top: 82px;
  padding-bottom: 78px;
  position: relative;
  width: 90%;
  right: -180px;
}

.feedback-sec .sec-title h1 {
  color: #fff;
}

.feedback-sec::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0px;
  background-position: center;
  background: linear-gradient(to right, var(--color-primary), #094371bd, var(--color-primary), var(--color-primary), var(--color-secondary));
  height: 100%;

  top: 0px;
  opacity: 0.9;
  background-size: cover;
}

.feedback-sec::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/feedbacks.webp);
  top: 0px;
  z-index: -1;
  background-repeat: no-repeat;
  left: 64px;
  background-size: contain;
}

.gg_review {
  position: absolute;
  right: 34%;
  line-height: 50px;
  text-align: center;
  width: 275px;
  opacity: 0.1;
  padding: 11px 9px;
  border-radius: 5px;
  bottom: 82px;
}

.gg_review i {
  display: inline-block;
  border-radius: 50%;
  font-size: 125px;
  line-height: 48px;
  margin: 0 0 7px;
  color: #fff;
}

.ratings {
  position: relative;
  color: #fff;
  font-size: 43px;
}

.feed-backs-col .sec-title {
  position: relative;
  padding-bottom: 50px;
}

.add img {
  border-radius: 5px;
  box-shadow: 0 0 10px;
  border: 5px solid #fff;
}

.appointment-section::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 67%;
  top: 104px;
  /* background: #394146; */
  transform: skew(0deg, 6deg);
}

.add {
  top: -10px;
  position: relative;
  left: 47px;
}

.mobile-view {
  display: none;
}

.blogs-section {
  margin-top: 82px;
  margin-bottom: 75px;
  position: relative;
}

.blogs-section .row {
  padding-top: 40px;
}

.date-loaction span {
  color: #d84a4a;
  margin-right: 8px;
  padding-right: 9px;
}

.date {
  position: absolute;
  bottom: 43px;
  background: rgb(249, 221, 85);
  color: #071f25;
  padding: 8px 13px;
}

.date p {
  color: #071f25;
}

.team-row {
  position: relative;
  top: -46px;
}

.logins_section {
  display: none;
}

.logins_section a {
  display: inline-block;
  color: #fff;
  padding: 5px 16px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 8px;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
}

.appoint-side {
  color: #fff;
  position: relative;
  padding: 85px 0px 1px 30px;
  text-align: left;
}

.appoint-side h3 {
  margin-bottom: 11px;
  font-size: 35px;
  font-weight: 100;
  line-height: 44px;
}

.appoint-side p {
  font-size: 15px;
  line-height: 31px;
  padding-top: 31px;
}

.eme-number {
  color: #333333;
  display: inline-flex;
  padding: 23px 26px;
  font-size: 26px;
  background-color: #e8e5e5;
  margin-top: 31px;
  box-shadow: 0 39px 18px -9px #0c0c0c;
  border-radius: 8px;
}

.eme-number a {
  color: #fffffe;
  background-color: #333333;
  padding: 8px 8px;
  position: relative;
  top: -5px;
  left: 8px;
  font-size: 21px;
}

/** subscribe-section **/

.subscribe-section {
  position: relative;
  display: block;
}

.subscribe-section h2 {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  text-transform: unset;
  color: #fff;
  margin-bottom: 30px;
  padding-right: 50px;
}

.subscribe-section .left-content {
  position: relative;
  display: block;
  text-align: end;
  padding: 0px 20px 0px 0px;
}

.subscribe-section .left-content .theme-btn {
  padding: 17px 40px;
}

.subscribe-section .right-content {
  position: relative;
  display: block;
  max-width: 490px;
  width: 100%;
  margin: 0 auto;
}

.subscribe-section .right-content h2 {
  color: #000000;
}

.subscribe-section .right-content .form-group {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 0px;
}

.subscribe-section .right-content .form-group input[type="email"] {
  position: relative;
  display: block;
  max-width: 290px;
  width: 100%;
  height: 60px;
  background: #f5f5f5;
  border: 1px solid#5a5a5a;
  color: #000000;
  font-size: 15px;
  padding: 10px 35px;
  border-radius: 30px;
  transition: all 500ms ease;
}

.subscribe-section .right-content .form-group input:focus {
  border-color: #000;
}

.subscribe-section .right-content input::-webkit-input-placeholder {
  color: #000000;
}

.subscribe-section .right-content .form-group button {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 15px;
  padding: 5px 12px;
  background: #000;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
  border-radius: 30px;
  text-transform: capitalize;
  transition: all 500ms ease;
  cursor: pointer;
  text-align: center;
  z-index: 1;
}

.main-footer .col-md-6 {
  padding-left: 0px;
}

.subscribe-section .right-content .form-group button:hover {
  background: #000;
  color: #fff;
}

.subscribe-section .scroll-btn {
  position: absolute;
  left: 50%;
  margin-left: -25px;
  bottom: -29px;
  z-index: 99;
}

.subscribe-section .scroll-btn i {
  position: relative;
  display: inline-block;
  height: 57px;
  width: 57px;
  line-height: 57px;
  background: #6ecc84;
  text-align: center;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  cursor: pointer;
  transition: all 2s ease;
  -webkit-animation: pulse-2 3s infinite;
  -o-animation: pulse-2 3s infinite;
  animation: pulse-2 3s infinite;
  z-index: 99;
}

.theme-btn:hover {
  color: #fff;
}

.theme-btn {
  position: relative;
  display: inline-block;
  font-size: 20px;
  padding: 8px 21px;
  background: var(--color-secondary);
  line-height: 26px;
  color: #fff;
  font-weight: 500;
  border-radius: 30px;
  text-transform: capitalize;
  transition: all 500ms ease;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

/** main-footer **/

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

.main-footer .footer-top {
  position: relative;
  display: block;
  /* background: #222224; */
  background: transparent;
  padding: 0px 0px 10px 0px;
}

.main-footer .footer-top .logo-widget {
  position: relative;
  display: block;
  margin-top: -7px;
}

.main-footer .footer-top .logo-widget .footer-logo {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.main-footer .footer-top .logo-widget p {
  position: relative;
  display: block;
  /* color: #cececf; */
  color: #000;
  margin-bottom: 28px;
  line-height: 27px;
  font-size: 16px;
}

.main-footer .footer-top .logo-widget .theme-btn {
  padding: 12px 39px;
}

.main-footer .footer-top .widget-title {
  position: relative;
  display: block;
  font-size: 23px;
  line-height: 32px;
  font-weight: 500;
  /* color: #fff; */
  color: #000000;
  margin-bottom: 20px;
  border-bottom: 2px solid;
  display: inline-block;
}

.main-footer .footer-top .links-widget .widget-content ul li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.main-footer .footer-top .links-widget .widget-content ul li:last-child {
  margin-bottom: 0px;
}

.main-footer .footer-top .links-widget .widget-content ul li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  /* font-weight: 500; */
  color: #000000;
  padding: 0px 0px 0px 15px;
}

.main-footer .footer-top .links-widget .widget-content ul li a:before {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-size: 15px;
  font-weight: 700;
  /* color: #cececf; */
  color: #000000;
  left: 0px;
  top: 1px;
  transition: all 500ms ease;
}

.main-footer .footer-top .contact-widget .widget-content .text {
  position: relative;
  display: block;
  /* color: #cececf; */
  color: #000;
  margin-bottom: 15px;
}

.main-footer .footer-top .contact-widget .widget-content .info-list li {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 30px;
  /* color: #cececf; */
  color: #000000;
  border-bottom: 1px solid;
  margin-bottom: 11px;
  /* font-weight: 500; */
  padding-bottom: 14px;
}

.main-footer .footer-top .contact-widget .widget-content .info-list li:last-child {
  margin-bottom: 0px;
}

.main-footer .footer-top .logo-widget img {
  width: 238px;
  /* background: #fff; */
  position: relative;
  z-index: 999;
  /* margin-bottom: 10px; */
  /* top: -22px; */
  padding: 39px 0px 17px;
}

.main-footer .footer-top .contact-widget .widget-content .info-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #000000;
}

.main-footer .footer-top .contact-widget .widget-title {
  margin-bottom: 17px;
}

/** footer-bottom **/

.main-footer .footer-bottom {
  position: relative;
  display: block;
  /* background: #394146; */
  padding: 13px 0px 12px 0px;
}

.main-footer .footer-bottom::before {
  content: " ";
  width: 100%;
  height: 114%;
  position: absolute;
  top: -13px;
}

.main-footer .footer-bottom .left-content .copyright {
  position: relative;
  display: block;
  color: #000000;
  border-top: 1px solid #ccc;
  margin-top: 8px;
  font-size: 16px;
  padding-top: 17px;
}

.main-footer .footer-bottom .right-content .footer-nav {
  position: relative;
  display: inline-block;
  margin-right: 230px;
  top: -2px;
}

.main-footer .footer-bottom .right-content .footer-social {
  position: relative;
  display: inline-block;
}

.main-footer .footer-bottom .right-content .footer-nav li {
  position: relative;
  display: inline-block;
  margin: 0px 10px;
}

.main-footer .footer-bottom .right-content .footer-nav li:before {
  position: absolute;
  content: "";
  background: #b5b5b8;
  width: 1px;
  height: 14px;
  top: 8px;
  right: -12px;
}

.main-footer .footer-bottom .right-content .footer-nav li:last-child:before {
  display: none;
}

.main-footer .footer-bottom .right-content .footer-nav li a {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.copyright a {
  color: var(--color-secondary);
}

.footer-social li {
  position: relative;
  display: inline-block;
  margin-left: 7px;
}

.footer-social li:first-child {
  margin-left: 0px;
}

.footer-social li a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px dashed;
  line-height: 40px;
  font-size: 21px;
  color: #000;
  border-radius: 50%;
  text-align: center;
}

.doc-section {
  margin-top: 60px;
}

.team-beside::before {
  position: absolute;
  content: " ";
  width: 93%;
  top: 40px;
  left: 9px;
  height: 2px;
  background: #ccc;
}

.team-beside::after {
  position: absolute;
  content: " ";
  width: 2px;
  top: 13px;
  height: 83%;
  background: #ccc;
  left: 40px;
}

.team-beside-content {
  padding-top: 79px;
  padding-left: 44px;
  text-align: center;
  position: relative;
  left: -38px;
}

.team-beside-content h3 {
  margin-bottom: 12px;
  line-height: 34px;
}

.team-beside-content h4 {
  margin-bottom: 15px;
  font-size: 20px;
}

.team-beside-content a {
  background: var(--color-primary);
  padding: 5px 10px;
  font-size: 19px;
  color: #fff;
}

.team-beside-content .why-icon a {
  background: none;
}

.doc-section .container {
  max-width: 1200px;
}

.mvv-list {
  margin-bottom: 105px;
}

.footer-socila {
  display: block;
  margin: auto;
  position: relative;
  border-radius: 39px;
}

.footer-socila ul {
  list-style: none;
  position: relative;
  padding-top: 25px;
}

.footer-socila span {
  color: #000;
  font-size: 19px;
  font-weight: 600;
  display: inline-block;
  margin: 0 10px 0 0;
}

.footer-socila ul li {
  margin: 0;
  display: inline-block;
}

.footer-socila ul li a {
  display: block;
  width: 36px;
  height: 36px;
  text-align: center;
  color: #4c91d8;
  line-height: 33px;
  background-color: transparent;
  border: 1px solid;
  border-radius: 50%;
  font-size: 16px;
  margin: 0 2px;
}

.footer-socila ul li:nth-child(2) a {
  color: #4c91d8;
}

.footer-socila ul li:nth-child(3) a {
  color: #e81f1f;
}

.footer-socila ul li:nth-child(4) a {
  color: #1fa5ce;
}

.footer-socila ul li:nth-child(5) a {
  color: #014388;
}

.footer-socila ul li a i {
  transition: all ease-in-out 0.4s;
}

.footer-socila ul li a:hover i {
  transform: rotate(360deg);
}

.c-map img {
  padding: 5px;
  border: 2px dashed #8c8c8c;
}

.asahcmaab {
  background: var(--color-primary);
  text-align: center;
  padding: 50px 0;
  position: relative;
  /* top: 246px; */
  z-index: 1;
  width: 100%;
}

.asahcmaab h2 {
  color: #ffffff;
  font-size: 39px;
  font-weight: 400;
  text-transform: uppercase;
}

.asahcmaab p {
  font-size: 27px;
  font-weight: 400;
  margin-top: 0;
  display: inline-block;
  color: #ffffff;
}

.address_left {
  position: relative;
  top: 5px;
  right: 0px;
  border-radius: 30px 0px 0px 30px;
  padding: 0 17px 0 0;
  z-index: 9;
  /* width: 149%; */
}

.address_left::before {
  content: " ";
  position: absolute;
  width: 93%;
  left: -99%;
  height: 2px;
  background: var(--color-primary);
  top: 24px;
}

.address_left ul li {
  display: inline-block;
  padding: 4px 0px;
  margin-right: 0px;
  color: #000;
  font-size: 15px;
}

.address_left ul li a {
  color: #000;
}

.address_left ul li:last-child {
  border: none;
}

.address_left ul li i {
  width: 37px;
  height: 37px;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  color: #ffffff;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  margin-right: 6px;
  border: 2px solid;
  font-size: 20px;
}

.our-team h4 {
  text-transform: capitalize;
  font-size: 20px;
  margin-bottom: 10px;
}

.blogs-section .single-blog {
  text-align: center;
  background: #fff;
  padding: 15px;
  transition: 0.5s;

  box-shadow: 0 0px 8px rgb(0 0 0 / 38%);
}

.blogs-section .single-blog .content p {
  padding: 0 20px;
  font-size: 15px;
  margin-bottom: 0px;
}

.blogs-section .single-blog {
  padding: 15px;
  background: #fff;
}

.blogs-section .single-blog .blog-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.blogs-section .single-blog .blog-image:hover img {
  transform: scale(1.2);
  transition: 0.3s;
}

.blogs-section .single-blog .blog-image:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(30%, rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 30%, transparent 100%);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 30%, transparent 100%);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 30%, transparent 100%);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.blogs-section .single-blog .blog-image img {
  width: 100%;
  transition: 0.3s;
}

.blogs-section .single-blog .blog-image .date {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 20px;
  width: 95px;
  height: 80px;
  line-height: 61px;
  text-align: center;
  background: var(--color-secondary);
  color: #fff;
  z-index: 3;
}

.blogs-section .single-blog .meta-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blogs-section .single-blog .meta-info ul li {
  display: inline-block;
  margin-right: 15px;
}

.blogs-section .single-blog .meta-info ul li i {
  margin-right: 10px;
}

.blogs-section .single-blog .content h3 a {
  color: #000;
  font-size: 20px;
  transition: 0.3s;
  margin-bottom: 30px;
}

.blogs-section .single-blog .content h3 a:hover {
  color: #e11d22;
}

.blogs-section .single-blog .content .read-more a {
  color: #fff;
  font-size: 19px;
  transition: 0.3s;
  margin-bottom: 10px;
  font-weight: 600;
  background: var(--color-primary);
  padding: 2px 10px;
  margin-top: 10px;
  display: inline-block;
}

.blogs-section .single-blog .content .read-more a:hover {
  color: #e11d22;
}

.mvv-list .serviceBox {
  text-align: center;
  padding: 12px 20px 35px;
  position: relative;
  z-index: 1;
}

.mvv-list .serviceBox:before {
  content: "";
  background-color: #fff;
  border-radius: 20px;
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.5),
    0 20px 0 var(--color1);
  position: absolute;
  left: 0;
  top: 53px;
  right: 0;
  bottom: 20px;
  z-index: -1;
}

.mvv-list .serviceBox .service-icon {
  background: #fff;
  font-size: 35px;
  line-height: 80px;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  position: relative;
}

.mvv-list .serviceBox .service-icon:before {
  content: "";
  background: linear-gradient(to top, transparent 49%, var(--color1) 50%);
  border-radius: 50%;
  position: absolute;
  top: -12px;
  left: -12px;
  bottom: -12px;
  right: -12px;
  z-index: -1;
}

.mvv-list .serviceBox .service-icon:after {
  height: 12px;
  width: 150px;
  border-radius: 0;
  transform: translateX(-50%);
  top: 29px;
  left: 50%;
  right: auto;
  bottom: auto;
  z-index: -2;
}

.mvv-list .serviceBox .title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.mvv-list .serviceBox .description {
  color: #666;
  font-size: 17px;
  line-height: 23px;
}

.mvv-list .serviceBox .description a {
  color: var(--color-primary);
}

.mvv-list .serviceBox.blue {
  --color1: var(--color-primary);
  --color2: var(--color-primary);
}

.mvv-list .serviceBox.yellow {
  --color1: var(--color-secondary);
  --color2: var(--color-secondary);
}

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

.mvv-list .serviceBox .service-icon img {
  padding: 15px;
}

.top-bottom-info .info-list {
  position: fixed;
  display: inline-block;
  top: 48%;
  right: 0;
  z-index: 99;
  width: auto;
}

.inner-social {
  display: none;
}

.top-bottom-info .info-list li {
  position: absolute;
  right: -305px;
  display: inline-block;
  font-size: 17px;
  line-height: 21px;
  background: #dee2e6;
  color: #ffffff;
  font-weight: 600;
  padding: 11px 4px 11px 48px;
  margin-right: 8px;
  border-radius: 10px 0px 0px 10px;
  width: 338px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all ease-in-out 0.8s;
}

.top-bottom-info .info-list li:nth-child(1) {
  top: -48px;
}

.top-bottom-info .info-list li:nth-child(3) {
  top: -96px;
}

.top-bottom-info .info-list li:hover {
  right: -30px;
}

.top-bottom-info .info-list li a {
  display: inline-block;
  color: #000;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.top-bottom-info .info-list li a:hover {
  color: #000;
}

.top-bottom-info .info-list li span .fa-phone {
  font-size: 27px;
}

.top-bottom-info .info-list li span {
  position: absolute;
  left: 0px;
  margin-right: 10px;
  display: inline-block;
  width: 42px;
  height: 43px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-size: 24px;
  line-height: 43px;
  border-radius: 10px 0px 0px 10px;
  text-align: center;
  top: 0px;
}

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

.main-timeline .timeline {
  width: 43%;
  padding: 0 80px 0 0;
  margin: 0 5px 0 0;
  float: left;
}

.main-timeline .timeline-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: block;
  position: relative;
}

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

.main-timeline .timeline-icon {
  color: #000;
  background-color: var(--color-secondary);
  font-size: 40px;
  text-align: center;
  line-height: 110px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
  position: absolute;
  right: -135px;
  top: 50%;
}

.main-timeline {
  padding-top: 20px;
}

.main-timeline .timeline-icon:before {
  content: "";
  height: 60%;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  border: 2px solid var(--color-primary);
  border-bottom: none;
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
}

.main-timeline .title {
  color: #000;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0 0 7px;
}

.main-timeline .description {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 1px;
  margin: 0;
}

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

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

.main-timeline .timeline:nth-child(4n + 2) .timeline-icon,
.main-timeline .timeline:nth-child(4n + 2) .timeline-icon:before,
.main-timeline .timeline:nth-child(4n + 2) .title {
  color: #000;
  border-color: var(--color-primary);
}

@media screen and (max-width: 767px) {
  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    width: 100%;
    padding: 0 0 0 140px;
    margin: 0 0 30px;
  }

  .main-timeline .timeline-icon,
  .main-timeline .timeline:nth-child(even) .timeline-icon {
    left: -130px;
    right: auto;
  }
}

@media screen and (max-width: 479px) {
  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    padding: 140px 0 0;
  }

  .main-timeline .timeline-content {
    text-align: center;
  }

  .main-timeline .timeline-icon,
  .main-timeline .timeline:nth-child(even) .timeline-icon {
    transform: translateY(0) translateX(-50%);
    top: -130px;
    left: 50%;
  }
}

.main-timeline .timeline-icon img {
  width: 78px;
  filter: brightness(0) invert(1);
}

.why-block .why-icon img {
  width: 72px;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease-in-out;
}

.why-block .why-icon img:hover {
  transform: rotate(45deg);
}

.why-block {
  padding: 9px 32px 9px 25px;
  border: 1px dashed;
  margin-bottom: 24px;
  background: #394146;
  border-radius: 14px;
}

.team-beside .col-md-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 25.666667%;
  max-width: 25.666667%;
}

.serviceBox1 {
  color: #fff;
  text-align: center;
  padding: 35px 28px 25px;
  position: relative;
  z-index: 1;
}

.serviceBox1:before,
.serviceBox1:after {
  content: "";
  border-radius: 25px;
  border: 10px solid #fff;
  clip-path: polygon(65% 0, 100% 0, 100% 35%, 35% 100%, 0 100%, 0 65%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.serviceBox1:after {
  border-width: 3px;
  clip-path: polygon(0 0, 60% 0, 55% 5%, 96% 44%, 100% 40%, 100% 100%, 40% 100%, 43% 95%, 5% 55%, 0 60%);
  top: 3px;
  bottom: 3px;
  right: 3px;
  left: 3px;
}

.serviceBox1 .service-icon1 {
  font-size: 40px;
  margin: 0 0 10px;
}

.serviceBox1 .title1 {
  font-size: 28px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0 0 10px;
}

.serviceBox1 .description1 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 22px;
}

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

.breadcrumb-outer {
  padding-top: 148px;
}

.breadcrumb {
  background-color: #15aabf;
  text-align: center;
  color: #fff;
  padding: 35px 0px;
}

.breadcrumb a {
  color: #fff;
  font-size: 18px;
}

.breadcrumb span {
  color: #fff;
  font-size: 18px;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb h1 {
  text-transform: none;
  font-size: 35px;
  font-weight: 400;
}

.breadcrumb h2 {
  font-size: 19px;
  padding-top: 10px;
}

.breadcrumb ol,
.breadcrumb li {
  display: inline-flex;
}

.breadcrumb ol {
  padding: 8px 0px;
}

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

.main-menu .navigation > li > ul > li > a i {
  right: 20px;
  position: absolute;
}

.contact_form {
  /* border: 6px solid #f5f5f5; */
  /* background: #fff; */
  padding: 20px 34px 10px;
  /* border-radius: 52px; */
  text-align: center;
}

.contact-box::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 200px;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: 0px;
  box-shadow: 0px 0px 55px #0c0c0c;
  z-index: -1;
}

.contact-box .btn {
  color: #fff;
  background: var(--color-secondary);
  border: var(--color-secondary);
}

.contact-box {
  background: #eee9e9;
  padding: 25px 0px;
  position: relative;
}

.contact_form h4 {
  margin-bottom: 21px;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  display: inline-block;
}

.cmap {
  text-align: center;
}

.cmap iframe {
  border: 5px solid #fff;
  box-shadow: 0px 0px 10px #9f9f9f;
}

.cmap h4 {
  margin-bottom: 21px;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  display: inline-block;
}

.cmap img {
  box-shadow: 0px 0px 10px #9f9f9f;
}

.main-timeline2 {
  overflow: hidden;
  position: relative;
}

.main-timeline2:before {
  content: "";
  width: 10px;
  height: 100%;
  background: #fff;
  border-radius: 25px;
  border: 1px solid #505050;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.main-timeline2 .timeline2 {
  width: 50%;
  padding: 0 20px 0 50px;
  margin-left: 5px;
  float: right;
  position: relative;
}

.main-timeline2 .timeline2:before,
.main-timeline2 .timeline2:after {
  content: "";
  display: block;
  position: absolute;
}

.main-timeline2 .timeline2:before {
  background-color: #094371;
  height: 25px;
  width: 25px;
  border: 2px solid #fff;
  box-shadow: 0 0 1px 2px #808080;
  border-radius: 50%;
  transform: translateY(-50%);
  left: -13px;
  top: 50%;
}

.main-timeline2 .timeline2:after {
  background-color: #15aabf;
  height: 100%;
  width: 22px;
  border: 3px solid #15aabf;
  border-radius: 0 5px 5px 0;
  right: 0;
  top: 0;
}

.main-timeline2 .timeline-content2 {
  color: #909090;
  background-color: #fff;
  min-height: 147px;
  padding: 15px 25px 15px 160px;
  border-radius: 80px 0 0 70px;
  display: block;
  position: relative;
}

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

.main-timeline2 .timeline-content2:before {
  content: "";
  transform: translateY(-50%);
  border: 11px solid transparent;
  border-right: 20px solid #15aabf;
  position: absolute;
  left: -40px;
  top: 50%;
}

.main-timeline2 .timeline-year2 {
  color: #fff;
  background-color: #053a64;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  line-height: 125px;
  height: 145px;
  width: 145px;
  padding: 8px;
  border: 2px solid #fff;
  box-shadow: 1px 1px 1px #505050;
  border-radius: 50%;
  transform: translateY(-50%);
  position: absolute;
  top: 49%;
  left: -1px;
}

.main-timeline2 .timeline-year2 span {
  background-color: #094371;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  display: block;
}

.main-timeline2 .title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.main-timeline2 .title i.fa {
  font-size: 30px;
}

.main-timeline2 .description {
  font-size: 16px;
  margin: 0;
  color: #000;
}

.main-timeline2 .timeline2:nth-child(even) {
  padding: 0 50px 0 20px;
  margin: 0 5px 0 0;
  float: left;
}

.main-timeline2 .timeline2:nth-child(even):before {
  left: auto;
  right: -13px;
}

.main-timeline2 .timeline2:nth-child(even):after {
  border-radius: 5px 0 0 5px;
  right: auto;
  left: 0;
}

.main-timeline2 .timeline2:nth-child(even) .timeline-content2 {
  border-radius: 0 80px 70px 0;
  padding: 15px 160px 15px 25px;
}

.main-timeline2 .timeline2:nth-child(even) .timeline-content2:before {
  left: auto;
  right: -40px;
  border: 11px solid transparent;
  border-left: 20px solid #15aabf;
}

.main-timeline2 .timeline2:nth-child(even) .timeline-year2 {
  left: auto;
  right: 0;
}

@media only screen and (max-width: 990px) {
  .main-timeline2 .title {
    font-size: 20px;
  }

  .main-timeline2 .title i.fa {
    font-size: 25px;
    margin-top: 5px;
  }

  .main-timeline2 .timeline-year2 {
    font-size: 35px;
    width: 120px;
    height: 120px;
  }

  .main-timeline2 .timeline-year2 span {
    line-height: 100px;
  }

  .main-timeline2 .timeline-content2 {
    padding: 25px 20px 25px 130px;
  }

  .main-timeline2 .timeline2:nth-child(even) .timeline-content2 {
    padding: 25px 130px 25px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .main-timeline2:before {
    left: 13px;
  }

  .main-timeline2 .timeline2,
  .main-timeline2 .timeline2:nth-child(even) {
    width: 100%;
    padding: 0 20px 0 60px;
    margin: 0 0 30px 0;
    float: right;
  }

  .main-timeline2 .timeline2:before,
  .main-timeline2 .timeline2:nth-child(even):before {
    left: 0;
  }

  .main-timeline2 .timeline2:nth-child(even):after {
    border-radius: 0 5px 5px 0;
    right: 0;
    left: auto;
  }

  .main-timeline2 .timeline-content2,
  .main-timeline2 .timeline2:nth-child(even) .timeline-content2 {
    padding: 80px 25px 25px 25px;
    border-radius: 15px 0 0 15px;
  }

  .main-timeline2 .timeline-year2,
  .main-timeline2 .timeline2:nth-child(even) .timeline-year2 {
    height: 70px;
    width: 150px;
    border-radius: 20px;
    transform: translateY(0);
    top: 0;
    left: 0;
    right: auto;
  }

  .main-timeline2 .timeline-year2 span {
    line-height: 50px;
    border-radius: 20px;
  }

  .main-timeline2 .timeline2:nth-child(even) .timeline-content2:before {
    border: 11px solid transparent;
    border-right: 20px solid var(--color-secondary);
    left: -40px;
    right: auto;
  }
}

@media only screen and (max-width: 479px) {
  .main-timeline2 .title {
    font-size: 16px;
  }

  .main-timeline2 .timeline-content2 {
    padding: 80px 20px 25px 25px;
  }

  .main-timeline2 .description {
    text-align: justify;
  }

  .main-timeline2 .timeline2:nth-child(even) .timeline-content2 {
    padding: 80px 20px 25px 25px;
  }
}

.inner-section1 {
  padding: 80px 0px;
}

.doc-section .section_title_text h2 {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 35px;
}

.doc-section .section_title_text h3 {
  font-size: 17px;
  color: var(--color-default);
  margin-bottom: 0px;
}

.serv-matter p {
  font-size: 15px;
  margin-bottom: 20px;
  text-align: justify;
}

.serv-img img {
  border: 7px solid #f5f5f5;
  box-shadow: 0px 0px 10px #9f9f9f;
}

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

.ol_styles li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  line-height: 28px;
  font-size: 15px;
}

.ol_styles li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 17px;
  line-height: 28px;
  color: #373434;
  font-weight: 900;
  content: "\f101";
  font-family: "Font Awesome 5 Free";
}

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

.serv-matter h2 a {
  color: var(--color-primary);
}

.serv-matter h3 {
  color: var(--color-primary);
  font-size: 18px;
}

/* Pop Up */

.modal-dialog {
  max-width: 500px;
  margin: 4rem auto;
  z-index: 99999;
}

.modal-docname h4 {
  font-size: 18px;
  margin: 5px 0 4px;
  padding: 2px 0;
  color: #094371;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: #08885d;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.codecontents {
  border-bottom: 4px solid #094371;
}

.codecontents .close {
  position: absolute;
  color: #fff;
  background: var(--color-secondary);
  border-radius: 50%;
  padding: 10px;
  width: 50px;
  height: 50px;
  text-decoration: none;
  right: -25px;
  top: -25px;
  opacity: 1;
  text-shadow: none;
}

.codecontents .close:hover {
  position: absolute;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  padding: 10px;
  width: 50px;
  height: 50px;
  text-decoration: none;
  right: -25px;
  top: -25px;
  opacity: 1;
  text-shadow: none;
  transition: all 0.3s;
}

.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
}

.modal-docname h2 {
  color: var(--color-secondary);
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
}

.modal-docname h3 {
  font-size: 21px;
  margin: 5px 0 4px;
  padding: 2px 0;
}

@media only screen and (max-width: 479px) {
  .team-mem h1 {
    padding-bottom: 0px;
  }

  .modal-dialog {
    max-width: 360px;
    margin: 4rem auto;
  }
}

@media only screen and (max-width: 375px) {
  .modal-dialog {
    max-width: 320px;
    margin: 4rem auto;
  }
}

@media only screen and (max-width: 320px) {
  .modal-dialog {
    max-width: 280px;
    margin: 4rem auto;
  }
}

.main-menu .navigation .active a {
  color: var(--color-secondary);
}

.modal-docabout p {
  font-size: 15px;
  text-align: justify;
}

.widget-title {
  position: relative;
  display: block;
  font-size: 25px;
  line-height: 32px;
  color: #000000;
  margin-bottom: 20px;
  border-bottom: 1px solid;
  display: inline-block;
  text-transform: capitalize;
}

.contact-widget .widget-content .info-list li {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 30px;
  /* color: #cececf; */
  color: #000000;
  /* border-bottom: 1px solid; */
  margin-bottom: 11px;
  /* font-weight: 500; */
  padding-bottom: 14px;
}

.contact-widget .widget-content .info-list li a {
  color: #000;
}

.visiting h4 {
  font-size: 36px;
  width: fit-content;
  letter-spacing: 1px;
  margin: 0 auto;
  border-bottom: 2px solid;
  color: #094371;
  padding: 5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.visiting {
  text-align: center;
}

.team-contents {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.team-contents h5 {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  background: #15aabf;
  padding: 10px 0;
  box-shadow: 0 0 10px -5px #787878;
  margin-bottom: 20px;
  margin-top: 10px;
}

.team-contents h6 {
  color: #000;
  font-size: 20px;
}

.team-contents .title {
  margin-top: 15px;
  text-transform: uppercase;
  font-size: 27px;
}

.team-contents h3 {
  text-transform: uppercase;
  font-size: 20px;
}

.our-team .team-content h4 a {
  background: none;
  color: #202020;
  padding: 0px;
}

.team-contents a {
  padding: 8px 10px;
  background: var(--color-primary);
  color: #fff;
}

.team-contents p {
  font-size: 15px;
  color: #094371;
  margin-bottom: 10px;
}

.inner-section1 .mvv-list {
  margin-bottom: 0px;
}

.about_section .section_title_text span {
  font-weight: 600;
}

.fac-img {
  margin-bottom: 30px;
}

.img-team img {
  border: 2px solid #ccc;
}

.serv-matter .panel-text h3 {
  font-size: 18px;
}

.form-control:focus {
  color: #000000;
  background-color: #fff;
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 10px #e8e5e5;
}

/*the container must be positioned relative:*/

.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

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

/*style the arrow inside the select element:*/

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

/*point the arrow upwards when the select box is open (active):*/

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

/*style the items (options), including the selected item:*/

.select-selected {
  color: #adadad;
  padding: 0px 0px;

  border-color: transparent transparent rgba(0, 0, 0) transparent;
  cursor: pointer;
  user-select: none;
  text-align: justify;
}

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

/*style items (options):*/

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

/*hide the items when the select box is closed:*/

.select-hide {
  display: none;
}

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

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  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: none;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.main-menu .navigation .drop-down-active > a {
  color: #15aabf;
}

.inn_bl_row {
  text-align: center;
}

.inn_bl_row .col-md-4 {
  padding: 20px 15px;
  box-shadow: 0px 0px 10px #ccc;
  background: #f5f5f5;
}

.blogs_list h2 {
  font-size: 20px;
  margin-top: 20px;
}

.blogs_list p {
  font-size: 15px;
  text-align: center;
}

.blogs_list .inner-blog-btn {
  display: inline-block;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 6px 9px;
  font-size: 16px;
  border-radius: 8px;
}

._blog_nav {
  position: relative;
  padding: 17px 18px;
  margin: 0 0 32px;
  border-top: 4px solid var(--color-primary);
  background: #ffffff;
  box-shadow: 0px 0px 6px #17161629;
}

._blog_nav h4 {
  font-size: 29px;
  margin-bottom: 10px;
  border-bottom: 1px solid;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
}

._blog_nav ul {
  padding: 0;
  list-style: none;
}

._blog_nav ul li a {
  display: block;
  position: relative;
  border-bottom: 1px dashed #282828;
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-left: 17px;
  color: #141414;
  font-size: 16px;
}

._blog_nav ul li a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid;
  left: 0;
  border-radius: 50%;
  top: 8px;
}

._blog_nav ul li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.vide-page iframe {
  border: 4px solid #f5f5f5;
  height: 220px;
  box-shadow: 0px 0px 7px #00000052;
  width: 100%;
}

.vide-page iframe {
  margin-bottom: 30px;
}

.pp-header.modal-header {
  display: block;
  padding: 0;
  border: none;
}
.pp-dialouge.modal-dialog {
  margin-top: 8%;
}
.close {
  top: 0;
  z-index: 2;
  background-color: var(--color-secondary) !important;
  opacity: 1;
  color: #fff;
  font-size: 35px;
  padding: 0 6px 2px;
  position: absolute;
  right: 0px;
  width: 33px;
  height: 33px;
  line-height: 33px;
}
.pp-body.modal-body p {
  font-size: 20px;
}
.modal-dialog {
  max-width: 520px;
}
