* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-family: Poppins, Helvetica, Arial, Sans-Serif, serif;
  scroll-behavior: smooth;
}

html,
h1,
body,
h2,
h3,
h4,
th,
td,
tr,
h5,
h6,
table,
tr,
td,
th,
button,
p,
a,
li,
img {
  margin: 0;
  padding: 0;
}

body {
  background: #101114;
}

header {
  width: 100%;
  z-index: 1000;
}

header > div:first-of-type {
  padding:  10px 0;
  background-color: black;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10000;
  margin: 0 auto;
  word-wrap: break-word;

}

.payments {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 50px;
  margin-bottom: 20px;
  gap: 10px;
  flex-wrap: wrap;
}

.container {
  padding-top: 102px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px ;
}

.container > div {
  padding: 15px;
  border-radius: 20px;
  width: 90%;
}

span {
  font-size: 35px;
  font-weight: 400;
  display: block;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
}

header > div:nth-of-type(2) {
  padding-top: 40px;
}

.main_image {
  float: right;
  width: 50%;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px auto;
  text-align: center;
  border-bottom: 1.5px solid #ff2400;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

main {
  padding: 140px 100px 40px;
  margin: 0 auto;
}

p, ul, ol, li {
  font-size: 16px;
  font-weight: 300;
  margin: clamp(1rem,.5em,2.5rem) auto clamp(1rem,.25em,2rem);
  line-height: 1.6;
  text-transform: none;
  color: #fff;
}

.center {
  text-align: center;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
}
table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
}
table tr th {
  background: #ff2400;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: rgba(130, 130, 130, 0.1058823529);
}

table p {
  margin: 0;
}

.table_container {
  overflow-x: auto;
}

h2, h3 {
  font-family: Mulish,Helvetica,Arial,Sans-Serif,serif;
  font-weight: 700;
  font-size: 2.2em;
  line-height: 1.143;
  margin: clamp(1rem,.5em,2.5rem) auto clamp(1rem,.25em,2rem);
}


.faq > div {
  min-width: 15em;
  position: relative;
  margin-top: 16px;
  width: calc(100% - 215px);
  margin-left: 99px;
}

.select {
  background: #ff2400;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px #ff2400 solid;
  border-radius: 0.5em;
  padding: 12px 16px;
  cursor: pointer;
}

.select > span {
  font-size: 18px;
  text-align: start;
  text-transform: none;
  letter-spacing: 1px;
  font-weight: 500;
}

.select-clicked {
  border: 1px #FFD60E solid;
  border-bottom: none;
}


.select-clicked .caret::before {
  transform: rotate(180deg);
}

.dropdown__element > div > p {
  margin: 0;
}

.menu {
  list-style: none;
  background: #ff2400;
  border: 1px #ff2400 solid;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  color: #9fa5b5;
  top: 3em;
  width: 100%;
  opacity: 0;
  display: none;
  transition: 0.2s;
  z-index: 1;
  margin-top: 16px;
}

.menu li {
  padding: 0px 16px;
  border-radius: 0.5em;
  cursor: pointer;
  font-size: 15px;
  justify-content: start;
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-open {
  display: block;
  opacity: 0.75;
  padding-left: 0;
  background-color: #ff2400;
}

.dropdown__element {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.dropdown--last {
  margin-bottom: 93px;
}

.list_titles {
  margin: 0;
}

.list_titles > li {
  margin: 0;
}

.tables {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.header_container {
  position: relative;
  justify-content: center;
  z-index: 233;
  align-items: center;
  display: flex;
  gap: 30px;
}

.list_titles > li > a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

header > div:first-of-type > div {
  margin: 0 auto;
  width: 90%;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.buttons {
  display: flex;
  gap: 20px;
}

.buttons > a {
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: 150px;
  padding: 13px 15px;
  transition: all 0.3s;
  font-weight: 600;
  background-image: linear-gradient(180deg, #33A1CA 0%, #2332E6 100%);
  border-radius: 10px 10px 10px 10px;
}

.buttons > a:last-of-type {
  background-image: linear-gradient(180deg, #33E753 0%, #059C1C 100%);
}
.faq > div {
  min-width: 15em;
  position: relative;
  margin-top: 16px;
  width: calc(100% - 215px);
  margin-left: 99px;
}

.select {
  background: #ff2400;
  color: #E4E9ED;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px #ff2400 solid;
  border-radius: 0.5em;
  padding: 12px 16px;
  cursor: pointer;
}

.container section {
  background-color: #2D3035;
  border: 1px solid gainsboro;
  padding: 10px 12px;
  border-radius: 20px;
}

p, h1, h2, h3, li, span, tr, td, i {
  color: #fff;
}

h2, h3, h1 {
  /* border-bottom: 2px solid #fff */
  color: #fff;
}

.select > span {
  font-size: 18px;
  text-align: start;
  font-weight: 500;
  color: #E4E9ED;
}

.select-clicked {
  border: 1px #FFD60E solid;
  border-bottom: none;
}

.dropdown__element > div > p {
  margin: 0;
  color: #fff;
}

.caret:after {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  transition: all 0.2s ease-in-out;
  height: 2px;
  width: 25px;
}

.caret:before {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  transform: rotate(90deg);
  transition: all 0.2s ease-in-out;
  height: 2px;
  width: 25px;
}
.dropdown {
  min-width: 15em;
  position: relative;
  margin-top: 16px;
}

.caret-rotate {
  transform: rotate(180deg);
}

.center_image {
  width: 60%;
  margin: 20px 0;
  position: relative;
  left: 50%;
  border-radius: 20px;
  transform: translateX(-50%);
}

.menu {
  list-style: none;
  background: #ff2400;
  border: 1px #ff2400 solid;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  color: #9fa5b5;
  top: 3em;
  width: 100%;
  opacity: 0;
  display: none;
  transition: 0.2s;
  z-index: 1;
  margin-top: 16px;
}

.menu li {
  padding: 0px 16px;
  border-radius: 0.5em;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-open {
  display: inline-block;
  opacity: 0.75;
  padding-left: 0;
  background-color: #ff2400;
}

.dropdown__element {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.dropdown--last {
  margin-bottom: 93px;
}

.image_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer {
  padding: 30px 0;
  background-color: #101114;
  border-top: 1px solid #686869;
  display: flex;
  justify-content: center;
  font-size: 14px;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding-top: 0;
}
.footer__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer__icons img {
  height: 30px;
}

.homepage {
  width: 40%;
  border-radius: 20px;
}

.license {
  border-radius: 20px;
  width: 300px;
}

.logo {
  width: 150px;
}

.homepage_container {
  justify-content: space-evenly;
  margin-top: 20px;
}

.text_container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}

.text_container > p {
  width: 50%;
}

::marker {
  color: #fff;
}

.promo, .bonus {
  width: 50%;
}

.mobile_container {
  justify-content: flex-start;
}

.destek_container {
  max-width: 90%;
}

.giris, .registration {
  width: 250px;
}

.list {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.list > li {
  width: calc(33% - 15px);
  margin: 0;
}

.reviews_container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px
}

.review {
  background: #ff2400;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 0 10px #b7b7b78a;
  flex: 1 0 320px;
  max-width: 100%
}

.review__top {
  display: flex;
  justify-content: space-between;
  gap: 10px
}

.review__name,.review__date {
  font-weight: 600
}

.review__top,.review__bottom {
  padding: 10px
}

.reviews_container {
  margin: 0 0 30px 0
}


@media (max-width: 1200px) {
  main {
    padding: 40px 50px;
  }
}

@media (max-width: 1024px) {
  .adres_container, .bahis_container, .oyun_container {
    flex-direction: column;
  }

  .license_container {
    flex-direction: column;
  }

  .options_container {
    flex-direction: column-reverse;
  }

  .destek_container {
    max-width: 100%;
  }

  .mobile {
    width: 250px;
  }

  .license, .bahis, .oyun {
    width: 100%;
  }

  .license {
    max-width: 300px;
  }

}

@media (max-width: 768px) {
  .homepage_container, .text_container {
    flex-direction: column;
  }

  .text_container > p {
    width: 100%;
  }

  .list > li {
    width: calc(50% - 15px);
    margin: 0;
  }

  .options {
    width: 250px;
  }

  .homepage {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 10px;
  }
  .container > div {
    width: 100%;
  }
  .center_image {
    width: 100%;
  }

  .adres, .adresi, .vpn {
    width: 100%;
  }

  ul, ol {
    padding-left: 10px;
  }

  main {
    padding: 30px 20px;
  }

  .image_container {
    flex-direction: column;
  }

  header > div:first-of-type > div {
    flex-direction: column;
    gap: 20px;
  }

  h1 {
    font-size: 2em;
  }

  .options_container {
    flex-direction: column-reverse;
  }
}

.faq > div {
  min-width: 15em;
  position: relative;
  margin-top: 16px;
  width: calc(100% - 215px);
  margin-left: 99px;
}

.select {
  background: #2a2f3b;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px #2a2f3b solid;
  border-radius: 0.5em;
  padding: 12px 16px;
  cursor: pointer;
}

.select > span {
  font-size: 18px;
  font-weight: 500;
}

.select-clicked {
  border: 1px #FFD60E solid;
  border-bottom: none;
}

.caret-rotate {
  transform: rotate(180deg);
}

.menu {
  list-style: none;
  background: #323741;
  border: 1px #363a43 solid;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  color: #9fa5b5;
  top: 3em;
  width: 100%;
  opacity: 0;
  display: none;
  transition: 0.2s;
  z-index: 1;
  margin-top: 16px;
}

.menu li {
  padding: 12px 16px;
  border-radius: 0.5em;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-open {
  display: block;
  opacity: 1;
  background-color: #353D52;
}

.dropdown__element {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.dropdown--last {
  margin-bottom: 93px;
}

.dropdown__element p {
  margin-right: 30px;
}