@charset "UTF-8";
/* Scss Document */
:root {
  --px: 8px;
  --font12: 12px;
  --font13: 13px;
  --font14: 14px;
  --font15: 15px;
  --font16: 16px;
  --font17: 17px;
  --font18: 18px;
  --font20: 20px;
  --font24: 24px;
  --font28: 28px;
  --font36: 36px;
}

.fz12 {
  font-size: var(--font12);
}

.fz13 {
  font-size: var(--font13);
}

.fz14 {
  font-size: var(--font14);
}

.fz15 {
  font-size: var(--font15);
}

.fz16 {
  font-size: var(--font16);
}

.fz17 {
  font-size: var(--font17);
}

.fz18 {
  font-size: var(--font18);
}

.fz20 {
  font-size: var(--font20);
}

.fz24 {
  font-size: var(--font24);
}

.fz28 {
  font-size: var(--font28);
}

.fz36 {
  font-size: var(--font36);
}

.text-center {
  text-align: center;
}

.it {
  font-style: italic;
}

.fw300 {
  font-weight: 300;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.lh {
  line-height: 1;
}

.lh110 {
  line-height: 110%;
}

.lh120 {
  line-height: 120%;
}

.lh125 {
  line-height: 125%;
}

.lh130 {
  line-height: 130%;
}

.lh135 {
  line-height: 135%;
}

.lh140 {
  line-height: 140%;
}

.lh145 {
  line-height: 145%;
}

.lh150 {
  line-height: 150%;
}

.lh160 {
  line-height: 160%;
}

.lh170 {
  line-height: 170%;
}

.lh180 {
  line-height: 180%;
}

.lh190 {
  line-height: 190%;
}

.lh200 {
  line-height: 200%;
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.db {
  display: block;
}

.dib {
  display: inline-block;
}

.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dif {
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.vert {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fxs {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fxg {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.fxww {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ais {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.aie {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.jcsb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.jcfs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.jcfe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.jcc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.grid-2 {
  margin-right: calc(var(--px) * -1);
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.grid-2 > * {
  width: calc(50% - var(--px));
  margin-right: var(--px);
}

.grid-3 {
  margin-right: calc(var(--px) * -1);
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.grid-3 > * {
  width: calc(33.3333333333% - var(--px));
  margin-right: var(--px);
}

.grid-4 {
  margin-right: calc(var(--px) * -1);
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.grid-4 .col {
  width: calc(25% - var(--px));
  margin-right: var(--px);
  margin-bottom: var(--px);
}

.grid-5 {
  margin-right: calc(var(--px) * -1);
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.grid-5 .col {
  width: calc(20% - var(--px));
  margin-right: var(--px);
  margin-bottom: var(--px);
}

.grid-6 {
  margin-right: calc(var(--px) * -1);
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.grid-6 > * {
  width: calc(16.6666666667% - var(--px));
  margin-right: var(--px);
  margin-bottom: var(--px);
}

.center {
  text-align: center;
}

.text-black {
  color: #333;
}

.bg-red {
  background-color: #F44333;
}

.no-under {
  text-decoration: none;
}

.ttu {
  text-transform: uppercase;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.posr {
  position: relative;
}

.block {
  display: block;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-50 {
  gap: 50px;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-60 {
  z-index: 60;
}

.z-70 {
  z-index: 70;
}

.z-80 {
  z-index: 80;
}

.z-90 {
  z-index: 90;
}

.z-100 {
  z-index: 100;
}

.op-10 {
  opacity: 0.1;
}

.op-20 {
  opacity: 0.2;
}

.op-30 {
  opacity: 0.3;
}

.op-40 {
  opacity: 0.4;
}

.op-50 {
  opacity: 0.5;
}

.op-60 {
  opacity: 0.6;
}

.op-70 {
  opacity: 0.7;
}

.op-80 {
  opacity: 0.8;
}

.op-90 {
  opacity: 0.9;
}

.round-5 {
  border-radius: 5px;
}

.round-6 {
  border-radius: 6px;
}

.round-7 {
  border-radius: 7px;
}

.round-8 {
  border-radius: 8px;
}

.round-9 {
  border-radius: 9px;
}

.round-10 {
  border-radius: 10px;
}

.round-11 {
  border-radius: 11px;
}

.round-12 {
  border-radius: 12px;
}

.round-13 {
  border-radius: 13px;
}

.round-14 {
  border-radius: 14px;
}

.round-15 {
  border-radius: 15px;
}

.round-16 {
  border-radius: 16px;
}

.round-20 {
  border-radius: 20px;
}

.round-20 {
  border-radius: 20px;
}

.round-full {
  border-radius: 100%;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.oh {
  overflow: hidden;
}

.tar {
  text-align: right;
}

.pointer {
  cursor: pointer;
}

.cover {
  background-size: cover;
}

input[type=text],
input[type=tel],
input[type=email] {
  font-family: "Commissioner";
  outline: none;
}

input[type=submit],
button {
  outline: none;
  cursor: pointer;
  font-family: "Commissioner";
}

svg {
  display: block;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-1 {
  margin-bottom: 1px;
}

.mb-2 {
  margin-bottom: 2px;
}

.mb-3 {
  margin-bottom: 3px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-6 {
  margin-bottom: 6px;
}

.mb-7 {
  margin-bottom: 7px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-9 {
  margin-bottom: 9px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-11 {
  margin-bottom: 11px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-13 {
  margin-bottom: 13px;
}

.mb-14 {
  margin-bottom: 14px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-17 {
  margin-bottom: 17px;
}

.mb-18 {
  margin-bottom: 18px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 1px;
}

.mt-2 {
  margin-top: 2px;
}

.mt-3 {
  margin-top: 3px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-6 {
  margin-top: 6px;
}

.mt-7 {
  margin-top: 7px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-9 {
  margin-top: 9px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-1 {
  margin-left: 1px;
}

.ml-2 {
  margin-left: 2px;
}

.ml-3 {
  margin-left: 3px;
}

.ml-4 {
  margin-left: 4px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-7 {
  margin-left: 7px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-9 {
  margin-left: 9px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-16 {
  margin-left: 16px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-1 {
  margin-right: 1px;
}

.mr-2 {
  margin-right: 2px;
}

.mr-3 {
  margin-right: 3px;
}

.mr-4 {
  margin-right: 4px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-6 {
  margin-right: 6px;
}

.mr-7 {
  margin-right: 7px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-9 {
  margin-right: 9px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-16 {
  margin-right: 16px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-1 {
  padding-bottom: 1px;
}

.pb-2 {
  padding-bottom: 2px;
}

.pb-3 {
  padding-bottom: 3px;
}

.pb-4 {
  padding-bottom: 4px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-6 {
  padding-bottom: 6px;
}

.pb-7 {
  padding-bottom: 7px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-9 {
  padding-bottom: 9px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-11 {
  padding-bottom: 11px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pb-13 {
  padding-bottom: 13px;
}

.pb-14 {
  padding-bottom: 14px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-1 {
  padding-top: 1px;
}

.pt-2 {
  padding-top: 2px;
}

.pt-3 {
  padding-top: 3px;
}

.pt-4 {
  padding-top: 4px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-6 {
  padding-top: 6px;
}

.pt-7 {
  padding-top: 7px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-9 {
  padding-top: 9px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-1 {
  padding-left: 1px;
}

.pl-2 {
  padding-left: 2px;
}

.pl-3 {
  padding-left: 3px;
}

.pl-4 {
  padding-left: 4px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-6 {
  padding-left: 6px;
}

.pl-7 {
  padding-left: 7px;
}

.pl-8 {
  padding-left: 8px;
}

.pl-9 {
  padding-left: 9px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-1 {
  padding-right: 1px;
}

.pr-2 {
  padding-right: 2px;
}

.pr-3 {
  padding-right: 3px;
}

.pr-4 {
  padding-right: 4px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-6 {
  padding-right: 6px;
}

.pr-7 {
  padding-right: 7px;
}

.pr-8 {
  padding-right: 8px;
}

.pr-9 {
  padding-right: 9px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.p-0 {
  padding-right: 0px;
}

.p-0 {
  padding: 0px;
}

.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 1px;
}

.p-2 {
  padding: 2px;
}

.p-3 {
  padding: 3px;
}

.p-4 {
  padding: 4px;
}

.p-5 {
  padding: 5px;
}

.p-6 {
  padding: 6px;
}

.p-7 {
  padding: 7px;
}

.p-8 {
  padding: 8px;
}

.p-9 {
  padding: 9px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-16 {
  padding: 16px;
}

.p-20 {
  padding: 20px;
}

.p-24 {
  padding: 24px;
}

.p-25 {
  padding: 25px;
}

.p-30 {
  padding: 30px;
}

.p-35 {
  padding: 35px;
}

.p-40 {
  padding: 40px;
}

.p-45 {
  padding: 45px;
}

.p-50 {
  padding: 50px;
}

.p-60 {
  padding: 60px;
}

.p-65 {
  padding: 65px;
}

.p-70 {
  padding: 70px;
}

.p-75 {
  padding: 75px;
}

.p-80 {
  padding: 80px;
}

.p-85 {
  padding: 85px;
}

.p-90 {
  padding: 90px;
}

.p-95 {
  padding: 95px;
}

.p-100 {
  padding: 100px;
}

/* Scss Document */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

#page {
  position: relative;
}

a, img {
  outline: none;
}

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

/* Scss Document */
img {
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: var(--font36);
  margin-top: 24px;
  color: #fff;
  height: auto;
}
h2:first-child {
  margin-top: 0;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 17px;
}

h5 {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

h6 {
  font-size: 15px;
}

h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 16px;
  color: #fff;
  line-height: normal;
}

.clr:before,
.clr:after {
  content: " ";
  display: table;
  clear: both;
}

input::-webkit-input-placeholder {
  text-indent: 0px;
  -webkit-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input::-moz-placeholder {
  text-indent: 0px;
  -moz-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:-moz-placeholder {
  text-indent: 0px;
  -moz-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:-ms-input-placeholder {
  text-indent: 0px;
  -ms-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  text-indent: -900px;
  -webkit-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:focus::-moz-placeholder {
  text-indent: -900px;
  -moz-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:focus:-moz-placeholder {
  text-indent: -900px;
  -moz-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:focus:-ms-input-placeholder {
  text-indent: -900px;
  -ms-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input[placeholder] {
  text-overflow: ellipsis;
}

input::-moz-placeholder {
  text-overflow: ellipsis;
}

input:-moz-placeholder {
  text-overflow: ellipsis;
}

input:-ms-input-placeholder {
  text-overflow: ellipsis;
}

input[type=submit],
input[type=button],
button {
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body {
  color: #fff;
  font-family: "Commissioner";
  font-size: 16px;
  background-color: #312d38;
}

img {
  display: block;
}

a {
  text-decoration: none;
}

ul li {
  display: block;
}

.last > *:last-child {
  margin-bottom: 0;
}

.npwrap {
  white-space: nowrap;
}

.h32 {
  height: 32px;
}

.thumb img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.hide {
  display: none;
}

.black {
  color: #1C1B1F;
}

.bg-pink {
  background-color: #DD14AD;
}

.bg-black {
  background-color: #1C1B1F;
}

.bg-black-2 {
  background-color: #25232A;
}

.bg-black-3 {
  background-color: #36323E;
}

.bg-black-4 {
  background-color: #4A4458;
}

.bg-gray {
  background-color: #686277;
}

.border-yellow {
  border: 1px solid #F9D423;
}

.white {
  color: #fff;
}

.gray {
  color: #CCC2DC;
}

.gray-68 {
  color: #686277;
}

.bg-green {
  background-color: #6AFFAB;
}

.green {
  color: #6AFFAB;
}

.aqua {
  color: #6AFFAB;
}

.pink {
  color: #DD14AD;
}

.btn {
  font-family: "Commissioner";
  background-color: #DD14AD;
  color: #fff;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  border-width: 0;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  padding: 9px 16px 11px 16px;
  border-radius: 36px;
  text-align: center;
}
.btn:hover {
  background-color: #A90F84;
}

.btn-gray {
  font-family: "Commissioner";
  background-color: #36323E;
  color: #CCC2DC;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  border-width: 0;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  padding: 9px 16px 11px 16px;
  border-radius: 36px;
  text-align: center;
}
.btn-gray:hover {
  background-color: #4A4458;
}

.btn-border {
  font-family: "Commissioner";
  background-color: transparent;
  color: #CCC2DC;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  border: 1px solid #CCC2DC;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  padding: 8px 16px 10px 16px;
  border-radius: 36px;
  text-align: center;
}
.btn-border:hover {
  background-color: #36323E;
  border-color: #CCC2DC;
}

a.bg-pink:hover {
  background-color: #A90F84;
}

#page {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  min-height: 100vh;
}

.page_inner {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.wrap {
  max-width: 1400px;
  min-width: 300px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.box {
  background-color: #1C1B1F;
  padding: 24px;
  border-radius: 16px;
}

.head-button-icon {
  height: 44px;
  width: 44px;
}

.your-bonus-panel {
  top: calc(100% + 18px);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 327px;
  display: none;
}
.your-bonus-panel:before {
  content: "";
  position: absolute;
  bottom: calc(100% + 0px);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 10px solid #36323E;
}
.your-bonus-panel .mid dl {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #4A4458;
}
.your-bonus-panel .mid dl:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom-width: 0;
}

.main-menu {
  padding: 11px 0;
}
.main-menu ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-menu li {
  display: block;
  position: relative;
}
.main-menu a {
  color: #CCC2DC;
  text-decoration: none;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 7px;
}
.main-menu a:hover {
  color: #fff;
}
.main-menu span {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.main-menu .open span {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.main-menu .active a {
  color: #fff;
  border-bottom: 4px solid #DD14AD;
}
.main-menu .has-drop a {
  padding: 6px 12px;
}

.home-first-right {
  width: 460px;
}

.social-button {
  margin-right: -8px;
}
.social-button li {
  width: calc(50% - 8px);
}
.social-button a {
  padding: 24px 16px;
}

.home-first-post {
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.home-first-post > * {
  max-width: 380px;
}

.home-first-row-2 .right {
  width: 931px;
}

.promo-2 a {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.promo-3 a {
  height: 154px;
  background-position: center center;
}

.rub {
  font-family: Arial;
}

.box-info {
  padding: 9px 8px 10px 8px;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #25232A;
  border-radius: 8px;
  border-width: 0;
  outline: none;
  height: 44px;
  font-family: "Commissioner";
  font-size: 16px;
  line-height: 150%;
  color: #CCC2DC;
  width: 100%;
  padding: 0 16px;
  cursor: pointer;
  background-image: url(../images/select.svg);
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.statistic-form {
  padding-right: calc(33.3333333333% - 8px);
}
.statistic-form dl {
  width: calc(33.3333333333% - 8px);
}
.statistic-form dt {
  min-height: 24px;
}
.statistic-form .input {
  background-color: #25232A;
  border-radius: 8px;
  border-width: 0;
  outline: none;
  height: 44px;
  font-family: "Commissioner";
  font-size: 16px;
  line-height: 150;
  color: #CCC2DC;
  padding: 0 16px;
  width: 100%;
}
.statistic-form .input::-webkit-input-placeholder {
  color: #686277;
}
.statistic-form .input::-moz-placeholder {
  color: #686277;
}
.statistic-form .input:-moz-placeholder {
  color: #686277;
}
.statistic-form .input:-ms-input-placeholder {
  color: #686277;
}

.statistic-result-item .dot {
  background-image: url(../images/line.png);
  background-repeat: repeat-x;
  background-position: 0 bottom;
  position: relative;
  top: -2px;
}
.statistic-result-item a {
  color: #6AFFAB;
}

.show-all {
  border: 1px solid #DD14AD;
  border-radius: 34px;
  padding: 10px 16px;
}

.type-link {
  background-color: #36323E;
  width: 44px;
  height: 44px;
  border-radius: 100%;
}

.result-item:last-child {
  margin-bottom: 0;
}
.result-item .date-event {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 96px;
  padding-right: 6px;
}
.result-item .league-name {
  width: calc(40% + 5px);
}
.result-item .team-name {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.result-item .book-name {
  width: 220px;
}

.result-item-right .book-name {
  width: 100%;
}

.rating-book-item .num {
  border: 2px solid #3a362c;
  height: 44px;
}
.rating-book-item .num-other {
  background-image: url(../images/num-other.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 44px;
  height: 44px;
  font-weight: bold;
}

.rating-book-item-in-page .bottom {
  width: 236px;
}

.mark-gold {
  -webkit-box-shadow: -6px -4px 18px 0px rgba(255, 215, 93, 0.2);
          box-shadow: -6px -4px 18px 0px rgba(255, 215, 93, 0.2);
  border: 1px solid #F9D423;
}

.mark-silver {
  -webkit-box-shadow: -6px -4px 18px 0px rgba(214, 220, 231, 0.2);
          box-shadow: -6px -4px 18px 0px rgba(214, 220, 231, 0.2);
  border: 1px solid #D7DDE8;
}

.mark-bronze {
  -webkit-box-shadow: -6px -4px 18px 0px rgba(249, 169, 133, 0.2);
          box-shadow: -6px -4px 18px 0px rgba(249, 169, 133, 0.2);
  border: 1px solid #FFB88C;
}

.rating-bar {
  border-radius: 36px;
  background-color: #686277;
}
.rating-bar span {
  display: block;
  border-radius: 36px;
  background-color: #CCC2DC;
  height: 8px;
}

.row-for-user {
  margin-right: -24px;
  gap: 32px 24px;
}
.row-for-user > * {
  width: calc(50% - 24px);
}

.basic .top {
  border: 2px solid #CCC2DC;
}

.pro .top {
  border: 2px solid #6AFFAB;
}
.pro .stiker {
  top: 0;
  left: 0;
  background-color: #6AFFAB;
  color: #1C1B1F;
  padding: 1px 1px 1px 16px;
  border-radius: 5px 5px 0 0;
}

.servis-stats li:nth-child(1n+3) {
  margin-top: 16px;
}
.servis-stats p {
  margin-bottom: 20px;
}
.servis-stats p:last-child {
  margin-bottom: 0;
}

.reviews-list {
  overflow-x: auto;
  padding-bottom: 16px;
}
.reviews-list::-webkit-scrollbar {
  height: 8px;
}
.reviews-list::-webkit-scrollbar-track {
  background: #686277;
  border-radius: 4px;
}
.reviews-list::-webkit-scrollbar-thumb {
  background-color: #DD14AD;
  border-radius: 4px;
}
.reviews-list li {
  width: 202px;
  margin-right: 8px;
}
.reviews-list li:last-child {
  margin-right: 0;
}
.reviews-list a {
  text-decoration: none;
}
.reviews-list a:before {
  content: "";
  background-image: url(../images/play.svg);
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #36323E;
  border-radius: 100%;
}
.reviews-list a:hover:before {
  content: "";
  background-color: #DD14AD;
}
.reviews-list img {
  border: 1px solid #4A4458;
  border-radius: 8px;
  width: 100%;
  height: auto;
}
.reviews-list .dot {
  background-image: url(../images/line.png);
  background-repeat: repeat-x;
  background-position: 0 bottom;
  height: 1px;
  position: relative;
  top: -2px;
  margin: 0 3px;
}
.reviews-list .info {
  bottom: 0;
  left: 0;
}
.reviews-list .show-all-reviews {
  background-color: #312D38;
}
.reviews-list .show-all-reviews:before {
  display: none;
}

.tabs-news-nav ul {
  padding: 2px;
  background-color: #292831;
  border-radius: 8px;
}
.tabs-news-nav li {
  padding: 6px 8px;
  border-radius: 7px;
  min-width: 138px;
  cursor: pointer;
}
.tabs-news-nav .current {
  background-color: #686277;
  font-weight: bold;
}

.last-news-item-right .white a {
  color: #fff;
}
.last-news-item-right .white a:hover {
  color: #CCC2DC;
}
.last-news-item-right a {
  color: #CCC2DC;
}
.last-news-item-right a:hover {
  color: #fff;
}

.last-news-item:nth-child(1n+4) {
  display: none;
}
.last-news-item img {
  border-radius: 8px;
}
.last-news-item .thumb a {
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: -100% 0;
}
.last-news-item a {
  color: #CCC2DC;
}
.last-news-item a:hover {
  color: #fff;
}

footer {
  background-color: #1c1b1f;
  padding: 64px 0;
}
footer .name {
  color: #4A4458;
}
footer .right {
  padding-top: 50px;
}

.logo-footer {
  padding: 13px 0;
}

.footer-menu:nth-child(1) {
  margin-right: 24px;
}
.footer-menu li {
  margin-bottom: 3px;
}
.footer-menu a {
  display: block;
  padding: 12px 8px;
  color: #CCC2DC;
}
.footer-menu a:hover {
  color: #fff;
}

.we-support a {
  padding: 10px 8px;
  color: #CCC2DC;
}
.we-support a:hover {
  color: #fff;
}
.we-support a:hover path {
  fill: #fff;
}

.we-social a:hover path {
  fill: #fff;
}

@media (min-width: 993px) {
  .drop-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 80px;
    background-color: #292831;
    width: 327px;
    display: none;
  }
  .drop-menu .hide_992 {
    display: none;
  }
  .drop-menu .arrow {
    cursor: pointer;
    margin-right: 8px;
  }
  .drop-menu li {
    position: relative;
  }
  .drop-menu li ul {
    display: none;
  }
  .drop-menu a {
    color: #CCC2DC;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .drop-menu span {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .drop-menu > ul > li > a {
    padding: 10px 8px;
    cursor: pointer;
  }
  .drop-menu > ul > li > a .icon svg {
    margin-right: 8px;
  }
  .drop-menu > ul > li > ul {
    background-color: #1c1b1f;
    border-radius: 0 0 8px 8px;
  }
  .drop-menu > ul > li > ul > li > a {
    cursor: pointer;
    padding: 12px 8px;
    text-transform: uppercase;
  }
  .drop-menu > ul > li > ul ul a {
    text-transform: none;
    padding: 12px 24px;
  }
  .drop-menu > ul > li.open > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    display: block;
    background-color: #DD14AD;
  }
  .drop-menu > ul > li.open > .arrow {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .drop-menu > ul > li > ul > li.open > a {
    position: relative;
  }
  .drop-menu > ul > li > ul > li.open > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    display: block;
    background-color: #DD14AD;
  }
  .drop-menu > ul > li > ul > li.open .arrow {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
.drop-menu-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: var(--Overlay-Overlay, rgba(28, 27, 31, 0.72));
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.drop-menu-bg.active {
  opacity: 1;
  visibility: visible;
}

.faq-item.active_block .title .arrow {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.faq-item .arrow {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.bcream a {
  color: #CCC2DC;
}
.bcream a:hover {
  color: #fff;
}
.bcream a:hover path {
  stroke: #fff;
}

.row .right {
  width: 461px;
}

.text h4 {
  margin-top: 32px;
  margin-bottom: 8px;
  color: #fff;
  font-size: var(--font16);
}
.text p {
  margin-bottom: 24px;
}
.text p:last-child {
  margin-bottom: 0;
}
.text p b {
  color: #fff;
}

.match-score div {
  width: 40px;
  height: 40px;
}

.last-math-team:last-child {
  margin-bottom: 0;
}
.last-math-team .team-item {
  min-width: 250px;
}

@media (min-width: 993px) {
  .stick {
    position: sticky;
    top: 10px;
  }
}
.fon-fooball {
  background-image: url(../images/fon/football.jpg);
}

.fon-basketball {
  background-image: url(../images/fon/basketball.jpg);
}

.fon-hockey {
  background-image: url(../images/fon/hockey.jpg);
}

.fon-kiber {
  background-image: url(../images/fon/kiber.jpg);
}

.fon-mma {
  background-image: url(../images/fon/mma.jpg);
}

.fon-tennis {
  background-image: url(../images/fon/tennis.jpg);
}

.views {
  padding: 8px 16px;
  background-color: rgba(54, 50, 62, 0.7);
  bottom: 8px;
  left: 8px;
  color: #fff;
}

.good-li {
  background-color: #4E9672;
  padding: 8px;
  border-radius: 8px;
  color: #fff;
}
.good-li:before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  background-image: url(../images/good.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.bad-ul:last-child {
  margin-bottom: 0;
}

.bad-li {
  background-color: #B65961;
  padding: 8px;
  border-radius: 8px;
  color: #fff;
}
.bad-li:before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  background-image: url(../images/bad.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.post-social {
  border-radius: 0 8px 8px 0;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.spoler {
  padding-bottom: 0;
}
.spoler.active .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.spoler.active .text:before {
  content: "";
  display: none;
}
.spoler.active .text > *:first-child {
  margin-bottom: 0;
}
.spoler.active .text > *:nth-child(1n+2) {
  display: block;
}
.spoler.active .text > *:last-child {
  margin-bottom: 0;
}
.spoler .title {
  margin-bottom: 0;
}
.spoler .arrow {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.spoler .text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(74, 68, 88, 0)), to(#686277));
  background: linear-gradient(180deg, rgba(74, 68, 88, 0) 0%, #686277 100%);
}
.spoler .text > *:first-child {
  margin-bottom: 0;
}
.spoler .text > *:nth-child(1n+2) {
  display: none;
}
.spoler .text > *:last-child {
  margin-bottom: 0;
}

.page_promo {
  min-height: 100vh;
  background-size: cover;
  background-position: center 0;
  font-family: "Manrope", sans-serif;
  padding-bottom: 50px;
}
.page_promo-header {
  padding: 40px 0 86px 0;
}
.page_promo-bg {
  background: rgba(88, 18, 177, 0.03);
  -webkit-backdrop-filter: blur(36.2999992371px);
          backdrop-filter: blur(36.2999992371px);
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page_promo-aside {
  width: 622px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 55px;
}
.page_promo .inner {
  padding: 55px 60px;
}
.page_promo .fz28 span {
  font-weight: 800;
}
.page_promo .input {
  font-family: "Manrope", sans-serif;
  color: rgba(250, 240, 240, 0.5);
  font-size: 16px;
  padding: 19px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  width: 100%;
}
.page_promo .input::-webkit-input-placeholder {
  color: rgba(250, 240, 240, 0.5);
}
.page_promo .input::-moz-placeholder {
  color: rgba(250, 240, 240, 0.5);
}
.page_promo .input:-moz-placeholder {
  color: rgba(250, 240, 240, 0.5);
}
.page_promo .input:-ms-input-placeholder {
  color: rgba(250, 240, 240, 0.5);
}
.page_promo .btn {
  font-family: "Manrope", sans-serif;
  width: 100%;
  border-radius: 20px;
  padding: 19px;
}
.page_promo .btn-border {
  font-family: "Manrope", sans-serif;
  width: 100%;
  border-radius: 20px;
  padding: 19px;
  color: #DD14AD;
  border: 1px solid rgba(92, 92, 92, 0.5);
}

.promo-price {
  background-image: url(../images/promo/bg-price.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 557px;
  height: 186px;
  font-size: 96px;
  letter-spacing: -6.759px;
}

@media (max-width: 1200px) {
  .promo-price {
    width: 400px;
    height: 133px;
    background-size: cover;
    font-size: 70px;
  }
}
@media (max-width: 992px) {
  .promo-price {
    width: 255px;
    height: 84px;
    background-size: cover;
    font-size: 44px;
    letter-spacing: -3.105px;
    margin-bottom: 10px;
  }
  .promo-price-text {
    font-size: 12px;
    letter-spacing: -0.48px;
    margin-bottom: 25px;
  }
}
.page_promo-formrow {
  margin-right: -10px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page_promo-formrow > * {
  width: calc(50% - 10px);
  margin-right: 10px;
}

.rating-bonus-txt {
  padding: 1px 16px;
}

@media (min-width: 765px) {
  .rating-list {
    overflow-x: auto;
    padding-bottom: 16px;
  }
  .rating-list::-webkit-scrollbar {
    height: 8px;
  }
  .rating-list::-webkit-scrollbar-track {
    background: #686277;
    border-radius: 4px;
  }
  .rating-list::-webkit-scrollbar-thumb {
    background-color: #DD14AD;
    border-radius: 4px;
  }
  .best-nn-list {
    overflow-x: auto;
    padding-bottom: 16px;
  }
  .best-nn-list::-webkit-scrollbar {
    height: 8px;
  }
  .best-nn-list::-webkit-scrollbar-track {
    background: #686277;
    border-radius: 4px;
  }
  .best-nn-list::-webkit-scrollbar-thumb {
    background-color: #DD14AD;
    border-radius: 4px;
  }
  .rating-item {
    width: 279px;
  }
  .best-nn-item {
    width: 279px;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0 0px;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 4;
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: #1abcda;
}
.slick-prev i,
.slick-next i {
  font-size: 30px;
}
.slick-prev:hover,
.slick-next:hover {
  color: #000;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.slick-dots {
  position: absolute;
  bottom: -5px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 7px;
  padding: 0;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.slick-dots li button {
  display: block;
  border: 0;
  background: #dcdcdc;
  border-radius: 10px;
  display: block;
  height: 100%;
  width: 100%;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.slick-dots li.slick-active button {
  background-color: #b99e7c;
}
.slick-dots li:hover button {
  background-color: #b99e7c;
}

/* Scss Document */
@media (max-width: 1500px) {
  .wrap {
    margin-left: 50px;
    margin-right: 50px;
  }
  .home-first-row-2 {
    gap: 8px;
  }
  .home-first-row-2 .left {
    width: calc(50% - 8px);
  }
  .home-first-row-2 .right {
    width: calc(50% - 8px);
  }
  .home-first-right {
    width: 300px;
  }
  .home-first-post {
    background-position: right 0;
  }
  .social-button a {
    padding: 23px 16px;
    min-height: 138px;
  }
}
@media (max-width: 1270px) {
  :root {
    --px: 8px;
    --font12: 12px;
    --font13: 13px;
    --font14: 14px;
    --font15: 15px;
    --font16: 16px;
    --font17: 17px;
    --font18: 18px;
    --font20: 20px;
    --font24: 24px;
    --font28: 28px;
    --font36: 28px;
  }
  .wrap {
    margin-left: 40px;
    margin-right: 40px;
  }
  .open-menu {
    display: block;
  }
  .open-menu.open svg {
    opacity: 0;
  }
  .open-menu.open:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/close-menu.svg);
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
  }
  .main-menu {
    display: none;
  }
  .home-first-row-1 {
    margin-right: -8px;
    gap: 8px;
  }
  .home-first-row-1 > * {
    width: calc(50% - 8px);
    margin-right: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .home-first-row-2 {
    display: block;
  }
  .home-first-row-2 .left {
    width: calc(100% + 8px);
    gap: 8px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .home-first-row-2 .left > * {
    width: calc(50% - 8px);
    margin-right: 0;
    margin-bottom: 8px;
  }
  .home-first-row-2 .right {
    width: 100%;
  }
  .rating-book-item {
    width: calc(100% - 8px);
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .rating-book-item:nth-child(1n+2) {
    margin-top: 8px;
  }
  .rating-book-item .top {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-bottom: 0;
    margin-right: 24px;
  }
  .rating-book-item .bottom {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 0;
    gap: 0;
  }
  .rating-book-item .bottom > * {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: auto;
    margin-right: 16px;
  }
  .rating-book-item .bottom > *:last-child {
    margin-right: 0;
  }
  .rating-book-item .book-thumb {
    margin-right: 24px;
  }
  .rating-book-item .se {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .rating-book-item .se .bold {
    margin-left: 8px;
  }
  .rating-book-list__in-right .rating-book-item {
    display: block;
    width: 100%;
  }
  .rating-book-list__in-right .rating-book-item .bottom {
    margin-top: 16px;
  }
  .rating-book-list__in-right .rating-book-item .btn-gray {
    margin-right: 8px;
  }
  .rating-book-list__in-right .rating-book-item .btn {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 9px 3px 11px 3px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row-for-user {
    margin-right: -16px;
    gap: 16px;
  }
  .row-for-user:nth-child(1n+3) {
    display: block;
    margin-right: 0;
  }
  .row-for-user:nth-child(1n+3) > * {
    width: 100%;
  }
  .row-for-user > * {
    width: calc(50% - 16px);
  }
  .servis-stats {
    margin-bottom: 24px;
  }
  .servis-stats ul {
    margin-right: 0;
    gap: 0;
  }
  .servis-stats li {
    width: 25%;
    margin-right: 0;
  }
  .servis-stats li:nth-child(1n+2) {
    margin-top: 0;
  }
  .last-news-item {
    width: calc(50% - 8px);
  }
  .last-news-item:nth-child(1n+2) {
    display: block;
  }
  .drop-menu {
    left: 0;
  }
  .statistic-form {
    padding-right: 0;
    margin-right: -8px;
  }
  .drop-menu .active {
    margin-bottom: 8px;
  }
  .drop-menu .active a {
    border-bottom: 4px solid #DD14AD;
  }
  .drop-menu .hide_992 {
    display: block;
  }
  .row .right {
    width: 300px;
  }
  .last-math-team .team-item {
    min-width: 200px;
    max-width: 200px;
  }
  .page_promo-aside {
    width: 500px;
  }
  .page_promo .pic img {
    width: 600px;
    height: auto;
  }
  .page_promo .inner {
    padding: 40px;
  }
  .show_1270 {
    display: block;
  }
}
@media (max-width: 992px) {
  .wrap {
    margin-left: 24px;
    margin-right: 24px;
  }
  .drop-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: #292831;
    width: 327px;
    display: none;
  }
  .drop-menu .hide_992 {
    display: none;
  }
  .drop-menu .arrow {
    cursor: pointer;
    margin-right: 8px;
  }
  .drop-menu .icon svg {
    margin-right: 8px;
  }
  .drop-menu li {
    position: relative;
  }
  .drop-menu li ul {
    display: none;
  }
  .drop-menu a {
    color: #CCC2DC;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .drop-menu span {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .drop-menu > ul > li.open > .arrow {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .drop-menu > ul > li > a {
    padding: 10px 8px;
    cursor: pointer;
  }
  .drop-menu > ul > li > a .icon svg {
    margin-right: 8px;
  }
  .drop-menu > ul > li > ul > li > ul {
    background-color: #1c1b1f;
  }
  .drop-menu > ul > li > ul > li > a {
    cursor: pointer;
    padding: 12px 8px;
    text-transform: uppercase;
  }
  .drop-menu > ul > li > ul ul a {
    text-transform: none;
    padding: 12px 24px;
  }
  .drop-menu > ul > li > ul > li.open > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    display: block;
    background-color: #DD14AD;
  }
  .drop-menu > ul > li > ul > li.open > .arrow {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .drop-menu > ul > li > ul > li > ul > li.open > a {
    position: relative;
  }
  .drop-menu > ul > li > ul > li > ul > li.open > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    display: block;
    background-color: #DD14AD;
  }
  .drop-menu > ul > li > ul > li > ul > li.open > .arrow {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .drop-menu > ul > li > ul > li.open > .arrow {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .row {
    display: block;
  }
  .row .left {
    margin-right: 0;
  }
  .row .right {
    width: 100%;
    margin-top: 8px;
  }
  .result-item .league-name {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .result-item .team-name {
    width: 175px;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .result-item .book-name {
    width: 190px;
  }
  .result-item-right .team-name {
    margin-top: 0;
    margin-bottom: 0;
    width: 260px;
  }
  .rating-book-list__in-table .rating-book-item {
    display: block;
    width: 100%;
  }
  .rating-book-list__in-table .rating-book-item .top {
    margin-right: 0;
  }
  .rating-book-list__in-table .rating-book-item .bottom {
    margin-top: 16px;
    gap: 8px;
    margin-right: -8px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .rating-book-list__in-table .rating-book-item .bottom > * {
    width: calc(50% - 8px);
  }
  .rating-book-list__in-table .rating-book-item .btn-gray {
    margin-right: 0;
  }
  .rating-book-list__in-table .rating-book-item .btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .last-news-list-right {
    gap: 8px;
    margin-right: -8px;
  }
  .last-news-item-right {
    width: calc(50% - 8px);
  }
  .box-rating-bookmakers {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .page_promo-aside {
    width: 100%;
  }
  .page_promo-header {
    padding: 20px 0 15px;
  }
  .flex_992 {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .show_992 {
    display: block;
  }
  .hide_992 {
    display: none;
  }
}
@media (max-width: 767px) {
  :root {
    --px: 8px;
    --font12: 12px;
    --font13: 13px;
    --font14: 14px;
    --font15: 15px;
    --font16: 16px;
    --font17: 17px;
    --font18: 18px;
    --font20: 20px;
    --font24: 20px;
    --font28: 24px;
    --font36: 24px;
  }
  body {
    font-size: 14px;
  }
  footer .right {
    padding-top: 24px;
  }
  .copy {
    text-align: left;
    margin-top: 24px;
    margin-left: 8px;
  }
  .doc-box .name {
    margin-left: 8px;
  }
  .doc-list li:last-child {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    margin-bottom: 8px;
  }
  .foot {
    display: block;
  }
  .foot > * {
    display: block;
    width: 100%;
  }
  .footer-menu {
    margin-bottom: 24px;
  }
  .footer-menu:last-child {
    margin-bottom: 0;
  }
  .footer-menu-list {
    display: block;
  }
  .tabs-news-box .btn-border,
  .tabs-news-box .btn {
    width: 100%;
  }
  .last-news-item {
    width: calc(100% - 8px);
  }
  .last-news-item .thumb a {
    display: block;
    height: 186px;
    background-size: cover;
    background-position: center center;
    border-radius: 8px;
  }
  .last-news-item .thumb img {
    display: none;
  }
  .servis-stats ul {
    gap: 8px;
  }
  .servis-stats li {
    width: calc(50% - 8px);
  }
  .servis-stats li:nth-child(1n+3) {
    margin-top: 16px;
  }
  .row-for-user > * {
    width: calc(100% - 8px);
    margin-right: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .row-for-user > *:nth-child(1n+2) {
    margin-top: 8px;
  }
  .row-for-user .data {
    margin-bottom: 16px;
  }
  .row-for-user .data li {
    margin-bottom: 8px;
  }
  .row-for-user .fz36 {
    font-size: 28px;
  }
  .rating-book .btn {
    width: 100%;
  }
  .free-forecasts .btn-border {
    width: 100%;
  }
  .result-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .result-item .team-name {
    width: 100%;
    padding: 28px 0;
  }
  .result-item .book-name {
    width: 100%;
  }
  .result-item .book-label {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .result-item .book-label span {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: center;
  }
  .result-item .league-name .fz16 {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
  .rating-book-item-in-page .bottom {
    margin-right: -8px;
    gap: 8px;
    width: 100%;
  }
  .rating-book-item-in-page .bottom > * {
    width: calc(50% - 8px);
  }
  .home-statistic .mb-24 {
    margin-bottom: 16px;
  }
  .home-statistic .btn {
    width: 100%;
  }
  .statistic-form dl {
    width: calc(100% - 8px);
    margin-right: 0;
  }
  .statistic-form dl:nth-child(1n+2) {
    margin-top: 8px;
  }
  .statistic-result {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .statistic-result-item {
    width: calc(100% - 8px);
    margin-bottom: 0;
  }
  .statistic-result-item:nth-child(1n+2) {
    margin-top: 8px;
  }
  .promo-2 a {
    background-image: url(../images/upload/promo-2-mobile.jpg) !important;
    height: 327px;
    padding: 16px;
    display: block;
  }
  .promo-2 a .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
  }
  .home-first-row-2 .left {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 8px;
  }
  .home-first-row-2 .left > * {
    width: calc(100% - 8px);
    margin-bottom: 0;
  }
  .social-button a {
    padding: 16px;
    min-height: 124px;
  }
  .home-first-row-1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .home-first-row-1 > * {
    width: calc(100% - 8px);
  }
  #page {
    padding-bottom: 120px;
  }
  .mobile-panel {
    bottom: 0;
    left: 0;
  }
  .mobile-panel .top {
    margin-top: -16px;
    gap: 16px;
    background: rgba(28, 27, 31, 0.72);
    margin-right: -16px;
  }
  .mobile-panel .top li {
    width: calc(50% - 16px);
  }
  .mobile-panel .top li a {
    width: 100%;
  }
  .mobile-panel .bottom {
    background-color: #292831;
    font-size: 10px;
  }
  .mobile-panel .bottom li {
    width: 20%;
  }
  .mobile-panel .bottom a {
    color: #CCC2DC;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 6px;
    height: 60px;
  }
  .rating-book-item {
    display: block;
  }
  .rating-book-item .top {
    margin-right: 0;
  }
  .rating-book-item .bottom {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-top: 16px;
    gap: 8px;
    margin-right: -8px;
  }
  .rating-book-item .bottom > * {
    width: calc(50% - 8px);
    margin-right: 0;
  }
  .rating-book-item .book-thumb {
    margin-right: 16px;
  }
  .forecasts-type {
    overflow-y: hidden;
    overflow-x: auto;
  }
  .forecasts-type li {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  header .wrap {
    padding: 8px 0;
  }
  .head-bottom .wrap {
    padding: 0;
  }
  .home-first-post {
    height: 300px;
  }
  .faq-item .title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .faq-item .arrow {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .head-button .your-bonus {
    margin-right: 0;
  }
  .your-bonus-panel {
    left: auto;
    -webkit-transform: translate(0);
            transform: translate(0);
    right: 0;
  }
  .your-bonus-panel:before {
    left: auto;
    -webkit-transform: translate(0);
            transform: translate(0);
    right: 12px;
  }
  .about-match__team {
    display: block;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 16px;
  }
  .about-match__team li:nth-child(1n+2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 8px;
  }
  .about-match__team li:nth-child(1n+2) .icon {
    margin-left: 0;
    margin-right: 4px;
  }
  .about-match__team img {
    width: 48px;
    height: auto;
  }
  .about-match__button .btn {
    width: 100%;
  }
  .last-math-team dd {
    display: block;
  }
  .last-math-team .team-item {
    max-width: 100%;
  }
  .team-item-left {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .team-item-left:after {
    content: "";
    display: block;
    background-image: url(../images/dot.svg);
    background-repeat: no-repeat;
    background-position: 0px 0;
    width: 100%;
    height: 2px;
    margin: 8px 0;
  }
  .team-item-right .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .team-item-right .ml-4 {
    margin-left: 0;
    margin-right: 4px;
  }
  .match-score_team {
    width: 40px;
    height: 40px;
  }
  .promo-3 a {
    height: 327px;
    background-position: center 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .our-forecast {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .our-forecast .ld {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 16px;
  }
  .our-forecast .kf {
    margin-right: 0;
    margin-bottom: 16px;
    min-width: 124px;
    text-align: center;
  }
  .button-row {
    display: block;
  }
  .button-row > * {
    width: 100%;
    margin-right: 0;
  }
  .button-row > *:nth-child(1n+2) {
    margin-top: 16px;
  }
  .w-full-767 {
    width: 100%;
  }
  .box-gray .fz36.mb-32 {
    margin-bottom: 24px;
  }
  .post-social {
    position: static;
    -webkit-transform: translate(0);
            transform: translate(0);
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 16px;
  }
  .post-social li {
    margin-bottom: 0;
    width: 33.3333333333%;
  }
  .post-social li:nth-child(1n+4) {
    display: none;
  }
  .post-social svg {
    margin-left: auto;
    margin-right: auto;
  }
  .on-login {
    margin-left: 17px;
  }
  .page_promo-aside {
    width: 100%;
    border-radius: 35px;
  }
  .page_promo .inner {
    padding: 22px 20px;
  }
  .page_promo .fz28 {
    font-size: 18px;
  }
  .page_promo .input {
    padding: 14px 25px;
  }
  .page_promo .btn {
    padding: 14px 25px;
  }
  .page_promo .btn-border {
    border-width: 0;
    padding: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #DD14AD;
  }
  .page_promo {
    background-image: url(../images/promo/bg-mobile.jpg) !important;
    padding-bottom: 20px;
  }
  .has_page_promo {
    padding-bottom: 0 !important;
  }
  .page_promo-formrow {
    margin-bottom: 10px;
  }
  .page_promo-formrow > * {
    width: calc(100% - 10px);
    margin-right: 10px;
  }
  .rating-item:nth-child(1n+2) {
    margin-top: 16px;
  }
  .rating-item:nth-child(1n+5) {
    display: none;
  }
  .best-nn-item:nth-child(1n+2) {
    margin-top: 16px;
  }
  .best-nn-item:nth-child(1n+5) {
    display: none;
  }
  .flex_767 {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .block_767,
  .show_767 {
    display: block;
  }
  .hide_767 {
    display: none;
  }
}
@media (max-width: 550px) {
  .last-news-item-right {
    width: calc(100% - 8px);
  }
  .post-thumb {
    height: 400px;
  }
  .post-thumb img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: auto;
  }
  .open-menu {
    margin-left: 2px;
  }
  .logo {
    margin-left: 10px;
  }
  .logo svg {
    width: 144px;
    height: auto;
  }
  .home-first-post {
    background-image: none !important;
    overflow: hidden;
    position: relative;
  }
  .home-first-post > * {
    position: relative;
    z-index: 1;
  }
  .home-first-post .image-mobile {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 16px;
  }
  .last-news-item:nth-child(1n+4) {
    display: none;
  }
  .rating-book-item .btn {
    padding: 9px 10px 11px 10px;
    font-size: 16px;
  }
  .rating-book-item .btn .mr-8 {
    margin-right: 4px;
  }
  .block_550,
  .show_550 {
    display: block;
  }
  .hide_550 {
    display: none;
  }
}
.inter {
  font-family: "Inter", sans-serif;
}

.oswald {
  font-family: "Oswald", sans-serif;
}

.wrap2 {
  padding-left: 8.59%;
  padding-right: 8.59%;
}

.wrap3 {
  padding-left: 4.17%;
  padding-right: 4.17%;
}

.block01 {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-top: 11.67%;
  padding-bottom: 50px;
}
.block01-header {
  top: 0;
  left: 0;
  padding: 32px 4.17%;
}
.block01-menu a {
  color: #fff;
}
.block01 .title {
  font-size: clamp(40px, 3.65vw, 70px);
}
.block01 .name {
  font-size: clamp(25px, 2.19vw, 42px);
}
.block01 .price {
  font-family: "Petrov Sans-Trial";
  font-size: 110px;
  font-size: clamp(40px, 5.7vw, 110px);
  line-height: 1;
  border-radius: 30.578px;
  background: radial-gradient(73.36% 88.24% at 26.74% 0.81%, #DD14AD 0%, #E138B9 100%);
  -webkit-box-shadow: 4.587px 5.351px 39.904px 0px #FF71DD inset, 0px 8.409px 0px 0px #AA1486;
          box-shadow: 4.587px 5.351px 39.904px 0px #FF71DD inset, 0px 8.409px 0px 0px #AA1486;
  padding: 33px 36px;
}
.block01 .btn {
  font-size: 18px;
  font-weight: 600;
  padding: 17px 40px;
  width: 364px;
}
.block01 .input {
  width: 385px;
  height: 61px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  border-radius: 10px;
  color: #23232A;
  border-width: 0;
}
.block01 .input::-webkit-input-placeholder {
  color: #23232A;
}
.block01 .input::-moz-placeholder {
  color: #23232A;
}
.block01 .input:-moz-placeholder {
  color: #23232A;
}
.block01 .input:-ms-input-placeholder {
  color: #23232A;
}

.line {
  height: 139px;
  pointer-events: none;
  top: 0;
  left: 0;
}

.block02 .col {
  width: 50%;
}
.block02 .col img {
  width: 100%;
  height: auto;
}
.block02 .name {
  font-size: clamp(20px, 2.08vw, 40px);
  top: 0;
  left: 0;
  padding: 3.75% 4.17%;
}
.block02-button {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.block02 .btn {
  padding: 19px 40px;
}

.block03 {
  padding-top: 16.9%;
  padding-bottom: 7.6%;
  background-repeat: no-repeat;
  background-position: center 0;
}
.block03 .name {
  font-size: clamp(17px, 2.5vw, 48px);
  padding-right: 10%;
  text-indent: 100px;
}
.block03 .txt {
  font-size: clamp(18px, 1.25vw, 24px);
  width: 42.73%;
  margin-left: auto;
}

.block04 img {
  max-width: 100%;
  height: auto;
}
.block04 svg {
  width: 44.94%;
  height: auto;
  margin-left: -35px;
}

.block05 {
  margin-bottom: 9.32%;
}
.block05 .name {
  font-size: clamp(32px, 4.17vw, 80px);
}
.block05-nav ul {
  background-color: #fff;
  border-radius: 999px;
}
.block05-nav li {
  padding: 15px 40px;
  border-radius: 999px;
  color: #23232A;
  cursor: pointer;
}
.block05-nav .current {
  background-color: #23232A;
  color: #fff;
}
.block05-item {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
}
.block05 .price {
  font-size: clamp(22px, 1.67vw, 32px);
}
.block05 .num {
  font-size: clamp(16px, 1.25vw, 24px);
}

.block06 {
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-top: 10.52%;
  padding-bottom: 10.52%;
}
.block06 .name {
  font-size: clamp(25px, 4.17vw, 70px);
  color: #23232A;
}
.block06-form {
  max-width: 372px;
}
.block06 .btn {
  font-size: 18px;
  font-weight: 600;
  padding: 17px 40px;
  width: 100%;
}
.block06 .input {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  border-radius: 10px;
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  padding: 17px 24px;
  border-radius: 8px;
}
.block06 .iti {
  width: 100%;
}

.block07 {
  padding-top: 7.29%;
  padding-bottom: 11.2%;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.block07 .name {
  font-size: clamp(32px, 4.17vw, 80px);
  margin-bottom: 4.69%;
}
.block07 .play {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.2);
  width: 56px;
  height: 56px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.block07 .info {
  bottom: 0;
  left: 0;
  padding: 32px;
}
.block07 img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}
.block07-item {
  color: #fff;
}
.block07-item:hover .play {
  width: 70px;
  height: 70px;
  background-color: #DD14AD;
}

.block08 {
  padding-top: 24px;
  padding-bottom: 24px;
  background-repeat: no-repeat;
  background-position: center 0;
}
.block08-menu {
  font-size: clamp(22px, 1.67vw, 32px);
  margin-bottom: 13.02%;
}
.block08-menu a {
  color: #fff;
}
.block08-menu a:hover {
  color: #DD14AD;
}
.block08-menu2 {
  bottom: 80px;
  left: 0;
}
.block08 .logo svg {
  width: 412px;
  height: auto;
}
.block08 .inner {
  background-image: url(../images/promo2/block08-fon.png);
  background-repeat: no-repeat;
  width: 665px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 13.33%;
  padding-bottom: 8.44%;
}
.block08 .name {
  color: #23232A;
  font-size: clamp(22px, 2.5vw, 48px);
}
.block08 .btn {
  width: 382px;
  padding: 18px 40px;
  font-size: 18px;
}
.block08 dl {
  left: 4.17%;
  bottom: 80px;
}
.block08 dt {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}
.block08 dd a {
  color: #fff;
}
.block08 dd a:hover {
  color: #DD14AD;
}

@media (max-width: 1200px) {
  .block05-item {
    width: calc(20% - var(--px));
  }
  .block08 .inner {
    width: 400px;
  }
  .block08 .inner .btn {
    width: auto;
  }
}
@media (max-width: 992px) {
  .open-menu.vide2 {
    background-color: #fff;
    width: 48px;
    height: 48px;
    position: fixed;
    top: 20px;
    right: 16px;
    z-index: 10;
  }
  .open-menu.vide2:before {
    display: none !important;
  }
  .drop-menu2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.31);
    height: 100vh;
    padding: 0;
    z-index: 11;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
    display: block;
  }
  .drop-menu2.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .drop-menu2 .inner {
    width: 200px;
    height: 100%;
    background-color: #000;
    padding: 12px 20px;
    margin-left: auto;
  }
  .drop-menu2 li {
    display: block;
    margin-bottom: 20px;
  }
  .drop-menu2 li:last-child {
    margin-bottom: 0;
  }
  .drop-menu2 a {
    color: #fff;
    font-size: 18px;
  }
  .block01-header {
    padding: 13px;
    height: 74px;
  }
  .block01-header .logo {
    margin-left: 0;
  }
  .block01-header .logo svg {
    width: 152px;
    height: auto;
  }
  .block01 {
    min-height: 0;
    padding-bottom: 15%;
  }
  .block01-post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
  }
  .block01-form {
    width: 385px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }
  .block01 .title {
    font-weight: 500;
    text-transform: uppercase;
    line-height: 37px;
  }
  .block01 .price {
    font-size: 30px;
    padding: 25px 36px;
    margin-top: 17px;
  }
  .block01 .input {
    height: 61px;
  }
  .block01 .btn {
    width: 100%;
  }
  .block02-button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .block03 .txt {
    font-size: 15px;
    width: 100%;
    margin-top: 30px;
  }
  .block05-item {
    width: calc(25% - var(--px));
  }
  .block07-row .col {
    width: calc(50% - var(--px));
  }
  .block08 .inner {
    background-color: #fff;
  }
  .block08 dl {
    position: static;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
  }
  .block08 dt {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .block08 dd {
    font-size: 15px;
  }
  .block08 .logo {
    margin-bottom: 30px;
  }
  .block08 .logo svg {
    width: 300px;
    height: auto;
  }
  .drop-menu.vid2 {
    top: 100px;
    z-index: 3;
  }
  .page-promo {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 550px) {
  .zoom {
    zoom: 1.172;
  }
  .wrap2 {
    padding-left: 13px;
    padding-right: 13px;
  }
  .block01 {
    background-color: #01061b;
    padding-top: 91px;
    padding-bottom: 20px;
    background-size: 1294px auto;
    background-position: calc(50% + 20px) 132px;
    overflow: hidden;
  }
  .block01-post {
    margin-bottom: 240px;
  }
  .block01-man {
    bottom: 14px;
    left: calc(50% + 3px);
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    pointer-events: none;
  }
  .block01-man img {
    height: auto;
  }
  .block01-shadow {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(244, 244, 244, 0)), color-stop(50%, #000));
    background: linear-gradient(top, rgba(244, 244, 244, 0), #000 50%);
    pointer-events: none;
    z-index: 2;
  }
  .block01 .title {
    line-height: 120%;
  }
  .block01 .price {
    font-size: 48px;
    padding: 5px 16px;
    border-radius: 12px;
    background-image: radial-gradient(circle at center, rgb(221, 20, 173) 0%, rgb(229, 86, 195) 100%);
    border-color: #e473c9;
    border-style: solid;
    -webkit-box-shadow: 0px 5px 0px 0px rgb(170, 20, 134);
            box-shadow: 0px 5px 0px 0px rgb(170, 20, 134);
  }
  .block01 .input {
    width: 100%;
    height: 48px;
    font-size: 16px;
  }
  .block01 .btn {
    height: 51px;
    padding: 0;
  }
  .block01-line {
    top: 169px;
    left: 0;
    pointer-events: none;
  }
  .block01-line img {
    width: 56px;
    height: auto;
  }
  .block01-line2 {
    top: 225px;
    right: 0;
    pointer-events: none;
  }
  .block01-form {
    font-size: 16px;
  }
  .block01-form .iti__selected-country {
    font-size: 16px;
  }
  .block01-bottom .name {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    margin-bottom: 23px;
  }
  .block01 .has-input {
    width: 100%;
  }
  .block01 .has-input .iti {
    width: 100%;
  }
  .block01 .title {
    max-width: 300px;
  }
  .block01-form {
    width: 100%;
  }
  .block02-row {
    display: block;
  }
  .block02 .col {
    width: 100%;
  }
  .block03 .name {
    line-height: 150%;
    padding-right: 0;
  }
  .block03 .txt {
    font-size: 13px;
    padding-left: 50px;
  }
  .block04 .col {
    width: calc(100% - var(--px));
  }
  .block04 .col:last-child {
    display: none;
  }
  .block04 .col:nth-child(2) {
    width: calc(100% - 75px);
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: relative;
    z-index: 2;
    margin-top: -100px;
  }
  .block05 ul {
    width: 100%;
  }
  .block05 ul li {
    width: 50%;
    text-align: center;
  }
  .block05 .name {
    padding-left: 100px;
    padding-right: 100px;
  }
  .block05-item {
    width: calc(50% - var(--px));
    padding: 20px 20px;
  }
  .block05-item .fz18 {
    font-size: 14px;
  }
  .block06 {
    background-image: none !important;
    border-radius: 0;
    background-color: #fff;
    padding-bottom: 90px;
    padding-top: 0;
  }
  .block06-thumb {
    height: 360px;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: auto 120%;
    margin-left: -13px;
    margin-right: -13px;
  }
  .block06 .name {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 60px;
  }
  .block06-form {
    margin-left: auto;
    margin-right: auto;
  }
  .block06-form .mb-30 {
    margin-bottom: 7px;
  }
  .block07 {
    padding: 119px 0 119px 13px;
  }
  .block07 .name {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
  }
  .block07-row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-right: 0;
    gap: 10px;
    overflow-x: auto;
  }
  .block07 .col {
    width: 304px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 0;
  }
  .block08-menu {
    margin-bottom: 50px;
  }
  .block08-menu a {
    font-size: 12px;
    font-weight: 600;
  }
  .block08 .inner {
    width: 100%;
    background-color: transparent;
    padding: 145px 0 80px 0;
    background-size: 100% auto;
    position: relative;
  }
  .block08 .inner:before {
    content: "";
    width: 100%;
    height: 180px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .block08 dl {
    text-align: left;
  }
  .block08 .mb-40 {
    margin-bottom: 20px;
  }
  .block08 .btn,
  .block08 .name {
    position: relative;
    z-index: 2;
  }
  .block08 .logo svg {
    width: 217px;
  }
}
.run {
  height: 80px;
}

.marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  /* Расстояние между изображениями */
  position: absolute;
  white-space: nowrap;
  height: 100%;
}
.marquee img {
  width: auto;
  height: 42px;
}