/******************************************************************
	
	
	@ Item          Legendary // One Page Parallax HTML Template 
	@ Author		Avanzare
	@ Website		http://themeforest.net/user/avanzare 
	

 ******************************************************************/

/******************************************************************


	------------------------
	-- TABLE OF CONTENTS --
	------------------------
	
	--  1. Foundation
	--  2. Hero-1
	--  3. Hero-2
	--  4. Hero-3
	--  5. Hero-4
	--  6. Hero-5 [ Slider-Revolution ]
	--  7. Error-404
 
 
 ******************************************************************/

/** 1. FOUNDATION
*******************************************************************/

.hero {
  position: relative;
  z-index: 1;

  overflow: hidden;

  width: 100%;
  height: 100%;
}

.hero.half-height {
  height: 50%;
}

.hero .front-content {
  position: absolute;
  z-index: 5;

  width: 100%;
  height: 100%;
}

.hero .front-content .cycle-wrapper {
  overflow: hidden;
}

.hero .front-content .container-mid {
  text-align: center;

  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.hero .front-content .controls {
  display: none;
}

.hero .front-content .controls .show {
  display: block;
}

.hero .front-content .controls .volume-button,
.hero .front-content .controls .pause-button {
  font-size: 20px;

  position: absolute;
  z-index: 101;
  bottom: 20px;

  width: 20px;

  cursor: pointer;

  color: #fff;
}

.hero .front-content .controls .volume-button {
  left: 66px;
}

.hero .front-content .controls .pause-button {
  left: 26px;
}

.hero .background-content {
  position: absolute;
  z-index: -10;

  overflow: hidden;

  width: 100%;
  height: 100%;
}

.hero .background-content.page-enter-animated {
  -webkit-transition: all 0.8s cubic-bezier(0.5, 0.34, 0.06, 0.82);
  transition: all 0.8s cubic-bezier(0.5, 0.34, 0.06, 0.82);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.hero .background-content.page-enter-animated.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.hero .background-content .level-1,
.hero .background-content .level-2 {
  position: absolute;

  width: 100%;
  height: 100%;
}

.hero .background-content .level-1 {
  z-index: 2;
  top: 50%;
  left: 50%;

  width: 110%;
  height: 110%;

  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero .background-content .level-2 {
  z-index: 1;

  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.hero .background-content .bg-overlay,
.hero .background-content .bg-pattern,
.hero .background-content .bg-image,
.hero .background-content .bg-video,
.hero .background-content .bg-color,
.hero .background-content .glitch-img,
.hero .background-content #canvas {
  position: absolute !important;

  width: 100%;
  height: 100% !important;
}

.hero .background-content .bg-color {
  z-index: -1;

  opacity: 0;
  background: rgb(175, 153, 127);
}

.hero .background-content .glitch-img {
  background-size: cover;
}

.hero .background-content #canvas {
  top: 100%;

  -webkit-transition: all 0.8s cubic-bezier(0.5, 0.34, 0.06, 0.82) 1s;
  transition: all 0.8s cubic-bezier(0.5, 0.34, 0.06, 0.82) 1s;

  opacity: 0;
}

.hero .background-content.page-enter-animated.show #canvas {
  top: 0;

  opacity: 1;
}

.hero .background-content #canvas canvas {
  position: absolute !important;
}

.hero .background-content .bg-pattern {
  opacity: 0;
  background: url(../images/bg-pattern.png);
  background-repeat: repeat;
}

.hero .background-content {
  position: absolute;
  z-index: -10;

  width: 100%;
  height: 100%;

  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

@-webkit-keyframes mousewheelScroll {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}

@keyframes mousewheelScroll {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}

/** 2. HERO-1
*******************************************************************/

.hero-1 .front-content h1 {
  font-family: "Dosis", sans-serif;
  font-size: 120px;
  font-weight: 500;
  line-height: 1.16em;

  display: inline-block;

  margin-bottom: 0;
  padding: 20px 0;

  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-1 .front-content p {
  font-size: 24px;

  margin-bottom: 20px;

  letter-spacing: 0.14em;
}

.hero-1 .front-content .scroll-down {
  position: absolute;
  bottom: 42px;
  left: 50%;

  width: 23px;
  height: 34px;

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);

  border-radius: 25px;
  box-shadow: inset 0 0 0 2px #fff;
}

.hero-1 .front-content .scroll-down:before {
  position: absolute;
  top: 9px;
  left: 50%;

  width: 3px;
  height: 6px;
  margin-left: -1.5px;

  content: "";
  -webkit-animation: mousewheelScroll 1.6s infinite;
  animation: mousewheelScroll 1.6s infinite;

  border-radius: 10px;
  background: #fff;
}

/** PAGE ENTER ANIMATION **/

.hero-1 .front-content.page-enter-animated h1 {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.hero-1 .front-content.page-enter-animated.show h1 {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) !important;

  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.hero-1 .front-content.page-enter-animated p {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.hero-1 .front-content.page-enter-animated.show p {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.3s !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.3s !important;

  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.hero-1 .front-content.page-enter-animated .scroll-down {
  -webkit-transform: translate(-50%, 80px) !important;
  transform: translate(-50%, 80px) !important;

  opacity: 0 !important;
}

.hero-1 .front-content.page-enter-animated.show .scroll-down {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.6s !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.6s !important;

  -webkit-transform: translate(-50%, 0) !important;
  transform: translate(-50%, 0) !important;

  opacity: 1 !important;
}

/** MEDIA QUERIES  **/

@media (max-width: 994px) {
  .hero-1 .front-content h1 {
    font-size: 70px;
    line-height: 1em;

    padding: 0 0;
  }

  .hero-1 .front-content p {
    font-size: 20px;

    margin-bottom: 0;

    letter-spacing: 0.12em;
  }

  .hero-1 .front-content .scroll-down {
    bottom: 24px;

    width: 21px;
    height: 30px;
  }

  .hero-1 .front-content .scroll-down:before {
    top: 8px;

    height: 5px;
  }
}

@media (max-width: 480px) {
  .hero-1 .front-content h1 {
    font-size: 50px;

    margin-bottom: 10px;

    letter-spacing: 0.03em;
  }

  .hero-1 .front-content p {
    font-size: 14px;

    letter-spacing: 0.06em;
  }

  .hero-1 .front-content .scroll-down {
    bottom: 16px;

    width: 20px;
    height: 29px;
  }
}

/** 3. HERO-2
*******************************************************************/

.hero-2 .front-content img.logo {
  max-height: 300px;
  margin: 20px auto 4px auto;
}

.hero-2 .front-content p {
  font-size: 24px;

  margin-bottom: 40px;

  letter-spacing: 0.14em;
}

.hero-2 .front-content .scroll-down {
  position: absolute;
  bottom: 42px;
  left: 50%;

  width: 23px;
  height: 34px;

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);

  border-radius: 25px;
  box-shadow: inset 0 0 0 2px #b5838d;
}

.hero-2 .front-content .scroll-down:before {
  position: absolute;
  top: 9px;
  left: 50%;

  width: 3px;
  height: 6px;
  margin-left: -1.5px;

  content: "";
  -webkit-animation: mousewheelScroll 1.6s infinite;
  animation: mousewheelScroll 1.6s infinite;

  border-radius: 10px;
  background: #b5838d;
}

/** PAGE ENTER ANIMATION **/

.hero-2 .front-content.page-enter-animated img.logo {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.hero-2 .front-content.page-enter-animated.show img.logo {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.hero-2 .front-content.page-enter-animated p {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.hero-2 .front-content.page-enter-animated.show p {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.3s !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.3s !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.hero-2 .front-content.page-enter-animated .scroll-down {
  -webkit-transform: translate(-50%, 80px) !important;
  transform: translate(-50%, 80px) !important;

  opacity: 0 !important;
}

.hero-2 .front-content.page-enter-animated.show .scroll-down {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.6s !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.6s !important;
  -webkit-transform: translate(-50%, 0) !important;
  transform: translate(-50%, 0) !important;

  opacity: 1 !important;
}

/** MEDIA QUERIES  **/

@media (max-width: 994px) {
  .hero-2 .front-content img.logo {
    padding: 0 80px;
  }

  .hero-2 .front-content p {
    font-size: 20px;

    margin-bottom: 20px;

    letter-spacing: 0.12em;
  }

  .hero-2 .front-content .scroll-down {
    bottom: 24px;

    width: 21px;
    height: 30px;
  }

  .hero-2 .front-content .scroll-down:before {
    top: 8px;

    height: 5px;
  }
}

@media (max-width: 480px) {
  .hero-2 .front-content img.logo {
    padding: 0 20px;
  }

  .hero-2 .front-content p {
    font-size: 14px;

    letter-spacing: 0.06em;
  }

  .hero-2 .front-content .scroll-down {
    bottom: 16px;

    width: 20px;
    height: 29px;
  }
}

/** 4. HERO-3
*******************************************************************/

.hero-3 .front-content .container-mid #cycle {
  width: 100%;
  margin: 18px auto;

  text-align: center;
}

.hero-3 .front-content .container-mid #cycle .slide {
  width: 100%;
  margin: 0 auto;

  text-align: center;
}

.hero-3 .front-content h1 {
  font-family: "Dosis", sans-serif;
  font-size: 120px;
  font-weight: 500;
  line-height: 1.16em;

  display: inline-block;

  margin-bottom: 0;
  padding: 0;

  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-3 .front-content p {
  font-size: 24px;

  display: inline-block;

  letter-spacing: 0.14em;
}

.hero-3 .front-content .cycle-pagination {
  display: inline-block;

  margin-left: 30px;
}

.hero-3 .front-content .cycle-pagination span {
  position: relative;

  display: inline-block;

  margin: 0 5px;
  padding: 8px;

  cursor: pointer;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  vertical-align: middle;

  opacity: 0.5;
  color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0);
}

.hero-3 .front-content .cycle-pagination span::after {
  position: absolute;

  width: 8px;
  height: 8px;

  content: "";
  cursor: pointer;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
}

.hero-3 .front-content .cycle-pagination span.cycle-pager-active {
  opacity: 1;
  border: 2px solid rgba(255, 255, 255, 1);
}

.hero-3 .front-content .cycle-pagination span.cycle-pager-active::after {
  opacity: 1;
}

.hero-3 .front-content .scroll-down {
  position: absolute;
  bottom: 42px;
  left: 50%;

  width: 23px;
  height: 34px;

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);

  border-radius: 25px;
  box-shadow: inset 0 0 0 2px #fff;
}

.hero-3 .front-content .scroll-down:before {
  position: absolute;
  top: 9px;
  left: 50%;

  width: 3px;
  height: 6px;
  margin-left: -1.5px;

  content: "";
  -webkit-animation: mousewheelScroll 1.6s infinite;
  animation: mousewheelScroll 1.6s infinite;

  border-radius: 10px;
  background: #fff;
}

/** PAGE ENTER ANIMATION **/

.hero-3 .front-content.page-enter-animated .cycle-wrapper {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.hero-3 .front-content.page-enter-animated.show .cycle-wrapper {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.hero-3 .front-content.page-enter-animated p {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.hero-3 .front-content.page-enter-animated.show p {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.3s !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.3s !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.hero-3 .front-content.page-enter-animated .cycle-pagination {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.hero-3 .front-content.page-enter-animated.show .cycle-pagination {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.6s !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.6s !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.hero-3 .front-content.page-enter-animated .scroll-down {
  -webkit-transform: translate(-50%, 80px) !important;
  transform: translate(-50%, 80px) !important;

  opacity: 0 !important;
}

.hero-3 .front-content.page-enter-animated.show .scroll-down {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.9s !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.9s !important;
  -webkit-transform: translate(-50%, 0) !important;
  transform: translate(-50%, 0) !important;

  opacity: 1 !important;
}

/** MEDIA QUERIES  **/

@media (max-width: 994px) {
  .hero-3 .front-content h1 {
    font-size: 70px;
    line-height: 1em;

    padding: 0 0;
  }

  .hero-3 .front-content p {
    font-size: 20px;

    margin-bottom: 0;

    letter-spacing: 0.12em;
  }

  .hero-3 .front-content .scroll-down {
    bottom: 24px;

    width: 21px;
    height: 30px;
  }

  .hero-3 .front-content .scroll-down:before {
    top: 8px;

    height: 5px;
  }

  .hero-3 .front-content .cycle-pagination {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .hero-3 .front-content h1 {
    font-size: 45px;

    letter-spacing: 0.03em;
  }

  .hero-3 .front-content p {
    font-size: 14px;

    letter-spacing: 0.06em;
  }

  .hero-3 .front-content .scroll-down {
    bottom: 16px;

    width: 20px;
    height: 29px;
  }

  .hero-3 .front-content .cycle-pagination {
    margin-left: 10px;
  }

  .hero-3 .front-content .cycle-pagination span {
    margin: 0 4px;
    padding: 6px;
  }

  .hero-3 .front-content .cycle-pagination span::after {
    width: 5px;
    height: 5px;
  }
}

/** 5. HERO-4
*******************************************************************/

.hero-4 .front-content .container-mid #cycle {
  width: 100%;
  margin: 10px auto;

  text-align: center;
}

.hero-4 .front-content .container-mid #cycle .slide {
  width: 100%;
  margin: 0 auto;

  text-align: center;
}

.hero-4 .front-content img.text-image {
  display: block;

  max-height: 200px;
  margin: 0 auto;
}

.hero-4 .front-content p {
  font-size: 24px;

  display: inline-block;

  letter-spacing: 0.14em;
}

.hero-4 .front-content .cycle-pagination {
  display: inline-block;

  margin-left: 30px;
}

.hero-4 .front-content .cycle-pagination span {
  position: relative;

  display: inline-block;

  width: 13px;
  height: 13px;
  margin: 0 5px;
  padding: 8px;

  cursor: pointer;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  vertical-align: middle;

  opacity: 0.5;
  color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0);
}

.hero-4 .front-content .cycle-pagination span::after {
  position: absolute;

  width: 8px;
  height: 8px;

  content: "";
  cursor: pointer;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
}

.hero-4 .front-content .cycle-pagination span.cycle-pager-active {
  opacity: 1;
  border: 2px solid rgba(255, 255, 255, 1);
}

.hero-4 .front-content .cycle-pagination span.cycle-pager-active::after {
  opacity: 1;
}

.hero-4 .front-content .scroll-down {
  position: absolute;
  bottom: 42px;
  left: 50%;

  width: 23px;
  height: 34px;

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);

  border-radius: 25px;
  box-shadow: inset 0 0 0 2px #fff;
}

.hero-4 .front-content .scroll-down:before {
  position: absolute;
  top: 9px;
  left: 50%;

  width: 3px;
  height: 6px;
  margin-left: -1.5px;

  content: "";

  -webkit-animation: mousewheelScroll 1.6s infinite;
  animation: mousewheelScroll 1.6s infinite;

  border-radius: 10px;
  background: #fff;
}

/** PAGE ENTER ANIMATION **/

.hero-4 .front-content.page-enter-animated .cycle-wrapper {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.hero-4 .front-content.page-enter-animated.show .cycle-wrapper {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.hero-4 .front-content.page-enter-animated p {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.hero-4 .front-content.page-enter-animated.show p {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.3s !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.3s !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.hero-4 .front-content.page-enter-animated .cycle-pagination {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.hero-4 .front-content.page-enter-animated.show .cycle-pagination {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.6s !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.6s !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.hero-4 .front-content.page-enter-animated .scroll-down {
  -webkit-transform: translate(-50%, 80px) !important;
  transform: translate(-50%, 80px) !important;

  opacity: 0 !important;
}

.hero-4 .front-content.page-enter-animated.show .scroll-down {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.9s !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.9s !important;
  -webkit-transform: translate(-50%, 0) !important;
  transform: translate(-50%, 0) !important;

  opacity: 1 !important;
}

/** MEDIA QUERIES  **/

@media (max-width: 994px) {
  .hero-4 .front-content img.text-image {
    padding: 0 80px;
  }

  .hero-4 .front-content .container-mid #cycle {
    margin: 0 auto;
  }

  .hero-4 .front-content p {
    font-size: 20px;

    margin-bottom: 20px;

    letter-spacing: 0.12em;
  }

  .hero-4 .front-content .scroll-down {
    bottom: 24px;

    width: 21px;
    height: 30px;
  }

  .hero-4 .front-content .scroll-down:before {
    top: 8px;

    height: 5px;
  }

  .hero-4 .front-content .cycle-pagination {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .hero-4 .front-content img.text-image {
    padding: 0 20px;
  }

  .hero-4 .front-content p {
    font-size: 14px;

    letter-spacing: 0.06em;
  }

  .hero-4 .front-content .scroll-down {
    bottom: 16px;

    width: 20px;
    height: 29px;
  }

  .hero-4 .front-content .cycle-pagination {
    margin-left: 10px;
  }

  .hero-4 .front-content .cycle-pagination span {
    margin: 0 4px;
    padding: 6px;
  }

  .hero-4 .front-content .cycle-pagination span::after {
    width: 5px;
    height: 5px;
  }
}

/** 6. HERO-5 [ SLIDER-REVOLUTION ]
*******************************************************************/

.slider-revolution-hero-1 .slotholder:after {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  content: "";
  pointer-events: none;

  background: rgba(0, 0, 0, 0.5);
}

.slider-revolution-hero-1 h1 {
  font-family: "Dosis", sans-serif;
  font-size: 120px;
  font-weight: 500;
  line-height: 1.16em;

  display: inline-block;

  margin-bottom: 0;
  padding: 0;

  text-align: center !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slider-revolution-hero-1 p {
  font-size: 24px;

  margin-bottom: 0;

  text-align: center !important;
  letter-spacing: 0.14em;
}

.slider-revolution-hero-1 .scroll-down {
  position: absolute;
  z-index: 100;
  bottom: 42px;
  left: 50%;

  width: 23px;
  height: 34px;

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);

  border-radius: 25px;
  box-shadow: inset 0 0 0 2px #fff;
}

.slider-revolution-hero-1 .scroll-down:before {
  position: absolute;
  top: 9px;
  left: 50%;

  width: 3px;
  height: 6px;
  margin-left: -1.5px;

  content: "";

  -webkit-animation: mousewheelScroll 1.6s infinite;
  animation: mousewheelScroll 1.6s infinite;

  border-radius: 10px;
  background: #fff;
}

/** MEDIA QUERIES  **/

@media (max-width: 994px) {
  .slider-revolution-hero-1 h1 {
    font-size: 100px;
    line-height: 1em;

    padding: 0 0;
  }

  .slider-revolution-hero-1 .scroll-down {
    bottom: 24px;

    width: 21px;
    height: 30px;
  }

  .slider-revolution-hero-1 .scroll-down:before {
    top: 8px;

    height: 5px;
  }
}

@media (max-width: 480px) {
  .slider-revolution-hero-1 .scroll-down {
    bottom: 16px;

    width: 20px;
    height: 29px;
  }
}

/** 7. ERROR-404
*******************************************************************/

.error-404 .front-content h1 {
  font-family: dosis;
  font-size: 120px;
  font-weight: 500;
  line-height: 1.16em;

  display: block;

  margin-bottom: 20px;
  padding: 10px 0;

  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.error-404 .front-content p {
  font-size: 24px;
  line-height: 60px;

  display: inline-block;

  margin-right: 36px;
  margin-bottom: 0;

  vertical-align: top;
  letter-spacing: 0.14em;
}

.error-404 .front-content a.button-default {
  display: inline-block;
}

/** PAGE ENTER ANIMATION **/

.error-404 .front-content.page-enter-animated h1 {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.error-404 .front-content.page-enter-animated.show h1 {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.error-404 .front-content.page-enter-animated p {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.error-404 .front-content.page-enter-animated.show p {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.25s !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.25s !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

.error-404 .front-content.page-enter-animated a.button-default {
  -webkit-transform: translateY(80px) !important;
  transform: translateY(80px) !important;

  opacity: 0 !important;
}

.error-404 .front-content.page-enter-animated.show a.button-default {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.45s !important;
  transition: all 0.6s cubic-bezier(0.5, 0.34, 0.06, 0.82) 0.45s !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;

  opacity: 1 !important;
}

/** MEDIA QUERIES  **/

@media (max-width: 994px) {
  .error-404 .front-content h1 {
    font-size: 70px;
    line-height: 1em;

    padding: 0 0;
  }

  .error-404 .front-content p {
    font-size: 20px;

    margin-bottom: 0;

    letter-spacing: 0.12em;
  }
}

@media (max-width: 480px) {
  .error-404 .front-content h1 {
    font-size: 50px;

    margin-bottom: 10px;

    letter-spacing: 0.03em;
  }

  .error-404 .front-content p {
    font-size: 14px;

    letter-spacing: 0.06em;
  }
}

/* my css */
.top-buttons {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 999;
  display: flex;
  gap: 10px;
}

.top-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.top-btn.outline {
  font-family: "Lato", sans-serif;
  min-width: 107px;
  height: 37px;
  padding: 10px 20px;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid #f9c5d1;
  background: #fff;
  color: #333333;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  letter-spacing: 3.36px;
  text-align: center;
}

.top-btn.outline:hover {
  background-color: #790022;
  color: #fff;
}
.top-btn.solid {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 3.36px;
  text-align: center;
  vertical-align: middle;
  background: #790022;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  height: 37px;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.top-btn.solid:hover {
  opacity: 0.85;
}
.main-nav {
  background-color: #ffffff;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  position: relative;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-menu-wrapper {
  flex: 2;
  text-align: center;
}

.nav-actions {
  flex: 1;
  text-align: right;
}

.navigation-items a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: none;
  font-family: Lato;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 3.36px;
  text-align: center;
  vertical-align: middle;
  padding: 0px 10px !important;
}

.navigation-items a:hover {
  color: #333333 !important;
  text-decoration: none;
}
.navbar-brand {
  float: left;
  height: 70px !important;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.custom-p-tag {
  color: #3b3d40;
  font-family: Lato;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 0 !important;
  margin-top: 30px !important;
}
.custom-h-tag {
  color: #000000;
  font-size: 42px;
  font-family: Playfair Display;
}
.suppliers-section {
  width: 100%;
  margin: 0 auto;
  padding: 140px 115px;
  background: #ffffff;
}

.suppliers-title {
  text-align: center;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 0.84px;
  margin-bottom: 54px;
  color: #333333;
}

.step {
  width: 100%;
  height: 154px;
  display: flex;
  align-items: center;
  border-radius: 25px;
  padding: 27px;
  gap: 20px;
  margin-bottom: 54px;
  box-sizing: border-box;
}

.step-number {
  width: 100px;
  height: 100px;
  padding: 25px 29px;
  border-radius: 25px;
  border: 1px solid #790022;
  background-color: #790022;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333333;
}

.step-description {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}

.step.pink {
  background: #fadadd;
}

.step.white {
  background: #ffffff;
}
.step-number.small {
  width: 100px;
  height: 100px;
  padding: 25px 29px;
  border-radius: 25px;
  border: 1px dashed #b5838d;
  background-color: #ffffff;
  color: #8b1e3f;
  font-size: 24px;
}
.section {
  width: 100%;
  height: 900px;
  padding: 140px 115px;
  background-color: #fef9fa;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form {
  width: 416px;
  height: 620px;
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  background: white;
  box-shadow: 20px 22px 44px 0px #cccccc;
  display: flex;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form button {
  background-color: #790022;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.map-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url(assets/images/parallax/1.jpg);
  background-size: cover;
  border-top-right-radius: 25px;
}

.map-section {
  width: 454.08px;
  height: 620px;
  background-color: #790022;
  position: relative;
  overflow: visible; /* allow left overflow */
  color: white;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.map-embed {
  position: absolute;
  top: 31px;
  left: -168px; /* ⬅️ More negative to fully shift it OUTSIDE the left edge */
  width: 622px;
  height: 340px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.map-text {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: white;
  font-size: 14px;
  line-height: 1.5;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row input {
  flex: 1;
}
.bg-overlay-section {
  background-color: rgba(0, 0, 0, 0) !important;
}
.content-center {
  display: flex !important;
  justify-content: center !important;
}
.position-wrapper {
  position: relative;
  width: 346px;
  height: auto;
  overflow: hidden;
}

.position-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.image-caption-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 72px;
  padding: 17px;
  background-color: #790022;
  color: white;
  text-align: center;
  font-family: "Georgia", serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.social-icons {
  font-family: Dosis;
  font-weight: 300;
  font-size: 18px;
  line-height: 30.6px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 1300px) {
  .nav-menu-wrapper {
    display: none;
    width: 100%;
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 999;
    text-align: center;
  }

  .nav-menu-wrapper.active {
    display: block !important;
  }

  .navigation-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center; /* ⬅ This ensures horizontal centering */
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .navigation-items li {
    width: 100%;
    text-align: center;
  }

  .navigation-items a {
    display: block !important;
    width: 100%;
    padding: 12px 20px;
    color: #333;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .navigation-items a:hover {
    background-color: #f3f3f3;
  }

  .nav-toggle {
    display: block !important;
    cursor: pointer;
    margin-left: auto;
    margin-right: 15px;
  }

  .nav-actions {
    display: none !important;
  }

  .nav-wrapper {
    flex-wrap: nowrap;
    padding: 0 15px;
  }
}
@media (max-width: 1300px) {
  #about .row {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    margin-left: 10px;
  }
  .right-content-img {
    padding-bottom: 50px !important;
  }
  #about .row .col-sm-6 {
    width: 100%;
    max-width: 90%;
    margin-bottom: 30px;
  }
}
@media (max-width: 1300px) {
  #service .tab-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0;
  }

  #service .tab-navigation li {
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
  }

  #service .tab-navigation li img {
    max-width: 80px;
  }

  #service h1 {
    font-size: 30px !important;
    line-height: 38px !important;
    padding: 0 20px;
  }

  #service .custom-p-tag {
    font-size: 14px !important;
    padding: 0 20px;
  }

  #service .header {
    margin-bottom: 40px;
  }
  .padding-top-130 {
    padding-top: 0px;
  }
  .padding-bot-200 {
    padding-bottom: 0px;
  }
}

@media (max-width: 1300px) {
  .suppliers-section {
    width: 100% !important;
    padding: 60px 20px 100px !important;
  }

  .suppliers-title {
    font-size: 32px !important;
    line-height: 1.3;
    margin-bottom: 30px !important;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
    height: auto !important;
    border-radius: 25px;
    margin-bottom: 30px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 20px;
    padding: 18px;
    border-radius: 16px;
  }

  .step-number.small {
    width: 70px;
    height: 70px;
    font-size: 20px;
    padding: 18px;
    border-radius: 16px;
  }

  .step-title {
    font-size: 18px !important;
    font-weight: 700;
    font-family: "Playfair Display", serif !important;
    margin-bottom: 10px;
  }

  .step-description {
    font-size: 15px !important;
    line-height: 1.6;
    padding: 0 5px;
  }

  /* .section {
    width: 100% !important;
    height: auto !important;
    padding: 60px 20px !important;
    flex-direction: column;
  } */
}
.styled-form {
  width: 416px;
  display: flex;
  flex-direction: column;
  margin-left: 40px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row input {
  flex: 1;
  padding: 6px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #cccccc;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 6px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #cccccc;
  resize: none;
  margin-bottom: 0px;
}

.styled-form button {
  background-color: #790022;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  font-family: Lato;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 3.36px;
  text-align: center;
  vertical-align: middle;
}
.map-text {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: white;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-line {
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between icon and text */
  font-family: Dosis;
  font-weight: 100;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  vertical-align: middle;
}

.map-line img {
  width: 18px; /* adjust icon size as needed */
  height: 18px;
  object-fit: contain;
}

.contact-map-section {
  background-color: #fefafa;
  padding: 130px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-area,
.map-info-area {
  flex: 1 1 500px;
  padding: 30px;
  box-sizing: border-box;
}

.contact-form-area h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-form-area p {
  margin-bottom: 20px;
  color: #555;
}

.contact-form .input-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.contact-form button {
  background-color: #8a002e;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #660022;
}

.map-info-area iframe {
  width: 100%;
  height: 300px;
  border: 0;
  margin-bottom: 20px;
  border-radius: 8px;
}

.contact-info p {
  margin: 5px 0;
  font-size: 14px;
  color: white;
}

.map-info-area {
  background-color: #8a002e;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .contact-form-area,
  .map-info-area {
    padding: 20px;
  }

  .contact-form .input-row {
    flex-direction: column;
  }

  .map-info-area iframe {
    height: 250px;
  }
  .res-fom {
    margin-left: 0px !important;
  }
  .styled-form {
    margin-left: 0px !important;
  }
}
.styled-form .form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.styled-form .form-group {
  flex: 1;
  margin-bottom: 15px;
}

.styled-form input,
.styled-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .styled-form .form-row {
    flex-direction: column;
  }

  .styled-form .form-group {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .styled-form input,
  .styled-form textarea {
    width: 65%;
  }
  .contact-form button {
    width: 65%;
  }
  .res-d-none {
    display: block !important;
    margin-bottom: 30px !important;
  }
}
.about-img-1 {
  width: 100%;
  max-width: 575px;
  height: auto;
}
.about-img-2 {
  width: 100%;
  max-width: 450px;
  height: auto;
}
.header-text {
  text-transform: none !important;
  font-family: Lato !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 100% !important;
  letter-spacing: 3.36px !important;
  text-align: center !important;
  vertical-align: middle !important;
}
.footer-layout {
    width: 100%;
    height: 519px;
    padding-top: 110px;
    padding-bottom: 150px;
}
