@font-face {
	font-family: Futura;
	src: url('../fonts/FuturaPTExtraBold.otf');
}

*{
  margin: 0;
  padding: 0;
}
.container{
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.atlantean-block{
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #08713c;
}

.kickstarter-block{
  width: 50%;
  height: auto;
  background-color: #202020;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.heading{
  width: 100%;
  height: auto;
  background-color: #202020;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 920px;
  font-family: Futura;
  font-weight: 600;
  font-size: 78px;
  text-transform: uppercase;
  color: #EEEEEE;
 
}
#topTitle{
  font-size: 180px;

}
.section-complete{
  width: 100%;
  height: auto;
  background-color: #08713c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-family: Futura;
  font-weight: 500;
  font-size: 48px;
  text-transform: uppercase;
  text-align: center;
  color: #EEEEEE;
  padding: 180px 0px 180px 0px;
}

.complete-gallery{
  width: 85%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 10px 10px 10px;
  box-sizing: border-box;
}
.gallery-item{
  width: 33%;
  padding: 10px;
  box-sizing: border-box;
}
.gallery-item > a > img{
  width: 100%;
}



.main-info > h1{
  margin-bottom: 25px;
  margin-left: 25px;
  font-family: Futura;
  font-weight: 600;
  font-size: 50px;
   text-align: center;
  text-transform: uppercase;
  color: #EEEEEE;
}
.img-1{
  width: 360px;
  height: 360px;
  background: url("../img/img-1.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.img-2{
  width: 530px;
  height: 300px;
  margin-left: 50px;
  background: url("../img/adventuro.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.img-3{
  display: none;
}

.kickstarter-block > nav  {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
}
.kickstarter-block > nav > a{
  color: #EEEEEE;
  text-decoration: none;
  cursor: pointer;
  font-family: Futura;
  font-size: 18px;
  text-transform: uppercase;
}
.kickstarter-block > nav > a:first-child{
  margin-right: 40px;
}
.main-info{
  margin: auto 0;
  justify-content: center;
}
@media screen and (max-width: 1200px){
  .img-2{
    margin-left: 20px;
  }
}
@media screen and (max-width: 1024px){
  .atlantean-block{
    display: none;
  }
  .kickstarter-block{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .img-2{
    margin-left: 0;
  }
  .img-3{
    width: 330px;
    height: 300px;
    display: block;
    margin-top: 30px;
    background: url("../img/img-1.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .main-info{
    margin-top: 120px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main-info > h1 {
    margin-left: 0;
    font-size: 46px;
  }
}

@media screen and (max-width: 568px){
  .main-info > h1 {
    font-size: 34px;
  }
  .img-2{
    width: 450px;
  }
  .img-3{
    margin-top: 0;
  }
}

@media screen and (max-width: 460px){
  .main-info > h1 {
    font-size: 28px;
  }
  .img-2{
    width: 350px;
  }
  .img-3{
    margin-top: 20px;
    width: 250px;
  }
}

@media screen and (max-width: 340px){
  .main-info > h1 {
    font-size: 24px;
  }
  .img-2{
    width: 320px;
  }



}