fot* {
  padding: 0;
  margin: 10;
  box-sizing: border-box;
}
:root {
  --textPrimary: #ffffff;
  --background: #212121;
  --blueColor: #3959d9;
}

html,
body {
  font-family: OpenSansRegular, sans-serif;
  height: 100%;
  background:  #131313;
}

h1 {
  font-size: 40px;
  text-align: center;
  color: #ffffff;
}
h2 {
  font-size: 34px;
  color: white;
  text-align: center;
}
h3 {
  font-size: 24px;
  color: #9fa0a8;
}

p {
  font-size: 16px;
  line-height: 24px;
  color: var(--textPrimary);
  margin: 15px 0;

  text-align: justify;
}

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

ul {
  list-style: none;
  padding-left: 50px;
  margin: 20px 0;
}

ul li {
  position: relative;
  line-height: 24px;
  color: var(--textPrimary);
}

ul li::before {
  content: "♣";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 2px;
  left: -25px;
  color: #f32020;
}

.wrapper {
  min-height: 100vh;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--background);
  z-index: 99;
  box-shadow: 0 0 10px 5px rgba(255, 253, 253, 0.1);
  padding: 15px 0;
  /* opacity: 0.9; */
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

.header .logo {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 40%;
}

.header .title {
  font-size: 28px;
  color: var(--blueColor);
  font-weight: 600;
}

.header .title:hover {
  color: #9fa0a8;
}

.buttons31 .btn {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  padding: 10px 30px;
  margin-left: 8px;
  cursor: pointer;
  border-radius: 8px;
}
.buttons31 .reg {
  background-color: #da2c2c;
}
.buttons31 .reg:hover {
  background-color: linear-gradient(103.42deg, #f20303 6.06%, #121213 77.61%);
}
.buttons31 .sign-up {
  border: 1px solid #3959d9;
  color: #3959d9;
}
.buttons31 .sign-up:hover {
  background: #c4cdf4;
}
.main-body {
  max-width: 1200px;
  margin: 100px auto 0;
  flex: 1 1 auto;
}

.main-body img {
  width: 90%;
  margin: 15px;
}
.content {
  max-width: 1000px;
  margin: 30px auto 0;
  background-color: #212121;
}

#customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

#customers td,
#customers th {
  border: 1px solid #ffffff;
  padding: 8px;
  color: white;
}

#customers tr:nth-child(even) {
  background-color: #000000;
}

#customers tr:hover {
  background-color: rgb(0, 0, 0);
  color: white;
}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #000000;
  color: white;
}

.mosttable {
  overflow-x: scroll;
  width: 100%;
}
.img-block {
  width: 90%;
  margin: 30px 0;
}
.img-block .flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5rem;
}
.img-block .flex img {
  width: 100px;
}

.img-heip {
  width: 300px;
}

.main-footer {
  box-shadow: 0 0 10px 5px #212121;
  width: 100%;
  margin-top: 100px;
}
.main-footer .footer-text {
  text-align: center;
  font-size: 14px;
  padding: 15px 0;
}



.faq {
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
}

h3 {
  color: #FF0000;
}

/* Mobile */

@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 24px;
  }
  .buttons31 {
    display: flex;
  }
  .header .logo {
    min-width: 20%;
  }
  .content {
    padding: 0 15px;
  }
  ul {
    padding-left: 40px;
  }
  .buttons31 .btn {
    font-size: 16px;
  }
  .img-block .flex {
    display: block;
  }
  .img-block .flex:nth-child(2) {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
  .img-block .flex .img {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }

  .btn span:after {
    content: "\00bb";
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }

  .btn:hover span {
    padding-right: 25px;
  }

  .btn:hover span:after {
    opacity: 1;
    right: 0;
  }
}
.betonred {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.transparent-button {
  background: linear-gradient(to right, #ff0000, #1f1e1e);
  border: none;
  color: whitesmoke;
  padding: 20px 70px;
  font-size: 20px;
  border-radius: 10px;
  opacity: 0.8;
  font-weight: bold;
}

.transparent-button:hover {
  opacity: 1;
  cursor: pointer;
}
blockquote {
  margin: 0;
  background: white;
  border-top: 5px solid #eaf9f9;
  border-bottom: 5px solid #eaf9f9;
  color: #3a3c55;
  padding: 30px 30px 30px 90px;
  position: relative;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}
blockquote:before {
  content: "\201C";
  font-family: serif;
  position: absolute;
  left: 20px;
  top: 20px;
  color: white;
  background: #f92003;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 50px;
  line-height: 1.35;
  text-align: center;
}
blockquote p {
  margin: 0 0 16px;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
blockquote cite {
  font-style: normal;
}

.photo {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.photoo {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}