/* GENERAL HOME STYLES */

.home-section {
  text-align: center;
}

.home-section-title {
  width: 100%;
  text-align: center;
  font-size: 4vh;
  font-weight: bold;
  padding-top: 10vh;
  padding-bottom: 10vh;
}



/* HERO SECTION */

#home-section-main {
  position: relative;
  height: calc(100vw * 0.6643);
  background-color: rgb(197, 198, 200);
}

#home-section-main-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#main-banner-tagline {
  position: absolute;
  width: 50vw;
  top: 38%;
  left: calc(50% - 25vw);
  font-size: 1.5vw;
  font-weight: bold;
  z-index: 10;
}

/* Tagline Fading */

.hide{
  opacity: 0;
  transition: opacity 0.75s ease-in;
}

.reveal {
  opacity: 1;
}

/* End Tagline Fading */


/* Continue Arrows */

#continue-arrows {
  display: none;
}

.arrows {
  position: absolute;
  width: 60px;
  height: 72px;
  top: 44%;
  left: 50%;
  margin-left: -30px;
  bottom: 20px;
}

.arrows path {
  stroke: var(--omnitech-red);
  fill: transparent;
  stroke-width: 2px;  
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite; 
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.arrows path.a1 {
  animation-delay:-1s;
  -webkit-animation-delay:-1s; /* Safari and Chrome */
}

.arrows path.a2 {
  animation-delay:-0.5s;
  -webkit-animation-delay:-0.5s; /* Safari and Chrome */
}

.arrows path.a3 { 
  animation-delay:0s;
  -webkit-animation-delay:0s; /* Safari and Chrome */
}

/* End Continue Arrows */


/* SECTION 2 */

#home-section-2 {
  color: var(--omnitech-black);
}

.solutions-preview-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.solutions-preview-block {
  position: relative;
  width: 260px;
  height: 110px;
  padding: 20px;
  margin: 15px 5px 15px 5px;
  border: none;
  background-color: var(--omnitech-red);
  color: var(--omnitech-white);
  
  transition: 0.25s ease;
}

.solutions-preview-block:hover {
  cursor: pointer;
  
  transform: translateY(-10px);
  transition: 0.25s ease;
}

.solutions-preview-text {
  font-size: 125%;
  font-weight: bold;
  line-height: 150%;
}

.solutions-preview-arrow {
  position: absolute;
  bottom: 10px;
  right: 20px;
}

#explore-solutions-cta-btn {
  width: 40%;
  height: 60px;
  border: none;
  border-radius: 30px;
  background-color: var(--omnitech-black);
  font-family: var(--font-family);
  color: var(--omnitech-white);
  font-weight: bold;
  font-size: 125%;
  margin: 2vh 30% 10vh 30%;
}


.blob {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    180deg,
    rgba(167, 23, 12,0.72) 31.77%,
    #000000 100%
  );
  mix-blend-mode: color-dodge;
  -webkit-animation: move 25s infinite alternate;
          animation: move 25s infinite alternate;
  transition: 1s cubic-bezier(0.07, 0.8, 0.16, 1);
}

@-webkit-keyframes move {
  0% {
    transform: translate(0%, -100%) rotate(-90deg);
    border-radius: 10px;
  }

  50% {
    transform: translate(400%, -150%) rotate(-10deg);
    border-radius: 10px;
  }

  100% {
    transform: translate(180%, -200%) rotate(45deg);
    border-radius: 10px;
  }
}

@keyframes move {
  0% {
    transform: translate(0%, -100%) rotate(-90deg);
    border-radius: 10px;
  }

  50% {
    transform: translate(400%, -150%) rotate(-10deg);
    border-radius: 10px;
  }

  100% {
    transform: translate(180%, -200%) rotate(45deg);
    border-radius: 10px;
  }
}





/* SECTION 3 */
#home-section-3 {
  position: relative;
  color: var(--omnitech-black);
  height: calc(100vw * 0.425);
}

#home-section-3-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#gallery-highlight-image {
  width: 100%;
  height: 100%;
}

#home-section-3 .home-section-title {
  display: block;
  position: absolute;
  width: 50%;
  bottom: 10%;
  left: 5%;
  font-size: 200%;
  border-radius: 25px;
  color: var(--omnitech-white);
  background: linear-gradient(to bottom, rgba(167, 23, 12, 0.7), rgba(167, 23, 12, 0.6));
	backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  z-index: 10;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

#gallery-explore-btn {
  width: 40%;
  height: 50px;
  float: right;
  font-size: 1vw;
  font-weight: bold;
  border: none;
  background-color: var(--omnitech-white);
  color: var(--omnitech-black);
  clip-path: polygon(100vw 0,0 0, 0.8em 50%,0 100%,100vw 100%);

  transition: 0.5s ease;
}

#gallery-explore-btn:hover {
  width: 50%;
 
  transition: 0.5s ease;
}



/* SECTION 4 */
#home-section-4 {
  height: 40vh;
}

#get-started-cta-btn {
  width: 40%;
  height: 60px;
  border: none;
  border-radius: 30px;
  background-color: var(--omnitech-red);
  font-family: var(--font-family);
  color: var(--omnitech-white);
  font-weight: bold;
  font-size: 125%;
  margin-left: 30%;
}






@media screen and (max-width: 810px) {
  .home-section-title {
    width: 90%;
    margin-left: 5%;
    font-size: 3.5vh;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .arrows {
    top: 40%;
    transform: scale(50%);
  }

  @-webkit-keyframes move {
    0% {
      transform: translate(0%, -100%) rotate(-90deg);
      border-radius: 10px;
    }

    50% {
      transform: translate(200%, -150%) rotate(-10deg);
      border-radius: 10px;
    }

    100% {
      transform: translate(90%, -200%) rotate(45deg);
      border-radius: 10px;
    }
  }

  @keyframes move {
    0% {
      transform: translate(0%, -100%) rotate(-90deg);
      border-radius: 10px;
    }

    50% {
      transform: translate(200%, -150%) rotate(-10deg);
      border-radius: 10px;
    }

    100% {
      transform: translate(90%, -200%) rotate(45deg);
      border-radius: 10px;
    }
  }

  #explore-solutions-cta-btn {
    width: 40%;
    height: 60px;
    border: none;
    border-radius: 30px;
    background-color: var(--omnitech-black);
    font-family: var(--font-family);
    color: var(--omnitech-white);
    font-weight: bold;
    font-size: 125%;
    margin: 1vh 30% 7vh 30%;
  }


  #home-section-3 .home-section-title {
    width: 70%;
    left: 0;
    font-size: 140%;
    padding-top: 2vh;
    padding-bottom: 2vh;
  }

  #gallery-explore-btn {
    height: 30px;
    font-size: 1.2vw;
  }

  #gallery-explore-btn:hover {
    width: 50%;
  
    transition: 0.5s ease;
  }


  #home-section-4 {
    height: 30vh;
  }

  #home-section-4 .home-section-title {
    margin-top: 8vh;
  }
}



@media screen and (max-width: 450px) {
  .arrows {
    top: 32.5%;
    transform: scale(25%);
  }

  #explore-solutions-cta-btn {
    width: 90%;
    margin-left: 5%;
  }

  @-webkit-keyframes move {
    0% {
      transform: translate(0%, -500%) rotate(-90deg);
      border-radius: 10px;
    }

    50% {
      transform: translate(30%, -150%) rotate(-10deg);
      border-radius: 10px;
    }

    100% {
      transform: translate(60%, -300%) rotate(45deg);
      border-radius: 10px;
    }
  }

  @keyframes move {
    0% {
      transform: translate(0%, -500%) rotate(-90deg);
      border-radius: 10px;
    }

    50% {
      transform: translate(30%, -150%) rotate(-10deg);
      border-radius: 10px;
    }

    100% {
      transform: translate(60%, -300%) rotate(45deg);
      border-radius: 10px;
    }
  }

  #home-section-3 .home-section-title {
    width: 90%;
    bottom: 0;
    font-size: 90%;
    backdrop-filter: blur(2px);
    color: var(--omnitech-black);
  }

  #gallery-explore-btn {
    width: 60%;
    height: 25px;
    padding-top: 1vh;
    padding-bottom: 1vh;
  }

  #home-section-4 .home-section-title {
    margin-top: 5vh;
  }
  
  #get-started-cta-btn {
    width: 90%;
    margin-left: 5%;
  }
}