@charset "utf-8";

.first-view {
  height: calc(100vh - 110px);
  background-image: url(../images/snackbox.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
}



.title {
  height: 200px;
  background-image: url(../images/concept/bg-main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000000;
}

.title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: bold;
}

.title p {
  font-size: 14px;
  margin-top: 15px;
}

.feature {
  display: flex;
  justify-content: space-between;
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}

.feature img {
  width: 360px;
}

.feature-text {
  max-width: 500px;
  margin-right: 40px;
}

.box {
  display: flex;
  justify-content: space-between;
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}

.box img {
  width: 360px;
  border-radius: 30px;
}

.box-text {
  max-width: 500px;
  margin-right: 40px;
}

.box-text h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  background-color: #dc143c;
  color: #ffffff;
}

.box-text p {
  font-size: 15px;
  line-height: 28px;
  margin-top: 25px;
}

.reverse {
  flex-direction: row-reverse;
}

.reverse .feature-text {
  margin-left: 40px;
  margin-right: 0;
}

.feature-text h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}

.feature-text h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin-top: 20px;
}

.feature-text p {
  font-size: 15px;
  line-height: 28px;
  margin-top: 25px;
}

.one-time {
  width: 930px;
  max-width: 90%;
  background-color: #f8f8f8;
  padding: 50px 60px;
  margin-top: 55px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.one-time img {
  width: 360px;
  border-radius: 30px;
}

.one-time h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.one-time h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.one-time-text p {
  font-size: 15px;
  line-height: 28px;
  margin-top: 20px;
}

.go-to-checkout {
    width: 340px;
    background-color: #ffff00;
    color: #ff0000;
    font-weight: bold;
    display: block;
    margin: 0 auto;
    font-size: 24px;
    padding: 20px;
    border-radius: 10px;
    border: none;
    appearance: none;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.go-to-checkout:hover {
    background-color: #267bff;
}

.one-time-order {
    width: 250px;
    background-color: #ffff00;
    color: #ff0000;
    font-weight: bold;
    display: block;
    margin: 0 auto;
    font-size: 24px;
    padding: 20px;
    border-radius: 10px;
    border: none;
    appearance: none;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.one-time-order:hover {
    background-color: #267bff;
}

.footer {
  margin-top: 100px;
}

@media (max-width: 800px) {
  .feature {
    display: block;
    width: 500px;
    margin-top: 45px;
  }

  .feature-text {
    margin-right: 0;
  }

  .reverse .feature-text {
    margin-left: 0;
  }

  .feature img {
    width: 100%;
    height: auto;
    margin-top: 25px;
  }

.box {
    display: block;
    width: 500px;
    margin-top: 45px;
  }

  .box-text {
    margin-right: 0;
  }

  .box img {
    width: 100%;
    height: auto;
    margin-top: 25px;
  }

  .one-time {
    display: block;
    width: 500px;
    margin-top: 45px;
  }

.one-time-text {
    margin-right: 0;
  }

.one-time img {
    width: 100%;
    height: auto;
    margin-top: 25px;
  }


}