.menu a::after {
  background-color: #F36F21;
}

.super-title p,
.statistics-module__inner h2 {
	color: #F36F21;
}

.icon-play::before {
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='26' cy='26' r='25.5' stroke='%23292929'/%3E%3Cg clip-path='url(%23clip0_2014_282)'%3E%3Cpath d='M22 17L36 26L22 35V17Z' stroke='%2300B5A6' stroke-width='4' stroke-linecap='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2014_282'%3E%3Crect width='24' height='24' fill='white' transform='translate(15 14)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.btn,
.social-nav a {
	box-shadow: 4px 4px 0 0 #F36F21;
}

.social-nav a {
	filter: none;
}

.static-banner-module {
	overflow: hidden;
}

.static-banner-module img {
	width: 100%;
}

.static-banner-module .title {
	color: #E5E3D9;
	text-align: center;
	font-feature-settings: 'liga' off, 'clig' off;
	font-family: "Film Noir";
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 28px;
	text-transform: uppercase;
	position: absolute;
    z-index: 6;
    bottom: 280px;
    left: 50%;
	transform: translateX(-50%);
}

.static-banner-module button {
	position: absolute;
    z-index: 6;
    bottom: 108px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 60px;
    background-color: #f36f21;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}	

.static-banner-module button::before {
    content: "";
	height: 80px;
    position: absolute;
    left: 52%;
    transform: translateX(-50%);
    bottom: 100%;
    width: 1px;
    height: 100px;
    background-color: #f36f21;
    pointer-events: none;
    transition: opacity .3s ease;
}

.static-banner-module .icon::before {
    background-color: #e5e3d9;
}

@media (max-width: 991px) {
	.static-banner-module button {
		bottom: 60px;
	}
	
}

@media (max-width: 576px) {
	.static-banner-module img {
		height: 100vh;
	}
	
	.static-banner-module .title {
		bottom: 115px;
		font-size: 18px;
		letter-spacing: 19px;
	}
	
	.static-banner-module button {
		width: 25px;
		height: 39px;
		bottom: 33px;
	}
	
	.static-banner-module button::before {
		height: 33px;
	}
	
	.static-banner-module .icon-arrow-down-light {
		width: 8px;
		height: 20px;
	}
	
	.main {
		margin-top: -25px;
	}
}

@media (min-width: 991px) {
	.logo-slider .swiper-wrapper {
		justify-content: center;
	}
}

	
:root {
    --modal-backdrop: rgba(0,0,0,.5);
    --radius: .3rem;
    --shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    --transition: 0.25s ease;
  }

  /* ===== Backdrop / Container ===== */
  .modal {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: grid;
    place-items: center;
    background: var(--modal-backdrop);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
	overflow-y: scroll;
  }

  /* Show state (fade-in) */
  .modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* While closing (fade-out) */
  .modal.hiding {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* ===== Dialog ===== */
  .modal-dialog {
    max-width: 900px;
	width: 100%;
    margin: 1.75rem;
    transform: translateY(-28px);
    transition: transform .3s ease;
    pointer-events: none; /* clicks pass through unless on content */
  }

  .modal.show .modal-dialog { transform: translateY(0); }
  .modal.hiding .modal-dialog { transform: translateY(-28px); }

  /* ===== Content ===== */
  .modal-content {
    background: #e4e1d7;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: auto; /* accept clicks */
  }

  .modal-header,
  .modal-footer { padding: 1rem; background: #e4e1d7; }
  .modal-header { border-bottom: 1px solid #dee2e6; }
  .modal-footer { border-top: 1px solid #dee2e6; }
  .modal-title { margin: 0; font-size: 1.25rem; }
  .modal-body { padding: 1rem; }

	.modal-header {
		display: flex;
		justify-content: flex-end;
	}
	

  /* ===== Buttons ===== */
  .btn {
    display: inline-block;
    font: inherit;
    line-height: 1.5;
    border-radius: .25rem;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    cursor: pointer;
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
  }
  .btn-secondary {
    background: #6c757d;
    border-color: #6c757d;
  }
  .btn-link {
    background: transparent;
    color: #0d6efd;
    border: 0;
    padding: 0;
    cursor: pointer;
  }
  .btn-close {
    background: transparent;
    border: 0;
	font-size: 40px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    opacity: .5;
    cursor: pointer;
  }
  .btn-close:hover { opacity: .8; }

  /* Small helper for examples */
  .stack { display:flex; gap:.5rem; flex-wrap:wrap; }