/***
====================================================================
	Reset
====================================================================
***/

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

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}

.cursor-dot {
  width: 15px;
  height: 15px;
  background: linear-gradient(-45deg, var(--color-primary) 20%, var(--color-teritary));
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cursor-border {
  width: 12px;
  height: 12px;
  border: 1px solid var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 10%;
}

:root {
  --color-default: #545454;
  --color-primary: #ff944e;
  --color-secondary: #0097b2;
  --color-teritary: #fed758;
}

.container {
  position: relative;
}

.mobile-view {
  display: none;
}

/*** 
====================================================================
	Global Settings
====================================================================
 ***/
body {
  font-size: 16px;
  line-height: 1.6em;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "Open Sans", sans-serif;
  color: #292929;
}

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

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

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

.desktop-nav-toggler {
  margin-top: 30px;
  cursor: pointer;
}

.inner1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.inner1 img {
  width: 50px;
}

.inner1 span {
  font-size: 27px;
  text-transform: uppercase;
  color: var(--color-default);
  display: inline-block;
  margin-left: 5px;
}

.top-nav-info {
  position: absolute;
  right: 170px;
  top: 38px;
  z-index: 1;
}

.top-nav-info a i {
  width: 34px;
  height: 34px;
  background: var(--color-primary);
  display: inline-block;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  position: relative;
  left: -4px;
}

.top-nav-info a {
  color: var(--color-default);
  font-size: 18px;
  padding: 10px 10px 14px;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.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%;
  background-image: url(../gallery/bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -9;
  opacity: 0.4;
}

.page-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/logo-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24%;
  background-attachment: fixed;
  top: 0px;
  z-index: -8;
  opacity: 0.05;
}

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

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

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

.header-one {
  position: relative;
  border-top: 2px solid var(--color-primary);
}

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

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

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

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

/*** 
========================================
    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: absolute;
  top: 84px;
  right: 368px;
  width: 478px;
  max-width: 100%;
  height: fit-content;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  background: #015e6f;
  border-radius: 20px;
}

.mobile-menu::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/appnt-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.1;
  filter: grayscale(1);
}

.mobile-contents {
  position: relative;
  color: #fff;
  text-align: center;
  padding-top: 355px;
  padding-bottom: 75px;
}

.mobile-contents::before {
  content: " ";
  position: absolute;
  width: 55%;
  height: 100%;
  border-radius: 0px 0px 999px 999px;
  background: linear-gradient(to bottom, #ffffff00, #007b91);
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.mobile-contents::after {
  content: " ";
  position: absolute;
  width: 10%;
  height: 52%;
  border-radius: 999px 999px 0px 0px;
  background: linear-gradient(to top, #ffffff00, #47a5ae57);
  bottom: -25px;
  left: 46px;
  margin: auto;
}

.mobile-contents h2::before {
  content: " ";
  position: absolute;
  width: 2px;
  height: 328%;
  background: #fff;
  left: 71px;
  top: -74px;
}

.mobile-contents h2 {
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  opacity: 0.2;
  font-size: 43px;
}

.mobile-head-bg img {
  width: 72px;
}

.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: relative;
  right: 0px;
  bottom: 0px;
  margin: auto;
  top: 0px;
  width: auto;
  height: fit-content;
  padding: 35px 35px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  text-align: center;
}

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

.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:first-child {
  border-top: 0px;
}

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

.mobile-menu .navigation li > ul {
  display: none;
  background: #015e6f;
  position: absolute;
  z-index: 2;
  box-shadow: 0px 0px 8px #ffffff45;
  left: 0px;
  right: 0px;
  margin: auto;
  width: fit-content;
}

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

.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: 18px 25px;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  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;
  width: 0%;
  height: 100%;
  background: var(--color-primary);
  left: 0;
  top: 0;
  transition: all 500ms ease;
  z-index: -1;
}

.mobile-menu .navigation li:hover > a {
  padding-left: 40px;
  font-weight: 500;
}

.mobile-menu .navigation li:hover > a:before {
  width: 100%;
}

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

.mobile-menu .navigation li ul li > a {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  padding: 11px 23px;
  color: #ffffff;
  transition: all 500ms ease;
}

.mobile-menu .navigation li ul li {
  transition: all 500ms ease;
}

.mobile-menu .navigation li ul li:hover {
  background: var(--color-secondary);
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  top: 15px;
  right: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 32px;
  background: #df6a1d;
  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: 1;
}

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

.mobile-social-icons {
  position: relative;
  bottom: 0px;
  right: -65px;
  margin-top: 33px;
  margin-bottom: 33px;
}

.mobile-social-icons::before {
  content: " ";
  position: absolute;
  width: 23%;
  height: 1px;
  background: #ffffff4f;
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.mobile-social-icons ul li {
  display: inline-block;
  margin-right: 5px;
}

.mobile-social-icons ul li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff1f;
  line-height: 38px;
  text-align: center;
  color: #ffffff78;
  transition: all 500ms ease;
}

.mobile-social-icons ul li a:hover {
  background: var(--color-primary);
  color: #fff;
}

.mobile-social-icons span {
  position: absolute;
  color: #ffffff7a;
  top: -15px;
  left: -16px;
}

.mobile-social-icons ul {
  position: relative;
  padding-left: 118px;
}

/*
* 4. banner style
*/

.banner-wrapper {
  position: relative;
}

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

.slide-one {
  background-image: url(../gallery/banner.jpg);
}

/***
====================================================================
	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%;
  transition: all 300ms ease;
}

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

.appnt-main-outer {
  position: relative;
  display: inline-block;
}

.social-icons {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 195px;
}

.social-icons ul li {
  margin-right: 4px;
  display: inline-block;
}

.social-icons ul li a {
  display: block;
  width: 33px;
  height: 33px;
  line-height: 33px;
  border-radius: 33px;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  text-align: center;
  font-size: 16px;
}

.top-phn-btn {
  position: absolute;
  right: 371px;
  top: 25px;
  z-index: 1;
  font-size: 15px;
}

.top-phn-btn a {
  color: var(--color-secondary);
  font-size: 16px;
  background: #f2652224;
  padding: 6px 11px;
}

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

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

.abt-head-numb {
  position: absolute;
  left: -32px;
  top: -14px;
}

.abt-head-numb span {
  font-size: 153px;
  font-weight: 700;
  opacity: 0.18;
  color: var(--color-primary);
  font-family: "Lato", sans-serif;
}

.abt-head-inner {
  position: relative;
  padding-left: 68px;
}

.abt-head-inner h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
  padding-left: 88px;
}

.abt-head-inner h3::before {
  content: " ";
  position: absolute;
  width: 90px;
  height: 2px;
  background: var(--color-secondary);
  top: 2px;
  bottom: 0px;
  left: -19px;
  margin: auto;
}

.abt-head-inner h2 {
  font-size: 66px;
  color: var(--color-secondary);
  font-weight: 600;
  text-transform: uppercase;
}

.abt-head-inner h1 {
  font-size: 30px;
  font-weight: 400;
  margin: 10px 0px 20px;
}

.abt-content h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

.abt-content h5 {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-secondary);
  padding-top: 3px;
  border-top: 1px dashed var(--color-default);
  display: inline-block;
}

.abt-content p {
  font-size: 15px;
  line-height: 30px;
}

.doc-img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0px 0px 8px #00000057;
  width: 350px;
  margin: 0px 0px 0px auto;
}

.doc-img1 {
  position: absolute;
  left: 0px;
  z-index: -2;
  filter: grayscale(1);
  opacity: 0.2;
}

.doc-img2 {
  position: absolute;
  left: 53px;
  top: 0px;
  z-index: -1;
  filter: grayscale(0.3);
  opacity: 0.5;
}

.doc-img img {
  border-radius: 999px;
  transition: all 300ms ease;
}

.doc-img:hover img {
  transform: scale(1.12);
}

.top-concerns-sec {
  position: relative;
  margin-bottom: 118px;
  padding-top: 43px;
}

.top-block-head {
  text-transform: uppercase;
  font-size: 83px;
  font-weight: 700;
  color: #f379291a;

  text-align: center;
  margin-bottom: 0px;
}

.top-concerns-sec .container {
  max-width: 1270px;
}

.top-duplicate {
  position: absolute;
  bottom: -30px;
  right: -12px;
  opacity: 0.1;
  z-index: -1;
  width: 1230px;
}

.top-box {
  position: relative;
  cursor: pointer;
  display: block;
  background: #007c95;
  width: 195px;
  height: 180px;
  animation: upDown 2s infinite ease-in-out;
  padding: 25px 10px;
  border-radius: 20px;
  border: 2px solid #f5f5f5;
  box-shadow: 0px 0px 5px #00000063;
  top: 0px;
  transition: all 300ms ease;
}

.top-box:hover {
  top: -10px;
}

@keyframes upDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.top-box img {
  width: 65px !important;
  filter: brightness(0) invert(1);
  margin: auto;
}

.top-box p {
  font-size: 17px;
  color: #fff;
  margin-top: 10px;
  text-transform: uppercase;
}

.education-head h2 {
  font-size: 20px;
  border-left: 5px solid;
  padding: 5px 5px;
  padding-left: 10px;
  margin-bottom: 10px;
  color: var(--color-secondary);
  background: linear-gradient(to right, #fece5624, #ffffff00);
  font-weight: 400;
}

.education-head {
  position: relative;
}

.ol_styles {
  position: relative;
}

.ol_styles li {
  position: relative;
  display: block;
  margin-bottom: 4px;
  padding-left: 15px;
  font-size: 15px;
}

.ol_styles li:before {
  position: absolute;
  left: 0;
  top: 9px;
  height: 10px;
  width: 10px;
  border-radius: 5px;
  border: 2px solid var(--color-primary);
  content: "";
  background: var(--color-secondary);
}

.top-down-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #007c95;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0px;
  left: 0px;
  margin: auto;
  top: -18px;
}

.top-down-btn img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.extra-sec {
  position: relative;
}

.extra-inner {
  position: relative;
}

.extra-head h2 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.extra-head h2::before {
  content: " ";
  position: absolute;
  width: 50%;
  height: 1px;
  background: var(--color-primary);
  top: 7px;
  left: 30px;
  right: 0px;
  margin: auto;
}

.extra-head h2::after {
  content: " ";
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ffffff00, #fe9a524a);
  border-radius: 50%;
  top: -7px;
  right: -21px;
  margin: auto;
  z-index: -1;
}

.extra-head h2 span {
  font-weight: 400;
  font-size: 50px;
  background: var(--color-secondary);
  color: #fff;
  display: inline-block;
  padding: 18px 8px;
  border-radius: 0px 20px;
}

.extra-head p {
  line-height: 30px;
}

.extra-inner-left,
.extra-inner-right {
  text-align: center;
  background: #ffe8d8;
  border-radius: 20px;
  padding: 28px 0px 0px;
  box-shadow: -5px 6px 8px #00000042;
}

.extra-inner-right {
  box-shadow: 5px 6px 8px #00000042;
}

.extra-head {
  position: relative;
}

.extra-inner-left p {
  position: relative;
  font-size: 16px;
  padding: 0px 4px 16px 4px;
  cursor: pointer;
  transition: all 300ms ease;
  border-bottom: 1px dashed #00000063;
  display: inline-block;
  color: #000;
}

.extra-inner-left p:last-child,
.extra-inner-right p:last-child {
  border-bottom: 0px;
}

.extra-inner-left p:hover {
  transform: scale(1.1);
}

.extra-inner-right p {
  position: relative;
  font-size: 16px;
  padding: 0px 4px 16px 4px;
  cursor: pointer;
  color: #000;
  transition: all 300ms ease;
  border-bottom: 1px dashed #00000063;
  display: inline-block;
}

.extra-inner-right p:hover {
  transform: scale(1.1);
}

.serv-sec {
  position: relative;
  margin-bottom: 50px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.serv-main-box .container {
  max-width: 1300px;
}

.serv-sec::before {
  content: " ";
  position: absolute;
  width: 92%;
  height: 88%;
  background: #fb7e2d;
  top: 0px;
  z-index: -4;
  right: 0px;
  left: 0px;
  margin: auto;
  bottom: 0px;
  border-radius: 40px;
  transform: skewY(1deg);
}

.serv-sec::after {
  content: " ";
  position: absolute;
  width: 92%;
  height: 88%;
  /* background: var(--color-primary); */
  top: 0px;
  /* opacity: 0.9; */
  z-index: -3;
  /* clip-path: polygon(0% 0%, 100% 20%, 100% 80%, 0 100%); */
  right: 0px;
  left: 0px;
  margin: auto;
  bottom: 0px;
  border-radius: 40px;
  transform: skewY(-4deg);
}

.serv-sec-inner::after {
  content: " ";
  position: absolute;
  width: 96%;
  height: 100%;
  background-image: url(../gallery/serv-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0px;
  z-index: -2;
  right: 0px;
  left: 0px;
  bottom: 0px;
  margin: auto;
  border-radius: 40px;
  transform: skewY(-5deg);
}

.serv-sec-inner {
  position: relative;
  padding-bottom: 60px;
  padding-top: 50px;
}

.serv-sec-inner::before {
  content: " ";
  position: absolute;
  width: 96%;
  height: 100%;
  background: #015e6f;
  top: 0px;
  opacity: 0.9;
  z-index: -1;
  right: 0px;
  left: 0px;
  margin: auto;
  border-radius: 40px;
  transform: skewY(-5deg);
  /* clip-path: polygon(0% 20%, 100% 0%, 90% 100%, 10% 100%); */
}

.serv-sec .abt-head-inner h2 {
  color: #fff;
  font-weight: 400;
  font-size: 54px;
}

.testimonials-sec .abt-head-inner h2 {
  font-weight: 500;
  font-size: 54px;
}

.serv-sec .abt-head-inner h3::before {
  background: #fff;
}

.serv-sec .abt-head-sec {
  position: relative;
  right: 0px;
  top: 83px;
}

.serv-main-sec {
  margin-top: 138px;
  position: relative;
}

.serv-main-content {
  position: relative;
  color: #fff;
  margin-bottom: 20px;
}

.serv-main-content h2 {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 8px;
}

.serv-main-content a {
  background: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 0px 6px 2px;
}

.ser-main-box {
  position: relative;
  cursor: pointer;
  transition: all 300ms ease;
}

.ser-main-box::before {
  content: " ";
  position: absolute;
  width: 38%;
  height: 1px;
  background: #ff944e5e;
  top: -148px;
  bottom: 0px;
  margin: auto;
  left: 98px;
  z-index: 1;
}

.serv-main-row {
  padding-bottom: 60px;
}

.serv-main-img img {
  transition: all 300ms ease;
  filter: grayscale(1);
  border-radius: 10px;
  width: 220px !important;
}

.serv-main-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}

.serv-main-icon img {
  width: 58px !important;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  display: inline-block;
}

.ser-main-box:hover .serv-main-img img {
  transform: scale(1.2) rotate(6deg);
  z-index: 2;
  filter: grayscale(0);
}

.serv-main-btm {
  position: absolute;
  right: 0px;
  cursor: pointer;
  z-index: 1;
}

.serv-main-btm p {
  color: #ffffffb9;
  font-size: 20px;
  font-style: italic;
  transition: all 300ms ease;
}

.serv-main-btm:hover p {
  transform: scale(1.1);
}

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

.serv-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 5px;
  background: #fff;
  opacity: 1;
  margin: 0 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

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

.modal-dialog {
  max-width: 538px;
  margin: 4.75rem auto;
  background: #fff;
}

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

button.pp-close.close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  opacity: 1;
  font-size: 26px;
  padding: 0 6px 2px;
  font-weight: 400;
  color: #36261c96;
}

.modal-content {
  position: relative;
  background-color: #fff4e0;
  border: 0px;
}

.modal.show .modal-content::before {
  transform: translateY(0);
}

.modal-inner-content {
  position: relative;
  padding: 68px 20px;
  color: #fff;
}

.modal-inner-content h2 {
  font-size: 25px;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 40px;
}

.modal-inner-content h2 span {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.modal-inner-content p {
  font-weight: 300;
}

.modal-inner-content .ol_styles {
  margin-bottom: 10px;
}

.modal-inner-content h3 {
  font-size: 20px;
  font-weight: 400;
}

.modal-inner-content a {
  background: var(--color-secondary);
  color: #fff;
  padding: 6px 17px 8px;
  font-size: 18px;
  display: inline-block;
  margin-top: 15px;
  border-radius: 26px;
}

.modal-inner-content > * {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 1s ease;
}

.modal.show .modal-inner-content > * {
  opacity: 1;
  transform: translateY(0);
}

.modal.show .modal-inner-content > *:nth-child(1) {
  transition-delay: 0.1s;
}

.modal.show .modal-inner-content > *:nth-child(2) {
  transition-delay: 0.3s;
}

.modal.show .modal-inner-content > *:nth-child(3) {
  transition-delay: 0.5s;
}

.modal.show .modal-inner-content > *:nth-child(4) {
  transition-delay: 0.7s;
}

.videos-sec {
  position: relative;
  margin-bottom: 118px;
}

.vide-block-row .col-md-3 {
  padding: 0px 8px;
}

.videos-box {
  position: relative;
  width: 100%;
  height: 453px;
  border: 3px solid #fff;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0px 0px 8px #00000030;
}

.videos-box video {
  width: 100%;
  height: 453px;
  object-fit: cover;
  filter: grayscale(1);
  transition: all 1s ease;
}

.videos-box:hover video {
  filter: grayscale(0);
}

.video-left-side {
  position: relative;
  text-align: center;
}

.video-left-side::before {
  content: " ";
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(to bottom, var(--color-primary), #ffffff00);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
  top: -50px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.vide-block-row {
  position: relative;
}

.video-left-side h2 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 38px;
}

.video-left-side h2 span {
  font-weight: 400;
  font-size: 45px;
  color: var(--color-secondary);
}

.video-left-side p {
  font-size: 15px;
}

.video-left-side a {
  background: var(--color-secondary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 5px;
}

.main-footer {
  text-align: center;
  position: relative;
}

.usefull {
  text-align: center;
  position: relative;
  padding-top: 8px;
}

.usefull h2 {
  font-weight: 400;
  font-size: 38px;
  margin-bottom: 6px;
  color: #fff;
}

.useful-links {
  display: inline-block;
  padding: 6px 7px;
}

.useful-ul {
  text-align: center;
  margin: 0;
  padding: 0;
  display: inline;
}

.usefull .useful-ul li {
  display: inline-block;
}

.usefull .useful-ul li a:hover {
  color: var(--color-primary);
}

.usefull .useful-ul li a {
  margin-bottom: 10px;
  padding: 0 10px;
  border-right: 1px solid #d5d5d5;
  color: #fff;
  font-size: 18px;
  display: inline-block;
}

.usefull .useful-ul li:last-child a {
  border-right: 0px;
}

.footer-copyrights {
  padding-top: 15px;
  color: #fff;
  border-top: 1px solid #ffffff6b;
  margin-top: 10px;
}

.address-box h2 {
  font-weight: 400;
  color: #fff;
  font-size: 40px;
  margin-bottom: 25px;
  position: relative;
}

.address-box h2::before {
  content: " ";
  position: absolute;
  width: 61%;
  height: 1px;
  background: #ffffff30;
  bottom: -10px;
  left: 0px;
}

.footer-copyrights a {
  color: var(--color-primary);
  font-weight: 600;
}

.foot-box {
  margin-bottom: 26px;
  padding-bottom: 11px;
  display: inline-block;
}

.foot-box a {
  color: #fff;
  font-size: 18px;
  display: inline-block;
  padding-left: 45px;
}

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

.foot-box i {
  display: block;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 30px;
  color: #ffffffcb;
  font-size: 26px;
  position: absolute;
}

.footer-widget__social {
  position: relative;
  padding-top: 5px;
}

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

.footer-widget__social li a {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  color: #fff;
  background: var(--color-primary);
  margin: 0 4px;
  font-size: 16px;
}

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

.botox-icon img {
  width: 50px;
  filter: brightness(0);
  margin-bottom: 8px;
}

.botox-row {
  margin-top: 20px;
}

.botox-box {
  text-align: center;
  position: relative;
  border-radius: 128px 128px 0px 0px;
  background: #fff6f0;
  padding: 18px 24px;
}

.botox-box h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 5px;
}

.botox-box p {
  font-size: 14px;
  margin-bottom: 0px;
}

.botox-outer-1 {
  margin-top: 30px;
}

.botox-outer-1 .botox-box {
  text-align: center;
  position: relative;
  border-radius: 0px 0px 128px 128px;
}

.botox-row .col-md-3:nth-child(even) .botox-box {
  background: #fff9e5;
}

.botox-row .col-md-3:nth-child(even) .botox-box .botox-icon img {
  margin-top: 8px;
  margin-bottom: 0px;
}

.botox-head h2 {
  font-size: 48px;
  color: var(--color-secondary);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.botox-head h2 span {
  background: var(--color-primary);
  color: #fff;
  display: inline-block;
  padding: 6px 20px 10px;
  font-size: 56px;
  margin-left: 17px;
  border-radius: 30px 0px;
  font-weight: 500;
  position: relative;
}

.botox-head h2 span::before {
  content: " ";
  position: absolute;
  width: 78%;
  height: 2px;
  background: var(--color-secondary);
  top: 7px;
  right: -85px;
}

.botox-head p {
  line-height: 30px;
  font-size: 15px;
}

.call-us {
  position: fixed;
  bottom: 20px;
  left: 20px;
  line-height: 56px;
  width: 60px;
  text-align: center;
  height: 60px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  z-index: 1;
}

.call-us-i {
  text-align: center;
  cursor: pointer;
  font-size: 36px;
}

.call-us-i a {
  color: #fff;
}

.vide-head-sec {
  position: relative;
  margin-bottom: 28px;
}

.vide-head-numb {
  position: absolute;
  left: -32px;
  top: -14px;
}

.vide-head-numb span {
  font-size: 120px;
  font-weight: 700;
  opacity: 0.18;
  color: var(--color-primary);
  font-family: "Lato", sans-serif;
}

.vide-head-inner {
  position: relative;
  padding-left: 68px;
}

.vide-head-inner h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
  padding-left: 80px;
}

.vide-head-inner h3::before {
  content: " ";
  position: absolute;
  width: 90px;
  height: 2px;
  background: var(--color-secondary);
  top: 2px;
  bottom: 0px;
  left: -19px;
  margin: auto;
}

.vide-head-inner h2 {
  font-size: 48px;
  color: var(--color-secondary);

  font-weight: 500;
  text-transform: uppercase;
}

.abt-num-blk {
  background-color: var(--color-secondary);
  position: relative;
  display: flex;
  margin-top: 22px;
}

.abt-num-blk::before {
  content: "";
  position: absolute;
  height: 62px;
  width: 50%;
  border: 2px solid var(--color-primary);
  left: -8px;
  top: -8px;
  border-right: 0px;
  border-bottom: 0px;
  z-index: -1;
}

.abt-num-blk::after {
  content: "";
  position: absolute;
  height: 62px;
  width: 50%;
  border: 2px solid var(--color-primary);
  right: -8px;
  bottom: -8px;
  border-left: 0px;
  border-top: 0px;
  z-index: -1;
}

.abt-num {
  color: #fff;
  padding: 30px 8px;
  /* margin-bottom: 10px; */
  position: relative;
  background: linear-gradient(to left, #ffffff0f, var(--color-secondary));
  width: 165px;
}

.abt-num p {
  margin-bottom: 0px;
  font-size: 14px;
}

.abt-num h2 {
  font-family: "Lato", sans-serif;
  font-size: 52px;
  font-weight: 500;
}

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

.faq-sec .abt-head-inner h2 {
  font-weight: 500;
  font-size: 54px;
}

.faq-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  left: 10px;
  background: var(--color-secondary);
  color: #fff;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #ff944e;
  box-shadow: -6px 6px 4px #0000007a;
}

.faq-icon i {
  font-size: 50px;
}

.faq-content {
  position: relative;
  padding: 15px 10px 15px 110px;
  text-align: left;
}

.faq-content h2 {
  font-size: 18px;
  margin-bottom: 2px;
}

.faq-content p {
  font-size: 13px;
  margin-bottom: 0px;
  line-height: 22px;
}

.faq-block {
  position: relative;
  margin-bottom: 30px;
}

.faq-block::before {
  content: " ";
  position: absolute;
  width: 90%;
  height: 100%;
  background: linear-gradient(to right, #ff944e14, #ffffff00);
  left: initial;
  right: 0px;
  z-index: -1;
}

.faq-main-row {
  position: relative;
  margin-top: 40px;
}

.faq-right-side {
  position: relative;
}

.faq-right-side::before {
  content: " ";
  position: absolute;
  width: 300px;
  height: 500px;
  background: var(--color-secondary);
  top: -20px;
  right: 0px;
  z-index: -1;
}

.faq-block-row {
  position: relative;
  margin-top: 30px;
}

.faq-block-row::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--color-secondary);
  left: 53px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.faq-inner-img {
  position: relative;
  padding-top: 38px;
  left: 58px;
  cursor: pointer;
}

.faq-inner-img img {
  box-shadow: 0px 0px 6px #00000040;
  overflow: hidden;
  position: relative;
  transition: all 300ms ease;
}

.faq-inner-img:hover img {
  transform: scale(1.05);
}

.faq-inner-img::before {
  content: " ";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 5px solid var(--color-primary);
  bottom: -35px;
  z-index: -1;
  left: -35px;
}

.top-info {
  position: absolute;
  right: 25px;
  top: 24px;
}

.top-info .top-btn {
  display: inline-block;
}

.top-info .top-btn a {
  background: var(--color-primary);
  color: #fff;
  padding: 5px 10px;
  font-size: 15px;
  border-radius: 6px;
}

.top-info .top-social {
  display: inline-block;
  margin-right: 10px;
}

.top-info .top-social ul li {
  display: inline-block;
}

.top-info .top-social ul li a {
  border: 1px solid var(--color-secondary);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--color-secondary);
  border-radius: 5px;
  font-size: 14px;
}

.footer_section {
  position: relative;
  padding-top: 221px;
  margin-top: -149px;
}

.footer_section::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../gallery/f-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  top: 0;
}

.footer_section .footer_add_row {
  position: relative;
}

/* .footer_section .footer_add_row::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: var(--color-primary);
  z-index: -1;
  border-radius: 15px;
} */
/* .footer_section .footer_add_row::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: var(--color-primary);
  z-index: -1;
} */
.footer_add_row .col-md-4:nth-child(1),
.footer_add_row .col-md-4:nth-child(2) {
  border-right: 1px solid #fff;
}

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

.address_info_sec i {
  position: relative;
  left: 0px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  text-align: center;
  color: var(--color-primary);
  border-radius: 50%;
  line-height: 40px;
  display: inline-block;
  /*! margin-bottom: 15px; */
  /*! box-shadow: 0px 0px 0px 5px #adadad; */
}

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

/* .bottom-footer {
  padding: 5px 0;
    border-top: 1px solid var(--color-default);
} */
.bottom-footer p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  display: inline-block;
  border-top: 1px solid #fff;
  padding: 10px 15px;
}

.bottom-footer a {
  color: #fff;
}

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

.footer_section .footer-logo {
  width: 228px;
  margin: auto;
}

.footer_section .footer_top {
  position: relative;
  padding: 15px 10px 22px;
}

.footer_section .footer_top h2 {
  color: var(--color-primary);
  font-size: 21px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 2px solid var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

.footer-widget__social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

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

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

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

.footer-widget__social li a img {
  width: 22px;
}

.footer-widget__social li a:hover img {
  filter: brightness(0) invert(1);
}

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

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

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

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

.footer_mp iframe {
  border: 5px solid #f5f5f5;
  background: #fff;
  box-shadow: 0px 0px 11px #919191;
}

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

.footer_wid .address_info_sec {
  position: relative;
}

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

.footer-about p {
  font-size: 14px;
  line-height: 25px;
  margin: 0;
  padding: 0px 0px 25px;
  color: #fff;
}

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

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

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

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

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

.footer_links {
  text-align: center;
}

.footer_links ul {
  display: inline-block;
  padding: 6px 190px 6px;
  margin: 0 0 15px;
}

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

.footer_links ul li:last-child a {
  border-right: 0px;
}

.footer_links ul li a {
  color: var(--color-default);
  font-size: 17px;
  line-height: 19px;
  border-right: 1px solid;
  padding: 0 11px;
  text-transform: uppercase;
  font-weight: 600;
}

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

.footer_section .footer-left-sec a {
  color: #000;
  font-size: 15px;
}

.footer_section .f-call i,
.footer_section .f-mail i,
.footer-section .f-ad i {
  margin-right: 5px;
  font-size: 15px;
}

.f-ad p {
  margin-bottom: 0px;
}

.footer_section .f-ad {
  text-align: center;
  padding-top: 6px;
  border-top: 1px dashed #fff;
}

.footer_section .f-call {
  border-bottom: 1px dashed #fff;
  position: relative;
  color: #fff;
  padding-bottom: 5px;
  display: inline-block;
}

.f-call p {
  margin-bottom: 0px;
}

.footer_section .f-call,
.footer_section .f-mail,
.footer_section .f-ad {
  text-align: center;
  margin-bottom: 10px;
}

.f-ad p {
  font-size: 15px;
  color: #fff;
}

.footer_section a {
  color: #fff;
  font-size: 15px;
}

.footer_section .shape {
  position: relative;
  width: 70%;
  height: 5px;
  border-radius: 15px;
  background: linear-gradient(to left, var(--color-primary), transparent, var(--color-secondary));
}

.f-reach {
  margin-top: 15px;
}

.footer_links1 {
  text-align: center;
}

.footer_links1 ul {
  display: inline-block;
  /* padding: 0px 80px 6px; */
  margin: 0 0 15px;
}

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

.footer_links1 ul li:last-child a {
  border-right: 0px;
}

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

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

.subscribe-block {
  position: relative;
  padding: 25px 20px;
  background-color: var(--color-default);
  margin: 30px 0px 15px;
  border-radius: 12px;
}

.sub-title h4 {
  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: white;
  border: 1px solid #e4e4e4;
  color: var(--color-secondary);
}

.subscribe-input .form-control::placeholder {
  color: #6b6b6b;
}

.subscribe-input .btn {
  position: absolute;
  top: 7px;
  right: 8px;
  background: var(--color-secondary);
  border: none;
  border-radius: 0;
  padding: 11px 16px;
  color: #fff;
}

.f-left::before {
  content: "";
  position: absolute;
  background: linear-gradient(to left, #ffffff1f, #fff0);
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: -10px;
  border-radius: 25px;
}

.f-right::before {
  content: "";
  position: absolute;
  background: linear-gradient(to right, #ffffff1f, #fff0);
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 5px;
  border-radius: 25px;
}

.test-sec {
  position: relative;
  padding-bottom: 30px;
  padding-top: 45px;
}

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

.test-sec .test-head h3 {
  font-weight: 400;
  font-size: 20px;
  display: inline-block;
  background-color: var(--color-secondary);
  padding: 2px 14px;
  color: #fff;
  border-right: 3px solid #fff;
  background: linear-gradient(to left, #b5b5b5, #35353500);
}

.test-head h2 {
  font-size: 55px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin: 5px 0px;
  display: inline-block;
}

.test-head h2::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 110%;
  background-color: #fff;
  bottom: -7px;
  left: 0;
}

.test-head h2::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  background-color: #fff;
  transform: rotate(45deg);
  right: -30px;
  bottom: -11px;
}

.test-sec::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 168%;
  background-image: url(../gallery/test-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  transform: rotate(180deg) scaleX(1);
  top: 0;
}

.test-sec i {
  font-size: 100px;
  color: #fff;
  opacity: 0.1;
  margin-top: 15px;
}

.test-sec .tleft {
  position: absolute;
  left: -150px;
  top: 0;
}

.test-sec .tleft i {
  font-size: 234px;
  opacity: 0.05;
}

.test-inner-txt {
  padding-top: 145px;
  position: relative;
  color: #fff;
  margin-bottom: 85px;
}

.test-sec .tright {
  position: absolute;
  bottom: -68px;
  right: 0px;
}

.test-sec .tright i {
  font-size: 75px;
  opacity: 0.1;
}

.test-inner-txt h2 {
  text-transform: uppercase;
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 0 34px;
  border-radius: 1px 39px 0px;
  font-weight: 500;
  padding-right: 6px;
  border-top-right-radius: 0px;
}

.test-img {
  top: -45px;
  position: absolute;
  /* margin-top: 153px; */
  left: -65px;
  width: 700px;
}

.apt-sec {
  position: relative;
  margin-bottom: 50px;
}

.apt-sec .counter3 h2 {
  font-weight: 500;
  font-size: 30px;
}

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

.subscribe {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 2px 15px;
  margin: 0 auto;
  border: none;
  border-radius: 50px;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  background-color: var(--color-secondary);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  background-color: #fff2f200;
  background-clip: padding-box;
  border-bottom: 1px dashed #a6a6a69e;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.apt-sec .apt-inner-blk {
  position: relative;
  right: 0;
  top: 0;
}

:root {
  --white: #fff;
  --color1: #353535;
  --color2: #eeeeee;
}

.counter3 {
  color: var(--color1);
  background: linear-gradient(to bottom, var(--color1) 19%, var(--color2) 19%, var(--color2) 84%, var(--color1) 0%);
  text-align: center;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  padding: 57px 62px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.counter3:before,
.counter3:after {
  content: "";
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border-radius: 50%;
  border: 3px solid var(--color1);
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}

.counter3:after {
  background: linear-gradient(to bottom, #fff, #ffecdf);
  width: calc(100% - 35px);
  height: calc(100% - 35px);
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.counter3 .counter-icon3 {
  font-size: 30px;
  line-height: 30px;
  margin: 0 0 15px;
}

.counter3 .counter-icon3 i {
  line-height: inherit;
}

.counter3 h3 {
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  margin: 5px 0 10px;
}

.counter3 .counter-value3 {
  font-size: 33px;
  font-weight: 600;
  line-height: 33px;
  display: block;
}

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

.extra-sec .left li {
  text-align: right;
  border-right: 4px solid var(--color-default);
  padding-right: 15px;
  position: relative;
}

.extra-sec .left li:nth-child(4) {
  left: -38px;
  top: -12px;
}

.extra-sec .left li::after {
  content: "";
  position: absolute;
  width: 105px;
  height: 2px;
  top: 0;
  bottom: 0;
  right: -106px;
  margin: auto;
  border-top: 1px dashed;
}

.extra-sec .right li::after {
  content: "";
  position: absolute;
  width: 105px;
  height: 2px;
  top: 0;
  bottom: 0;
  left: -106px;
  margin: auto;
  border-top: 1px dashed;
}

.extra-sec .right li::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-default);
  top: 0;
  bottom: 0;
  margin: auto;
  left: -126px;
}

.extra-sec .left li::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-default);
  top: 0;
  bottom: 0;
  margin: auto;
  right: -126px;
}

.left li:nth-child(1) {
  margin-right: 35px;
}

.left li:nth-child(3) {
  margin-right: 55px;
}

.right li:nth-child(1) {
  margin-left: 35px;
}

.right li:nth-child(3) {
  margin-left: 55px;
}

.extra-sec .tips-blk {
  position: relative;
  margin-top: -640px;
}

.extra-sec .right {
  position: relative;
}

.extra-sec .right li {
  text-align: left;
  border-left: 4px solid var(--color-default);
  padding-left: 15px;
  position: relative;
}

.extra-sec .left li,
.extra-sec .right li {
  margin-bottom: 35px;
}

.extra-sec .left li span,
.extra-sec .right li span {
  display: block;
  font-size: 25px;
  margin-bottom: 10px;
  padding: 35px 0px;
}

.footer-btm .col-md-6 {
  padding: 0px 8px;
}

.top-wrap1 {
  position: relative;
}

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

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

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

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

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

.inner-serv-img {
  text-align: center;
  position: relative;
}

.inner-serv-img::before {
  content: " ";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 3px solid var(--color-primary);
  z-index: -1;
  right: -30px;
  top: -30px;
  border-radius: 15px;
}

.inner-serv-img img {
  box-shadow: 0px 0px 14px #0962716b;
  border-radius: 20px;
  filter: grayscale(0.3);
}

.breadcrumb {
  position: relative;
  padding: 110px 0 16px;
  margin-bottom: 0;
  z-index: 2;
  background: transparent;
  display: block;
  overflow: hidden;
}

.breadcrumb::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ffe7d7, #f5f5f5, #ebfcff);
  z-index: -1;
  top: 0px;
  left: 0px;
}

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

.bread-inner {
  position: relative;
  text-align: center;
}

.breadcrumb h1 {
  color: #000;
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 11px;
  padding: 0px 10px;
  position: relative;
}

.bread-inner::before {
  content: " ";
  position: absolute;
  width: 600px;
  height: 600px;
  /* background: var(--color-primary); */
  left: 0px;
  margin: auto;
  border-radius: 50%;
  right: 0px;
  opacity: 0.08;
  bottom: -268px;
}

.bread-inner::after {
  content: " ";
  position: absolute;
  width: 800px;
  height: 5px;
  background: var(--color-secondary);
  left: 0px;
  right: 0px;
  bottom: -18px;
  margin: auto;
  border-radius: 40px;
}

.breadcrumb ul li a {
  font-weight: 400;
  color: #000;
}

.breadcrumb ul li.active a {
  color: var(--color-primary);
  font-weight: 500;
}

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

.breadcrumb ul li {
  font-size: 18px;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
  padding: 0 12px;
  margin: 0;
  color: #000;
}

.breadcrumb ul {
  position: relative;
  display: inline-block;
}

.breadcrumb ul i {
  font-size: 15px;
  color: #000;
}

.main-test-blk {
  position: relative;
  margin-bottom: 70px;
}

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

.main-test-blk .test-blk {
  padding: 50px 0 0;
  margin: 0 10px 35px 0;
  position: relative;
}

.main-test-blk .test-blk:before {
  content: "";
  background-color: var(--color-secondary);
  height: 11px;
  width: 40%;
  position: absolute;
  right: 5px;
  top: 45px;
}

.main-test-blk .test-blk-content {
  background: #fff;
  padding: 52px 20px 20px 40px;
  border-radius: 5px 0 0 5px;
  border-left: 15px solid var(--color-primary);
  box-shadow: 7px 7px 0 0 rgba(0, 0, 0, 0.15);
  display: block;
  position: relative;
}

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

.main-test-blk .test-blk-year {
  width: 70px;
  line-height: 100px;
  border-radius: 50%;
  position: absolute;
  left: 30px;
  top: -50px;
  z-index: 1;
}

.main-test-blk .test-blk-year:before {
  content: "";
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.05), transparent);
  height: 70%;
  width: 70%;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 6px;
  z-index: -1;
}

.main-test-blk .test-blk-icon {
  color: #7f45e8;
  font-size: 25px;
  position: absolute;
  top: 10px;
  right: 12px;
}

.main-test-blk .title {
  color: var(--color-secondary);
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0 0 5px;
}

.main-test-blk .description {
  color: #000;
  font-size: 13px;
  margin: 0;
}

.main-test-blk .test-blk:nth-child(even) {
  margin: 0 0 0 10px;
}

@media screen and (max-width: 767px) {
  .main-test-blk .test-blk,
  .main-test-blk .test-blk:nth-child(even) {
    width: 100%;
    margin: 0 0 30px;
    float: none;
  }

  .main-test-blk .test-blk-content,
  .main-test-blk .test-blk:nth-child(even) .test-blk-content {
    padding: 70px 15px 15px 20px;
  }

  .main-test-blk .test-blk-year {
    left: 10px;
  }
}

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

.test-g-img {
  position: relative;
  left: 16px;
}

.test-g-img img {
  width: 102px;
  z-index: 1;
  position: relative;
}

.test-icon {
  text-align: center;
  position: absolute;
  margin-top: 0px;
  cursor: pointer;
  width: 492px;
  left: -160px;
  bottom: -182px;
}

.test-icon::before {
  content: " ";
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(to left, #ffc7a2, #ffffff00);
  border-radius: 50%;
  top: -48px;
  opacity: 0.5;
  right: -42px;
}

.test-content {
  color: #000;
  position: absolute;
  right: 0px;
  top: -50px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
}

.test-content p {
  margin-bottom: 0px;
  font-size: 20px;
  position: relative;
}

.test-content p::before {
  content: " ";
  position: absolute;
  width: 126%;
  height: 1px;
  background: #fff;
  bottom: -5px;
  left: -16px;
}

.test-content p::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  bottom: -5px;
  right: -34px;
}

.test-btm-num {
  position: absolute;
  bottom: -58px;
  left: 24px;
}

.test-btm-num span {
  font-size: 50px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

.test-btm-num h3 {
  position: absolute;
  font-weight: 400;
  font-size: 20px;
  top: -10px;
  right: -66px;
}

.g-ratings1 {
  position: absolute;
  top: 13px;
  right: -96px;
}

.contact-form {
  position: relative;
  text-align: center;
  padding: 50px 23px 48px;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
}

.contact-form::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #015e6f;
  top: 0;
  left: 0;
  z-index: -2;
}

.contact-form::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../gallery/contact-form-bg.jpg);
  background-position: center;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.2;
  background-repeat: no-repeat;
}

.contact-form h2 {
  margin-bottom: 38px;
  color: #fff;
  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: rgba(255, 255, 255, 0.18);
  font-size: 15px;
}

.contact-form .btn-danger {
  color: #fff;
  background: var(--color-primary);
  margin-top: 28px;
  border-color: transparent;
}

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

.contact-inner-box {
  padding: 0px 30px;
}

.contact-map iframe {
  box-shadow: 8px 64px 24px -59px #1f1b17d1;
  border-radius: 22px;
  width: 100%;
  height: 260px;
}

.contact-ipage {
  position: relative;
  margin-bottom: 80px;
}

.adr-info {
  display: inline-flex;
  margin: 19px 0;
}

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

.adr-icon i {
  font-size: 16px;
  color: var(--color-primary);
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  margin: 0px 1px;
  border-radius: 50%;
  border: 1px solid var(--color-default);
}

.adr-icon {
  margin-right: 15px;
}

.adr-txt {
  line-height: 36px;
}

.contact-iadr {
  position: relative;
  padding: 10px;
  z-index: 0;
  padding-left: 25px;
  margin-bottom: 34px;
}

.contact-iadr::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border: 2px solid var(--color-primary);
  top: -16px;
  left: -15px;
  z-index: -1;
}

.contact-iadr::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 150%;
  background-color: #fff8f4;
  border-radius: 19px;
  z-index: -1;
  left: 0;
  top: 0;
  box-shadow: -4px 5px 6px #00000021;
  border: 2px solid #fff;
}

.adr-head {
  position: absolute;
  background: var(--color-secondary);
  color: #fff;
  padding: 3px 16px;
  left: -35px;
  top: -48px;
}

.adr-head h2 {
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
}

.contact-map {
  text-align: center;
  margin: auto;
}

.contact-ipage .c-left {
  margin: 65px 0px 0px;
}

.contact-form .form-control::placeholder {
  color: #fff;
  opacity: 1;
}

.timings {
  padding-top: 40px;
  color: #fff;
}

.timings h3 {
  font-size: 24px;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 10px;
}

.timings p {
  font-size: 18px;
}

.video-pg-block {
  position: relative;
  height: 358px;
}

.video-pg-block video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  padding: 5px;
  border-radius: 10px;
}

.gallery_list .box1 {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  text-align: center;
  overflow: hidden;
  position: relative;
  height: 163px;
  margin-bottom: 30px;
  border-radius: 9px;
  border: 2px solid #f5f5f5;
  box-shadow: 0px 16px 12px -10px #0a0a0a3d;
}

.gallery_list .box1:after,
.gallery_list .box1:before {
  content: "";
  width: 20%;
  height: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: rotate(-40deg);
  transform-origin: top right;
  position: absolute;
  top: -6px;
  right: 0;
  z-index: 1;
  transition: 0.5s;
}

.gallery_list .box1:after {
  transform-origin: left bottom;
  top: auto;
  bottom: -6px;
  right: auto;
  left: 0;
}

.box1:hover:after,
.box1:hover:before {
  width: 30%;
  opacity: 1;
}

.box1 img {
  width: 100%;
  height: auto;
  transition: 0.4s;
}

.box1:hover img {
  opacity: 0.3;
  filter: grayscale(100%);
}

.box1 .box-content1 {
  color: #fff;
  width: 85%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transition: 0.6s;
}

.box1 .title {
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.5px;
  margin: 0 0 3px;
}

.box1 .post {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px;
  display: block;
}

.box1 .icon {
  margin: 0;
}

.box1 .icon li {
  margin: 0 5px;
}

.box1 .icon li a {
  color: var(--color-secondary);
  background-color: rgb(255 255 255);
  font-size: 15px;
  line-height: 33px;
  width: 33px;
  height: 33px;
  display: block;
  transition: 0.35s;
  margin: auto;
}

.box1 .icon li a:hover {
  color: #104627;
  background: #fff;
  box-shadow: 3px 3px 1px rgba(255, 255, 255, 0.4);
}

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

.box1:hover .box-content1 {
  opacity: 1;
}

.about-pg-img {
  position: relative;
}

.about-pg-img img {
  border: 8px solid #fff;
  box-shadow: 0px 0px 8px #0000001c;
}

.about-page {
  margin-bottom: 80px;
}

.about-pg-name {
  position: relative;
  background: var(--color-secondary);
  padding: 10px 10px 15px;
  color: #fff;
  margin-top: 30px;
  text-align: center;
}

.about-pg-name::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 5px;
  background: var(--color-primary);
  top: -8px;
  margin: auto;
  left: 0px;
  right: 0px;
}

.about-pg-name h2 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 43px;
  margin-bottom: 5px;
}

.about-pg-name h3 {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 7px;
}

.about-pg-name h4 {
  font-size: 16px;
  font-weight: 500;
}

.about-pg-content p {
  font-size: 15px;
  line-height: 30px;
  text-align: justify;
}

.about-pg-content h5 {
  font-size: 20px;
  color: var(--color-default);
  border-left: 3px solid var(--color-primary);
  margin: 14px 0px 8px;
  background: linear-gradient(to right, #0097b22e, #ffffff00);
  display: inline-block;
  padding: 8px 0px 8px 8px;
}

.main-test-btn {
  background: var(--color-secondary);
  color: #fff;
  display: inline-block;
  margin-top: 50px;
}

.main-test-btn a {
  color: #fff;
  font-size: 16px;
  padding: 5px 10px;
  display: block;
}

.ol_styles li a {
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: 500;
}

.accordion {
  background: #ededed;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.accordion-header {
  border: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background-color: transparent;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  padding: 8px;
}

.accordion-header h3 {
  max-width: 100%;
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  font-size: 16px;
  display: inline;
  font-weight: 500;
  margin-bottom: 0px;
  color: #393939;
  margin-top: 0px;
}

.accordion-body {
  color: #333;
  font-size: 14px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s;
}

.accordion-body.active {
  height: 100%;
  opacity: 1;
  padding: 5px;
}

.arrow {
  transition: transform 0.2s linear;
}

.accordion:has(.active) .arrow {
  transform: rotate(180deg);
}

.service-faq i {
  font-size: 18px;
}

.serv-faq {
  margin-top: 20px;
  margin-bottom: 50px;
}

.home-tag h1 {
  font-size: 40px;
  text-transform: uppercase;
}


.home-tag{
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}