/* Reusable */

h1,
h2,
h3,
h4,
h5,
h6{
  font-family: 'Roboto', sans-serif;
}

p{
  font-size: 16px;
}

.bg-layer{
  position: relative;
}

.bg-layer::after{
  position: absolute;
  content: "";
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,.7);
}

.txt-h1{
  font-size: 3.5rem;
}

.txt-h2{
  font-size: 3rem;
}

.txt-h3{
  font-size: 2.5rem;
}

.txt-h4{
  font-size: 2rem;
}

.text-gray{
  color: #b7b7b7;
}

.list-common{
  list-style-position: inside;
}

.list-common li{
  font-size: 16px;
  color: #b7b7b7;
}

.b-r{
  border-right: 1px solid #f9f9f9;
}

img{
  max-width: 100%;
}

.btn-white{
  background-color: #f9f9f9;
  color: #000;
  border: 0;
  outline: none;
  overflow: hidden;
}

.btn-custom{
  display: inline-block;
  overflow: hidden;
  padding: .5rem 1rem;
  font-size: 1.8rem;
}

.btn-custom:hover{
  text-decoration: none;
}

.btn-flash{
  position: relative;
  -moz-transition: all .5s ease 0s;
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.btn-flash:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,.3) 100%);
  background: linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,.3) 100%);
  -webkit-transform: skewX(-45deg);
  -moz-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  -o-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.btn-flash:hover {
  background: #ef0e34;
  color: #fff;
  border-color: #ef0e34;
}

.btn-flash:hover:after {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
@keyframes shine{
  100%{
      left:125%
  }
}
@-moz-keyframes shine{
  100%{
      left:125%
  }
}
@-webkit-keyframes shine{
  100%{
      left:125%
  }
}
@-o-keyframes shine{
  100%{
      left:125%
  }
}

.scroll-down {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 1;
  transition: all .5s ease-out;
}

.down-arrow {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
  cursor: pointer;
}

.down-arrow::after {
  position: absolute;
  content: "\e001";
  font-family: 'tech' !important;
  line-height: 1;
  color: #fff;
  right: 10%;
  font-size: 22px;
  -ms-animation: arrowdown 2s infinite;
  -moz-animation: arrowdown 2s infinite;
  -webkit-animation: arrowdown 2s infinite;
  animation: arrowdown 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes arrowdown {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes arrowdown {
  0% {
      -ms-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
      -ms-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes arrowdown {
  0% {
      -moz-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
      -moz-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes arrowdown {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media(min-width:576px){
  .container{
    max-width: 720px;
  }
}

@media(min-width:768px){
  .container{
    max-width: 900px;
  }
}

@media(min-width:992px){
  .container{
    max-width: 960px;
  }
}

@media (min-width:1100px){
  .container {
    max-width: 1660px;
    width: 90%;
    margin: 0 auto;
  }
}


@media(max-width:767px){
  .txt-h1{
    font-size: 2.5rem;
  }
  .txt-h2{
    font-size: 2.5rem;
  }
}

@media(max-width:576px){
  p{
    font-size: 1.4rem;
  }
}