/*---Mobile---*/

.gap-mobile {
  height: 50px;
}

/*banner*/
.banner-container {
  background-color: #FFFFFF;
  background-image: url("../images/academia.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-info {
  width: 80%;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 50px;
}

.banner-info--header {
  color: #006DB1;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.banner-info--subheader {
  color: #FBBA00;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.banner-info--content {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: center;
}


/*process*/
.process-container {
  background-color: #006DB1;
  padding: 30px 10px;
}

.process-1--header {
  color: #FBBA00;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}

.process-1--content {
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
}

.process-2--header {
  color: #FBBA00;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}

.process-2--content {
  color: #FFFFFF;
  font-size: 16px;
}

/*---Medium screen---*/
@media all and (min-width: 950px) {
  .gap-mobile {
    display: none;
  }

  /*banner*/
  .banner-container {
    height: calc(100vh - 100px);
  }

  .banner-info {
    padding: 40px;
  }
  
  .banner-info--header {
    font-size: 40px;
    margin: 15px 0;
  }
  
  .banner-info--subheader {
    font-size: 35px;
    margin: 0;
  }

  .banner-info--content {
    font-size: 18px;
  }

  /*Process*/
  .process-container {
    padding: 30px 50px;
  }

  .process-1 {
    width: 100%;
    height: 400px;
    padding: 0;
    margin-bottom: -120px;
  }
  
  .process-1--header {
    z-index: 20;
    background-color: #FBBA00;
    border-radius: 20px;
    width: 40%;
    height: 200px;
    margin: 100px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .process-1--header p {
    margin: 0;
    color: #006DB1;
    font-size: 30px;
    font-weight: 700;
  }
  
  .process-1--content {
    z-index: 10;
    background-color: #FFFFFF;
    border-radius: 20px;
    width: 60%;
    height: 340px;
    position: relative;
    top: -370px;
    left: 20%;
    padding-left: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .process-1--content p {
    color: black;
    font-size: 18px;
    padding: 0 40px;
  }

  .process-2 {
    width: 100%;
    height: 400px;
    padding: 0;
    margin-bottom: -120px;
  }
  
  .process-2--header {
    z-index: 20;
    background-color: #FBBA00;
    border-radius: 20px;
    width: 40%;
    height: 200px;
    margin: 100px 0;
    position: relative;
    left: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .process-2--header p {
    margin: 0;
    color: #006DB1;
    font-size: 30px;
    font-weight: 700;
  }
  
  .process-2--content {
    z-index: 10;
    background-color: #FFFFFF;
    border-radius: 20px;
    width: 60%;
    height: 340px;
    position: relative;
    top: -370px;
    padding-right: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .process-2--content p {
    color: black;
    font-size: 18px;
    padding: 0 40px 0 80px;
  }
}

/*---Large Screen---*/
@media all and (min-width: 2000px) {
  .gap-mobile {
    display: none;
  }

  /*banner*/
  .banner-container {
    height: calc(100vh - 125px);
  }

  .banner-info {
    padding: 50px;
  }
  
  .banner-info--header {
    font-size: 60px;
  }
  
  .banner-info--subheader {
    font-size: 45px;
  }

  .banner-info--content {
    font-size: 20px;
  }

  /*Process*/
  .process-container {
    padding: 30px 150px;
  }

  .process-1 {
    height: 500px;
    margin-bottom: -120px;
  }
  
  .process-1--header {
    height: 260px;
    margin: 120px 0;
  }

  .process-1--header p {
    font-size: 50px;
  }
  
  .process-1--content {
    height: 400px;
    top: -450px;
  }

  .process-1--content p {
    font-size: 20px;
  }

  .process-2 {
    height: 500px;
    margin-bottom: -120px;
  }
  
  .process-2--header {
    height: 260px;
    margin: 120px 0;
  }

  .process-2--header p {
    font-size: 50px;
  }
  
  .process-2--content {
    height: 400px;
    top: -450px;
  }

  .process-2--content p {
    font-size: 20px;
  }
  
}