/***
====================================================================
	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: #26a5a5;
  --color-secondary: #4a3897;
}

.container {
  position: relative;
}

.mobile-view {
  display: none;
}

.fixed-header .header-one {
  position: fixed;
  -webkit-animation-name: slideInDown;
  -webkit-animation-duration: 700ms;
  -webkit-animation-timing-function: ease;
  -moz-animation-name: slideInDown;
  -moz-animation-duration: 700ms;
  -moz-animation-timing-function: ease;
  -ms-animation-name: slideInDown;
  -ms-animation-duration: 700ms;
  -ms-animation-timing-function: ease;
  animation-name: slideInDown;
  animation-duration: 700ms;
  animation-timing-function: ease;
  background-color: #fff;
  box-shadow: 0px 0px 10px;
  height: 105px;
  width: 100%;
}

.fixed-header .main-menu {
  margin: 54px 0 0;
}

.fixed-header .top-social {
  top: 16px;
}

.fixed-header .top-phn-btn {
  top: 18px;
}

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

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

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

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

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

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

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

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

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

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

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

.page-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -99;
  background-image: url(../gallery/bgg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  top: 0px;
  opacity: 0.5;
}

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

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

/**header-main**/
.header-main {
  position: absolute;
  width: 100%;
  z-index: 5;
  background: #fff;
  height: 108px;
  box-shadow: 0px 0px 12px #000;
}

.header-one {
  position: relative;
}

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

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

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

.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: 54px 0 0;
  top: 0;
}

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

.main-menu .navigation {
  position: relative;
  display: block;
}

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

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

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

.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: linear-gradient(to top, var(--color-primary), var(--color-secondary));
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-menu .navigation>li>ul.cstmwidth2 {
  width: 200px;
}

.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: 128px;
  opacity: 0;
  z-index: 100;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  box-shadow: 0px 0px 5px #a5a5a5;
  border-radius: 8px;
  overflow: hidden;
}

.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 {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d1d1d13d;
}

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

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

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

/*
* 4. banner style
*/
.banner-wrapper {
  position: relative;
  background-image: url(../gallery/banners/bggg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

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

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

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

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

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

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

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

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

.top-border {
  position: relative;
  background: linear-gradient(to left, #3eb8bab0, #cbffff80, #3eb8bab0);
  width: 75%;
  height: 10px;
  border-radius: 25px;
  margin: auto;
  margin-top: -5px;
  z-index: 9;
}

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

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

.sec-head h4 {
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
  font-weight: 500;
  padding-right: 25px;
}

.sec-head h4::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-left: 3px solid var(--color-secondary);
  background-color: var(--color-primary);
  z-index: -1;
  left: -17px;
}

.sec-head h2 {
  font-size: 72px;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 73px;
}

.sec-head h3 {
  color: var(--color-secondary);
  font-weight: 500;
  display: inline-block;
  padding-bottom: 10px;
}

.sec-head h3::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 70%;
  right: -50px;
  bottom: 0;
  background-color: var(--color-primary);
}

.sec-head h3::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  right: -50px;
  bottom: 0;
  background-color: var(--color-primary);
}

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

.extra-sec {
  position: relative;

  margin-bottom: 100px;
}

.extra-blk {
  position: relative;
  padding: 95px;
  box-shadow: 9px 9px 0px #26a5a542;
  border-radius: 25px;
}

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

.extra-blk::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;

  left: 0;
  top: 0;
  z-index: -2;
  background: #025658;
  border-radius: 25px;
}

.donate-img {
  margin: auto;
}

.extra-head h2 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 400;
}

.btns-row {
  position: relative;
}

.btns-row .col-md-4:nth-child(1)::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  border-left: 1px dashed #fff;
  top: 0;
  right: -8px;
  margin: auto;
}

.extra-head {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.extra-head::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 80%;
  border-top: 1px dashed #fff;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

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

.num-blk {
  position: relative;
  margin-bottom: 50px;
}

.num-txt {
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
}

.num-txt h2 {
  font-size: 69px;
  color: var(--color-primary);
  line-height: 91px;
}

.num-txt h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-default);
  display: inline-block;
  padding: 0 27px;
  padding-top: 23px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 8px;
}

/* .num-sec .col-md-3::after{
  content: "";
  position: absolute;
  height: 80%;
  width: 2px;
  background: linear-gradient(to top, #fff0,var(--color-primary),#fff0);
  bottom: 0;
  right: 0;
} */
/* .num-sec .col-md-3:nth-child(5):after{
  display: none;
} */

/* .num-txt h3::before{
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, #fff0, Var(--color-primary),#fff0);
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
} */
.num-txt h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-primary);
  transform: translateX(-50%);
  transition: width 0.4s ease;
  transform-origin: center;
}

.num-blk:hover .num-txt h3::after {
  width: 100%;
}

.serv-sec {
  position: relative;

  min-height: 85vh;
  margin-bottom: 100px;
  z-index: 1;
  padding-bottom: 71px;
}

.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;
  clip-path: polygon(0% 0%, 50% 10%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
  opacity: 0.2;
}

.serv-sec::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to left, #0e7373, #36296e);
  clip-path: polygon(0% 0%, 50% 10%, 100% 0%, 100% 100%, 0% 100%);
  top: 0;
  left: 0;
  right: 0;
  z-index: -2;
}

/* .serv-shap1{
  background-color: var(--color-default);
  z-index: -3;
  top: 0;
  position: absolute;
  width: 50%;
  height: 100px;
  right: 0;
  left: 0;
  margin: auto;
} */

.serv-sec .sec-head {
  padding-top: 125px;
}

.serv-sec .sec-head h2 {
  font-size: 60px;
  text-transform: uppercase;
  color: #fff;
  line-height: 73px;
  display: inline-block;
  font-weight: 400;
}

.serv-sec .sec-head h3 {
  color: var(--color-secondary);
  font-weight: 500;
  display: inline-block;
  padding-bottom: 10px;
}

.serv-sec .sec-head-two {
  position: relative;
}

.serv-sec .sec-head h2::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 70%;
  right: -50px;
  bottom: 0;
  background-color: #fff;
}

.serv-sec .sec-head h2::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  right: -50px;
  bottom: 0;
  background-color: #fff;
}

.serv-sec .sec-head h4 {
  color: var(--color-primary);
  display: inline-block;
  background-color: #fff;
  font-weight: 500;
  padding-right: 25px;
}

.serv-sec .sec-head h4::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-left: 3px solid var(--color-primary);
  background-color: #fff;
  z-index: -1;
  left: -17px;
}

.abt-head h3 {
  font-weight: 500;
  font-size: 30px;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
  padding: 10px 20px 10px 0px;
  text-align: end;
}

.abt-head h3::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #fff;
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 0px;
}

.abt-head h2 {
  display: inline-block;
  padding-left: 10px;
  font-size: 40px;
  position: relative;
}

.abt-head h3::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: #fff;
  top: 0;
  right: 0;
}

.abt-head .one-h {
  font-weight: 500;
  display: block;
  font-size: 26px;
  line-height: 23px;
  color: #fff;
}

.abt-head .two-h {
  font-weight: 500;
  font-size: 35px;
}

.abt-head .one-h2 {
  display: block;
  color: var(--color-primary);
  font-weight: 400;
  font-family: "Marcellus", serif;
  font-size: 63px;
  text-transform: uppercase;
}

.serv-sec .one-h2 {
  display: block;
  color: #fff;
  font-weight: 400;
  font-family: "Marcellus", serif;
  font-size: 55px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.serv-sec .two-h {
  font-weight: 500;
  font-size: 35px;
  color: #fff;
}

.serv-sec .abt-head {
  padding-top: 181px;
}

.abt-head p {
  margin-bottom: 0px;
  color: #fff;
  margin-top: 5px;
  padding: 0 200px;
}

.num-sec .col-md-3 {
  flex: 0 0 20%;
}

.doc-img {
  width: 320px;
}

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

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

.serv-txt {
  position: absolute;
  top: 22px;
  left: 17px;
}

.gallery-block {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0px 0px 6px #00000092;
}

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

.box:before,
.box:after {
  content: "";
  background: linear-gradient(45deg, rgb(38 165 165 / 0.51), rgb(74 56 151 / 46%));
  width: 200%;
  height: 200%;
  opacity: 0.75;
  transform: skew(45deg) translateX(100%);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.6s ease;
}

.box:after {
  transform: skew(45deg) translateX(-100%);
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  z-index: 0;
}

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

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

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

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

.box:hover .box-content {
  opacity: 1;
}

.box .title {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin: 0 0 3px;
}

.box .post {
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 1px;
  text-transform: capitalize;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin: 0 0 10px;
  display: block;
}

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

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

.box .icon li a {
  color: var(--color-secondary);
  background: #fff;
  font-size: 16px;
  line-height: 34px;
  width: 34px;
  height: 34px;
  display: block;
  transition: all 0.35s;
}

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

.serv-txt h2 {
  font-size: 22px;
  color: var(--color-primary);
  font-weight: 600;
  display: inline-block;
  padding-bottom: 20px;
}

.serv-txt h2::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  right: 0;
  background: linear-gradient(to left, #fff0, var(--color-primary));
}

.media-sec {
  position: relative;
  margin-bottom: 100px;
  min-height: 85vh;
}

.media-sec .abt-head h3::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--color-primary);
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 0px;
}

.media-sec .abt-head h3::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: var(--color-primary);
  top: 0;
  right: 0;
}

.media-sec .one-h2 {
  display: block;
  color: var(--color-primary);
  font-weight: 400;
  font-family: "Marcellus", serif;
  font-size: 55px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.media-sec .abt-head .one-h {
  font-weight: 500;
  display: block;
  font-size: 26px;
  line-height: 23px;
  color: var(--color-primary);
}

.gallery-img img {
  filter: grayscale(1);
}

.footer_section {
  position: relative;
}

.footer_section .footer_add_row {
  position: relative;
}

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

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

.address_info_sec i {
  position: relative;
  left: 0px;

  width: 40px;
  height: 40px;
  font-size: 24px;
  text-align: center;
  color: var(--color-primary);
  border-radius: 50%;
  line-height: 40px;
  display: inline-block;
}

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

.bottom-footer p {
  margin: 0;
  color: var(--color-default);
  font-size: 15px;
  display: inline-block;

  padding: 10px 15px;
  border-top: 1px solid var(--color-default);
}

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

.block1 {
  margin-top: 15px;
}

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

.footer_section .footer_top {
  position: relative;
  padding: 15px 10px 10px;
  margin-top: 25px;
}

.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);
  font-weight: 500;
}

.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 {
  width: 350px;
  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: 39px;
  /* color: #333; */
  color: var(--color-default);
  background-color: #fff;
  margin: 0 4px;

  font-size: 19px;
  border: 1px dashed var(--color-primary);
  background: #26a5a50d;
}

/* .footer-widget__social li:nth-child(1) a {
  color: #3978ca;
}
.footer-widget__social li:nth-child(2) a {
  color: #eb2020;
}
.footer-widget__social li:nth-child(3) a {
  color: #0e9ec8;
}
.footer-widget__social li:nth-child(4) a {
  color: #e9289a;
}
.footer-widget__social li:nth-child(5) a {
  color: #f00;
} */
.footer-widget__social li a:hover {
  color: #ffffff;
  background: var(--color-primary);
}

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

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

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

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

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

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

.footer_wid .address_info_sec {
  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: 15px;
  line-height: 28px;
  margin: 0;
  padding: 0px 0px 25px;
}

.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-adr i {
  font-size: 22px;
  display: inline-block;
  background-color: var(--color-secondary);
  color: #fff;
  padding: 10px;

  height: 40px;
  width: 40px;
  background: linear-gradient(to top, var(--color-primary), #26a5a500);
}

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

.footer_section .f-adr {
  text-align: center;
  padding-top: 6px;
}

.footer_section .f-call {
  position: relative;
}

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

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

.footer_section .footer-btm a {
  color: var(--color-default);
  font-size: 15px;
  display: block;
}

.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: 30px;
  margin-bottom: 10px;
}

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

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

  background: #26a5a526;
  padding: 5px 16px;
}

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

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

.subscribe-block::before {
  content: "";
  position: absolute;
  height: 120%;
  width: 95%;
  top: -10px;
  left: 0;
  right: 0;
  bottom: -10px;
  background-color: #d5d5d5;
  margin: auto;
  z-index: -1;
}

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

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

.media-sec .abt-head p {
  margin-bottom: 0px;
  color: var(--color-default);
  margin-top: 5px;
  padding: 0 200px;
}

.gallery-row {
  padding-top: 55px;
}

.gallery-row .col-md-3:nth-child(1),
.gallery-row .col-md-6:nth-child(2),
.gallery-row .col-md-3:nth-child(3) {
  padding: 0px 8px;
}

.gallery-row .col-md-6:nth-child(2) .col-md-6:nth-child(1) {
  padding-right: 8px;
  padding-left: 15px;
}

.gallery-row .col-md-6:nth-child(2) .col-md-6:nth-child(2) {
  padding-left: 8px;
  padding-right: 15px;
}

.footer-btm {
  background: linear-gradient(to left, var(--color-secondary), var(--color-primary));
  padding: 30px 1px;
  border: 7px solid #fff;
  box-shadow: 0 0 10px #0000003d;
}

.footer-btm .f-adr p {
  font-size: 15px;
  color: #fff;
}

.footer-btm .f-mail a {
  color: #fff;
  font-size: 15px;
  display: block;
}

.footer-btm .f-call a {
  color: #fff;
}

.footer-btm .col-md-4 {
  border: 1px dashed #fff;
  border-top: none;
  border-bottom: none;
}

.top-wrap1 {
  position: relative;
}

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

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

.breadcrumb::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  top: 0;
  left: 0;
  z-index: -2;
}

.bread-bg {
  padding: 38px 0px;
  position: relative;
  text-align: center;
}

.breadcrumb h1 {
  color: #fff;
  font-size: 43px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 0px;
}

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

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

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

  background: var(--color-primary);
  border-radius: 11px;
  box-shadow: 2px 2px 0px #fdfdfd85;
  margin-right: 5px;
  margin-bottom: 9px;
}

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

.breadcrumb ul i {
  font-size: 22px;
  position: relative;
  color: #fff;
  top: 2px;
}

.bread-bg .active a {
  color: #fff;
}

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

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

._cform {
  position: relative;
  padding: 23px 23px;
  text-align: center;
}

._cform::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 119%;
  /* border: 2px solid var(--color-primary); */
  top: 0;
  right: 0;
  z-index: -1;
  border-top-right-radius: 75px;
}

._cform h3 {
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 34px;
  color: var(--color-default);
  display: inline-block;
  border-bottom: 1px dashed;
  padding-bottom: 9px;
}

._cform .form-control {
  height: 50px;
}

._cform textarea {
  height: 150px !important;
  border-radius: 28px !important;
}

.c-map iframe {
  box-shadow: 0 0 10px #26a5a569;
  border-radius: 24px;
  width: 100%;
  height: 330px;
}

.c-map h3 {
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 34px;
  color: var(--color-default);
  display: inline-block;
  border-bottom: 1px dashed;
  padding-bottom: 9px;
}

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

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

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

.c-form-row {
  position: relative;
  padding: 25px 15px;
  /* background: #eefcff;
  border-radius: 28px; */
}

.c-form-row .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-primary);
  background-color: #d0f4f4a6;
  background-clip: padding-box;
  border-bottom: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-radius: 49px;
}

.c-form-row .form-control:focus {
  box-shadow: 0 0 10px #26a5a569;
}

.gallery_block {
  margin-bottom: 28px;

  box-shadow: 0 0 10px #29292938;

  border-radius: 20px;
  overflow: hidden;
}

.ip-imgs {
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  font-family: "Raleway", sans-serif;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease 0s;
}

.ip-imgs:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.ip-imgs:before,
.ip-imgs:after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.15);
  transition: all 0.5s;
}

.ip-imgs:before {
  transform: scale(0, 1);
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.ip-imgs:after {
  transform: scale(1, 0);
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
}

.ip-imgs:hover:before,
.ip-imgs:hover:after {
  opacity: 0.8;
  transform: scale(1);
}

.ip-imgs img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
}

.ip-imgs:hover img {
  opacity: 0.2;
  filter: blur(5px);
  transform: scale(1.1);
}

.ip-imgs .ip-box-content {
  color: #fff;
  width: 100%;
  transform: translateY(-30%);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  transition: all 0.5s ease;
}

.ip-imgs:hover .ip-box-content {
  transform: translateY(-50%);
}

.ip-imgs .ip-icon {
  padding: 0;
  margin: 0;
  list-style: none;
  transform: scale(0);
  transition: all 0.5s ease;
}

.ip-imgs:hover .ip-icon {
  transform: scale(1);
}

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

.ip-imgs .ip-icon li a {
  color: var(--color-primary);
  background-color: #fff;
  font-size: 16px;
  line-height: 35px;
  height: 35px;
  width: 35px;
  display: block;
  transition: all 0.5s ease 0s;
}

.ip-imgs .ip-icon li a:hover {
  color: #fff;
  background: var(--color-secondary);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

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

/* .ip-imgs {
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  text-align: center;
  overflow: hidden;
  position: relative;
}
.ip-imgs:before {
  content: "";
  width: 100%;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 30px var(--color-primary);
  transition: all 0.35s;
  z-index: 1;
}
.ip-imgs:hover:before {
  width: calc(100% - 50px);
  height: calc(100% - 50px);
}
.ip-imgs img {
  width: 100%;
  height: auto;
  transition: all 0.35s;
}
.ip-imgs:hover img {
  opacity: 0.3;
}
.ip-imgs .ip-box-content {
  color: #fff;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-50%) scale(0);
  position: absolute;
  top: 50%;
  left: 25px;
  right: 25px;
  z-index: 2;
  transition: all 0.4s ease;
}
.ip-imgs:hover .ip-box-content {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.ip-imgs .ip-icon {
  padding: 0;
  margin: 0;
  list-style: none;
  transition: all 0.4s ease-out;
}
.ip-imgs .ip-icon li {
  margin: 0 3px;
  display: inline-block;
}
.ip-imgs .ip-icon li a {
  color: #fff;
  font-size: 16px;
  line-height: 31px;
  height: 35px;
  width: 35px;
  border: 2px solid #fff;
  box-shadow: 0 0 2px #000;
  display: block;
  transition: all 0.3s;
}
.ip-imgs .ip-icon li a:hover {
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px #fff;
}
.ip-imgs .ip-icon li a i {
  line-height: inherit;
} */

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

.ip-mvv img {
  width: 200px;
  display: block;
  margin: auto;
}

.ip-mvv h2 {
  color: var(--color-primary);
  font-size: 31px;
  display: inline-block;
  border-bottom: 1px dashed var(--color-primary);
  margin-bottom: 12px;
  font-family: "Marcellus", serif;
}

.ip-mvv p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
}

.docu-blk {
  margin-top: 25px;
  border-radius: 25px;
}

.docu-blk h2 {
  font-size: 31px;
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Marcellus", serif;
  color: var(--color-primary);
  border-bottom: 1px dashed var(--color-primary);
}

.docu-img img {
  width: 200px;
}

.docu-row {
  margin-top: 25px;
}

.docu-title h3 {
  color: var(--color-default);
  display: inline-block;
  border-bottom: 1px dashed var(--color-default);
  padding-bottom: 2px;
}

.arr-img img {
  width: 20px;
  opacity: 0.2;
}

.docu-img2 .gallery_block {
  margin-bottom: 15px;
}

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

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

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

.ol_styles li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
  line-height: 28px;
  font-size: 16px;
  text-align: justify;
}

.ol_styles li::before {
  content: " ";
  position: absolute;
  width: 14px;
  height: 30px;
  background-image: url(../gallery/bt-point.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0px;
  background-position: left;
  margin: auto;
}

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

.dir-img {
  margin-bottom: 20px;
}

.docu-title {
  margin-bottom: 15px;
}

.docu-title h3 {
  margin-bottom: 10px;
}

.docu-img2 {
  margin-bottom: 45px;
}

.ip-team-blk {
  background: #fff;
  text-align: center;
  padding: 0 0 30px;
  margin: 0 10px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 37px;
  width: 300px;
  margin: auto;
}

.ip-team-blk .ip-team-inner-blk {
  padding: 35px 10px 0;
  margin: 0 0 3px;
  position: relative;
}

.ip-team-blk .ip-team-inner-blk:before {
  content: "";

  width: 157px;
  height: 183px;
  border-radius: 0 0 100px 100px;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  left: 50%;
  background: linear-gradient(to top, #26a5a500, #b9c1ca);
}

.ip-team-blk .ip-team-img {
  color: #22a6b2;
  background: #fefefe;
  width: 140px;
  height: 140px;
  margin: 0 auto 15px;
  border-radius: 50%;
  border: 2px solid #22a6b2;
  box-shadow: 0 0 0 5px #fff;
  position: relative;
}

.ip-team-blk .title {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 600;
  padding: 0 15px;
  margin: 0;
}

.ip-team-blk .title2 {
  font-size: 19px;
  font-weight: 500;
  padding: 0 15px;
  margin: 0;
  text-align: center;
}

.ip-team-blk .pricing-content {
  text-align: left;
  padding: 0 20px;
  margin: 0 0 25px;
  list-style: none;
  display: inline-block;
}

.ip-team-blk .ip-team-id {
  position: relative;
}

.ip-team-blk .ip-team-id:before,
.ip-team-blk .ip-team-id:after {
  content: "";
  background: var(--color-secondary);
  width: 15px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ip-team-blk .ip-team-id:after {
  left: auto;
  right: 0;
}

.ip-team-blk .ip-team-id p {
  color: var(--color-secondary);
  font-size: 23px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 12px;
  display: inline-block;
  transition: all 0.3s ease 0s;
  margin-bottom: 0px;
  border-top: 1px dashed var(--color-secondary);
}

.our-team h2 {
  border-bottom: 1px dashed var(--color-primary);
  margin-bottom: 12px;
  font-family: "Marcellus", serif;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 30px;
}

.our-pr h2 {
  color: var(--color-primary);
  font-size: 25px;
  display: inline-block;
  border-bottom: 1px dashed var(--color-primary);
  font-family: "Marcellus", serif;
  margin-bottom: 25px;
  padding-bottom: 4px;
}

.donate-now-p ._cform::before {
  display: none;
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent var(--color-default) transparent;
  top: 15px;
}

.select-selected {
  color: #000;
  padding: 0px 0px;
  font-family: "Open Sans", sans-serif;
  border-color: transparent transparent rgba(0, 0, 0) transparent;
  cursor: pointer;
  user-select: none;
  text-align: justify;
}

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

.select-items {
  position: absolute;
  background-color: #f2f2f2;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  font-family: "Open Sans", sans-serif;
  height: 500px;
  overflow: overlay;
}

.currency-select .select-items {
  height: auto !important;
}

.select-hide {
  display: none;
}

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

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

.custom-select {
  position: relative;
  line-height: 35px !important;
}

.custom-select select {
  display: none;
}

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

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

.donate-left h2 {
  text-align: left;
}

.ol_styles2 {
  padding: 0 0 0 20px;
}

.ol_styl2 li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
  line-height: 28px;
  font-size: 16px;
  text-align: justify;
}

.donate-right h2 {
  color: #fff;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px dashed #fff;
  margin-bottom: 5px;
  font-family: "Marcellus", serif;
}

.donate-right {
  background-color: var(--color-secondary);
  color: #fff;
  border-radius: 27px;
  padding: 18px;
  box-shadow: 0 0 10px #29292985;
  border: 2px solid aliceblue;
}

.d-one {
  margin-bottom: 40px;
}

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

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

.top-social li a {
  display: block;
  width: 30px;
  height: 30px;
  color: #fff;

  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin: 0px 1px;
  transition: all 300ms ease;
  background: linear-gradient(to left, var(--color-primary), var(--color-secondary));
}

.mobile-menu .top-social li a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin: 0px 1px;
  transition: all 300ms ease;
  background: #fff;
  color: var(--color-primary);
}

.top-social li .logins_section {
  display: block;
  width: 30px;
  height: 30px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin: 0px 1px;
  transition: all 300ms ease;
}

.top-phn-btn {
  position: absolute;
  right: 227px;
  top: 20px;
  z-index: 1;
}

.top-phn-btn a {
  color: var(--color-default);
  font-size: 15px;
}

.top-phn-btn a i {
  color: var(--color-primary);
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  font-size: 18px;
}

.phn-first {
  margin-right: 10px;
  padding-right: 15px;
  border-right: 1px dashed var(--color-primary);
}

.donate-right .ol_styles2 li span {
  font-weight: 700;
  font-size: 20px;
}

.donate-qr {
  width: 200px;
}

.donate-right {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* #chatbox-open:hover::after {
  content: "Click here!";
  position: absolute;
  bottom: 100px; 
  left: 60%;
  transform: translateX(-50%);
  font-size: 26px;
  font-weight: bold;
  color: #000;
} */
.btn img {
  width: 74px;
}

#chat-messages {
  padding: 8px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 10px #00000042;
}

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

.chatbox-footer .form-control:focus {
  color: var(--color-default);
  background-color: #fff;
}

.about-sec h1 {
  margin-top: 50px;
}

.ip-about-row h2 {
  font-size: 20px;
  color: var(--color-primary);
  margin: 18px 0px 8px;
}

.gal-top-head h2 {
  font-size: 26px;
  margin-bottom: 25px;
}

.gal-top-row {
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

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

.serv-sec-h p a {
  color: var(--color-primary);
}

.serv-img img {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 0 7px #26a5a5ba;
}

.serv-img {
  position: relative;
  border: 1px solid var(--color-primary);
  padding: 10px;
}

.donate-img2 img {
  width: 180px;
}

.ip-two h2 {
  color: var(--color-primary);
  padding: 10px 0;
  border-radius: 12px;
  font-size: 22px;
  border: 1px dashed;
}

.evnts-hd {
  position: relative;
}

.events-img-mblk {
  margin-top: 25px;
  position: relative;
}

.evnts-hd h2 {
  font-size: 27px;
  background-color: var(--color-secondary);
  display: inline-block;
  color: #fff;
  padding: 2px 19px;
  border-left: 3px solid var(--color-primary);
  margin: 0;
}

.evnts-img-blk {
  position: relative;
  margin-top: 25px;
}

.evnts-img {
  position: relative;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #efefef;
  background-clip: padding-box;
  outline: 0;
  height: 550px;
  overflow-y: scroll;
  border: 8px solid #fff;
  box-shadow: inset 0px 1px 13px 0px #a1caca;
  border-radius: 0px;
}

.modal-dialog {
  max-width: 1180px;
  margin: 90px auto 0px;
}

.sub-popup-name {
  margin-top: 10px;
}

.evnts-img-blk .ip-imgs {
  border-radius: 10px;
}

.evnts-img-blk .sub-popup-name p {
  font-size: 20px;
  margin-bottom: 0px;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 1px solid;
  padding-bottom: 6px;
}

.mbl-blk:hover {
  cursor: pointer;
}

.mdl-evnt-head {
  margin: 12px 0;
}

.mdl-evnt-head h2 {
  color: var(--color-default);
  display: inline-block;
  border-bottom: 1px dashed var(--color-default);
  position: relative;
  padding-bottom: 6px;
  text-transform: uppercase;

  font-size: 26px;
  margin-bottom: 25px;
}

button.pp-close.close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  background-color: var(--color-secondary);
  opacity: 1;
  color: #fff;
  font-size: 35px;
  padding: 0 6px 2px;
}

.modal-dialog .gal-top-row::before {
  content: " ";
  position: absolute;
  width: 80%;
  height: 1px;
  background: var(--color-primary);
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
}

.modal-body {
  padding-top: 35px;
}


.mbl-blk {
  position: relative;
  margin-bottom: 30px;
}

.serv-matter1 {
  padding: 0px 30px 30px;
}

.serv-matter h4 {
  color: var(--color-default);
  font-size: 16px;
  margin: 15px 0 8px;
}

.serv-matter1 strong {
  font-weight: 600;
}

.vide-block iframe {
  width: 100%;
  height: 250px;
  border: 8px solid #ffffff;
  box-shadow: 0px 0px 13px #0000001f;
}

.mbl-blk.mbl-blk1 .gallery_block {
  margin-bottom: 0px;
}

.fancybox-slide video {
  max-width: 500px;
  /* adjust as needed */
  max-height: 450px;
  width: 100%;
  height: auto;
}

.video-row-head h2 {
  margin-bottom: 20px;
  color: var(--color-primary);
  font-size: 20px;
  border-bottom: 1px solid;
  display: inline-block;
  padding-bottom: 5px;
}

.video-row {
  margin-top: 60px;
}

.extra-video-btn {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 0px 6px #00000040;
}

.extra-video-btn a {
  color: #fff;
  font-size: 20px;
  padding: 24px 30px;
  display: inline-block;
}

.extra-video-img img {
  width: 78px;
  margin-top: 10px;
  filter: brightness(0) invert(1);
}

.vide-block1{
  margin-bottom: 30px;
}