@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

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

.mobile-view {
  display: none;
}

:root {
  --color-default: #292929;
  /* --color-primary: #0e146b; */
  --color-primary: #011f79;
  --color-secondary: #c92504;
}

.container {
  position: relative;
}

.mobile-view {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

.page-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -11;
  background-image: url(../gallery/bg.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  top: 0px;
  filter: grayscale(1);
  opacity: 0.3;
}

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

.top-border {
  width: 70%;
  height: 7px;
  position: relative;
  margin: auto;
  border-radius: 25px;
  background: linear-gradient(to top, #0e146b3b, #fdb6c100);
}

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

.header-one {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

.main-menu .navigation > li > a {
  position: relative;
  display: block;
  font-size: 19px;
  line-height: 17px;
  padding: 5px 10px;
  opacity: 1;
  color: var(--color-default);
  border-right: 1px dashed #0000005c;
}

.main-menu .navigation > li:last-child > a {
  border-right: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slide-one {
  background-image: url(../gallery/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%;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

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

.abt-sec-head h3 {
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  display: inline-block;
  background: var(--color-secondary);
  padding: 1px 13px;
}
.abt-sec-head h1 {
  font-size: 30px;
  text-transform: capitalize;
  color: var(--color-default);
  font-weight: 500;
}

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

.abt-sec-head h4 {
  color: var(--color-default);
  font-weight: 400;
  font-size: 28px;
  display: inline-block;
  padding: 3px 10px 6px;
}

.sec-head-shape img {
  width: 170px;
}

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

.abt-sec::before {
  content: " ";
  position: absolute;
  width: 700px;
  height: 700px;
  background: linear-gradient(to bottom, #c925040f, #ffffff00);
  border-radius: 18px;
  z-index: -1;
  left: -232px;
  top: 0px;
  transform: rotate(45deg);
}

.abt-matter p {
  line-height: 30px;
}

.abt-matter .abt-btn {
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  padding: 3px 10px;
}

.num-sec {
  position: relative;
  margin-bottom: 75px;
  margin-top: -100px;
}

.num-sec .num-row {
  position: relative;
}

.numb-icon img {
  width: 48px;
}

.num-blk {
  position: relative;
  width: 200px;
  margin: auto;
}

.num-txt-top {
  position: relative;
  margin-bottom: -7px;
}

.num-txt-top h2 {
  font-weight: 400;
  font-size: 48px;
  color: var(--color-primary);
  font-family: "Cinzel", serif;
}

.num-txt-btm {
  position: relative;
}

.num-txt-btm p {
  margin-bottom: 5px;
  font-weight: 400;
  color: var(--color-default);
  font-size: 17px;
}

.num-main-img {
  margin-bottom: 10px;
}

.num-btm {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: 26px 0px;
}

.doc-img {
  position: relative;
}

.doc-img img {
  box-shadow: 0px 0px 14px #0000002e;
}

.doc-img::after {
  content: " ";
  position: absolute;
  width: 185px;
  height: 185px;
  /* border: 1px solid var(--color-primary); */
  right: 50px;
  top: -20px;
  z-index: -1;
}

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

.doc-content {
  text-align: center;
  position: relative;
  background: linear-gradient(to top, #f1f1f1, #ffffff);
  padding: 17px 0px 24px;
}

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

.doc-content h2 {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 35px;
}

.doc-content h3 {
  font-weight: 500;

  font-size: 18px;
}

.doc-content p {
  margin-bottom: 5px;
  font-size: 15px;
}

.doc-content a {
  background: var(--color-secondary);
  color: #fff;
  padding: 4px 10px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
  width: fit-content;
}

.sec-head h3 {
  font-weight: 400;
  font-size: 22px;
  display: inline-block;
  background: var(--color-secondary);
  padding: 1px 13px;
  color: #fff;
}

.sec-head h2 {
  font-weight: 500;
  font-size: 43px;
  color: var(--color-primary);
}

.appt-box {
  position: relative;
  text-align: center;
  padding: 30px 30px;
  margin-top: 34px;
}

.appt-box::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0px;
  right: 0px;
  top: 0px;
  margin: auto;
  background: linear-gradient(to right, #ffffff00, var(--color-primary), #ffffff00);
}

.appt-box p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0px;
}

.appt-box h2 {
  font-size: 29px;
  margin-bottom: 10px;
  padding: 0px 35px;
}

.appt-box span {
  font-size: 21px;
}

.appt-box a {
  background: var(--color-primary);
  color: #fff;
  padding: 2px 10px 4px 10px;
  border-radius: 30px;
}

.serv-sec .sec-head h3 {
  padding: 3px 13px;
  color: #fff;
}

.serv-sec .sec-head p {
  color: var(--color-default);
}

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

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

.serv-sec::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../gallery/serv-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
  filter: grayscale(1);
  opacity: 0.8;
}

.serv-sec::after {
  content: " ";
  position: absolute;
  width: 700px;
  height: 700px;
  background: linear-gradient(to bottom, #c925040f, #ffffff00);
  border-radius: 18px;
  z-index: -1;
  right: -232px;
  top: 0px;
  transform: rotate(45deg);
}

.expert-block {
  position: relative;
  color: #ffffff;
}

.expert-block {
  position: relative;
}

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

.expert-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 600px;
  /* background: #00175d; */
  background: linear-gradient(to right, #ffffff, #00175d9e, #00175d9e);
  background: #00175dc7;
  z-index: -1;
  top: 0px;
  bottom: 0px;
  margin: auto;
  opacity: 0.85;
  transform: skewY(-1deg);
  /* clip-path: polygon(100% 0, 0 6%, 0 92%, 100% 100%); */
}

.expert-sec::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 600px;
  background-image: url(../gallery/endo-colono-ad.jpg);
  top: 0px;
  bottom: 0px;
  margin: auto;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -2;
  transform: skewY(-1deg);
  /* clip-path: polygon(100% 0, 0 6%, 0 92%, 100% 100%); */
}

.expert-outer {
  position: relative;
}

.expert-outer::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 600px;
  background: #ffd4cc;
  z-index: -3;
  top: 0px;
  bottom: 0px;
  margin: auto;
  transform: skewY(2deg);
  box-shadow: 0px 0px 8px #00000059;
}

.expert-title h2 {
  font-weight: 400;
  font-size: 35px;
  background: var(--color-secondary);
  color: #fff;
  padding: 4px 20px;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  border-radius: 10px;
}

.expert-title h2::before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 15px solid #ffffff00;
  border-right: 25px solid #ffffff;
  border-bottom: 15px solid #ffffff00;
  right: -10px;
  top: -16px;
}

.expert-title h3 {
  font-size: 24px;
  color: #fff;
  text-align: right;
  left: -55px;
  font-weight: 500;
  margin-bottom: 8px;
}

.expert-title p {
  line-height: 30px;
}

.expert-block h4 {
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
  padding: 3px 10px;
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
  background: linear-gradient(to right, #f79d8b47, #ffffff00);
}

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

.ol_styles li {
  position: relative;
  margin-bottom: 5px;
  line-height: 26px;
  font-size: 15px;
  list-style: disc;
}

.endo-side {
  /* background: #ffffff14; */
  position: relative;
  padding: 15px 0px 10px;
  border-radius: 20px;
}

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

.endo-row {
  position: relative;
}

.endo-row::before {
  content: " ";
  position: absolute;
  width: 83%;
  height: 100%;
  background: linear-gradient(to right, #ffffff00, #ffffff1f, #ffffff00);
  top: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  z-index: -1;
}

.serv-blk {
  position: relative;
  margin-bottom: 25px;
}

.serv-txt h2 {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  background-color: #d3282b;
  padding: 3px 12px;
  display: inline-block;
  border-radius: 25px;
  background: linear-gradient(to left, var(--color-primary), var(--color-secondary));
}

.serv-scroll1 {
  margin-bottom: 50px;
}

.two {
  margin-top: -75px;
}

@media (min-width: 1200px) {
  .serv-sec .container {
    max-width: 1260px;
  }
}

.serv-btm-txt h2 {
  color: var(--color-default);
  font-weight: 400;
  background: linear-gradient(to right, #f1f4ff, #fdefec);
  display: inline-block;
  padding: 15px 30px;
  clip-path: polygon(0 0, 100% 0%, 97% 50%, 100% 100%, 0% 100%, 3% 50%);
  font-size: 28px;
  line-height: 35px;
}

.serv-img {
  margin-bottom: 15px;
}

.serv-img img {
  filter: drop-shadow(0 7px 5px #48466b);
}

.serv-btm-txt {
  padding-top: 50px;
}

.appointment-form h2 {
  position: relative;
  font-weight: 500;
  display: inline-block;
  color: var(--color-primary);
  font-size: 30px;
  text-transform: uppercase;
}

.appointment-form p {
  font-size: 15px;
  color: var(--color-default);
}

.appointment-form {
  padding: 66px 40px 55px;
  position: relative;
  background: linear-gradient(to top, #ffede9, #ffffff);
  z-index: 2;
  border-radius: 10px;
  box-shadow: 0px 0px 8px #00000033;
}

.appointment-form::before {
  content: " ";
  position: absolute;
  width: 97%;
  height: 98%;
  border: 1px solid var(--color-default);
  background-position: center;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  margin: auto;
}

.appointment-form::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/appnt-bg.png);
  background-position: center;
  background-size: 150%;
  background-repeat: no-repeat;
  left: 0px;
  top: 0px;
  z-index: -1;
  border-radius: 80px 0px;
  opacity: 0.18;
  filter: grayscale(1);
}

.btn-style-one {
  margin-top: 25px;
  background: var(--color-secondary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 24px;
}

.form-group i {
  position: absolute;
  left: 25px;
  top: 15px;
  color: #000000eb;
  font-size: 15px;
}

.shape2 {
  margin-bottom: 20px;
  position: relative;
  width: 46%;
  height: 1px;
  bottom: -5px;
  background-color: #fff;
  right: -318px;
}

.shape2::after {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  right: -10px;
  top: -6px;
  border-radius: 50%;
  background-color: #fff;
}

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

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

.appointment-form .form-control {
  color: #000000;
  border-bottom: none;
  background: #ffffff00;
  padding: 11px 33px;
  font-size: 15px;
  border-bottom: 1px solid #0000008d;
  border-radius: 0px;
}

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

.test-txt h2 {
  color: var(--color-primary);
  font-size: 25px;
  margin-bottom: 12px;
}

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

.test-sec::before {
  content: " ";
  position: absolute;
  width: 700px;
  height: 700px;
  background: linear-gradient(to bottom, #c925040f, #ffffff00);
  border-radius: 18px;
  z-index: -1;
  left: -232px;
  top: 0px;
  transform: rotate(45deg);
}

.test-outer {
  position: absolute;
  top: 0px;
  width: 540px;
}

.test-row {
  position: relative;
  padding-top: 15px;
}

.test-txt {
  position: relative;
  top: 0;
  left: 0;
  padding: 90px 40px;
}

.test-blk {
  position: relative;
}

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

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

.faq-content {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  padding: 70px 22px 70px 49px;
  text-align: center;
}

.faq-content h2 {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 500;
}

.faq-content p {
  font-size: 14px;
  line-height: 24px;
}

.faq-block {
  position: relative;
}

.footer-round {
  padding: 25px 0 0px 0;
}

.footer-round h3 {
  margin-bottom: 25px;
}

.footer-widget h3,
.footer-widget h4 {
  color: #ffffff;
}

.footer-widget h3 {
  font-size: 52px;
  font-weight: normal;
  color: #ffffff;
}

.footer_logo {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}

._f_add_row .col-md-5:nth-child(2) {
  border-right: 1px dashed #969696;
}

.footer_add_info {
  position: relative;
}

.footer_add_info i {
  display: inline-block;
  width: 37px;
  height: 37px;
  background: linear-gradient(to left, #3a3b3c, var(--color-primary));
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 34px;
  border-radius: 50%;
  margin: 0 0 10px;
  position: relative;
  left: 0;
}

.footer_add_info p {
  color: var(--color-default);
}

.footer_add_info p a {
  color: var(--color-default);
}

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

.footer_map a {
  display: inline-block;
  position: relative;
  /* box-shadow: 0px 0px 10px #ccc; */
  /* padding: 10px; */
}

.social-icons.style-2 ul li {
  display: inline-block;
}

._f_add_row {
  text-align: center;
}

.footer_add_info h2 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 3px;
  /* border-bottom: 1px solid; */
}

._f_add_row .col-md-6:nth-child(1) {
  /* border-right: 1px dashed #969696; */
}

._f_add_row .footer_add_info.bb {
  /* border-bottom: 1px dashed #969696; */
}

.pt {
  /* padding-top: 20px; */
}

.useful-links {
  text-align: center;
  display: table;
  margin: 30px auto 40px;
  border-bottom: 1px solid #b5b4b4;
  padding: 8px 0;
  border-top: 1px solid #b5b4b4;
}

.useful-links span {
  display: inline-block;
  margin-right: -5px;
  font-size: 21px;
  color: var(--color-teritary);
}

.useful-links ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}

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

.useful-links ul li a {
  display: block;
  color: #3a3a3a;
  font-size: 17px;
  padding: 0 9px;
  border-right: 1px solid #b5b4b4;
}

.useful-links ul li:last-child a {
  border: none;
}

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

.footer-area.style-2 {
  position: relative;
}

.footer-area.style-2::before {
  content: " ";
  position: absolute;
  width: 900px;
  height: 900px;
  background: linear-gradient(to top, #ffffff00, #c925040f);
  border-radius: 50%;
  left: 0px;
  right: 0px;
  bottom: -248px;
  margin: auto;
  z-index: -1;
}

.footer-top {
  position: relative;
}

.footer-round {
  padding: 25px 0 0px 0;
}

.footer_logo {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}

.footer_logo img {
  width: 158px;
}

.social-icons.style-2 ul {
  list-style: none;
  display: inline-block;
  padding: 0px 57px 5px;
}

.social-icons.style-2 ul li {
  display: inline-block;
}

.social-icons.style-2 li a {
  border-radius: 8px;
  height: 32px;
  width: 32px;
  line-height: 32px;
  display: block;
  background: var(--color-primary);
  font-size: 15px;
  color: #fff;
  border: 1px solid;
}

.social-icons.style-2 li a img {
  width: 15px;
  filter: brightness(0) invert(1);
}

.social-icons.style-2 li a:hover {
  background: var(--color-secondary);
}

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

.footer_links1 {
  text-align: center;
}

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

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

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

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

.footer_add_info {
  position: relative;
}

.footer_add_info i {
  display: inline-block;
  width: 37px;
  height: 37px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 37px;
  border-radius: 50%;
  margin: 0 0 10px;
  position: relative;
  left: 0;
}

.contact-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-info li {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-default);
  margin-top: 20px;
  text-align: center;
  padding: 19px 53px;
  box-shadow: 0 8px 8px #c9c9c9;
  background: linear-gradient(to bottom, #fff, #f0f0ff);
}

.contact-info li:nth-child(1)::after,
.contact-info li:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 75px;
  background: var(--color-primary);
  right: 0;
  top: 33%;
}

.contact-info li h3 {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 21px;
}

.contact-info li .icon {
  position: relative;
  display: table;
  left: 0;
  top: 0;
  margin: 0 auto 9px;
  font-size: 20px;
  line-height: 40px;
  width: 41px;
  height: 41px;
  background: linear-gradient(to left, #3a3b3c, var(--color-primary));
  text-align: center;
  color: #fff;
  border-radius: 50%;
}

.contact-info li:last-child {
  border-right: 0px;
}

.copyright-text {
  color: #ffffff;
  padding: 8px 40px 5px;
  background: #001a67;
  display: inline-block;
}

.copyright-text p {
  margin-bottom: 0;
}

.copyright-text p a {
  color: #fff;
  font-weight: 600;
}

.call-us {
  position: fixed;
  bottom: 20px;
  left: 23px;
  line-height: 48px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
}

.call-us img {
  width: 55px;
  filter: drop-shadow(0 0px 8px rgb(0 0 0 / 38%));
}

.hand_problems_section {
  position: relative;
  padding: 50px 45px;
  background: #001a67;
  border-radius: 100px;
}

/* .hand_problems_section::before{ 
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 100px;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
} */

.news-letter {
  position: relative;
  margin-bottom: 12px;
}

.news-letter .container {
  max-width: 1260px;
}

._prmls_title {
  color: #fff;
  font-size: 33px;
  font-weight: 400;
}

.prlm_btn a {
  color: #fff;
  background: var(--color-secondary);
  padding: 8px 25px;
  border-radius: 5px;
  font-size: 25px;
  display: inline-block;
  margin-top: 20px;
}

.top-social {
  position: absolute;
  z-index: 91;
  text-align: center;
  top: 24px;
  right: 20px;
  width: auto;
  display: inline-flex;
}

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

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

.top-social li a {
  display: block;
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  text-align: center;
  line-height: 32px;
  font-size: 16px;
  margin: 0px 1px;
  border: 1px solid #0e146b24;
}

.top-social li a img {
  width: 18px;
}

.top-social li a:hover {
  color: var(--color-secondary);
}

.footer_top {
  margin-top: 20px;
}

.test-ad {
  text-align: center;
}

.footer_descp p {
  font-size: 16px;
}

.serv-main-blk {
  position: relative;
  cursor: pointer;
  padding-top: 43px;
  display: block;
}

.serv-main-blk .serv-content h2 {
  background: linear-gradient(to right, #ffffff00, #ffece8, #ffffff00);
  text-transform: uppercase;
  color: var(--color-default);
  font-size: 20px;
  font-weight: 500;
  padding: 4px 30px;
  margin-top: 10px;
}

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

.serv-blk-img img {
  width: 315px !important;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
  margin: auto;
}

.serv-main-blk:hover .serv-blk-img img {
  transform: scale(1.1);
  top: -20px;
}

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

.blog-sec::after {
  content: " ";
  position: absolute;
  width: 700px;
  height: 700px;
  background: linear-gradient(to bottom, #c925040f, #ffffff00);
  border-radius: 18px;
  z-index: -1;
  right: -232px;
  top: 0px;
  transform: rotate(45deg);
}

.blog-block {
  position: relative;
  cursor: pointer;
  padding: 0px 30px 30px;
}

.blog-block::before {
  content: " ";
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(59deg, #fbf1ee, #ffffff00);
  border-radius: 50%;
  left: 0px;
  right: 0px;
  margin: auto;
  top: 8px;
}

.blog-img {
  position: relative;
  text-align: end;
}

.blog-img img {
  width: 148px;
  border-radius: 50%;
  border: 6px solid var(--color-primary);
  transition: all 300ms ease;
}

.blog-block:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  position: relative;
  margin-top: 10px;
  padding: 10px 20px;
}

.blog-content::before {
  content: " ";
  position: absolute;
  width: 70%;
  height: 2px;
  background: var(--color-secondary);
  top: 0px;
  left: -48px;
}

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

.blog-content p {
  margin-bottom: 8px;
}

.blog-numb {
  position: absolute;
  left: 18px;
  top: 75px;
  font-size: 112px;
  font-weight: 700;
  opacity: 0.1;
  color: var(--color-primary);
}

.blog-content a {
  background: var(--color-primary);
  color: #fff;
  padding: 1px 8px;
  border-radius: 30px;
  font-size: 15px;
}

.blog-row {
  padding-top: 15px;
}

.blog-emerg-sec {
  position: absolute;
  top: 28px;
  left: 55px;
  background: var(--color-secondary);
  color: #fff;
  width: 350px;
  text-align: center;
  border-radius: 18px;
}

.blog-emerg-sec p {
  margin-bottom: 0px;
  padding: 30px 22px 16px;
  font-size: 23px;
  line-height: 30px;
  font-weight: 300;
}

.ol_styles1 {
  text-align: center;
}

.ol_styles1 li {
  margin-bottom: 11px;
  font-size: 16px;
  display: inline-block;
  border-right: 1px solid;
  padding: 0px 9px;
  line-height: 16px;
}

.f-left::before {
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  top: -81px;
  left: 0;
  background-image: url(../gallery/q-top.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.2;
  margin: auto;
  right: 0;
}

.f-one {
  position: relative;
  min-height: 200px;
  background: linear-gradient(to left, #ffffff, #eaeaea);
  border-radius: 25px;
  margin-bottom: 25px;
  padding: 18px;
  box-shadow: 0px 0px 8px #00000014;
}

.f-one h2 {
  font-size: 25px;
  color: var(--color-primary);
}

.f-one p {
  margin-top: 5px;
  margin-bottom: 0px;
}

.testi-star {
  display: inline-block;
  padding: 0px;
  border-radius: 15px;
  color: #000000;
  position: relative;
  font-size: 13px;
}

.f-right {
  margin-top: 25px;
}

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

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

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

.loc-row .col-md-4:nth-child(2)::before,
.loc-row .col-md-4:nth-child(3)::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 60%;
  background: linear-gradient(to top, #ffffff00, var(--color-primary), #ffffff00);
  left: 0px;
  bottom: 0px;
  top: 0px;
  margin: auto;
}

.top-wrap1 {
  position: relative;
}

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

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

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

.serv-matter h2 {
  color: #000;
  font-size: 20px;
  margin: 19px 0px 3px;
  text-transform: uppercase;
}

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

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

.inner-serv-img img {
  border: 1px solid;
  padding: 8px;
  filter: drop-shadow(2px 2px 4px #00000047);
  border-radius: 10px;
}

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

.breadcrumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/bread-crumb-img.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  opacity: 0.1;
  left: 0;
}

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

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

.breadcrumb h1 {
  color: #000;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 11px;
  /* padding: 0px 10px; */
  position: relative;
}

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

.breadcrumb ul li.active a {
  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: 2px 8px;
  margin: 0;
  border-radius: 30px;
}

.breadcrumb ul {
  position: relative;
  display: inline-block;
  background: #fff;
  box-shadow: 0px 10px 14px -10px #0000008c;
}

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

.contact-loc-block {
  position: relative;
  background: var(--color-primary);
  padding: 30px 20px 50px;
  border-radius: 20px;
  color: #fff;
  margin-bottom: -40px;
}

.loc-box p,
.loc-box p a {
  color: #fff;
}

.contact-map {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-map iframe {
  width: 600px;
  height: 268px;
  border: 8px solid #fff;
  box-shadow: 0px 14px 10px -10px #00000073;
  border-radius: 8px;
}

.loc-head {
  position: absolute;
  top: -100px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.loc-head h2 {
  text-transform: uppercase;
  font-size: 68px;
  color: #8181811c;
  font-weight: 700;
}

.loc-icon {
  position: relative;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--color-secondary);
  color: #fff;
  text-align: center;
  margin: 0px auto 6px;
  border-radius: 50%;
}

.contact-loc-block .col-md-4:nth-child(2)::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff00, #ffffff1c, #ffffff00);
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: -18px;
  margin: auto;
}

.contact-form {
  position: relative;
  margin-top: 50px;
  background: #fff;
  padding: 24px 35px 22px;
  box-shadow: 0px 0px 10px #0000002b;
  border-radius: 8px;
}

.contact-form::before {
  content: " ";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--color-secondary);
  z-index: -1;
  left: -12px;
  bottom: -14px;
}

.contact-form::after {
  content: " ";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--color-secondary);
  z-index: -1;
  right: -12px;
  bottom: -14px;
}

.contact-form h2 {
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 1px dashed;
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 30px;
}

.contact-form .form-control {
  background: #f3f3f3;
  text-transform: uppercase;
}

.contact-form textarea {
  height: 80px;
}

.contact-form .btn {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  position: relative;
  top: -8px;
  text-transform: uppercase;
}

.serv-matter .ol_styles li {
  font-size: 16px;
}

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

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

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

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

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

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

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

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

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

  border: 2px solid #fff;

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

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

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

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

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

  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

  top: -5px;

  left: -1px;
}

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

.main-timeline-review {
  position: absolute;
  top: 0;
  right: 74px;
  padding: 4px 30px 3px;
  text-align: center;
  background: linear-gradient(to left, var(--color-primary), var(--color-secondary));
  border-radius: 31px;
  border-top: 4px solid var(--color-primary);
}

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

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

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

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

.abt-pg-doc {
  position: relative;
  text-align: center;
}

.abt-pg-doc img {
  border-radius: 999px;
  box-shadow: 0px 0px 7px #0000005e;
}

.abt-pg-img-inner {
  position: relative;
  width: fit-content;
  margin: 0px 50px;
}

.abt-pg-img-inner::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  border-radius: 999px;
  left: -10px;
  top: -9px;
}

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

.abt-pg-content {
  margin-bottom: 40px;
}

.abt-pg-right .ol_styles li {
  font-size: 16px;
}

.abt-pg-right h5 {
  font-size: 18px;
  color: var(--color-primary);
  margin: 10px 0px 3px;
}

.abt-pg-head h2 {
  text-transform: uppercase;
  font-size: 45px;
  color: var(--color-secondary);
}

.abt-pg-head h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.abt-pg-head h4 {
  font-size: 20px;
}

.abt-pg-head {
  position: relative;
  padding: 10px 0px;
}

.abt-pg-head::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f1f3f9;
  left: -18px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.box {
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 230px;
  border: 2px solid #fff;
  box-shadow: 0px 16px 12px -10px #0000006b;
  margin-top: 12px;
}

.box:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.box:before {
  content: "";
  background: rgba(111, 111, 111, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.box:hover:before {
  top: 0;
}

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

.box:hover img {
  opacity: 0.7;
  transform: scale(1.3);
}

.box .box-content {
  color: #fff;
  background: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  padding: 15px 0 20px;
  transform: translateX(-50%);
  position: absolute;
  top: -130px;
  left: 50%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.box:hover .box-content {
  top: 0;
}

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

.box .post {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0 0 10px;
  display: block;
}

.box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
  transition: all 0.4s ease-out;
}

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

.box .icon li a {
  color: #fff;
  font-size: 16px;
  line-height: 32px;
  height: 35px;
  width: 35px;
  border: 2px solid #fff;
  display: block;
  transition: all 0.3s;
}

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

.box .icon li a:hover {
  box-shadow: 0 0 5px #fff;
}

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

  .inner-imgs-head {
    margin-top: 30px;
  }
}

.inner-imgs-head h2 {
  font-size: 18px;
  font-weight: 500;
}

.news-page .box {
  height: 180px;
  margin-bottom: 20px;
}

.awards-row {
  margin-top: 50px;
}

.awards-row-head {
  margin-bottom: 30px;
}

.awards-row-head h2 {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  padding: 4px 10px;
}

.video-block iframe {
  width: 100%;
  height: 210px;
  box-shadow: 0px 0px 12px #0000004f;
}

.video-block {
  position: relative;
  border: 1px solid var(--color-default);
  line-height: normal;
  padding: 10px 10px 4px 10px;
  margin-bottom: 20px;
}

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