* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
}

main section.view1 {
  display: flex;
  flex-direction: column;
  background: linear-gradient(rgba(0, 255, 255, 0.1), rgba(255, 192, 203, 0.5));
}
main section.view1 .top {
  padding: 2em;
}
main section.view1 .top img {
  width: 100%;
}
main section.view1 .middle {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
main section.view1 .middle h1 {
  text-align: center;
  font-size: 2.5rem;
  width: 75%;
  font-weight: 700;
}
main section.view1 .bottom {
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
main section.view1 .bottom h2 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
main section.view2 {
  display: flex;
  flex-direction: column;
  padding: 5rem 1rem 0 1rem;
}
main section.view2 .top {
  display: flex;
  flex-direction: column;
}
main section.view2 .top .card-1 hr, main section.view2 .top .card-2 hr, main section.view2 .top .card-3 hr {
  background-color: rgba(128, 128, 128, 0.1);
}
main section.view2 .top .card-1 h3, main section.view2 .top .card-2 h3, main section.view2 .top .card-3 h3 {
  padding: 1rem 0;
  font-size: 1.5rem;
}
main section.view2 .top .card-1 p, main section.view2 .top .card-2 p, main section.view2 .top .card-3 p {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  padding: 1rem 0;
}
main section.view2 .top .card-1 img, main section.view2 .top .card-2 img, main section.view2 .top .card-3 img {
  width: 100%;
  padding: 1rem;
}
main section.view2 .bottom {
  display: flex;
  flex-direction: column-reverse;
  padding: 5rem 0;
}
main section.view2 .bottom .left {
  padding: 2rem 0;
}
main section.view2 .bottom .left h4 {
  font-size: 1.2rem;
  color: rgb(74, 74, 74);
}
main section.view2 .bottom .left h2 {
  font-size: 3rem;
  padding: 1rem 0.1rem;
}
main section.view2 .bottom .left p {
  padding: 1rem 0;
  color: rgb(74, 74, 74);
  font-size: 1.2rem;
}
main section.view2 .bottom .left .btns {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1rem 0.1rem;
}
main section.view2 .bottom .left .btns #first {
  font-size: 0.9rem;
  background-color: transparent;
  padding: 0.8rem 1.2rem;
  border-radius: 3rem;
  color: royalblue;
  border: 0.1rem solid royalblue;
  font-weight: 700;
}
main section.view2 .bottom .left .btns #second {
  background-color: transparent;
  border: none;
  font-weight: 700;
  padding: 1.5rem;
}
main section.view2 .bottom .right img {
  width: 100%;
}
main section.view3 {
  display: flex;
  flex-direction: column;
}
main section.view3 img {
  width: 100%;
}
main section.view3 .card1, main section.view3 .card2, main section.view3 .card3 {
  display: flex;
  flex-direction: column;
}
main section.view3 .card1, main section.view3 .card3 {
  background: linear-gradient(to left bottom, white, #FCFCE2);
}
main section.view3 .card1 .top img, main section.view3 .card3 .top img {
  width: 100%;
}
main section.view3 .card1 .bottom, main section.view3 .card3 .bottom {
  padding: 2.5rem 1rem;
}
main section.view3 .card1 .bottom h4, main section.view3 .card3 .bottom h4 {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.7);
  padding: 1rem 0;
}
main section.view3 .card1 .bottom h2, main section.view3 .card3 .bottom h2 {
  font-size: 2.5rem;
  padding: 1rem 0;
}
main section.view3 .card1 .bottom p, main section.view3 .card3 .bottom p {
  font-size: 1.2rem;
  opacity: 0.8;
}
main section.view3 .card1 .bottom button, main section.view3 .card3 .bottom button {
  background-color: royalblue;
  color: white;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 1.5rem;
  border: none;
  margin: 2rem 0;
  font-weight: 700;
}
main section.view3 .card2 .top img {
  width: 100%;
}
main section.view3 .card2 .bottom {
  padding: 2.5rem 1rem;
}
main section.view3 .card2 .bottom h4 {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.7);
  padding: 1rem 0;
}
main section.view3 .card2 .bottom h2 {
  font-size: 2.5rem;
  padding: 1rem 0;
}
main section.view3 .card2 .bottom p {
  font-size: 1.2rem;
  opacity: 0.8;
}
main section.view3 .card2 .bottom button {
  background-color: white;
  color: royalblue;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 1.5rem;
  border: 0.1rem solid royalblue;
  margin: 2rem 0;
  font-weight: 700;
}
main section.view4 .design .top {
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: red;
}
main section.view4 .design .middle {
  clip-path: polygon(0 0, 30% 40%, 40% 0);
  background-color: orange;
}
main section.view4 .design .bottom {
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  background-color: darkblue;
}

@media (min-width: 900px) {
  main section.view1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 0.5fr;
    grid-template-areas: "text image" "parah parah";
    background: linear-gradient(to bottom left, rgba(0, 255, 255, 0.1), rgba(255, 192, 203, 0.5));
  }
  main section.view1 .top {
    grid-area: image;
    padding: 0;
  }
  main section.view1 .top img {
    padding: 4rem;
    text-align: left;
  }
  main section.view1 .middle {
    grid-area: text;
  }
  main section.view1 .middle h1 {
    font-size: 4rem;
    width: 50%;
    text-align: left;
  }
  main section.view1 .bottom {
    grid-area: parah;
  }
  main section.view1 .bottom h2 {
    width: 67%;
    text-align: center;
    font-size: 2.5rem;
  }
  main section.view2 .top {
    flex-direction: row;
    gap: 5rem;
    padding: 0 10rem;
    align-items: center;
    justify-content: center;
  }
  main section.view2 .top .card-1 h3, main section.view2 .top .card-2 h3, main section.view2 .top .card-3 h3 {
    padding: 1.5rem 0;
    font-size: 1.7rem;
  }
  main section.view2 .top .card-1 p, main section.view2 .top .card-2 p, main section.view2 .top .card-3 p {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    padding: 1rem 0;
    width: 87%;
  }
  main section.view2 .top .card-1 img, main section.view2 .top .card-2 img, main section.view2 .top .card-3 img {
    padding: 1.5rem;
  }
  main section.view2 .bottom {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  main section.view2 .bottom .left, main section.view2 .bottom .right {
    width: 50%;
  }
  main section.view2 .bottom .left {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 20rem;
  }
  main section.view2 .bottom .left h2 {
    font-size: 4rem;
    padding: 1rem;
  }
  main section.view2 .bottom .left p {
    line-height: 1.5;
    padding: 0;
  }
  main section.view2 .bottom .left .btns {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  main section.view2 .bottom .right img {
    width: 75%;
  }
  main section.view3 .card1, main section.view3 .card3 {
    flex-direction: row;
  }
  main section.view3 .card1 .top, main section.view3 .card1 .bottom, main section.view3 .card3 .top, main section.view3 .card3 .bottom {
    width: 50%;
  }
  main section.view3 .card1 .top, main section.view3 .card3 .top {
    display: flex;
    align-items: center;
    justify-content: end;
  }
  main section.view3 .card1 .top img, main section.view3 .card3 .top img {
    width: 75%;
    padding: 3rem;
  }
  main section.view3 .card1 .bottom, main section.view3 .card3 .bottom {
    padding: 2rem 0;
  }
  main section.view3 .card1 .bottom h2, main section.view3 .card3 .bottom h2 {
    width: 75%;
    font-size: 4rem;
  }
  main section.view3 .card1 .bottom p, main section.view3 .card3 .bottom p {
    width: 55%;
    line-height: 1.5;
  }
  main section.view3 .card1 .bottom button, main section.view3 .card3 .bottom button {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
  }
  main section.view3 .card2 {
    flex-direction: row-reverse;
  }
  main section.view3 .card2 .top, main section.view3 .card2 .bottom {
    width: 50%;
  }
  main section.view3 .card2 .top {
    display: flex;
    align-items: center;
    justify-content: start;
  }
  main section.view3 .card2 .top img {
    width: 75%;
    padding: 4rem;
  }
  main section.view3 .card2 .bottom {
    padding: 10rem 0 0 15rem;
  }
  main section.view3 .card2 .bottom h2 {
    width: 75%;
    font-size: 4rem;
  }
  main section.view3 .card2 .bottom p {
    width: 100%;
    line-height: 1.5;
  }
  main section.view3 .card2 .bottom button {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
  }
}/*# sourceMappingURL=style.css.map */