body {
  padding: 0;
  margin: 0;
  min-width: 1280px;
}
ul {
  list-style: none;
  padding: 0;
}
p {
  margin: 0;
}
.gateway {
  width: 100%;
  height: 100vh;
}
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40%;
  background: url('../images/banner@2x.png') no-repeat;
  background-size: cover;
}
.lang-select {
  position: absolute;
  top: 20px;
  right: 170px;
  display: flex;
  align-items: center;
}
.lang-select select {
  border: none;
  color:#fff;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}
.lang-select select option {
    background-color: lightblue; /* Set the background color of the dropdown options */
}
.env-select {
  position: absolute;
  top: 20px;
  right: 50px;
  display: flex;
  align-items: center;
}
.env-select select {
  border: none;
  color:#fff;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}
.env-select select option {
    background-color: lightblue; /* Set the background color of the dropdown options */
}
.text {
  color: #fff;
}
.text h1 {
  font-size: 60px;
  margin: 0;
}
.text p {
  margin-top: 10px;
  font-size: 30px;
  text-align: center;
}
.info {
  padding: 30px 0 36px;
  font-size: 36px;
  font-weight: 700;
  color: #060028;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.apps {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.apps .app {
  float: left;
  width: 25%;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}
.apps .app .app-image {
  width: 90px;
  height: 90px;
  cursor: pointer;
}
.apps .app .app-title {
  margin: 15px 0 8px;
  font-size: 26px;
  font-weight: 700;
  color: #060028;
}
.apps .app .app-info {
  padding: 0 28px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #757575;
  text-align: center;
}
