html, body {
  height: 100%;
  width: 100%;
}
body {
  overflow-x: hidden !important ;
  /*flex-direction: column;*/
  margin: 0 auto;
  background-color: #fff;
}
.conteiner{
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0 auto;
  max-width: 414px;
}
.content{
  padding-left: 10px;
  padding-right: 10px;
}
header{
  background-color:#fff;
  height: 100px;
  width: 100%;
  -webkit-box-shadow: 2px 3px 15px -4px rgba(0,0,0,0.38);
-moz-box-shadow: 2px 3px 15px -4px rgba(0,0,0,0.38);
box-shadow: 2px 3px 15px -4px rgba(0,0,0,0.38);
}

.logo{
  margin: 0 auto;
  position: relative;
  background-image: url("../img/logo-azerion.png");
  width: 300px;
  height: 60px;
  background-size: 100%;
  background-repeat: no-repeat;
  top: 20px;
}
h1{
  font-family: 'Roboto';
  color: #a9aca3;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0px;
}
h3{
  font-family: 'Roboto';
  color: #a9aca3;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 5px;
}

.box-img{
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 414px;
  height: 200px;
  background-color: #a9aca3;
}
p{
  font-family: 'Roboto';
  color: #a9aca3;
  font-weight: 100;
  line-height: 20px;
}

.mini-box-left{
  position: relative;
  width: 120px;
  height: 90px;
  background-color: #a9aca3;
  float: left;
  margin-right: 10px;
}
.mini-box-right{
  position: relative;
  width: 120px;
  height: 90px;
  background-color: #a9aca3;
  float: right;
  margin-right: 10px;
}
.box-iframe{
  width: 100%;
  position: fixed;
  min-height: 100%;
  max-height: 100%;
  background-color: #000000b5;
  top: 0;
  display: none;
}
.cerar{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  top: 3%;
  float: right;
  right: 3%;
  font-family: 'Roboto';
  color: #fff;
  font-weight: 300;
  text-align: center;
  font-size: 24px;
  z-index: 9999;
}


[style*="--aspect-ratio"] > :first-child {
  width: 100%;
  max-width: 414px;
}
[style*="--aspect-ratio"] > img {
  height: auto;
}
@supports (--custom:property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }
  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }
  [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
  }
}

/**** Responsi ***/
@media (max-width: 414px) {
  @supports (--custom:property) {
    [style*="--aspect-ratio"] {
      position: relative;
    }
    [style*="--aspect-ratio"]::before {
      content: "";
      display: block;
      padding-bottom: calc(100% / (var(--aspect-ratio)));
    }
    [style*="--aspect-ratio"] > :first-child {
      position: absolute;
      top: 25%;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      height: 100%;
    }
  }
}
