/* -----------Common Style----------- */
#parallax {
  width:100%;
	padding: 10% 0;
	color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
	background-attachment: fixed;
}

#parallax h2 {
	font-size: 48px;
  color: white;
  line-height: 1;
}

#parallax strong {
  display: block;
	font-size: 105px;
  color: var(--color-primary);
}

#parallax a {
  padding: 10px 30px;
	display: inline-block;
	font-size: 13px;
  font-family: var(--title-font-family);
	text-transform: uppercase;
	position: relative;
	z-index: 1;
	overflow: hidden;
	border: 1px solid var(--color-primary);  
	background: var(--color-primary);
}

#parallax .border-radius {
  border-radius: var(--button-radius);
}

#parallax .button-hover {
  -webkit-transition: border-color 0.4s, color 0.4s;
  -ms-transition: border-color 0.4s, color 0.4s;
  -o-transition: border-color 0.4s, color 0.4s;
  -moz-transition: border-color 0.4s, color 0.4s;
  transition: border-color 0.4s, color 0.4s;
  z-index: 1;
}

#parallax .button-hover:before {
  content: "";
  position: absolute;
  border-radius: 4px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  /*background: #002e5b;*/
  -moz-transform: scale3d(0.7, 1, 1);
  -ms-transform: scale3d(0.7, 1, 1);
  -o-transform: scale3d(0.7, 1, 1);
  -webkit-transform: scale3d(0.7, 1, 1);
  transform: scale3d(0.7, 1, 1);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  -transition: transform 0.4s, opacity 0.4s;
  -ms-transition: transform 0.4s, opacity 0.4s;
  -o-transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
}
#parallax .button-hover,
#parallax .button-hover:before {
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

#parallax .button-hover:hover,
#parallax .button-hover:focus {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  background: none;
}
#parallax .button-hover:hover::before,
#parallax .button-hover:focus::before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media screen and (max-width:1280px) {
  #parallax h2 {
    font-size: 36px;
  }
}


@media screen and (max-width:992px) {
  #parallax h2 {
    font-size: 28px;
  }
}


@media screen and (max-width:492px) {
  #parallax h2 {
    font-size: 24px;
  }
}
