body {
  margin: 0;
  background-color: #f8f8f8;
  font-family: Rubik, sans-serif;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

#content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0px;
}

.top-header {
  margin: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header > .logos {
  display: flex;
  list-style-type: none;
  padding: 0px;
}

.top-header > .logos img {
  height: 40px;
}
.top-header > .logos > li:not(:last-child)::after {
  display: inline-block;
  width: 2.5px;
  height: 100%;
  margin: 0 16px;
  transform: rotate(15deg);
  background-color: #ebecf0;
  content: "";
}

.top-header > .figure > img {
  height: 40px;
}

.bottom-header {
  background-color: #f2f2f2;
  padding: 8px 16px;
}

main {
  width: 1110px;
  margin: 110px auto;
  display: flex;
  justify-content: space-between;
}

main > .welcome-logo {
  max-width: 50%;
}

main > .welcome-text {
  max-width: 420px;
}

main > .welcome-text > h1 {
  font-weight: 400;
  font-size: 36px;
  line-height: 1.4;
}

main > .welcome-text > p {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.23px;
  margin: 20px 0 35px 0;
}

main > .welcome-text > a {
  display: inline-block;
  width: 190px;
  height: 40px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.35);
  background-color: #48c2c5;
  color: #fff;
  text-transform: UPPERCASE;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

main > .welcome-text > a > span {
  font-size: 14px;
  margin-left: 10px;
}

main > .welcome-text > a > img {
  margin-right: 10px;
}

@media screen and (max-width: 1000px) {
  body {
    overflow: initial;
  }

  .top-header > .figure {
    display: none;
  }

  main {
    width: initial;
    margin: initial;
    flex-wrap: wrap;
    padding: 20px;
  }

  main > .welcome-logo {
    max-width: 100%;
  }
}
