@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html, body {
  font-family: "Roboto", sans-serif;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
  text-decoration: none;
  color: inherit;
}

s {
  position: relative;
  text-decoration: none;
  color: red;
}
s:before {
  content: "";
  position: absolute;
  width: 100%;
  transform: rotate(-12deg);
}

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 1920px;
  height: 100%;
  width: 100%;
}
.wrapper__content {
  display: flex;
  width: 100vw;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 0;
}
.wrapper__content h1 {
  font-size: 4.75rem;
  font-weight: 600;
  margin: 1.2rem;
}
@media screen and (max-width: 768px) {
  .wrapper__content h1 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .wrapper__content h1 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 320px) {
  .wrapper__content h1 {
    font-size: 3rem;
  }
}
.wrapper__content h2 {
  font-size: 3rem;
  font-weight: 500;
  margin: 1.2rem;
}
@media screen and (max-width: 480px) {
  .wrapper__content h2 {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 320px) {
  .wrapper__content h2 {
    font-size: 2rem;
  }
}
.wrapper__content p {
  font-size: 1.375rem;
  color: #919191;
  font-weight: 300;
  margin: 1.3rem 1rem;
}
.wrapper__content p s:before {
  border-bottom: 1px solid red;
  height: 50%;
}
.wrapper__content span s {
  font-size: 2.5rem;
}
.wrapper__content span s:before {
  border-bottom: 2px solid red;
  height: 75%;
}
.wrapper__content button {
  background-color: #3262ff;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  padding: 0 60px;
  font-size: 1rem;
  height: 60px;
  margin: 1rem 0;
  color: white;
  outline: none;
  border: 0;
}
.wrapper__content img {
  width: 60%;
  max-width: 1152px;
}
@media screen and (max-width: 768px) {
  .wrapper__content img {
    width: 100%;
  }
}
.wrapper__content video {
  margin: 2rem 0;
  width: 85%;
  max-width: 1920px;
}
.wrapper__content:nth-child(2n) {
  background-color: #f5f5f5;
}
.wrapper__content:nth-child(2n) p {
  color: #616161;
}
.wrapper__content:nth-child(6) span {
  font-weight: 600;
  font-size: 3.125rem;
}
.wrapper__content:nth-child(6) p {
  color: #919191;
}
.wrapper__content .specifications {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.wrapper__content .specifications__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 16.25rem;
  margin: 1rem;
}
.wrapper__content .specifications__container img {
  width: 80px;
  margin: 1.563rem;
}
.wrapper__content .specifications__container span {
  font-size: 1.125rem;
}
.wrapper__content .specifications__container p {
  font-size: 0.875rem;
  color: #6e6e6e;
}
@media screen and (max-width: 1167px) {
  .wrapper__content .specifications__container {
    width: 25%;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .wrapper__content .specifications__container {
    width: 40%;
  }
}
@media screen and (max-width: 320px) {
  .wrapper__content .specifications__container {
    width: 100%;
  }
}
.wrapper .slider {
  width: 80%;
  height: 50%;
  overflow: hidden;
  margin-top: 5rem;
}
.wrapper .navigation {
  display: flex;
  position: relative;
  bottom: 1.5rem;
  justify-content: center;
}
.wrapper .bar {
  width: 30px;
  height: 8px;
  margin: 6px;
  cursor: pointer;
  background-color: #000;
  opacity: 0.5;
  border-radius: 10px;
  transition: all 0.4s ease;
}
.wrapper .bar:hover {
  opacity: 1;
  transform: scale(1.1);
}
.wrapper .slides {
  width: 400%;
  height: 100%;
  display: flex;
}
.wrapper .slides input[name=r] {
  position: absolute;
  display: none;
}
@media screen and (max-width: 600px) {
  .wrapper .slides {
    height: 25rem;
  }
}
@media screen and (max-width: 480px) {
  .wrapper .slides {
    height: 20rem;
  }
}
@media screen and (max-width: 375px) {
  .wrapper .slides {
    height: 15rem;
  }
}
.wrapper .slide {
  width: 25%;
  transition: all 0.6s ease;
}
.wrapper .slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.wrapper #r1:checked ~ .s1 {
  margin-left: 0;
}
.wrapper #r2:checked ~ .s1 {
  margin-left: -25%;
}
.wrapper #r3:checked ~ .s1 {
  margin-left: -50%;
}
.wrapper #r4:checked ~ .s1 {
  margin-left: -75%;
}
.wrapper__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  max-width: 1920px;
}
@media screen and (max-width: 768px) {
  .wrapper__item {
    flex-direction: column-reverse !important;
    padding: 0 4rem;
  }
}
@media screen and (max-width: 480px) {
  .wrapper__item {
    padding: 0 1rem;
  }
}
.wrapper__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.wrapper__item:nth-child(2n) .wrapper__container {
  align-items: flex-start !important;
}
.wrapper__item .wrapper__container {
  display: flex;
  text-align: left;
  width: 50%;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .wrapper__item .wrapper__container {
    width: 100%;
    margin: 1rem 0;
  }
}
.wrapper__item .wrapper__container:nth-child(2n) {
  align-items: flex-end;
}
.wrapper__item .wrapper__container h3 {
  font-weight: 400;
  font-size: 1.625rem;
}
.wrapper__item .wrapper__container p {
  margin: 1rem 0;
}
.wrapper__item .wrapper__container img {
  border-radius: 5px;
}

.modal {
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.modal__items {
  background-color: white;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  width: 30rem;
}
@media screen and (max-width: 768px) {
  .modal__items {
    padding: 1rem;
  }
}
.modal__items p {
  font-size: 1.375rem;
  font-weight: 500;
  margin: 1rem 0;
}
.modal__items hr {
  border-color: rgba(136, 136, 136, 0.1882352941);
  margin-bottom: 1rem;
}
.modal__items span {
  font-weight: 400;
  color: #616161;
}
.modal__items form {
  display: flex;
  flex-direction: column;
}
.modal__items form input {
  background-color: rgba(136, 136, 136, 0.1254901961);
  border-radius: 5px;
  margin: 1rem 0;
  padding: 1rem;
  outline: none;
  border: none;
}
.modal__items form .submit {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  background-color: #000000;
}
.modal__title {
  display: flex;
  justify-content: space-between;
}
.modal__close {
  user-select: none;
  cursor: pointer;
  color: black;
  font-size: 2.5rem;
}

/*# sourceMappingURL=style.css.map */
