* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: Verdana, sans-serif;
  position: relative;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #171A28;
  font-family: Verdana, sans-serif;
}

main p,
main span,
main h1,
main h2,
main h3,
main h4,
main h5,
main figcaption,
main li {
  color: #fff;
  font-family: Verdana, sans-serif;
}


main p,
main ol,
main ul,
main figure,
main .general-table-wrapper,
main .faq-container {
  color: #fff;
  margin: 0 auto;
  width: 98%;
  max-width: 1400px;
}

main .general-table-wrapper {
  overflow-x: overlay;
}

main figure {
  margin: 0 auto;
  margin-bottom: 20px;
}

main p {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 400;
  line-height: normal;
}

main .wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}

body {
  overflow-x: hidden;
  position: relative;
  background: #171A28;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

table,
tr,
td,
tbody,
thead {
  font-family: Verdana, sans-serif;
}

input,
button {
  font-family: Verdana, sans-serif;
  border: none;
  box-shadow: none;
  transition: 0.3s;
}

input {
  outline: none;
}

p,
span,
li,
a {
  font-size: 18px;
  line-height: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
color: #FFF;
font-family: Verdana;
font-style: normal;
line-height: normal;
border-radius: 10px;
background: linear-gradient(90deg, #4B516E 0%, #1D2236 100%);
padding: 15px 30px;
margin:0 auto 20px auto;
  width: 98%;
  max-width: 1400px;

}

h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.32px;
}

h2 {
  font-size: 28px;
  line-height: 30px;
}

h3 {
  font-size: 24px;
  line-height: 28px;
}

h4 {
  font-size: 20px;
  line-height: 24px;
}

h5,
h6 {
  font-size: 18px;
  line-height: 20px;
}

p,
span,
li,
h1,
h2,
h3,

b,
i,
label,
input,
button,
td,
tr,
figcaption {
  color: #1e1e24;
}
a {
color:#02813b;
}
p {
  padding-bottom: 20px;
}

li {
  list-style: none;
}

button {
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
}

img {
  max-width: 100%;
  display: block;
}

i {
  font-style: normal;
}

#__next {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  position: relative;
  flex-grow: 1;
  padding-top: 0px;
}

.content .content-block {
  margin: 30px 0 20px 0 ;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0);
}

.content .general-ol {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 20px;
  counter-reset: counter-ol;
  width: 98%;
  max-width: 1400px;
}

.content .general-ol li {
  position: relative;
  margin-bottom: 10px;
  counter-increment: counter-ol;
  border-radius: 4px;
background: #32374F;
padding: 18px 12px 18px 40px;
font-weight: 400;
}

.content .general-ol li::before {
  position: absolute;
  content: counter(counter-ol);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 44px;
  color: #fff;
  top: 8px;
  left: 5px;
  font-size: 20px;
  border-radius: 4px;
background: #D67414;

}

.content .general-ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
  gap: 8px;
}

.content .general-ul li {
  position: relative;
  border-radius: 4px;
  padding: 18px 12px 18px 30px;
  background: #32374F;
}

.content .general-ul li::before {
  content: no-open-quote;
  position: absolute;
  width: 13px;
  height: 13px;
  left: 10px;
  top: 23px;
  background-color: #F34511;
  border-radius: 50%;
}

.pageError {
  min-height: calc(100vh - 70px);
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.imgWrap {
  display: block;
  position: relative;
}

figure {
  margin-bottom: 20px;
  text-align: center;
}

figure span {
  height: 50%;
  width: 100%;
  position: absolute;
  left: 0;
  top: -50%;
}

figcaption {
  color: #1e1e24;
  font-size: 14px;
}

.general-image {
  display: block;
  border-radius: 15px;
  max-height: 500px;
  width: auto;
  height: auto;
  margin: 0 auto 10px auto;
}

.general-image.vertical {
  max-height: 500px;
  max-width: 70%;
}

.general-image.horizontal {
  max-width: 100%;
}

.general-table {
  border-collapse: collapse;
  width: 100%;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  margin: 20px auto;
  border-radius: 18px;
}

.general-table thead {
background: #32374F;

}

.general-table .general-tr {
  background: #32374F;
}

.general-table .general-tr .general-td {
  padding: 16px;
  text-align: start;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  padding-left: 20px;
  border: 1px solid #D67414;
}

.general-table thead tr th {
  padding: 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-right: 1px solid #D67414;
  border-top: 1px solid #D67414;
  border-bottom: 1px solid #D67414;
}

.general-table thead tr th:first-child {
  border-right: 1px solid #D67414;
  border-left: 1px solid #D67414;
  border-top: 1px solid #D67414;
}

.general-table thead tr th:last-child {
  border-right: 1px solid #D67414;
  border-top: 1px solid #D67414;
}

.general-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.general-table .general-tbody tr:nth-child(2n) {
  background: #1D2236;
}

.general-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #fff;
}

.general-table th,
.general-table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}

.general-table th {
  background-color: #2c2f3a;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.general-td img {
  display: block;
  margin: 0 auto;
  width: 160px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.play-now-btn {
  background-color: #ff9800;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}
.play-now-btn:hover {
  background-color: #e68a00;
}

.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.rating .stars {
  color: #ffc107;
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .general-table th, .general-table td {
    padding: 10px;
    font-size: 0.9em;
  }
  .general-td img {
    width: 120px;
  }
}


@media screen and (max-width: 460px) {
  main .general-table-wrapper {
    width: 95%;
  }

  .general-table thead tr th {
    padding: 5px;
    font-size: 16px;
  }

  .general-table .general-tr .general-td {
    padding: 5px;
    font-size: 16px;
    line-height: 20px;
  }
}

.faq-container .faq-item {
  margin: 0 auto;
  position: relative;
  min-height: 54px;
  margin-bottom: 20px;
  background-color: #fff;
  z-index: 5;
  border-radius: 26px;
  transition: all 0.4s ease;
  border: 1px solid #1a2033;
}

.faq-container .faq-item:hover .icon::before,
.faq-container .faq-item:hover .icon::after {
  background: #0e121c;
}

.faq-container .faq-item:hover {
  border-color: #0e121c;
}

.faq-container .faq-item:hover .faq-question {
  color: #0e121c;

}

.faq-container .faq-question {
  color: #0e121c;
  position: relative;
  padding-bottom: 0;
  font-weight: 700;
  font-size: 18px;
  top: 15px;
  width: 96%;
  line-height: 22px;
  padding-right: 25px;
  background: transparent;
}

.faq-container .faq-answer {
  width: 96%;
  padding: 10px 0 22px 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  top: 10px;
}

.faq-container .icon {
  height: 18px;
  position: absolute;
  width: 18px;
  right: 25px;
  top: 25px;
  z-index: 2;
}

.faq-container .icon::before,
.faq-container .icon::after {
  background: #0e121c;
  content: no-open-quote;
  height: 4px;
  right: 0;
  position: absolute;
  top: 0;
  width: 18px;
  transition: transform 0.4s ease;
}

.faq-container .toggle {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  z-index: 3;
}

.faq-container .bg-active {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(242, 141, 36, 0.0784313725);
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
}

.faq-container .toggle:checked~.bg-active {
  opacity: 1;
}

.faq-container .toggle:checked~.icon::before,
.faq-container .toggle:checked~.icon::after {
  background: #f28d24;
}

.faq-container .toggle:checked~.faq-question {
  color: #f28d24;
}

.faq-container .toggle:checked~.faq-answer {
  color: #f28d24;
}

.faq-container .toggle:not(:checked)~.icon:before {
  transform: rotate(180deg);
}

.faq-container .toggle:not(:checked)~.icon:after {
  transform: rotate(90deg);
}

.faq-container .toggle:checked~.faq-answer {
  height: auto;
  opacity: 1;
  z-index: 2;
}

.columns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.columns p {
  width: 100%;
}

.columns .column {
  width: 48%;
}

.columns .column-header {
  padding-top: 0;
  text-align: left;
}

.columns .column-p {
  position: relative;
  margin-left: 15px;
  padding-left: 25px;
}

.columns .column-p::before {
  content: no-open-quote;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(/list.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 8px;
}

.columns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.columns p {
  width: 100%;
}

.columns .column {
  width: 48%;
}

.columns .column-header {
  padding-top: 0;
  text-align: left;
}

.columns .column-p {
  position: relative;
  margin-left: 15px;
  padding-left: 25px;
}

.columns .column-p::before {
  content: no-open-quote;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(/list.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 8px;
}

@media screen and (max-width: 600px) {
  main p {
    font-size: 18px;
  }
}


.frame {
  width: 640px;
  max-width: 98%;
  margin: 32px auto;
  aspect-ratio: 4/3;
}

.frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.table_of_contents_wrapper {
  max-width: 1128px;
  margin: 0 auto;
  width: 96%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.table_of_contents {
  max-width: 400px;
  border-radius: 8px;
  border: 1px solid #f28d24;
}

.table_of_contents .toggle {
  display: none;
}

.table_of_contents .lbl-toggle {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #f28d24;
  width: 100%;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.table_of_contents .table_box {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
  display: flex;
  width: 100%;
  max-width: 500px;
  flex-direction: column;
}

.table_of_contents .toggle:checked+.lbl-toggle+div {
  max-height: 1000px;
  padding: 20px;
  background: #181616;
  border-radius: 8px;
  gap: 20px;
}

.table_of_contents .table_link {
  position: relative;
  padding-left: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
}

.table_of_contents .table_link:hover {
  color: #f28d24;
}

.content404Page.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 100%;
  width: 100%;
  background: #171A28;
}

.content404Page.wrapper .content404 {
  display: flex;
  flex-direction: column;
  width: 500px;
}

.content404Page.wrapper .content404 img {
  display: block;
  margin: 0 auto;
}

.content404Page.wrapper .content404 h1 {
  color: #fff;
  background: transparent;
  width: 100%;
  text-align: center;
}

.content404Page.wrapper .content404 button {
  display: inline-block;
  padding: 5px 15px;
  background: #F34511;
  box-shadow: 0 0 12px 0 rgba(0, 1, 71, 0.81);
  border-radius: 50px; 
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

.content404Page.wrapper .content404 button:hover {
  opacity: 0.8;
}

.contentMap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 100%;
  width: 100%;
  background: #205685;
}

.contentMap h1 {
  text-align: left;
  color: #1e1e24;
  margin-bottom: 64px;
}

.contentMap .sitemapLinks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 640px;
}

.contentMap .sitemapLinks a {
  display: inline-block;
  color: #fff;
  margin: 0 auto 12px;
  position: relative;
}

.contentMap .sitemapLinks a:before {
  position: absolute;
  left: -16px;
  top: 10px;
  content: no-open-quote;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.contentMap .sitemapLinks a:hover {
  color: #92c637;
}

.img-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-overlay:target {
  visibility: visible;
  opacity: 1;
}

.img-overlay .img-popup {
  margin: 70px auto;
  padding: 20px;
  border-radius: 5px;
  width: 100%;
  position: relative;
  transition: all 5s ease-in-out;
}

.img-overlay .img-popup.horizontal {
  aspect-ratio: 1/0.2;
}

.img-overlay .img-popup.vartical {
  aspect-ratio: 0.5/1;
}

.button-block {
  padding: 24px 16px;
  text-align: center;
  margin: 10px 0;
  background-color: rgba(0, 0, 0, 0);
}

.button-block button {
    display: flex;
    justify-content: center;
    background: #F34511;
    box-shadow: 0 0 12px 0 rgba(0, 1, 71, 0.81);
    border-radius: 50px;
    font-size: 24px;
    line-height: 22px;
    font-weight: 700;
    padding: 15px 30px;
    text-transform: uppercase;
    color: #fff;
    transition: 0.4s;
    height: auto;
    margin: 0 auto;
    width: 400px;
}


.quote {
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 40px;
  width: 96%;
  max-width: 600px;
  border-radius: 12px;
  background: #e50539;
}

.quote p {
  padding: 40px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #fff;
}

.quote::after,
.quote::before {
  position: absolute;
  content: no-open-quote;
  width: 24px;
  height: 20px;
  background-image: url(/quote-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.quote::after {
  left: -5px;
  top: -10px;
}

.quote::before {
  right: -5px;
  bottom: -10px;
  transform: rotate(180deg);
}

.slots-wrapper {
  background: #000;
  margin-bottom: 30px;
}

.slots-wrapper .slots-list {
  max-width: 1128px;
  margin: 0 auto;
  width: 96%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.slots-wrapper .slots-list .slot {
  position: relative;
  border-radius: 4px;
  width: 300px;
  height: 188px;
  margin: 20px;
}

.slots-wrapper .slots-list .slot .slot-text {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 0;
}

.slots-wrapper .slots-list .slot .slot-text p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  z-index: 3;
  position: relative;
  padding-bottom: 0;
}

.slots-wrapper .slots-list .slot .slot-img {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.slots-wrapper .slots-list .slot .slot-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.slots-wrapper .slots-list .slot .slot-img amp-img {
  object-fit: cover;
}

.slots-wrapper .slots-list .slot .slot-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.slots-wrapper .slots-list .slot .slot-back .slot-review {
  padding: 16px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  border-radius: 50px;
  background: #a91704;
  transition: 0.4s;
}

.slots-wrapper .slots-list .slot .slot-back .slot-review:hover {
  background: linear-gradient(135deg, #df0000 0%, #a10000 100%);
}

.slots-wrapper .slots-list .slot .slot-back .toggle {
  display: none;
}

.slots-wrapper .slots-list .slot .slot-back .lbl-toggle {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #df0000;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.slots-wrapper .slots-list .slot .slot-back .lbl-toggle:hover {
  background: linear-gradient(135deg, #df0000 0%, #a10000 100%);
}

.slots-wrapper .slots-list .slot .slot-back .toggle:checked+.lbl-toggle {
  display: none;
}

.slots-wrapper .slots-list .slot .slot-back .slot-box {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
  display: flex;
  width: 100%;
  max-width: 500px;
  flex-direction: column;
}

.slots-wrapper .slots-list .slot .slot-back .slot-box a {
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #df0000;
  width: 48%;
  color: #fff;
  border-radius: 8px;
}

.slots-wrapper .slots-list .slot .slot-back .slot-box button {
  width: 48%;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
}

.slots-wrapper .slots-list .slot .slot-back .slot-box button:hover {
  color: #a91704;
  border: 1px solid #a91704;
  background: #fff;
}

.slots-wrapper .slots-list .slot .slot-back .toggle:checked+.lbl-toggle+div {
  max-height: 300px;
  background: #000;
  padding: 20px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 1250px) {

  main h1,
  main h2,
  main h3,
  main h4,
  main h5,
  main h6,
  main p,
  main ol,
  main ul,
  main figure,
  main .general-table-wrapper,
  main .faq-container {
    width: calc(100% - 32px);
  }

  main .wrapper {
    /* padding: 25px 0; */
    width: 98%;
  }

  h1 {
    font-size: 26px;
    line-height: 30px;
  }

  h2 {
    font-size: 22px;
    line-height: 32px;
  }

  h3 {
    font-size: 20px;
    line-height: 30px;
  }

  h4 {
    font-size: 18px;
    line-height: 28px;
  }

  h5,
  h6 {
    font-size: 16px;
    line-height: 26px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    padding: 15px ;
  }

  .general-table .general-tr .general-td {
    padding-left: 10px;
    padding-right: 10px;
  }

  .content .contentMain {
    width: 100%;
  }

  .content .general-ol li,
  .content .general-ul li {
    width: 100%;
  }

  .columns {
    flex-wrap: wrap;
  }

  .columns .column {
    width: 100%;
  }

  .column-p {
    margin-left: 0;
  }

  .button-block button {
    padding: 14px 5px;
  }

  .quote {
    width: calc(100% - 32px);
  }

  .faq-container .faq-item {
    border-radius: 14px;
  }

  .faq-container .faq-question {
    width: 100%;
    padding-left: 20px;
    padding-right: 30px;
  }

  .faq-container .faq-answer {
    width: 100%;
    padding-left: 20px;
  }

  .faq-container .bg-active {
    border-radius: 14px;
  }

  .faq-container .icon {
    right: 15px;
  }
}

@media screen and (max-width: 400px) {
  .general-table {
    max-width: 100%;
  }

  .general-table-wrapper {
    max-width: 100%;
  }

  .button-block button {
    font-size: 20px;
    width: 98%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden;
  background: #f5f5f5;
}

.loginPage {
  min-height: 100vh;
  background: linear-gradient(90deg, #efe0fa, #be78f0);
}

.loginPage .header_logo {
  margin: 0 auto;
  width: 300px;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loginPage .login {
  overflow: hidden;
  background-color: #fff;
  padding: 40px 30px 30px 30px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  transform: translate(-50%, -50%);
  transition: transform 300ms, box-shadow 300ms;
  box-shadow: 5px 10px 10px rgba(190, 120, 240, 0.2);
}

.loginPage .login::before,
.loginPage .login::after {
  content: no-open-quote;
  position: absolute;
  width: 600px;
  height: 600px;
  border-top-left-radius: 40%;
  border-top-right-radius: 45%;
  border-bottom-left-radius: 35%;
  border-bottom-right-radius: 40%;
  z-index: -1;
}

.loginPage .login::before {
  left: 40%;
  bottom: -130%;
  background-color: rgba(158, 75, 220, 0.15);
  animation: wawes 6s infinite linear;
}

.loginPage .login::after {
  left: 35%;
  bottom: -125%;
  background-color: rgba(190, 120, 240, 0.2);
  animation: wawes 7s infinite;
}

.loginPage .login>input {
  display: block;
  font-size: 16px;
  background: #fff;
  width: 100%;
  border: 0;
  margin: 15px -10px;
  padding: 10px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.loginPage .login>input:focus {
  transform: scale(1.05);
}

.loginPage .login>.loginButton {
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  width: 80px;
  text-align: center;
  background-color: #9e4bdc;
  transition: background-color 300ms;
  padding: 10px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.loginPage .login>.loginButton button {
  color: #fff;
}

.loginPage .login>.loginButton:hover {
  background-color: #b361ed;
}

@keyframes wawes {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.footer {
  display: block;
  background: #171A28;
  box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

.footer .footerInner {
  display: block;
  text-align: center;
}

.footer .footerInner .dmca-badge {
  display: block;
  margin-top: 4px;
  margin-bottom: 8px;
}

.footer .footerInner .dmca-badge img {
  display: block;
  margin: 0 auto;
}

.footer .footerInner .copyright {
  color: #fff;
  font-size: 15px;
}

.footer .footerInner .menu {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  gap: 10px;
}

.footer .footerInner .menu a {
  color: #fff;
  margin: 0 5px 5px 5px;
}

.footer .scrollTop {
  background: #f34511;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 100px;
  right: 20px;
  opacity: 0;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.footer .scrollTop.pam_content {
  opacity: 1;
}

.footer-block-btn {
  z-index: 5;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 60px;
  padding-right: 16px;
  padding-left: 16px;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #005b34 0%, #039b40 100%);
}

.footer-block-btn .buttons {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-block-btn .buttons .regButton {
  background: linear-gradient(209.84deg, #9ad201 19.35%, #5b9b01 82.67%);
  height: 40px;
  background-position: center;
  color: #fff;
  font-family: Verdana;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 11px;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 4px;
}

.footer-block-btn .buttons .regButton:hover {
  opacity: 0.8;
}

.footer-block-btn .buttons .logButton {
  background: rgba(0, 0, 0, 0);
  height: 40px;
  background-position: center;
  border: 1px #fff solid;
  color: #fff;
  font-family: Verdana;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 11px;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 4px;
}

.footer-block-btn .buttons .logButton:hover {
  opacity: 0.8;
}

@media (max-width: 1250px) {
  .footer {
    padding: 20px 0 20px 0px;
  }

  .footer-block-btn {
    display: flex;
  }
}

@media (max-width: 410px) {
  .footer .footerInner .menu {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-block-btn .buttons .regButton {
    font-size: 13px;
    padding: 10px 10px;
  }

  .footer-block-btn .buttons .logButton {
    font-size: 13px;
    padding: 10px 10px;
  }
}

@media (max-width: 310px) {
  .footer-block-btn .buttons .regButton {
    font-size: 12px;
    padding: 5px 5px;
  }

  .footer-block-btn .buttons .logButton {
    font-size: 12px;
    padding: 5px 5px;
  }
}

.icon {
  position: relative;
  width: 28px;
  height: 28px;
}

.icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.icon span:nth-child(1) {
  top: 5px;
}

.icon span:nth-child(2) {
  top: 47%;
}

.icon span:nth-child(3) {
  bottom: 50%;
}

.icon span:nth-child(4) {
  bottom: 5px;
}

.header {
  background: #171A28;
  max-height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 10px 40px;
}

.header .headerInner {
  height: 100%;
}

.header .headerInner .headerWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.header .headerInner .logo {
  position: relative;
  left: 35px;
}

.header .headerInner .toggle {
  width: 28px;
  height: 28px;
  left: 40px;
  top: 4px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  z-index: 3;
}

.header .headerInner .toggle:checked~.headerWrapper .icon span:nth-child(1) {
  transform: scaleX(0);
}

.header .headerInner .toggle:checked~.headerWrapper .icon span:nth-child(2) {
  transform: rotate(45deg);
}

.header .headerInner .toggle:checked~.headerWrapper .icon span:nth-child(3) {
  transform: rotate(-45deg);
}

.header .headerInner .toggle:checked~.headerWrapper .icon span:nth-child(4) {
  transform: scaleX(0);
}

.header .headerInner .toggle:checked~.menu {
  height: 100%;
  opacity: 1;
  padding-bottom: 40px;
  padding-top: 37px;
}

.header .headerInner .logo a {
  display: block;
}

.header .headerInner .logo .ampLogo {
  position: relative;
}

.header .headerInner .logo .ampLogo button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.header .headerInner .menu {
  height: 0;
  opacity: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.header .headerInner .menu a {
color: #FFF;
font-family: Verdana;
font-size: 22px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
}

.header .headerInner .menu a:hover {
  color: #F34511;
}

.buttons .regButton {
    display: flex;
    justify-content: center;
    position: relative;
    margin-right: 16px;
    background: #F34511;
    box-shadow: 0 0 12px 0 rgba(0, 1, 71, 0.81);
    border-radius: 50px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    padding: 12px 24px;
    text-transform: uppercase;
    color: #fff;
    transition: 0.4s;
}

.buttons .regButton:hover {
  opacity: 0.8;
}

.buttons .logButton {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  height: 40px;
  background-position: center;
  border: 1px #fff solid;
  color: #fff;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  padding: 20px 20px;
  text-transform: uppercase;
  border-radius: 4px;
}

.buttons .logButton:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1960px) {
  .header .headerInner .toggle {
    left: 16px;
    top: 3px;
  }

  .header .headerInner .logo {
    left: unset;
  }
}


@media screen and (max-width: 800px) {
  .header .buttons .regButton {
    display: none;
  }
  .header .headerInner .headerWrapper {
    flex-direction: column;
    gap: 10px;
  }
}

.contentSidebar {
  width: 350px;
  height: 540px;
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 100px;
  padding: 20px;
  background: #1b243a;
  border-radius: 15px;
}

.contentSidebar .appName {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.contentSidebar .appImg {
  display: flex;
  justify-content: center;
}

.contentSidebar .appItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  padding: 10px;
  margin: 10px 0;
  position: relative;
}

.contentSidebar .appItem button {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.contentSidebar .appItem .appInfo {
  width: calc(100% - 40px);
}

.contentSidebar .appItem .appInfoTitle {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  display: block;
}

.contentSidebar .appItem .appInfoSubtitle {
  font-size: 13px;
  color: #fff;
  line-height: 20px;
  display: block;
}

.contentSidebar .appItem:nth-child(1n) {
  background: #8d53e9;
}

.contentSidebar .appItem:nth-child(1n):hover {
  background: #712cde;
}

.contentSidebar .appItem:nth-child(2n) {
  background: #00b7ff;
}

.contentSidebar .appItem:nth-child(2n):hover {
  background: #2ca0ce;
}

@media screen and (max-width: 1250px) {
  .contentSidebar {
    display: none;
  }
}

.burger {
  display: none;
  position: relative;
}

.mobileMenu {
  position: fixed;
  top: 0;
  right: 0%;
  display: block;
  z-index: 5;
  background: #171A28;
  width: 100%;
  max-width: 350px;
  min-height: 100vh;
  padding: 30px 20px;
  transition: right 0.8s;
}

.mobileMenu .buttons {
  display: block;
  margin-top: 32px;
}

.mobileMenu .buttons button {
  display: block;
  margin: 0 auto 12px;
  width: 50%;
}

.mobileMenu[hidden] {
  right: -200%;
}

.mobileMenu .mobileMenuTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 75px;
}

.mobileMenu .mobileMenuLinks {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobileMenu .mobileMenuLinks a {
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.mobileMenu .mobileMenuLinks a:active {
  color: #181616;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: block;
}

.overlay[hidden] {
  display: none;
}

@media screen and (max-width: 630px) {
  .burger {
    display: block;
  }
  .header .headerInner .menu {
    display: none;
  }
  .header .headerInner .headerWrapper {
    flex-direction: row;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  padding-top: 25px;
  overflow-x: hidden;
}

.breadcrumbs a {
  color: #fff;
  font-size: 14px;
}

.breadcrumbs a:hover {
  text-decoration: none;
}

.breadcrumbs .last {
  position: relative;
  margin-left: 10px;
  font-size: 14px;
}

.breadcrumbs a:after {
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url(/arrow-right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 10px;
  content: no-open-quote;
}

@media screen and (max-width: 1250px) {
  .breadcrumbs.wrapper {
    margin-top: 15px;
  }
}


.banner {
  display: flex;
  align-items: center;
  padding-top: 15px;
  flex-direction: column;
  gap: 20px;
  height: 353px;
  width: 98%;
  max-width: 1400px;
  margin: 60px auto 0 auto;
  border-radius: 20px;
}

.banner .banner-inner {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 30px 0 30px;
  gap: 20px;
  background-image: url(/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.banner .banner-inner .banner-info {
  position: relative;
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  z-index: 3;
  gap: 15px;
}


.banner .banner-inner .banner-right {
  background: url(/img.webp) no-repeat;
  background-size: contain;
  width: 528px;
  height: 398px;
  position: absolute;
  top: 3%;
  right: 16%;
  z-index: 2;
}

.banner-btn {
    display: flex;
    align-items: center;
    margin: 0;
    position: relative;
    z-index: 5;
}

.banner .btn {
    display: flex;
    justify-content: center;
    position: relative;
    background: #F34511;
    box-shadow: 0 0 12px 0 rgba(0, 1, 71, 0.81);
    border-radius: 50px;
    font-size: 24px;
    line-height: 22px;
    font-weight: 700;
    padding: 15px 30px;
    text-transform: uppercase;
    color: #fff;
    transition: 0.4s;
    height: auto;
    margin: 0;
    width: 326px;
}
.banner-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
    width: 100%;
}
.banner-text p {
  color: #D67414;
  font-family: Verdana;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 0;
  margin: 0;
  width: 100%;
}
.banner-text .colored {
  color: #fff;
font-family: Verdana;
font-size: 42px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
  padding: 0;
  margin: 0;
    width: 100%;
}

.banner.btn:hover {
  opacity: 0.8;
}


@media screen and (max-width: 1100px) {
.banner .banner-inner .banner-right {
    right: -2%;
}
}
@media screen and (max-width: 930px) {
.banner-text .colored {
    width: 99%;
}
}
@media screen and (max-width: 800px) {
.banner {
  margin: 100px auto 0 auto;
}
.header {
      height: 100%;
      max-height: 80px;
}
.header .headerInner .menu {
  height: unset;
}
}
@media screen and (max-width: 768px) {
.banner .banner-inner .banner-right {
    right: -15%;
}
.banner-btn,
.banner .btn {
  width: 100%;
}
}
@media screen and (max-width: 630px) {
    .banner {
        margin:60px auto 0 auto;
    }
  }
@media screen and (max-width: 560px) { 
.banner .banner-inner .banner-right {
  display: none;
}
.banner .banner-inner {
background-position: 0;
}
}



.nav-submenu {
  position: relative;
  height: 100%;
}

.nav-submenu:hover .nav-submenu-list {
  display: flex;
}

.nav-submenu .nav-submenu-link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  height: 55px;
  display: flex;
  align-items: center;
}

.nav-submenu .nav-submenu-list {
  position: absolute;
  background: #000;
  top: 40px;
  left: -10px;
  width: 160px;
  flex-direction: column;
  padding: 10px 10px 0px 10px;
  display: none;
}

.nav-submenu .nav-submenu-list a {
  margin-bottom: 10px;
  margin-right: 0px;
}

@media screen and (max-width: 1250px) {
  #mobileMenu .nav-submenu {
    margin-top: 20px;
  }

  #mobileMenu .nav-submenu-link {
    color: #df0000;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    display: block;
    height: auto;
  }

  #mobileMenu .nav-submenu-list {
    display: flex;
    width: 100%;
    left: 0;
    position: relative;
    top: 0;
  }
}

.navButtons.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid #5b9b00;
}

.navButtons.wrapper .navButtonsItem {
  position: relative;
}

.navButtons.wrapper .navButtonsItem button {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 5;
}

@media screen and (max-width: 1250px) {
  .navButtons.wrapper .navButtonsItem {
    width: 120px;
    height: 90px;
  }

  .navButtons.wrapper .navButtonsItem img {
    width: 100%;
    height: 100%;
  }

  .navButtons.wrapper .navButtonsItem button {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 5;
  }

  .navButtons.wrapper .navButtonsItem:nth-child(5),
  .navButtons.wrapper .navButtonsItem:nth-child(6) {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .navButtons.wrapper {
    padding: 10px;
    gap: 5px;
    margin-top: 15px;
    margin-bottom: 5px;
  }

  .navButtons.wrapper .navButtonsItem {
    margin: 0 auto;
  }

  .navButtons.wrapper .navButtonsItem:nth-child(4) {
    display: none;
  }
}

@media screen and (max-width: 540px) {
  .navButtons.wrapper {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
  }

  .navButtons.wrapper .navButtonsItem {
    margin: 0 auto;
  }

  .navButtons.wrapper .navButtonsItem:nth-child(4) {
    display: none;
  }
}

.categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 98%;
  max-width: 1400px;
  margin: 0 auto 20px auto;
}
.categories .categories-icon {
    border-radius: 4px;
    padding: 8px;
    background: #32374F;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}
.categories-icon img {
border-radius: 4px;
background: #D67414;
width: 51px;
height: 47px;
padding: 5px;
}

.categories-icon p {
  color: #FFF;
font-family: Verdana;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
padding: 0;
}

.categories-icon.wide {
  grid-column-start: 1;
  grid-column-end: 3;
}

.mobile-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 98%;
  max-width: 1400px;
  margin: 0 auto 20px auto;
}

.mobile-list li {
  position: relative;
  padding: 8px;
  border-radius: 4px;
  background: #32374F;
  color: #FFF;
  font-family: Verdana;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.mobile-list li::before {
   content: url(/check.svg);
   width: 28px;
   height: 28px;
}

@media screen and (max-width: 780px) {
  .mobile-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 600px) {
.categories,
.content .general-ul {
  grid-template-columns: 1fr ;
}

.categories-icon.wide {
  grid-column-start: 1;
  grid-column-end: 1;
}
.content .general-ol li::before {
height: 88%;
}
}

.toc-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid #D67414;
  padding: 16px 30px;
  width: 98%;
  max-width: 1400px;
  margin: 0 auto 20px auto;
}

.toc-wrapper p {
color: #FFF;
font-family: Verdana;
font-size: 22px;
font-style: normal;
font-weight: 700;
line-height: normal;
padding: 0;
margin: 0;
}
.toc-list li {
  padding-bottom: 20px ;
  position: relative;
}

.toc-list li::before {
      content: no-open-quote;
    position: absolute;
    width: 13px;
    height: 13px;
    left: -24px;
    top: 5px;
    background-color: #F34511;
    border-radius: 50%;
}
.toc-list li a {
  color: #FFF;
font-family: Verdana;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
 }

 .toc-list li a:hover {
  text-decoration: underline;
  color: #F34511;
 }

