@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  background: url(../images/bg.png) no-repeat center center;
  background-size: cover;
  min-height: 100vh;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
.wrapper {
  display: flex;
}
.left {
  width: calc(100vw - 792px);
}
.right {
  width: 792px;
}
.content {
  padding-left: 96px;
  min-height: calc(100vh - 43px);
}
.logo {
  padding-top: 245px;
  margin-bottom: 40px;
}
h1 {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 55px;
  line-height: 65px;
  text-transform: uppercase;

  color: #FFFFFF;
  margin-bottom: 98px;
  position: relative;
}
h1 span {
  color: #FFE600;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 55px;
  line-height: 65px;
  text-transform: uppercase;
}
h1::after {
  content: url(../images/land.png);
  position: absolute;
  bottom: -28px;
  left: 35%;
  transform: translateX(-50%);
}
.box {
  display: flex;
  gap: 19px 16px;
  margin-bottom: 21px;
}
span {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;

  color: #FFFFFF;
}
.btn1:hover,
.btn2:hover {
  filter: saturate(3);
  transform: scale(1.02);
}
.copyright {
  text-align: center;
}
.copyright span {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;

  color: #FFFFFF;
}
.mb {
  display: none;
}
@media screen and (max-width: 1440px) {
  .content {
    padding-left: 261px;
    min-height: calc(100vh - 43px);
  }
  h1 {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 50px;
    line-height: 65px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 98px;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .mb {
    display: inline-block;
  }
  .pc {
    display: none;
  }
  body {
    font-family: "Roboto", sans-serif;
    background: url(../images/bg-mb.png) no-repeat center center;
    background-size: cover;
    min-height: 100vh;
  }
  .wrapper {
    flex-direction: column;
  }
  .right {
    width: 100%;
  }
  .content {
    padding-left: 0px;
    min-height: calc(100vh - 34px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  .logo {
    padding-top: 336px;
    margin-bottom: 16px;
  }
  .logo img {
    max-width: 107px;
    vertical-align: top;
  }
  h1 {
    font-size: 31px;
    line-height: 38px;
    margin-bottom: 44px;
  }
  h1 span{
    font-size: 31px;
    line-height: 38px;
  }
  h1::after {
    content: url(../images/land-mb.png);
    position: absolute;
    bottom: -15px;
    left: 40%;
    transform: translateX(-50%);
  }
  .box {
    flex-direction: column;
    margin-bottom: 12px;
  }
  .btn1 {
    margin-bottom: 76px;
  }
  .btn1 img,  .btn2 img {
    max-width: 302px;
    vertical-align: top;
  }
  .content .span2 {
    font-size: 14px;
    line-height: 16px;
    display: inline-block;
    padding-bottom: 35px;
  }
  .copyright span {
    font-size: 14px;
    line-height: 16px;
  }
}
@media screen and (max-width: 380px) {
  .logo {
    padding-top: 295px;
    margin-bottom: 16px;
  }
  h1 {
    font-size: 27px;
    line-height: 31px;
    margin-bottom: 34px;
  }
  h1 span{
    font-size: 27px;
    line-height: 31px;
  }
}

@media screen and (max-width: 350px) {
  .logo {
    padding-top: 257px;
    margin-bottom: 16px;
  }
  .btn1 img, .btn2 img {
    max-width: 175px;
    vertical-align: top;
  }
  h1 {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 25px;
  }
  h1 span{
    font-size: 22px;
    line-height: 25px;
  }
}

