* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  color: #FFF;
  font-size: 20px;
  line-height: 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

/* common */

.container {
  width: 100vw;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

.title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
}

.title-desc {
  color: #B6BED3;
  padding-right: 100px;
  padding-top: 25px;
}

.btn-download {
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid #fff;
  border-radius: 8px;
  transition: all 0.5s;
}

.btn-download:hover {
  cursor: pointer;
  color: #90F8E0;
  border-color: #90F8E0;
}

/* header */

.header {
  background: #252629;
  position: fixed;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.header__wrap {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.header__menu-list {
  display: flex;
}

.header__menu-list li+li {
  padding-left: 32px;
}

.header__menu-list a {
  font-size: 14px;
  transition: all 0.5s;
}

.header__menu-list a:hover {
  color: #90F8E0;
}

.header__logo a {
  display: flex;
  align-items: center;
  position: relative;
  left: -15%;
}

.header__logo-title {
  padding-left: 12px;
}

.header__logo-title__gray {
  color: #BDBDBD;
}

/* home and about */

.home_about {
  background: linear-gradient(147.38deg, #21242E 0%, #151924 100%);
}

/* home */

.home__wrap {
  padding-top: 25%;
  padding-bottom: 70px;
  display: flex;
}

.home__text {
  width: 50%;
}

.home__img {
  width: 50%;
  margin-top: -10%;
}

.home__img img {
  width: 100%;
}

/* about */

.about__wrap {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
}

.about__lines {
  display: flex;
  padding: 0 80px;
  justify-content: space-between;
  width: 57%;
}

.about__lines-left {
  position: relative;
  top: 100px;
}

.about__lines-right {
  position: relative;
  top: 85px;
}

.about__text {
  width: 70%;
  padding: 0 50px;
}

.about__text-steps {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
}

.about__text-steps li {
  width: 30%;
}

.about__text-steps li::before {
  content: "";
  border-radius: 100px;
  background: #363B50;
  font-size: 30px;
  line-height: 64px;
  text-align: center;
  padding: 17px 27px;
  position: relative;
  top: -16px;
}

.about__text-steps li:nth-child(1)::before {
  content: "1";
}

.about__text-steps li:nth-child(2)::before {
  content: "2";
}

.about__text-steps li:nth-child(3)::before {
  content: "3";
}

.about__text-step-title {
  font-size: 18px;
  font-weight: 700;
}

.about__text-step-desc {
  padding-top: 10px;
  font-size: 20px;
  color: #B6BED3;
}

.about__img {
  width: 30%;
}

.about__img img {
  width: 100%;
  max-width: 274px;
}

/* gallery */

.gallery {
  background: #20222D;
}

.gallery__wrap {
  padding-top: 70px;
  padding-bottom: 7px;
}

.gallery__img {
  padding-top: 50px;
}

.gallery__img img {
  width: 100%;
}

/* footer */

.footer {
  background: #1A1D26;
}

.footer__wrap {
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__menu-list {
  display: flex;
}

.footer__menu-list li+li {
  padding-left: 24px;
}

.footer__menu-list a {
  font-size: 14px;
  transition: all 0.5s;
}

.footer__menu-list a:hover {
  color: #90F8E0;
}

.footer__logo a {
  display: flex;
  align-items: center;
  position: relative;
  left: -15%;
  color: #BDBDBD;
  font-weight: 700;
}

.footer__logo-title {
  padding-left: 12px;
}

.footer__copy {
  font-size: 14px;
  color: #D9DBE1;
  padding: 25px 0;
}

/* terms and policy */

.info__header {
  background: #252629;
}

.info__header__wrap {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.info__header__logo a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.info__header__logo-title {
  padding-left: 12px;
}

.info__header__logo-title__gray {
  color: #BDBDBD;
}

.info {
  background: #252629;
}

.info__wrap {
  padding: 100px 0;
  margin-top: -1px;
}

.info__text {
  color: #B6BED3;
}

.info__text-title {
  color: #FFF;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
}

.info__text p {
  padding-top: 20px;
  font-size: 20px;
  line-height: 24px;
}