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

#parallax h2 {
	font-size: 40px;
	text-transform: capitalize;
	color: white;
}
#parallax p {
	padding:10px 0 30px 0
}
#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 #fff;                             
}

#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: #fff;
  border: 1px solid transparent;
}
#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: 1440px) {
  #parallax h2 {font-size: 36px;}
}
@media screen and (max-width: 1281px) {
  #parallax h2 {font-size: 34px;}
}
@media screen and (max-width: 1171px) {
  #parallax h2 {font-size: 30px;}
}
@media screen and (max-width: 992px) {
  #parallax h2 {font-size: 26px;}
}
@media screen and (max-width: 768px) {
  #parallax h2 {font-size: 24px;}
}
@media screen and (max-width: 480px) {
  #parallax h2 {font-size: 22px;}
}


