@charset "utf-8";
* {
    margin: 0;
    padding: 0;
}

html, body{
  font-family: Archivo Black, Archivo Black;
  font-size: calc(100vw / 100);
}

body {
    width: 100%;
    height: 100%;    
}
img {
    width: 100%;
}
a {
  display: block;
}
.img{
  line-height: 0;
}
h2{
  font-size: 3rem;
  line-height: 200%;
}

.container{
  background: url(img/bg.png) no-repeat;
  background-size: 100% 100%;
}

.main{
  width: 60%;
  margin: 0 auto;
}

header{
  display: flex;
  justify-content: space-between;
  padding-top: 4rem;
  align-items: center;
}

.logo{
  width: 30%;
}

.btn a{
  background: #fff;
  border-radius: 1rem;
  color: #1D1D1D;
  display: inline-block;
  text-decoration: none;
  font-size: 1.3rem;
  padding:1rem 1rem;
  margin-left: 2rem;
}

.about{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top:6rem;
}

.about-inner{
  color:#fff;
  font-size: 1.4rem;
  line-height: 200%;
}

.about-inner h2{
  margin-bottom: 1rem;
}

.about .img{
  width: 50%;
  margin-left: 10%;
}

.others{
  background: #F5FBFF;
  text-align: center;
}

.others h2{
  color:#000;
  padding:5rem 0;
}

.others .img{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.others .img img{
  width: 45%;
}

.others .img img:last-child{
  width: 50%;
}

footer{
  display: flex;
}
footer .img{
  width: 50%;
}
footer .img img{
  height: 100%;
}
.contact{
  background: #505965;
  color:#fff;
  width: 50%;
  padding:2rem 0 5rem;
}

.contact-inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}


.contact-inner p{
  font-size: 1rem;
  line-height: 180%;
  margin-top: 1rem;
}

 

@media screen and (max-width: 1024px){
  .main{
    width: 90%;
  }
  .btn a{
    font-size: 3rem;
  }
  .about-inner{
    font-size: 2rem;
  }
  h2{
    font-size: 5rem;
  }
  .contact-inner p{
    font-size: 2.4rem;
  }
  .contact-inner a{
    font-size: 2.4rem;
  }
}