
div.aslider {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
  margin-bottom: 0;
  min-height: 600px;
  min-width: 400px;
}
div.aslider > div {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.clona {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
}
div.aslider > div img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  vertical-align: middle;
  object-fit: cover;
}
#gtco-hero .aslider .aslide h1 {
  font-size: 60px;
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #gtco-hero .aslider .aslide h1 {
    font-size: 40px;
  }
}
#gtco-hero .aslider .aslide h2 {
  font-size: 60px;
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #gtco-hero .aslider .aslide h2 {
    font-size: 40px;
  }
}
.in {
  -webkit-animation: comein 1s 1;
  -moz-animation: comein 1s 1;
  animation: comein 1s 1;
  animation-fill-mode: both;
}
@keyframes comein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.out {
  -webkit-animation: goout 1s 1;
  -moz-animation: goout 1s 1;
  animation: goout 1s 1;
  animation-fill-mode: both;
}
@keyframes goout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}