/*
Zencore Consulting DMCC 2024
*/


/*------------------------------------------------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
------------------------------------------------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #298427;
  --secondary-color:              #2c5a2a;
  --section-bg-color:             #f0f8ff;
  --section-bg1-color:            #000000;
  --section-bg2-color:            #2c5a2a;
  --custom-btn-bg-color:          #2c5a2a;
  --custom-btn-bg-hover-color:    #9dc01f;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #ffffff;    /* --link-hover-color:   #e9fa00; */

  --body-font-family:             'Outfit', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  /* background-color: var(--white-color); */
  background-color: var(--dark-color);
  font-family: var(--body-font-family); 
}


/*------------------------------------------------------------------------------
  TYPOGRAPHY               
------------------------------------------------------------------------------*/
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
  font-weight: bold;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*------------------------------------------------------------------------------
  SECTION               
------------------------------------------------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-padding50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-padding25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.section-padding15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.section-padding10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.section-padding5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.section-padding1 {
  padding-top: 1px;
  padding-bottom: 1px;
}

.section-bg {
  background-color: var(--section-bg-color);
}
.section-bg1 {
  background-color: var(--section-bg1-color);
}

.section-bg2 {
  background-color: var(--section-bg2-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
  
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
  font-weight: bold; 
}

.nav-link.active {
  color: #28a745; /* Green color for the active tab */
  font-weight: bold;  /* Make the active tab text bold */
  /*background-color: #f8f9fa; /* Optional: Add background for the active tab */
  border-radius: 12px; /* Optional: Add a border-radius for a rounded look */
}

/* Remove blue outline when button is clicked */
 .nav-link:focus {
  outline: none;
  box-shadow: none;
}


/*------------------------------------------------------------------------------
  CUSTOM ICON COLOR               
------------------------------------------------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*------------------------------------------------------------------------------
  CUSTOM BUTTON               
------------------------------------------------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*------------------------------------------------------------------------------
  VIDEO - LANDING PAGE             
------------------------------------------------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}






/*------------------------------------------------------------------------------
  SITE HEADER              
---------------------------------------------F---------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*------------------------------------------------------------------------------
  NAVIGATION              
------------------------------------------------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 51px;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*------------------------------------------------------------------------------
  HERO        
------------------------------------------------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}


/*------------------------------------------------------------------------------
  MISSION STATEMENT - SECTION              
------------------------------------------------------------------------------*/
.mission-statement-section {
  background-image: url('../images/leaflines4.jpg');  
  background-color: #090707;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.mission-statement-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.mission-statement-text-wrap {
  position: relative;
}

.mission-statement-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.mission-statement-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
}




/*------------------------------------------------------------------------------
  JOIN US               
------------------------------------------------------------------------------*/
.ticket-section {
  background-image: url('../images/globeone.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}


/*------------------------------------------------------------------------------
  BOXED-IMAGES                 
------------------------------------------------------------------------------*/
.boxed-images-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.boxed-images-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.boxed-images-thumb:hover .boxed-images-hover {
  transform: translateY(0);
  opacity: 1;
}

.boxed-images-hover {
  background-color: var(--primary-color);
  background-color: rgba(248, 203, 46, 0.75);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.boxed-images-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.boxed-images-hover p a {
  color: var(--secondary-color);
}

.boxed-images-hover p a:hover {
  color: var(--white-color);
}

.boxed-images-hover hr {
  margin: 1.5rem 0;
}

.boxed-images-transparent-wrap {
  background-color: rgba(255, 255, 255, 0.2); /* White background with 20% opacity */
  padding: 15px; /* Add some padding to create space around the text */
  border-radius: 0px; /* Optional: Add rounded corners */
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2); /* Optional: Add a slight shadow for depth */
  backdrop-filter: blur(1px); /* Optional: Add a blur effect for a frosted glass look */
}


/*------------------------------------------------------------------------------
  SCHEDULE              
------------------------------------------------------------------------------*/
.schedule-section {
  background-image: url('../images/wall1.jpg');
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
	filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url('../images/ximages/ximage1.jpg');
}

.schedule-table .rock-background-image {
  background-image: url('../images/ximages/ximage2.jpg');
}

.schedule-table .country-background-image {
  background-image: url('../images/ximages/ximages3.jpg');
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}


/*------------------------------------------------------------------------------
  PRICING              
------------------------------------------------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}


/*------------------------------------------------------------------------------
  CONTACT               
------------------------------------------------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}


/*------------------------------------------------------------------------------
  COMPANY-BOXES               
------------------------------------------------------------------------------*/
.company-boxes-form .company-boxes-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.company-boxes-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.company-boxes button[type="submit"]:hover,
.company-boxes button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.company-box-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}


.company-box-section {
  padding-top: 130px;
}

.company-box-overlay + .container {
  position: relative;
}

.company-box-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.company-boxes-form {
  padding: 30px;
}

.company-boxes-custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.company-boxes-custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.company-boxes-custom-form button[type="submit"]:hover,
.company-boxes-custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}





/*------------------------------------------------------------------------------
  CUSTOM FORM               
------------------------------------------------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*------------------------------------------------------------------------------
  SITE FOOTER              
------------------------------------------------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: var(--primary-color);
  /* background-color: var(--secondary-color); */
  /* background-image: url('../images/pixel_sized_green_bot.png'); */
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: var(--primary-color); 
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*------------------------------------------------------------------------------
  SOCIAL ICON               
------------------------------------------------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

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


/*------------------------------------------------------------------------------
  RESPONSIVE STYLES               
------------------------------------------------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  

  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  
  
  


  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}
















/*------------------------------------------------------------------------------
  LANGUAGE SELECTOR               
------------------------------------------------------------------------------*/


.language-selector {
  position: relative;
  display: inline-block;
}

.language-selector img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  cursor: pointer;
}

.language-selector ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  position: absolute;
  background-color: #343a40;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1000;
}

.language-selector:hover ul {
  display: block;
}

.language-selector ul li {
  padding: 5px 10px;
}

.language-selector ul li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.language-selector ul li:hover {
  background-color: #495057;
}

.language-selector ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .language-selector {
  margin-left: auto;
}



.team-member-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 340px; /* Ensures the images have the same height */
}

@media (min-width: 992px) {
  .team-member {
      padding: 0 15px; /* Optional padding to give some space around the boxes */
  }
}


#photoGallery .carousel-inner .carousel-item {
  transition: opacity 1s ease-in-out; /* Smooth crossfade */
}

#photoGallery .carousel-item img {
  max-height: 500px; /* Fixed height for images */
  max-width: 600px;
  /*object-fit: cover;*/ /* Ensures the image covers the entire area */
  width: 25%;
  object-fit: cover;
}

#photoGallery .carousel-inner {
  height: 500px; /* Matches the fixed height of images */
}



/*------------------------------------------------------------------------------
GREEN SUSTAINABILITY NETWORK - BEGIN
------------------------------------------------------------------------------*/
#green-sustainability-network .img-fluid {
  max-height: 100px; /* Ensures all logos have a consistent height */
  object-fit: contain;
}

#green-sustainability-network .section-bg {
  background-color: #f5f5f5; /* Light background to make logos stand out */
}
/*------------------------------------------------------------------------------
GREEN SUSTAINABILITY NETWORK - END
------------------------------------------------------------------------------*/



/*------------------------------------------------------------------------------
  INFORMATION NEXUS
------------------------------------------------------------------------------*/
.information-nexus-box {
  overflow: hidden;
  white-space: nowrap;
  /* background-color: rgba(255, 255, 255, 0.9); */
  background-color: transparent;
  padding: 20px;
  /* border-radius: 10px; */
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); */
  position: relative;
}

.information-nexus-content {
  display: flex;
  transition: transform 0.5s ease;
}

.news-item {
  display: inline-block;
  width: 300px;
  margin-right: 20px;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.news-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.news-item h5, .news-item p {
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}

/* Navigation arrows */
.carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  background-size: 100%, 100%;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.carousel-control-prev-icon {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 8 8"%3E%3Cpath d="M4.354 0.646a.5.5 0 0 0-.708 0L.646 3.646a.5.5 0 0 0 0 .708l3 3a.5.5 0 0 0 .708-.708L1.707 4H8.5a.5.5 0 0 0 0-1H1.707l2.647-2.646a.5.5 0 0 0 0-.708z"/%3E%3C/svg%3E');
}

.carousel-control-next-icon {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 8 8"%3E%3Cpath d="M3.646 0.646a.5.5 0 0 1 .708 0L7.354 3.646a.5.5 0 0 1 0 .708l-3 3a.5.5 0 1 1-.708-.708L6.293 4H-.5a.5.5 0 0 1 0-1h6.793L3.646 1.354a.5.5 0 0 1 0-.708z"/%3E%3C/svg%3E');
}




/*------------------------------------------------------------------------------
  LOGO MARQUEE
------------------------------------------------------------------------------*/
.logo-marquee {
  overflow: hidden;
  position: relative;
  background-color: transparent;
  padding: 20px 0;
}

.logo-marquee-inner {
  display: flex;
  width: calc(200%); /* Set the width to twice the total width of all items */
  animation: scroll 30s linear infinite;
}

.logo-box {
  flex: 0 0 200px; /* Each logo box takes up a fixed width */
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px; /* Height of the logo container */
  transition: transform 0.3s, box-shadow 0.3s;
}

.logo-box img {
  max-height: 100%; /* Ensures the logo takes up the full height of the container */
  max-width: 100%; /* Ensures the logo takes up the full width of the container */
  filter: grayscale(100%); /* Make logos black and white */
  transition: filter 0.3s, transform 0.3s;
  object-fit: contain;
}

.logo-box:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.logo-box:hover img {
  filter: grayscale(0%); /* Add color on hover */
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-150%);
  }
}

/* Optional: Make the animation smoother */
.logo-marquee-inner:hover {
  animation-play-state: paused; /* Pause on hover */
}



/*------------------------------------------------------------------------------
  CAROUSEL VIDEO BACKGROUND this is for Experience the Future of Sustainability
------------------------------------------------------------------------------*/
#video-carousel-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#video-background-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5; /* Adjust the opacity for better readability */
}

#video-carousel-section .container {
  position: relative;
  z-index: 2;
}





/*------------------------------------------------------------------------------
  MEET THE TEAM SECTION
------------------------------------------------------------------------------*/

#meet-the-team-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#meet-video-background-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.90; /*Adjust the opacity for better readability */
}

#meet-the-team-section .container {
  position: relative;
  z-index: 2;
}



/*------------------------------------------------------------------------------
  MISSION STATEMENT VIDEO - SECTION
------------------------------------------------------------------------------*/

/* #mission-statement-video-carousel-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
} */

#mission-statement-video-background-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 60; /* Adjust the opacity for better readability */
}

#mission-statement-background-carousel .container {
  position: relative;
  z-index: 1;
  overflow: hidden;
} 
















.video-75 {
  width: 75%;
}












/*------------------------------------------------------------------------------
  MIDDLE EAST GREEN INITIATIVE
------------------------------------------------------------------------------*/
.me_initiative-nexus-box {
  overflow: hidden;
  white-space: nowrap;
  /* background-color: rgba(255, 255, 255, 0.9); */
  background-color: transparent;
  padding: 1px;
  /* border-radius: 10px; */
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); */
  position: relative;
  align-items: center;
}

.me_initiative-nexus-content {
  display: flex;
  /* transition: transform 0.5s ease; */
  justify-content: center; /* Centers the items horizontally */
  flex-wrap: wrap; /* Allows the items to wrap to the next line if needed */
  gap: 20px; /* Adds some space between the items */
}

.me_initiative_news-item {
  display: inline-block;
  width: 300px;
  margin-right: 20px;
  background-color: #fff;
  opacity: 0.; /* Set initial opacity to 80% */
  transition: opacity 0.3s ease; /* Smooth transition for opacity change */
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
  /*text-align: center;*/ /* Centers the content inside each item */
  max-width: 300px; /* Optional: Set a max width for each item */
  margin-bottom: 20px; /* Optional: Add some space below each item */

}

.me_initiative_news-item:hover {
  opacity: 1; /* Set opacity to 100% on hover */
}

.me_initiative_news-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.me_initiative_news-item h5, .me_initiative_news-item p {
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}

#me_initiative-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#me_initiative_video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5; /* Adjust the opacity for better readability */
}

#me_initiative_video-section .container {
  position: relative;
  z-index: 2;
}


/* Navigation arrows */
/* .carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  background-size: 100%, 100%;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.carousel-control-prev-icon {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 8 8"%3E%3Cpath d="M4.354 0.646a.5.5 0 0 0-.708 0L.646 3.646a.5.5 0 0 0 0 .708l3 3a.5.5 0 0 0 .708-.708L1.707 4H8.5a.5.5 0 0 0 0-1H1.707l2.647-2.646a.5.5 0 0 0 0-.708z"/%3E%3C/svg%3E');
}

.carousel-control-next-icon {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 8 8"%3E%3Cpath d="M3.646 0.646a.5.5 0 0 1 .708 0L7.354 3.646a.5.5 0 0 1 0 .708l-3 3a.5.5 0 1 1-.708-.708L6.293 4H-.5a.5.5 0 0 1 0-1h6.793L3.646 1.354a.5.5 0 0 1 0-.708z"/%3E%3C/svg%3E');
} */





/*------------------------------------------------------------------------------
  PROBLEM AND SOLUTION
------------------------------------------------------------------------------*/
.paragraph-box {
  background-color: rgba(255, 255, 255, 0.8); /* White background with slight transparency */
  padding: 20px; /* Padding inside the box */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add a subtle shadow */
  margin-bottom: 20px; /* Space below the box */
}







/*------------------------------------------------------------------------------
  GLOBAL IMPACT - BEGIN
------------------------------------------------------------------------------*/
/* .me_initiative-nexus-box { */
.globalimpact-box{
  overflow: hidden;
  white-space: nowrap;
  /* background-color: rgba(255, 255, 255, 0.9); */
  background-color: transparent;
  padding: 1px;
  /* border-radius: 10px; */
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); */
  position: relative;
  align-items: center;
}

/* .me_initiative-nexus-content { */
.globalimpact-content{
  display: flex;
  /* transition: transform 0.5s ease; */
  justify-content: center; /* Centers the items horizontally */
  flex-wrap: wrap; /* Allows the items to wrap to the next line if needed */
  gap: 20px; /* Adds some space between the items */
}

/* .me_initiative_news-item { */
.globalimpact-item {
  display: inline-block;
  width: 300px;
  margin-right: 20px;
  background-color: #fff;
  opacity: 0.; /* Set initial opacity to 80% */
  transition: opacity 0.3s ease; /* Smooth transition for opacity change */
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
  /*text-align: center;*/ /* Centers the content inside each item */
  max-width: 300px; /* Optional: Set a max width for each item */
  margin-bottom: 20px; /* Optional: Add some space below each item */

}

/* .me_initiative_news-item:hover { */
.globalimpact:hover{
  opacity: 1; /* Set opacity to 100% on hover */
}

.globalimpact img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* .me_initiative_news-item h5, .me_initiative_news-item p { */
.globalimpact h5, .globalimpact p {
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}

#globalimpact-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#globalimpact_video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5; /* Adjust the opacity for better readability */
}

#globalimpact-section .container {
  position: relative;
  z-index: 2;
}







/*------------------------------------------------------------------------------
  PIVOTAL ROLE - BEGIN
------------------------------------------------------------------------------*/
.pivotalrole-box{
  overflow: hidden;
  white-space: nowrap;
  /* background-color: rgba(255, 255, 255, 0.9); */
  background-color: transparent;
  padding: 1px;
  /* border-radius: 10px; */
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); */
  position: relative;
  align-items: center;
}

.pivotalrole-content{
  display: flex;
  /* transition: transform 0.5s ease; */
  justify-content: center; /* Centers the items horizontally */
  flex-wrap: wrap; /* Allows the items to wrap to the next line if needed */
  gap: 20px; /* Adds some space between the items */
}

.pivotalrole-item {
  display: inline-block;
  width: 300px;
  margin-right: 20px;
  background-color: #fff;
  opacity: 0.; /* Set initial opacity to 80% */
  transition: opacity 0.3s ease; /* Smooth transition for opacity change */
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
  /*text-align: center;*/ /* Centers the content inside each item */
  max-width: 300px; /* Optional: Set a max width for each item */
  margin-bottom: 20px; /* Optional: Add some space below each item */

}

.pivotalrole:hover{
  opacity: 1; /* Set opacity to 100% on hover */
}

.pivotalrole img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.pivotalrole h5, .pivotalrole p {
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}

#pivotalrole-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#pivotalrole_video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5; /* Adjust the opacity for better readability */
}

#pivotalrole-section .container {
  position: relative;
  z-index: 2;
}


/* Polaroid Wrapper */
.polaroid-wrapper {
  display: inline-block;
  padding: 10px;
  background-color: white;
  border: 1px solid #eaeaea;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.5); /* Slight shadow for 3D effect */
  width: 350px; /* Adjust based on your image width */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

/* The Image Inside the Polaroid */
.polaroid-image {
  width: 100%;
  height: auto;
  border: 0;
  display: block;
  object-fit: cover;
}

/* Optional Caption (below the image) */
.polaroid-caption {
  padding-top: 10px;
  font-size: 14px;
  font-family: 'Courier New', Courier, monospace; /* For a vintage feel */
  color: #333;
  letter-spacing: 0.5px;
}

/* Rotated Polaroid for more realistic effect */
.polaroid-wrapper {
  transform: rotate(-2deg); /* Slightly rotate the Polaroid */
}

.polaroid-wrapper:hover {
  transform: rotate(0deg); /* Straighten the Polaroid when hovered */
  transition: transform 0.3s ease-in-out;
}


/* Apply hover effect on gallery images */
.gallery-img {
  width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer; /* This will make the cursor change to a hand pointer */
}

.gallery-img:hover {
  transform: scale(1.20); /* Slightly enlarge the image */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}


/* Hide the lightbox by default */
.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure the lightbox is above other content */
}

/* The image in the lightbox */
.lightbox img {
  max-width: 80%;
  max-height: 80%;
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}