﻿.main-content-wrapper {
  height: calc(100vh - 60px);
  height: calc((var(--vh, 1vh) * 100) - 60px);
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
}


.parallax-wrapper {
  height: calc(100vh - 60px);
  height: calc((var(--vh, 1vh) * 100) - 60px);
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 2px;
}

.section {
  position: relative;
  height: calc(100vh - 60px);
  height: calc((var(--vh, 1vh) * 100) - 60px);
  width: 100vw;
  align-items: center;
  justify-content: center;
  color: black;
  /*display: flex;*/
}
.background-white {
  background-color:white;
  /*background-attachment: fixed;*/
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateZ(-1px) scale(1.5);
  background-size: 100%;
  z-index: -1;
}

.main-image::after {
  background-image: var(--img--url);
  /*background-attachment: fixed;*/
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-row {
  height: calc((var(--vh, 1vh) * 100) - 60px);
}