@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

@font-face {
  font-family: Bebas;
  src: url('../fonts/BebasKai-Regular.otf');
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'PreisicavLt';
  src: url('../../global/fonts/PresicavLt-Regular.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  
}
@font-face {
  font-family: 'PresicavRg';
  src: url('../../global/fonts/PresicavRg-Regular.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

html,
body {
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #000;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 200;
}
.cs-heading-1,.cs-heading-2,.cs-paragraph-details {
  font-family: "Assistant", sans-serif;
  margin-top: 0;
}

/* Hide desktop menu on mobile, show on md+ */
.d-none { display: none !important; }
@media (min-width: 768px) {
  .d-md-block { display: block !important; }
  .d-md-none { display: none !important; }
}
@media (max-width: 767.98px) {
  .d-md-block { display: none !important; }
  .d-md-none { display: block !important; }
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  /* transform: translateX(-50%); */
  z-index: 1101;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:active {
  background: #444;
}
.menu-icon {
  line-height: 1;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  z-index: 1200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 20, 20, 0.96);
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}
.mobile-menu-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mobile-menu-content {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}
.mobile-menu-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2;
}
.c-nav-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 120px;
}
.c-nav-mobile li {
  margin: 32px 0;
}
.c-nav-mobile .c-nav-link {
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.c-nav-mobile .c-nav-link:hover {
  color: #f9b233;
}

a {
  text-decoration: none;
  color: #fff;
}

.w-25 { width: 25%; }
.w-33 { width: 33.33333333%; }
.w-50 { width: 50%; }
.w-60 { width: 60%; }
.w-75 { width: 75%; }
.w-100 { width: 100%; }

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

.d-flex {
  display: flex;
}
.d-flex-col {
  display: flex;
  flex-direction: column;
}

.c-btn {
  width: 12rem;
}

.btn {
  border: 1.5px solid #fff;
  border-radius: 0.75rem;
  padding: 0.6rem 1.25rem;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  color: #000;
  background: #fff;
}

.wrapper {
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 300px;
  scrollbar-width: none;
  margin-bottom: 0;
  margin-top: 0;
}

.parallax__group {
  position: relative;
  height: 100vh;
  width: 100%;
  transform-style: preserve-3d;
}

.parallax__layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sky {
  background: url('../img/sky.png') no-repeat center;
  background-size: cover;
  transform: translateZ(-600px) scale(3);
  z-index: 1;
}

.bushes {
  background: url('../img/bushes.png') no-repeat center;
  background-size: cover;
  transform: translateZ(-525px) scale(2.75);
  z-index: 2;
}

.water {
  background: url('../img/water.png') no-repeat center;
  background-size: cover;
  transform: translateZ(-400px) scale(2.33333333);
  z-index: 3;
}

.people1 {
  background: url('../img/people1.png') no-repeat center;
  background-size: cover;
  transform: translateZ(-250px) scale(1.833333333);
  z-index: 4;
}

.people2 {
  background: url('../img/people2.png') no-repeat center;
  background-size: cover;
  transform: translateZ(-125px) scale(1.4167);
  z-index: 5;
}

.people3 {
  background: url('../img/people3.png') no-repeat center;
  background-size: cover;
  transform: translateZ(0) scale(1);
  z-index: 6;
}

.hero-text {
  background: linear-gradient(
    rgba(105, 211, 252, 0.25) 0%,
    rgba(255, 116, 161, 0.25) 86%,
    rgba(1, 0, 0, 0.25) 100%
  );
  background-size: cover;
  transform: translateZ(0) scale(1);
  z-index: 7;
}

.hero-text h2 {
  font-size: 1.25rem;
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
}

.hero-text ul {
  font-size: 0.75rem;
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
}

.hero-text ul li {
  margin-left: 2.5rem;
  list-style-type: none;
  float: left;
  visibility: hidden;
}

.hero-text ul li:nth-of-type(3) {
  visibility: visible;
}

.year-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 17rem;
  height: 25rem;
}

.year-container h1 {
  font-family: Bebas, sans-serif;
  font-weight: 400;
  position: absolute;
  font-size: 12.5rem;
}

.year-container h1:nth-of-type(1) {
  top: 10%;
}

.year-container h1:nth-of-type(2) {
  left: 30%;
  bottom: 0;
}

.year-container h1:nth-of-type(3) {
  top: 0;
  right: 30%;
}

.year-container h1:nth-of-type(4) {
  right: 0;
  bottom: 20%;
}

.social-container {
  position: absolute;
  left: 2.5rem;
  bottom: 2.5rem;
}

.social-container i {
  font-size: 1.25rem;
  margin-right: 0.25rem;
}

.info-container {
  background: #000;
  transform: translateZ(0) scale(1);
  z-index: 8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.info-container img {
  width: 75%;
  margin-bottom: 2.5rem;
  filter: saturate(0.65);
}

.info-container h2,
.info-container p {
  margin-bottom: 1rem;
}

.text-container p:nth-of-type(1) {
  font-weight: 400;
  font-size: 0.75rem;
  margin: 1rem 2.5rem;
}

.text-container p:nth-of-type(2) {
  font-size: 0.6rem;
  margin-bottom: 3rem;
}
.hero-container {
  background: url('../img/8.jpg') no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
.service-1 {
  background: url('../img/6.jpg') no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
.service-2 {
  background: url('../img/7.jpg') no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

.design-separator-bottom {
    position: absolute;
    height: 100px;
    bottom: -1px;
    left: 0;
    overflow: hidden;
    right: 0;
    z-index: 1;
    height: 150px;
}
.design-separator-top svg {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    width: 100.2%;
    height: 100%;
    display: block;
    fill: #000;
}
.design-separator-bottom svg {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100.2%;
    height: 100%;
    display: block;
    fill: #000;
}

.design-separator-top {
    position: absolute;
    height: 100px;
    top: -1px;
    left: 0;
    overflow: hidden;
    right: 0;
    z-index: 1;
    height: 150px;
}

.cross-section-wrap {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 192px;
    padding-right: 0px;
    padding-bottom: 220px;
    padding-left: 0px;    
}

.cross-section-wrap {
    align-content: center;
}

.cross-section-wrap {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: var(--global-row-gutter-md, 2rem) var(--global-row-gutter-md, 2rem);
    grid-auto-rows: minmax(min-content, max-content);
    z-index: 1;
    position: relative;
}
.service-2 .cross-section-wrap {
    grid-template-columns: 40% 60%;
}

.cs-inner-column {
    display: flex;
    flex-direction: column;
    z-index: 1;
    min-width: 0;
    min-height: 0;
    justify-content: center;
}

.cs-inner-column {
    display: flex;
    flex-direction: column;
    z-index: 1;
    min-width: 0;
    min-height: 0;
}
.cs-inside-inner-col {
    flex-direction: column;
    border: 0 solid rgba(0, 0, 0, 0);
    position: relative;
    transition: all .3s ease;
    padding: 20px;
    margin: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    gap: 20px;
}

.cs-heading-1 {
    text-align: left;
    font-size: 4em;
    font-family: "Assistant", sans-serif;
    line-height: 1.3em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 400;
}
.cs-heading-2 {
    text-align: left;
    font-size: 2em;
    line-height: 1em;
    font-weight: 200;
    font-family: "Assistant", sans-serif;
    color: #ffffff;
    font-weight: 300;
}
.cs-paragraph-details {
    text-align: left;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    /* margin-bottom: 20px; */
    font-size: 1rem;
}
.main-heading {
  position: absolute;
  top: 46%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  font-family: "PreisicavLt", sans-serif !important;
  font-size: 4rem;
  text-align: center;
  color: #fff;
}

.footer {    
  background: var(--allbg1);
}
.copy {    
    background: var(--allbg2);
}

/* .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;  
  color: #fff;
  padding: 20px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  text-align: left;
}

.footer-column.center {
  text-align: center;
}

.footer-column.right {
  text-align: right;
  position: relative;
}

.footer-column a {
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
  font-size: 18px;
}

.footer-column a:hover {
  color: #ccc;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 10;
  padding: 10px 20px;
}
.header .c-nav {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.header .c-nav li {
  list-style: none;
  margin: 0 30px;
}
.header .c-nav li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
} */

.firework-link {
  position: relative;      
  text-decoration: none;  
  overflow: hidden;
}

.firework-link::before,
.firework-link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: transparent;
  border-radius: 50%;
  box-shadow:
    0 0 #ff3d00,
    0 0 #ff3d00,
    0 0 #ff3d00,
    0 0 #ff3d00,
    0 0 #ff3d00,
    0 0 #ff3d00,
    0 0 #ff3d00,
    0 0 #ff3d00;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.firework-link:hover::before,
.firework-link:hover::after {
  animation: explode 0.6s ease-out forwards;
}

.navbar-expand-xl .navbar-nav .nav-link {
  font-weight: 700;
  text-transform: uppercase !important;
  letter-spacing: 1px;
  font-family: 'Roboto Condensed', sans-serif !important;
}

@keyframes explode {
  0% {
    opacity: 1;
    box-shadow:
      0 0 #ff3d00,
      0 0 #ff3d00,
      0 0 #ff3d00,
      0 0 #ff3d00,
      0 0 #ff3d00,
      0 0 #ff3d00,
      0 0 #ff3d00,
      0 0 #ff3d00;
  }
  100% {
    opacity: 0;
    box-shadow:
      -30px -30px #ff3d00,
      30px -30px #ff3d00,
      -30px 30px #ff3d00,
      30px 30px #ff3d00,
      -40px 0 #ff3d00,
      40px 0 #ff3d00,
      0 -40px #ff3d00,
      0 40px #ff3d00;
  }
}



@media (min-width: 760px) {
  .hero-text ul li {
    visibility: visible;
  }

  .info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 3rem;
    align-items: center;
    text-align: left;
  }

  .info-container img {
    justify-self: end;
    width: 75%;
  }

  .text-container p:nth-of-type(1) {
    font-size: 1rem;
    width: 75%;
    margin: 1rem 0;
  }

  .text-container p:nth-of-type(1) {
    font-size: 0.86rem;
  }

}

@media (min-width: 1126px) {
  .sky,
  .bushes,
  .water,
  .people1,
  .people2,
  .people3,
  .hero-text {
    background-size: contain;
  }
}

@media only screen and (max-width: 600px) {
  .cross-section-wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-flow: wrap;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 192px;
  }
  .footer-column {
    text-align: center;
  }
  .footer-column.right {
    text-align: center;
  }
}
