/*** RESET ***/
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
  padding: 0;
  margin: 0;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus,
a:focus {
  outline: none;
}
ul,
li {
  list-style: none;
}
a,
button {
  text-decoration: none;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
a:hover {
  text-decoration: none;
}
/***************************** VARIABLES *********************************/
@font-face {
  font-family: GT-regular;
  src: url(../fonts/GT-America-Standard-Regular-Y.otf);
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: GT-bold;
  src: url(../fonts/GT-America-Standard-Bold-Y.otf);
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: GT-comp-bold;
  src: url(../fonts/GT-America-Compressed-Bold-Y.otf) format('opentype');
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: GT-comp-black;
  src: url(../fonts/GT-America-Compressed-Black-Y.otf);
  font-style: italic;
  font-weight: 400;
}
/*** color ***/
/**** MIXINS LESS CLASES *****/
/*****************/
html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  overflow-x: hidden;
}
.wrapper {
  width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .wrapper {
    width: auto;
    padding: 0 10px;
    margin: 0 auto;
  }
}
/********* CONTENT  ************/
.main {
  display: block;
  overflow: hidden;
}
.top {
  width: 100%;
  display: block;
  height: auto;
  margin: 0 0 40px 0;
}
.top img {
  display: block;
  width: 100%;
}
.tit {
  /* font-family: 'GT-comp-bold', sans-serif; */
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
  text-align: center;
  padding: 0 0;
  margin: 0 0 30px 0;
}
.subtit {
  /* font-family: 'GT-comp-bold', sans-serif; */
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 34px;
  line-height: 40px;
  padding: 0;
  margin: 0 0 5px 0;
}
.subtit-2 {
  color: #000;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 34px;
  line-height: 40px;
  padding: 40px 0;
  margin: 0 0 5px 0;
}
.subtit-2 strong {
  width: 700;
}
.txt {
  color: #000;
  font-weight: 300;
  font-size: 28px;
  line-height: 38px;
  padding: 0 0;
  margin: 0 0 34px 0;
}
.center {
  text-align: center;
  margin-bottom: 40px;
}
.btn-land {
  background: #7f3ed6;
  border-radius: 5px;
  color: #fff;
  /* font-family: 'GT-comp-bold', sans-serif; */
  font-size: 20px;
  display: inline-block;
  padding: 15px 40px;
  text-transform: uppercase;
  font-weight: 700;
}
.btn-land:hover {
  background: #000;
}
.btn-land.inv {
  background: #000;
}
.btn-land.inv:hover {
  background: #7f3ed6;
}
.img-desta {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 20px 0;
}
.img-desta img {
  display: block;
  width: 100%;
}
.mini-content {
  max-width: 1100px;
  margin: 0 auto;
  display: block;
}
/*****************/
.foot {
  text-align: center;
  padding: 40px 0;
}
.foot p {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 40px;
}
.foot .logo {
  margin-bottom: 20px;
  display: block;
}
.foot .redes {
  display: flex;
  justify-content: center;
}
.foot .redes a {
  margin: 0 10px;
}
/**** GRILLA ***/
@media (min-width: 1024px) {
  .grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
  }
  .grid.col-3 {
    justify-content: space-between;
    grid-template-columns: 400px 400px 400px;
    gap: 50px;
  }
  .grid.col-2 {
    justify-content: space-between;
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }
  .grid .column {
    display: block;
  }
  .grid .column.flexcol {
    display: flex;
    justify-content: end;
  }
}
.audio {
  margin: 20px 0 40px;
}
/***** animaciones ****/
.fadeIn {
  opacity: 0 !important;
  transition: ease 1s all;
}
.fadeIn.active {
  opacity: 1 !important;
}
.fadeInUp {
  transform: translateY(150px);
  opacity: 0 !important;
  transition: ease 1s all;
}
.fadeInUp.active {
  transform: translateY(0);
  opacity: 1 !important;
}
.fadeInRight {
  transform: translateX(150px);
  opacity: 0 !important;
  transition: ease 1s all;
}
.fadeInRight.active {
  transform: translatex(0);
  opacity: 1 !important;
}
.fadeInLeft {
  transform: translateX(-150px);
  opacity: 0 !important;
  transition: ease 1s all;
}
.fadeInLeft.active {
  transform: translatex(0);
  opacity: 1 !important;
}
@media (min-width: 1000px) {
  .fadeInUpDesk {
    transform: translateY(150px);
    opacity: 0 !important;
    transition: ease 1s all;
  }
  .fadeInUpDesk.active {
    transform: translateY(0);
    opacity: 1 !important;
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 1023px) {
  .foot p {
    font-size: 18px;
    line-height: 26px;
  }
  .tit {
    font-size: 24px;
    line-height: 28px;
  }
  .tit br {
    display: none;
  }
  .subtit,
  .subtit-2 {
    font-size: 22px;
    line-height: 26px;
    text-align: center;
  }
  .txt {
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
    text-align: center;
  }
  .audio {
    text-align: center;
  }
  .audio audio {
    width: 100%;
  }
  .wrapper {
    padding: 0 35px;
  }
}
@media (max-width: 1000px) {
  
}
@media (min-height: 400px) and (max-height: 600px) {
  
}
