/* Views/www_webpack/pages/how_order/how_order.css */
#howOrder {
  padding: 20px clamp(20px, 5vw, 10vw);
}
#howOrder h1 {
  margin-right: 100px;
  padding: 20px;
  color: var(--color-dark-blue);
  text-transform: uppercase;
  border-bottom: 20px solid #83b1fb;
  border-left: 20px solid #83b1fb;
  transform: translateY(20px);
}
.how_order__title {
  margin-bottom: 40px;
  font-weight: normal;
  text-transform: uppercase;
}
.how_order__item {
  position: relative;
  display: flex;
  gap: 4vw;
}
.how_order__item h2 {
  width: 30vw;
  color: var(--color-dark-blue);
  font-size: 2em;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(100px);
}
.how_order__item.one {
  margin-left: 50px;
  border-top: 20px solid #83b1fb;
  border-right: 20px solid #83b1fb;
  border-bottom: 20px solid #83b1fb;
  border-radius: 0 60px 60px 0;
}
.how_order__item.one .how_order__item_title {
  position: relative;
  display: grid;
  align-content: space-between;
  width: 30vw;
}
.how_order__item.one .how_order__item_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(20px, 5vw, 100px);
  padding-left: 0;
  font-size: clamp(1em, 2vw, 1.1em);
}
.how_order__item.one .how_order__item_img {
  bottom: -10.5vw;
  left: -3.9vw;
  width: 37vw;
  height: 100%;
  transform: translate(-7%, 16.5%);
}
.how_order__item.two {
  margin-right: 50px;
  border-top: 20px solid #83b1fb;
  border-bottom: 20px solid #83b1fb;
  border-left: 20px solid #83b1fb;
  border-radius: 60px 0 0 60px;
  transform: translateY(-20px);
}
.how_order__item.two .how_order__item_title {
  position: relative;
  display: grid;
  align-content: space-between;
  order: 2;
  width: 30vw;
}
.how_order__item.two .how_order__item_content {
  display: grid;
  gap: 20px;
  order: 1;
  padding: clamp(20px, 5vw, 100px);
  padding-right: 0;
  font-size: clamp(1em, 2vw, 1.1em);
}
.how_order__item.two .how_order__item_img {
  width: 40vw;
  height: 100%;
  transform: translate(-10%, 13.5%);
}
.how_order__item.three {
  margin-left: 50px;
  border-top: 20px solid #83b1fb;
  border-right: 20px solid #83b1fb;
  border-bottom: 20px solid #83b1fb;
  border-radius: 0 60px 60px 0;
  transform: translateY(-40px);
}
.how_order__item.three .how_order__item_title {
  position: relative;
  display: grid;
  align-content: space-between;
  order: 1;
  width: 30vw;
}
.how_order__item.three .how_order__item_content {
  display: grid;
  gap: 20px;
  order: 2;
  padding: clamp(20px, 5vw, 100px);
  padding-left: 0;
  font-size: clamp(1em, 2vw, 1.1em);
}
.how_order__item.three .how_order__item_img {
  width: 37vw;
  height: 100%;
  transform: translate(-7%, 18%);
}
.how_order__item.three ol {
  display: grid;
  gap: 3px;
  padding-left: 20px;
}
.how_order__item.three ol > li::before {
  margin-right: 0.5em;
  color: var(--color-green);
  font-size: 1.2em;
  content: "➥";
}
.how_order__item.three ul {
  display: grid;
  gap: 5px;
  padding-left: 50px;
}
.how_order__item.four {
  margin-right: 50px;
  border-top: 20px solid #83b1fb;
  border-bottom: 20px solid #83b1fb;
  border-left: 20px solid #83b1fb;
  border-radius: 60px 0 0 60px;
  transform: translateY(-60px);
}
.how_order__item.four .how_order__item_title {
  position: relative;
  display: grid;
  align-content: space-between;
  order: 2;
  width: 30vw;
}
.how_order__item.four .how_order__item_content {
  display: grid;
  gap: 20px;
  order: 1;
  padding: clamp(20px, 5vw, 100px);
  padding-right: 0;
  font-size: clamp(1em, 2vw, 1.1em);
}
.how_order__item.four .how_order__item_img {
  width: 40vw;
  height: 100%;
  transform: translate(-10%, 18%);
}
.how_order__item.four ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.how_order__item.four a {
  text-decoration: underline;
}
.how_order__item.four a:hover {
  color: var(--color-green);
}
.how_order__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.phone_link {
  font-weight: bold;
  font-size: 1.2em;
}
.phone_link:hover {
  text-decoration: underline;
}
.phone_link .icon {
  width: 35px;
  height: 35px;
  transform: translateY(6px);
}
@media screen and (max-width: 1160px) {
  .how_order__item {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .how_order__item h2 {
    width: 100%;
    padding: clamp(20px, 5vw, 100px);
    padding-top: clamp(20px, 5vw, 100px);
    padding-bottom: 0;
    transform: translateY(0);
  }
  .how_order__item.one .how_order__item_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .how_order__item.one .how_order__item_content {
    padding-top: 0;
  }
  .how_order__item.one .how_order__item_img {
    transform: translateY(0);
  }
  .how_order__item.two .how_order__item_content {
    padding-bottom: 0;
  }
  .how_order__item.two .how_order__item_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .how_order__item.three .how_order__item_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .how_order__item.three .how_order__item_title .how_order__item_img {
    transform: translate(0, 0);
  }
  .how_order__item.three .how_order__item_content {
    padding-top: 0;
  }
  .how_order__item.four .how_order__item_content {
    padding-bottom: 0;
  }
  .how_order__item.four .how_order__item_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
