html,
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 16px;
  font-family: 'univers55_roman', Arial, sans-serif;
  line-height: 1.3;
  color: #000000;
}

.btn.focus,
.btn:focus,
.btn:hover,
a:focus,
.btn.active,
.btn:active,
.btn:active,
.btn:active:focus,
a:active:focus,
a:active {
  outline: none;
}
a:hover {
  text-decoration: none;
}
button:focus,
a:focus {
  outline: none;
}
a:active {
  text-decoration: none;
}
img {
  object-fit: cover;
  max-width: 100%;
}
.form-select:focus,
.form-control:focus {
  box-shadow: none;
}
textarea {
  resize: none;
}
p {
  font-family: 'univers45_light', Arial, sans-serif;
  font-size: 20px;
  position: relative;
  z-index: 3;
}
a {
  color: #000;
  text-decoration: none;
  position: relative;
  z-index: 5;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'editors_notelight', Arial, sans-serif;
}

h2 {
  font-size: 72px;
  /* font-size: calc(1.5rem + 5vw); */
  line-height: 1.1;
  position: relative;
  z-index: 3;
}
.btn {
  -webkit-transition: all 0.3s ease-in 0s;
  -moz-transition: all 0.3s ease-in 0s;
  -o-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}
.btn-primary{
  color: #fff;
  border-color: #000;
  background: #000;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
  padding: 15px 50px;
  position: relative;
  z-index: 2;
  letter-spacing: 0.80px;
}
/* .btn-primary::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  border-radius: inherit;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all 500ms ease-in-out;
  opacity: 0;
  animation: flash 100ms ease-in-out;
  transform: scaleX(2) scaleY(2);
}
.btn-primary:hover::before {
  opacity: 1;
  transform: scaleX(1) scaleY(1);
}
@keyframes flash {
  0%{
      opacity: 1;
      transform: translate(45px);
  }
  100%{
      opacity: 0;
      transform: translate(0);
  }
}
*/
.btn-primary:hover{
  color: #fff;
  border-color: #333;
  background: #333;
} 
picture {
	display: block;
  will-change: transform;
  /* position: relative;
  z-index: 3; */
}
picture img{
  width: 100%;
}
svg{
  height: auto;
  max-width: 100%;
}
.revealed-text{
  font-family: 'quisas_svgregular', Arial, sans-serif;
  font-size: 350px;
  line-height: 0.5;
  display: inline-block;
  color: #fff;
  z-index: 2;
}
.revealed-text.big-text{
  font-size: 350px;
}


/* .reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
} */

/* Splitting Word */
[data-words-anim-from-bottom].splitting .word {
  opacity: 0;
  transform: translateY(100%);
}

.splitting {
  --word-center: calc((var(--word-total) - 1)/2);
  --char-center: calc((var(--char-total) - 1)/2);
  --line-center: calc((var(--line-total) - 1)/2);
}

.splitting.word {
  --word-percent: calc(var(--word-index)/var(--word-total));
  --line-percent: calc(var(--line-index)/var(--line-total));
}

.splitting.is-inview .word {
  transition: transform 1s cubic-bezier(0, 0.5, 0.5, 1), opacity 1s linear;
  transition-delay: calc(0.03s*var(--word-index));
  opacity: 1;
  transform: translateY(0);
}

.skrollr-mobile {
  overflow: auto !important;
}

/* Recommended styles for Splitting */
.splitting .word,
.splitting .char {
  display: inline-block;
}

/* Psuedo-element chars */
.splitting .char {
  position: relative;
}

/**
 * Populate the psuedo elements with the character to allow for expanded effects
 * Set to `display: none` by default; just add `display: block` when you want
 * to use the psuedo elements
 */
.splitting .char::before,
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  user-select: none;
}

/* Expanded CSS Variables */
.splitting {
  /* The center word index */
  --word-center: calc((var(--word-total) - 1) / 2);
  /* The center character index */
  --char-center: calc((var(--char-total) - 1) / 2);
  /* The center character index */
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  /* Pecent (0-1) of the word's position */
  --word-percent: calc(var(--word-index) / var(--word-total));
  /* Pecent (0-1) of the line's position */
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  /* Percent (0-1) of the char's position */
  --char-percent: calc(var(--char-index) / var(--char-total));
  /* Offset from center, positive & negative */
  --char-offset: calc(var(--char-index) - var(--char-center));
  /* Absolute distance from center, only positive */
  --distance: calc(
     (var(--char-offset) * var(--char-offset)) / var(--char-center)
  );
  /* Distance from center where -1 is the far left, 0 is center, 1 is far right */
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  /* Distance from center where 1 is far left/far right, 0 is center */
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

.splitting .char {
  animation: slide-in 1.6s cubic-bezier(0.2, 0, 0.1, 1) both;
  animation-delay: calc(30ms * var(--char-index));
  will-change: transform;
  transform-origin: top left;
}

@keyframes slide-in {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* Spliting CSS */
.splitting .word {
  display: inline-block;
}

.splitting .whitespace {
  white-space: inherit;
}

.splitting.visible .word,
.splitting.visible .char {
  /*  animation: slide-in 1.6s cubic-bezier(.2, 0, .1, 1) both;
  animation-delay: calc(30ms * var(--char-index));
  will-change:transform;
  transform-origin: top left;*/
  transition: transform 1s cubic-bezier(0, 0.5, 0.5, 1), opacity 1s linear;
  transition-delay: calc(0.03s*var(--word-index));
  opacity: 1;
  transform: translateY(0);
}

.splitting.visible p,
.splitting.visible li {
  transition: transform 1s cubic-bezier(0, 0.5, 0.5, 1), opacity 1s linear;
  transition-delay: calc(0.1s*var(--item-index));
  opacity: 1;
  transform: translateY(0);
}

.splitting .word {
  opacity: 0;
  transform: translateY(100%);
}

.splitting p,
.splitting li {
  transform: translateY(20px);
  overflow: hidden;
  opacity: 0;
}

@keyframes slide-in {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* Recommended styles for Splitting */
.splitting .word,
.splitting .char {
  display: inline-block;
}

/* Psuedo-element chars */
.splitting .char {
  position: relative;
}

/**
 * Populate the psuedo elements with the character to allow for expanded effects
 * Set to `display: none` by default; just add `display: block` when you want
 * to use the psuedo elements
 */
.splitting .char::before,
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  user-select: none;
}

/* Expanded CSS Variables */
.splitting {
  /* The center word index */
  --word-center: calc((var(--word-total) - 1) / 2);
  /* The center character index */
  --char-center: calc((var(--char-total) - 1) / 2);
  /* The center character index */
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  /* Pecent (0-1) of the word's position */
  --word-percent: calc(var(--word-index) / var(--word-total));
  /* Pecent (0-1) of the line's position */
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  /* Percent (0-1) of the char's position */
  --char-percent: calc(var(--char-index) / var(--char-total));
  /* Offset from center, positive & negative */
  --char-offset: calc(var(--char-index) - var(--char-center));
  /* Absolute distance from center, only positive */
  --distance: calc(
     (var(--char-offset) * var(--char-offset)) / var(--char-center)
  );
  /* Distance from center where -1 is the far left, 0 is center, 1 is far right */
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  /* Distance from center where 1 is far left/far right, 0 is center */
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

.hero-section{
  background-image: url(../images/hero-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 30px 100px;
  min-height:100vh;
  position: relative;
}
.hero-section .hero-section .site-title a{
  font-family: 'univers55_roman', Arial, sans-serif;
  font-size: 24px;
  letter-spacing: -0.20px;
  color: #fff;
}
.hero-bottom{
  position: absolute;
  left: 6%;
  bottom: 30px;
  width: 1200px;
  max-width: 100%;
}
.hero-section h2{
  max-width: 700px;
  position: absolute;
  bottom: 200px;
  left: 6%;
}
.hero-section p{
  color: #fff;
  font-size: 16px;
}
.hero-section p strong{
  font-family: 'univers55_roman', Arial, sans-serif;
  font-weight: normal;
}
.hero-section .site-title svg{
  width: 100px;
}
.hero-section .site-title svg path{
  fill: #fff;
}
.site-header{
  padding-left: 50px;
  padding-right: 50px;
  background: #fff;
  z-index: 10;
}
.site-header.is_stuck{
  /* box-shadow: 0px 2px 7px 0 rgba(0,0,0,0.3); */
}
.site-header .navbar-nav .nav-link{
  color: #000;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 5;
}
.site-header .navbar-nav .nav-link:hover{
  color: #999;
}
.site-header .navbar-brand{
  position: relative;
  z-index: 5;
  width: 90px;
  /* transition: all 0.3s ease-in 0s; */
}
.site-header .navbar-brand svg{
  width: 90px;
  opacity: 0;
  display: none;
}
.site-header.is_stuck .navbar-brand svg{
  opacity: 1;
  display: inline-block
}
.site-header .navbar-brand .word{
  opacity: 1;
  transform: translateY(0);
}
.what-do-section{
  position: relative;
}
.what-do-section .text-block{
  padding-top: 200px;
  padding-bottom: 180px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 730px;
  position: relative;
}
.what-do-section h2{
  margin-bottom: 60px;
}
.what-do-section p{
  padding-left: 10%;
  padding-right: 10%;
}
.what-we-do-bottom{
  margin: 0 8%;
}
.what-we-do-bottom-2{
 
}
.what-do-section .bottom-2col{
  position: relative;
  padding-top: 30px;
  padding-left: 8%;
}
.what-do-section .bottom-2col .bottom-text{
  padding-top: 650px;
}
.what-we-do-bottom-right{
  position: absolute;
  right: -15px;
  top: 175px;
}
.what-do-section .bottom-text h2{
  padding-left: 10%;
  padding-right: 8%;
}
.what-we-do-bottom-right-2{
  margin-top: 150px;
  margin-bottom: 300px;
}
.what-we-do-bottom-right-3{
  position: absolute;
  bottom: 60px;
  right: 43%;
}
.what-we-do-bottom-left{
  position: absolute;
  left: -15px;
  bottom: 45%;
  max-width: 30%;
}
.what-we-do-bottom-left-2{
  position: absolute;
  left: 8%;
  bottom: 35%;
}
.what-do-section .left-block{
  position: relative;
  height: 100%;
}
.what-do-section .text-block .revealed-text{
  transform: rotate(-12deg) translate(0px, 0%);
  position: absolute;
  bottom: 7vw;
  right: -16vw;
}
.what-do-section .text-1{
  transform: rotate(-3deg);
  position: absolute;
  left: 5%;
  top: -1.5%;
}
.what-do-section .left-block .revealed-text{
  transform: rotate(-12deg) translate(0px, 0%);
  position: absolute;
  top: 30%;
  right: -17%;
}
.navbar-toggler{
  border: none;
  padding: 0;
}
.navbar-toggler:focus {
	box-shadow: none;
}
.hellers-section{
  text-align: center;
  position: relative;
  padding-top: 1000px;
  padding-bottom: 200px;
}
.hellers-section .revealed-text.design-text {
	position: absolute;
	transform: rotate(-8deg);
	top: 0vw;
	text-align: left;
	left: 30vw;
}
.hellers-section .revealed-text.live-text {
	position: absolute;
	bottom: 6vw;
	text-align: left;
	right: 3vw;
}
.hellers-section .text-block{
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 300px;
}
.hellers-section .text-block h2{
  margin-bottom: 75px;
}
.hellers-section .hellers-bottom img{
  max-width: 250px;
}
.hellers-1{
  position: absolute;
  right: 0;
  top: 13%;
}
.hellers-2{
  position: absolute;
  left: 15px;
  top: 27%;
}
.hellers-3{
  position: absolute;
  right: 0px;
  bottom:27%;
}
.portfolio-top-section{
  background: #F2EFEC;
  padding: 100px 50px;
}
.portfolio-top-section h2{
  font-size: 130px;
  position: relative;
  z-index: 5;
}
.line-bottom{
  border-bottom: 1px solid #000000;
}
.portfolio-top-section .nav{
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}
.portfolio-top-section .nav-link{
  color: #000;
  letter-spacing: -0.30px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  z-index: 10;
}
.portfolio-top-section .nav-link:hover{
  color: #333;
}

.portfolio-section{
  background: #F2EFEC;
  padding: 100px 50px;
}
.portfolio-logo{
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.portfolio-logo-wrap{
  text-align: center;
}
.banner-section img,
.portfolio-banner img,
.portfolio-swiper .swiper-slide img{
  width: 100%;
}
.portfolio-bottom{
  padding-top: 60px;
  border-bottom:1px solid #000;
  padding-bottom: 100px;
}
.portfolio-bottom p{
  font-size: 16px;
  margin: 0;
}
.portfolio-bottom p strong {
	font-family: 'univers55_roman', Arial, sans-serif;
	font-weight: normal;
}
.icon-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.icon-list li{
  display: inline-block;
  position: relative;
  z-index: 5;
}
.icon-list li + li{
  margin-left: 20px;
}
.portfolio-section .video{
  width: 100%;
}
#slaymakerHouse .portfolio-bottom{
  border: none;
  padding-bottom: 0;
}
.our-story-section{
  padding-left: 8%;
  padding-right: 8%;
  padding-top: 500px;
  padding-bottom: 200px;
  position: relative;
}
.right-title {
	font-size: 150px;
	display: inline-block;
	position: absolute;
	transform: rotate(-90deg) translate(0, -100%);
	left: 0px;
	top: 350px;
	line-height: 1;
}
.our-story-top-img{
  margin-bottom: 100px;
}
.our-story-section .text-block{
  padding-left: 15%;
}
.our-story-section .text-block h2{
  margin-bottom: 100px;
}
.our-story-bottom-img{
  margin-top: 100px;
}
.our-story-left-img{
  margin-top: 560px;
}
.our-story-left-img-2{
  position: absolute;
  left: 40px;
  bottom: 40%;
}
.our-story-section .left-block{
  position: relative;
  height: 100%;
}
.our-story-section .revealed-text{
  /* transform: rotate(-20deg); */
  position: absolute;
  right: 6vw;
  bottom: 30vw;
}
.our-story-section .revealed-text.text-1{
  transform: rotate(-12deg);
  top: -1%;
  left: 20vw;
  right: inherit;
  bottom: inherit;
}
.christopher-section{
  background: #222;
  padding-top: 150px;
  padding-bottom: 150px;
  padding-left: 4%;
  position: relative;
}
.christopher-section .revealed-text{
  color: #222;
  /* font-size: 150px; */
}
.christopher-section .text-1{
  transform: rotate(4deg);
  position: absolute;
  left: 10vw;
  top: 0vw;
}
.christopher-section .text-2{
  transform: rotate(4deg);
  position: absolute;
  left: 12vw;
  top: 17vw;
}
.christopher-section h2 {
	color: #fff;
	font-size: 150px;
	line-height: 1;
	margin-bottom: -25px;
}
.christopher-left-block{
  position: relative;
}
.christopher-left-block .icon-list{
  position: absolute;
  right: 18%;
  bottom: 25px;
}
.christopher-section p{
  color: #fff;
}
.christopher-section .text-block {
	padding-top: 100px;
	padding-right: 37%;
}
.christopher-right{
  margin-right: -15px;
}
.ryan-section{
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
}
.ryan-section .revealed-text{
  transform: rotate(4deg);
  position: absolute;
  left: 51vw;
  top: 15vw;
  /* font-size: 150px; */
}
.ryan-section .left-block{
  height: 100%;
  position: relative;
}
.ryan-section .left-block .revealed-text{
  transform: rotate(-14deg);
  left: 18vw;
  top: -11vw;
}
.ryan-heller-left{
  margin-left: -15px;
}
.ryan-section h2{
  font-size: 150px;
	line-height: 1;
	margin-bottom: -25px;
}
.ryan-right-block{
  position: relative;
}
.ryan-right-block .icon-list{
  position: absolute;
  right: 270px;
  bottom: 25px;
}
.ryan-right-block .btn{
  position: absolute;
  right: 25px;
  bottom: 25px;
}
.ryan-section .text-block{
  padding-top: 100px;
	padding-right: 37%;
}
.ryan-section .text-block .btn{
  display: none;
}
.site-footer {
	padding-left: 50px;
	padding-right: 50px;
	background: #fff;
  overflow: hidden;
}
.site-footer .navbar-brand {
	font-size: 24px;
	letter-spacing: -0.20px;
}
.site-footer .navbar-nav .nav-link {
	color: #000;
	padding-top: 20px;
	padding-bottom: 20px;
}
.site-footer .navbar-nav .nav-link:hover {
	color: #999;
}
.contact-us-section{
  position: relative;
  background-color: #F2EFEC;
  padding-bottom: 300px;
  padding-top: 450px;
  text-align: center;
}
.contact-us-section h2 a{
  border-bottom: 1px solid #000;
}
.contact-us-section p{
  font-size: 16px;
}
.contact-us-section p.bold{
  font-family: 'univers55_roman', Arial, sans-serif;
}
.contact-us-section .address-block{
  margin-top: 130px;
}
.contact-us-section .right-title{
  top: 250px;
  left: 0px;
  transform: rotate(-90deg) translate(0, 0%);
  text-align: left;
}
.contact-us-section .revealed-text{
  transform: rotate(4deg);
  position: absolute;
  right: 5vw;
  bottom: 6vw;
  text-align: right;
  color: #F2EFEC;
}
.cursor {
  z-index: 0;
  position: absolute;
  left:-50px;
  top:-50px;
}
#page.site{
  overflow: hidden;
}
#theMargaretCleveland .portfolio-logo svg{
  width: 390px;
}
#playform .portfolio-logo svg{
  width: 390px;
}
#peggy .portfolio-logo svg{
  width: 270px;
}
#ryanSiroisHeller .portfolio-logo svg{
  width: 450px;
}
#theHettyHouse .portfolio-logo svg{
  width: 220px;
}
#slaymakerHouse .portfolio-logo svg{
  width: 235px;
}



.offcanvas.offcanvas-end.show {
  width: 100%;
  left: 0;
  right: 0;
  max-width: 100vw;
}
.offcanvas.offcanvas-end {

}
.offcanvas svg path{
  fill: #fff;
}
.offcanvas .btn-close{
  --bs-btn-close-bg:none;
  opacity: 1; 
  padding: 0;
  width: 30px;
  margin-right: 10px;
  height: 30px;
}
.offcanvas .btn-close svg{
  width: 55px;
}
.offcanvas .btn-close svg line{
  fill: #fff;
}
.offcanvas.show .navbar-nav .nav-link{
  font-family: 'editors_notelight';
  font-size: 30px;
  text-align: center;
  color: #fff;
  padding-top: 3px;
    padding-bottom: 3px;
}
.offcanvas-header{
  padding-top: 40px;
}
.offcanvas-body{
  text-align: center;
}
.mobile-top-icon{
  display: none;
  margin-top: 60px;
  margin-bottom: 40px;
}
.offcanvas.show .mobile-top-icon{
  display: inline-block;
}


/*---------------------------------------------------------------------*/
/* Responsive Style
/*---------------------------------------------------------------------*/

@media (min-width:1920px){
  .hero-bottom,
  .hero-section h2{
    left: 100px;
  }
}


@media (max-width:1800px){
  .portfolio-top-section h2 {
    font-size: 120px;
  }

}
@media (max-width:1700px){
  .portfolio-top-section h2 {
    font-size: 100px;
  }
  .ryan-section h2,
  .christopher-section h2{
    font-size: 120px;
  }

}
@media (max-width:1600px){
  .contact-us-section{
    padding-left: 10%;
  }
  .contact-us-section .right-title{
    left: -50px;
  }
  .revealed-text{
    font-size: 270px;
  }

}
@media (max-width: 1400px) {
  .ryan-right-block .btn{
    right: 15px;
  }
  .ryan-right-block .icon-list{
    right: 240px;
  }
  .right-title{
    font-size: 120px;
  }
  .hellers-1{
    max-width: 40%;
  }
  .revealed-text {
    font-size: 220px;
  }
  .ryan-section .left-block .revealed-text{
    top: -7vw;
  }
  

}
@media (max-width: 1300px) {
  .hellers-section .text-block{
    max-width: 700px;
  }
  .ryan-section h2,
  .christopher-section h2{
    font-size: 100px;
  }
  .christopher-section h2{
    margin-bottom: -15px;
  }
  .christopher-left-block .icon-list{
    bottom: 15px;
  }
  .contact-us-section{
    padding-top: 350px;
  }



}

@media (max-width: 1200px) {
  h2 {
    font-size: 60px;
  }
  .revealed-text {
    font-size: 170px;
  }
  .hero-section{
    padding-left: 50px;
    padding-right: 50px;
  }
  .what-we-do-bottom {
    margin: 0 5%;
  }
  .what-do-section .bottom-2col{
    padding-left: 5%;
  }
  .site-footer,
  .site-header{
    padding-left: 5%;
    padding-right: 5%;
  }
  .hellers-1{
    max-width: 35%;
  }
  .hellers-2{
    max-width: 25%;
    left: 0;
  }
  .hellers-3{
    max-width: 25%;
    bottom: 20%;
  }
  .portfolio-top-section h2{
    border-bottom: 1px solid #000000;
    padding-bottom: 20px;
    margin-bottom: 25px;
    font-size: 90px;
  }
  .portfolio-top-section .line-bottom{
    border: none;
  }
  .portfolio-top-section,
  .portfolio-section{
    padding: 60px 50px;
  }
  .our-story-section{
    padding-top: 300px;
    padding-bottom: 100px;
  }
  .our-story-section .text-block {
    padding-left: 0;
  }
  .right-title{
    font-size: 100px;
  }
  .ryan-section .text-block,
  .christopher-section .text-block{
    padding-right: 15%;
  }
  .ryan-section h2{
    margin: 0;
    padding-bottom: 100px;
  }
  .ryan-section h2 br{
    display: none;
  }
  .contact-us-section .right-title {
    left: -20px;
  }
  .contact-us-section {
    padding-top: 300px;
  }
  .contact-us-section .address-block {
    margin-top: 80px;
  }
  .what-do-section .text-block .revealed-text{
    bottom: 9vw;
    right: -5vw;
  }
  .what-do-section .left-block .revealed-text{
    /* top: 15%; */
    right: 0%;
  }
  .our-story-section .revealed-text{
    bottom: 17vw;
  }
  /* .christopher-section .revealed-text,
  .ryan-section .revealed-text{
    font-size: 100px;
  } */
  .site-header .navbar-nav .nav-link{
    padding-left: 5px;
    padding-right: 5px;
  }
  .our-story-section .revealed-text.text-1{
    top: 0;
  }



}

@media (max-width: 992px) {
  body{
    font-size: 14px;
  }
  h2 {
    font-size: 46px;
  }
  .revealed-text{
    font-size: 150px;
  }
  .hero-section h2{
    font-size: 52px;
  }
  .what-we-do-bottom-left{
    max-width: 50%;
  }
  .site-header .navbar-nav .nav-link{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .hellers-section{
    padding-top: 500px;
    padding-bottom: 100px
  }
  .hellers-section .text-block{
    padding-bottom: 200px;
    padding-left: 15%;
    padding-right: 15%;
  }
  .hellers-1{
   top:5%;
  }
  .hellers-2{
    top:17%;
  }
  .hellers-section .hellers-bottom img{
    max-width: 30%;
  }
  .portfolio-top-section h2{
    font-size: 68px;
  }
  .portfolio-section{
    padding: 50px 0px;
  }
  .portfolio-bottom p,
  .icon-list{
    margin-bottom: 50px;
  }
  .our-story-top-img {
    margin-left: 23%;
  }
  .our-story-section .text-block h2 {
    margin-bottom: 100px;
    margin-left: 23%;
  }
  .our-story-left-img {
    margin-top: 150px;
    margin-bottom: 175px;
  }
  .our-story-left-img-2{
    left: auto;
    right: 0;
    bottom: 29%;
  }
  .our-story-bottom-img{
    text-align: center;
  }
  .right-title {
    font-size: 80px;
    /* left: -15px; */
  }
  .christopher-section{
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 0;
  }
  .ryan-right-block,
  .christopher-left-block{
    padding-left: 4%;
  }
  .ryan-section h2,
  .christopher-section h2 {
    font-size: 68px;
  }
  .christopher-left-block .icon-list {
    right: 5%;
    margin: 0;
  }
  .christopher-right {
    margin-left: -15px;
    margin-top: 65px;
  }
  .ryan-section .text-block,
  .christopher-section .text-block {
    padding-right: 4%;
    padding-left: 4%;
  }
  .ryan-section{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .ryan-right-block .btn{
    display: none;
  }
  .ryan-section .text-block .btn{
    display: block;
  }
  
  .ryan-right-block .icon-list {
    right: 4%;
  }
  .ryan-section h2 {
    padding-bottom: 75px;
  }
  .ryan-heller-left {
    margin-right: -15px;
  }
  .ryan-section .text-block{
    text-align: center;
  }
  .ryan-section .text-block p{
    text-align: left;
  }
  .ryan-section .text-block .btn{
    margin-top: 75px;
  }
  .site-footer .navbar-brand{
    margin-right: 10px;
  }
  .site-footer{
    padding-left: 0;
    padding-right: 0;
  }
  .site-footer .navbar-nav .nav-link{
    padding-left: 4px;
    padding-right: 4px;
  }
  .contact-us-section {
    padding-left: 20%;
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .contact-us-section .right-title{
    top: 150px;
  }
  .what-do-section .text-block .revealed-text {
    bottom: 10vw;
    right: 6vw;
  }
  .our-story-section .revealed-text {
    bottom: 28vw;
    right: 34vw;
  }
  .ryan-section .revealed-text,
  .christopher-section .revealed-text{
    display: none;
  }




}

@media (max-width: 767px) {
  h2 {
    font-size: 26px;
  }
  p{
    font-size: 14px;
  }
  .btn-primary{
    font-size: 10px;
  }
  .revealed-text {
    display: none !important;
  }
  .hero-section {
    background-image: url(../images/hero-mobile-bg.jpg);
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero-section p{
    font-size: 12px;
  }
  .hero-section h2 {
    font-size: 40px;
    max-width: 90%;
  }
  .what-do-section .text-block{
    padding-top: 150px;
    padding-bottom: 100px;
  }
  .what-do-section h2 {
    margin-bottom: 40px;
  }
  .what-do-section p {
    padding-left: 4%;
    padding-right: 4%;
  }
  .what-do-section .bottom-2col{
    padding-top: 10px;
  }
  .what-we-do-bottom-2 {
    max-width: 56%;
  }
  .what-we-do-bottom-right{
    max-width: 31%;
    top: 75px;
  }
  .what-do-section .bottom-2col .bottom-text {
    padding-top: 70px;
  }
  .what-do-section .bottom-text h2 {
    padding-left: 20%;
  }
  .what-we-do-bottom-right-2{
    max-width: 56%;
    margin-left: auto;
    margin-right:-15px;
    margin-bottom: 100px;
  }
  .what-we-do-bottom-right-3{
    bottom: 15px;
    max-width: 31%;
  }
  .what-we-do-bottom-left-2{
    display: none;
  }
  .what-we-do-bottom-left {
    max-width: 40%;
    bottom: 24%;
  }
  .hellers-section {
    padding-top: 250px;
    padding-bottom: 50px;
  }
  .hellers-bottom{
    max-width: 35%;
    margin-left: auto;
    margin-right: auto;
  }
  .hellers-section .text-block h2 {
    margin-bottom: 30px;
  }
  .hellers-section .text-block{
    padding-bottom: 120px;
  }
  .hellers-1 {
    max-width: 38%;
  }
  .hellers-2 {
    max-width: 29%;
  }
  .portfolio-top-section{
    padding:50px 15px;
  }
  .portfolio-top-section h2 {
    font-size: 40px;
  }
  .portfolio-top-section .nav{
    flex-direction: column;
  }
  .portfolio-top-section .nav-link{
    display: inline-block;
    padding: 3px 0;
  }
  .portfolio-logo{
    max-width: 230px;
    margin-bottom: 50px;
  }
  .portfolio-banner{
    margin-left: -15px;
    margin-right: -15px;
  }
  .portfolio-bottom p{
    font-size: 12px;
  }
  .icon-list li{
    max-width: 30px;
  }
  .icon-list li + li {
    margin-left: 8px;
  }
  .portfolio-bottom{
    padding: 25px 10px;
  }
  .portfolio-bottom .btn{
    width: 100%;
  }
  .portfolio-section .video {
    width: 110%;
    margin-left: -15px;
    margin-right: -15px;
  }
  #peggy .portfolio-logo{
    max-width: 200px;
  }
  #theHettyHouse .portfolio-logo{
    max-width: 180px;
  }
  #slaymakerHouse .portfolio-logo{
    max-width: 180px;
  }
  .our-story-section{
    padding-top: 160px;
    padding-left: 5%;
    padding-right: 5%;
  }
  .right-title {
    font-size: 40px;
    left: 0;
    top: 100px;
  }
  .our-story-top-img {
    margin-bottom: 40px;
  }
  .our-story-section .text-block h2{
    margin-bottom: 80px;
  }
  .our-story-left-img {
    margin-top: 100px;
    margin-left: -42px;
    margin-right: -40px;
  }
  .our-story-left-img-2 {
    bottom: 32%;
    max-width: 40%;
  }
  .our-story-bottom-img img{
    max-width: 50%;
  }
  .our-story-bottom-img {
    margin-top: 60px;
  }
  .ryan-section h2,
  .christopher-section h2 {
    font-size: 40px;
  }
  .christopher-section h2 {
    margin: 0;
  }
  .christopher-left-block .icon-list {
    bottom: 0;
  }
  .christopher-section .text-block{
    padding-top: 75px;
  }
  .ryan-section .text-block .btn{
    width: 100%;
  }
  .banner-bottom img{
    height: 500px;
  }
  .portfolio-banner img,
  .banner-center img{
    height: 400px;
  }
  /* .site-footer .container-fluid{
    display: block;
    text-align: center;
  } */
  .site-footer .navbar-nav{
    flex-wrap: wrap;
  }
  .site-footer .nav-item{
    width: 50%;
  }
  .site-footer .navbar-nav .nav-link {
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 10px;
  }
  .site-footer .navbar-brand {
    margin-right: 10px;
    margin-top: 20px;
    display: inline-block;
    margin-bottom: 20px;
    min-width: 70px;
  }
  .contact-us-section {
    padding-left: 0;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .contact-us-section .right-title {
    position: static;
    transform: rotate(0);
    text-align: center;
    margin-bottom: 50px;
  }
  .contact-us-section .address-block {
    margin-top: 40px;
  }
  .site-footer .nav-item{

  }
  .site-footer .nav-item:nth-child(1) {
    order: 1;
    width: 60%;
  }
  .site-footer .nav-item:nth-child(2) {
    order: 3;
    width: 60%;
  }
  .site-footer .nav-item:nth-child(3) {
    order: 5;
    width: 60%;
  }
  .site-footer .nav-item:nth-child(4) {
    order: 7;
    width: 60%;
  }
  .site-footer .nav-item:nth-child(5) {
    order: 2;
    width: 40%;
  }
  .site-footer .nav-item:nth-child(6) {
    order: 4;
    width: 40%;
  }
  .site-footer .nav-item:nth-child(7) {
    order: 6;
    width: 40%;
  }
  .site-footer .nav-item:nth-child(8) {
    order: 8;
    width: 40%;
  }
  #cursorDefault{
    display: none !important;
  }

}

@media (max-width: 575px) {


}
@media (max-width: 359px) {


}

/* ---------------------------------- */
/* .slide-horizontal {
  z-index: 5;
}
.slide-horizontal .char {
  overflow: hidden;
  color: transparent;
}
.slide-horizontal .char:before,
.slide-horizontal .char:after {
  visibility: visible;
  color: #000;
  transition: transform 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  transition-delay: calc( 0.2s + ( 0.02s * ( var(--char-index)) ) );
}
.slide-horizontal .char:before {
  color: #000;
  transition-delay: calc( 0.02s * ( var(--char-index)) );
}
.slide-horizontal:hover .char:before {
  transition-delay: calc( 0.2s + ( 0.02s * ( var(--char-index)) ) );
}
.slide-horizontal:hover .char:after {
  transition-delay: calc( 0.02s * ( var(--char-index)) );
}
.slide-horizontal .char:before {
  transform: translateX(110%);
}
.slide-horizontal:hover .char:before {
  transform: translateX(0%);
}
.slide-horizontal:hover .char:after {
  transform: translateX(-110%);
}
.slide-horizontal.text-white .char:before,
.slide-horizontal.text-white .char:after {
  color: #fff;
}
.slide-horizontal.text-white .char:before {
  color: #fff;
} */