@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Roboto:wght@700&display=swap");

html,
body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

.container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.red__text {
  color: #ff0000;
}

/* Header */

.header {
  width: 100%;
  background: #ff0000;
}
.header__inner {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.logo {
  width: 250px;
  max-width: 80%;
  display: block;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
/* Main */

.main {
  flex: 1 1 auto;
  padding: 30px 0 70px;
}
.main__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main__title {
  max-width: 600px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  font-weight: 900;
  margin: 0 auto 35px;
}
.main__box__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.main__box__item-icon {
  width: 24px;
  height: 24px;
  display: block;
}
.main__box__item-text {
  text-transform: capitalize;
  font-family: "Monserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-left: 10px;
}
.swiper {
  width: 500px;
  margin: 35px auto;
}

.swiper-slide__image {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "";
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "";
}

.swiper__box {
  width: 500px;
  position: relative;
  margin: 0 auto;
}

.custom__swiper-button {
  cursor: pointer;
  top: calc(50% - 25px);
  z-index: 5;
  position: absolute;
  width: 50px;
  height: 50px;
}

.custom-prev {
  left: -25px;
}
.custom-next {
  right: -25px;
}
.custom__swiper-button__image {
  display: block;
  max-width: 100%;
  width: 100%;
}

.main__button {
  text-decoration: none;
  text-align: center;
  width: 100%;
  max-width: 365px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  background: #ff0000;
  border-radius: 8px;
  padding: 27px;
  margin: 20px auto 0;
}
.main__button:hover {
  background: #cb0000;
}
/* Footer */

.footer {
  width: 100%;
  background: #1e1e1e;
}
.footer__inner {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.footer__text {
  font-size: 8px;
  line-height: 1.05;
  color: #fff;
  margin-top: 15px;
}
.footer__links {
  display: flex;
  flex-direction: column;
}
.footer__links-item {
  text-decoration: none;
  font-size: 15px;
  color: #fff;
  text-align: end;
  margin-bottom: 5px;
}
.footer__links-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .header__inner {
    padding: 12px 0;
  }
  .logo {
    max-width: 180px;
  }
  .main__title {
    max-width: 400px;
    font-size: 32px;
  }
  .swiper__box {
    width: 90%;
  }
  .swiper {
    width: 100%;
  }
  .footer__links-item {
    font-size: 14px;
    font-weight: 400;
  }
  .footer__text {
    margin-top: 15px;
  }
}
@media (max-width: 430px) {
  .custom__swiper-button {
    cursor: pointer;
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    z-index: 5;
    position: absolute;
  }
  .main__title {
    max-width: 300px;
    font-size: 24px;
  }
  .main__box__item-text {
    font-size: 14px;
    margin-left: 6px;
  }
  .main__box__item-icon {
    width: 20px;
    height: 20px;
  }
  .custom-prev {
    left: -20px;
  }
  .custom-next {
    right: -20px;
  }
  .custom__swiper-button__image {
    display: block;
    max-width: 100%;
    width: 100%;
  }

  .main__button {
    padding: 20px;
  }
}
