@import url(https://fonts.googleapis.com/css?family=Roboto:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Phudu:300,regular,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Almarai:300,regular,700,800);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.break {
  word-break: break-all;
}
a,
button {
  text-align: center;
  width: fit-content;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s linear;
  border: none;
}
button:focus,
a:focus {
  outline: 4px solid #fff;
  filter: brightness(90%);
}
@media (hover: hover) {
  button:hover,
  a:hover {
    filter: brightness(80%);
  }
}

textarea,
input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
}

.container {
  max-width: 1070px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header {
  position: relative;
  padding-block: 32px;
}
.header .container {
  max-width: 1150px;
}
.header-bg {
  background-color: #000;
  background-image: url(../images/h1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header__inner {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  padding: 4px 20px;
  background: #fff;
  box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.8);
}
.header__logo {
  display: block;
  color: #5f0000;
  font-family: Phudu;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__nav a {
  display: block;
  color: #050810;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
}

.close-img {
  display: none;
}

.header__menu {
  display: none;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.home {
  background-color: #000;
  background-image: url(../images/h1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home__inner {
  padding-block: 16px 60px;
}
.home__title {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}
.home__subtitle {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.6px;
  margin-bottom: 24px;
}

.home__text {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.44px;
}

.check__wrapper {
  position: relative;
  z-index: 1;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.b1 {
  background: #f1eaea;
}
.b1__blocks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.b1__item {
  display: block;
  border-radius: 36px;
  border: 2px solid #5f0000;
  background-color: #fbb;
  padding: 16px;
  color: #5f0000;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
}
.b1__item:hover {
  filter: none;
  background-color: #fff;
}

.b2 {
  background: #f1eaea;
}

.b2__title {
  color: #050810;
  text-align: center;
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 50px */
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}
.b2__text1 {
  color: #7b7b7b;
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 48px;
}
.b2__blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.b2__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 20px;
  background: #f4cccc;
  box-shadow: 2px 2px 0px 0px #ccac03;
  padding: 40px 24px;
}
.b2__img {
  max-width: 60px;
  width: 100%;
}
.b2__label {
  color: #050810;
  font-family: Roboto;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 32.5px */
  letter-spacing: -0.52px;
}
.b2__text {
  color: #050810;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%; /* 27.9px */
  letter-spacing: -0.36px;
}
.b3-bg {
  background: #f1eaea;
}
.b3__title {
  color: #050810;
  text-align: center;
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 50px */
  letter-spacing: -0.8px;
  margin-bottom: 60px;
}
.b3__blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.b3__item {
  border-radius: 20px;
  background: #f4cccc;
  box-shadow: 2px 2px 0px 0px #ccac03;
  align-items: center;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.b3__img {
  height: 240px;
}
.b3__img img {
  object-fit: cover;
}

.b3__label {
  color: #050810;
  text-align: center;
  font-family: Roboto;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 32.5px */
  letter-spacing: -0.52px;
}
.b3__text {
  color: #050810;
  text-align: center;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%; /* 27.9px */
  letter-spacing: -0.36px;
}

.b3__btn img {
  max-width: 48px;
  width: 100%;
}
.b3__btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.b3__btn span {
  display: block;
  width: fit-content;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.32px;
  border-radius: 40px;
  padding: 6px 36px;
  background: #cc0303;
  box-shadow: 2px 2px 0px 0px #000;
}

.b5__blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.b5__wrapper {
  border-radius: 32px;
  border: 2px solid #5f0000;
  background: #cc0303;
  padding: 20px;
}
.b5__item {
  gap: 32px;
  padding: 20px;
  border-radius: 32px;
  background: #f4cccc;
  margin-bottom: 16px;
}
.b5__content {
  display: flex;
  flex-direction: column;
}
.b5__label {
  color: #050810;
  font-family: Roboto;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 32.5px */
  letter-spacing: -0.52px;
  margin-bottom: 16px;
}

.b5__text {
  flex-grow: 1;
  color: #050810;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%; /* 27.9px */
  letter-spacing: -0.36px;
  margin-bottom: 16px;
}

.b5__label2 {
  color: #000;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 155%; /* 34.1px */
  letter-spacing: -0.44px;
  margin-bottom: 12px;
}
.b5__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.b5__features {
  border-radius: 32px;
  background: #f4cccc;
  padding: 20px;
}
.b5__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.b5__row img {
  width: 32px;
  height: 27px;
}

.b5__img img {
  border-radius: 32px;
  object-fit: cover;
}
.b5__block1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 16px;
  border-radius: 16px;
  border: 2px solid #cc0303;
  background: #fff;
  padding: 8px 36px;
}
.b5__num {
  color: #5f0000;
  font-family: Almarai;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.b5__label3 {
  color: #5f0000;
  font-family: Almarai;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.b5__stars {
  max-width: 75px;
  width: 100%;
}
.b5__num2 {
  color: #5f0000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.b5__block1 .jC {
  flex-direction: row !important;
}
.contact__title {
  color: #04040e;
  font-family: Roboto;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 62.5px */
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-inline: auto;
  border-radius: 8px;
  border: 2px solid #cc0303;
  background: #fff;
  padding: 24px;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #cc0303;
}
.form input,
.form textarea {
  display: block;
  width: 100%;
  color: #000;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.28px;
  border-radius: 6px;
  border: 1px solid #cc0303;
  padding: var(--Other-Gap-3, 12px) var(--Other-Gap-4, 16px);
}
.form textarea {
  height: 120px;
}
.form button img {
  max-width: 48px;
  width: 100%;
}
.form button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form button span {
  display: block;
  width: fit-content;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.32px;
  border-radius: 40px;
  padding: 6px 36px;
  background: #cc0303;
  box-shadow: 2px 2px 0px 0px #000;
}
.footer {
  padding-block: 66px;
  background: #fff3f3;
}
.footer__inner {
  flex-wrap: wrap;
  gap: 40px 20px;
  margin-bottom: 32px;
}
.footer__logo {
  display: block;
  color: #050810;
  font-family: Phudu;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
.footer__text {
  color: #050810;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}
.footer__s {
  max-width: 116px;
  width: 100%;
}

.footer__links1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links1 a {
  display: block;
  color: #050810;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 187.5% */
}

.footer__links2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links2 a {
  display: block;
  color: #050810;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 187.5% */
}
.footer__copyright {
  color: #050810;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 230.769% */
}
@media (max-width: 1200px) {
  .header__nav {
    display: none;
    transform: translateY(-100%);
  }
  .header__menu {
    display: block;
  }

  .show-menu .menu-img {
    display: none;
  }
  .show-menu .check__wrapper {
    position: relative;
    z-index: 1;
  }
  .show-menu .close-img {
    display: block;
  }
  .show-menu .header {
    background-image: initial;
    background-color: #fff;
  }
  .show-menu .header__nav {
    display: flex;
    padding: 0;
    border: none;
    position: absolute;
    bottom: 0;
    gap: 0;
    left: 0;
    width: 100%;
    right: 0;
    flex-direction: column;
    background-color: #fff;
    z-index: 10;
    gap: 0;
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(98%);
    border-radius: 0;
    padding: 0;
  }
  .show-menu .header__nav a {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #cc0303;

    width: 100%;
  }
  .show-menu .header__nav a:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .contact__title,
  .home__title {
    font-size: 32px;
  }
  h2 {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }
  .footer__inner {
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  .header__logo {
    font-size: 20px;
  }
}

/* terms */
.terms {
  flex-grow: 1;
  padding-block: 50px;
}

.terms__title {
  color: #050810;
  text-align: center;
  font-family: Roboto;
  font-size: 80px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.terms__subtitle {
  color: #050810;
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.terms p {
  color: #050810;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}
/* thank-page */
.th__title {
  color: #5f0000;
  text-align: center;
  font-family: Roboto;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 33px */
  letter-spacing: 1.2px;
  margin-bottom: 32px;
}
.th__suptitle {
  color: #5f0000;
  text-align: center;
  font-family: Phudu;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}
.th__btn {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 16px 32px;
  border-radius: 40px;
  background: #cc0303;
  box-shadow: 2px 2px 0px 0px #000;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .th__title {
    font-size: 32px;
  }
}
/* cookie */
.cookie-notification {
  position: fixed;
  bottom: 0;
  box-sizing: border-box;
  z-index: 5;
  right: 0;
  width: 100%;
  border-radius: 2px;
  background: #fff;
  max-width: 587px;
  padding: 40px 25px;
  display: none;
}
.cookie__img {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -64%);
}
.cookie__title {
  color: #333;
  text-align: center;
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 44px */
  letter-spacing: 1.6px;
  margin-bottom: 16px;
}

.cookie__text {
  color: #333;
  text-align: center;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  margin-bottom: 32px;
}

.cookie__btns {
  max-width: 247px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookieBtn {
  display: block;
  width: 100%;
  border-radius: 40px;
  background: #cc0303;
  box-shadow: 2px 2px 0px 0px #000;
  padding: 16px 32px;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  text-transform: capitalize;
}
.cookieBtn:last-child {
  background: transparent;
  color: #333;
}
@media (max-width: 620px) {
  .cookie-notification {
    max-width: initial;
    padding: 24px 0;
  }
  .cookie__img {
    width: 80px;
    height: 80px;
  }
}
