@import url("satoshi.css");
html {
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Satoshi-Regular";
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}
.splash {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: url("/assets/2.jpg");
  background-size: cover;
}

.logo {
  width: 50%;
  display: flex;
  align-items: end;
  justify-content: center;
  .img_logo {
    height: 100px;
  }
}

.topicos {
  align-items: center;
  width: 50%;
  .container_topicos {
    border-left: solid;
    border-color: #141414;
    border-width: 1px;
    padding-left: 100px;
    .topicos_list {
      display: grid;
      gap: 10px;
      font-size: 20px;
      .topico_title {
        font-size: 36px;
        font-weight: 900;
      }
    }
  }
}

@media only screen and (max-width: 1080px) {
  .splash {
    flex-direction: column;
  }
  .logo {
    position: absolute;
    width: 65%;
    left: 50%;
    top: 50px;
    transform: translate(-50%, 0%);
    .logo_img {
      position: relative;
    }
  }
  .topicos {
    position: relative;
    align-items: center;
    width: 65%;
    flex-direction: column;
    .container_topicos {
      border-left: solid;
      border-color: #141414;
      border-width: 0px;
      padding-left: 0px;
      .topicos_list {
        display: grid;
        gap: 5px;
        font-size: 13px;
        text-align: center;
        .topico_title {
          font-size: 20px;
          font-weight: 900;
          text-align: center;
        }
      }
    }
  }
}

.contacts {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  display: flex;
  flex-direction: column;
  bottom: 20px;
  width: 350px;
  font-size: 12px;
  .txt {
    text-align: center;
    padding-top: 5px;
  }
  .txt2 {
    text-align: center;
    font-size: 10px;
  }
}
