@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%;
}

.main{
  width: 60%;
  margin:0 auto;
}

.container{
  background: #2A80FF;
}

header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:1.5rem 0;
}

.logo{
  line-height: 0;
  width: 28.5%;
}

.header-btn a{
  border:1px solid #fff;
  border-radius: 1rem;
  padding:0.5rem 1.3rem;
  color:#fff;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
}

.header-btn a:first-child{
  margin-right: 2.5rem;
}

.top{
  line-height: 0;
  text-align: center;
  overflow: hidden;
}

.top-txt {
  margin-bottom: -12%;
}

.top-txt h1{
  color:#fff;
  font-size: 3.3rem;
  line-height: 120%;
  margin:4rem 0 1rem;
}

.top-txt p{
  color: rgba(255,255,255,0.65);
  width: 80%;
  margin:0 auto;
  font-size: 0.8rem;
  line-height: 130%;
}

.about{
  text-align: center;
  padding:7.5rem 0;
}

.about h1 {
  color:#2a2a2a;
  font-size: 3.2rem;
}

.about-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top:5rem;
}

.about-box-list {
  flex:1;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-box-list > div{
  width: 40%;
  border-radius: 1.5rem;
  border:1px solid #D4D4D4;
  padding:2.5rem 4%;
  margin-bottom: 3%;
}

.about-box-list h2{
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}

.about-box-list p{
  font-size: 0.7rem;
  line-height: 140%;
}

.about-box{
  background: #2A80FF;
}

.about-box h2{
  color:#fff;
}

.about-box p{
  color: #BBD6FF;
}

.about-img{
  width: 40.5%;
  line-height: 0;
  /* margin-left: 2%; */
}

.footer{
  position: relative;
  padding-bottom: 6.9%;
}

.copyright{
  background: #1A1A1A;
  color: #fff;
  font-size: 0.8rem;
  padding:1.2rem 0;
  text-align: center;
}

.fixed-footer{
  background: #F2F7FF;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.fixed-content {
  display: flex;
  color: #666;
  font-size: 0.9rem;
  line-height: 130%;
  align-items: center;
  justify-content: space-between;
  padding:0.9rem 0;
}

.fixed-content a{
  display: block;
  width: 28%;
  line-height: 0;
}

@media screen and (max-width: 1024px){
  .main{
    width: 92%;
  }

  .logo{
    width: 40%;
  }

  .header-btn a{
    font-size: 2.4rem;
    border-radius: 2rem;
  }

  .top-txt h1{
    font-size: 7rem;
    margin-bottom: 2rem;
  }

  .top-txt p{
    font-size: 2.4rem;
    width: 100%;
  }

  .top img{
    width: 140%;
    margin-left: -20%;
  }

  .about h1{
    font-size: 5.2rem;
  }

  .about-info{
    display: block;
    text-align: center;
  }

  .about-box-list{
    width: 100%;
  }

  .about-box-list > div{
    padding: 5rem 4%;
    margin-bottom: 5%;
  }

  .about-img{
    margin: 0 auto;
  }

  .about-box-list h2{
    font-size: 5rem;
    margin-bottom: 3rem;
  }

  .about-box-list p {
    font-size: 2.4rem;
  }

  .footer{
    padding-bottom: 9%;
  }

  .copyright{
    font-size: 2rem;
  }

  .fixed-content{
    font-size: 1.6rem;
  }
}