/* Reset and base styles  */

@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic);

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --container-width: 1440px;
  --container-padding: 140px;
  --container-padding-tablet: 16px;
  --background: #0A2025;
  --text-color: #fff;
  --text-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  --font-family: Roboto, sans-serif;
  --laptop-size: 1199px;
  --tablet-size: 959px;
  --mobile-size: 599px;
}

h1,
h2,
h3 {
  font-weight: normal;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.875rem, 1.554rem + 1.61vw, 3rem);
}

h2 {
  font-size: clamp(1.375rem, 1.125rem + 1.25vw, 2.25rem);
}

h3 {
  font-size: clamp(1.188rem, 1.098rem + 0.45vw, 1.5rem);
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  background: var(--background);
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--text-size);
  font-weight: 400;
  overflow-x: hidden;
}

html,
body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

code {
  background-color: #e9f1f6;
  padding: 0.2rem;
  border-radius: 4px;
}

pre.beastwinhub-code {
  overflow-x: auto;
  background-color: #e9f1f6;
  padding: 1rem;
  border-radius: 4px;
}

.beastwinhub-no-scroll {
  overflow: hidden;
}

.beastwinhub-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.beastwinhub-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.beastwinhub-items .beastwinhub-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.beastwinhub-terms .beastwinhub-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.beastwinhub-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 80px;
  margin: 80px 0;
}

.beastwinhub-btn,
.beastwinhub-btn:focus {
  white-space: nowrap;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  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;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding: 10px 30px;
  border-radius: 10px;
  background: #3E9D26;
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.beastwinhub-btn-active,
.beastwinhub-btn:hover,
.beastwinhub-btn:active {
  background: #fff;
  color: #091010 !important;
}

.beastwinhub-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  width: 100%;
}

.beastwinhub-popup {
  color: #FFF;
  border: 1px solid #3E9D26;
  background: #0A2025;
  padding: 30px;
  max-width: 374px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
}

.beastwinhub-popup__title {
  font-size: 24px;
  font-weight: 700;
  color: #3E9D26;
}

.beastwinhub-modal {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.beastwinhub-modal.beastwinhub-show {
  opacity: 1;
}

.beastwinhub-modal__popup {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.beastwinhub-cookie__popup {
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 10;
  max-width: 100%;
  bottom: -100%;
  -webkit-transition: all 2s cubic-bezier(0.02, 0.7, 0.03, 1);
  transition: all 2s cubic-bezier(0.02, 0.7, 0.03, 1);
  z-index: 10000;
  border: none;
  border-top: 1px solid #333;
  text-align: left;
}

.beastwinhub-cookie__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 215px;
  margin-left: 30px;
}

.beastwinhub-cookie.beastwinhub-hidden {
  display: none;
}

.beastwinhub-cookie .beastwinhub-btn {
  width: 100%;
}

.beastwinhub-cookie .beastwinhub-container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 57%;
  gap: 10px;
}

.beastwinhub-cookie img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
}

.beastwinhub-cookie .beastwinhub-show {
  bottom: 0;
}

.beastwinhub-cookie .beastwinhub-popup__title {
  text-transform: uppercase;
  font-size: 14px;
}

/* Blocks */

.beastwinhub-about .beastwinhub-item:last-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.beastwinhub-about picture,
.beastwinhub-about img {
  height: clamp(10rem, 8.839rem + 5.8vw, 14.063rem);
  width: 100%;
}

.beastwinhub-banner {
  padding-top: 70px;
  background: -webkit-gradient(linear, left top, left bottom, from(#0B1619), to(#08171A)), #FFF;
  background: linear-gradient(180deg, #0B1619 0%, #08171A 100%), #FFF;
}

.beastwinhub-banner .beastwinhub-container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 153px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url("./../img/banner-bg.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 45% auto;
  -webkit-animation: moveBg 4s ease-in-out infinite;
  animation: moveBg 4s ease-in-out infinite;
}				.beastwinhub-webp .beastwinhub-banner .beastwinhub-container {					background-image: url("./../img/banner-bg.webp")				}			

.beastwinhub-banner span {
  color: #3E9D26;
}

.beastwinhub-banner .beastwinhub-descr {
  font-size: clamp(0.875rem, 0.768rem + 0.54vw, 1.25rem);
}

.beastwinhub-banner .beastwinhub-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.beastwinhub-banner .beastwinhub-wrapper div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.beastwinhub-banner .beastwinhub-wrapper div div {
  gap: 10px;
}

.beastwinhub-banner .beastwinhub-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  overflow: hidden;
}

.beastwinhub-banner .beastwinhub-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(229, 172, 142, 0)), color-stop(50%, rgba(255, 255, 255, 0.5)), to(rgba(229, 172, 142, 0)));
  background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
  -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
  -ms-transform: rotate(60deg) translate(-5em, 7.5em);
  transform: rotateZ(60deg) translate(-5em, 7.5em);
}

.beastwinhub-banner .beastwinhub-btn:after,
.beastwinhub-banner .beastwinhub-btn:after {
  -webkit-animation: sheen 1.7s infinite forwards;
  animation: sheen 1.7s infinite forwards;
}

.beastwinhub-banner img {
  width: clamp(12.5rem, 10.018rem + 12.41vw, 21.188rem);
  -webkit-animation: floatImage 4s ease-in-out infinite;
  animation: floatImage 4s ease-in-out infinite;
}

@-webkit-keyframes floatImage {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@keyframes floatImage {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@-webkit-keyframes moveBg {
  0%, 100% {
    background-position: 0 -20px;
  }

  50% {
    background-position: 0 -10px;
  }
}

@keyframes moveBg {
  0%, 100% {
    background-position: 0 -20px;
  }

  50% {
    background-position: 0 -10px;
  }
}

@-webkit-keyframes sheen {
  100% {
    -webkit-transform: rotateZ(60deg) translate(1em, -9em);
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}

@keyframes sheen {
  100% {
    -webkit-transform: rotateZ(60deg) translate(1em, -9em);
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}

.beastwinhub-bars article {
  padding: 40px 0;
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, transform 1.5s ease;
  transition: opacity 1.5s ease, transform 1.5s ease, -webkit-transform 1.5s ease;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

.beastwinhub-bars article.beastwinhub-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.beastwinhub-bars article.beastwinhub-visible:hover {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.beastwinhub-bars article::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#0B1619), to(#08171A));
  background: linear-gradient(180deg, #0B1619 0%, #08171A 100%);
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
}

.beastwinhub-bars .beastwinhub-items {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.beastwinhub-bars .beastwinhub-item:last-child {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 0.56;
  -ms-flex: 0.56;
  flex: 0.56;
}

.beastwinhub-bars .beastwinhub-item:last-child p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.beastwinhub-bars .beastwinhub-img {
  -webkit-box-flex: 0.8;
  -ms-flex: 0.8;
  flex: 0.8;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.beastwinhub-bars .beastwinhub-img picture,
.beastwinhub-bars .beastwinhub-img img {
  height: 120px;
}

.beastwinhub-bars .beastwinhub-img picture:first-child {
  grid-column: span 2/span 2;
  height: 180px;
}

.beastwinhub-bars .beastwinhub-img picture:first-child img {
  height: 180px;
}

.beastwinhub-bars span {
  color: #3E9D26;
  font-weight: 600;
  margin-bottom: 10px;
}

.beastwinhub-bars .beastwinhub-mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.beastwinhub-bars .beastwinhub-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.beastwinhub-contact .beastwinhub-wrapper {
  border-radius: 10px;
  background: #3E9D26;
  padding: 20px;
}

.beastwinhub-contact .beastwinhub-items {
  gap: 0 70px;
}

.beastwinhub-contact .beastwinhub-item:first-child {
  -webkit-box-flex: 0.8;
  -ms-flex: 0.8;
  flex: 0.8;
}

.beastwinhub-contact .beastwinhub-item:last-child {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.beastwinhub-contact form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.beastwinhub-contact input,
.beastwinhub-contact textarea {
  border-radius: 10px;
  background: #FFF;
  padding: 15px 20px;
  color: #0B1619;
}

.beastwinhub-contact textarea {
  resize: none;
  outline: none;
}

.beastwinhub-contact img {
  width: clamp(18.75rem, 13.929rem + 24.11vw, 35.625rem);
}

.beastwinhub-contact .beastwinhub-btn,
.beastwinhub-contact .beastwinhub-btn:focus {
  color: #3E9D26 !important;
  background: #fff;
}

.beastwinhub-contact .beastwinhub-btn:hover,
.beastwinhub-contact .beastwinhub-btn:focus:hover {
  background: #08171a;
  color: #fff !important;
}

.beastwinhub-modal--message {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.beastwinhub-modal-content--message {
  border: 1px solid #3E9D26;
  background: #0A2025;
  margin: 15% auto;
  padding: 2rem;
  max-width: 380px;
  text-align: center;
}

.beastwinhub-modal-message-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.beastwinhub-modal-content--message_close {
  color: #fff;
  float: right;
  position: relative;
  top: -1.5rem;
  right: -1rem;
  font-size: 30px;
  cursor: pointer;
}

#check-group {
  -webkit-animation: 0.32s ease-in-out check-group;
  animation: 0.32s ease-in-out check-group;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

#check-group #check {
  -webkit-animation: 0.34s cubic-bezier(0.65, 0, 1, 1) 0.1s forwards check;
  animation: 0.34s cubic-bezier(0.65, 0, 1, 1) 0.1s forwards check;
  stroke-dasharray: 0, 75px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#check-group #outline {
  -webkit-animation: 0.38s ease-in outline;
  animation: 0.38s ease-in outline;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

#check-group #white-circle {
  -webkit-animation: 0.35s ease-in 0.35s forwards circle;
  animation: 0.35s ease-in 0.35s forwards circle;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes outline {
  from {
    stroke-dasharray: 0, 345.576px;
  }

  to {
    stroke-dasharray: 345.576px, 345.576px;
  }
}

@keyframes outline {
  from {
    stroke-dasharray: 0, 345.576px;
  }

  to {
    stroke-dasharray: 345.576px, 345.576px;
  }
}

@-webkit-keyframes circle {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes circle {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-webkit-keyframes check {
  from {
    stroke-dasharray: 0, 75px;
  }

  to {
    stroke-dasharray: 75px, 75px;
  }
}

@keyframes check {
  from {
    stroke-dasharray: 0, 75px;
  }

  to {
    stroke-dasharray: 75px, 75px;
  }
}

@-webkit-keyframes check-group {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.09);
    transform: scale(1.09);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes check-group {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.09);
    transform: scale(1.09);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.beastwinhub-footer {
  margin-top: auto;
  background: #449596;
  padding: 40px 0;
}

.beastwinhub-footer .beastwinhub-container {
  gap: 40px;
}

.beastwinhub-footer a {
  color: #fff;
}

.beastwinhub-footer a:hover {
  opacity: 0.6;
}

.beastwinhub-footer 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: 10px;
}

.beastwinhub-footer .beastwinhub-items {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.beastwinhub-footer .beastwinhub-item:first-child {
  -webkit-box-flex: 1.2;
  -ms-flex: 1.2;
  flex: 1.2;
}

.beastwinhub-footer .beastwinhub-item:nth-child(2) {
  -webkit-box-flex: 0.7;
  -ms-flex: 0.7;
  flex: 0.7;
}

.beastwinhub-footer .beastwinhub-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.beastwinhub-footer .beastwinhub-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 46px;
}

.beastwinhub-footer .beastwinhub-link img {
  max-height: 40px;
  max-width: 249px;
}

.beastwinhub-footer .beastwinhub-logo img {
  width: 192px;
}

.beastwinhub-header {
  padding: 20px 0;
  background: -webkit-gradient(linear, left top, right top, from(#0A2227), to(#090F0F));
  background: linear-gradient(90deg, #0A2227 0%, #090F0F 100%);
  position: fixed;
  top: 0;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  width: 100%;
  z-index: 100;
}

.beastwinhub-header__row {
  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;
}

.beastwinhub-header .beastwinhub-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

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

.beastwinhub-header a:hover {
  opacity: 0.6;
}

.beastwinhub-header .beastwinhub-logo img {
  width: clamp(8rem, 6.839rem + 5.8vw, 12.063rem);
}

.beastwinhub-icons-wrapper {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.beastwinhub-icon {
  fill: transparent;
  stroke: transparent;
  width: 62px;
  height: 62px;
}

.beastwinhub-mobile-nav {
  position: fixed;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 99;
  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-top: 40px;
  padding-bottom: 40px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.beastwinhub-mobile-nav--open {
  top: 0;
}

.beastwinhub-mobile-nav a {
  color: #fff;
}

.beastwinhub-mobile-nav__list {
  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;
  row-gap: 20px;
  font-size: 28px;
}

.beastwinhub-mobile-nav__list .beastwinhub-active {
  opacity: 0.5;
}

/* Nav Icon */

.beastwinhub-mobile-nav-btn {
  --time: 0.1s;
  --width: 34px;
  --height: 30px;
  --line-height: 2px;
  --spacing: 6px;
  --color: #ffffff;
  --radius: 4px;
  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */
  /* Dynamic height and width */
  height: calc(var(--line-height) * 0 + var(--spacing) * 1);
  width: var(--width);
  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;
}

.beastwinhub-nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  border-radius: var(--radius);
}

.beastwinhub-nav-icon::before,
.beastwinhub-nav-icon::after {
  z-index: 999999;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  border-radius: var(--radius);
  background-color: var(--color);
  -webkit-transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
}

.beastwinhub-nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.beastwinhub-nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.beastwinhub-nav-icon.beastwinhub-nav-icon--active {
  background-color: transparent;
}

.beastwinhub-nav-icon.beastwinhub-nav-icon--active::before,
.beastwinhub-nav-icon.beastwinhub-nav-icon--active::after {
  top: 0;
  -webkit-transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time), -webkit-transform var(--time) ease-in var(--time);
  background-color: #fff;
}

.beastwinhub-nav-icon.beastwinhub-nav-icon--active::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.beastwinhub-nav-icon.beastwinhub-nav-icon--active::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Layout */

.beastwinhub-mobile-nav-btn {
  z-index: 999;
  display: none;
}

@media (max-width: 1220px) {
  .beastwinhub-items {
    row-gap: 20px;
  }

  .beastwinhub-main {
    gap: 60px;
    margin: 60px 0;
  }

  .beastwinhub-container {
    padding: 0 var(--container-padding-tablet);
    gap: 10px;
  }

  .beastwinhub-cookie .beastwinhub-container {
    width: 80%;
  }

  .beastwinhub-header__nav {
    display: none;
  }

  .beastwinhub-mobile-nav-btn {
    display: block;
  }
}

@media (max-width: 820px) {
  .beastwinhub-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .beastwinhub-cookie__popup {
    padding: 20px 10px;
  }

  .beastwinhub-cookie__wrap {
    max-width: 100%;
    margin-left: 0;
  }

  .beastwinhub-cookie .beastwinhub-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .beastwinhub-about .beastwinhub-item:last-child {
    gap: 8px;
  }

  .beastwinhub-banner .beastwinhub-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    background-position: center top 20px !important;
    background-size: auto auto;
  }

  .beastwinhub-banner .beastwinhub-wrapper {
    margin-top: -20px;
    position: relative;
  }

  .beastwinhub-banner .beastwinhub-wrapper div {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .beastwinhub-bars article {
    padding: 30px 0;
  }

  .beastwinhub-bars article.beastwinhub-visible:hover {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .beastwinhub-bars .beastwinhub-img {
    gap: 8px;
  }

  .beastwinhub-bars .beastwinhub-mark {
    margin-bottom: 0;
  }

  .beastwinhub-contact .beastwinhub-wrapper {
    padding: 20px 16px;
  }

  .beastwinhub-contact h2 {
    margin-bottom: 10px;
  }

  .beastwinhub-footer .beastwinhub-items {
    gap: 40px;
  }

  .beastwinhub-footer .beastwinhub-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .beastwinhub-footer .beastwinhub-link {
    gap: 10px;
  }

  .beastwinhub-header {
    padding: 15px 0;
  }
}