*,
:after,
:before {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

::-moz-selection {
  background: #fff;
  color: #000;
}

::selection {
  background: #fff;
  color: #000;
}

:root {
  --content-title-size: 36px;
  --content-title-line-height: 1.2;
  --content-title-wrap: nowrap;
  --content-button-size: 36px;
  --content-button-line-height: 1;
  --content-button-padding: 2px 5px;
  --content-padding: 20px;
  --content-space: 40px;
  --logo-height: 56px;
}

@media only screen and (max-width: 900px) {
  :root {
    --content-title-size: 32px;
    --content-button-size: 32px;
    --logo-height: 52px;
  }
}

@media only screen and (max-width: 820px) {
  :root {
    --content-title-size: 28px;
    --content-button-size: 28px;
    --content-space: 20px;
    --logo-height: 50px;
  }
}

@media only screen and (max-width: 720px) {
  :root {
    --content-title-size: 24px;
    --content-button-size: 24px;
    --content-button-padding: 4px 6px;
  }
}

@media only screen and (max-width: 640px) {
  :root {
    --content-title-size: 20px;
    --content-button-size: 20px;
    --logo-height: 48px;
  }
}

@media only screen and (max-width: 560px) {
  :root {
    --content-title-size: 18px;
    --content-button-size: 18px;
    --content-button-padding: 2px 4px;
    --content-padding: 12px;
    --logo-height: 50px;
  }
}

@media only screen and (max-width: 370px) {
  :root {
    --content-title-size: 16px;
    --content-button-size: 16px;
  }
}

@media only screen and (max-width: 350px) {
  :root {
    --content-title-size: 14px;
    --content-button-size: 14px;
    --logo-height: 46px;
  }
}

@media only screen and (max-width: 320px) {
  :root {
    --content-title-size: 18px;
    --content-button-size: 18px;
    --logo-height: 50px;
  }
}

body {
  font-family: 'GT Eesti', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  overflow: hidden;
}

img {
  display: block;
}

.main {
  width: 100%;
  max-width: 1248px;
  min-width: 280px;
  height: 80px;
  margin: 0 auto;
  background: #000;
  position: relative;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  overflow: hidden;
  cursor: pointer;
}

.main.visible {
  opacity: 1;
}

/***** Content *****/
.content {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.content-container {
  width: 100%;
  height: 100%;
  padding: 0 var(--content-padding);
  gap: var(--content-padding);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.content-block {
  width: 100%;
  height: 100%;
  gap: var(--content-space);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.content-logo {
  /*position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);*/
  z-index: 3;
}

.content-logo>img {
  height: var(--logo-height);
}

.content-title {
  gap: var(--content-space);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.content-title br {
  display: none;
}

.content-title-text {
  position: relative;
  font-size: var(--content-title-size);
  font-weight: 600;
  line-height: var(--content-title-line-height);
  white-space: var(--content-title-wrap);
  text-align: center;
  z-index: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.content-button {
  padding: var(--content-button-padding);
  background: #fff;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.content-button>span {
  padding-top: 2px;
  font-family: 'Gunplay', 'GT Eesti', Arial, sans-serif;
  font-size: var(--content-button-size);
  line-height: var(--content-button-line-height);
  white-space: nowrap;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}

@media only screen and (max-width: 560px) {
  .content-block {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }

  .content-title {
    gap: 6px;
    -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-flex: initial;
    -ms-flex: initial;
    flex: initial;
  }

  .content-button {
    width: 100%;
  }
}

@media only screen and (max-width: 320px) {
  .content-logo {
    display: none;
  }
}

/* */
.hidden {
  display: none !important;
}
