:root {
  --yellow: #fece2e;
  --grey: #161616;
  --white: #fff;
  --dark-green: #0d6a4f;
  --navy-blue: #3a4d63;
  --sky-blue: #9bbbd4;
  --black: #161616;
  --grey: #444;
  --color-neutral-neutral-lighter: #ccc;
  --color-system-error-red: #b42318;
  --body-text: #f1f1f1;
  --font-family: "Lato", sans-serif;
  --second-family: "Gunterz", sans-serif;
  --third-family: "Hobo Std", sans-serif;
  --font3: "Roboto", sans-serif;
  --font4: "Manrope", sans-serif;
}

/* Regular */
@font-face {
  font-family: "Gunterz";
  src: url("../fonts/Gunterz/gunterz-regular-webfont.woff2") format("woff2"), url("../fonts/Gunterz/gunterz-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Italic */
@font-face {
  font-family: "Gunterz";
  src: url("../fonts/Gunterz/gunterz-italic-webfont.woff2") format("woff2"), url("../fonts/Gunterz/gunterz-italic-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* Medium */
@font-face {
  font-family: "Gunterz";
  src: url("../fonts/Gunterz/gunterz-medium-webfont.woff2") format("woff2"), url("../fonts/Gunterz/gunterz-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Medium Italic */
@font-face {
  font-family: "Gunterz";
  src: url("../fonts/Gunterz/gunterz-mediumitalic-webfont.woff2") format("woff2"), url("../fonts/Gunterz/gunterz-mediumitalic-webfont.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
/* Bold */
@font-face {
  font-family: "Gunterz";
  src: url("../fonts/Gunterz/gunterz-bold-webfont.woff2") format("woff2"), url("../fonts/Gunterz/gunterz-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Bold Italic */
@font-face {
  font-family: "Gunterz";
  src: url("../fonts/Gunterz/gunterz-bolditalic-webfont.woff2") format("woff2"), url("../fonts/Gunterz/gunterz-bolditalic-webfont.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
/* ExtraBold */
@font-face {
  font-family: "Gunterz";
  src: url("../fonts/Gunterz/gunterz-extrabold-webfont.woff2") format("woff2"), url("../fonts/Gunterz/gunterz-extrabold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* ExtraBold Italic */
@font-face {
  font-family: "Gunterz";
  src: url("../fonts/Gunterz/gunterz-extrabolditalic-webfont.woff2") format("woff2"), url("../fonts/Gunterz/gunterz-extrabolditalic-webfont.woff") format("woff");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
/* Black */
@font-face {
  font-family: "Gunterz";
  src: url("../fonts/Gunterz/gunterz-black-webfont.woff2") format("woff2"), url("../fonts/Gunterz/gunterz-black-webfont.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* Black Italic */
@font-face {
  font-family: "Gunterz";
  src: url("../fonts/Gunterz/gunterz-blackitalic-webfont.woff2") format("woff2"), url("../fonts/Gunterz/gunterz-blackitalic-webfont.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
html,
body {
  height: 100%;
}

body {
  background: #1b1b1b;
  font-family: "Lato", sans-serif;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.body-fixed {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}
@media screen and (max-width: 900px) {
  .container {
    width: 100%;
    padding: 0px 27px;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.logo img {
  width: 135px;
}
@media (max-width: 768px) {
  .logo img {
    width: 116px;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  color: #000;
  -webkit-box-shadow: 5px 5px 0 0 #000;
          box-shadow: 5px 5px 0 0 #000;
  background: var(--yellow);
  border: 2px solid #000;
  border-radius: 36px;
  padding: 15px 35px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
  white-space: nowrap;
}
.btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-color: #ffc609;
}
@media (max-width: 768px) {
  .btn {
    font-size: 14px;
    -webkit-box-shadow: 4px 4px 0 0 #000;
            box-shadow: 4px 4px 0 0 #000;
    padding: 11px 25px;
  }
}

.titlemain {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 99%;
  text-transform: capitalize;
  color: var(--yellow);
}
@media (max-width: 768px) {
  .titlemain {
    font-size: 18px;
    line-height: 100%;
  }
}

.bold-pretitle {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 99%;
  text-transform: capitalize;
  color: var(--white);
}
@media (max-width: 768px) {
  .bold-pretitle {
    font-size: 12px;
    line-height: 99%;
  }
}

.pretitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: var(--white);
}
@media (max-width: 768px) {
  .pretitle {
    font-size: 12px;
    line-height: 150%;
  }
}

.btn-light {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05), inset 0 -2px 0 0 rgba(10, 13, 18, 0.05), inset 0 0 0 1px rgba(10, 13, 18, 0.18);
          box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05), inset 0 -2px 0 0 rgba(10, 13, 18, 0.05), inset 0 0 0 1px rgba(10, 13, 18, 0.18);
  background: #181818;
  border: 1px solid #878787;
  border-radius: 9999px;
  padding: 15px 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  white-space: nowrap;
}
.btn-light:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  border: 1px solid #000;
  color: #000;
  background: var(--yellow);
}
@media (max-width: 768px) {
  .btn-light {
    font-size: 11px;
    border-radius: 20px;
    padding: 8px 19px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .btn-light:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.btn-v2 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  color: var(--yellow);
  border: 1.41px solid var(--yellow);
  border-radius: 25px;
  padding: 10px 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn-v2:hover {
  color: #000;
  background-color: var(--yellow);
}
@media (max-width: 768px) {
  .btn-v2 {
    font-size: 8px;
    border: 0.84px solid var(--yellow);
    border-radius: 15px;
    padding: 6px 15px;
  }
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  padding: 28px 0;
}
.header__box {
  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;
}
@media (max-width: 768px) {
  .header {
    padding: 14px 0;
  }
  .header .logo {
    position: relative;
    z-index: 51;
  }
  .header .logo img {
    width: 85px;
  }
}

.h-btns-nav-mob {
  display: none;
}
@media (max-width: 992px) {
  .h-btns-nav-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 17px;
    margin-top: 50px;
  }
  .h-btns-nav-mob a {
    width: 50%;
    font-weight: 800;
    font-size: 20px;
    padding: 15px;
    border-radius: 9999px;
  }
}

@media (max-width: 992px) {
  .main-header-menu {
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: fixed;
    overflow: auto;
    background-color: #1B1B1B;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 50;
    padding-left: 27px;
    padding-right: 27px;
    padding-top: 96px;
    padding-bottom: 30px;
    -webkit-transition: 0.23s;
    transition: 0.23s;
    left: -100vw;
  }
  .main-header-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .main-header-menu ul li a {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--yellow);
  }
  .main-header-menu::before {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    width: 100%;
    min-height: 70px;
    background-color: #1B1B1B;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: 0.23s;
            transition-delay: 0.23s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .main-header-menu.active {
    left: 0;
  }
  .main-header-menu.active::before {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.23s;
            transition-delay: 0.23s;
    transition-delay: 0.23s;
  }
}

.header-menu {
  position: relative;
}
.header-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.header-menu ul a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: var(--white);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header-menu ul a:hover {
  color: var(--yellow);
}
@media (max-width: 1200px) {
  .header-menu ul {
    gap: 22px;
  }
}
.header-menu .has-submenu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.header-menu .has-submenu__link::after {
  content: "";
  position: relative;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  background-image: url(../img/icons/min-arr.svg);
}
.header-menu .has-submenu__link:hover::after {
  background-image: url(../img/icons/min-arr-active.svg);
}
@media (max-width: 992px) {
  .header-menu .has-submenu__link::after {
    background-image: url(../img/icons/min-arr-active.svg);
  }
}
.header-menu .submenu {
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: -65px;
  opacity: 0;
  visibility: hidden;
  height: 448px;
  padding-top: 31px;
  min-width: 975px;
  max-width: 975px;
}
@media (max-width: 1270px) {
  .header-menu .submenu {
    min-width: 875px;
    max-width: 875px;
  }
}
@media (max-width: 1200px) {
  .header-menu .submenu {
    left: -80px;
    min-width: 775px;
    max-width: 775px;
  }
}
@media (max-width: 992px) {
  .header-menu .submenu {
    position: relative;
    left: 0;
    top: auto;
  }
}
.header-menu .has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  .header-menu .has-submenu-tools:hover .submenutools {
    opacity: 1;
    visibility: visible;
  }
}
.header-menu .submenutools {
  position: absolute;
  z-index: 10;
  right: 72px;
  padding-top: 30px;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 992px) {
  .header-menu .submenutools {
    opacity: 1;
    visibility: visible;
    position: relative;
    display: none;
    right: auto;
  }
  .header-menu .submenutools.active {
    display: block;
  }
  .header-menu .submenutools .submenutools-box {
    background-color: #222222 !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .header-menu .submenutools .submenutools-box::before {
    display: none;
  }
  .header-menu .submenutools .submenutools-box a {
    color: var(--yellow) !important;
  }
}
.header-menu .submenutools .submenutools-box {
  min-width: 240px;
  max-width: 240px;
  background-color: #353535;
  padding: 33px 24px;
  border-radius: 8px;
  position: relative;
}
.header-menu .submenutools .submenutools-box::before {
  width: 20px;
  height: 20px;
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: -19px;
  right: 15px;
  background-image: url(../img/icons/trian.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.header-menu .submenutools ul {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
.header-menu .submenutools ul li a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  color: var(--white);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header-menu .submenutools ul li a:hover {
  color: var(--yellow);
}
.header-menu .submenu-nav {
  min-width: 190px;
  max-width: 190px;
  background-color: #353535;
  padding: 33px 24px;
  border-radius: 8px 0 0 8px;
  position: relative;
}
@media (max-width: 1270px) {
  .header-menu .submenu-nav {
    min-width: 150px;
    max-width: 150px;
    padding: 33px 18px;
  }
}
.header-menu .submenu-nav::before {
  width: 20px;
  height: 20px;
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: -19px;
  right: 15px;
  background-image: url(../img/icons/trian.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.header-menu .submenu-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
.header-menu .submenu-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  color: var(--white);
}
.header-menu .submenu-nav ul li a:hover {
  color: var(--yellow);
}
.header-menu .submenu-nav__main:hover {
  color: var(--yellow);
}
.header-menu .submenu-nav__main:hover::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  content: "";
  position: relative;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  background-image: url(../img/icons/min-arr-active.svg);
}
.header-menu .submenu-nav__main.active {
  color: var(--yellow);
}
.header-menu .submenu-nav__main.active::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  content: "";
  position: relative;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  background-image: url(../img/icons/min-arr-active.svg);
}
.header-menu .submenu-box {
  background-color: #222222;
  border-radius: 0 8px 8px 0;
  padding: 33px 55px;
  width: 100%;
}
@media (max-width: 1270px) {
  .header-menu .submenu-box {
    padding: 33px 35px;
  }
}
@media (max-width: 1200px) {
  .header-menu .submenu-box {
    padding: 33px 20px;
  }
}
.header-menu .submenu-item {
  display: none;
}
.header-menu .submenu-item.active {
  display: block;
}
.header-menu .submenu-item ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr 22px 1fr 22px 1fr 22px 1fr 22px 1fr 22px 1fr 22px 1fr 22px 1fr;
  grid-template-rows: repeat(8, 1fr);
  grid-auto-flow: column;
  gap: 22px 45px;
  margin: 0 auto;
}
.header-menu .submenu-item ul > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.header-menu .submenu-item ul > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.header-menu .submenu-item ul > *:nth-child(3) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.header-menu .submenu-item ul > *:nth-child(4) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.header-menu .submenu-item ul > *:nth-child(5) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}
.header-menu .submenu-item ul > *:nth-child(6) {
  -ms-grid-row: 11;
  -ms-grid-column: 1;
}
.header-menu .submenu-item ul > *:nth-child(7) {
  -ms-grid-row: 13;
  -ms-grid-column: 1;
}
.header-menu .submenu-item ul > *:nth-child(8) {
  -ms-grid-row: 15;
  -ms-grid-column: 1;
}
.header-menu .submenu-item ul > *:nth-child(9) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.header-menu .submenu-item ul > *:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.header-menu .submenu-item ul > *:nth-child(11) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.header-menu .submenu-item ul > *:nth-child(12) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
.header-menu .submenu-item ul > *:nth-child(13) {
  -ms-grid-row: 9;
  -ms-grid-column: 3;
}
.header-menu .submenu-item ul > *:nth-child(14) {
  -ms-grid-row: 11;
  -ms-grid-column: 3;
}
.header-menu .submenu-item ul > *:nth-child(15) {
  -ms-grid-row: 13;
  -ms-grid-column: 3;
}
.header-menu .submenu-item ul > *:nth-child(16) {
  -ms-grid-row: 15;
  -ms-grid-column: 3;
}
.header-menu .submenu-item ul > *:nth-child(17) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.header-menu .submenu-item ul > *:nth-child(18) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.header-menu .submenu-item ul > *:nth-child(19) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
.header-menu .submenu-item ul > *:nth-child(20) {
  -ms-grid-row: 7;
  -ms-grid-column: 5;
}
.header-menu .submenu-item ul > *:nth-child(21) {
  -ms-grid-row: 9;
  -ms-grid-column: 5;
}
.header-menu .submenu-item ul > *:nth-child(22) {
  -ms-grid-row: 11;
  -ms-grid-column: 5;
}
.header-menu .submenu-item ul > *:nth-child(23) {
  -ms-grid-row: 13;
  -ms-grid-column: 5;
}
.header-menu .submenu-item ul > *:nth-child(24) {
  -ms-grid-row: 15;
  -ms-grid-column: 5;
}
.header-menu .submenu-item ul > *:nth-child(25) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.header-menu .submenu-item ul > *:nth-child(26) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.header-menu .submenu-item ul > *:nth-child(27) {
  -ms-grid-row: 5;
  -ms-grid-column: 7;
}
.header-menu .submenu-item ul > *:nth-child(28) {
  -ms-grid-row: 7;
  -ms-grid-column: 7;
}
.header-menu .submenu-item ul > *:nth-child(29) {
  -ms-grid-row: 9;
  -ms-grid-column: 7;
}
.header-menu .submenu-item ul > *:nth-child(30) {
  -ms-grid-row: 11;
  -ms-grid-column: 7;
}
.header-menu .submenu-item ul > *:nth-child(31) {
  -ms-grid-row: 13;
  -ms-grid-column: 7;
}
.header-menu .submenu-item ul > *:nth-child(32) {
  -ms-grid-row: 15;
  -ms-grid-column: 7;
}
.header-menu .submenu-item ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: var(--white);
}
.header-menu .submenu-item ul li a:hover {
  color: var(--yellow);
}
@media (max-width: 1270px) {
  .header-menu .submenu-item ul {
    gap: 22px 25px;
  }
}
@media (max-width: 1200px) {
  .header-menu .submenu-item ul {
    gap: 22px 15px;
  }
  .header-menu .submenu-item ul li a {
    font-size: 16px;
  }
}
.header-menu .submenu-mobile {
  display: none;
}
@media (max-width: 992px) {
  .header-menu .submenu-desktop {
    display: none;
  }
  .header-menu .submenu-mobile {
    display: none;
    background: #222222;
    border-radius: 8px;
    padding: 20px 22px;
    margin-top: 31px;
    margin-bottom: 9px;
  }
  .header-menu .submenu-mobile.active {
    display: block;
  }
  .header-menu .submenu-mobile .submenu-mobile-main::after {
    content: "";
    position: relative;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 20px;
    height: 20px;
    -webkit-transition: 0.23s;
    transition: 0.23s;
    background-image: url(../img/icons/min-arr-active.svg);
  }
  .header-menu .submenu-mobile li a {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    color: var(--yellow);
    min-width: 140px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-menu .submenu-mobile__list {
    display: none;
    gap: 16px;
    margin-top: 16px;
  }
  .header-menu .submenu-mobile__list.active {
    display: -ms-grid;
    display: grid;
  }
  .header-menu .submenu-mobile__list li a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--white);
  }
}

.h-btns-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 1200px) {
  .h-btns-nav {
    gap: 12px;
  }
  .h-btns-nav .btn-light {
    font-size: 16px;
    padding: 13px 24px;
  }
  .h-btns-nav .btn {
    font-size: 16px;
    padding: 13px 24px;
  }
}

@media (max-width: 992px) {
  .main-header-btns {
    display: none;
  }
}

.btn-menumob {
  display: none;
}
@media (max-width: 992px) {
  .btn-menumob {
    width: 27px;
    height: 22px;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    z-index: 51;
  }
  .btn-menumob span {
    display: block;
    width: 27px;
    height: 4px;
    background: var(--yellow);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
  .btn-menumob.active span:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
            transform: translateY(9px) rotate(45deg);
  }
  .btn-menumob.active span:nth-child(2) {
    opacity: 0;
  }
  .btn-menumob.active span:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
            transform: translateY(-9px) rotate(-45deg);
  }
}

.hero {
  height: 800px;
  padding-top: 122px;
  background-image: url(../img/gridbg.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 768px) {
  .hero {
    background-size: 740px;
  }
}
.hero .hero-lines {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  background-color: #1B1B1B;
}
.hero .hero-lines::before {
  display: block;
  content: "";
  width: 100%;
  height: 12px;
  background: var(--white);
}
.hero .hero-lines::after {
  display: block;
  content: "";
  width: 100%;
  height: 12px;
  background: var(--white);
}
.hero .hero-wrap {
  height: 100%;
  padding-top: 112px;
}
@media (max-width: 768px) {
  .hero .hero-wrap {
    padding-top: 80px;
  }
}
.hero .hero-wrap .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.hero .hero-wrap .container .hfigure1,
.hero .hero-wrap .container .hfigure2,
.hero .hero-wrap .container .hfigure3,
.hero .hero-wrap .container .hfigure4 {
  position: absolute;
}
.hero .hero-wrap .container .hfigure1 img,
.hero .hero-wrap .container .hfigure2 img,
.hero .hero-wrap .container .hfigure3 img,
.hero .hero-wrap .container .hfigure4 img {
  mix-blend-mode: color-dodge;
  opacity: 0.8;
}
@media (max-width: 1200px) {
  .hero .hero-wrap .container .hfigure1 img,
  .hero .hero-wrap .container .hfigure2 img,
  .hero .hero-wrap .container .hfigure3 img,
  .hero .hero-wrap .container .hfigure4 img {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .hero .hero-wrap .container .hfigure1 img,
  .hero .hero-wrap .container .hfigure2 img,
  .hero .hero-wrap .container .hfigure3 img,
  .hero .hero-wrap .container .hfigure4 img {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .hero .hero-wrap .container .hfigure1:nth-child(1) img, .hero .hero-wrap .container .hfigure1:nth-child(2) img,
  .hero .hero-wrap .container .hfigure2:nth-child(1) img,
  .hero .hero-wrap .container .hfigure2:nth-child(2) img,
  .hero .hero-wrap .container .hfigure3:nth-child(1) img,
  .hero .hero-wrap .container .hfigure3:nth-child(2) img,
  .hero .hero-wrap .container .hfigure4:nth-child(1) img,
  .hero .hero-wrap .container .hfigure4:nth-child(2) img {
    width: 42%;
  }
}
.hero .hero-wrap .container .hfigure1 {
  left: -250px;
  top: -160px;
}
@media (max-width: 1200px) {
  .hero .hero-wrap .container .hfigure1 {
    left: -150px;
  }
}
@media (max-width: 768px) {
  .hero .hero-wrap .container .hfigure1 {
    left: -120px;
    top: -110px;
  }
}
.hero .hero-wrap .container .hfigure2 {
  right: -250px;
  top: -160px;
}
@media (max-width: 1200px) {
  .hero .hero-wrap .container .hfigure2 {
    right: -340px;
  }
}
@media (max-width: 768px) {
  .hero .hero-wrap .container .hfigure2 {
    right: -400px;
    top: -110px;
  }
}
.hero .hero-wrap .container .hfigure3 {
  bottom: 40px;
  left: -130px;
}
@media (max-width: 1200px) {
  .hero .hero-wrap .container .hfigure3 {
    left: -60px;
    bottom: 100px;
  }
}
@media (max-width: 768px) {
  .hero .hero-wrap .container .hfigure3 {
    left: -40px;
    bottom: 73px;
  }
}
.hero .hero-wrap .container .hfigure4 {
  bottom: 100px;
  right: -100px;
}
@media (max-width: 1200px) {
  .hero .hero-wrap .container .hfigure4 {
    right: -190px;
    bottom: 100px;
  }
}
@media (max-width: 768px) {
  .hero .hero-wrap .container .hfigure4 {
    right: -265px;
    bottom: 80px;
  }
}
.hero .hero-wrap .hero-box {
  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;
  gap: 25px;
  position: relative;
  z-index: 2;
}
.hero .hero-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 84px;
  line-height: 100%;
  text-transform: capitalize;
  text-align: center;
  color: var(--white);
}
.hero .hero-title span {
  color: var(--yellow);
}
@media (max-width: 992px) {
  .hero .hero-title {
    font-size: 70px;
  }
}
.hero .hero-pretitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--body-text);
}
.hero .hero-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 26px;
}
.hero .hero-stats-section {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
}
.hero .hero-stats {
  -webkit-box-shadow: 5px 5px 0 0 #000;
          box-shadow: 5px 5px 0 0 #000;
  background: var(--yellow);
  border: 2.07px solid #000;
  border-radius: 17px;
  padding: 28px 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1054px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.hero .hero-stats .hero-stats-item {
  position: relative;
  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;
}
.hero .hero-stats .hero-stats-item span {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 50px;
  text-transform: uppercase;
  text-align: center;
  color: #121212;
  line-height: 120%;
}
.hero .hero-stats .hero-stats-item p {
  font-family: var(--second-family);
  font-weight: 600;
  line-height: 120%;
  font-size: 17px;
  text-align: center;
  color: #121212;
}
.hero .hero-stats .hero-stats-item::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #000;
}
.hero .hero-stats .hero-stats-item:last-child::after {
  display: none;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 69px;
    height: 420px;
  }
  .hero .hero-wrap .hero-box {
    gap: 13px;
  }
  .hero .hero-title {
    font-size: 30px;
    line-height: 100%;
  }
  .hero .hero-pretitle {
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 5px;
  }
  .hero .hero-nav {
    gap: 19px;
  }
  .hero .hero-lines {
    gap: 4.5px;
  }
  .hero .hero-lines::before {
    height: 3px;
  }
  .hero .hero-lines::after {
    height: 3px;
  }
  .hero .hero-stats-section {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
  }
  .hero .hero-stats {
    border: 0.63px solid #000;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 0 0 #000;
            box-shadow: 2px 2px 0 0 #000;
    max-width: 400px;
    padding: 9px 0;
  }
  .hero .hero-stats .hero-stats-item span {
    font-weight: 700;
    font-size: 15px;
  }
  .hero .hero-stats .hero-stats-item p {
    font-size: 6px;
  }
  .hero .hero-stats .hero-stats-item::after {
    width: 0.5px;
  }
}

.hero-V2 {
  height: 535px;
  background-position: center center;
  background-size: cover;
}
.hero-V2 .hero-wrap {
  padding-top: 68px;
}
@media (max-width: 768px) {
  .hero-V2 {
    height: 307px;
  }
  .hero-V2 .hero-wrap {
    padding-top: 42px;
  }
}

.toolkit {
  padding-top: 165px;
  padding-bottom: 80px;
}
.toolkit__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 98px;
}
@media (max-width: 1200px) {
  .toolkit__box {
    gap: 33px;
  }
}
.toolkit__info {
  width: 100%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 26px;
  max-width: 550px;
}
.toolkit__image {
  width: 100%;
  max-width: 635px;
}
.toolkit__image img {
  width: 100%;
}
@media (max-width: 992px) {
  .toolkit__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .toolkit__info {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .toolkit {
    padding-top: 62px;
    padding-bottom: 26px;
  }
}

.reviews {
  padding-top: 80px;
  padding-bottom: 152px;
}
@media (max-width: 768px) {
  .reviews {
    padding-top: 26px;
    padding-bottom: 57px;
  }
}
.reviews__top {
  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;
  gap: 24px;
  margin-bottom: 41px;
}
@media (max-width: 768px) {
  .reviews__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 13px;
    margin-bottom: 32px;
  }
  .reviews__top .btn {
    font-size: 11px;
    padding: 8px 19px;
  }
}
.reviews__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 22px 1fr 22px 1fr 22px 1fr 22px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
@media (max-width: 1200px) {
  .reviews__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .reviews__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    padding-top: 12px;
    width: 100vw;
    position: relative;
    left: -27px;
    padding-left: 27px;
    padding-right: 27px;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    padding-bottom: 10px;
    gap: 13px;
  }
  .reviews__list::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}

.reviews-item {
  position: relative;
  -webkit-box-shadow: 5px 5px 0 0 #000;
          box-shadow: 5px 5px 0 0 #000;
  background: #353535;
  border: 2px solid #000;
  border-radius: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.reviews-item__num {
  position: absolute;
  top: -12px;
  left: -10px;
  background: var(--yellow);
  border: 4px solid var(--grey);
  border-radius: 20px;
  padding: 8px 11px;
  width: 38px;
  height: 38px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reviews-item__top {
  height: 186px;
  background: #e0293c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #000;
  border-radius: 17px;
  padding: 24px;
}
.reviews-item__top img {
  width: 100%;
}
.reviews-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 12px 22px 12px;
  gap: 24px;
}
.reviews-item__content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: var(--white);
}
.reviews-item:nth-child(2) .reviews-item__top {
  background: #1a1a1a;
}
.reviews-item:nth-child(3) .reviews-item__top {
  background: #122a53;
}
.reviews-item:nth-child(4) .reviews-item__top {
  background: #000;
}
.reviews-item:nth-child(5) .reviews-item__top {
  background: #61c7ec;
}
@media (max-width: 768px) {
  .reviews-item {
    min-width: 142px;
    max-width: 142px;
    -webkit-box-shadow: 3px 3px 0 0 #000;
            box-shadow: 3px 3px 0 0 #000;
    border: 1.2px solid #000;
    border-radius: 10px;
  }
  .reviews-item__num {
    top: -12px;
    left: -10px;
    border: 3px solid var(--grey);
    border-radius: 20px;
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
  .reviews-item__top {
    border-radius: 10px;
    height: 111px;
    border: 1.2px solid #000;
  }
  .reviews-item__content {
    padding: 15px 7px 11px 7px;
    gap: 14px;
  }
  .reviews-item__content p {
    font-size: 11px;
    line-height: 130%;
  }
}

.tools {
  background: var(--yellow);
  padding: 64px 0;
  overflow: hidden;
  position: relative;
}
.tools .tools-bg-img {
  position: absolute;
  width: 100%;
  max-width: 1440px;
  height: 804px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tools .tools-bg-img--desktop {
    display: none;
  }
}
.tools .tools-bg-img--mobile {
  display: none;
}
@media (max-width: 768px) {
  .tools .tools-bg-img--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
  }
}
.tools .container {
  position: relative;
  z-index: 3;
}
.tools__top {
  margin-bottom: 40px;
}
.tools__top .titlemain {
  font-size: 48px;
  line-height: 105%;
  text-align: center;
  color: #121212;
  margin: 0 auto;
  margin-bottom: 8px;
  max-width: 891px;
}
.tools__top .pretitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #121212;
}
.tools__list {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1200px) {
  .tools__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.tools .tools-item {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-box-shadow: 5px 5px 0 0 #000;
          box-shadow: 5px 5px 0 0 #000;
  background: #353535;
  border: 2px solid #000;
  border-radius: 17px;
  padding: 20px 23px 0 23px;
}
.tools .tools-item__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7px;
}
.tools .tools-item__top .btn {
  font-size: 12px;
  padding: 10px 22px;
  -webkit-box-shadow: 4px 4px 0 0 #000;
          box-shadow: 4px 4px 0 0 #000;
  border: 2px solid #000;
  border-radius: 25px;
}
.tools .tools-item__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 105%;
  text-transform: capitalize;
  color: var(--yellow);
  margin-bottom: 6px;
}
.tools .tools-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--white);
}
.tools .tools-item__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tools .tools-item__image img {
  height: 151px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .tools {
    padding-top: 41px;
    padding-bottom: 43px;
  }
  .tools__top {
    margin-bottom: 21px;
  }
  .tools__top .titlemain {
    font-size: 22px;
    margin-bottom: 9px;
  }
  .tools__top .pretitle {
    font-size: 12px;
  }
  .tools__list {
    gap: 10px;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .tools .tools-item {
    gap: 12px;
    -webkit-box-shadow: 4px 4px 0 0 #000;
            box-shadow: 4px 4px 0 0 #000;
    border-radius: 12px;
    padding: 19px 15px 0 15px;
  }
  .tools .tools-item__top {
    gap: 7px;
  }
  .tools .tools-item__top .btn {
    font-size: 9px;
    padding: 8px 17px;
    -webkit-box-shadow: 3px 3px 0 0 #000;
            box-shadow: 3px 3px 0 0 #000;
    border: 1.53px solid #000;
    border-radius: 19px;
  }
  .tools .tools-item__title {
    font-size: 15px;
    line-height: 105%;
    margin-bottom: 5px;
  }
  .tools .tools-item p {
    font-size: 12px;
    line-height: 120%;
  }
  .tools .tools-item__image img {
    height: 131px;
  }
}
@media (max-width: 576px) {
  .tools__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .tools .tools-item__image img {
    height: 104px;
  }
}

.articles {
  padding-top: 103px;
  padding-bottom: 118px;
  position: relative;
}
.articles__box {
  background: #323232;
  border: 2px solid #000;
  border-radius: 17px;
  padding: 46px 50px;
  position: relative;
  z-index: 2;
}
.articles__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  margin-bottom: 52px;
}
.articles__top .titlemain {
  font-size: 33px;
}
.articles__top .pretitle {
  font-size: 22px;
}
.articles .line1 {
  position: absolute;
  top: calc(50% - 20px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
.articles .line1::before {
  position: relative;
  width: 100%;
  background: var(--yellow);
  height: 12px;
  content: "";
  display: block;
}
.articles .line1::after {
  position: relative;
  width: 100%;
  background: var(--yellow);
  height: 12px;
  content: "";
  display: block;
}
.articles .swiper-pagination {
  bottom: 19px !important;
}
.articles .swiper-pagination .swiper-pagination-bullet {
  height: 7px;
  width: 8px;
  background-color: #767676;
  opacity: 1;
}
.articles .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--yellow);
}
@media (max-width: 768px) {
  .articles {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .articles__box {
    border: 2px solid #000;
    border-radius: 17px;
    padding: 24px 22px 40px 22px;
  }
  .articles__top {
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
  .articles__top .titlemain {
    font-size: 15px;
    line-height: 100%;
  }
  .articles__top .pretitle {
    font-size: 10px;
    line-height: 150%;
  }
  .articles__top .btn {
    font-size: 11px;
    padding: 8px 19px;
  }
  .articles .line1 {
    top: calc(50% - 5px);
    gap: 4px;
  }
  .articles .line1::before {
    height: 3px;
  }
  .articles .line1::after {
    height: 3px;
  }
}

.articlesSlider {
  width: calc(100% + 7px);
  padding-right: 7px !important;
  margin-left: -3.5px;
}
.articlesSlider .swiper-slide {
  padding-top: 20px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .articlesSlider {
    width: calc(100% + 45px);
    margin-left: -22px !important;
    padding-left: 23px !important;
    padding-right: 23px !important;
  }
}

.articles-item {
  -webkit-box-shadow: 5px 5px 0 0 #000;
          box-shadow: 5px 5px 0 0 #000;
  background: var(--white);
  border: 1.84px solid #000;
  border-radius: 15px;
  padding: 24px 20px 20px 20px;
  position: relative;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.articles-item__label {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 15px;
  line-height: 110%;
  text-transform: capitalize;
  text-align: center;
  color: var(--yellow);
  background: #000;
  border-radius: 7px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -19px;
  width: 162px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.articles-item__main {
  width: 100%;
}
.articles-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
  gap: 12px;
}
.articles-item__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  text-transform: capitalize;
  color: #000;
}
.articles-item__link {
  background-color: #000;
  min-width: 60px;
  max-width: 60px;
  min-height: 60px;
  max-height: 60px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(../img/icons/Arrow1.svg);
  background-position: center;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.articles-item__link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.articles-item__info {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 11px;
  line-height: 110%;
  text-transform: capitalize;
  color: #000;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.articles-item__bottom {
  width: 100%;
}
.articles-item__txt {
  margin-bottom: 20px;
}
.articles-item__image {
  height: 190px;
  border-radius: 15px;
  overflow: hidden;
}
.articles-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .articles-item {
    -webkit-box-shadow: 3px 3px 0 0 #000;
            box-shadow: 3px 3px 0 0 #000;
    border: 1.31px solid #000;
    border-radius: 11px;
    padding: 17px 14px 13px 14px;
  }
  .articles-item__label {
    font-size: 10px;
    line-height: 110%;
    border-radius: 5px;
    top: -14px;
    width: 115px;
    height: 21px;
  }
  .articles-item__top {
    margin-bottom: 13px;
    gap: 12px;
  }
  .articles-item__title {
    font-size: 19px;
    line-height: 110%;
  }
  .articles-item__link {
    min-width: 43px;
    max-width: 43px;
    min-height: 43px;
    max-height: 43px;
    background-size: 16px;
  }
  .articles-item__info {
    font-size: 7px;
    line-height: 110%;
    border-bottom: 0.71px solid #000;
    padding-bottom: 12px;
    margin-bottom: 10px;
  }
  .articles-item__bottom {
    width: 100%;
  }
  .articles-item__txt {
    font-weight: 400;
    font-size: 11px;
    line-height: 120%;
    margin-bottom: 12px;
  }
  .articles-item__image {
    height: 135px;
  }
}

.cta-section {
  background-color: #1B1B1B;
  border-bottom: 12px solid var(--white);
  padding-bottom: 17px;
}
.cta-section__wrap {
  background-image: url(../img/bgcta2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top: 5px solid var(--yellow);
  padding-top: 77px;
  padding-bottom: 77px;
  border-bottom: 12px solid var(--white);
}
.cta-section__box {
  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;
  gap: 36px;
}
@media (max-width: 992px) {
  .cta-section__box {
    gap: 22px;
  }
}
.cta-section__image img {
  width: 226px;
}
@media (max-width: 1200px) {
  .cta-section__image img {
    width: 180px;
  }
}
@media (max-width: 992px) {
  .cta-section__image img {
    width: 140px;
  }
}
.cta-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.cta-section__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 105%;
  text-transform: capitalize;
  text-align: center;
  color: var(--yellow);
}
@media (max-width: 1200px) {
  .cta-section__title {
    font-size: 42px;
  }
}
.cta-section p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--white);
}
@media (max-width: 768px) {
  .cta-section {
    padding-bottom: 0;
    border-bottom: none;
  }
  .cta-section__wrap {
    padding-top: 46px;
    padding-bottom: 56px;
    border-bottom: none;
  }
  .cta-section__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta-section .ctaimg2 {
    display: none;
  }
  .cta-section__content {
    gap: 15px;
  }
  .cta-section__image img {
    width: 114px;
  }
  .cta-section__title {
    font-size: 25px;
    line-height: 89%;
    margin-bottom: 3px;
  }
  .cta-section p {
    font-size: 14px;
    line-height: 110%;
  }
}

.footer {
  background: #171515;
  padding: 80px 0;
}
.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
}
.footer__main {
  width: 100%;
}
.footer__main .logo {
  margin-bottom: 32px;
}
.footer .footer-contact {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
.footer .footer-contact__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--yellow);
  margin-bottom: 4px;
}
.footer .footer-contact p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #ccc;
}
.footer .footer-contact a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-decoration: underline;
  color: #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer-contact a:hover {
  text-decoration: none;
}
.footer .footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.footer .footer-social ul a {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.footer .footer-social ul a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.footer .footer-menu {
  min-width: 384px;
  max-width: 384px;
  padding-top: 70px;
}
.footer .footer-menu ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 12px auto 12px auto 12px auto 12px auto;
  grid-template-rows: repeat(5, auto);
  -ms-grid-columns: 50% 24px 50%;
  grid-template-columns: 50% 50%;
  grid-auto-flow: column;
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-menu ul > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.footer .footer-menu ul > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.footer .footer-menu ul > *:nth-child(3) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.footer .footer-menu ul > *:nth-child(4) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.footer .footer-menu ul > *:nth-child(5) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}
.footer .footer-menu ul > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.footer .footer-menu ul > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.footer .footer-menu ul > *:nth-child(8) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.footer .footer-menu ul > *:nth-child(9) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
.footer .footer-menu ul > *:nth-child(10) {
  -ms-grid-row: 9;
  -ms-grid-column: 3;
}
.footer .footer-menu ul li a {
  display: block;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: var(--yellow);
}
.footer .footer-menu ul li a:hover {
  text-decoration: underline;
}
.footer .footer-bottom {
  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;
  border-top: 1px solid #474747;
  padding-top: 32px;
  margin-top: 80px;
}
.footer .footer-copyright {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #ccc;
}
.footer .footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.footer .footer-nav ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-decoration: underline;
  color: #ccc;
}
.footer .footer-nav ul li a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 34px;
    padding-bottom: 20px;
    background-color: transparent;
  }
  .footer__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .footer__main .logo {
    margin-bottom: 16px;
  }
  .footer .footer-social ul {
    gap: 12.5px;
  }
  .footer .footer-social img {
    width: 25px;
  }
  .footer .footer-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
  .footer .footer-contact__item:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(50% - 7.5px);
  }
  .footer .footer-contact__item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: calc(50% - 7.5px);
  }
  .footer .footer-contact__item:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .footer .footer-contact__item p {
    font-size: 11px;
  }
  .footer .footer-contact__item a {
    font-size: 11px;
  }
  .footer .footer-contact__title {
    font-size: 13px;
    margin-bottom: 2.8px;
  }
  .footer .footer-menu {
    min-width: 100%;
    width: 100%;
    max-width: 440px;
    padding-top: 0;
  }
  .footer .footer-menu ul {
    gap: 0px 32px;
  }
  .footer .footer-menu ul li {
    width: 100%;
  }
  .footer .footer-menu ul li a {
    font-size: 15px;
  }
  .footer .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-top: none;
    padding-top: 0;
    margin-top: 33px;
  }
  .footer .footer-copyright {
    font-size: 16px;
    border-top: 1px solid #474747;
    font-size: 10px;
    width: 100%;
    padding-top: 8px;
    margin-top: 10px;
  }
  .footer .footer-nav ul li a {
    font-size: 10px;
  }
}

.tab-section {
  padding-top: 65px;
  padding-bottom: 98px;
}
.tab-section .main-tab-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.tab-section .main-tab-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  color: #ffffff;
  width: 100%;
  max-width: 243px;
  background: #181818;
  border: 1px solid #878787;
  border-radius: 40px;
  padding: 9px 10px;
}
.tab-section .main-tab-btn.disabled {
  border: 1px solid #4a4a4a;
  color: #414141;
}
.tab-section .main-tab-btn.active {
  -webkit-box-shadow: 5px 5px 0 0 #000000;
          box-shadow: 5px 5px 0 0 #000000;
  background: var(--yellow);
  border: 2px solid #000000;
  color: #000000;
}
.tab-section .main-tab-container {
  margin-top: 29px;
}
.tab-section .main-tab-content {
  display: none;
}
.tab-section .main-tab-content .main-tab-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 44px;
  line-height: 99%;
  text-transform: capitalize;
  text-align: center;
  color: var(--yellow);
  margin-bottom: 29px;
}
.tab-section .main-tab-content.active {
  display: block;
}
.tab-section .tab-odds__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab-section .tab-odds-btn {
  width: 33.33%;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 28px;
  text-align: center;
  background-color: #fff;
  border: 5px solid #000;
  border-radius: 17px 17px 0 0;
  color: #000;
  padding: 20px;
}
.tab-section .tab-odds-btn.active {
  border: 5px solid #000;
  background-color: var(--yellow);
  border-bottom: none;
}
.tab-section .tab-odds-box {
  border-radius: 0 0 17px 17px;
  background: var(--yellow);
  padding: 50px 46px 54px 46px;
  border: 5px solid #000;
  border-top: none;
}
@media (max-width: 992px) {
  .tab-section .tab-odds-box {
    padding: 40px 10px 44px 10px;
  }
}
.tab-section .tab-odds-tab {
  display: none;
}
.tab-section .tab-odds-tab.active {
  display: block;
}
.tab-section .od-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.tab-section .od-wrap .od-col-1 {
  width: 100%;
  max-width: 420px;
}
.tab-section .od-wrap .od-col-content {
  width: 100%;
}
@media (max-width: 992px) {
  .tab-section .od-wrap {
    gap: 8px;
  }
}
.tab-section .od-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2px;
}
.tab-section .od-ttl__ttl {
  border: 1.84px solid #000;
  border-radius: 7px 0 0 0;
  padding: 32px 45px 32px 48px;
  padding: 10px 10px 10px 48px;
  width: 100%;
  background-color: #222222;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 44px;
  line-height: 99%;
  text-transform: capitalize;
  color: var(--yellow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 7px 5px 0 0 #000000;
          box-shadow: 7px 5px 0 0 #000000;
}
@media (max-width: 992px) {
  .tab-section .od-ttl__ttl {
    font-size: 38px;
  }
}
.tab-section .od-ttl__best {
  background: #1c1c1c;
  border: 1.84px solid #000;
  border-radius: 0 7px 0 0;
  min-width: 93px;
  max-width: 93px;
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  -webkit-box-shadow: 5px 5px 0 0 #000000;
          box-shadow: 5px 5px 0 0 #000000;
}
.tab-section .bst-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  -webkit-box-shadow: 5px 5px 0 0 #000000;
          box-shadow: 5px 5px 0 0 #000000;
}
.tab-section .bst-box__date {
  font-weight: 700;
  font-size: 15px;
  line-height: 99%;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  background: #171717;
  border: 1.84px solid #000;
  padding: 21px 9px;
  width: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tab-section .bst-box__date span {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.tab-section .bst-box__wrap {
  width: 100%;
}
.tab-section .bst-box .bst-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 95px;
}
.tab-section .bst-box .bst-item:nth-child(1) {
  background: #1c1c1c;
}
.tab-section .bst-box .bst-item:nth-child(2) {
  background-color: #222222;
}
.tab-section .bst-box .bst-item__main {
  width: 100%;
  border: 1.84px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 11px;
}
.tab-section .bst-box .bst-item__main p {
  font-weight: 700;
  font-size: 16px;
  line-height: 99%;
  text-transform: capitalize;
  color: var(--yellow);
}
.tab-section .bst-box .bst-item__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tab-section .bst-box .bst-item__logo img {
  min-width: 58px;
  max-width: 58px;
}
.tab-section .bst-box .bst-item__image {
  min-width: 95px;
  max-width: 95px;
  border: 1.84px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3px;
}
.tab-section .bst-box .bst-item__image img {
  width: 100%;
}
@media (max-width: 992px) {
  .tab-section .bst-box .bst-item__main p {
    font-size: 14px;
  }
  .tab-section .bst-box .bst-item__logo img {
    min-width: 40px;
    max-width: 40px;
  }
}
.tab-section .od-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 110px;
}
.tab-section .od-top-item {
  width: 25%;
  border: 1.84px solid #000;
  border-radius: 7px 7px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  -webkit-box-shadow: 5px 5px 0 0 #000000;
          box-shadow: 5px 5px 0 0 #000000;
}
.tab-section .od-top-item img {
  width: 100%;
}
@media (max-width: 1200px) {
  .tab-section .od-top-item {
    padding: 7px;
  }
}
.tab-section .od-tb-group {
  margin-top: 5px;
}
.tab-section .od-tb-group .od-tb-row {
  -webkit-box-shadow: 5px 5px 0 0 #000000;
          box-shadow: 5px 5px 0 0 #000000;
  height: 95px;
  background-color: #000;
  border: 1.84px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.tab-section .od-tb-group .od-tb-row .od-tb-item {
  width: 25%;
  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;
  gap: 10px;
}
.tab-section .od-tb-group .od-tb-row .onnum {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 99%;
  text-align: center;
}
@media (max-width: 1200px) {
  .tab-section .od-tb-group .od-tb-row .onnum {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .tab-section .od-tb-group .od-tb-row .onnum {
    font-size: 14px;
  }
}
.tab-section .od-tb-group .od-tb-row:nth-child(1) {
  border-bottom: none;
}
.tab-section .od-tb-group .od-tb-row:nth-child(1) .od-tb-item {
  background: #1c1c1c;
}
.tab-section .od-tb-group .od-tb-row:nth-child(2) {
  border-top: none;
}
.tab-section .od-tb-group .od-tb-row:nth-child(2) .od-tb-item {
  background-color: #222222;
}
@media (max-width: 768px) {
  .tab-section {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .tab-section .main-tab-nav {
    max-width: 284px;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 9px;
  }
  .tab-section .main-tab-nav .main-tab-btn {
    min-width: calc(50% - 4.5px);
    max-width: calc(50% - 4.5px);
    font-size: 11px;
    padding: 5px;
  }
  .tab-section .main-tab-nav .main-tab-btn.active {
    -webkit-box-shadow: 3px 3px 0 0 #000 !important;
            box-shadow: 3px 3px 0 0 #000 !important;
  }
  .tab-section .main-tab-container {
    margin-top: 30px;
  }
  .tab-section .main-tab-content .main-tab-title {
    font-size: 28px;
    margin-bottom: 26px;
  }
  .tab-section .tab-odds__nav {
    gap: 10px;
    margin-bottom: 14px;
  }
  .tab-section .tab-odds .tab-odds-btn {
    background: #000;
    border-radius: 5px;
    padding: 2px 10px;
    font-weight: 800;
    font-size: 10px;
    text-align: center;
    color: #fff;
    height: 35px;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: none !important;
  }
  .tab-section .tab-odds .tab-odds-btn.active {
    color: #171515;
    background: var(--yellow);
  }
  .tab-section .tab-odds-box {
    border: none;
    border-radius: 0px;
    background: transparent;
    color: #fff;
    padding: 0;
  }
}

.bg-blue {
  background: #122a53;
}

.bg-red {
  background: #e0293c;
}

.bg-green {
  background: #00322f;
}

.bg-dark {
  background: #1a1a1a;
}

.num-green {
  color: #00ff09;
}

.num-yellow {
  color: #FECE2E;
}

.num-red {
  color: #f00;
}

.mobile-odd-table {
  display: none;
}
@media (max-width: 768px) {
  .mobile-odd-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .desktop-odd-table {
    display: none !important;
  }
}

.od-table {
  width: 100%;
  -webkit-box-shadow: 3px 3px 0 0 #000;
          box-shadow: 3px 3px 0 0 #000;
}
.od-table .od-table-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.od-table .od-table-head__col {
  width: 33.33%;
  border: 1.12px solid #000;
  padding: 6px;
}
.od-table .od-table-head__col:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.od-table .od-table-head__col:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.od-table .od-table-head__col:nth-child(2) span {
  font-weight: 700;
  font-size: 7px;
  line-height: 99%;
  text-transform: capitalize;
  color: var(--yellow);
}
.od-table .od-table-head__col:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.od-table .od-table-head__col:nth-child(3) span {
  font-weight: 700;
  font-size: 7px;
  line-height: 99%;
  text-transform: capitalize;
  color: var(--yellow);
}
.od-table .od-table-head .od-table-top-logo img {
  min-width: 22px;
  max-width: 22px;
}
.od-table__date {
  font-weight: 700;
  font-size: 7px;
  line-height: 99%;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
}
.od-table .od-table-body .od-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 58px;
  max-height: 58px;
}
.od-table .od-table-body .od-table-row .od-table-col {
  border: 1.12px solid #000;
  width: 33.33%;
}
.od-table .od-table-body .od-table-row .od-table-col:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  border-right: none;
}
.od-table .od-table-body .od-table-row .od-table-col:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  border-left: none;
  background: #222222;
}
.od-table .od-table-body .onnum {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 11px;
  line-height: 99%;
  text-transform: capitalize;
  text-align: center;
}
.od-table .od-mn-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 10px;
}
.od-table .od-mn-logo img {
  width: 100%;
  max-width: 80px;
}
.od-table .btn-more-sporbks {
  width: 100%;
  border: 1.12px solid #000;
  padding: 8px 17px;
  background: #1c1c1c;
}
.od-table .btn-more-sporbks span {
  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;
  gap: 4px;
  font-weight: 700;
  font-size: 8px;
  line-height: 99%;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}
.od-table .btn-more-sporbks span::after {
  display: block;
  position: relative;
  content: "";
  width: 8px;
  height: 8px;
  background-image: url(../img/icons/minarrmore.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.faqs {
  padding: 64px 0;
}
.faqs__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
.faqs__main {
  min-width: 500px;
  max-width: 500px;
}
.faqs__main .titlemain {
  margin-bottom: 24px;
}
.faqs__main p {
  font-family: var(font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #CCCCCC;
}
.faqs .faq-box {
  width: 100%;
}
.faqs .faq-item {
  border-bottom: 1px solid var(--grey);
}
.faqs .faq-item:nth-child(1) {
  border-top: 1px solid var(--grey);
}
.faqs .faq-item__top {
  padding: 20px 0;
  cursor: pointer;
}
.faqs .faq-item__top.active .faq-item__title::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faqs .faq-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}
.faqs .faq-item__title::after {
  display: block;
  content: "";
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  background-image: url(../img/icons/faqarr.svg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.faqs .faq-item__content {
  padding-bottom: 24px;
  display: none;
}
.faqs .faq-item__content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #CCCCCC;
}
@media (max-width: 1200px) {
  .faqs__box {
    gap: 40px;
  }
  .faqs__main {
    min-width: 400px;
    max-width: 400px;
  }
}
@media (max-width: 992px) {
  .faqs__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .faqs__main {
    min-width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .faqs {
    padding: 40px 0;
  }
  .faqs__box {
    gap: 24px;
  }
  .faqs__main .titlemain {
    margin-bottom: 16px;
  }
  .faqs__main p {
    font-size: 16px;
  }
  .faqs .faq-item__title {
    gap: 8px;
    font-size: 16px;
  }
  .faqs .faq-item__content p {
    font-size: 16px;
  }
}