@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800|family=Raleway:400,200,300,500,600,700,800,900|family=Titillium+Web:400,200,300,600,700,900");

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}

p {
  line-height: 25px;
}

.content-section ol>li {
  margin-bottom: 1rem;
  line-height: 25px;
}

/* LOCOMOTIVE */
.no-transform {
  transform: none !important;
}

html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

/* HTML ELEMENTS */
img {
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

/* LINKS */
a {
  text-decoration: none;
  color: #080808;
}

a:hover {
  text-decoration: none;
  color: #080808;
}

/* FORM ELEMENTS */
input[type="text"] {
  width: 100%;
  max-width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #cecece;
}

input[type="email"] {
  width: 100%;
  max-width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #cecece;
}

input[type="search"] {
  width: 420px;
  max-width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #cecece;
}

input[type="password"] {
  width: 100%;
  max-width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #cecece;
}

input[type="number"] {
  width: 100%;
  max-width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #cecece;
}

input[type="date"] {
  width: 420px;
  max-width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #cecece;
}

input[type="radio"] {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 4px;
  transform: translateY(3px);
  appearance: none;
  background: #ededed;
  border-radius: 50%;
}

input[type="radio"]:checked {
  border: 6px solid #080808;
}

textarea {
  width: 520px;
  max-width: 100%;
  height: 140px;
  padding: 30px;
  border: 1px solid #cecece;
}

select {
  width: 420px;
  max-width: 100%;
  height: 50px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

select {
  --webkit-appearance: none;
  --moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 30px) 24px, calc(100% - 25px) 24px,
    calc(100% - 3.5em) 20px;
  background-size: 5px 5px, 5px 5px, 1px 1px;
  background-repeat: no-repeat;
}

select:focus {
  background-image: linear-gradient(45deg, gray 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, gray 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 25px) 24px, calc(100% - 30px) 24px,
    calc(100% - 3.5em) 20px;
  background-size: 5px 5px, 5px 5px, 1px 1px;
  background-repeat: no-repeat;
  border-color: gray;
  outline: 0;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

input[type="submit"] {
  height: 40px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #1b2d5c;
  border: none;
  padding: 0 50px;
}

input[type="submit"]:hover {
  color: #fff;
  background: #1b2d5c;
}

button[type="submit"] {
  height: 45px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #1b2d5c;
  border: none;
  padding: 0 25px;
}

button[type="submit"]:hover {
  background: #1b2d5c;
}

button[type="submit"] i {
  display: inline-block;
  margin-right: 8px;
  font-size: 18px;
  transform: translateY(2px);
}

.form-group {
  margin-bottom: 15px;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: #32373a;
  margin-bottom: 4px !important;
}

/* SPACING */
.no-spacing {
  margin: 0 !important;
  padding: 0 !important;
}

.no-bottom-spacing {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.spacing-400 {
  height: 400px;
}

.spacing-200 {
  height: 200px;
}

.spacing-100 {
  height: 100px;
}

.spacing-50 {
  height: 50px;
}

/* ACCORDION */
.accordion {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.accordion dt {
  width: 100%;
  display: block;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.accordion dt a {
  display: flex;
  align-items: center;
  position: relative;
}

.accordion dt a:before {
  content: "\f078";
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: #94ffc4;
  border-radius: 50%;
  font-family: "Font Awesome 5 Pro";
  font-size: 13px;
}

.accordion dt a:hover {
  text-decoration: none;
}

.accordion dd {
  width: 100%;
  display: block;
  padding-top: 15px;
  margin-bottom: 30px;
}

/* HAMBURGER */
.hamburger path {
  --webkit-transform: translate3d(0, 0, 0);
  fill: transparent;
  stroke-width: 2px;
  stroke: #000;
  stroke-linecap: round;
  transition-duration: 0.7s;
  --webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  font-family: "Poppins", sans-serif;
  --webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.hamburger path.line-center {
  padding: 10px 0;
}

.hamburger.active .line-center {
  --moz-transform: translateX(-50px);
  --webkit-transform: translateX(-50px);
  --o-transform: translateX(-50px);
  --ms-transform: translateX(-50px);
  transform: translateX(-50px);
}

.hamburger.active .line-top {
  --moz-transform: rotate(45deg) translateX(6px) translateY(-9px);
  --webkit-transform: rotate(45deg) translateX(6px) translateY(-9px);
  --o-transform: rotate(45deg) translateX(6px) translateY(-9px);
  --ms-transform: rotate(45deg) translateX(6px) translateY(-9px);
  transform: rotate(45deg) translateX(6px) translateY(-9px);
}

.hamburger.active .line-bottom {
  --moz-transform: rotate(-45deg) translateX(-15px) translateY(0px);
  --webkit-transform: rotate(-45deg) translateX(-15px) translateY(0px);
  --o-transform: rotate(-45deg) translateX(-15px) translateY(0px);
  --ms-transform: rotate(-45deg) translateX(-15px) translateY(0px);
  transform: rotate(-45deg) translateX(-15px) translateY(0px);
}

/* PRELOADER */
.preloader {
  width: 100vw;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999999;
  transition: all cubic-bezier(0.785, 0.135, 0.15, 0.86) 1s;
  overflow: hidden;
}

.preloader .inner {
  display: inline-block;
  position: relative;
  z-index: 1;
  animation-name: preloader-inner;
  animation-duration: 0.8s;
  transition: all ease 0.8s;
}

.preloader .inner figure {
  width: 200px;
  height: 200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  margin-bottom: 0;
}

.preloader .inner figure img {
  height: 60px;
}

.preloader .inner small {
  width: 100%;
  display: block;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  text-align: center;
  margin-top: 15px;
}

.preloader .inner .progress-bar {
  background: none;
}

.preloader svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  fill: #080808;
}

.preloader svg path {
  animation-name: preloader-svg;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 0.7s;
  animation-play-state: paused;
  animation-fill-mode: forwards;
}

/* BEFORE PAGE LOADED */
.navbar {
  transform: translateY(-100%);
  transition-duration: 0.7s;
  --webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  --webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  transition-delay: 0.2s;
}

.slider {
  transform: scale(1.4);
  transition-duration: 0.7s;
  --webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  --webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  transition-delay: 0.25s;
  opacity: 0;
}

.page-header {
  transform: scale(1.4);
  transition-duration: 0.7s;
  --webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  --webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  transition-delay: 0.25s;
  opacity: 0;
}

/* PAGE LOADED */
.page-loaded .preloader {
  top: 100%;
}

.page-loaded .preloader .inner {
  transform: translateY(50px);
  opacity: 0;
}

.page-loaded .preloader svg path {
  animation-play-state: running;
}

.page-loaded .navbar {
  transform: translateY(0);
}

.page-loaded .slider {
  transform: scale(1);
  opacity: 1;
}

.page-loaded .page-header {
  transform: scale(1);
  opacity: 1;
}

/* PAGE TRANSITION */
.page-transition {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: -100%;
  z-index: 99;
  transition: all cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.7s;
  overflow: hidden;
}

.page-transition.active {
  top: 0;
}

.page-transition.active svg path {
  animation-name: page-transition;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.page-transition svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  fill: #080808;
}

/* SEARCH BOX */
.search-box {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 8;
  background: #fff;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.search-box.active {
  opacity: 1;
  visibility: visible;
}

.search-box .container {
  display: flex;
  flex-wrap: wrap;
}

.search-box .container .form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 80px;
}

.search-box .container .form h3 {
  width: 100%;
  display: block;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: bold;
}

.search-box .container .form input[type="search"] {
  width: 70%;
  border: none;
  border-bottom: 2px solid #eee;
  margin: 0 15%;
  margin-bottom: 20px;
  font-size: 19px;
}

.search-box .container .search-events {
  width: 100%;
  display: block;
  margin-top: 5vh;
}

.search-box .container .search-events ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.search-box .container .search-events ul li {
  flex: 1;
  margin: 0;
  padding: 0 5%;
  list-style: none;
  text-align: center;
}

.search-box .container .search-events ul li h5 {
  width: 100%;
  display: block;
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.search-box .container .search-events ul li h5 a {
  display: inline;
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px),
      #080808 2px);
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px),
      #080808 2px);
  background-image: linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px),
      #080808 1px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.5s;
}

.search-box .container .search-events ul li h5 a:hover {
  background-size: 100% 100%;
  text-decoration: none;
}

.search-box .container .search-events ul li small {
  width: 100%;
  display: block;
  opacity: 0.7;
}

/* SIDE WIDGET */
.side-widget {
  width: 540px;
  max-width: 80vw;
  height: 100vh;
  min-height: 500px;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 10;
  padding: 30px 50px;
  padding-right: 110px;
  color: #fff;
  transition-duration: 0.7s;
  --webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  --webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  overflow: auto;
}

.side-widget.active {
  left: 0;
}

.side-widget.active .logo {
  opacity: 1;
  transform: translateX(0);
}

.side-widget.active .inner {
  opacity: 1;
  transform: translateX(0);
}

.side-widget.active .display-mobile {
  opacity: 1;
  transform: translateX(0);
}

.side-widget.active svg path {
  animation-name: side-widget-in;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.side-widget svg {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  fill: #080808;
}

.side-widget svg path {
  animation-name: side-widget-out;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.side-widget .logo {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  position: relative;
  opacity: 0;
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  transform: translateX(-100px);
}

.side-widget .logo img {
  height: 100px;
}

.side-widget .inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  opacity: 0;
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  transform: translateX(-100px);
}

.side-widget .inner .widget {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.side-widget .inner .widget:last-child {
  margin-bottom: 0;
}

.side-widget .inner .widget p:last-child {
  margin-bottom: 0;
  font-weight: 400;
  opacity: 0.8;
}

.side-widget .inner .widget-title {
  width: 100%;
  display: block;
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 15px;
  color: #94ffc4;
}

.side-widget .display-mobile {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  opacity: 0;
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  transform: translateX(-100px);
  display: none;
}

.side-widget .display-mobile .custom-menu {
  width: 100%;
  display: block;
  margin-top: auto;
}

.side-widget .display-mobile .custom-menu ul {
  width: 100%;
  margin: 0;
}

.side-widget .display-mobile .custom-menu ul li {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
}

.side-widget .display-mobile .custom-menu ul li a {
  display: inline-block;
  color: #fff;
  margin: 5px 0;
}

.side-widget .display-mobile .custom-menu ul li a:hover {
  text-decoration: none;
  color: #94ffc4;
}

.side-widget .display-mobile .site-menu {
  width: 100%;
  display: block;
  margin-bottom: auto;
  margin-top: 10px;
}

.side-widget .display-mobile .site-menu ul {
  width: 100%;
  margin: 0;
}

.side-widget .display-mobile .site-menu ul li {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
}

.side-widget .display-mobile .site-menu ul li a {
  display: inline-block;
  color: #fff;
  margin: 5px 0;
}

.side-widget .display-mobile .site-menu ul li a:hover {
  text-decoration: none;
  color: #94ffc4;
}

/* NAVBAR */
.navbar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 60px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
}

.navbar.light {
  color: #fff;
}

.navbar.light .custom-menu ul li a {
  color: #fff;
}

.navbar.light .site-menu ul li a {
  color: #fff;
}

.navbar.light .hamburger-menu .hamburger path {
  stroke: #fff;
}

.navbar.light .navbar-button a {
  border: 3px solid transparent;
  line-height: 56px;
}

.navbar.light .navbar-button a:hover {
  border-color: #94ffc4;
  background: none;
  color: #fff;
}

.navbar .logo {
  display: inline-block;
}

.navbar .logo a {
  display: block;
}

.navbar .logo a img {
  height: 100px;
}

.navbar .custom-menu {
  display: inline-block;
  margin: 0 auto;
}

.navbar .custom-menu ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.navbar .custom-menu ul li {
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  list-style: none;
}

.navbar .custom-menu ul li a {
  display: inline-block;
  position: relative;
}

.navbar .custom-menu ul li a:hover {
  text-decoration: none;
}

.navbar .custom-menu ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 4px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
}

.navbar .custom-menu ul li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -4px;
  height: 4px;
  width: 0;
  background: #94ffc4;
  transition: width 0.25s ease;
}

.navbar .custom-menu ul li a:hover:before {
  width: 50%;
  background: #94ffc4;
  transition: width 0.25s ease;
}

.navbar .custom-menu ul li a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

.navbar .site-menu {
  display: inline-block;
}

.navbar .site-menu ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.navbar .site-menu ul li {
  display: inline-block;
  margin: 0 15px;
  padding: 0;
  list-style: none;
}

.navbar .site-menu ul li a {
  display: inline-block;
  position: relative;
}

.navbar .site-menu ul li a:hover {
  text-decoration: none;
}

.navbar .site-menu ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 4px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
}

.navbar .site-menu ul li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -4px;
  height: 4px;
  width: 0;
  background: #94ffc4;
  transition: width 0.25s ease;
}

.navbar .site-menu ul li a:hover:before {
  width: 50%;
  background: #94ffc4;
  transition: width 0.25s ease;
}

.navbar .site-menu ul li a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

.navbar .search-button {
  height: 30px;
  line-height: 34px;
  display: inline-block;
  margin-left: auto;
}

.navbar .search-button i {
  display: inline-block;
  font-size: 21px;
  cursor: pointer;
}

.navbar .hamburger-menu {
  margin-left: 30px;
  display: inline-block;
  cursor: pointer;
}

.navbar .navbar-button {
  margin-left: 30px;
}

.navbar .navbar-button a {
  height: 60px;
  line-height: 60px;
  display: inline-block;
  padding: 0 40px;
  background: #94ffc4;
  color: #080808;
  font-size: 14px;
  font-weight: 700;
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.navbar .navbar-button a:hover {
  text-decoration: none;
  background: #080808;
  color: #fff;
}

/* SLIDER */
.slider {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.slider .container-fluid {
  width: calc(100% - 120px);
  margin: 0 60px;
}

.slider .kinetic-slider {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background: #080808;
}

.slider .kinetic-slider canvas {
  width: 100% !important;
  height: auto !important;
  transform: none !important;
}

.slider .kinetic-texts {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  padding-top: 32px;
  color: #fff;
}

.slider .kinetic-texts .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.slider .kinetic-texts .swiper-slide * {
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  opacity: 0;
}

.slider .kinetic-texts .swiper-slide.swiper-slide-active * {
  opacity: 1;
}

.slider .kinetic-texts .swiper-slide h1 {
  font-size: 126px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
  margin-bottom: 30px;
}

.slider .kinetic-texts .swiper-slide p {
  font-size: 19px;
  margin: 0;
  opacity: 0.7;
  padding-left: 30px;
  border-left: 3px solid #fff;
  margin-left: 10px;
}

.slider .slider-images-old {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.slider .slider-images-old .swiper-slide {
  background-size: cover !important;
}

.slider .slider-images-old .swiper-slide .mobile-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover !important;
  display: none;
}

.slider .slider-texts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 32px;
  overflow: visible;
}

.slider .slider-texts .svg-morph {
  position: absolute;
  top: calc(50% - 200px);
  left: 50%;
  transform: translateX(-140%);
}

.slider .slider-texts .svg-morph path {
  fill: #dbb798;
  animation-name: svg-morph;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 8s;
  animation-fill-mode: both;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.slider .slider-texts .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.slider .slider-texts .swiper-slide h1 {
  font-size: 65px;
  font-weight: 500;
  font-family: "Lora", serif;
  line-height: 1;
  margin-bottom: 10px;
  color: #1b2d5c;
  font-weight: 600;
}

.slider .slider-texts .swiper-slide h1>span {
  color: #ac560b;
}

.slider .slider-texts .swiper-slide p {
  font-size: 19px;
  margin: 0;
  opacity: 0.7;
  padding-left: 30px;
  border-left: 3px solid #080808;
  margin-left: 10px;
}

.slider .swiper-fraction {
  width: 200px;
  color: #fff;
}

.slider .swiper-fraction span {
  width: 22px;
  display: inline-block;
  color: #080808;
  font-weight: 700;
}

.slider .swiper-fraction span:before {
  content: "0";
}

.slider .swiper-fraction .swiper-pagination-current {
  margin-right: 122px;
}

.slider .swiper-pagination-progressbar {
  top: auto;
  bottom: 56px;
  left: 50px;
  width: 100px;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
}

.slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #080808;
}

.slider .slider-nav {
  display: flex;
  height: 0px;
  margin-top: -70px;
  position: relative;
  z-index: 3;
}

.slider .slider-nav .button-prev {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  background: #1b2d5c;
  color: #fff;
  margin-left: auto;
  margin-right: 8px;
  position: relative;
  z-index: 3;
  cursor: pointer;
  transform: translateY(-50px);
  border-radius: 50%;
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.slider .slider-nav .button-prev:hover {
  background: #dbb798;
  color: #000;
}

.slider .slider-nav .button-next {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  background: #1b2d5c;
  color: #fff;
  position: relative;
  z-index: 3;
  cursor: pointer;
  transform: translateY(-50px);
  border-radius: 50%;
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.slider .slider-nav .button-next:hover {
  background: #dbb798;
  color: #000;
}

/* PLAY NOW */
.play-now {
  position: relative;
  width: 340px;
  height: 340px;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 4;
  overflow: hidden;
  margin-left: -100px;
}

.play-now .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 40px;
  border-color: transparent transparent transparent #080808;
  transform: translateX(-50%) translateY(-50%);
}

.play-now text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  fill: #080808;
}

.play-now svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 340px;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 10s;
  -moz-animation-duration: 10s;
  -ms-animation-duration: 10s;
  -o-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}

/* PAGE HEADER */
.page-header {
  width: 100%;
  height: 540px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover !important;
}

.page-header .inner {
  width: 100%;
  display: block;
  padding: 0 60px;
  position: relative;
  margin-top: 60px;
}

.page-header .inner h1 {
  font-size: 126px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
  margin-bottom: 30px;
  position: relative;
}

.page-header .inner p {
  font-size: 19px;
  margin: 0;
  opacity: 0.7;
  padding-left: 30px;
  border-left: 3px solid #080808;
  margin-left: 10px;
  position: relative;
  padding-right: 50%;
}

.page-header .inner .svg-morph {
  position: absolute;
  top: calc(50% - 200px);
  left: 50%;
  z-index: 0;
  transform: translateX(-140%);
}

.page-header .inner .svg-morph path {
  fill: #94ffc4;
  animation-name: svg-morph;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 8s;
  animation-fill-mode: both;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

/* CONTENT SECTION */
.content-section {
  width: 100%;
  display: block;
  padding: 30px 0;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.inner-content-section {
  width: 100%;
  display: block;
  padding: 10px 0 50px;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.bottom-white {
  position: relative;
}

.bottom-white:before {
  content: "";
  width: 100%;
  height: 140px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.bottom-white:before .container {
  position: relative;
  z-index: 1;
}

/* VIDEO BG */
.video-bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.video-bg:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #080808;
  z-index: 1;
  opacity: 0.85;
}

.video-bg video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/* SECTION TITLE */
.section-title {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.section-title figure {
  width: 100%;
  display: block;
  margin-bottom: 25px;
}

.section-title figure img {
  height: 70px;
}

.section-title h6 {
  width: 100%;
  display: block;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 3px;
  color: rgba(152, 152, 152, 1);
}

.section-title h2 {
  width: 100%;
  display: block;
  margin-bottom: 0;
  font-size: 42px;
  color: #1b2d5c;
  font-weight: 700;
  font-family: "Lora", serif;
  line-height: 1;
}

.section-title h2 strong {
  font-weight: 600;
}

/* CUSTOM LINK */
.custom-link {
  display: inline-block;
  position: relative;
}

.custom-link:hover {
  text-decoration: none;
}

.custom-link:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 4px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
}

.custom-link:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -4px;
  height: 4px;
  width: 0;
  background: #94ffc4;
  transition: width 0.25s ease;
}

.custom-link:hover:before {
  width: 50%;
  background: #1b2d5c;
  transition: width 0.25s ease;
}

.custom-link:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

.custom-button {
  height: 33px;
  line-height: 33px;
  display: inline-block;
  background: #1b2d5c;
  padding: 0 8px;
  margin: 40px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.custom-button:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid transparent;
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.custom-button:hover,
.custom-button.whitebtn:hover {
  background: #1b2d5c !important;
  color: #fff !important;
}

/*.custom-button:hover:before {
  top: 6px;
  left: 6px;
  border-color: #080808;
}*/

/* CIRCLE BUTTON */
.text-center .circle-button {
  margin: 0 auto;
}

.circle-button {
  width: 158px;
  height: 158px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #080808;
  border-radius: 50%;
  text-align: center;
  font-weight: 500;
}

.circle-button:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -5px;
  top: -5px;
  border: 1px solid #080808;
  border-radius: 50%;
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.circle-button:hover {
  text-decoration: none;
}

.circle-button:hover:before {
  left: 0;
  top: 0;
  opacity: 0;
}

/* IMAGE BOX */
.image-box {
  width: 100%;
  display: block;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.image-box.is-inview img {
  opacity: 1;
  transform: scale(1);
}

.image-box img {
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  --webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  --webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

/* SIDE ICON LIST */
.side-icon-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-right: 80px;
}

.side-icon-list.right-side {
  padding-right: 0;
  padding-left: 80px;
}

.side-icon-list ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.side-icon-list ul li {
  width: 100%;
  display: block;
  margin-bottom: 50px;
  padding: 0;
  list-style: none;
}

.side-icon-list ul li:last-child {
  margin-bottom: 0;
}

.side-icon-list ul li figure {
  width: 80px;
  height: 100%;
  float: left;
  margin-bottom: 0;
}

.side-icon-list ul li figure img {
  height: 44px;
}

.side-icon-list ul li .content {
  width: calc(100% - 80px);
  display: inline-block;
  margin-top: 10px;
}

.side-icon-list ul li .content h5 {
  width: 100%;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.side-icon-list ul li .content p {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  opacity: 0.7;
}

.side-icon-list ul li .content a {
  display: inline-block;
  text-decoration: underline;
}

/* IMAGE BOX CAROUSEL */
.image-box-carousel {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.image-box-carousel figure {
  width: 100%;
  display: block;
  margin-bottom: 50px;
  position: relative;
}

.image-box-carousel figure:before {
  content: "";
  width: 1px;
  height: 64px;
  background: #080808;
  position: absolute;
  left: calc(50% - 0.5px);
  bottom: -32px;
  opacity: 0.8;
}

.image-box-carousel figure img {
  width: 100%;
}

.image-box-carousel .content-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
  text-align: center;
}

.image-box-carousel .content-box h5 {
  width: 100%;
  display: block;
  font-size: 30px;
  font-family: "Open Sans", sans-serif;
}

.image-box-carousel .content-box .custom-link {
  color: #999;
  font-weight: 700;
}

/* SIDE CONTENT */
.side-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.side-content.left {
  padding-right: 20%;
}

.side-content small {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  padding: 0 20px;
  margin-bottom: 20px;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  font-size: 14px;
  font-weight: 500;
  background: #94ffc4;
  border-radius: 40px;
}

.side-content h2 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 52px;
}

.side-content p {
  width: 100%;
  display: block;
  margin: 0;
  opacity: 0.7;
}

.side-content table {
  width: 100%;
  margin: 20px 0;
  opacity: 0.7;
}

.side-content table tr {
  padding: 5px 0;
}

.side-content table tr td:nth-child(2) {
  font-weight: 700;
}

/* SIDE IMAGE */
.side-image {
  width: 100%;
  display: block;
  margin: 0;
  overflow: hidden;
}

.side-image.left-half {
  width: 50vw;
  float: right;
}

.side-image.right-half {
  width: 50vw;
  float: left;
}

.side-image.is-inview img {
  opacity: 1;
  transform: scale(1);
}

.side-image img {
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  --webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  --webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

/* SIDE LIST */
.side-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.side-list.left {
  padding-right: 20%;
}

.side-list.right {
  padding-left: 20%;
}

.side-list h2 {
  width: 100%;
  display: block;
  font-size: 52px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 30px;
}

.side-list ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.side-list ul li {
  width: 100%;
  display: block;
  padding: 0;
  margin-bottom: 20px;
  list-style: none;
}

.side-list ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #080808;
  opacity: 0.5;
  float: left;
  margin-top: 10px;
  margin-right: 10px;
  border-radius: 50%;
}

.side-list ul li:last-child {
  margin-bottom: 0;
}

/* SIDE ARTS */
.side-arts {
  width: 50vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #080808;
  color: #fff;
  padding: 100px 80px;
}

.side-arts .titles {
  width: 100%;
  display: block;
  margin-bottom: 60px;
}

.side-arts .titles h6 {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.5;
}

.side-arts .titles h2 {
  width: 100%;
  display: block;
  margin-bottom: 0;
  font-size: 52px;
  font-family: "Open Sans", sans-serif;
  letter-spacing: -2px;
  line-height: 1;
}

.side-arts ul {
  width: calc(100% + 30px);
  max-width: 480px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding: 0;
}

.side-arts ul li {
  width: 50%;
  display: inline-block;
  margin: 0;
  margin-bottom: 20px;
  padding: 0 15px;
  list-style: none;
}

.side-arts ul li img {
  width: 100%;
  display: block;
  border: 6px solid #fff;
}

/* COUNTER BOX */
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-car .odometer-digit {
  padding: 0;
  padding-right: 7px;
}

.counter-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.counter-box .odometer {
  font-size: 82px;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  line-height: 1;
  position: relative;
  padding: 0;
}

.counter-box .odometer:after {
  content: "";
  width: 70px;
  height: 70px;
  background: #94ffc4;
  border-radius: 50%;
  position: absolute;
  right: -50px;
  top: -20px;
  z-index: -1;
}

.counter-box .value {
  font-size: 82px;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  line-height: 1;
  margin-left: 10px;
  position: relative;
  z-index: 1;
}

.counter-box p {
  width: 100%;
  display: block;
  margin: 0;
  text-align: center;
  font-weight: 700;
  opacity: 0.7;
}

/* IMAGE CONTENT BOX */
.col-lg-4:nth-child(1) .image-content-box {
  padding-right: 30px;
}

.col-lg-4:nth-child(2) .image-content-box {
  padding: 0 15px;
}

.col-lg-4:nth-child(3) .image-content-box {
  padding-left: 30px;
}

.image-content-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.image-content-box.is-inview figure img {
  opacity: 1;
  transform: scale(1);
}

.image-content-box figure {
  width: 100%;
  display: block;
  margin: 0;
  overflow: hidden;
}

.image-content-box figure img {
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  --webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  --webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.image-content-box .content-box {
  width: calc(100% - 30px);
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background: #fff;
  margin-top: -30px;
  padding-top: 30px;
  padding-right: 30px;
}

.image-content-box .content-box h3 {
  width: 100%;
  display: block;
  font-size: 28px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 10px;
}

.image-content-box .content-box p {
  width: 100%;
  display: block;
  margin: 0;
  opacity: 0.7;
}

/* TESTIMONIAL BOX */
.col-md-6:nth-child(2) .testimonial-box {
  margin-left: auto;
}

.testimonial-box {
  width: 100%;
  max-width: 90%;
  display: flex;
  flex-wrap: wrap;
}

.testimonial-box .content-box {
  width: 100%;
  display: block;
  background: #fffbf7;
  position: relative;
  margin-bottom: 30px;
  padding: 50px;
  font-size: 19px;
}

.testimonial-box .content-box:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #fffbf7 transparent transparent transparent;
  position: absolute;
  left: 50px;
  bottom: -20px;
}

.testimonial-box h6 {
  width: 100%;
  display: block;
  margin: 0;
  padding-left: 50px;
}

/* COLLECTION BOX */
.col-lg-4:nth-child(3n + 1) .collection-box {
  padding-right: 30px;
}

.col-lg-4:nth-child(3n + 2) .collection-box {
  padding: 0 15px;
}

.col-lg-4:nth-child(3n + 3) .collection-box {
  padding-left: 30px;
}

.collection-box {
  width: 100%;
  display: block;
  margin: 15px 0;
}

.collection-box.is-inview img {
  opacity: 1;
  transform: scale(1);
}

.collection-box figure {
  width: 100%;
  display: block;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
}

.collection-box figure img {
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  --webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  --webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.collection-box h4 {
  width: 100%;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  margin-bottom: 20px;
}

.collection-box h4 a {
  display: inline;
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 2px),
      #080808 2px);
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 2px),
      #080808 2px);
  background-image: linear-gradient(rgba(0, 0, 0, 0) calc(99% - 2px),
      #080808 2px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.5s;
}

.collection-box h4 a:hover {
  background-size: 100% 100%;
  text-decoration: none;
}

.collection-box p {
  width: 100%;
  display: block;
  margin: 0;
}

/* EXHIBITION BOX */
.col-lg-4:nth-child(3n + 1) .exhibition-box {
  padding-right: 30px;
}

.col-lg-4:nth-child(3n + 2) .exhibition-box {
  padding: 0 15px;
}

.col-lg-4:nth-child(3n + 3) .exhibition-box {
  padding-left: 30px;
}

.exhibition-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.exhibition-box.is-inview .img {
  opacity: 1;
  transform: scale(1);
}

.exhibition-box figure {
  width: 100%;
  height: 250px;
  display: block;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.exhibition-box figure img {
  height: 250px;
  transition: all 0.5s ease;
}

.exhibition-box:hover figure img {
  transform: scale(1.1);
}

.exhibition-box figure * {
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.exhibition-box figure .info {
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  position: absolute;
  right: 30px;
  bottom: 30px;
  text-align: center;
  border-radius: 40px;
}

.exhibition-box figure .info span {
  width: 100%;
  max-width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  font-size: 14px;
  font-weight: 500;
  background: #94ffc4;
  border-radius: 40px;
}

.exhibition-box figure .info figure {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background: #fff;
  border-radius: 40px;
}

.exhibition-box figure .info figure img {
  width: 17px;
  height: 17px;
}

.exhibition-box figure .info:hover {
  width: auto;
}

.exhibition-box figure .info:hover figure {
  opacity: 0;
}

.exhibition-box figure .info:hover span {
  max-width: 220px;
  padding: 0 20px;
}

.exhibition-box figure .img {
  width: 100%;
}

.exhibition-box .content-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.exhibition-box .content-box h4 {
  width: 100%;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.exhibition-box .content-box h4 a {
  display: inline;
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 2px),
      #080808 2px);
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 2px),
      #080808 2px);
  background-image: linear-gradient(rgba(0, 0, 0, 0) calc(99% - 2px),
      #080808 2px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.5s;
}

.exhibition-box:hover .content-box h4 a {
  background-size: 100% 100%;
  text-decoration: none;
}

.exhibition-box .content-box p {
  width: 100%;
  display: block;
  margin: 0;
  font-weight: 600;
}

/* TEXT BOX */
.text-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.text-box h2 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 56px;
}

.text-box h3 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 46px;
}

.text-box p {
  width: 100%;
  display: block;
  opacity: 0.7;
}

/* TEXT CONTENT */
.col-lg-4:nth-child(3) .text-content {
  margin-top: 100px;
}

.text-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.text-content h6 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 26px;
  font-weight: 600;
}

.text-content p {
  width: 100%;
  display: block;
  padding-right: 35%;
  opacity: 0.7;
  position: relative;
  padding-left: 30px;
}

.text-content p:before {
  content: "";
  width: 12px;
  height: 12px;
  background: #080808;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.text-content p:last-child {
  margin-bottom: 0;
}

/* ART SLIDER */
.art-slider {
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}

.art-slider.is-inview .art-slider-images-old {
  opacity: 1;
  transform: scale(1);
}

.art-slider .titles {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.art-slider .titles h6 {
  width: 100%;
  display: block;
  margin-bottom: 0px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 3px;
  color: #fff;
}

.art-slider .titles h2 {
  width: 100%;
  display: block;
  margin-bottom: 0;
  font-size: 42px;
  color: #1b2d5c;
  font-weight: 700;
  font-family: "Lora", serif;
  line-height: 1;
}

/* ART SLIDER CONTENT */
.art-slider-content {
  width: 100%;
  height: 400px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.art-slider-content .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.3;
}

.art-slider-content .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.art-slider-content .swiper-slide span {
  width: 100px;
  border-bottom: 3px solid #fff;
  color: #fff;
  margin-right: 0;
  float: left;
  font-family: "Open Sans", sans-serif;
  transform: rotate(-90deg);
  font-weight: 700;
}

.custom-button.whitebtn {
  background: #fff;
  color: #000;
}

.art-slider-content .swiper-slide h3 {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin: 0;
  color: #fff;
  font-size: 24px;
}

/* ART SLIDER images-old */
.art-slider-images-old {
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}

.art-slider-images-old .swiper-slide {
  background: #080808;
}

.art-slider-images-old .swiper-slide img {
  width: 100%;
  float: left;
}

/* HORIZONTAL SCROLL */
.horizontal-scroll {
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.horizontal-scroll .scroll-inner {
  width: 200vw;
  display: flex;
  position: relative;
  z-index: 1;
}

.horizontal-scroll .scroll-inner .scroll-wrapper {
  width: 100vw;
  float: left;
}

/* IMAGE ICON BOX */
.image-icon-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 185px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.image-icon-box.is-inview .content-image img {
  opacity: 1;
  transform: scale(1);
}

.image-icon-box:hover .content-box .expand {
  max-height: 190px;
}

.image-icon-box:hover .content-box p {
  margin-bottom: 40px;
  margin-top: 20px;
}

.image-icon-box * {
  --webkit-transition: 0.25s ease-in-out;
  --moz-transition: 0.25s ease-in-out;
  --ms-transition: 0.25s ease-in-out;
  --o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.image-icon-box .icon {
  width: 100px;
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #94ffc4;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 1;
}

.image-icon-box .icon img {
  height: 50px;
}

.image-icon-box .content-image {
  width: 100%;
  display: block;
  margin: 0;
  overflow: hidden;
}

.image-icon-box .content-image img {
  width: 100%;
  display: block;
}

.image-icon-box .content-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  padding: 50px 10%;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.image-icon-box .content-box .expand {
  width: 100%;
  max-height: 0;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.image-icon-box .content-box b {
  width: 100%;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
}

.image-icon-box .content-box h4 {
  width: 100%;
  display: block;
  font-size: 34px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0;
}

.image-icon-box .content-box p {
  width: 100%;
  margin: 0;
}

.image-icon-box .content-box a {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 15px;
}

.image-icon-box .content-box a:hover {
  text-decoration: none;
}

.image-icon-box .content-box a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
}

.image-icon-box .content-box a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: #94ffc4;
  transition: width 0.25s ease;
}

.image-icon-box .content-box a:hover:before {
  width: 50%;
  background: #94ffc4;
  transition: width 0.25s ease;
}

.image-icon-box .content-box a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

/* CTA BOX */
.cta-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  color: #fff;
  margin: 50px 0;
}

.cta-box.dark {
  color: #080808;
  margin: 0;
}

.cta-box.dark .custom-button:hover {
  background: #94ffc4;
  color: #080808;
}

.cta-box.dark .custom-button:hover:before {
  border-color: #080808;
}

.cta-box figure {
  width: 100%;
  display: block;
  margin-bottom: 25px;
}

.cta-box figure img {
  height: 70px;
}

.cta-box h6 {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 3px;
}

.cta-box h2 {
  width: 100%;
  display: block;
  margin-bottom: 0;
  font-size: 92px;
  font-family: "Open Sans", sans-serif;
  letter-spacing: -2px;
}

.cta-box h2 strong {
  font-weight: 600;
}

.cta-box p {
  padding: 0 20%;
}

.cta-box .custom-button {
  margin: 0 auto;
  margin-top: 60px;
}

.cta-box .custom-button:hover {
  background: #080808;
  color: #fff;
}

.cta-box .custom-button:hover:before {
  border-color: #fff;
}

/* NOTE BOX */
.note-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #94ffc4;
  color: #080808;
  padding: 60px;
  margin: 50px 0;
}

.note-box h2 {
  width: 100%;
  display: block;
  font-size: 52px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
  line-height: 1.2;
}

.note-box p {
  width: 100%;
  display: block;
  margin: 0;
  opacity: 0.7;
  font-size: 19px;
}

/* RECENT NEWS */
.col-12:nth-child(2) .recent-news {
  margin-bottom: 100px;
}

.col-12:nth-child(even) .recent-news figure {
  order: 1;
}

.col-12:nth-child(even) .recent-news .content-box {
  order: 2;
  margin-right: 0;
  margin-left: -15%;
  text-align: right;
}

.col-12:nth-child(even) .recent-news .content-box p {
  padding-left: 30%;
  padding-right: 0;
}

.recent-news {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 150px;
  padding: 0 5%;
}

.recent-news figure {
  width: 60%;
  display: inline-block;
  margin: 0;
  overflow: hidden;
}

.recent-news figure.is-inview img {
  opacity: 1;
  transform: scale(1);
}

.recent-news figure img {
  width: 100%;
}

.recent-news .content-box {
  width: 55%;
  display: inline-block;
  margin-right: -15%;
  position: relative;
  z-index: 1;
}

.recent-news .content-box small {
  height: 22px;
  line-height: 22px;
  display: inline-block;
  background: #94ffc4;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 500;
}

.recent-news .content-box h3 {
  width: 100%;
  display: block;
  font-size: 54px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 30px;
  margin-top: 10px;
}

.recent-news .content-box p {
  width: 100%;
  display: block;
  padding-right: 30%;
  margin-bottom: 40px;
  opacity: 0.7;
}

/* NEWSLETTER BOX */
.newsletter-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0 30px;
}

.newsletter-box .form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-right: 50px;
}

.newsletter-box .form .form-group {
  width: 49%;
  margin: 1px;
  float: left;
}

.newsletter-box .form .titles {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.newsletter-box .form .titles h6 {
  width: 100%;
  display: block;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
}

.newsletter-box .form .titles h2 {
  width: 100%;
  color: #fff;
  display: block;
  margin-bottom: 5px;
  font-size: 34px;
  font-family: "Open Sans", sans-serif;
  letter-spacing: -1px;
  line-height: 1;
}

.newsletter-box .form small {
  width: 100%;
  color: #fff;
  display: block;
  margin-top: 15px;
}

.newsletter-box .form small a {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
}

.newsletter-box .form .inner {
  width: 100%;
  padding: 10px 0;
}

.newsletter-box .form input[type="email"] {
  width: 100%;
  flex: auto;
  border: none;
  padding: 0;
  padding-left: 20px;
}

.newsletter-box .form input[type="submit"] {
  width: 15%;
  background: #1b2d5c;
  color: #fff;
  padding: 0;
}

.newsletter-box .newsletter-image {
  width: 35%;
  display: inline-block;
  margin: 0;
}

.newsletter-box .newsletter-image img {
  width: 100%;
}

/* CONTACT BOX */
.contact-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-right: 10%;
}

.contact-box:last-child {
  margin-bottom: 0;
}

.contact-box h6 {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.contact-box a {
  display: block;
  text-decoration: underline;
}

.contact-box a:hover {
  text-decoration: none;
}

.contact-box p {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  opacity: 0.7;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

/* CONTACT FORM */
.contact-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 10%;
}

.contact-form .mb-3 {
  width: 100%;
  display: block;
}

.contact-form .mb-3 input[type="text"] {
  width: 100%;
}

.contact-form .mb-3 textarea {
  width: 100%;
}

/* GOOGLE MAPS */
.google-maps {
  width: 100%;
  height: 500px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background: #94ffc4;
}

.google-maps iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: none;
  filter: grayscale(1);
}

/* BLOG POST */
.blog-post {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 120px;
}

.blog-post figure {
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
  overflow: hidden;
}

.blog-post figure.is-inview img {
  opacity: 1;
  transform: scale(1);
}

.blog-post figure img {
  width: 100%;
}

.blog-post .content-box {
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.blog-post .content-box small {
  height: 22px;
  line-height: 22px;
  display: inline-block;
  background: #94ffc4;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 500;
}

.blog-post .content-box h3 {
  width: 100%;
  display: block;
  font-size: 54px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 30px;
  margin-top: 10px;
}

.blog-post .content-box blockquote {
  width: 100%;
  display: block;
  margin: 40px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  padding-left: 40px;
  border-left: 4px solid #94ffc4;
}

.blog-post .content-box p {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  opacity: 0.7;
}

.blog-post .content-box p:last-child {
  margin-bottom: 0;
}

/* SIDEBAR */
.sidebar {
  width: 100%;
  display: block;
  padding-left: 30px;
}

.sidebar .widget {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #f1f1f1;
  border-right: 4px solid #f1f1f1;
  border-bottom: 4px solid #f1f1f1;
  padding: 35px;
  margin-bottom: 35px;
  position: relative;
}

.sidebar .widget * {
  position: relative;
}

.sidebar .widget .widget-title {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 22px;
  color: #080808;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-family: "Open Sans", sans-serif;
}

.sidebar .widget .widget-title:after {
  content: "";
  width: 50px;
  height: 4px;
  background: #080808;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.sidebar .widget .widget-title:before {
  content: "";
  width: 100%;
  height: 4px;
  background: #f1f1f1;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  mix-blend-mode: difference;
}

.sidebar .widget form {
  width: 100%;
  display: block;
}

.sidebar .widget form input[type="submit"] {
  margin-top: 10px;
  background: #080808;
  color: #fff;
}

.sidebar .widget .categories {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.sidebar .widget .categories li {
  width: 100%;
  display: block;
  margin: 4px 0;
  padding: 0;
  list-style: none;
}

.sidebar .widget .categories li a {
  color: #080808;
  font-size: 19px;
}

.sidebar .widget .widget-gallery {
  width: calc(100% + 4px);
  float: left;
  margin: 0 -2px;
  padding: 0;
}

.sidebar .widget .widget-gallery li {
  width: 50%;
  float: left;
  margin: 0;
  padding: 2px;
  list-style: none;
}

/* PAGINATION */
.pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.pagination .page-item {
  display: inline-block;
}

.pagination .page-item.active .page-link {
  background: #080808;
  border-color: transparent;
  color: #fff;
}

.pagination .page-item .page-link {
  height: 60px;
  line-height: 60px;
  border-radius: 0 !important;
  padding: 0 20px;
  color: #080808;
}

.pagination .page-item .page-link:hover {
  text-decoration: none;
}

/* RESPONSIVE MEDIUM  */
@media only screen and (max-width: 1199px) {
  .search-box .container .search-events ul li {
    padding: 0 2%;
  }

  .slider .slider-texts .swiper-slide h1 {
    font-size: 92px;
  }

  .navbar .site-menu ul li {
    margin: 0 10px;
  }

  .navbar .navbar-button {
    display: none;
  }

  .play-now {
    left: 60%;
  }

  .page-header .inner h1 {
    font-size: 92px;
  }

  .page-header .inner p {
    padding-right: 30%;
  }

  .side-icon-list ul li {
    margin-bottom: 30px;
  }

  .side-icon-list.right-side {
    padding-left: 30px;
  }

  .exhibition-box .content-box h4 {
    font-size: 25px;
  }

  .exhibition-box {
    padding: 0 !important;
  }

  .collection-box {
    padding: 0 !important;
  }

  .collection-box h4 {
    font-size: 25px;
  }

  .image-content-box {
    padding: 0 !important;
  }

  .counter-box .odometer {
    font-size: 56px;
  }

  .counter-box .value {
    font-size: 56px;
  }

  .testimonial-box {
    max-width: 100%;
  }

  .text-content p {
    padding-right: 10%;
  }

  .image-icon-box .content-box h4 {
    font-size: 26px;
  }

  .image-icon-box:hover .content-box .expand {
    max-height: 400px;
  }

  .side-list.right {
    padding-left: 30px;
  }

  .side-content h2 {
    font-size: 46px;
  }

  .side-content.left {
    padding-right: 30px;
  }

  .art-slider-content {
    height: 300px;
  }

  .art-slider .titles h2 {
    font-size: 46px;
  }

  .cta-box h2 {
    font-size: 72px;
  }

  .contact-form {
    padding: 0;
  }

  .recent-news .content-box h3 {
    font-size: 38px;
  }

  .newsletter-box .form {
    width: 100%;
    padding: 0;
  }

  .newsletter-box .newsletter-image {
    display: none;
  }
}

/* RESPONSIVE TABLET  */
@media only screen and (max-width: 991px) {
  input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
  }

  textarea {
    border-radius: 0 !important;
    -webkit-appearance: none;
    appearance: none;
  }

  .side-widget.active .display-mobile {
    display: flex;
    margin-top: -50px;
  }

  .side-widget.active .inner {
    display: none;
  }

  .side-widget {
    width: 440px;
  }

  .search-box .container .search-events ul {
    display: none;
  }

  .navbar .custom-menu {
    display: none;
  }

  .navbar .site-menu {
    display: none;
  }

  .navbar .navbar-button {
    display: inline-block;
  }

  .slider .slider-texts .swiper-slide h1 {
    font-size: 72px;
  }

  .slider .slider-texts .swiper-slide p {
    opacity: 1;
  }

  .slider .slider-images-old .swiper-slide .mobile-slide {
    display: block;
  }

  .play-now {
    display: none;
  }

  .page-header .inner p {
    padding-right: 10%;
    padding-left: 0;
    border-left: none;
    margin-left: 0;
  }

  .side-icon-list {
    padding-left: 0;
  }

  .side-icon-list ul li .content p br {
    display: none;
  }

  .sidebar {
    padding-left: 0;
    margin-top: 60px;
  }

  .col-lg-4:nth-child(1) .exhibition-box {
    padding-right: 0;
  }

  .col-lg-4:nth-child(2) .exhibition-box {
    padding: 0;
  }

  .col-lg-4:nth-child(3) .exhibition-box {
    padding-left: 0;
    margin: 50px 0;
  }

  .col-lg-3 .circle-button {
    display: none;
  }

  .col-lg-5 .side-icon-list.right-side {
    margin-top: 60px;
  }

  .cta-box h2 {
    font-size: 52px;
  }

  .side-image.right-half {
    width: 100%;
  }

  .side-image.left-half {
    width: 100%;
  }

  .image-content-box {
    margin-top: 60px;
  }

  .side-arts {
    width: 100%;
  }

  .counter-box {
    margin: 15px 0;
  }

  .art-slider {
    margin-top: -80px;
  }

  .art-slider-content {
    height: 200px;
    margin-bottom: 80px;
  }

  .art-slider-images-old {
    width: 100%;
  }

  .image-icon-box {
    border-right: none;
  }

  .recent-news {
    padding: 0;
    margin-bottom: 80px;
  }

  .recent-news .content-box {
    width: 100%;
    margin-bottom: 0;
    order: 2;
  }

  .recent-news figure {
    width: 100%;
    order: 1;
    margin-bottom: 50px;
  }

  .contact-form {
    margin-top: 60px;
  }

  .col-12:nth-child(even) .recent-news .content-box {
    text-align: left;
    margin: 0;
  }

  .col-12:nth-child(even) .recent-news .content-box p {
    padding-left: 0;
  }

  .newsletter-box {
    padding: 50px 0;
  }

  .footer .footer-menu {
    margin-bottom: 50px;
  }
}

/* RESPONSIVE MOBILE */
@media only screen and (max-width: 767px) {
  .preloader {
    background: #080808;
  }

  .preloader svg {
    display: none;
  }

  .page-transition {
    background: #080808;
  }

  .page-transition svg {
    display: none;
  }

  .side-widget {
    padding: 30px;
    padding-right: 0;
    width: 100%;
    max-width: 85vw;
  }

  .side-widget .logo img {
    height: 52px;
  }

  .search-box .container .form input[type="search"] {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }

  .navbar {
    padding: 20px 15px;
  }

  .navbar .navbar-button {
    display: none;
  }

  .navbar .logo a img {
    height: 48px;
  }

  .slider .container-fluid {
    width: calc(100% - 30px);
    margin: 0 15px;
    padding: 0;
  }

  .slider .slider-texts .swiper-slide h1 {
    font-size: 42px;
  }

  .slider .slider-texts .swiper-slide h1 br {
    display: none;
  }

  .slider .slider-texts .swiper-slide p {
    margin-left: 0;
    padding-left: 20px;
    font-size: 17px;
  }

  .slider .slider-texts .swiper-slide p br {
    display: none;
  }

  .slider .slider-nav.container-fluid {
    margin-top: -70px;
  }

  .slider .swiper-pagination-progressbar {
    display: none;
  }

  .slider .swiper-fraction {
    display: none;
  }

  .slider .slider-images-old .button-prev {
    margin-left: 0;
    width: 60px;
    height: 60px;
  }

  .slider .slider-images-old .button-next {
    width: 60px;
    height: 60px;
  }

  .page-header .inner {
    padding: 0 15px;
  }

  .page-header .inner h1 {
    font-size: 42px;
  }

  .page-header .inner p {
    font-size: 17px;
    padding-right: 0;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .section-title h2 br {
    display: none;
  }

  .side-content.left br {
    display: none;
  }

  .counter-box {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .side-content.left {
    padding-right: 0;
  }

  .side-content table {
    font-size: 14px;
  }

  .side-icon-list ul li figure {
    width: 100%;
    margin-bottom: 10px;
  }

  .side-icon-list ul li .content {
    width: 100%;
  }

  .side-icon-list ul li .content p br {
    display: none;
  }

  .col-lg-6 .side-list.right {
    padding-left: 0;
    margin-top: 60px;
  }

  .col-lg-3:last-child .counter-box {
    margin-bottom: 0;
  }

  .col-lg-6 .side-icon-list {
    margin-bottom: 50px;
    padding-right: 0;
  }

  .collection-box figure {
    margin-bottom: 15px;
  }

  .col-lg-4:nth-child(1) .image-content-box {
    margin-top: 0;
  }

  .blog-post .content-box h3 {
    font-size: 32px;
  }

  .note-box {
    padding: 30px;
  }

  .note-box h2 {
    font-size: 32px;
  }

  .text-box p {
    padding-right: 0;
  }

  .art-slider {
    margin-top: 0;
  }

  .art-slider-content {
    display: none;
  }

  .cta-box h2 {
    font-size: 42px;
  }

  .side-icon-list.right-side {
    padding: 0;
  }

  .col-lg-4:nth-child(1) .exhibition-box {
    margin-top: 0;
  }

  .col-lg-4:nth-child(3) .text-box {
    margin: 50px 0;
  }

  .col-lg-4:last-child .image-icon-box .content-box {
    padding-bottom: 0;
  }

  .col-lg-4:nth-child(3) .text-content {
    margin: 30px 0;
  }

  .col-lg-6 .side-icon-list.left-side {
    padding-top: 60px;
    padding-right: 0;
  }

  .side-arts {
    padding: 80px 30px;
  }

  .testimonial-box {
    margin-bottom: 60px;
  }

  .testimonial-box .content-box {
    padding: 30px;
  }

  .col-md-6:last-child .testimonial-box {
    margin-bottom: 0;
  }

  .image-content-box .content-box {
    width: 100%;
    margin-top: 0;
  }

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

  .text-content p {
    padding: 0 5%;
  }

  .text-content p:before {
    display: none;
  }

  .image-icon-box {
    padding-bottom: 100px;
  }

  .image-icon-box .content-box {
    padding: 30px 0;
  }

  .image-icon-box .icon {
    width: 60px;
    height: 60px;
  }

  .image-icon-box .icon img {
    height: 36px;
  }

  .recent-news figure {
    margin-bottom: 20px;
  }

  .recent-news .content-box h3 {
    font-size: 27px;
  }

  .recent-news .content-box p {
    padding: 0;
  }

  .text-box h2 {
    font-size: 42px;
  }

  .col-md-2 img {
    margin-bottom: 30px;
  }

  .col-12:nth-child(2) .recent-news {
    margin-bottom: 50px;
  }

  .newsletter-box {
    padding: 50px 0;
  }

  .newsletter-box .form .titles h2 {
    font-size: 34px;
  }

  .newsletter-box .form .inner {
    width: 100%;
  }

  .newsletter-box .form input[type="text"] {
    width: 100%;
    margin-bottom: 10px;
  }

  .newsletter-box .form input[type="submit"] {
    width: 100%;
  }

  .footer {
    padding-top: 80px;
  }

  .footer .social-media {
    margin-bottom: 50px;
  }

  .footer .footer-bottom .creation {
    width: 100%;
  }
}

/* ANIMATIONS */
@-webkit-keyframes rotate {
  from {
    --webkit-transform: rotate(360deg);
  }

  to {
    --webkit-transform: rotate(0);
  }
}

@-moz-keyframes rotate {
  from {
    --moz-transform: rotate(360deg);
  }

  to {
    --moz-transform: rotate(0);
  }
}

@-ms-keyframes rotate {
  from {
    --ms-transform: rotate(360deg);
  }

  to {
    --ms-transform: rotate(0);
  }
}

@-o-keyframes rotate {
  from {
    --o-transform: rotate(360deg);
  }

  to {
    --o-transform: rotate(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0);
  }
}

@-webkit-keyframes svg-morph {
  0% {
    d: path("m244.333332,38.437499c26.666664,-1.666666 125.666662,0.999995 195.333325,50.33333c69.666663,49.333335 -39.666664,141.666664 -70.666664,174.229164c-31,32.5625 -176.999993,107.437507 -234.999993,76.437507c-58,-31 73.666665,-107.000001 49,-190.4375c-24.666665,-83.437499 34.666668,-108.895835 61.333332,-110.562501z"
      );
  }

  100% {
    d: path("m244.333332,38.437499c58.666669,50.333342 24.666647,101.000011 94.33331,150.333346c69.666663,49.333335 71.333353,156.666666 14.333349,175.229163c-57.000004,18.562498 -160.999991,6.437492 -218.999991,-24.562508c-58,-31 -109.333363,-174.000012 -70.000018,-236.437507c39.333345,-62.437496 121.666681,-114.895836 180.33335,-64.562494z"
      );
  }
}

@-webkit-keyframes preloader-svg {
  0% {
    d: path("M0,0 C305.333333,0 625.333333,0 960,0 C1294.66667,0 1614.66667,0 1920,0 L1920,1080 C1614.66667,1080 1294.66667,1080 960,1080 C625.333333,1080 305.333333,1080 0,1080 L0,0 Z"
      );
  }

  50% {
    d: path("M0,230 C305.333333,100 625.333333,0 960,0 C1294.66667,0 1614.66667,100 1920,300 L1920,1080 C1614.66667,1080 1294.66667,1080 960,1080 C625.333333,960 305.333333,1080 0,1080 L0,230 Z"
      );
  }

  100% {
    d: path("M0,0 C305.333333,0 625.333333,0 960,0 C1294.66667,0 1614.66667,0 1920,0 L1920,1080 C1614.66667,1080 1294.66667,1080 960,1080 C625.333333,1080 305.333333,1080 0,1080 L0,0 Z"
      );
  }
}

@-webkit-keyframes preloader-inner {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes page-transition {
  0% {
    d: path("M0,0 C305.333333,0 625.333333,0 960,0 C1294.66667,0 1614.66667,0 1920,0 L1920,1080 C1614.66667,980 1294.66667,930 960,930 C625.333333,930 305.333333,980 0,1080 L0,0 Z"
      );
  }

  100% {
    d: path("M0,0 C305.333333,0 625.333333,0 960,0 C1294.66667,0 1614.66667,0 1920,0 L1920,1080 C1614.66667,1080 1294.66667,1080 960,1080 C625.333333,1080 305.333333,1080 0,1080 L0,0 Z"
      );
  }
}

@-webkit-keyframes side-widget-in {
  0% {
    d: path("M540,1080H0V0h540c-40.28,124.78-85.13,311.48-85,541C455.13,769.53,499.81,955.48,540,1080z"
      );
  }

  50% {
    d: path("M540,1080H0V0h540c31.96,142.05,60.09,325.94,60,541C599.91,755.16,571.87,938.34,540,1080z"
      );
  }

  100% {
    d: path("M540,1080H0V0h540c0,179.85,0,359.7,0,539.54C540,719.7,540,899.85,540,1080z"
      );
  }
}

@-webkit-keyframes side-widget-out {
  0% {
    d: path("M540,1080H0V0h540c0,179.85,0,359.7,0,539.54C540,719.7,540,899.85,540,1080z"
      );
  }

  50% {
    d: path("M540,1080H0V0h540c-40.28,124.78-85.13,311.48-85,541C455.13,769.53,499.81,955.48,540,1080z"
      );
  }

  100% {
    d: path("M540,1080H0V0h540c31.96,142.05,60.09,325.94,60,541C599.91,755.16,571.87,938.34,540,1080z"
      );
  }
}

/* New CSS 07-Oct-2021 */
/* Top header  */

/** Header **/

.header_content .menu>li .text-center a button:hover {
  background: #112049;
  color: #fff;
}

.border-none {
  border: none !important;
}

.bgW {
  background: #000 !important;
  color: #fff !important;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

#header {
  position: relative;
  z-index: 999;
  width: 100%;
  transition: all 0.3s ease 0s;
  background: #f8f9fa;
}

#header.header-sticky .header_middle {
  top: 0;
  width: 100%;
  float: left;
  background: #fff;
}

.header_top:after {
  display: table;
  content: "";
  clear: both;
}

.header_top .header_left p {
  color: #646464;
  padding: 0 10px;
  line-height: 36px;
  border-right: 1px solid;
  display: inline;
}

.header_top .header_left p i {
  font-size: 14px;
  margin-right: 5px;
  color: #1b2d5c;
}

.header_top .header_right {
  font-size: 0;
}

#header.header-sticky .header_content:after {
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.58);
}

.header_content {
  width: 100%;
  padding: 0 0px;
  background: rgb(4, 31, 88);
}

.header_middle {
  background: #fff;
  width: 100%;
  display: table;
  margin-bottom: 5px;
}

.header_content .container {
  position: relative;
}

.header_content .header_menu {
  display: flex;
  vertical-align: middle;
  text-align: left;
  font-size: 14px;
  justify-content: space-between;
}

.header_content .menu>li:last-child {
  float: inline-end;
}

.header_content .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.header_content .menu>li {
  float: left;
  position: relative;
}

.header_content .menu>li>a {
  display: block;
  padding: 0 15px;
  margin-right: 40px;
  line-height: 45px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
  letter-spacing: 0.6px;
  ---webkit-transition: all 0.2s ease;
  ---moz-transition: all 0.2s ease;
  ---ms-transition: all 0.2s ease;
  ---o-transition: all 0.2s ease;
}

.header_content .menu>li.current-menu-item>a {
  color: #fff;
}

.header_content .menu>li.current-menu-item>a.active {
  background-color: #f89e52 !important;
}

.header_content .menu>li:hover>a {
  color: #fff;
  text-decoration: none;
}

.header_content .menu>li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  --webkit-transform: translate(0, 0);
  ---moz-transform: translate(0, 0);
  ---ms-transform: translate(0, 0);
  ---o-transform: translate(0, 0);
}

.header_content .menu>li:last-child>.sub-menu {
  right: 0;
  left: unset;
}

.header_content .menu>li>.sub-menu {
  left: 0;
  right: 0;
  margin: auto;
}

.header_content .menu>li .sub-menu {
  width: 235px;
  position: absolute;
  left: 0;
  background-color: #fff;
  list-style: none;
  /*padding: 10px 0;*/
  margin: 0;
  visibility: hidden;
  opacity: 0;
  --webkit-transform: translate(0, 20px);
  ---moz-transform: translate(0, 20px);
  ---ms-transform: translate(0, 20px);
  ---o-transform: translate(0, 20px);
  ---webkit-transition: all 0.3s ease;
  ---moz-transition: all 0.3s ease;
  ---ms-transition: all 0.3s ease;
  ---o-transition: all 0.3s ease;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header_content .menu>li .sub-menu li {
  float: none;
  position: relative;
  border-top: 1px solid #3333334a;
}

.header_content .menu>li .sub-menu li:first-child {
    border-top: none;
}

.header_content .menu>li .sub-menu li a {
  display: block;
  padding: 10px 15px;
  color: #000;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 20px;
  ---webkit-transition: all 0.2s ease;
  ---moz-transition: all 0.2s ease;
  ---ms-transition: all 0.2s ease;
  ---o-transition: all 0.2s ease;
}

.header_content .menu>li .sub-menu li a span {
  float: right;
  position: relative;
  top: 2px;
}

.header_content .menu>li .sub-menu li.current-menu-item>a {
  background-color: #1b2d5c;
  color: #fff;
}

.header_content .menu>li .sub-menu li:hover>a {
  background-color: #1b2d5c;
  color: #fff;
  text-decoration: none;
}

.header_content .menu>li .sub-menu li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  --webkit-transform: translate(0, 0);
  ---moz-transform: translate(0, 0);
  ---ms-transform: translate(0, 0);
  ---o-transform: translate(0, 0);
}

.header_content .menu>li .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
  padding: 0;
}

.header_logo {
  float: left;
  line-height: 78px;
  position: relative;
  top: 3px;
}

.header_logomiddle {
  position: absolute;
  right: 10%;
  transform: translateX(-50%);
  top: 43px;
}

.book-btn {
  border-radius: 0;
  color: #ffffff !important;
  float: right;
  font-size: 12px;
  letter-spacing: 0.3px;
  line-height: 14px;
  padding: 10px 15px;
  text-transform: uppercase;
  background: #254079;
  --webkit-transition: all 0.4s ease 0s;
  --moz-transition: all 0.4s ease 0s;
  --ms-transition: all 0.4s ease 0s;
  --o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.book-btn:hover {
  color: #ffffff !important;
  background: #ee1a28;
}

.menu-bars {
  color: #333;
  width: 50px;
  font-size: 28px;
  cursor: pointer;
  display: none;
  top: 0;
  right: 15px;
  bottom: 0;
  position: absolute;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  transition: all 0.2s ease;
}

.menu-bars span {
  width: 25px;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 2px;
  background-color: #000;
  display: block;
  position: absolute;
  transition: all 0.3s ease;
}

.menu-bars span:before,
.menu-bars span:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #000;
  transition: all 0.3s ease;
}

.menu-bars span:after {
  top: -8px;
}

.menu-bars span:before {
  bottom: -8px;
}

.menu-bars:hover span {
  background-color: transparent;
}

.menu-bars:hover span:after {
  background-color: #d29130;
  transform: rotate(0deg);
  top: -6px;
}

.menu-bars:hover span:before {
  background-color: #cf752d;
  transform: rotate(0deg);
}

.menu-bars.active span {
  background-color: transparent;
}

.menu-bars.active span:after {
  background-color: #cf752d;
  transform: rotate(45deg);
  top: 0;
}

.menu-bars.active span:before {
  background-color: #cf752d;
  transform: rotate(-45deg);
  bottom: 0;
}

.header_mobile {
  background-color: #fff;
  left: 0;
  right: 0;
  z-index: 999;
  position: absolute;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.58);
}

.header_mobile .container {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header_mobile .header_logo {
  display: inline-block;
}

.header_mobile .menu-bars {
  display: block;
}

.header_mobile .header_menu {
  position: fixed;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  /* top: 128px !important; */
  bottom: 0;
  right: -270px;
  width: 270px;
  overflow-y: auto;
  background-color: #1b2d5c;
  transition: right 0.5s cubic-bezier(0, 0.67, 0.35, 0.94);
}

.header_mobile .header_menu.active {
  right: 10px;
}

.header_mobile .header_menu ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.header_mobile .header_menu ul li a {
  display: block;
  padding: 10px 40px 10px 20px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.header_mobile .header_menu ul li a span {
  float: right;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 1;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.header_mobile .header_menu ul li a span:before {
  content: "\f0d7";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header_mobile .header_menu ul li a:hover {
  background-color: #1b2d5c;
  color: #fff;
}

.header_mobile .header_menu ul li.current-menu-item>a {
  background-color: #1b2d5c;
  color: #fff;
}

.header_mobile .header_menu ul li .sub-menu {
  background-color: rgb(2 2 78);
  display: none;
}

.header_mobile .header_menu ul li>.sub-menu>li>a {
  padding-left: 35px;
}

.header_mobile .header_menu ul li>.sub-menu>li>.sub-menu>li>a {
  padding-left: 55px;
}

.header_mobile .header_menu ul li>.sub-menu>li>.sub-menu>li>.sub-menu>li>a {
  padding-left: 75px;
}

.header_mobile .header_menu ul li>.sub-menu>li>.sub-menu>li>.sub-menu>.sub-menu>li>a {
  padding-left: 100px;
}

.header_mobile .header_logo {
  line-height: 1;
}

.header-sticky {
  position: fixed;
  top: 0;
  backface-visibility: hidden;
  transition: 0.4s;
  transition: 0.4s;
}

.search-button {
  display: inline-block;
  padding-left: 10px;
  cursor: pointer;
}

.header_logo_right {
  float: right;
  margin-top: 10px;
}

.about-two__image--2 {
  top: -30px;
  right: 100px;
  z-index: 9;
}

.about-inner-image {
  border-radius: 0 100px 0 100px;
}

.about-two__image-content {
  width: 370px;
  height: 375px;
  border: 2px dashed #85858f;
  padding: 30px 15px;
  position: absolute;
  top: -10px;
  border-radius: 0 50px;
  left: 40px;
  z-index: 11;
}

.about-two__image-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-two__image-decor {
  width: 148px;
  height: 48px;
  border-right: 2px solid #d99578;
  background-image: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(19%, #f2ebe8),
      to(white));
  background-image: linear-gradient(180deg, #f2ebe8 19%, white 100%);
  margin-right: 15px;
}

.about-two__image-content-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-two__image-content-left {
  font-size: 32px;
  color: #302e2f;
  line-height: 1em;
  font-family: "Prata";
}

.about-two__image-content-right {
  margin-left: 10px;
}

.about-two__image-content-right span {
  display: block;
  font-size: 18px;
  color: #302e2f;
  line-height: 1em;
  font-family: "Prata";
}

.about-two__year {
  font-size: 24px;
  margin-top: 15px;
}

.about-two__image-content-right span {
  display: block;
  font-size: 16px;
  color: #302e2f;
  line-height: 20px;
  font-family: "Prata";
  margin-top: 22px;
}

.about-two .block-title,
.about-two .block-title__title,
.about-two .block-title__sub-title {
  margin: 0;
}

.block-title__tag-line {
  margin: 0;
  color: #a5a5a5;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1em;
  border-top: 2px solid #d99578;
  padding-top: 20px;
  display: inline-block;
}

.about-two .block-title__title {
  margin-top: 15px;
}

.about-two .block-title__sub-title {
  margin-top: 30px;
  margin-bottom: 25px;
}

.about-two__text {
  margin: 0;
}

.about-two__text+.about-two__text {
  margin-top: 15px;
}

.thm-btn {
  border: none;
  outline: none;
  background-color: #d99578;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 52px;
  border-radius: 4px;
  --webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.about-two__btn {
  margin-top: 35px;
}

.thm-btn:hover {
  background-color: #302e2f;
  color: #fff;
}

[class*="about-two__image--"] {
  position: absolute;
  top: 15px;
  left: 65px;
  width: 440px;
  height: 325px;
  z-index: 999;
  border-radius: 0 50px 0;
}

.about-two__image--2 {
  top: -30px;
  right: 100px;
  z-index: 9;
}

.about-two__content h2.block-title__title,
.about-two__content h3.block-title__sub-title {
  font-family: "Lora", serif;
  font-weight: bold;
}

.about-two__content h3.block-title__sub-title {
  margin-bottom: 30px;
  color: #989898;
  font-size: 25px;
  font-weight: 500;
}

.about-two__content h6.block-title__sub-title {
  font-family: "Lora", serif;
  font-size: 25px;
}

.about-two__content h2.block-title__title {
  font-size: 42px;
  margin-bottom: 10px;
  color: #1b2d5c;
}

.visitor-count b {
  padding: 0 15px;
  font-size: 14px;
}

.visitor-count b:last-child {
  padding: 0;
}

/* entypo */
#sticky-social {
  position: fixed;
  top: 42%;
  z-index: 9;
}

#sticky-social ul {
  padding: 0;
}

#sticky-social ul li {
  list-style: none;
}

#sticky-social a {
  background: #333;
  color: #fff;
  display: block;
  height: 35px;
  line-height: 35px;
  position: relative;
  text-align: center;
  width: 35px;
}

#sticky-social a span {
  line-height: 35px;
  right: -120px;
  position: absolute;
  text-align: center;
  width: 120px;
  font-family: "Poppins";
}

#sticky-social a:hover span {
  right: 100%;
}

#sticky-social a[class*="facebook"],
#sticky-social a[class*="facebook"]:hover,
#sticky-social a[class*="facebook"] span {
  background: #3b5998;
}

#sticky-social a[class*="twitter"],
#sticky-social a[class*="twitter"]:hover,
#sticky-social a[class*="twitter"] span {
  background: #00aced;
}

#sticky-social a[class*="google-plus"],
#sticky-social a[class*="google-plus"]:hover,
#sticky-social a[class*="google-plus"] span {
  background: #dd4b39;
}

#sticky-social a[class*="linkedin"],
#sticky-social a[class*="linkedin"]:hover,
#sticky-social a[class*="linkedin"] span {
  background: #007bb6;
}

#sticky-social a[class*="instagram"],
#sticky-social a[class*="instagram"]:hover,
#sticky-social a[class*="instagram"] span {
  background: #517fa4;
}

#sticky-social a[class*="youtube"],
#sticky-social a[class*="youtube"]:hover,
#sticky-social a[class*="youtube"] span {
  background: #dd4b39;
}

#sticky-social a[class*="whatsapp"],
#sticky-social a[class*="whatsapp"]:hover,
#sticky-social a[class*="whatsapp"] span {
  background: #2eb100;
}

.swiper-slide {
  width: 100% !important;
}

.welcome-content {
  padding: 30px;
  width: 106%;
  background: #fff;
  display: table;
  box-shadow: 0px 0px 91px 10px #ccc;
  margin-right: -25px;
  margin-top: 50px;
  border-radius: 30px 0 0 30px;
}

.welcome-content .custom-scrolling li a {
  color: #1b2d5c;
  display: inline-block;
  margin-bottom: 10px;
}

.welcome-content .custom-scrolling li p {
  position: relative;
  display: flex;
}

.welcome-content .custom-scrolling li p:before {
  content: "-";
}

h3.title-head {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #1b2d5c;
  font-family: "Lora", serif;
}

h4.title-subhead {
  font-size: 25px;
  font-weight: 500;
  color: rgba(152, 152, 152, 1);
}

.welcome-content .custom-scrolling {
  height: 315px;
  overflow-y: auto;
  padding-right: 40px;
}

.custom-scrolling::-webkit-scrollbar {
  width: 10px;
}

.custom-scrolling::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.custom-scrolling::-webkit-scrollbar-thumb {
  background-color: darkgrey;
}

.custom-scrolling::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.anchor-link {
  float: right;
  position: relative;
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 10px;
  border-radius: 50px;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
}

.anchor-link:hover {
  color: #eddd23;
  border: 1px solid #eddd23;
}

.upcoming-events h6 i {
  color: #fff;
}

/* Upcoming Events */
.upcoming-events {
  width: 100%;
  float: left;
  min-height: auto;
  display: block;
  position: relative;
  margin: 0 0 20px;
  padding-top: 10px;
  list-style: none;
  padding-left: 0;
}

.image-eventbox {
  width: 120px;
  height: 100px;
  overflow: hidden;
  float: left;
  text-align: center;
  background: #c8762d;
  margin-right: 20px;
  border: 3px solid #fff;
  border-radius: 10px 0 20px 0;
}

.image-eventbox img {
  width: 120px;
  height: 100px;
  transition: all 0.5s ease;
  --webkit-transition: all 0.5s ease;
}

.upcoming-events li:hover .image-eventbox img {
  transform: scale(1.2);
  --webkit-transform: scale(1.2);
}

.date-box .day h2 {
  font-weight: bold;
  line-height: 40px;
  font-size: 50px;
}

.date-box .day h2,
.date-box .month h3 {
  color: #fff;
}

.date-box .month h3 {
  font-size: 30px;
  font-weight: 400;
}

.upcomingEvents-box {
  box-shadow: 0px 0px 91px 10px #ccc;
  padding: 25px;
  width: 100%;
  display: table;
  background: #1b2d5c;
  border-radius: 0px 30px 0px 40px;
}

.upcomingEvents-box h3.title-head {
  color: #fff;
}

.upcoming-events li {
  display: table;
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 20px;
}

.upcoming-events li:last-child {
  margin-bottom: 0px;
  border-bottom: none;
  padding-bottom: 0px;
}

.upcoming-events li a {
  color: #fff;
  display: block;
  font-size: 13px;
}

.upcoming-events h4 {
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  /*margin-bottom: 15px;*/
  margin-top: 23px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.upcoming-events li a:hover h4 {
  color: #1b2d5c;
}

.upcoming-events h6 {
  font-size: 13px;
  color: #e7de9c;
}

#events-slider .owl-dots {
  display: none;
}

#events-slider .owl-prev {
  position: absolute;
  top: -80px;
  right: 7%;
  width: 50px;
  height: 50px;
  border: 1px solid #a86e49;
  border-radius: 35px;
  color: #a86e49;
}

#events-slider .owl-next {
  position: absolute;
  top: -80px;
  right: 2%;
  width: 50px;
  height: 50px;
  border: 1px solid #a86e49;
  border-radius: 35px;
  color: #a86e49;
}

#events-slider .owl-prev:hover,
#events-slider .owl-next:hover {
  background: #a86e49;
  border: 1px solid #a86e49;
  color: #fff;
}

/* Client Slider */
#clientslider .owl-nav .owl-next,
#clientslider .owl-nav .owl-prev,
#collection-photoslider .owl-nav .owl-next,
#collection-photoslider .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  --moz-transform: translateY(-50%);
  --webkit-transform: translateY(-50%);
  --o-transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: 1px solid #a86e49;
  border-radius: 35px;
  color: #a86e49;
}

#collection-photoslider .owl-nav .owl-next i {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
}

#clientslider .owl-nav .owl-prev {
  left: -40px;
}

#clientslider .owl-nav .owl-next {
  right: -40px;
}

#clientslider .owl-dots,
#collection-photoslider .owl-dots {
  display: none;
}

#clientslider .owl-prev:hover,
#clientslider .owl-next:hover {
  background: #a86e49;
  border: 1px solid #a86e49;
  color: #fff;
}

#collection-photoslider .owl-nav .owl-next,
#collection-photoslider .owl-nav .owl-prev {
  top: -50px;
  transform: unset;
  --moz-transform: unset;
  --webkit-transform: unset;
  --o-transform: unset;
  background: #fff;
  color: #1b2d5c;
  border-color: #1b2d5c;
}

#collection-photoslider .owl-nav .owl-prev {
  right: 40px;
}

#collection-photoslider .owl-nav .owl-next {
  right: 0;
}

#collection-photoslider .owl-prev:hover,
#collection-photoslider .owl-next:hover {
  background: #1b2d5c;
  border: 1px solid #1b2d5c;
  color: #a86e49;
}

/* Tabs */
.anchortab-links {
  position: absolute;
  right: 115px;
  top: 0;
}

.anchortab-links .nav-link.active,
.anchortab-links .nav-link:hover {
  border-bottom: 2px solid #1b2d5c !important;
  color: #1b2d5c;
  background-color: transparent;
  border-color: transparent;
}

.anchortab-links .nav-link {
  background-color: transparent;
  border-color: transparent;
  padding: 10px 20px 20px;
  padding-bottom: 7px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

#collection-photoslider .collection-image {
  overflow: hidden;
}

#collection-photoslider .collection-image img {
  transition: all 0.5s ease;
  /*border: 1px solid #fff;
  border-radius: 20px;*/
  height: 270px;
  object-fit: cover;
  object-position: left;
}

#collection-photoslider .item:hover .collection-image img {
  transform: scale(1.1);
  border: 1px solid #fff;
  border-radius: 20px;
}

#nav-tabContent p {
  background: transparent;
  color: #fff;
  padding: 8px;
  height: 62px;
  text-align: center;
  line-height: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nav-tabContent p a {
  color: #ffff;
  text-align: start;
  margin-top: 28px;
  line-height: 18px;
  font-weight: lighter;
  text-align: justify;
}

#nav-tabContent p small {
  color: #fff;
  font-weight: 500;
}

#nav-tabContent a:hover {
  color: #cfcfcf;
}

.bgImgArea {
  background: url("../images-old/bg.jpg");
  position: relative;
}

.bgImgArea:after {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  content: "";
}

.boxAera {
  background: #804655;
  padding: 25px;
  height: 100%;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  position: relative;
}

.boxAera h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.boxAera h4>a {
  border: 1px solid #fff;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 12px;
  color: #fff;
  display: inline-block;
  text-transform: capitalize;
  background: #1b2d5c;
}

.boxAera h4>a:hover {
  color: #eddd23;
  border: 1px solid #eddd23;
}

.boxAera .sdBoxArea {
  width: 100%;
  color: #fff;
  font-size: 15px;
}

.boxAera .sdBoxArea>span {
  display: block;
}

.boxAera .sdBoxArea>span i,
.boxAera .sdBoxArea p span {
  color: #ffc761;
}

.boxAera .sdBoxArea h4 {
  font-size: 15px;
  text-transform: capitalize;
  margin-top: 15px;
  font-weight: normal;
  line-height: 22px;
}

.boxAera .owl-nav {
  margin: 0;
  padding: 0;
}

.boxAera .owl-carousel .owl-nav button {
  position: absolute;
  top: -94px;
  width: 22px;
  height: 22px;
  border: 1px solid #1b2d5c;
  border-radius: 5px;
  line-height: 0;
  text-align: center;
  color: #1b2d5c;
  margin: 0 !important;
}

.boxAera .owl-carousel .owl-nav button i {
  line-height: 0;
}

.boxAera .owl-carousel .owl-nav .owl-prev {
  right: 15px;
}

.boxAera .owl-carousel .owl-nav .owl-next {
  right: -15px;
}

.boxAera.vacanciesPanel .owl-carousel .owl-nav .owl-prev {
  left: -15px;
  right: auto;
}

.boxAera.vacanciesPanel .owl-carousel .owl-nav .owl-next {
  left: 15px;
  right: auto;
}

.pr-0 {
  padding-right: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pt-pb-50 {
  padding: 30px 0 !important;
}

.quickLinkPanel {
  background: #1b2d5c;
  border-radius: 20px;
  position: relative;
  padding: 53px 40px;
}

.quickLinkPanel:after {
  position: absolute;
  border: 2px dashed #8d616c;
  width: 96%;
  margin: auto;
  height: 96%;
  content: "";
  top: 2%;
  left: 2%;
  right: auto;
  border-radius: 20px;
}

.quickLinkPanel ul {
  margin: 0;
  padding: 0;
  z-index: 9;
  position: relative;
}

.quickLinkPanel ul li {
  margin-bottom: 15px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.quickLinkPanel ul li:after {
  width: 10px;
  height: 10px;
  content: "";
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

.quickLinkPanel ul li a {
  color: #fff;
  font-size: 14px;
}

.quickLinkPanel ul li a:hover {
  color: #ffb16e;
}

.vacanciesPanel {
  border-radius: 0 20px 20px 0;
}

.tenderPanel {
  border-radius: 20px 0 0 20px;
}

.owl-theme .owl-nav {
  margin: 0;
}

.footerRightSt {
  color: #fff;
  padding-top: 50px;
}

.footerRightSt h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}

.footerRightSt p a {
  color: #fff;
  font-size: 14px;
}

.footerRightSt p a:hover {
  color: #ffb97b;
}

.socialArea {
  margin-top: 10px;
  margin-bottom: 15px;
}

.socialArea a {
  display: inline-block;
  margin-right: 10px;
}

.socialArea i {
  background: #ffc761;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  line-height: 35px;
  text-align: center;
  color: #fff;
}

.VisitorsPanel {
  color: #fff;
}

.VisitorsPanel strong {
  color: #1b2d5c;
}

.socialArea i:hover {
  background: #fff;
  color: #ffc761;
}

.copyright {
  font-size: 13px;
  margin-top: 15px;
}

.casestudy_fullimage {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.casestudy_fullimage .item_image,
.casestudy_fullimage .item_video {
  width: 100%;
  display: block;
  height: 217px;
  background-image: --webkit-gradient(linear,
      left bottom,
      left top,
      from(#1b2d5c),
      to(#d17088));
  background-image: -webkit-linear-gradient(bottom, #1b2d5c, #d17088);
  background-image: -o-linear-gradient(bottom, #1b2d5c, #d17088);
  background-image: linear-gradient(0deg, #1b2d5c, #d17088);
}

.casestudy_fullimage .item_image img {
  width: 100%;
  height: 217px;
  display: block;
  --webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  --o-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.casestudy_fullimage .details_btn {
  top: 30px;
  opacity: 0;
  z-index: 2;
  right: 30px;
  width: 45px;
  height: 45px;
  color: #ffffff;
  font-size: 20px;
  line-height: 47px;
  position: absolute;
  text-align: center;
  border-radius: 100%;
  border: 1px solid #ffffff;
  --webkit-transform: translateY(-70px);
  --ms-transform: translateY(-70px);
  transform: translateY(-70px);
  --webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  --o-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.casestudy_fullimage .details_btn:hover {
  color: #4154f1;
  background-color: #ffffff;
}

.casestudy_fullimage .item_content {
  left: 0px;
  z-index: 1;
  bottom: 50px;
  padding: 30px;
  position: absolute;
  padding-bottom: 25px;
  width: 100%;
  text-align: center;
}

.casestudy_fullimage .item_content .item_title {
  overflow: hidden;
  display: inline-block;
}

.casestudy_fullimage .item_content .item_title>a {
  color: #ffffff;
  display: block;
  font-size: 22px;
}

.casestudy_fullimage .item_content .item_title>a i {
  font-size: 40px;
}

.casestudy_fullimage .item_content .item_category {
  overflow: hidden;
}

.casestudy_fullimage .item_content .item_category>a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.casestudy_fullimage .item_content .item_category>a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.casestudy_fullimage .item_content .item_title>a,
.casestudy_fullimage .item_content .item_category>a {
  opacity: 0;
  --webkit-transform: translateY(20px);
  --ms-transform: translateY(20px);
  transform: translateY(20px);
  --webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  --o-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.casestudy_fullimage:hover .item_image>img {
  opacity: 0.1;
}

.casestudy_fullimage:hover .details_btn {
  opacity: 1;
  --webkit-transform: translateY(0px);
  --ms-transform: translateY(0px);
  transform: translateY(0px);
}

.casestudy_fullimage:hover .item_title>a,
.casestudy_fullimage:hover .item_category>a {
  opacity: 1;
  --webkit-transform: translateY(0px);
  --ms-transform: translateY(0px);
  transform: translateY(0px);
}

.casestudy_fullimage:hover .item_title>a {
  --webkit-transition-delay: 0.3s;
  --o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.casestudy_fullimage:hover .item_category>a {
  --webkit-transition-delay: 0.4s;
  --o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.bannerSection .owl-dots {
  position: absolute;
  right: 0;
  width: 50px;
}

.bannerSection .owl-dots {
  position: absolute;
  right: 35px;
  width: 100%;
  bottom: 30px;
  transform: translateY(-50%);
  --webkit-transform: translateY(-50%);
  --moz-transform: translateY(-50%);
}

.bannerSection .owl-dots button {
  display: inline-block !important;
  margin: 0 3px;
}

.bannerSection .owl-dots button span {
  background: #fff;
  border: 1px solid #fff;
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
}

.bannerSection .owl-theme .owl-dots .owl-dot.active span,
.bannerSection .owl-theme .owl-dots .owl-dot:hover span {
  background: #1b2d5c;
}

.bannerSection .owl-nav {
  position: absolute;
  bottom: 55px;
  right: 20px;
  width: 100%;
  transform: translateY(-50%);
}

.bannerSection .owl-nav .owl-prev,
.bannerSection .owl-nav .owl-next {
  background-color: #ffffff;
  color: #333333;
  font-size: 24px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

.bannerSection .owl-nav .owl-prev {
  margin-right: 10px;
}

.bannerSection .owl-nav .owl-next {
  margin-left: 10px;
}

.bannerSection .owl-nav .owl-prev:before,
.bannerSection .owl-nav .owl-next:before {
  font-family: "Font Awesome Solid";
  font-weight: 900;
}

.bannerSection .owl-nav .owl-prev {
  right: 125px;
  position: absolute;
  color: #fff !important;
}

.bannerSection .owl-nav .owl-next {
  right: 40px;
  position: absolute;
  color: #fff !important;
}

.bannerSection .owl-nav .owl-next,
.bannerSection .owl-nav .owl-prev {
  margin: 0;
}

.bannerSection .owl-nav .owl-next i,
.bannerSection .owl-nav .owl-prev i {
  padding: 10px;
}

.explore-collectionBG {
  background-color: #112049;
  background-image: url("../images-old/subtle-white-feathers.png");
  background-size: auto !important;
}

.socialArea a.facebook i {
  background: #3b5998;
}

.socialArea a.twitter i {
  background: #00aced;
}

.socialArea a.instagram i {
  background: #517fa4;
}

.socialArea a.youtube i {
  background: #dd4b39;
}

.socialArea a>i:hover {
  color: #fff;
  opacity: 0.8;
}

/* Select 2 */
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #333 !important;
}

.select2 .select2-container .select2-container--default .select2-container--focus {
  border: 1px solid #333 !important;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #333 !important;
}

.select2-search__field {
  background-color: white !important;
}

.select2-dropdown .select2-dropdown--below {
  border: 1px solid #333 !important;
}

.select2-results {
  background-color: #444;
  height: 100px;
  color: #222;
}

.select2-results__options {
  height: 100px;
}

.contains {
  background-color: #333;
  width: 500px;
  display: inline-block;
  padding: 20px;
  border-radius: 5px;
}

.select2-container .select2-search--inline .select2-search__field {
  height: 37px;
  padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 0;
  padding-left: 15px;
}

.select2-container--default .select2-selection--multiple {
  border: none;
  border-radius: 0;
}

.select2-container--default .select2-results>.select2-results__options {
  color: #000;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #1b2d5c;
}

.select2-results {
  background-color: #fff;
}

.select2-results__options,
.select2-results {
  height: 170px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #1b2d5c;
  border: 1px solid #1b2d5c;
  font-size: 12px;
  color: #fff;
}

.section-wrapper {
  overflow: hidden;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #1b2d5c;
  color: #fff;
}

/* On Load Popup Modal */
#onload_popup .modal-dialog {
  width: auto;
  height: auto;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  max-width: max-content;
  min-width: auto;
  margin: 0;
}

#onload_popup .modal-content {
  border: 0;
}

#onload_popup button.close {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 99;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: red;
  color: #fff;
  text-align: center;
  line-height: 36px;
  border: 2px solid #c8c8c8;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  opacity: 1;
  text-shadow: none;
}

.modal-body {
  padding: 0;
}

#keyPerformanceModal .modal-body {
  padding: 1rem;
}

#onload_popup .Img_container img {
  width: 100%;
}

.banner-modal {
  overflow: visible;
}

.banner-modal .modal-dialog {
  width: 80%;
  margin: 5% auto auto auto;
}

.banner-modal .modal-content {
  overflow: visible;
}

.banner-modal .modal-body {
  overflow: visible;
}

.banner-modal .close-pop {
  top: -16px;
  right: -11px;
}

.banner-modal .view-content p {
  margin-bottom: 0px;
}

div#mospi-externallinkModal {
  z-index: 9999999 !important;
}

/* Inner Banner */
.innerbanner {
  color: #fff;
  width: 100%;
  height: 175px;
  position: relative;
}

/*.innerbanner:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 72%);
    content: "";
}*/
.inner-title {
  margin-top: 30px;
}

.inner-title h3 {
  width: 100%;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.inner-title-block {
  position: relative;
  color: #000;
  font-size: 34px;
  left: 0;
  margin-bottom: 0px;
}

.inner-title-block .breadcrumb-area {
  display: block !important;
}

.inner-title-block #breadcrumbs {
  width: 100%;
}

.inner-title-block .breadcrumb {
  color: #000;
  display: block;
  border-bottom: #eee 1px solid !important;
  font-size: 14px;
  padding: 10px 0;
}

.inner-title-block .breadcrumb span a {
  color: #000;
}

.inner-title-block .breadcrumb .delimiter {
  color: #000;
  font-size: 14px;
}

.inner-title-block .breadcrumb .delimiter {
  color: #000;
  font-size: 14px;
}

span.inline.even.last {
  color: #1b2d5c;
}

img.image-right {
  float: right;
  width: 400px;
  margin-left: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
}

/* Who's Who */
.tableData {
  border: 0;
  margin: 0 0 15px 0;
  empty-cells: show;
  clear: both;
  width: 100%;
  border-right: 1px solid #c6c6c6;
  border-top: 1px solid #c6c6c6;
  border-left: 1px solid;
}

.tableData th {
  font-weight: bold;
  line-height: 1.5em;
  font-size: 1em;
  background: url(images-old/tableHeadBg.gif) repeat-x left bottom #525252;
  background-image: none;
  border-left: 1px solid #c6c6c6;
  border-top: 1px solid #c6c6c6;
  color: #fff;
  border: none;
}

.tableData th,
.tableData td {
  padding: 8px 8px;
  line-height: 20px;
  vertical-align: top;
}

.tableData td {
  border-bottom: 1px solid #c6c6c6;
  color: #585858;
  border-left: 1px solid #c6c6c6;
  /* border-top: 1px solid #c6c6c6; */
}

.tableData td a {
  color: #1b2d5c;
  white-space: pre;
}

caption,
td,
th {
  font-weight: 400;
  background: #fff;
}

.pt-13px {
  padding-top: 13px !important;
}

.w-72per {
  width: 72%;
}

.w-15per {
  width: 15%;
}

.w-13per {
  width: 13%;
}

/* Events */
.eventsTabs .anchortab-links {
  position: relative;
  float: right;
  right: 0;
  margin-bottom: 0px;
}

.eventsTabs .anchortab-links .nav-link {
  color: #898989;
  padding-top: 0;
}

.eventsTabs .anchortab-links .nav-link.active {
  color: #1b2d5c;
}

.eventsTabs #nav-tabContent p {
  background: transparent;
  padding: 0;
}

.eventsTabs .exhibition-box {
  margin: 20px 0;
}

.section-title h3 {
  font: 34px;
  color: #1b2d5c;
  font-weight: 600;
}

.reports .col-md-3 {
  margin: 10px 0;
}

.reports .col-md-3 a {
  overflow: hidden;
}

.reports .col-md-3 a:hover img {
  transform: scale(1.1);
}

.reports p {
  background: #f7efec;
  padding: 8px;
  text-align: center;
  line-height: normal;
  font-weight: 600;
  display: table;
  margin: auto;
}

.reports img {
  margin: auto;
  display: table;
  transition: all 0.5s ease;
}

#gallery .collection-image {
  overflow: hidden;
  height: 266px;
}

#gallery .collection-image img {
  transition: all 0.5s ease;
  height: 100%;
  width: 100%;
}

#gallery .col-lg-3:hover .collection-image img {
  transform: scale(1.1);
}

#gallery .anchortab-links .nav-link.active {
  color: #1b2d5c;
}

#gallery .anchortab-links .nav-link {
  color: #898989;
}

.contact-map-one .google-map__home {
  width: 100%;
  border: none;
  height: 435px;
  display: block;
}

.contact-one__content {
  background: #eee;
  padding: 20px 30px;
  overflow: auto;
  height: 435px;
}

.contact-one__content h3.contact-one__title {
  color: #1b2d5c;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 15px;
}

.contact-one__content p.contact-one__text {
  margin-bottom: 5px;
}

.contact-one__content p.contact-one__text a:hover {
  color: #1b2d5c;
}

#site-map .site-map-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-decoration: underline;
}

#site-map .site-map-box ul {
  padding-left: 1.5em;
}

.site-map-menu li {
  width: 100%;
  list-style-image: url(../images-old/menu-leaf.png);
  border-bottom: 1px #ccc dotted;
  margin-top: 7px;
  padding-bottom: 7px;
}

.site-map-menu li a {
  color: #000;
}

.site-map-menu li a:hover {
  color: #1b2d5c;
}

ul li.expanded {
  border-bottom: none !important;
  list-style-image: url(../images-old/menu-expanded.png);
  list-style-type: circle;
}

.site-map-menu li:last-child {
  border-bottom: none;
}

li.expanded>a {
  font-weight: 600;
}

.innertop-menu {
  float: left;
  width: 100%;
  border: 1px solid #e6dcd8;
}

.innertop-menu ul {
  padding: 0;
}

.innertop-menu li {
  width: 100%;
  float: left;
  list-style: none;
  border-bottom: 1px solid #e6dcd8;
}

.innertop-menu li a {
  color: #2a2a2a;
  background: #f9f9f9;
  width: 100%;
  float: left;
  box-sizing: border-box;
  padding: 8px 20px;
  font-size: 100%;
}

.innertop-menu li.active a,
.innertop-menu li a:hover {
  color: #fff;
  background: #1b2d5c;
}

/* Cart Button */
.cart-box {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  cursor: pointer;
}

.cart-box:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 1px;
  background: rgb(100 100 100);
  top: 8px;
  left: 5px;
}

.home-4 .cart-box:before {
  top: 0px;
}

.cart-box ul {
  margin: 0;
  padding-left: 5px;
}

.cart-box ul li {
  position: relative;
  list-style: none;
}

.cart-box>ul>li>a {
  display: inline-block;
  vertical-align: sub;
  margin-top: 4px;
  padding-left: 0;
}

.cart-box>ul>li>a:before,
.box-quantity .action-prime:before {
  content: "\f59d";
  font-family: "Font Awesome 5 Pro";
  font-size: 22px;
}

.cart-text {
  display: block;
  font-weight: 700;
  line-height: 20px;
  font-size: 14px;
  text-transform: uppercase;
}

.cart-counter {
  font-size: 11px;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  text-align: center;
  background: #1b2d5c;
  height: 15px;
  width: 15px;
  line-height: 15px;
  border-radius: 100px;
  color: #fff;
  position: relative;
  left: -3px;
}

.ht-dropdown {
  background: #fff;
  right: 0;
  opacity: 0;
  padding: 0 20px;
  position: absolute;
  top: 100%;
  -webkiit-transform: scaleY(0);
  --moz-transform: scaleY(0);
  --ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  --ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  width: 200px;
  text-align: left;
  visibility: hidden;
  z-index: 99999999;
  cursor: pointer;
  --ms-transition: 0.5s;
  --webkit-transition: 0.5s;
  --moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 0 3px 0 #e5e5e5;
  -moz-box-shadow: 0 0 3px 0 #e5e5e5;
  -ms-box-shadow: 0 0 3px 0 #e5e5e5;
  box-shadow: 0 0 3px 0 #e5e5e5;
}

.cart-box>ul>li:hover ul.ht-dropdown {
  visibility: visible;
  -webkiit-transform: scaleY(1);
  --moz-transform: scaleY(1);
  --ms-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}

.single-cart-box {
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}

.cart-box .cart-img {
  width: 35%;
  float: left;
  padding-right: 10px;
  position: relative;
}

.cart-box .cart-img img {
  max-width: 100%;
}

.cart-box .cart-content {
  float: left;
  width: 65%;
  padding: 0 15px 15px 0;
}

.cart-box .cart-content h6 {
  color: #333;
  display: block;
  margin-bottom: 5px;
  line-height: 1.4;
  text-transform: capitalize;
  font-weight: bold;
}

.cart-box .cart-content h6 a {
  color: #333;
  font-size: 15px;
  display: block;
}

.cart-box .cart-footer h5 {
  font-size: 14px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  color: #555;
  font-weight: 700;
}

.cart-box .cart-footer h5 span {
  color: #1b2d5c;
  font-size: 15px;
  font-weight: 600;
  float: right;
}

.cart-box .cart-actions a {
  display: block;
  padding: 12px 0;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  border: 1px solid #f2f2f2;
  transition: all 0.3s ease 0s !important;
  --moz-transition: all 0.3s ease 0s !important;
  --webkit-transition: all 0.3s ease 0s !important;
  --o-transition: all 0.3s ease 0s !important;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}

.cart-box .checkout {
  background: #1b2d5c;
  color: #fff;
}

.cart-box .checkout:hover {
  background-color: #1b2d5c;
  border-color: transparent;
  color: #fff;
}

.del-icone {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 45;
  color: #666;
}

.cart-box ul.main-cart-box {
  padding: 30px;
}

.main-cart-box {
  width: 290px;
  left: auto;
  right: 0;
}

/* Checkout Page */
.checkout-one__title {
  margin: 0;
  color: #302e2f;
  font-size: 24px;
  margin-bottom: 20px;
}

.checkout-one__form input[type="text"] {
  width: 100%;
  margin: 3px 0;
}

.checkout-one__form+.checkout-one__form {
  margin-top: 50px;
}

.checkout-one__title {
  margin: 0;
  color: #302e2f;
  font-size: 24px;
  margin-bottom: 20px;
}

.checkout-one__form .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}

.checkout-one__form .bootstrap-select>.dropdown-toggle {
  outline: none;
  border-style: solid;
  border-width: 1px;
  border-color: #e4e4e4;
  border-radius: 4px;
  display: block;
  width: 100%;
  height: 60px;
  padding: 0;
  background-color: #fff;
  line-height: 58px;
  padding-left: 30px;
  color: #777777;
  font-size: 16px;
  color: #777777;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: #d99578;
  color: #fff;
}

.bootstrap-select .dropdown-menu>li:first-child>a {
  padding-top: 10px;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  padding: 3px 20px;
  color: #302e2f;
  --webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.checkout-one__content {
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #e4e4e4;
}

.checkout-one__content-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e4e4e4;
}

.checkout-one__content-single__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart-table .prod-thumb,
.checkout-one__content-image {
  margin-bottom: 0;
  width: 70px;
  height: 70px;
}

.cart-table .prod-thumb img,
.checkout-one__content-image img {
  width: 70px;
  height: 70px;
}

.checkout-one__content-title {
  margin: 0;
  font-size: 18px;
  color: #302e2f;
  margin-left: 30px;
  padding-right: 20px;
}

.checkout-one__price {
  margin-top: 50px;
}

.checkout-one__price-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.checkout-one__price-single:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 82%;
  height: 0px;
  border-bottom: 1px dashed #e4e4e4;
}

.checkout-one__price-name {
  font-size: 16px;
  margin: 0;
  color: #302e2f;
}

.checkout-one__price-name span {
  background-color: #fff;
  padding-right: 20px;
  position: relative;
  z-index: 10;
}

.checkout-one__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  padding-top: 19px;
  padding-bottom: 19px;
  margin-bottom: 50px;
  margin-top: 45px;
}

.checkout-one__total-name {
  font-size: 18px;
  margin: 0;
  color: #302e2f;
}

.checkout-one__total-amount {
  font-size: 18px;
  color: #d99578;
  margin: 0;
}

.checkout-one__price-amount {
  font-size: 16px;
  color: #302e2f;
  margin: 0;
}

/* Publication */
.product {
  border-left: 1px solid #eae8e4;
  border-top: 1px solid #eae8e4;
}

.products .accordion .form-check {
  margin-bottom: 10px;
}

.products .accordion .checkbox-btn span.btn.btn-light {
  background: no-repeat;
  border: none;
  padding-left: 5px;
}

.products .accordion-button:focus {
  border-color: #dfdfdf;
}

.products .accordion button.btn.btn-light {
  background: #1b2d5c;
  height: 50px;
  color: #fff;
  line-height: 40px;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
}

.productBreadcrums {
  background: #fff;
  padding: 6px 15px;
  border-radius: 4px;
  margin-bottom: 15px;
  border: 1px solid #eae8e4;
}

.products .form-control:focus {
  box-shadow: unset;
  border-color: #1b2d5c;
}

.rightBar select {
  height: 35px;
  width: 200px;
  padding: 0 10px;
  background-position: calc(100% - 15px) 15px, calc(100% - 10px) 15px,
    calc(100% - 3.5em) 13px;
}

.rightBar select:focus {
  background-position: calc(100% - 10px) 15px, calc(100% - 15px) 15px,
    calc(100% - 3.5em) 15px;
}

.products .accordion,
.products label {
  display: block;
  font-weight: 500;
  font-size: 16px;
}

.products .form-check-input:checked {
  background-color: #1b2d5c;
  border-color: #1b2d5c;
}

.products .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgb(103 57 68 / 25%);
}

.products .product:not(.product_card):not(.productno-border):not(.productlist):not(.product_space) {
  position: relative;
  border-right: 1px solid #eae8e4;
  border-bottom: 1px solid #eae8e4;
}

.products .product:not(.product_card):not(.productno-border):not(.productlist):not(.productspace)::after,
.products .product:not(.productcard):not(.productno-border):not(.productlist):not(.product_space)::before {
  content: "";
  position: absolute;
  background-color: transparent;
}

.products .product:not(.product_card):not(.productno-border):not(.productlist):not(.product_space)::after {
  width: 1px;
  left: 0;
  top: 0;
  bottom: 0;
}

.products .product:not(.product_card):not(.productno-border):not(.productlist):not(.product_space)::before {
  height: 1px;
  top: 0;
  right: 0;
  left: 0;
}

@media (min-width: 1200px) {
  .products .product:not(.product_card):not(.productno-border):not(.productlist):not(.product_space):hover {
    border-right: 1px solid #1b2d5c;
    border-bottom: 1px solid #1b2d5c;
  }

  .products .product:not(.product_card):not(.productno-border):not(.productlist):not(.productspace):hover::after,
  .products .product:not(.productcard):not(.productno-border):not(.productlist):not(.product_space):hover::before {
    background-color: #1b2d5c;
  }
}

@media (max-width: 575.98px) {
  .products .product:not(.product_card):not(.productlist):not(.product_space) {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  .products .product:not(.product_card-v2):not(.product_no-border):hover {
    box-shadow: 0 0 40px 0 rgba(22, 22, 25, 0.1);
  }
}

.products .product {
  transition: all 0.2s ease-in-out;
}

.products .product__center {
  text-align: center;
}

.products .product_center .price,
.products .productcenter .product_hover {
  -ms-flex-pack: center;
  justify-content: center;
}

.products .product_center .product_hover .mr-auto {
  margin-right: 0.75rem !important;
}

.products .product__space:hover {
  border-color: #161619 !important;
}

.products .product__space-primary:hover {
  border-color: #f75454 !important;
}

@media (min-width: 1200px) {
  .products .product__add-to-cart-icon {
    display: none;
  }
}

.products .product__body {
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .products .product__hover {
    transition: all 0.2s ease-in-out;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
  }

  .products .product:hover .product__body {
    --webkit-transform: translateY(-44px);
    transform: translateY(-44px);
  }

  .products .product:hover .product__title {
    color: #161619;
  }

  .products .product:hover .product__hover {
    opacity: 1;
  }
}

.product.product__list {
  border: 1px solid #eae8e4;
}

.product.product_list+.product_list {
  margin-top: -1px;
}

.product.product__list:hover {
  border-color: #161619;
  position: relative;
}

.product.product_list:hover .product_body {
  --webkit-transform: translateY(0);
  transform: translateY(0);
}

.text-gray-700 {
  color: #7c6e65;
}

.text-gray-600 {
  color: #7f7f83 !important;
}

.font-size-2 {
  font-size: 0.875rem !important;
}

.woocommerce-Price-currencySymbol {
  color: #1b2d5c;
}

.color-5 {
  color: #1b2d5c;
}

.ml-auto {
  margin-left: auto;
}

.viewBtn {
  color: #333;
  font-size: 13px;
}

.viewBtn i {
  color: #1b2d5c;
  font-size: 15px;
  margin-right: 3px;
}

.pt-8,
.py-8 {
  padding-top: 3.5rem !important;
}

.woocommerce-product-gallery__wrapper .owl-carousel {
  padding: 0 45px;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.font-size-22 {
  font-size: 1.375rem;
}

.width-120 {
  width: 120px;
}

.min-width-250 {
  min-width: 15.625rem;
}

.p-3 {
  padding: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.space-2,
.space-top-2 {
  padding-top: 4rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.text-yellow-darker {
  color: #1b2d5c !important;
}

.addCartBtn {
  padding: 10px 15px !important;
  margin-left: 10px;
  height: auto !important;
  background: #1b2d5c !important;
  color: #fff !important;
}

.addCartBtn:hover {
  background: #1b2d5c !important;
}

.products .product .summary.entry-summary h2 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.products .product .summary.entry-summary p.price {
  font-size: 26px;
  font-weight: 600;
}

figure.woocommerce-product-gallery__wrapper {
  padding: 40px 0 20px;
}

img.attachment-shop_catalog.size-shop_catalog.wp-post-image {
  height: 330px;
}

h2.woocommerce-loop-product__title.product__title {
  font-weight: 700;
}

.product__hover span.product__add-to-cart:first-child {
  background: #1b2d5c;
  color: #fff;
  padding: 3px 10px;
}

.product__hover span.product__add-to-cart:first-child:hover {
  background: #1b2d5c;
}

span.woocommerce-Price-amount.amount {
  font-weight: 600;
}

.js-quantity input[type="number"] {
  text-align: center;
  width: 80%;
}

.js-quantity button.qtyminus {
  border: 1px solid #cecece;
  width: 40px;
  height: 40px;
  color: #000;
  font-size: 20px;
  background: transparent;
  border-right: none;
}

.js-quantity button.qtyplus {
  border: 1px solid #cecece;
  width: 40px;
  height: 40px;
  color: #000;
  font-size: 20px;
  background: transparent;
  border-left: none;
}

@media (min-width: 768px) {

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
}

@media (min-width: 1200px) {

  .pl-xl-7,
  .px-xl-7 {
    padding-left: 3rem !important;
  }
}

/* Vertical Tab Panel */
.vertical-tabPanel .nav {
  display: grid;
}

.vertical-tabPanel .nav-tabs .nav-link.active,
.vertical-tabPanel .nav-tabs .nav-link:hover {
  color: #ffffff;
  background-color: #1b2d5c;
  border-color: #1b2d5c #1b2d5c #fff;
}

.vertical-tabPanel .nav-tabs .nav-link:hover {
  background-color: rgb(200 117 45 / 27%);
  color: #000;
  border-color: rgb(200 117 45 / 27%) rgb(200 117 45 / 27%) #fff;
}

.team-one__single {
  border: 1px solid #c6c6c6;
  padding: 13px;
  background: #f8f8f8;
  border-radius: 6px;
  margin-bottom: 20px;
}

.team-one__image {
  overflow: hidden;
  height: 200px;
  width: 100%;
  border-radius: 6px 6px 0 0;
}

.team-one__image img {
  transition: all 0.5s ease;
  height: 100%;
  width: 100%;
  border-radius: 6px 6px 0 0;
}

.team-one__single:hover .team-one__image img {
  transform: scale(1.1);
}

.team-one__content h3.team-one__name {
  font-size: 18px;
  margin-top: 5px;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 18px;
}

#nav-tabContent p.team-one__designation.designationHd {
  color: #1b2d5c;
  background: transparent;
  padding: 0;
  line-height: normal;
  font-weight: 400;
  font-size: 13px;
}

#nav-tabContent p.team-one__designation {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: normal;
  font-weight: 400;
}

#nav-tabContent a.viewProfile {
  color: #1b2d5c;
  display: inline-block;
  margin-top: 5px;
  font-size: 13px;
}

.team-one__content {
  text-align: center;
}

.vertical-tabPanel .nav-tabs .nav-link {
  border: 1px solid #c6c6c6;
  background: #f8f8f8;
}

.same-table-cell>tbody>tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.same-table-cell>tbody>tr>td {
  display: table-cell;
  width: 100px;
  border-bottom: solid black 1px;
}

.captcha_img input[type="text"] {
  margin-top: 10px;
}

a.captcha_refresh {
  position: absolute;
  width: 30px;
  background: #673944;
  height: 30px;
  border-radius: 100px;
  margin-left: 15px;
  margin-top: 6px;
  color: #fff;
  text-align: center;
  line-height: 30px;
}

a.captcha_refresh:hover {
  background: #1b2d5c;
}

.products .priceRangeInput input[type="number"] {
  width: 49%;
  height: 35px;
  padding: 4px;
  margin-top: 20px;
  border-radius: 0;
}

.products .accordion-collapse {
  border-width: 1px;
  border-top: none;
}

.price-range-block {
  margin: 60px;
}

.ui-widget-header {
  background: #1b2d5c;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #673944;
  border-color: #673944;
}

/* .accordion-button:not(.collapsed)::after {
  background-image: url(../images-old/download.svg);
} */

.pagination {
  display: block;
  text-align: center;
}

.pagination ul {
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

.pagination ul li {
  display: inline-block;
  list-style: none;
}

.pagination ul li a {
  display: inline-block;
  padding: 8px 15px;
  color: #1b2d5c;
  border: 1px solid #1b2d5c;
}

.pagination ul li.active a,
.pagination ul li a:hover {
  background: #1b2d5c;
  color: #fff;
  border: 1px solid #1b2d5c;
}

.ratingStar {
  background-image: url(../images-old/ratingStar.png);
  -webkit-background-size: 512px 256px;
  background-size: 512px 256px;
  background-repeat: no-repeat;
  height: 22px;
  width: 95px;
  margin-right: 1px;
  top: -2px;
  position: relative;
  vertical-align: text-top;
  display: inline-block;
}

.fourstar {
  background-position: -2px -84px;
}

.threestar {
  background-position: -293px -180px;
}

.twostar {
  background-position: -99px -132px;
}

.onestar {
  background-position: -390px -228px;
}

.a-size-small {
  font-size: 12px;
  line-height: 16px;
  color: #0f1111;
  position: absolute;
  right: -35px;
  top: 4px;
}

.text-orange {
  color: #1b2d5c;
}

.error_content h1.page_title {
  line-height: 1;
  font-size: 200px;
  margin-bottom: 10px;
  font-weight: bold;
}

.error_content h3.title_text {
  line-height: 1;
  font-size: 44px;
  margin-bottom: 20px;
  letter-spacing: 2.4px;
}

.error_content p {
  font-size: 18px;
  margin: auto;
  width: 80%;
  text-align: center;
}

/* Image Modal Popup */
.ImagemodalPopup .close {
  position: absolute;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 36px;
  background: red;
  border: 2px solid #fff;
  color: #fff;
  right: -20px;
  top: -20px;
  border-radius: 100px;
  opacity: 1;
}

.ImagemodalPopup .modal-dialog {
  transform: translate(-50%, -50%) !important;
  --webkit-transform: translate(-50%, -50%) !important;
  --moz-transform: translate(-50%, -50%) !important;
  --o-transform: translate(-50%, -50%) !important;
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
}

.ImagemodalPopup .modal-body {
  width: 100%;
}

.ImagemodalPopup .ModalText .scrollingText {
  overflow: auto;
  height: 230px;
  margin-right: 25px;
  padding-right: 10px;
  padding-left: 5px;
}

.ImagemodalPopup .ModalText h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  padding-left: 5px;
}

/*.sticky-icon {
  z-index: 9;
  position: fixed;
  top: calc(27.5% + -25px);
  top:  12rem;
  left: -115px;
  display: flex;
  flex-direction: column;
  transition: all;
}*/

.sticky-icon {
  z-index: 9;
  display: none !important;
  position: fixed;
  top: 50%;
  transform: translatey(-40%);
  left: -115px;
  display: flex;
  flex-direction: column;
  transition: all;
}

.sticky-icon a {
  display: flex;
  justify-content: space-between;
  border-radius: 0px 50px 50px 0px;
  text-align: left;
  margin: 4px 0;
  text-decoration: none;
  text-transform: uppercase;
  padding: 4px;
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  transition: all 0.3s;
  align-items: center;
}

.sticky-icon a:hover {
  color: #fff;
  transform: translate(110px, 0px);
}

.sticky-icon a:hover i {
  transform: rotate(360deg);
}

.colorCd-1 {
  background-color: #253d65;
  color: #fff;
}

.colorCd-2 {
  background-color: #055848;
  color: #fff;
}

.colorCd-3 {
  background-color: #4d1e65;
  color: #fff;
}

.colorCd-4 {
  background-color: #4c3831;
  color: #fff;
}

.colorCd-5 {
  background-color: #291b58;
  color: #fff;
}

.colorCd-6 {
  background-color: #592230;
  color: #fff;
}

.sticky-icon a img {
  height: 27px;
  width: 27px;
  margin-top: 3px;
  transition: all 0.5s;
  padding: 4px;
}

.sticky-icon #myBtn {
  height: 50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align: center;
  padding: 10px;
  text-align: center;
  line-height: 40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}

.sticky-icon .fa-arrow-circle-up {
  font-size: 30px;
}

.sticky-icon #myBtn:hover {
  background-color: #555;
}

.sticky-icon a p {
  font-size: 12px;
  margin: 0;
  line-height: 20px;
  padding-left: 20px;
}

.tab1,
.tab2,
.tab3 {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  text-align: center;
  line-height: 26px;
}

/* Floating Social Media Bar Style Ends Here */
/* entypo */
#sticky-social {
  left: 0;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  --webkit-transform: translateY(-50%);
  --moz-transform: translateY(-50%);
  --o-transform: translateY(-50%);
  z-index: 999;
}

#sticky-social a {
  background: #333;
  color: #fff;
  display: block;
  height: 35px;
  line-height: 35px;
  position: relative;
  text-align: center;
  width: 35px;
}

#sticky-social a span {
  line-height: 35px;
  left: -120px;
  position: absolute;
  text-align: center;
  width: 120px;
}

#sticky-social a:hover span {
  left: 100%;
}

#sticky-social a[class*="facebook"],
#sticky-social a[class*="facebook"]:hover,
#sticky-social a[class*="facebook"] span {
  background: #3b5998;
}

#sticky-social a[class*="twitter"],
#sticky-social a[class*="twitter"]:hover,
#sticky-social a[class*="twitter"] span {
  background: #00aced;
}

#sticky-social a[class*="google-plus"],
#sticky-social a[class*="google-plus"]:hover,
#sticky-social a[class*="google-plus"] span {
  background: #dd4b39;
}

#sticky-social a[class*="linkedin"],
#sticky-social a[class*="linkedin"]:hover,
#sticky-social a[class*="linkedin"] span {
  background: #007bb6;
}

#sticky-social a[class*="instagram"],
#sticky-social a[class*="instagram"]:hover,
#sticky-social a[class*="instagram"] span {
  background: #517fa4;
}

/* Update & Tender */
.boxAera .sdBoxArea h4>a {
  background: transparent;
  border: none;
  font-size: unset;
  padding: 0;
}

.boxAera .sdBoxArea h4>a:hover {
  color: #ff7c67;
}

.Footer-CustomScroll {
  height: 170px;
  overflow: auto;
}

.Footer-CustomScroll::-webkit-scrollbar {
  width: 5px;
}

.Footer-CustomScroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.Footer-CustomScroll::-webkit-scrollbar-thumb {
  background-color: #9f747f;
}

.Footer-CustomScroll::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

.MessageTagsDiv {
  background: #fff;
  bottom: -10px;
  padding: 18px;
  border-radius: 100px;
  box-shadow: 0px 0px 13px #c3c3c3;
  position: absolute;
  z-index: 9;
  margin-left: 30px;
}

.MessageTagsDiv p {
  margin-bottom: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.boxAera .sdBoxArea h4 {
  transition: all 0.5s ease;
  --webkit-transition: all 0.5s ease;
  --moz-transition: all 0.5s ease;
  --o-transition: all 0.5s ease;
}

.boxAera .sdBoxArea h4>i {
  color: #ffc761;
}

.boxAera .sdBoxArea h4:hover {
  margin-left: 5px;
}

.innerpageGallery#gallery .anchortab-links {
  top: -60px;
}

.innerpageGallery#gallery .collection-image {
  margin: 10px 0;
  height: 225px;
}

/* Organization Chart */
.orgchart {
  display: inline-block;
  min-height: 202px;
  min-width: 202px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(10%, rgba(200, 0, 0, 0.15)),
      color-stop(10%, rgba(0, 0, 0, 0))),
    -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(200, 0, 0, 0.15)), color-stop(10%, rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left,
      rgba(200, 0, 0, 0.15) 10%,
      rgba(0, 0, 0, 0) 10%),
    -webkit-linear-gradient(rgba(200, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0) 10%);
  background-image: -o-linear-gradient(left,
      rgba(200, 0, 0, 0.15) 10%,
      rgba(0, 0, 0, 0) 10%),
    -o-linear-gradient(rgba(200, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0) 10%);
  background-image: linear-gradient(90deg,
      rgba(200, 0, 0, 0.15) 10%,
      rgba(0, 0, 0, 0) 10%),
    linear-gradient(rgba(200, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0) 10%);
  background-size: 10px 10px;
  border: 1px dashed transparent;
  padding: 20px;
}

.orgchart .hidden,
.orgchart~.hidden {
  display: none;
}

.orgchart div,
.orgchart div::before,
.orgchart div::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.orgchart.b2t {
  --ms-transform: rotate(180deg);
  --webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.orgchart.l2r {
  position: absolute;
  --ms-transform: rotate(-90deg) rotateY(180deg);
  --webkit-transform: rotate(-90deg) rotateY(180deg);
  transform: rotate(-90deg) rotateY(180deg);
  --ms-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.orgchart .verticalNodes ul {
  list-style: none;
  margin: 0;
  padding-left: 18px;
  text-align: left;
}

.orgchart .verticalNodes ul:first-child {
  margin-top: 3px;
}

.orgchart .verticalNodes>td::before {
  content: "";
  border: 1px solid rgba(217, 83, 79, 0.8);
}

.orgchart .verticalNodes>td>ul>li:first-child::before {
  top: -4px;
  height: 30px;
  width: calc(50% - 2px);
  border-width: 2px 0 0 2px;
}

.orgchart .verticalNodes ul>li {
  position: relative;
}

.orgchart .verticalNodes ul>li::before,
.orgchart .verticalNodes ul>li::after {
  content: "";
  position: absolute;
  left: -6px;
  border-color: rgba(217, 83, 79, 0.8);
  border-style: solid;
  border-width: 0 0 2px 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.orgchart .verticalNodes ul>li::before {
  top: -4px;
  height: 30px;
  width: 11px;
}

.orgchart .verticalNodes ul>li::after {
  top: 1px;
  height: 100%;
}

.orgchart .verticalNodes ul>li:first-child::after {
  top: 24px;
  width: 11px;
  border-width: 2px 0 0 2px;
}

.orgchart .verticalNodes ul>li:last-child::after {
  border-width: 2px 0 0;
}

.orgchart.r2l {
  position: absolute;
  --ms-transform: rotate(90deg);
  --webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  --ms-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.orgchart>.spinner {
  font-size: 100px;
  margin-top: 30px;
  color: rgba(68, 157, 68, 0.8);
}

.orgchart table {
  border-spacing: 0;
  border-collapse: separate;
}

.orgchart>table:first-child {
  margin: 20px auto;
}

.orgchart td {
  text-align: center;
  vertical-align: top;
  padding: 0;
}

.orgchart tr.lines .topLine {
  border-top: 2px solid rgba(217, 83, 79, 0.8);
}

.orgchart tr.lines .rightLine {
  border-right: 1px solid rgba(217, 83, 79, 0.8);
  float: none;
  border-radius: 0;
}

.orgchart tr.lines .leftLine {
  border-left: 1px solid rgba(217, 83, 79, 0.8);
  float: none;
  border-radius: 0;
}

.orgchart tr.lines .downLine {
  background-color: rgba(217, 83, 79, 0.8);
  margin: 0 auto;
  height: 20px;
  width: 2px;
  float: none;
}

/* node styling */
.orgchart .node {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 3px;
  border: 2px dashed transparent;
  text-align: center;
  width: 130px;
}

.orgchart.l2r .node,
.orgchart.r2l .node {
  width: 50px;
  height: 130px;
}

.orgchart .node>.hazy {
  opacity: 0.2;
}

.orgchart .node>.spinner {
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  vertical-align: middle;
  font-size: 30px;
  color: rgba(68, 157, 68, 0.8);
}

.orgchart .node:hover {
  --webkit-transition: 0.5s;
  --o-transition: 0.5s;
  transition: 0.5s;
  cursor: default;
  z-index: 20;
}

.orgchart .node.focused {
  background-color: rgba(238, 217, 54, 0.5);
}

.orgchart .ghost-node {
  position: fixed;
  left: -10000px;
  top: -10000px;
}

.orgchart .ghost-node rect {
  fill: #ffffff;
  stroke: #bf0000;
}

.orgchart .node.allowedDrop {
  border-color: rgba(68, 157, 68, 0.9);
}

.orgchart .node .title {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: rgba(217, 83, 79, 0.8);
  color: #fff;
  border-radius: 4px 4px 0 0;
}

.orgchart.b2t .node .title {
  --ms-transform: rotate(-180deg);
  --webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  --ms-transform-origin: center bottom;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

.orgchart.l2r .node .title {
  --ms-transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
  --webkit-transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
  transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
  --ms-transform-origin: bottom center;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  width: 120px;
}

.orgchart.r2l .node .title {
  --ms-transform: rotate(-90deg) translate(-40px, -40px);
  --webkit-transform: rotate(-90deg) translate(-40px, -40px);
  transform: rotate(-90deg) translate(-40px, -40px);
  --ms-transform-origin: bottom center;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  width: 120px;
}

.orgchart .node .title .symbol {
  float: left;
  margin-top: 4px;
  margin-left: 2px;
}

.orgchart .node .content {
  width: 100%;
  height: 20px;
  font-size: 11px;
  line-height: 18px;
  border: 1px solid rgba(217, 83, 79, 0.8);
  border-radius: 0 0 4px 4px;
  text-align: center;
  background-color: #fff;
  color: #333;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orgchart.b2t .node .content {
  --ms-transform: rotate(180deg);
  --webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  --ms-transform-origin: center top;
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

.orgchart.l2r .node .content {
  --ms-transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
  --webkit-transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
  transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
  --ms-transform-origin: top center;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  width: 120px;
}

.orgchart.r2l .node .content {
  --ms-transform: rotate(-90deg) translate(-40px, -40px);
  --webkit-transform: rotate(-90deg) translate(-40px, -40px);
  transform: rotate(-90deg) translate(-40px, -40px);
  --ms-transform-origin: top center;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  width: 120px;
}

.orgchart .node .edge {
  font-size: 15px;
  position: absolute;
  color: rgba(68, 157, 68, 0.5);
  cursor: default;
  --o-transition: 0.2s;
  transition: 0.2s;
  --webkit-transition: 0.2s;
}

.orgchart.noncollapsable .node .edge {
  display: none;
}

.orgchart .edge:hover {
  color: #449d44;
  cursor: pointer;
}

.orgchart .node .verticalEdge {
  width: calc(100% - 10px);
  width: -moz-calc(100% - 10px);
  left: 5px;
}

.orgchart .node .topEdge {
  top: -4px;
}

.orgchart .node .bottomEdge {
  bottom: -4px;
}

.orgchart .node .horizontalEdge {
  width: 15px;
  height: calc(100% - 10px);
  height: -moz-calc(100% - 10px);
  top: 5px;
}

.orgchart .node .rightEdge {
  right: -4px;
}

.orgchart .node .leftEdge {
  left: -4px;
}

.orgchart .node .horizontalEdge::before {
  position: absolute;
  top: calc(50% - 7px);
  top: -moz-calc(50% - 7px);
}

.orgchart .node .rightEdge::before {
  right: 3px;
}

.orgchart .node .leftEdge::before {
  left: 3px;
}

.orgchart .node .toggleBtn {
  position: absolute;
  left: 5px;
  bottom: -2px;
  color: rgba(68, 157, 68, 0.6);
}

.orgchart .node .toggleBtn:hover {
  color: rgba(68, 157, 68, 0.8);
}

.oc-export-btn {
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  background-color: #5cb85c;
  border: 1px solid transparent;
  border-color: #4cae4c;
  border-radius: 4px;
}

.oc-export-btn:hover,
.oc-export-btn:focus,
.oc-export-btn:active {
  background-color: #449d44;
  border-color: #347a34;
}

.orgchart~.mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.orgchart~.mask .spinner {
  position: absolute;
  top: calc(50% - 54px);
  left: calc(50% - 54px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 108px;
}

.orgchart .node {
  --webkit-transition: all 0.3s;
  --o-transition: all 0.3s;
  transition: all 0.3s;
  top: 0;
  left: 0;
}

.orgchart .slide-down {
  opacity: 0;
  top: 40px;
}

.orgchart.l2r .node.slide-down,
.orgchart.r2l .node.slide-down {
  top: 130px;
}

.orgchart .slide-up {
  opacity: 0;
  top: -40px;
}

.orgchart.l2r .node.slide-up,
.orgchart.r2l .node.slide-up {
  top: -130px;
}

.orgchart .slide-right {
  opacity: 0;
  left: 130px;
}

.orgchart.l2r .node.slide-right,
.orgchart.r2l .node.slide-right {
  left: 40px;
}

.orgchart .slide-left {
  opacity: 0;
  left: -130px;
}

.orgchart.l2r .node.slide-left,
.orgchart.r2l .node.slide-left {
  left: -40px;
}

/* Custom styles */

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
}

.orgchart {
  /*  background: rgba(185, 203, 233, 0.2); */
  background-image: none;
  width: 100%;
  overflow: auto;
}

.orgchart ul {
  display: flex;
  flex-direction: row;
}

.orgchart .prime-list>li {
  margin: auto;
  list-style-type: none;
}

.orgchart .node {
  position: relative;
  display: flex;
  width: 120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 41px;
}

.orgchart ul {
  position: relative;
  margin-left: 0 !important;
}

.orgchart ul:not(.prime-list):before {
  content: "";
  position: absolute;
  top: -20px;
  left: 1px;
  width: 100%;
  height: 2px;
  background: #b3bec7;
}

.node:not(.no-child):after {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 59px;
  width: 2px;
  height: 26px;
  background: #b3bec7;
}

.sub-list .node:before {
  content: "";
  position: absolute;
  top: -22px;
  left: 59px;
  width: 2px;
  height: 25px;
  background: #b3bec7;
}

.orgchart .sub-list li {
  position: relative;
  list-style-type: none;
}

.orgchart .sub-list li:first-child:before,
.orgchart .sub-list li:last-child:before {
  content: "";
  position: absolute;
  top: -20px;
  width: 50%;
  height: 2px;
  background: #ffffff;
}

.orgchart .sub-list li:first-child:before {
  left: 1px;
}

.orgchart .sub-list li:last-child:before {
  right: -3px;
}

.orgchart tr.lines .downLine {
  background: #b3bec7;
}

.orgchart tr.lines * {
  border-color: #b3bec7 !important;
}

.employee-card {
  font-size: 10px;
  height: 50px;
  width: 115px;
  background: #ffffff;
  text-align: center;
  margin: auto;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 4px 2px hsla(0, 0%, 80%, 0.3);
  box-shadow: 0 1px 4px 2px hsla(0, 0%, 80%, 0.3);
}

.employee-card .department-info {
  background: #1b2d5c;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 6px;
  text-align: center;
}

.employee-card .department-info .name {
  font-size: 1.3em;
  font-weight: 500;
  margin: 0;
  -ms-flex: 1 1;
  flex: 1 1;
  color: #fff;
}

.employee-card .icon-user {
  width: 1em;
  padding-right: 0.2em;
  vertical-align: middle;
}

.employee-card .count {
  vertical-align: middle;
}

.employee-card .info-block {
  padding: 0 5px 5px;
  border-top: 4px solid #0077ff;
}

.employee-card .info-block .job-title {
  font-size: 1.2em;
  font-weight: 500;
  padding: 10px 0;
}

.employee-card .info-block .personal-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.employee-card .info-block .profile-image {
  width: 4em;
  height: 4em;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.employee-card .info-block .info-wrap {
  padding-left: 0.6em;
}

.employee-card .info-block .name,
.employee-card .info-block .email {
  font-size: 1.1em;
  font-weight: 400;
  padding-bottom: 0.3em;
}

.employee-card .info-block .reportee-count {
  color: #ffffff;
  background: #46abf3;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
}

.orgchart ul.prime-list>li>ul:before,
ul.sub-list:before {
  display: none;
}

/* Left Side Menu */
.leftSiteMenu {
  background: #1b2d5c;
  padding: 0;
  position: relative;
  z-index: 10;
  width: 100%;
  display: table;
}

.leftSiteMenu li {
  position: relative;
  width: 100%;
  float: left;
  border-bottom: 1px solid #fff;
}

.leftSiteMenu li a {
  display: block;
  font-size: 14px;
  padding: 8px 15px;
  color: #fff;
  font-weight: 500;
  transition: all ease-in-out 0.2s;
  --moz-transition: all ease-in-out 0.2s;
  --ms-transition: all ease-in-out 0.2s;
  --webkit-transition: all ease-in-out 0.2s;
  --o-transition: all ease-in-out 0.2s;
}

.leftSiteMenu li.side-dropdown>a:after,
.leftSiteMenu li.sub-dropdown>a:after,
.leftSiteMenu li.sub-sub-dropdown>a:after {
  content: "\f105";
  position: absolute;
  right: 10px;
  font-family: "Font Awesome 5 Pro";
  top: 9px;
}

.leftSiteMenu li.side-dropdown>ul {
  background: #333;
  display: block;
  position: absolute;
  left: 100%;
  visibility: hidden;
  opacity: 0;
  width: 215px;
  margin-left: 0;
  margin-top: -38px;
}

.leftSiteMenu li.side-dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
}

.leftSiteMenu li.side-dropdown>ul li a:hover {
  background: #1b2d5c;
}

span.toggleBtn {
  position: absolute;
  right: 3px;
  top: 3px;
  background: #1b2d5c;
  width: 30px;
  height: 31px;
  text-align: center;
  line-height: 30px;
  color: #fff;
}

.leftSideBarArea .sidebar-menu {
  background-color: #1b2d5c;
  margin-left: 0;
}

.leftSideBarArea .sidebar-menu li {
  border-bottom: 1px solid #fff;
  list-style-type: none;
}

.leftSideBarArea .sidebar-menu li.sidebar-header {
  background: #1b2d5c;
  color: #fff;
}

.leftSideBarArea .sidebar-menu>li>a {
  color: #fff;
  padding: 8px 5px 8px 10px;
  font-size: 14px;
  font-weight: 500;
  border-left: 0;
}

.leftSideBarArea .sidebar-menu li>a>.fa-angle-left {
  float: right;
  margin-right: 5px;
}

.sidebar-menu>li:hover>a,
.sidebar-menu>li.active>a {
  color: #fff;
  background: #b3641f;
  border-left-color: #3c8dbc;
}

.sidebar-menu .sidebar-submenu {
  padding-left: 0;
  background: #333;
}

.sidebar-menu .sidebar-submenu .sidebar-submenu {
  padding-left: 0;
  background: #624242;
}

.sidebar-menu .sidebar-submenu .sidebar-submenu .sidebar-submenu {
  padding-left: 0;
  background: #6e3131;
}

.sidebar-menu .sidebar-submenu>li>a {
  padding: 5px 5px 5px 15px;
  color: #fff;
  font-size: 13px;
}

.sidebar-menu .sidebar-submenu .sidebar-submenu {
  padding-left: 0px;
}

.leftSideBarArea .fa-angle-left:before {
  content: "\f105";
}

.inner-content-section ul {
  margin-left: 30px;
}

.inner-content-section ul li {
  list-style-type: circle;
}

.inner-content-section a {
  color: #1b2d5c;
}

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

.captcha_img img {
  width: 170px;
  height: 40px;
  border: 0;
}

.form-body .form-holder a.text-black i.fas.fa-sync {
  background: #1b2d5c;
  color: #fff;
  width: 25px;
  text-align: center;
  height: 25px;
  border-radius: 100px;
  line-height: 25px;
}

.form-body .form-holder a.text-black i.fas.fa-sync:hover {
  background: #1b2d5c;
}

div#captcha_img {
  display: inline-block;
}

.form-body.feedbackForm .form-holder {
  background: #f7efec;
  padding: 40px;
}

.form-body.feedbackForm .form-holder input[type="radio"] {
  background: #c4c9cf;
}

input[type="radio"]:checked {
  border: 6px solid #1b2d5c;
}

/* Vertical Marquee (What's New) */
.holder {
  background-color: #1b2d5c;
  width: 100%;
  height: 430px;
  overflow: hidden;
}

.holder .mask {
  position: relative;
  left: 0px;
  top: 10px;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.holder ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.holder ul li {
  border-bottom: 1px dashed #555;
  padding-bottom: 15px;
  margin-bottom: 18px;
  padding-left: 20px;
  position: relative;
  line-height: 20px;
}

.holder ul li a {
  color: #fff;
  text-decoration: none;
}

.holder ul li p.ndate {
  color: #ffc761;
  margin-bottom: 0;
}

sup {
  color: #ffc761;
}

#header_content.header-sticky .header_menu {
  top: 0;
}

/* my changes start from here  */

/* Top Header CSS*/

.headerMiddle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px 0px;
}

header.headerMiddle .logo.left img {
  margin-right: 10px;
  width: 400px;
}

header.topBar .logo.left img.dotLogo {
  width: 400px;
  padding: 10px;
}

header.topBar .logo.left img {
  padding: 5px;
  height: 55px;
}

header.topBar .logo.left img.dotLogo::before {
  content: "";
  height: 1px;
  width: 40px;
  position: absolute;
}

header.topBar .menuRight {
  display: flex;
  justify-content: end;
  background: #19295436;
  padding: 0 30px;
}

header.topBar .menuRight .menuBtn {
  /*padding: 2px 6px;*/
  padding-left: 24px;
  /* margin-left: 13px;*/
  color: #112049;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
  align-self: center;
  font-weight: 100;
}

header.topBar .menuRight .menuBtn p {
  margin: 0;
}

header.topBar .menuRight .menuBtn:hover {
  background: transparent;
  color: #ffa300;
  transition-duration: 0.3s;
}

.bannerSection {
  /* background: #d8d9f8; */
}

div#bannerSlider .item img {
  /* padding: 30px 0;*/
  height: 100%;
  /*background: #d8d9f8;*/
  margin: 50px;
  /* max-height: 351px;*/
  object-fit: contain;
  width: 96%;
  margin: 8px auto;
  /*box-shadow: rgba(0 0 0 /20%) 0px 7px 29px 0px;*/
  border-radius: 30px;
}

.parentmar {
  width: 100%;
  margin-bottom: 0;
}

.parentmar .childmar {
  background: red;
  padding: 0px 20px;
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  width: 150px;
  height: 48px;
  text-align: center;
  position: absolute;
  z-index: 1;
  border-radius: 50px 0 0 50px;
}

.parentmar td {
  background-color: rgb(226, 226, 226);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.parentmar marquee ul li a {
  color: #333;
  margin-right: 50px;
}

.upcomingEvents {
  background: #ffff;
  box-shadow: rgba(0 0 0 /20%) 0px 7px 29px 0px;
  border-radius: 14px;
  padding: 0px 35px;
}

.upcomingEvents h3 {
  margin-bottom: 0;
  text-align: center;
  color: #112049;
  font-weight: 600;
  font-size: 26px;
}

.upcomingEvents .upcomingDate {
  background: #112049;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  margin: 20px;
}

.upcomingEvents .upcomingDate .dateArea h2.date {
  margin-bottom: 0;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 5px;
}

.upcomingEvents .upcomingDate .dateArea p {
  margin: 0;
}

.upcomingEvents .upcomingDate .dateArea p.month {
  margin-bottom: 5px;
}

.upcomingEvents .upcomingDate .dateArea p.year {
  background: #ffa300;
  font-size: 22px;
  padding: 5px;
  border-radius: 0 0px 7px 7px;
  color: #112049;
  font-weight: 700;
}

.eventCont h4 {
  color: #112049;
  font-size: 28px;
  font-weight: 700;
}

.eventCont p {
  color: #112049;
  font-weight: 500;
  margin: 0;
}

.smooth-scroll .container {
  max-width: 1250px;
}

section.ministerArea {
  padding-bottom: 30px;
}

.minitserNames img {
  width: 119px;
  height: auto;
  border: 1px solid #0000001f;
  border-radius: 14px;
}

.minitserNames {
  background: #ffff;
  box-shadow: rgba(0 0 0 /20%) 0px 7px 29px 0px;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.minitserNames h2 {
  font-size: 20px;
  font-weight: 600;
  color: #112049;
}

.minitserNames .righta p {
  margin-bottom: 0;
  font-size: 16px;
}

section.ministerArea .rightPannel {
  /*background: #112049;*/
  box-shadow: rgba(0 0 0 /20%) 0px 7px 29px 0px;
  border-radius: 14px;
  color: white;
  padding: 20px;
}

/*section.ministerArea .rightPannel .rightOne {
  border: 1px solid #0000001f;
  border-radius: 14px;
  text-align: center;
  padding: 20px;
}*/
section.ministerArea .rightPannel .rightOne {
  border: 1px solid #0000001f;
  background: #112049;
  border-radius: 14px;
  text-align: center;
  padding: 20px;
  max-height: 100%;
  height: 295px;
  width: 220px;
}

section.ministerArea .rightPannel .rightOne p {
  margin: 20px 0 10px 0px;
  font-size: 16px;
  font-weight: 500;
}

section.ministerArea .rightPannel .rightOne h2 {
  font-weight: 700;
  font-size: 25px;
}

section.ministerArea .rightPannel .rightOne .immg {
  background: #fafafa;
  margin: auto;
  width: 100px;
  height: 100px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
}

section.ministerArea .rightPannel .rightOne .immg i {
  font-size: 30px;
}

section.ministerArea .rightPannel .owl-nav button.owl-prev i,
section.ministerArea .rightPannel .owl-nav button.owl-next i {
  background: #fff;
  padding: 10px;
  color: #333;
  border: 1px solid #0000001f;
  border-radius: 0;
  margin-right: 10px;
}

section.ministerArea .rightPannel .owl-nav {
  position: absolute;
  top: -50px;
  /* left: 135px;*/
  right: 0;
}

section.newsAndsocial {
  padding-bottom: 30px;
}

section.newsAndsocial .newEvents {
  /* border: 4px solid #dcdcdc;*/
  border: 2px solid #112049;
  padding: 20px;
  border-radius: 10px;
}

section.newsAndsocial .newEvents .newsInner {
  background-color: #fff;
  box-shadow: rgba(0 0 0 /20%) 0px 7px 29px 0px;
  padding: 20px;
  border-radius: 10px;
}

.newsInner .nav-tabs {
  border: none;
}

.newsInner .nav-item {
  margin-bottom: 0;
  padding-right: 20px;
  position: relative;
}

.newsInner .nav-link {
  color: #9f9f9f;
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: 21px;
}

.newsInner .nav-link.active {
  color: #112049;
  background-color: transparent;
  border-bottom: 2px solid #9f9f9f;
  padding: 0;
}

.newsInner .tab-content {
  background-color: #fff;
  padding: 15px;
}

.newsInner .nav-item:nth-child(1):before {
  content: "";
  position: absolute;
  width: 2px;
  height: 25px;
  background: #9f9f9f;
  top: 8px;
  right: 8px;
}

section.newsAndsocial .newEvents .newsLins ul {
  list-style-type: disc;
}

section.newsAndsocial .newEvents .newsLins ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  color: #112049;
  font-weight: 500;
  letter-spacing: 0.5px !important;
  border-bottom: 1px solid #d3d3d752;
}

section.newsAndsocial .newEvents .newsInner {
  position: relative;
}

section.newsAndsocial .newEvents .newsInner button {
  position: absolute;
  right: 15px;
  bottom: 7px;
  border: 1px solid #112049;
  color: #112049;
}

section.newsAndsocial .newEvents .newsInner .socialBox {
  height: 300px;
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
  border: 10px solid #fff;
  border-radius: 30px;
}

#style-4::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-4::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-4::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: 2px solid #555555;
}

section.content-section.explore-collectionBG .newsInner .nav-link {
  color: #fff;
}

section.footer.content-section.no-spacing {
  background: #e5e8ed;
  padding: 30px 0 !important;
}

section.footer.content-section.no-spacing .footerIcons img {
  border: 1px solid #3333331f;
  border-radius: 5px;
}

section.footer.content-section.no-spacing .termPolicy a p {
  color: #112049;
  margin: 16px 0px;
  font-size: 13px;
  font-weight: 700;
}

section.footer.content-section.no-spacing .termPolicy.d-flex.gap-3 img {
  width: 120px;
  height: 50px;
}

section.footer.content-section.no-spacing .termPolicy.d-flex.gap-3 img {
  mix-blend-mode: multiply;
}

section.footer.content-section.no-spacing .termPolicy.d-flex.gap-3 input {
  width: 180px;
}

.rightFoot {
  align-items: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-banner {
  padding: 50px 0;
  background-image: url("/public/index2/images-old/inner-bg/inner-bg.png");
  background-position: center;
  background-size: cover;
  position: relative;
  color: white;
  background-color: #000000b0;
  background-blend-mode: color;
}

.inner-banner h1 {
  font-size: 24px;
}

.mainContentArea {
  padding: 40px 0;
}

.mainContentArea .ContentBox {
  padding: 20px;
  border-radius: 20px;
  box-shadow: rgba(0 0 0 /20%) 0px 7px 29px 0px;
  margin-bottom: 20px;
}

.mainContentArea .ContentBox .innerContent h2 {
  font-size: 28px;
  color: #112049;
  text-transform: uppercase;
  line-height: 35px;
  font-weight: 700;
  padding-bottom: 20px;
}

.mainContentArea .ContentBox .innerContent h2 span {
  color: #ffd53b;
}

.mainContentArea .ContentBox .innerContent ul {
  list-style: none;
  padding: 0;
}

.mainContentArea .ContentBox .innerContent ul li {
  list-style: none;
  color: #112049;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.mainContentArea .ContentBox .innerContent ul li:before {
  content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤";
  margin-right: 5px;
  color: #112049;
  font-size: 12px;
  position: absolute;
  left: 0;
}

.implink-wrap {
  position: relative;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.brand-items {
  list-style: none;
  padding: 0;
  overflow: hidden;
  display: table;
  width: 100%;
}

.brand-items li {
  list-style: none;
  padding: 20px 14px;
}

.brand-items li img {
  aspect-ratio: 4/3;
  max-width: 100%;
  background: #fff;
  width: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 10px #ddd;
}

footer {
  display: block;
}

.footer {
  position: relative;
  padding: 0;
  margin: 0;
  background: rgb(51, 51, 51);
  color: #fff;
  font-size: 12px;
}

/* Links */
.footer a {
  font-weight: 400;
  font-size: 12px;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.25rem;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s ease-in-out 0s;
  color: #fff;
}

.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: #0d1846;
}

.abn {
  white-space: nowrap;
  background: #112049;
  padding: 4px 13px;
  color: #fff;
  margin: 0 15px;
  font-size: 13px;
  border-radius: 4px;
}

/* Container for the links and copyright */
.legal-container {
  margin: 0 auto;
}

.legal-contents {
  flex-flow: column wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  display: flex;
}

.legal-contents ul {
  gap: 1rem;
  flex-direction: column;
  display: flex;
  margin: 0;
  border-bottom: 1px solid #c5cbd1;
  padding: 1.5rem;
  list-style: none;
  text-align: left;
}

.legal-contents p {
  margin: 0;
  padding: 1rem 1.5rem;
}

/* Small Tablet */
@media screen and (min-width: 600px) {
  .legal-contents ul {
    gap: 2rem;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

/* Tablet */
@media screen and (min-width: 768px) {
  .legal-contents ul {
    gap: 2rem;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: flex-start;
    align-self: center;
  }
}

/* Large Tablet */
@media screen and (min-width: 1024px) {
  .legal-contents {
    flex-flow: row;
    padding: 4px 0;
  }

  .legal-contents ul {
    border-bottom: 0;
    padding: 0;
  }

  .legal-container p {
    padding: 0;
    text-align: right;
  }
}

/* Desktops and Laptops */
@media screen and (min-width: 1200px) {

  .message-contents,
  .legal-contents {
    margin: 0 auto;
    max-width: 75rem;
    /* 1200px */
  }
}

/* Expert page css  */
section.mainContentArea.exertPageArea {
  padding-top: 40px;
}

.exertPageArea .ContentBox {
  padding: 40px;
}

.exertPageArea .innerContent .content {
  border: 1px solid #1120492b;
  padding: 7px 20px 7px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.exertPageArea .innerContent p {
  color: #112049;
  font-size: 14px;
  margin-bottom: 20px;
}

.exertPageArea .innerContent .content a p {
  margin: 0;
}

.exertPageArea .custom-button {
  margin-top: 0px;
}

.exertPageArea .custom-button.whitebtn {
  border: 1px solid #112049;
  border-radius: 5px;
  padding: 2px 20px;
  height: 100% !important;
  font-size: 19px;
  line-height: 34px;
}

.logo.right img {
  padding-right: 25px;
  padding-top: 19px;
  padding-bottom: 3px;
}

.header_content .menu>li>a span {
  margin-left: 3px;
}

#style-4::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-4::-webkit-scrollbar {
  width: 7px;
  background-color: #f5f5f5;
}

#style-4::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: 2px solid #555555;
}

.addBorder {
  border: 2px solid #112049;
  padding: 20px;
  border-radius: 10px;
}

.addBorder>.minitserNames:nth-child(even) {
  /* border: 4px solid #dcdcdc;
    padding: 20px;
    border-radius: 10px;*/
  margin-bottom: 0px !important;
}

.heightScroll {
  overflow-y: auto;
  height: 240px;
}

section.ministerArea .rightPannel .rightOne .immg img {
  width: 50px;
}

/* Sticky Page CSS */

.StickyPageArea .snip1571 {
  background-color: #000;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}

.StickyPageArea .snip1571 *,
.StickyPageArea .snip1571 *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.StickyPageArea .snip1571 img {
  backface-visibility: hidden;
  max-width: 100%;
  width: 100%;
  vertical-align: top;
}

.StickyPageArea .snip1571 figcaption {
  bottom: 30px;
  left: 0;
  position: absolute;
  z-index: 0;
}

.StickyPageArea .snip1571 figcaption:before {
  background-color: #ffffff;
  bottom: -5px;
  content: "";
  left: 0;
  position: absolute;
  right: 100%;
  top: -5px;
  z-index: -1;
}

.StickyPageArea .snip1571 h3 {
  background-color: #c73232;
  color: #ffffff;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  padding: 5px 10px;
  text-transform: uppercase;
  z-index: 1;
}

.StickyPageArea .snip1571 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.StickyPageArea .snip1571:hover>img,
.StickyPageArea .snip1571.hover>img {
  opacity: 0.1;
}

.StickyPageArea .snip1571:hover figcaption:before,
.StickyPageArea .snip1571.hover figcaption:before {
  right: -5px;
}

.header_content .menu>li a {
  color: #fff;
  border-radius: 0px;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #d8d9f8;
  -webkit-transition: ease-out 0.2s;
  -moz-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
}

.header_content .menu>li a:hover {
  /*box-shadow: inset 0 0 0 50px #d8d9f8;*/
  background: white;
  color: #112049;
}

.bannerSection .owl-nav button:hover {
  color: #d6d6d6 !important;
}

button.btn.btn-light.loginBtn {
  background: #112d79;
  color: #fff;
  border: 0;
}

button.btn.btn-light.loginBtn:hover {
  background: #4778ff;
}

.minitserNames {
  background: #ffff;
  box-shadow: rgba(0 0 0 /20%) 0px 7px 29px 0px;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}

.minitserNames .detailsArea {
  display: flex;
  align-items: center;
  gap: 20px;
}

.minitserNames .socailICons {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

.minitserNames .socailICons img {
  width: 100%;
  border-radius: 0;
  border: 0;
}

/* Gallery */

/* gallery */
.galleryAreaBt {
  padding: 10px;
  background: #fff;
  border: 1px solid #b9b9b9;
  -webkit-box-shadow: 5px 8px 30px 0 rgb(31 35 37 / 8%);
  -moz-box-shadow: 5px 8px 30px 0 rgba(31, 35, 37, 0.08);
  box-shadow: 5px 8px 30px 0 rgb(31 35 37 / 8%);
}

.galleryBox {
  margin-bottom: 30px;
  box-shadow: 6px 11px 41px -28px #796eb1;
  -webkit-box-shadow: 6px 11px 41px -28px #796eb1;
}

.single-shuffle {
  position: relative;
  z-index: 1;

  text-align: center;
  background: #fff;

  padding: 0;
  transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
  overflow: hidden;
}

.single-shuffle:hover .ssf-hover i.fa-link {
  font-size: 29px;
}

.single-shuffle:hover .ssf-hover {
  opacity: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.single-shuffle:hover .ssf-hover:before {
  opacity: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.single-shuffle:hover .ssf-hover i {
  font-size: 40px;
  color: #fff;
}

.single-shuffle:hover .ssf-hover img {
  opacity: 1;
}

.single-shuffle img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 270px;
}

.single-shuffle .ssf-hover {
  position: absolute;
  height: 0;
  width: 0;
  top: 50%;
  left: 50%;
  z-index: 1;
  padding-top: 0px;
  background-color: rgb(22 47 106 / 0%);
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-shuffle .ssf-hover:before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  top: 50%;
  left: 50%;
  z-index: 1;
  padding-top: 0px;
  background-color: rgb(22 47 106 / 46%);
  text-align: center;
  opacity: 0;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  z-index: -1;
}

.single-shuffle .ssf-hover img {
  max-width: 35px;
  max-height: 35px;
  opacity: 0;
  margin: 0 auto;
}

.single-shuffle .ssf-hover a {
  padding-top: calc(35% - 23px);
  display: block;
  height: 100%;
  width: 100%;
}

.single-shuffle .aspect {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}

.single-shuffle .aspect .aspect__inner {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;

  overflow: hidden;
}

.single-shuffle .aspect--16x9 {
  padding-bottom: 56.25%;
}

.single-shuffle .aspect--9x80 {
  padding-bottom: calc(112.5% + 30px);
}

.single-shuffle .aspect--32x9 {
  padding-bottom: calc(28.125% - 8px);
}

.sbox_V1 .single-shuffle {
  margin-bottom: 0px;
  padding: 0px;
}

.ssV1-2 .ssf-hover i {
  border: 1px solid #fff;
  padding: 5px 8px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pf-8 .single-shuffle {
  margin-bottom: 0px;
}

.single-shuffleHeading {
  width: 100%;
  margin: auto;
  text-align: center;
  background: #fff;
  border-top: 0;
  padding: 10px 0 0 0;
}

.single-shuffleHeading h5 {
  font-size: 15px;
  margin: 0;
  padding: 0;
  line-height: 20px;
}

.single-shuffleHeading h5 span {
  display: block;
  color: #737373;
  font-size: 14px;
  padding-top: 5px;
}

/* Minister page Css */

.exertPageArea.StickyPageArea .nav .nav-item button {
  border: none;
  background: none;
  color: #05102c !important;
}

.exertPageArea.StickyPageArea .nav .nav-item button.active {
  background-color: transparent;
  color: var(--bs-danger) !important;
}

.exertPageArea.StickyPageArea .nav .nav-item button.active::after {
  content: "";
  border-bottom: 4px solid var(--bs-danger);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-radius: 5px 5px 0 0;
}

.exertPageArea.StickyPageArea .tab-content {
  color: #05102c;
}

.exertPageArea.StickyPageArea th,
td {
  padding: 10px;
  text-align: left;
}

.exertPageArea.StickyPageArea th {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .exertPageArea.StickyPageArea table {
    width: 100%;
  }

  .exertPageArea.StickyPageArea th,
  td {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

/* New And Events Page CSS */

.newEventArea .card {
  width: 370px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: box-shadow 0.5s;
  transition: box-shadow 0.5s;
}

.newEventArea .card a {
  color: inherit;
  text-decoration: none;
}

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

/**
* DATE
**/

.newEventArea .card__date {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  padding-top: 10px;
  background-color: #112049;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 13px;
}

.newEventArea .card__date__day {
  font-size: 14px;
}

.newEventArea .card__date__month {
  text-transform: uppercase;
  font-size: 10px;
}

/**
* THUMB
**/

.newEventArea .card__thumb {
  height: 245px;
  overflow: hidden;
  background-color: #000;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}

.newEventArea .card__thumb img {
  width: 100%;
  display: block;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.newEventArea .card:hover .card__thumb {
  height: 130px;
}

.newEventArea .card:hover .card__thumb img {
  opacity: 0.6;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/**
* card_BODY
**/

.newEventArea .card__body {
  position: relative;
  height: 185px;
  padding: 20px;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}

.newEventArea .card:hover .card__body {
  height: 300px;
}

.newEventArea .card__category {
  position: absolute;
  top: -25px;
  left: 0;
  height: 25px;
  padding: 0 15px;
  background-color: #112049;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 25px;
}

.newEventArea .card__title {
  margin: 0;
  padding: 0 0 10px 0;
  color: #000;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}

.newEventArea .card__subtitle {
  margin: 0;
  padding: 0 0 10px 0;
  font-size: 15px;
  color: #112049;
}

.newEventArea .card__description {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 56px;
  margin: 0;
  padding: 0;
  color: #666c74;
  line-height: 27px;
  opacity: 0;
  -webkit-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.newEventArea .card:hover .card__description {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.newEventArea .card__footer {
  position: absolute;
  bottom: 12px;
  left: 20px;
  right: 20px;
  font-size: 11px;
  color: #a3a9a2;
}

.newEventArea .icon {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 2px;
  font-size: 18px;
}

.newEventArea .icon+.icon {
  padding-left: 10px;
}

.nav-menu-area {
  width: 100%;
  padding: 0 30px;
  background: rgb(27, 45, 92);
  /*background: linear-gradient(
    180deg,
    rgba(27, 45, 92, 1) 40%,
    rgba(0, 0, 0, 1) 100%
  );*/
  background: #162f6a;
}

.playPauseButton {
  background-color: #ffffff00;
  color: #fff;
  font-size: 12px;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50px !important;
  border: 2px solid #fff;
  border-radius: 0px;
  cursor: pointer;
  right: 80px;
  position: absolute;
}

.playPauseButton .i:hover {
  color: #fff !important;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #ffffff00 !important;
  color: #d6d6d6 !important;
  text-decoration: none;
}

footer#footer {
  background: #353a40;
}

footer#footer .container {
  padding: 8px 0;
}

footer#footer p {
  color: rgb(255, 255, 255);
  font-size: 12px !important;
  margin: 0;
}

/* my CSS start from Here */
/* top Header CSS */

/* top Header CSS */

.topSocialIcons {
  position: relative;
  top: 5px;
}

.topSocialIcons i {
  font-size: 14px;
  margin-right: 11px;
  width: 20px;
  height: 20px;
  color: #fff;
  text-align: center;
  line-height: 21px;
  border-radius: 4px;
}

.topSocialIcons .fab.fa-facebook-f {
  background: linear-gradient(to right, rgb(0, 198, 255), rgb(0, 114, 255));
}

.topSocialIcons .fab.fa-twitter {
  background: linear-gradient(to right, rgb(29, 161, 242), rgb(0, 159, 252));
}

.topSocialIcons .fab.fa-youtube-square {
  background: red;
}

.topSocialIcons .fab.fa-linkedin-in {
  background: rgb(10, 102, 194);
}

.header_top {
  background: rgb(253, 236, 222);
  color: rgb(0, 0, 0);
  font-size: 12px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.933);
  font-family: Arial, Helvetica, sans-serif;
}

/* Header middle */

.headerMiddle span {
  display: block;
  font-weight: 600;
  font-size: 21px;
  line-height: 22px;
  color: rgb(0, 0, 0);
}

.headerMiddle p {
  margin: 0px;
  font-size: 12px;
 
  color: rgb(0, 0, 0);
  line-height: 14px;
  font-weight: 600;
  padding-top: 5px;
}
.contentAreaHere p{text-align: justify;}
.logo.left {
    padding: 5px 0;
}

.header_content .menu>li a button {
  border-radius: 0 !important;
  height: 45px;
  background-color: #f89e52;
  border: 0;
  color: #ffff;
}

.header_content .menu>li a button img {
    padding-right: 4px;
}

.header_content .menu>li a button:hover {
  background: #fff;
  color: #333;
}

/* OtherLinks css  */
section.bg_gray.otherLinksArea {
  margin: 40px 0;
}

.icon_box {
  padding: 15px;
  z-index: 9;
  position: relative;
  border-radius: 13.5px;
  cursor: pointer;
  height: 185px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.box_icon,
.intro_desc {
  position: relative;
}

.box_icon i {
  font-size: 40px;
}

.icon_box img {
  max-width: 60px;
}

.icon_box_style1.icon_box {
  background-color: #fff;
  padding: 15px;
  border: 2px solid #f6f6f6;
  transform: translate3d(0, 0, 0);
}

.icon_box_style1 .box_icon {
  float: left;
  margin-right: 20px;
}

.icon_box_style1.icon_box:hover {
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.05);
  transform: translate3d(0, -10px, 0);
}

.icon_box_style1.icon_box img {
  max-width: 40px;
  width: 40px;
}

.icon_box_style1 .intro_desc {
  overflow: hidden;
}

.intro_desc h5 {
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
}

.intro_desc p {
  height: 45px;
  overflow: hidden;
}

.intro_desc p:last-child {
  margin: 0;
}

.icon_box_style2 .box_icon,
.icon_box_style3 .box_icon {
  border-radius: 100%;
  display: inline-block;
  /* padding: 24px; */
  position: relative;
  height: 100px;
  width: 100px;
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon_box_style2 .box_icon i,
.icon_box_style3 .box_icon i {
  line-height: 60px;
}

.bg_danger {
  background-color: #f6475f;
}

.icon_box_style2 .box_icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  border: 3px solid #fff;
  border-radius: 100%;
  margin: 0px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.icon_box_style2:hover .box_icon::before {
  margin: 5px;
  opacity: 1;
}

.icon_box_style3 .box_icon {
  overflow: hidden;
}

.icon_box.one {
  background: #3a8ab7;
}

.icon_box.one.icon_box_style2 .box_icon::before {
  border: 3px solid #3a8ab7;
}

.icon_box.two {
  background: #51b0b7 !important;
}

.icon_box.two.icon_box_style2 .box_icon::before {
  border: 3px solid #164ab9 !important;
}

.icon_box.three {
  background: #4e98ad;
}

.icon_box.three.icon_box_style2 .box_icon::before {
  border: 3px solid #15718b;
}

.icon_box.four {
  background: #b92b5c;
}

.icon_box.four.icon_box_style2 .box_icon::before {
  border: 3px solid #b92b5c;
}

.icon_box.five {
  background: #f89e52;
}

.icon_box.five.icon_box_style2 .box_icon::before {
  border: 3px solid #f7892c;
}

.icon_box.six {
  background: #81b2a2;
}

.icon_box.six.icon_box_style2 .box_icon::before {
  border: 3px solid #58aa8f;
}

section.bg_gray.otherLinksArea .owl-nav.disabled {
  position: absolute;
  top: -21px;
  right: 15px;
}

section.bg_gray.otherLinksArea .owl-nav.disabled button:focus {
  outline: none;
}

section.bg_gray.otherLinksArea .owl-nav.disabled button {
  background: rgb(4, 31, 88);
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  line-height: 21px;
  border-radius: 50px;
  margin-right: 10px;
  text-align: center;
}

/* Socail Audit CSS */

.socialAudit {
  position: relative;
}

.socialAudit h3 {
  margin-bottom: 20px !important;
  margin-top: 0;
  font-weight: 700;
  color: #041f58d6;
  font-size: 25px;
}

.socialAudit .nav .nav-item button.active,
.socialAudit .nav .nav-item button {
  border: none;
  border-radius: 4px;
  margin: 0px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-right: 10px;
  position: relative;
  margin-bottom: 5px;
  height: 55px;
  display: flex;
  align-items: center;
  text-align: left;
  width: 223px;
  color: #fff !important;
}

.socialAudit .nav .nav-item button:focus {
  outline: none;
}

.socialAudit .nav .nav-item button.active>button::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -30px;
  transform: translateY(-50%);
  border-top: 20px solid transparent;
  border-left: 10px solid;
  border-right: 10px solid;
  background-color: inherit;
  rotate: -90deg;
}

.socialAudit #pills-tab {
  position: relative;
  margin-bottom: 15px;
}

.socialAudit #pills-tab .nav-link.active::after {
  content: "";
  border-left: 8px solid;
  border-right: 8px solid;
  border-top: 14px solid transparent;
  background-color: inherit;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.socialAudit .nav .nav-item button.one {
  background: #0d4689;
}

.socialAudit .nav .nav-item button.two {
  background: #6ca239;
}

.socialAudit .nav .nav-item button.three {
  background: #fc5f75;
}

.socialAudit .nav .nav-item button.four {
  background: #00a362;
}

.socialAudit .nav .nav-item button.five {
  background: #0b97a8;
}

.socialAudit .nav .nav-item button.six {
  background: #efaa40;
}

.socialAudit .owl-nav.disabled {
  position: absolute;
  top: -45px;
  right: 15px;
}

.socialAudit .owl-nav.disabled button:focus {
  outline: none;
}

.socialAudit .owl-nav.disabled button {
  background: transparent;
  width: 30px;
  height: 30px;
  border: 1px solid #333;
  color: #333;
  font-size: 12px;
  line-height: 21px;
  border-radius: 50px;
  margin-right: 10px;
  text-align: center;
}

.socialAudit .tab-content {
  border: 0;
  padding: 0;
}

.socialAudit .tab-content .tab-pane .socialCont {
  display: flex;
}

.socialAudit .tab-content .tab-pane .socialCont .socialInner {
  color: #fff;
  width: 100%;
}

.socialAudit .tab-content .tab-pane .socialCont .headingArea p {
  color: #fff000;
  font-size: 11px !important;
  font-weight: 700;
  padding: 3px 10px !important;
  height: 48px;
  display: flex;
  align-items: center;
}

.socialAudit .tab-content .tab-pane .socialCont .socialInner p {
  padding: 28px 15px;
  font-size: 12px;
  margin: 0;
}

.socialAudit .tab-content .tab-pane .socialCont .socialInner .moreBTn a {
  margin-right: 10px;
  color: #fff000;
  font-size: 11px;
}

.socialAudit .tab-content .tab-pane .socialCont .socialInner:nth-child(1) {
  background: #253d6d;
}

.socialAudit .tab-content .tab-pane .socialCont .socialInner:nth-child(1) .headingArea p {
  background: #172b55;
}

.socialAudit .tab-content .tab-pane .socialCont .socialInner:nth-child(2) {
  background: #1a2f5a;
}

.socialAudit .tab-content .tab-pane .socialCont .socialInner:nth-child(2) .headingArea p {
  background: #06183d;
}

.socialAudit .tab-content .tab-pane .socialCont .socialInner:nth-child(3) {
  background: #0f1f41;
}

.socialAudit .tab-content .tab-pane .socialCont .socialInner:nth-child(3) .headingArea p {
  background: #071128;
}

/* What's New CSS */

.services .icon-box {
  text-align: center;
  padding: 10px 10px 10px 10px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.what-is-news h3 {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
  display: inline-block;
  font-size: 20px;
}

#whats-is_scroll_news {
  padding: 10px;
  height: 430px;
  background: #eaeaea;
  border: 8px solid #eaeaea;
  border-radius: 0px 0 0px 20px;
  overflow-y: scroll;
  position: relative;
}

.what-is-news ul {
  margin: 0;
  padding: 0;
}

.what-is-news ul li {
  margin: 0;
  display: flex;
  overflow: hidden;
  text-align: left;
  list-style-type: none;
  border-bottom: 1px dashed #ccc;
}

.what-is-news ul li::before {
  content: "ÃƒÂ¢Ã‚Â¬Ã‚Â¤";
  color: #cc2333;
  padding: 10px 10px 0 0;
}

.what-is-news ul li a {
  color: #2d2d2d;
  display: block;
  padding: 8px 0;
}

.what-is-news ul li a p {
  margin: 0;
  font-size: 13px;
}


.rightImg.one {
  position: relative;
  /* padding: 27px; */
  text-align: center;
  margin-top: 10px;
  /* left: -3px; */
  border-radius: 10px 10px 0 0;

}

.rightImg.two {
  position: absolute;
  bottom: -40px;
  right: -40px;
}

.rightImg.two img {
  width: 240px;
  height: 275px;
  object-fit: cover;
  object-position: center;
}

.icon-box {
  position: relative;
  top: 17px;
}

.with-shadow::before {
  content: "";
  position: absolute;
  bottom: -59px;
  right: -35px;
  width: 100%;
  height: 89px;
  background-image: url("../images/shadow/Shadow.png");
  background-repeat: no-repeat;
  z-index: -1;
}

section.whatsNewArea ul.nav.nav-tabs {
  border-bottom: 8px solid #253d6d;
}

section.whatsNewArea .nav-tabs .nav-link {
  margin-bottom: 0;
  border: 0;
  margin-right: 5px;
  font-size: 18px;
  font-weight: 600;
  color: #253d6d;
  background-color: #c8c8ca;
  text-transform: uppercase;
}

section.whatsNewArea .nav-tabs .nav-link.active {
  margin-bottom: 0;
  background: #253d6d;
  color: #fff;
}

section.whatsNewArea .nav-tabs .nav-link:focus {
  outline: none;
}

section.whatsNewArea {
  margin: 15px 0;
}

/* Client Slider CSS */

.clientSlider {
  background: #f6f6f6;
}

.clientSlider .container {
  padding: 20px 30px;
}

.clientSlider .owl-carousel .item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/2;
  background: #fff;
  padding: 14px;
  object-fit: contain;
  border-radius: 20px;
}

.clientSlider .owl-nav.disabled {
  display: block !important;
}

.clientSlider .owl-nav.disabled .owl-prev,
.clientSlider .owl-nav.disabled .owl-next {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #333;
  background-color: #fff;
  padding: 0;
  border: none;
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.clientSlider .owl-nav.disabled .owl-prev {
  left: -50px;
}

.clientSlider .owl-nav.disabled .owl-next {
  right: -50px;
}

.clientSlider .owl-nav.disabled .owl-prev span,
.clientSlider .owl-nav.disabled .owl-next span {
  font-size: 28px;
  line-height: 23px;
}

/* Preloade  CSS */


.loaded .site-preloader {
  transition: all 0.6s linear;
}

.site-preloader {
  position: fixed;
  z-index: 9999;
  height: 100%;
  width: 100%;
  background: #fff;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-text {
  position: relative;
  font-size: 66px;
  line-height: 1;
  font-weight: 500;
  color: #dddddd;
}

.loader-text:before {
  content: attr(data-text);
  position: absolute;
  max-width: 120%;
  white-space: nowrap;
  overflow: hidden;
  color: #000;
  -webkit-animation: text-loading 5s linear infinite;
  animation: text-loading 5s linear infinite forwards;
}

@-webkit-keyframes text-loading {
  0% {
    max-width: 0;
  }
}

@keyframes text-loading {
  0% {
    max-width: 0;
  }
}

@media (max-width: 767px) {
  .loader-text {
    font-size: 42px;
  }
}

/* PM Adarsh Page CSS Start From Here */

/* breadcrum CSS */

/* Breadcrump Banner  */

.inner-banner.research {
  padding: 30px 0;
  background-image: url("../images/breadcrump/banner.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  color: white;
  background-color: #000000b4;
  background-blend-mode: color;
  background-attachment: fixed;
  color: #fff;
}

.inner-banner.research .container {
  padding: 0 0 0 0;
}

.pm-adarsh {
  display: flex;
  justify-content: center;
}

.inner-banner.research h1 {
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  border-bottom: 3px solid #fff;
  display: inline-block;
  font-size: 32px;
  margin-top: 0;
}

#breadcrumb-bg {
  background-color: #e3e3e3;
  padding-left: 0px;
  text-align: left;
}

#breadcrumb-bg .container {
  padding: 0;
}

.breadcrumb {
  padding: 0px;
  margin: 0px;
  background: 0;
}

.breadcrumb>li {
  padding: 3px 8px 8px 8px;
  font-size: 14px;
}

.breadcrumb>li+li:before {
  padding: 0 0px;
  color: #ccc;
  content: "\00a0";
}

.breadcrumb>li a {
  color: #234793;
}

.breadcrumb li .active {
  color: #234793 !important;
}

/* Table setion */

#pmadarsh-gram-tab {
  margin-top: 30px;
}

#pmadarsh-gram-tab .container {
  padding-top: 0px;
  padding-bottom: 0px;
}

#pmadarsh-gram-tab .panel.with-nav-tabs .panel-heading {
  padding: 4px 4px 5px 4px;
  box-shadow: 1px 2px 7px 2px #ccc;
  background: #fff;
  border-color: #e3e3e3;
  border-radius: 30px;
}

#pmadarsh-gram-tab .panel.with-nav-tabs .nav-tabs {
  border-bottom: none;
}

#pmadarsh-gram-tab .panel.with-nav-tabs .nav-justified {
  margin-bottom: -1px;
}

#pmadarsh-gram-tab .nav-tabs>li {
  text-align: center;
  margin: 0 24px 0 0;
}

#pmadarsh-gram-tab .panel-default {
  border-color: none !important;
}

#pmadarsh-gram-tab .panel-body {
  padding: 0;
  margin: 0;
  border: 0 !important;
  border-radius: 0;
  background: none;
}

.form-of-year {
  padding: 17px 20px 17px 18px;
  margin: 17px 0 0 0;
  border: 1px solid #bababa !important;
  border-radius: 30px;
  background: #f7f7f7;
}

.view-social-audit-calendar {
  border: 1px solid #bababa !important;
  padding: 17px 20px 17px 18px;
  margin: 50px 0 50px 0;
  border-radius: 30px;
  position: relative;
}

.view-social-audit-calendar h2 {
  margin: 0px;
  font-size: 19px;
  background: #fff;
  position: absolute;
  top: -15px;
  left: 21px;
  font-weight: 600;
  padding: 0px 10px;
}

#pmadarsh-gram-tab .tab-content {
  padding: 0px;
  border: none;
}

.view-social-audit-calendar h2 {
  margin: 0px;
  font-size: 20px;
}

/********************************************************************/
/* imran */
/* .form-of-year .col-md-2 {
  width: 19.99%;
} */

/*** PANEL pm adarsh ***/
#pmadarsh-gram-tab .panel {
  box-shadow: none;
  -webkit-box-shadow: none;
}

#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li>a,
#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li>a:hover,
#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li>a:focus {
  color: #777;
}

#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>.open>a,
#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>.open>a:hover,
#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>.open>a:focus,
#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li>a:hover,
#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li>a:focus {
  color: #fff;
  background-color: #234793;
  border-color: transparent;
}

#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li.active>a,
#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li.active>a:hover,
#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li.active>a:focus {
  color: #fff;
  background-color: #f89e52;
  border-color: #ddd;
  border-bottom-color: transparent;
}

#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li.dropdown .dropdown-menu {
  background-color: #f5f5f5;
  border-color: #ddd;
}

#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li.dropdown .dropdown-menu>li>a {
  color: #777;
  font-size: 20px;
}

/* imran */
#pmadarsh-gram-tab .nav-tabs>li>a {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: rgb(85, 85, 85);
  padding: 10px 21px;
  margin-right: 0px;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid #33333338;
}

#pmadarsh-gram-tab .nav-tabs .nav-item .nav-link.active {
  color: #fff !important;
  background-color: #f89e52 !important;
  border-color: #ddd !important;
  border-bottom-color: transparent !important;
}

/* imran */
#pmadarsh-gram-tab .form-select {
  border-radius: 20px !important;
  width: 100%;
  padding: 4px 11px !important;
  border: 1px solid rgb(204, 204, 204);
  box-sizing: border-box;
  margin-top: 0px;
  margin-bottom: 10px;
  box-shadow: rgba(204, 204, 204, 0.8) 0px 0px 3px inset;
  resize: vertical;
  font-size: 14px;
  height: 37px;
}

input#sa_starting_date, input#sa_ending_date {
    border-radius: 20px !important;
    width: 100%;
    padding: 4px 11px !important;
    border: 1px solid rgb(204, 204, 204);
    box-sizing: border-box;
    margin-top: 0px;
    margin-bottom: 10px;
    box-shadow: rgba(204, 204, 204, 0.8) 0px 0px 3px inset;
    font-size: 12px;
    height: 37px;
}

section#pmadarsh-gram-tab button.btn.btn-primary {
    position: relative;
    padding: 18px 16px;
    height: auto;
    margin-top: 69px;
    border-radius: 20px;
    top: 11px;
    height: auto !important;
    width: auto !important;
    display: inline-block;
    font-weight: 600;
    line-height: 0;
}

#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li.dropdown .dropdown-menu>li>a:hover,
#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li.dropdown .dropdown-menu>li>a:focus {
  background-color: #ddd;
}

#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li.dropdown .dropdown-menu>.active>a,
#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li.dropdown .dropdown-menu>.active>a:hover,
#pmadarsh-gram-tab .with-nav-tabs.panel-default .nav-tabs>li.dropdown .dropdown-menu>.active>a:focus {
  color: #fff;
  background-color: #555;
}

/* imran */
.btn-view-btn {
  padding: 9px 13px;
  color: #010000;
  font-size: 15px;
  border-radius: 22px;
  width: 100%;
  background: #cbd6ea;
  border-color: #cbd6ea;
}

#pmadarsh-gram-tab .btn-primary:hover {
  color: #fff;
  background-color: #234793;
  border-color: #234793;
}

#pmadarsh-gram-tab .btn-primary.active,
.btn-primary:active,
.open>.dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #234793 !important;
  border-color: #234793;
  background: #234793 !important;
}

#pmadarsh-gram-tab .btn-primary.focus,
.btn-primary:focus {
  color: #fff;
  background-color: #234793;
  border-color: #234793;
}

/* imran */
.download-pdf-file a {
  background: #0b98f2;
  padding: 6px 19px;
  border-radius: 6px;
  color: #fff;
  margin-right: 14px;
  border: none;
  font-size: 14px;
}

.download-pdf-file a:hover {
  background: #1bbb5f;
  color: #000;
}

.download-pdf-file {
  margin-top: 15px;
}

.lightRed {
  background-color: #ff8080 !important;
}

.lightRed a {
  color: #fff;
  font-weight: bold;
}

.red {
  background-color: #f00;
}

/* Optional: Add some basic styling to the button */
.activeButton {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.inactiveButton {
  padding: 10px 20px;
  background-color: #ccc;
  color: #666;
  border: none;
  border-radius: 5px;
  cursor: not-allowed;
}

#pmadarsh-gram-tab .panel .nav-tabs {
  border-bottom: none;
  padding: 4px 4px 5px 4px;
  box-shadow: 1px 2px 7px 2px #ccc;
  background: #fff;
  border-color: #e3e3e3;
  border-radius: 30px;
}

.dt-layout-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.dt-layout-cell.dt-end {
  display: flex;
  align-items: center;
}

.dt-layout-row.dt-layout-table .dt-layout-cell {
  width: 100%;
}

div.dt-container div.dt-length select {
  width: auto;
  display: inline-block;
  margin-right: 0.5em;
  background-image: none;
  padding: 3px;
  height: 40px;
}

table.dataTable-new thead>tr>th {
  padding-left: 9px;
  padding-right: 18px;
  color: #000;
  font-weight: 600;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 12px;
}

table.dataTable-new thead {
  background: none;
  color: #000 !important;
  font-size: 12px;
  font-weight: 600;
}

table.dataTable-new tbody tr:nth-child(even) {
  background-color: #f9f9f9 !important;
}

.dt-layout-cell.dt-end .dt-paging.paging_full_numbers button {
  border: none;
  background: #234793;
  color: #fff;
  margin-right: 5px;
  padding: 0;
  height: 25px;
  width: 25px;
  text-align: center;
  line-height: 16px;
}

.dt-layout-cell.dt-end .dt-paging.paging_full_numbers button.current {
  background-color: #ffff;
  color: #234793;
  border: 1px solid #234793;
}

div.dt-container div.dt-search input:focus {
  outline: none;
}

table.table.dataTable>tbody>tr td:nth-child(even) {
  background: #f3f3f3;
}

div.breadcrumb-bg {
  padding: 60px 0;
  background-image: url("../images/banner/banner01.jpg");
  background-position: top;
  background-size: cover;
  background-color: #00000094;
  background-blend-mode: color;
  background-attachment: fixed;
}

.breadcrumb-content {
  position: relative;
  z-index: 9;
}

.breadcrumb-title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.trail-items .trail-item {
  display: inline-block;
  list-style-type: none;
  /* margin: 0 16px; */
}

.trail-items .trail-item span,
.trail-items .trail-item a {
  font-size: 12px;
  color: #fff;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  text-decoration: none;
}

.trail-items .trail-item:not(:first-child)::before {
  content: ">";
  color: #fff;
  margin: 10px 0;
  padding: 0 3px;
  position: relative;
  top: 2px;
  font-size: 14px;
}

.aboutDetsPage .aboutImg {
  border-radius: 12px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  height: 350px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.aboutDetsPage .contentArea h3 {
  font-weight: 600;
  font-size: 27px;
}

.aboutDetsPage .contentArea p {
  text-align: justify;
  font-size: 14px;
}

.bg-dark-subtle {
  background-color: #f2f2f3 !important;
}

#main-content .fw-bold {
  font-weight: 600 !important;
  font-size: 20px;
}

.aboutDetsPage .nrcsaCard ul li {
  padding: 9px 3px;
  text-align: justify;
  margin: 0 0 0px 0;
  display: block;

}

.nrcsaCard.access-infor-jaankari ul li {
  padding: 10px 14px;
  text-align: justify;
  margin: 0 0 12px 0;
  background: #fff !important;
  display: block;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px !important;
}

.nrcsaCard.nrcsabg {
  background: none !important;
  padding: 0 !important;
}

.aboutDetsPage .nrcsaCard.nrcsabg ul li {
  font-weight: 600;
}

section.aboutDetsPage.bg-dark-subtle.nrcsapage-bg {
  background: #ede9ed !important;
}

.aboutDetsPage .nrcsaCard ul li ::marker {
  position: relative;
  left: 14px !important;
}

.arrow-iconsabo {
  padding-right: 7px;
}

section.aboutDetsPage .nrcsaCard {
  background: #fbfbfbb8;
  padding: 25px;
  font-size: 13px;
  border-radius: 12px;
  margin: 23px 0;
}

.nrcsaCard.access-infor-jaankari {
  background: none !important;
  margin: 0 !important;
  padding: 0px !important;
}

.aboutDetsPage ul {
  list-style: square;
  margin: 0;
}

.aboutDetsPage ul li {
  padding: 10px 0;
  text-align: justify;
  margin-left: 20px;
}

section.aboutDetsPage .bottomArea {
  background: #eee;
  padding: 14px;
  border: 2px solid #e9e9ef;
  border-radius: 12px;
}

.rightImg.one h2 {
  background: #253d6d;
  padding: 7px 10px;
  font-size: 13px;
  color: #fff;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
}


.mapSection {
  background-color: rgba(var(--thm-black2-rgb), 0.4);
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  height: 422px;
  justify-content: center;
}

.mapSection img {
  width: 100%;
}

.partnerPanel {
  background: #fff;
  padding: 5px;
  border-radius: 10px
}

.mapLeftSection h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
}

.mapLeftSection h6 {
  color: #fff;
  font-size: 25px;
  position: relative;
  padding-right: 40px;
  position: relative;
  display: inline-block;
}

.mapLeftSection h6:after {
  background-color: #fff;
  background-image: linear-gradient(90deg, var(--theme-color1), var(--theme-color1-lighter));
  top: 50%;
  border-radius: 10px;
  content: "";
  height: 2px;
  right: 0;
  transform: translateY(-50%);
  margin-top: 2px;
  position: absolute;
  width: 30px;
}

.mapLeftSection h4 {
  color: #e5fa16;
  font-size: 25px;
  margin-bottom: 5px;
  font-weight: 700;
}

.mapLeftSection p {
  color: #fff;
}

.mapLeftSection h5 {
  color: #fff;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.mapLeftSection h5:before,
.mapLeftSection h5:after {
  content: "";
  background: #dddddd;
  width: 30px;
  left: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
}

.mapLeftSection h5:after {
  background: var(--thm-base);
  left: 30px;
}


.mapSection .st0 {
  fill: #e79f16;
  stroke: #624205;
  stroke-width: 3;
}

.mapSection .st0:hover {
  fill: #02a9e3;
  stroke: #624205;
  stroke-width: 3;
}

.mapSection .st1 {
  opacity: 0.48;
  fill: #fff;
}

.mapSection .st2 {
  opacity: 0.73;
  fill: #fff;
}

section.data-table.data-table-entries table.dataTable-new thead>tr>th {
  background-color: none !important;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover {
  background: #0a3b74;
}

.navbar-nav .nav-link {
  margin-right: 20px;
}


.schemesArea {
  padding: 40px 0;
  color: #fff;

}

.schemesArea .headingArea h5 {
  background: #f89e52;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
}

.schemesData {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #eee;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 17px 1px #33333338;
  border: 2px solid #e1e1e1;
  margin-bottom: 20px;
}

.schemesData .Sno {
  background: #f89e52;
}

.schemesData .Sno span {
  background: #f89e52;
  height: 40px;
  width: 40px;
  display: inline-block;
  text-align: center;
  line-height: 18px;
  border-radius: 100px;
  font-size: 21px;
  padding: 10px;
  color: #fff;
  font-weight: 900;
}

.schemesData .schemeName a {
  font-size: 14px;
  font-weight: 600;
  color: #041f58;
}

.schemesData .websiteLinks a {
  font-size: 14px;
  font-weight: 500;
  color: #ff7703;
}

/* Manish Css Changes  */

.schemesArea .accordion {
  display: flex !important;
  flex-direction: column;
  margin-bottom: 26px;
}

.schemesArea .accordion .accordion-button {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
  font-size: 16px;
  color: #fff;
  padding: 10px;
  color: #fff;
  border-radius: 0 !important;

}

.schemesArea .accordion .accordion-item {
  border: 0;
}

.schemesArea .accordion .accordion-body {
  margin-top: -7px;
  color: #fff;
}


.schemesArea .accordion .accordion-button::after {
  color: #fff;
  filter: brightness(0) invert(1);
  display: none;
}

.schemesArea .accordion .accordion-button span {
  background: #fff;
  width: 25px;
  height: 25px;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-weight: 700;
  display: none;
}

.schemesDetails {
  margin: 40px 0;
}

.schemesDetails .schemeDets {
  margin-top: 20px;
}

.schemesDetails .schemeDets ul {
  margin-bottom: 0;
}

.schemesDetails .schemeDets ul li a {
  color: #fff000;
}

.schemesDetails .schemeDets ul li {
  background: #333;
  padding: 10px;
  color: #fff;
  width: 100%;
  /* display: flex; */
  gap: 47px;
  border: 6px solid #eee;
  margin-bottom: 20px;
}

.schemesDetails .schemeDets ul li p {
  margin-bottom: 2px;
}

.schemesDetails .content {
  margin-top: 20px;
  text-align: justify;
}


.caption {
  background: #f5f5f5;
  text-align: center;
  margin: 30px 0;
}

.caption a {
  text-decoration: none;
  color: #000;
}

.caption a:hover {
  text-decoration: none;
  color: #000;
}

.caption h3 {
  font-size: 16px;
  padding: 15px;
  margin: 0px;
}

.caption a img {
  border-radius: 10px 10px 0 0;
}

.caption {
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.schemesArea .accordion .accordion-button a {
  color: #f89e52;
  font-size: 14px;
}

button.accordion-button.collapsed .ends i {
  rotate: -90deg;
  transition-duration: 0.25s;
}

.schemesArea .accordion-item .accordion-button {
  background: #041f58 !important;
  height: 100px;
}

.schemesArea .accordion .accordion-body {
  background: #041f58 !important;
}

.schemesArea .accordion-item .accordion-button h5 {
  font-size: 17px;
}



section.dashboardArea .dashboardInput {
  background: #f9f9f9;
  padding: 16px;
  color: #333;
  border-radius: 0 0 0 0;
  border: 1px solid #33333317;
}

section.dashboardArea .dashboardInput .form-select {
  border-radius: 26px !important;
  width: 100%;
  padding: 4px 11px !important;
  border: 1px solid rgb(204, 204, 204);
  box-sizing: border-box;
  margin-top: 0px;
  margin-bottom: 10px;
  box-shadow: rgba(204, 204, 204, 0.8) 0px 0px 3px inset;
  resize: vertical;
  font-size: 14px;
  height: 37px;
}

section.dashboardArea .dashboardData .wpo-service-wrap {
  border: 1px solid #33333317;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  background: #c5cfe5;
}



section.dashboardArea .wpo-service-wrap .wpo-service-item {
  background-color: #5a6c97 !important;
  display: flex;
  justify-content: space-around;
  padding: 10px;
  box-shadow: none;
  cursor: pointer;
  border-radius: 10px 30px 0 32px;
  border: 4px solid #ddd;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

section.dashboardArea .wpo-service-wrap .wpo-service-item .icon {
  margin: 0;
  border: 0;
  border: 2px solid #707991 !important;
}

section.dashboardArea .wpo-service-wrap .wpo-service-item:hover {
  box-shadow: none;
  background: #536ba5 !important;
}

section.dashboardArea .wpo-service-wrap .wpo-service-item:hover .icon {
  border: none;
}

section.dashboardArea .wpo-service-wrap .wpo-service-item:hover h3.total-head {
  color: #ffff;
}

.boXshadow.mb-4 h3.fw-bold {
  font-size: 18px;
  color: darkorange;
  border-bottom: 2px solid;
  width: fit-content;
  padding-bottom: 10px;
  text-transform: uppercase;
}


/* Styling for DataTable within .reportData class */
.reportData .dataTables_wrapper {
  overflow-x: auto;
}

.reportData table.dataTable {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-radius: 5px;
}

.reportData table.dataTable thead th,
.reportData table.dataTable tfoot th {
  border: 1px solid #ddd;
  padding: 8px;
  color: #000;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
}

.reportData table.dataTable tbody td {
  border: 1px solid #ddd;
  padding: 8px;
}


.reportData table.dataTable tbody tr:hover {
  background-color: #e0e0e0;
}

.reportData .dataTables_paginate {
  text-align: right;
}

.reportData .dataTables_paginate ul.pagination {
  margin: 10px 0;
}

.reportData .dataTables_paginate ul.pagination li {
  display: inline-block;
  margin-right: 5px;
}

.reportData .dataTables_paginate ul.pagination li.active a {
  background-color: #3e537f;
  color: #fff;
  border-color: #3e537f;
}

.reportData .dataTables_paginate ul.pagination li a {
  color: #3e537f;
  border: 1px solid #3e537f;
  padding: 3px 6px;
  text-decoration: none;
}

.reportData .dataTables_paginate ul.pagination li a:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}


.reportData .dataTables_filter {
  float: left;
  margin-bottom: 10px;
}

.reportData .pagination {
  text-align: right;
}



.reportData table.table.dataTable.table-striped>tbody>tr:nth-of-type(2n + 1)>* {
  box-shadow: none;
  white-space: nowrap;
}

.reportData table.table.dataTable>tbody>tr td:nth-child(even) {
  background: none
}

section.reportData {
  padding: 0px 0;
}

section.reportData .container {
  max-width: auto;
}

div#example_info {
  position: relative;
  top: 25px;
  z-index: -1;
}

section.reportData .dataTables_wrapper.form-inline.dt-bootstrap {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #eee;
}

section.reportData input[type="search"] {
  width: 175px;
  max-width: 100%;
  height: 30px;
  padding: 0px 15px;
  border: 1px solid rgb(206, 206, 206);
}

.reportData .dt-buttons {
  float: right;
  margin-top: 25px;
}

.reportData .dt-buttons a {
  background-color: rgb(4 31 88 / 77%);
  width: 100px;
  line-height: 24px;
  height: 28px;
  border-radius: 5px;
  border: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  padding: 0;
  font-size: 14px;
}

.reportData table.table.dataTable>tbody>tr:nth-child(even) {
  background: #f7f8fc;
}

section.reportData .reportDataInput {
  margin: 20px 0;
}


.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  color: black;
  content: 'â–¾';
  margin-right: 10px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 7px;
  font-size: 20px;
}

.select-wrapper .select {
  --moz-appearance: none;
  --webkit-appearance: none;
  background: white;
  border: 1px solid #ddd;
  border-radius: 0;
  cursor: pointer;
  padding: 12px;
  width: 100%;
  font-size: 13px;
  height: 40px;
  line-height: 11px;
}

.select-wrapper .form-select:focus {
  color: black;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.select-wrapper .select::-ms-expand {
  display: none;
}

section.reportData .reportDataInput .needs-validation {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding: 11px 0;
  border-radius: 10px;
  border: 2px solid #eee;
  margin: 0px;
}


.wpo-service-wrap .wpo-service-item h4 {
  color: #ffcb7a;
  font-weight: 600;
  font-size: 20px;
}

section.socialAudit .container {
  border: 1px solid #ddd;
  padding: 27px;
  border-radius: 7px;
  max-width: 1227px;
}

section#scheme-under-dose .container {
  padding: 10px;
  border: 0;
}

* fhgfjhfgjhmghvfmhvmhv */ #accordionPanelsStayOpenExample button.accordion-button.collapsed {

  background-color: #7291b5 !important;
  color: #fff !important;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 4px 4px 0 0;
}

#accordionPanelsStayOpenExample .accordion-button {
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 12px;
  padding-right: 12px;
  font-weight: 600;
  font-size: 14px;
}

.bsb-accordion-6 .accordion {
  --bs-accordion-btn-icon: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 fill=%27%23212529%27 class=%27bi bi-plus%27%3E%3Cpath d=%27M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z%27/%3E%3C/svg%3E) !important;
  --bs-accordion-btn-active-icon: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 fill=%27%23052c65%27 class=%27bi bi-dash%27%3E%3Cpath d=%27M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z%27/%3E%3C/svg%3E) !important;
}

.accordion-button:not(.collapsed) {
  color: #052c65 !important;
  background: #a1c1e3 !important;
  box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

#accordionPanelsStayOpenExample button.accordion-button.collapsed {
  background-color: #7291b5 !important;
  color: #fff !important;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 4px 4px 0 0;
}

#accordionPanelsStayOpenExample h2 {
  font-size: 20px;
  font-weight: 500;
  color: #393f44;
  position: relative;
}

#accordionPanelsStayOpenExample i.fa.fa-eye {
  padding-right: 6px;
  font-size: 12px;
}

#accordionPanelsStayOpenExample h2:before,
#accordionPanelsStayOpenExample h2:after {
  display: none !important;
}

#accordionPanelsStayOpenExample h2:before,
#accordionPanelsStayOpenExample h2:after {
  display: none !important;
}

/* .accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
} */
.accordion-button:not(.collapsed) {
  color: #052c65 !important;
  background: #a1c1e3 !important;
  box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.col-md-1.buttonssdasdb-btn {
  margin: 27px 0 0 0;
}

.sidebar-navigation.social-finding-report {
  background: none;
  padding: 0;
  box-shadow: none;
}

.sidebar-navigation.social-finding-report li {
  color: #525c6e;
  border-bottom: 1px solid #f1f1f1 !important;
  font-weight: 400;
  font-size: 14px;
}

.sidebar-navigation.social-finding-report li a {
  color: #333;
  border-radius: 2px;
  padding: 3px 8px;
  font-weight: 400;
  font-size: 14px;
  border: none;
  text-transform: capitalize;
}

.sidebar-navigation.social-finding-report li a:hover {
  color: #0c5fc1 !important;
  background: #f9f9f9 !important;
}

.sidebar-navigation.social-finding-report li:hover {
  background: none !important;
  background-color: none !important;
}

#accordionPanelsStayOpenExample .accordion-body {
  padding: 0 10px;
}

#accordionPanelsStayOpenExample .accordion-item {
  margin-bottom: 16px;
}

.auditdashicon {
  padding: 0px 2px 0 0;
  position: relative;
  top: 2px;
  font-size: 13px;
}

.accordion-cardd .heading-scheme {
  margin-bottom: 8px;
}

.btn.btn-primary.expandbtn {
  background: #0d4689 !important;
  border-color: #0d4689
}

.btn.btn-primary.expandbtn:hover {
  background: #2171cf !important;
  border-color: #2171cf
}

.justice-cell-member a#insertRow {
  float: right;
}

.justice-cell-member .srnomembers {
  vertical-align: middle;
  background: #fff !important;
  color: #000 !important;
  font-weight: 600;
  font-size: 12px;
}

.justice-cell-member .form-control::placeholder {
  font-size: 0.85rem;
  color: #666;
}

.noof-resource-person {
  text-align: center !important;
  background: #f3f8ff;
  border-radius: 8px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
}

.noof-resource-person h3 {
  text-align: center !important;
  margin: 0;
  padding: 0 10px;
  background: none;
  color: #0d4689;
  font-weight: 600;
  font-size: 15px;
}

.count {
  background: #408ce5;
  display: flex;
  padding: 20px 20px;
  border-radius: 50%;
  width: 15px;
  height: 17px;
  color: #fff;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.count strong {
  font-size: 15px;
}

button.btn.btn-primary.editbtn {
  padding: 0px 26px;
  height: 32px;
  margin-top: 4px;
}

/* 22-5-2024 */
.main-add-remove .card-body.my-3.p-0 {
  margin: 0 !important;
}

.main-add-remove .row.justify-content-end.align-items-end {
  justify-content: space-between !important;
}

#main-filter .accordion-item .card-body {
  padding: 2px 10px 8px 10px;
}

#main-filter .accordion-body {
  padding: 7px 8px 0 8px;
}

#main-export .main-add-remove div.dt-container div.dt-length label {
  font-weight: 500;
  margin-top: -26px;
  float: right;
  margin-left: 10px;

}

.work-pmajay-basic {
  margin: 0 14px;
}

h3.basic-detailsheadwork {
  margin-bottom: 10px;
}

.basic-detail-form {
  padding-bottom: 10px;
}

.form-bgg.basic-detailspages button.btn.btn-primary {
  background: #0a4fa1;
}

div.dt-container div.dt-info {
  font-size: 14px;
}



.bsb-accordion-6.two .section-title {
  text-align: center;
  padding-bottom: 30px;
}

.bsb-accordion-6.two .bgColor {
  background: rgb(2, 67, 95);
  background: -moz-linear-gradient(99deg, rgba(2, 67, 95, 1) 0%, rgba(5, 99, 142) 100%);
  background: -webkit-linear-gradient(99deg, rgba(2, 67, 95, 1) 0%, rgba(5, 99, 142) 100%);
  background: linear-gradient(99deg, rgba(2, 67, 95, 1) 0%, rgba(5, 99, 142) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#02435f", endColorstr="#046a98", GradientType=1);
}

.bsb-accordion-6.two .bgColor .card-body {
  padding: 5px 10px;
}

.bsb-accordion-6.two .sm-icon {
  width: 40px;
  height: 40px;
  background: #9d399c;
  display: flex;
  color: #fff;
  align-items: center;
  vertical-align: middle;
  text-align: center;
  justify-content: center;
  border-radius: 5px;
}

.bsb-accordion-6.two .card-body img {
  width: 72%;
  margin: 0 auto;
  padding: 10px 0;
}

.bsb-accordion-6.two .line {
  height: 3px;
  margin-bottom: 4px;
  margin-top: 4px;
  background: rgb(13, 105, 144);
}

.bsb-accordion-6.two h6 {
  font-size: 16px;
}

.section-titl {
  padding: 13px 0;
}


.section-titl .accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 fill=%27%23212529%27 class=%27bi bi-plus%27%3E%3Cpath d=%27M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z%27/%3E%3C/svg%3E");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 fill=%27%23052c65%27 class=%27bi bi-dash%27%3E%3Cpath d=%27M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z%27/%3E%3C/svg%3E");
}

section.bsb-accordion-6.two {
  margin: 40px 0;
}

.contentAreaHere p {
  font-size: 13px;
  line-height: 22px;
}

a.btn.btn-outline-light {
  color: #000;
  background: #f8f9fa;
  padding: 3px 5px;
  font-size: 12px;
  margin-bottom: 5px;
  border-radius: 4px;
}


a.btn.btn-outline-light:hover {
  color: #052c65;
  background: #a1c1e3;
}


#sub-heading {
  padding: 5px 0 0px 0;
  border-radius: 12px 12px 0 0;
  background: #fff;
}

#sub-heading h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  color: #0d4689;
  padding-bottom: 4px;
  margin-bottom: 0;
}

#sub-heading h2:before,
#sub-heading h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #ffc107;
  display: inline-block;
}

#sub-heading h2:before {
  margin: 0 15px 7px 0;
}

#sub-heading h2:after {
  margin: 0 0 7px 15px;
}

#sub-heading h2:before,
#sub-heading h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #ffc107;
  display: inline-block;
}

.dashboard-scheme-bgg {
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  background: #f1f1f1;
}

.reportData .dt-search {
  margin-bottom: 10px;
}

.reportData .select-wrapper .select {
  border-radius: 30px !important;
}



.dashHeading h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  color: #0d4689;
  padding: 10px 0;
  position: relative;
  margin-bottom: 0;
  font-weight: 500;
}

.dashHeading h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #ffc107;
  display: inline-block;
  margin: 0 0 7px 15px;
}

.dashHeading h2:before {
  content: "";
  width: 50px;
  height: 2px;
  background: #ffc107;
  display: inline-block;
  margin: 0 15px 7px 0;
}

.logocenter a {
	display:inline-block;
    color: #000;
    margin: 0;
    font-weight: 600;
    text-align: center;
    font-size: 20px; 
    background: #fff;
    padding: 18px 27px;
    border-radius: 1px 19px;
    border: 1px solid #0c4e7b6b;
    line-height: 21px;
    
}

.logocenter a {
  border:2px solid #fff;
  min-height: 2em;
  border-radius: 1px 19px;
  resize: both;
  /* background: #03122233; */
  border-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='100' height='100' stroke-width='100' transform='rotate(0 0 0)' stroke-linecap='square' stroke-linejoin='round' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cstyle%3Epath%7Banimation:stroke 8s infinite linear%3B%7D%40keyframes stroke%7Bto%7Bstroke-dashoffset:776%3B%7D%7D%3C/style%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%232d3561' /%3E%3Cstop offset='25%25' stop-color='%23c05c7e' /%3E%3Cstop offset='50%25' stop-color='%23f3826f' /%3E%3Cstop offset='100%25' stop-color='%23ffb961' /%3E%3C/linearGradient%3E %3Cpath d='M1.5 1.5 l97 0l0 97l-97 0 l0 -97' stroke-linecap='square' stroke='url(%23g)' stroke-width='3' stroke-dasharray='388'/%3E %3C/svg%3E") 1;
}

.logocenter {
    margin-right: 0px;
}

	