/*

Vanilla Template

https://templatemo.com/tm-526-vanilla

*/

p {
  font-size: 15px;
  line-height: 25px;
}

section {
  padding: 25px 0 35px;
  background: #fff;
}

body { 
  position: relative; /* we need this for the scrollspy */ 
  font-size: 14px;
}

html {
  scroll-padding-top: var(--apv-navbar-height, 72px);
}

a { color: #3CC; }

a:hover { color: #FF0; }

/*----------
  NAV
----------*/

.fixed-side-navbar {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 99999;
  margin-top: -100px;
  text-align: right;
  padding: 30px 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.fixed-side-navbar:hover {
  background: transparent;
}
.fixed-side-navbar:hover .nav > li > a > span {
  color: rgba(0, 0, 0, 0.5);
  display: block;
  background-color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  padding: 2px 12px;
  border-radius: 15px;
}
.fixed-side-navbar .nav > li a.active {
  background-color: transparent;
  color: black;
}
.fixed-side-navbar .nav > li a.active:after {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.fixed-side-navbar .nav > li a.active:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
}
.nav>li {
  position: relative;
  display: block;
}
.fixed-side-navbar .nav > li a {
  color: #fff;
  min-height: 32px;
  background: transparent;
  padding: 5px 45px 5px 25px;
  border-right: none;
}
.fixed-side-navbar .nav > li a span {
  display: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.fixed-side-navbar .nav > li a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(250, 250, 250, 0.75);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

body.light-page .fixed-side-navbar .nav > li a:after {
  background: rgba(0, 0, 0, 0.75);
}
.fixed-side-navbar .nav > li a:hover {
  background-color: transparent;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-color: black;
  boder-right: 0;
}
.fixed-side-navbar .nav > li a:hover > span {
  color: black;
  display: block;
}

/*----------
  TOP SCROLL NAVBAR
----------*/

.top-scroll-navbar {
  position: fixed;
  top: -120px;
  left: 0;
  right: 0;
  z-index: 100000;
  display: block;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: top 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
  transition: top 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.top-scroll-navbar.is-visible {
  top: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.navbar-text-fade {
  -webkit-transition: opacity 0.12s linear;
  transition: opacity 0.12s linear;
}

.top-scroll-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.top-scroll-navbar-brand {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
}

.top-scroll-navbar-brand:hover {
  color: #34495E;
  text-decoration: none;
}

.top-scroll-navbar-brand img {
  height: 70px;
  width: auto;
}

.top-scroll-navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-scroll-navbar-nav a {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 8px 4px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.top-scroll-navbar-nav a:hover,
.top-scroll-navbar-nav a.active {
  color: #34495E;
  text-decoration: none;
}

.navbar-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.navbar-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .top-scroll-navbar-inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-scroll-navbar-brand {
    margin-bottom: 0;
  }

  .navbar-burger {
    display: flex;
  }

  .top-scroll-navbar-nav {
    flex-basis: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.92);
    border-radius: 6px;
    transition: max-height 0.3s ease;
  }

  .top-scroll-navbar-nav.is-open {
    max-height: 70vh;
    overflow-y: auto;
    margin-top: 12px;
  }

  .top-scroll-navbar-nav li {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .top-scroll-navbar-nav li:first-child {
    border-top: none;
  }

  .top-scroll-navbar-nav a {
    font-size: 13px;
    padding: 14px 16px;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}


.primary-button a {
  display: inline-block;
  background-color: #34495E;
  padding: 15px 24px;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}


.parallax-content {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
}


#home,
.baner-content {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  filter: none;
  transition: filter 1.1s ease;
}

/* Teinte dorée : uniquement sur la dernière image de la vidéo hero */
.hero-tone-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(88, 52, 18, 0.58) 0%, rgba(24, 14, 8, 0.72) 48%, rgba(168, 118, 42, 0.5) 100%);
  mix-blend-mode: multiply;
  transition: opacity 1.1s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.30);
  pointer-events: none;
  transition: background-color 1.1s ease;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  padding-top: 30vh;
  text-align: center;
  pointer-events: none;
}

.hero-content a,
.hero-content .primary-button {
  pointer-events: auto;
}

.hero-content .first-content {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  -webkit-transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
}

.hero-logo {
  position: absolute;
  bottom: 100%;
  right: 15%;
  margin-bottom: 20px;
  height: 200px;
  width: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

body:has(.top-scroll-navbar.is-visible) .hero-logo,
body.top-navbar-visible .hero-logo {
  opacity: 0;
  visibility: hidden;
}

.baner-content.hero-seeking-final .hero-media .hero-video {
  opacity: 0;
}

.baner-content.hero-video-ended .hero-content .first-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.baner-content.hero-video-ended .hero-media .hero-video {
  filter: sepia(0.42) saturate(1.2) contrast(1.06) brightness(0.78);
}

.baner-content.hero-video-ended .hero-media .hero-tone-overlay {
  opacity: 1;
}

.baner-content h1 {
  margin-top: 0px;
  font-size: 72px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0px;
  line-height: 1.08;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.baner-content em {
  color: #34495E;
  font-weight: 600;
  font-style: normal;
}

.baner-content span {
  display: inline-block;
  margin-top: -20px;
  font-weight: 300;
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
}

.baner-content .primary-button {
  margin-top: 15px;
}



.service-content {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15vh;
  background-image: url(../img/2nd-section.png);
  background-attachment: fixed;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
}

.service-content .left-text h4 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

h4, .h4 {
  font-size: 18px;
}

.service-content .left-text .line-dec {
  width: 45px;
  height: 3px;
  background-color: #34495E;
  margin: 20px 0px 20px 0px;
}

.service-content .left-text p {
  color: #fff;
}

.service-content .left-text ul {
  padding: 0;
  margin-top: 30px;
  list-style: none;
}

.service-content .left-text ul li {
  margin: 15px 0px;
  font-weight: 600;
  color: #fff;
}

.service-content .left-text .primary-button {
  margin: 30px 0px;
}

.service-content .service-item {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 25px 30px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.service-content .service-item .line-dec {
  width: 45px;
  height: 3px;
  background-color: #34495E;
  margin: 20px auto 15px auto;
}



.projects-content {
  padding-top: 20vh;
  background-image: url(../img/1st-big-item-apv-same-size.jpg);
}

.projects-content .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.projects-content .item {
  margin: 15px;
}

.projects-content .testimonials-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.projects-content .item .text-content {
  background-color: #fff;
  text-align: center;
  padding: 20px;
}

.projects-content .item .text-content h4 {
  margin-top: 0px;
  font-size: 19px;
  font-weight: 600;
}

.projects-content .item .text-content span a {
  color: inherit;
  text-decoration: none;
}

.projects-content .item .text-content span a:hover {
  color: #34495E;
}

.projects-content .item .text-content span {
  font-style: normal;
  font-size: 17px;
  font-weight: 700;
  color: #34495E;
}

.projects-content .item .text-content h4 a {
  color: #282b2f;
  text-decoration: none;
}

.projects-content .item .text-content h4 a:hover {
  color: #34495E;
}

.action-theme-link {
  display: block;
  aspect-ratio: 370 / 250;
  overflow: hidden;
}

.action-theme-link img {
  display: block;
}

.owl-pagination {
  margin-top: 40px;
  opacity: 1;
  display: inline-block;
}

.owl-page span {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0px 5px;
  filter: alpha(opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #fff;
}

/*----------
  ARTICLES PAGE
----------*/

.articles-page-header {
  padding: 120px 0 40px;
  text-align: center;
  background: #fff;
}

.articles-page-header h1 {
  margin: 0 0 12px;
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  color: #282b2f;
}

.articles-page-header p {
  margin: 0;
  font-size: 16px;
  color: #555;
}

.articles-content {
  padding-top: 8vh;
  padding-bottom: 10vh;
  background: #fff;
}

.article-filters-wrap {
  margin-bottom: 20px;
}

.article-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-filter-btn {
  background: #eee;
  color: #282b2f;
  border: 0;
  border-radius: 3px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.article-filter-btn:hover,
.article-filter-btn.active {
  background: #34495E;
  color: #fff;
}

.articles-filter-label {
  text-align: center;
  color: #282b2f;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 24px;
}

.articles-grid {
  margin-bottom: 20px;
}

.article-grid-item {
  display: flex;
  margin-bottom: 30px;
}

.article-grid-item.is-hidden {
  display: none;
}

.article-theme-tag {
  display: block;
  background: #34495E;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  text-align: center;
}

.articles-empty-message {
  text-align: center;
  color: #555;
  font-size: 16px;
  margin: 20px 0 0;
  padding: 24px;
  background: #f5f5f5;
  border-radius: 4px;
}

.article-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
}

.article-cover {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.article-cover img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.article-cover:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.article-item .text-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #fff;
  text-align: center;
  padding: 24px 22px 28px;
}

.article-item .text-content h4 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #282b2f;
}

.article-item .text-content h4 a {
  color: #282b2f;
  text-decoration: none;
}

.article-item .text-content h4 a:hover {
  color: #34495E;
}

.article-item .text-content p {
  flex: 1;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding-top: 4px;
}

.article-read-btn {
  display: inline-block;
  background-color: #282b2f;
  color: #fff;
  border-radius: 3px;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.article-read-btn:hover {
  background-color: #34495E;
  color: #fff;
  text-decoration: none;
}

.article-video-btn {
  display: inline-block;
  background-color: #34495E;
  color: #fff;
  border: 0;
  border-radius: 3px;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.article-video-btn:hover {
  background-color: #4a6178;
  color: #fff;
}

.article-video-btn i {
  margin-right: 6px;
}

.gallery-grid-item {
  margin-bottom: 30px;
}

.gallery-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}

.gallery-card img,
.gallery-card video {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-card-video img,
.gallery-card-video video {
  filter: brightness(0.6);
  pointer-events: none;
}

.gallery-card-video .article-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.article-video-modal {
  position: fixed;
  inset: 0;
  z-index: 200000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.article-video-modal.is-open {
  display: flex;
}

.article-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.article-video-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  background: #000;
  padding: 12px;
  border-radius: 4px;
}

.article-video-player {
  display: block;
  width: 100%;
  max-height: 80vh;
  background: #000;
}

.article-video-close {
  position: absolute;
  top: -36px;
  right: 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

/*----------
  GALLERY
----------*/

.gallery-content {
  padding: 12vh 15px;
  background-color: #14100d;
}

.gallery-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.gallery-header h2 {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.gallery-header .line-dec {
  width: 60px;
  height: 3px;
  background-color: #34495E;
  margin: 0 auto 18px;
}

.gallery-header p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.9);
}

.gallery-carousel {
  max-width: 900px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
}

.gallery-item img,
.gallery-item video {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .gallery-item img,
  .gallery-item video {
    height: 280px;
  }
}

/*----------
  MEMBERSHIP
----------*/

.membership-content {
  padding: 15vh 15px;
  background-color: #14100d;
  background-image: url(../img/Gemini_Generated_Image_nooi6anooi6anooi.jpeg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

.membership-panel {
  background-color: rgba(0, 0, 0, 0.55);
  padding: 40px 45px;
  text-align: center;
}

.membership-panel h4 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.membership-panel .line-dec {
  width: 45px;
  height: 3px;
  background-color: #34495E;
  margin: 20px auto;
}

.membership-panel p {
  color: #fff;
}

.membership-benefits {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
  display: inline-block;
}

.membership-benefits li {
  color: #fff;
  font-weight: 600;
  margin: 10px 0;
}

.membership-panel .primary-button {
  margin-top: 20px;
}

.membership-panel .primary-button button {
  display: inline-block;
  background-color: #34495E;
  padding: 15px 24px;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 0;
  cursor: pointer;
}

.membership-modal {
  position: fixed;
  inset: 0;
  z-index: 200000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.membership-modal.is-open {
  display: flex;
}

.membership-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.membership-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: #1a1512;
  padding: 40px;
  border-radius: 4px;
  color: #fff;
}

.membership-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.membership-modal-dialog h3 {
  font-size: 22px;
  margin-bottom: 15px;
  padding-right: 20px;
}

.membership-modal-intro {
  color: #ddd;
  margin-bottom: 20px;
}

.membership-modal-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.membership-modal-benefits li {
  margin: 10px 0;
  font-weight: 600;
}

.membership-modal-benefits li i {
  color: #34495E;
  margin-right: 10px;
}

.membership-modal-price {
  font-size: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.membership-modal-form .form-field {
  margin-bottom: 15px;
}

.membership-modal-form .form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.membership-modal-form .form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.membership-modal-form .form-actions {
  margin-top: 20px;
}

.membership-field-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #999;
}

.membership-modal-note {
  margin-top: 15px;
  font-size: 13px;
  color: #ccc;
}

.membership-modal-success {
  color: #4caf50;
  font-weight: 600;
}

.member-auth-dialog {
  max-width: 420px;
}

.member-auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.member-auth-tab {
  flex: 1;
  background: transparent;
  border: 0;
  color: #ccc;
  padding: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.member-auth-tab.active {
  color: #fff;
  border-bottom-color: #34495E;
  font-weight: 700;
}

.member-auth-view {
  display: none;
}

.member-auth-view.active {
  display: block;
}

.member-auth-link {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
}

.member-auth-link a {
  color: #ccc;
  text-decoration: underline;
  cursor: pointer;
}

.member-auth-membership-cta {
  margin: -8px 0 20px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

.member-auth-membership-cta a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.member-auth-link a:hover {
  color: #fff;
}

.membership-form-error {
  margin: 10px 0;
  font-size: 13px;
  color: #ff5252;
}

.membership-payment-howto {
  background: rgba(52, 73, 94, 0.1);
  border: 1px solid rgba(52, 73, 94, 0.3);
  border-radius: 4px;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.membership-payment-howto h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #34495E;
}

.membership-payment-howto ol {
  margin: 0;
  padding-left: 18px;
  color: #ddd;
  font-size: 13px;
}

.membership-payment-howto li {
  margin: 4px 0;
}

.membership-payment-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 15px 20px;
  margin-bottom: 15px;
}

.membership-payment-amount-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ccc;
}

.membership-payment-amount-value {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex: 1;
  text-align: right;
  margin-right: 12px;
}

.membership-payment-details {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.membership-payment-details li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-payment-details-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
}

.membership-payment-details-value {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.membership-copy-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
}

.membership-copy-btn:hover {
  border-color: #34495E;
  color: #34495E;
}

.membership-copy-all-btn {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid #34495E;
  color: #34495E;
  padding: 10px;
  border-radius: 3px;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 5px;
}

.membership-copy-all-btn:hover {
  background: #34495E;
  color: #fff;
}

.membership-copy-hint {
  min-height: 18px;
  font-size: 12px;
  color: #34495E;
  text-align: center;
  margin: 5px 0 15px;
}

.membership-modal-note-instructions {
  font-size: 13px;
  color: #ddd;
  margin-bottom: 20px;
}

.membership-file-input {
  display: none;
}

.membership-file-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}

.membership-file-btn:hover {
  border-color: #34495E;
  color: #34495E;
}

.membership-file-name {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #4caf50;
}

@media (max-width: 767px) {
  .articles-page-header {
    padding: 100px 0 30px;
  }

  .articles-page-header h1 {
    font-size: 32px;
  }

  .membership-panel {
    padding: 30px 20px;
  }

  .membership-modal-dialog {
    padding: 30px 20px;
  }
}

/* Article detail page */
.article-detail {
  background: #fff;
  padding-bottom: 60px;
}

.article-detail-cover {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  margin-top: 56px;
}

.article-detail-cover img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.article-detail-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 15px 0;
}

.article-back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #34495E;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.article-back-link:hover {
  color: #282b2f;
  text-decoration: none;
}

.article-detail-body h1 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: #282b2f;
  line-height: 1.15;
}

.article-lead {
  font-size: 18px;
  line-height: 28px;
  color: #555;
  margin-bottom: 28px;
}

.article-share {
  margin-top: 36px;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.article-share-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #888;
}

.article-share-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.article-share-btn:hover {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.article-share-btn i {
  font-size: 15px;
  line-height: 1;
}

.article-share-facebook {
  background: #1877f2;
}

.article-share-twitter {
  background: #282b2f;
}

.article-share-whatsapp {
  background: #25d366;
}

.article-share-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.article-share-toast {
  margin: 12px 0 0;
  padding: 8px 12px;
  border-radius: 3px;
  background: #282b2f;
  color: #fff;
  font-size: 12px;
  line-height: 1.45;
  max-width: 420px;
}

.article-detail-content p {
  font-size: 15px;
  line-height: 26px;
  color: #444;
  margin-bottom: 18px;
}

.article-detail-video {
  margin: 0 0 32px;
  padding: 0;
}

.article-detail-video h2 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #282b2f;
}

.article-video-player {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  cursor: pointer;
  user-select: none;
}

.article-video-player video {
  width: 100%;
  display: block;
  background: #000;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.article-video-center-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;
}

.article-video-center-play:hover {
  background: rgba(0, 0, 0, 0.28);
}

.article-video-player.is-playing .article-video-center-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.article-video-player.is-controls-visible .article-video-center-play,
.article-video-player.is-paused .article-video-center-play {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.article-video-player.is-playing.is-controls-visible .article-video-center-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.article-video-center-play i {
  font-size: 72px;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.article-video-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 10px 8px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.article-video-player.is-controls-visible .article-video-controls,
.article-video-player.is-paused .article-video-controls {
  opacity: 1;
  visibility: visible;
}

.article-video-progress-wrap {
  position: relative;
  height: 18px;
  display: flex;
  align-items: center;
}

.article-video-progress-track {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.article-video-progress-buffer,
.article-video-progress-played {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 2px;
}

.article-video-progress-buffer {
  background: rgba(255, 255, 255, 0.35);
  width: 0;
}

.article-video-progress-played {
  background: #34495E;
  width: 0;
}

.article-video-seek {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 18px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.article-video-controls-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
}

.article-video-control-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.article-video-control-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.article-video-control-btn i {
  font-size: 15px;
  line-height: 1;
  pointer-events: none;
}

.article-video-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.article-video-time-sep {
  opacity: 0.7;
}

.article-video-controls-spacer {
  flex: 1;
}

.article-video-volume {
  width: 72px;
  height: 4px;
  margin: 0;
  cursor: pointer;
  accent-color: #34495E;
}

.article-video-player.is-fullscreen,
.article-video-player:fullscreen,
.article-video-player:-webkit-full-screen {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #000;
}

.article-video-player.is-fullscreen video,
.article-video-player:fullscreen video,
.article-video-player:-webkit-full-screen video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

@media (max-width: 767px) {
  .article-video-center-play i {
    font-size: 56px;
  }

  .article-video-volume {
    width: 56px;
  }

  .article-video-time {
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  .article-detail-cover img {
    height: 260px;
  }

  .article-detail-body h1 {
    font-size: 28px;
  }

  .article-lead {
    font-size: 16px;
  }
}


.tabs-content {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 8vh;
  background-image: url(../img/4th-section.png);
  background-attachment: fixed;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
}

section {
  background-color: transparent;
  padding-bottom: 15px;
}

.wrapper {
  text-align: center;
}

.tabs {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.tabs li {
  display: inline-block;
  text-align: center;
  margin: 10px;
}

.tabs a {
  display:block;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  color:#fff;
  font-size: 14px;
  font-weight: 700;
  padding:10px 15px;
  border:4px solid #fff;
}

.tabs a:hover {
  color: #34495E;
}

.tabs .active {
  border:4px solid #34495E;
}

.tabgroup div  {

}

.tabgroup p {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 25px;
}

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


.contact-content {
  position: relative;
  z-index: 1;
  padding: 14vh 15px 12vh;
  overflow: hidden;
}

.contact-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url(../img/Gemini_Generated_Image_ydkz16ydkz16ydkz.jpeg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.contact-content::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.32);
}

.contact-content > .container {
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.contact-header h2 {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.contact-header .line-dec {
  width: 60px;
  height: 3px;
  background-color: #34495E;
  margin: 0 auto 18px;
}

.contact-header p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-layout {
  align-items: stretch;
}

.contact-info-panel,
.contact-form-card {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 32px 28px;
}

.contact-info-panel h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.contact-info-intro {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-info-item:last-child {
  padding-bottom: 0;
}

.contact-info-item i {
  color: #34495E;
  font-size: 18px;
  width: 20px;
  margin-top: 2px;
  text-align: center;
}

.contact-info-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #34495E;
  margin-bottom: 4px;
}

.contact-info-value {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}

.contact-form-card .form-field {
  margin-bottom: 20px;
}

.contact-form-card label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

#contact input,
#contact textarea {
  border-radius: 3px;
  padding: 12px 14px;
  font-size: 14px;
  color: #232323;
  background-color: #fff;
  outline: none;
  border: 2px solid transparent;
  box-shadow: none;
  width: 100%;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

#contact input {
  line-height: 1.4;
  height: 46px;
}

#contact textarea {
  min-height: 140px;
  max-height: 220px;
  resize: vertical;
}

#contact input:focus,
#contact textarea:focus {
  border-color: #34495E;
}

.form-actions {
  margin-top: 4px;
}

.contact-submit-btn {
  display: inline-block;
  background-color: #34495E;
  padding: 14px 28px;
  border: 0;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.contact-submit-btn:hover {
  background-color: #2c3e50;
}

.contact-form-feedback {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.contact-form-feedback.hidden {
  display: none;
}

.contact-form-feedback-success {
  background: rgba(40, 167, 69, 0.2);
  color: #d4edda;
  border: 1px solid rgba(40, 167, 69, 0.4);
}

.contact-form-feedback-error {
  background: rgba(220, 53, 69, 0.2);
  color: #f8d7da;
  border: 1px solid rgba(220, 53, 69, 0.4);
}

.articles-loading {
  text-align: center;
  color: #fff;
  padding: 40px 0;
  font-size: 16px;
}

.hidden {
  display: none !important;
}



footer {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: #282b2f;
  padding: 48px 0 36px;
}

.footer-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.footer-top {
  margin-bottom: 24px;
}

.footer-back-top {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 3px;
  background-color: #34495E;
  color: #282b2f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-back-top:hover {
  background-color: #4a6178;
  color: #282b2f;
  text-decoration: none;
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-facebook-link i {
  font-size: 14px;
  color: #4a6178;
}

.footer-facebook-link:hover {
  color: #4a6178;
  text-decoration: none;
}

.footer-contact-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.2px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.4px;
}

.footer-credit {
  margin: 0;
}

.footer-credit a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

footer .primary-button {
  margin-bottom: 30px;
}

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

footer ul li {
  display: inline-block;
  margin: 0px 4px;
}

footer ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background-color: #34495E;
  color: #282b2f;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.5s;
  font-size: 17px;
}

footer ul li a:hover {
  color: #282b2f;
  background-color: #4a6178;
}

footer p {
  font-size: 12px;
  color: #fff;
  margin-top: 15px;
  letter-spacing: 0.5px;
  margin-bottom: 0px;
}

@media (max-width: 767px) {
  footer {
    padding: 40px 0 30px;
  }

  .footer-middle {
    flex-direction: column;
    gap: 8px;
  }
}

footer em {
  color: #4a6178;
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 767px){
  
  .hero-content {
    padding-top: 30vh;
  }

  .baner-content.hero-seeking-final .hero-media .hero-video {
    opacity: 1;
  }

  .baner-content h1 {
    font-size: 40px;
  }

  .baner-content em {
  }

  .baner-content span {
    font-size: 22px;
  }

  .baner-content .primary-button {
    margin-top: 15px;
  }

  .service-content {
    padding-top: 5vh;
    text-align: center;
  }

  .service-content .left-text .line-dec {
    width: 45px;
    height: 3px;
    background-color: #34495E;
    margin: 20px auto 20px auto;
  }

  .service-content .left-text ul {
    text-align: left;
  }

  .service-content .service-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 25px 30px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
  }

  .contact-header {
    margin-bottom: 32px;
  }

  .contact-header h2 {
    font-size: 28px;
  }

  .contact-info-panel {
    margin-bottom: 24px;
  }

  .contact-info-panel,
  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-submit-btn {
    width: 100%;
  }

}

@media (min-width: 768px) and (max-width: 991px){
  .baner-content h1 {
    font-size: 52px;
  }
  .baner-content span {
    font-size: 26px;
    margin-top: -18px;
  }
}

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

/* LIGHT BOX */

body:after {
  content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
  display: none;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
