
.split-beer {
  position: absolute;
  right: 0;
  display: flex;
  flex-direction: row;
  transform: translate(25%, 10%);
  opacity: .5;
}

.beer {
  max-width: 100%;
  width: 150px;
  border-radius: 0px;
  margin-left: 15px;
  -webkit-box-reflect: below -50% linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.7));
}

.beer img {
  max-width: 100%;
}

.beer:nth-child(2) {
  transform: translateY(-1.5rem);
}



@media (max-width: 800px) {

  .beer {
    width: 80px;
  }

}

@media (max-width: 550px) {

  .split-beer {
    grid-area: split-beer;
    margin: 20px auto;
  }

  .beer {
    width: 100px;
  }

}





.scroll-down-btn {
    display: inline-block;
    text-decoration: none;
  }
  .scroll-down-btn p {
    margin-top: 1.25rem;
    color: white;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .375rem;
    text-indent: .375rem;
    /*animation: colorText 5s ease-out infinite, nudgeText 5s ease-out infinite;*/
  }
  .mouse {
    background: #2c333e linear-gradient(transparent 0%, transparent 50%, white 50%, white 100%);
    position: relative;
    width: 38px;
    height: 65px;
    margin: 0 auto;
    border-radius: 6rem;
    background-size: 100% 200%;
    /*animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;*/
  }
  .mouse:before, .mouse:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .mouse:before {
    width: 34px;
    height: 61px;
    background-color: #121519;
    border-radius: 6rem;
  }
  .mouse:after {
    background-color: white;
    width: .375rem;
    height: .375rem;
    border-radius: 100%;
    /*animation: trackBallSlide 5s linear infinite;*/
  }
  @keyframes colorSlide {
    0% { background-position: 0% 100%; }
    20% { background-position: 0% 0%; }
    21% { background-color: #2c333e; }
    29.99% {
      background-color: white;
      background-position: 0% 0%;
    }
    30% {
      background-color: #2c333e;
      background-position: 0% 100%;
    }
    50% { background-position: 0% 0%; }
    51% { background-color: #2c333e; }
    59% {
      background-color: white;
      background-position: 0% 0%;
    }
    60% {
      background-color: #2c333e;
      background-position: 0% 100%;
    }
    80% { background-position: 0% 0%; }
    81% { background-color: #2c333e; }
    90%, 100% {
      background-color: white;
    }
  }
  @keyframes trackBallSlide {
    0% {
      opacity: 1;
      transform: scale(1) translateY(-20px);
    }
    6% {
      opacity: 1;
      transform: scale(0.9) translateY(5px);
    }
    14% {
      opacity: 0;
      transform: scale(0.4) translateY(40px);
    }
    15%, 19% {
      opacity: 0;
      transform: scale(0.4) translateY(-20px);
    }
    28%, 29.99% {
      opacity: 1;
      transform: scale(1) translateY(-20px);
    }
    30% {
      opacity: 1;
      transform: scale(1) translateY(-20px);
    }
    36% {
      opacity: 1;
      transform: scale(0.9) translateY(5px);
    }
    44% {
      opacity: 0;
      transform: scale(0.4) translateY(40px);
    }
    45%, 49% {
      opacity: 0;
      transform: scale(0.4) translateY(-20px);
    }
    58%, 59.99% {
      opacity: 1;
      transform: scale(1) translateY(-20px);
    }
    60% {
      opacity: 1;
      transform: scale(1) translateY(-20px);
    }
    66% {
      opacity: 1;
      transform: scale(0.9) translateY(5px);
    }
    74% {
      opacity: 0;
      transform: scale(0.4) translateY(40px);
    }
    75%, 79% {
      opacity: 0;
      transform: scale(0.4) translateY(-20px);
    }
    88%, 100% {
      opacity: 1;
      transform: scale(1) translateY(-20px);
    }
  }
  @keyframes nudgeMouse {
    0%, 30%, 60%, 90% { transform: translateY(0); }
    20%, 50%, 80% { transform: translateY(8px); }
  }
  @keyframes nudgeText {
    0%, 30%, 60%, 90% { transform: translateY(0); }
    20%, 50%, 80% { transform: translateY(2px); }
  }
  @keyframes colorText {
    21%, 51%, 81% { color: #2c333e; }
    30%, 60%, 90% { color: white; }
  }



/* Hero Section Styles */
.hero-section {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, #e9e9e9 100%);
    padding: 170px 0 0 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transform: translateY(-150px);
}



.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: .2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="4" height="4" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(94, 94, 94, 0.2)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;

    background-image: url(//abtr.wwiqtest.com/wp-content/themes/test_iq/css/../images/bg-pattern.png);
    background-repeat: repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #20201d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    
/*
    line-height: 1.4em;
    padding: 0.07em 0.6em 0.01em 0.4em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
   color: #152848;
    --g: #0000 .5em,#f8db75 calc(.5em + 1px);
    background: 
      linear-gradient(100deg,var(--g)) left /51% 100%,
      linear-gradient(-75deg,var(--g)) right/51% 100%;
    background-repeat:no-repeat;
   -webkit-mask: 
     linear-gradient(to bottom right,#0000 48%,#000 51%) top/100% .2em,
     linear-gradient(#000 0 0) bottom/100% calc(100% - .2em);
   -webkit-mask-repeat: no-repeat;*/
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    color: #222;
}

.hero-icon {
    margin: 30px 0 10px 0;
    display: inline-block;
    /*animation: float 3s ease-in-out infinite;*/
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    /*-webkit-box-reflect: below -10px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));*/
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 230px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}




/* Slider */
#textSlider.row {
	width: 100% !important;
}
#textSlider div {
	color: #222;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
}

#textSlider div p {
  margin: 0 !important;
  padding: 0 !important;
}

.iamCol {
  text-align: right;
  float: left;
  font-weight: 900;
  font-size:30pt;
  
}

.iamCol p {
  color: #e71f35;
}
.slideCol {
	text-align: left;
    overflow: hidden;
	font-weight: 900;
	font-size:30pt;
	display: block;
	white-space: nowrap;
  height: 100%;
}

.scroller {
   height: 30pt;
   line-height: 30pt;
   overflow: hidden;
}
.scroller .inner { animation: 6s normal infinite running scroll; }
@keyframes scroll {
   0%  	{margin-top: 0px;}
   15% 	{margin-top: 0px;}

   25%  {margin-top: -30pt;}
   40%  {margin-top: -30pt;}
   
   50%  {margin-top: -60pt;}
   65%  {margin-top: -60pt;}

   75%  {margin-top: -90pt;}
   90%  {margin-top: -90pt;}

   100% {margin-top: 0px;}
}


@media (max-width: 800px) {
  .iamCol {

    font-size:20pt;
    
  }
  

  .slideCol {
    font-weight: 900;
    font-size:20pt;
  }
  
  .scroller {
     height: 20pt;
     line-height: 20pt;
  }


  @keyframes scroll {
    0%  	{margin-top: 0px;}
    15% 	{margin-top: 0px;}
 
    25%  {margin-top: -20pt;}
    40%  {margin-top: -20pt;}
    
    50%  {margin-top: -40pt;}
    65%  {margin-top: -40pt;}
 
    75%  {margin-top: -60pt;}
    90%  {margin-top: -60pt;}
 
    100% {margin-top: 0px;}
 }
 

}



.hero-bubbles {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(25%, 10%);
  width: 30%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 1;
}

.hero-bubbles li {
  width: 5vw;
  height: 5vw;
  border-radius: 50%;
  -webkit-filter: drop-shadow(0 7px 1px rgba(0, 0, 0, 0.1));
}

.hero-bubbles li:nth-child(1) {
  transform: translate(20%, -30%);
}

.hero-bubbles li:nth-child(2) {
  transform: translate(130%, -30%);
}

.hero-bubbles li:nth-child(3) {
  transform: translate(10%, -50%);
}

.hero-bubbles li:nth-child(4) {
  transform: translate(100%, -35%);
}

.hero-bubbles a {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 30px;
  /*animation: up-down 2s ease-in-out infinite alternate-reverse both;*/
}

.hero-bubbles a:hover {
}

.hero-bubbles a img {
  width: 100%;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}




@media (max-width: 800px) {
  .hero-bubbles {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    transform: translate(0, 160px) !important;
  }


  .hero-bubbles li {
    transform: translate(0, 0) !important;
    margin-right: 20px;
  }

  .hero-bubbles li {
    width: 9vw;
    height: 9vw;
  }
  


  .hero-bubbles li:last-child {
    margin-right: 0;
  }
}




.parallax {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    z-index: 2;
}

.parallax-layer, .parallax-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.parallax-content {
    pointer-events: none;
}

.parallax-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-layer:nth-child(3) .parallax-content {
    align-items: center;
    justify-content: flex-start;
}

.parallax-layer:nth-child(4) .parallax-content {
    align-items: flex-end;
    justify-content: center;
}

.parallax-layer:nth-child(5) .parallax-content {
    align-items: center;
    justify-content: flex-end;
}

.parallax-layer:nth-child(2) .parallax-content {
    pointer-events: all;
}

.parallax-content .parallax-circle {
    position: relative;
    pointer-events: all;
    border-radius: 50%;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.parallax-layer:nth-child(3) .parallax-circle {
    background: #f9464c;
    width: 28vw;
    height: 28vw;
    transform: translate(10%, -15%);
}

.parallax-layer:nth-child(4) .parallax-circle {
    background: #338e75;
    width: 35vw;
    height: 35vw;
    transform: translate(0, -5%);
}

.parallax-layer:nth-child(5) .parallax-circle {
    background: #f2cd51;
    width: 26vw;
    height: 26vw;
    transform: translate(-15%, -30%);
}

.parallax-content .parallax-circle:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}


.parallax-content .parallax-circle h3 {
  position: absolute;
  top: 25px;
  width: 100%;
  
}

.parallax-content .parallax-circle > .parallax-buttons {
  position: absolute;
  top: 80px;
  right: -20px;
  width: 80%;
  padding-right: 50px;
  border-radius: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.parallax-content .parallax-circle > .parallax-buttons a {
  background: #fff;
  border-radius: 30px;
  padding: 5px 10px;
  font-size: clamp(10px, .9vw, .9vw);
}

.parallax-content .parallax-circle > .parallax-buttons a:first-child {
  margin-right: 10px;
}

.parallax-cover {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 70%;
  background: #fff;
  border-top-left-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
}

.parallax-layer:nth-child(4) .parallax-cover {
  height: 76%;
}

.parallax-cover img {
  object-fit: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-box-reflect: below -10px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
}
.parallax-layer:nth-child(3) .parallax-cover img {
  max-width: 100%;
  max-height: 150px;
  transform: translate(-10%, -15%);
}

.parallax-layer:nth-child(4) .parallax-cover img {
  max-width: 100%;
  max-height: 300px;
  transform: translate(-5%, -15%);
}

.parallax-layer:nth-child(5) .parallax-cover img {
  max-width: 100%;
  max-height: 140px;
  transform: translate(-10%, -10%);
}

.parallax-cover ul {
  padding: 0 10px;
  width: 100%;
  display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
}

.parallax-cover ul li {
  width: 100%;
}

.parallax-cover ul a {
  display: block;
  padding: 2px;
  color: #222;
  text-align: left;
}

.parallax-cover ul a i {
  margin-right: 10px;
}

.parallax-cover ul a:hover {
  border: 1px solid red;
}





.hero-waves {
	display: block;
	width: 100%;
	height: 60px;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 3;
  }


  .hero-waves .wave1 use {
	animation: move-forever1 10s linear infinite;
	animation-delay: -2s;
	fill: #fff;
	opacity: 0.6;
  }
  
  .hero-waves .wave2 use {
	animation: move-forever2 8s linear infinite;
	animation-delay: -2s;
	fill: #fff;
	opacity: 0.4;
  }
  
  .hero-waves .wave3 use {
	animation: move-forever3 6s linear infinite;
	animation-delay: -2s;
	fill: #fff;
  }
  
  @keyframes move-forever1 {
	0% {
	  transform: translate(85px, 0%);
	}
  
	100% {
	  transform: translate(-90px, 0%);
	}
  }
  
  @keyframes move-forever2 {
	0% {
	  transform: translate(-90px, 0%);
	}
  
	100% {
	  transform: translate(85px, 0%);
	}
  }
  
  @keyframes move-forever3 {
	0% {
	  transform: translate(-90px, 0%);
	}
  
	100% {
	  transform: translate(85px, 0%);
	}
  }
  
  @keyframes up-down {
	0% {
	  transform: translateY(10px);
	}
  
	100% {
	  transform: translateY(-10px);
	}
  }