
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,400i,700');

:root {
  --website-color-primary: #0b70ce;
  --website-neutral-dark: white;
  --website-layout-size-maxwidth: 1400px;
}

body, * {
	font-family: 'Titillium Web', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	padding: 0;
	margin: 0;
}

html, body {
  background: black;
  width: 100%;
  height: 100%;
}

.relative {
	position: relative;
}

.full {
	width: 100%;
	height: 100%;
}

.full-height {
	height: 100%;
}

.hidden {
	display: none;
}

.resizer {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 0px;
	height: 100%;
}

.unselectable {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

#app {
	position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

.wide-page, .tablet-page, .mobile-page {
  position: relative;
  width: 100%;
  display: flex;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Wide screens (1048px and above) */
@media (min-width: 1048px) {

  .header {
    display: grid;
    grid-template-columns: 240px auto 1fr auto;
    position: relative;
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    padding: 10px 50px 10px 10px;
    background: black;
    z-index: 10;
    flex-shrink: 0;
  }

  .logo {
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    background: url(/images/logo.png) no-repeat center;
    background-size: contain;
    width: 120px;
    height: 46px;
  }

  .nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-family: Noto Sans;
    line-height: 1.5;
    font-size: 17px;
    font-weight: 480;
    gap: 15px;
    color: white;
  }

  .nav .link {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(to right, var(--website-color-primary) 50%, var(--website-neutral-dark) 50%);
    transition: background-position 300ms ease;
    background-clip: text;
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
  }

  .nav .link:hover {
    background-position: 0%;
  }

  .lang {
    position: relative;
    width: auto;
    height: 46px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 16px;
    font-family: Noto Sans;
    line-height: 1.5;
    font-size: 17px;
    font-weight: 480;
    gap: 20px;
    color: white;
    padding: 10px 0 0 0;
    box-sizing: border-box;
    cursor: pointer;
  }

  .lang-icon {
    position: relative;
    width: 36px;
    height: 36px;
    background: url(/images/world.png) no-repeat center;
    background-size: contain;
  }

  .lang-text {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(to right, var(--website-color-primary) 50%, var(--website-neutral-dark) 50%);
    transition: background-position 300ms ease;
    background-clip: text;
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
  }

}

/* Tablet screens (685px to 1047px) */
@media (min-width: 685px) and (max-width: 1047px) {

  .header {
    display: grid;
    grid-template-columns: 190px auto 1fr auto;
    position: relative;
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    padding: 10px 50px 10px 10px;
    background: black;
    z-index: 10;
    flex-shrink: 0;
  }

  .logo {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    background: url(/images/logo.png) no-repeat center;
    background-size: contain;
    width: 120px;
    height: 46px;
  }

  .nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-family: Noto Sans;
    line-height: 1.5;
    font-size: 17px;
    font-weight: 480;
    gap: 15px;
    color: white;
  }

  .nav .link {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(to right, var(--website-color-primary) 50%, var(--website-neutral-dark) 50%);
    transition: background-position 300ms ease;
    background-clip: text;
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
  }

  .nav .link:hover {
    background-position: 0%;
  }

  .lang {
    position: relative;
    width: auto;
    height: 46px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 16px;
    font-family: Noto Sans;
    line-height: 1.5;
    font-size: 17px;
    font-weight: 480;
    gap: 20px;
    color: white;
    padding: 10px 0 0 0;
    box-sizing: border-box;
    cursor: pointer;
  }

  .lang-icon {
    position: relative;
    width: 36px;
    height: 36px;
    background: url(/images/world.png) no-repeat center;
    background-size: contain;
  }

  .lang-text {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(to right, var(--website-color-primary) 50%, var(--website-neutral-dark) 50%);
    transition: background-position 300ms ease;
    background-clip: text;
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
  }

}

/* Mobile screens (up to 684px) */
@media (max-width: 684px) {

  .header {
    display: grid;
    grid-template-columns: 1fr auto;
    position: relative;
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    padding: 10px 30px 10px 10px;
    background: black;
    z-index: 10;
    flex-shrink: 0;
  }

  .logo {
    position: absolute;
    top: calc(50% + 2px);
    left: 30px;
    transform: translateY(-50%);
    background: url(/images/g/mipmap.png) 0px 0px no-repeat;
    width: 120px;
    height: 46px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
  }

  .nav {
    position: relative;
    width: auto;
    height: 38px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .nav .menu-icon {
    position: relative;
    background: url(/images/g/mipmap.png) -301px 0px no-repeat;
    width: 32px;
    height: 31px;
    overflow: hidden;
    cursor: pointer;
  }

}

.section-max-width {
    width: 100%;
    max-width: var(--website-layout-size-maxwidth);
}

.body-large {
    font-size: 18px;
    font-family: Noto Sans;
    line-height: 1.5;
}

td.fitwidth {
  width: 0px;
  white-space: nowrap;
}

.click-through {
  pointer-events: none;
}

.click-all {
  pointer-events: all;
}

/* Wide screens (1048px and above) */
@media (min-width: 1048px) {

  .button-blue {
    background-color: #195ee2;
    font-size: 17px;
    fill: white;
    color: white;
    cursor: pointer;
    display: flex;
    transition: 0.3s;
    align-items: center;
    padding-top: 7px;
    white-space: nowrap;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 7px;
    border: 0;
    border-radius: 30px;
    justify-content: center;
  }
  
}

/* Tablet screens (685px to 1047px) */
@media (min-width: 685px) and (max-width: 1047px) {

  .button-blue {
    background-color: #195ee2;
    font-size: 17px;
    fill: white;
    color: white;
    cursor: pointer;
    display: flex;
    transition: 0.3s;
    align-items: center;
    padding-top: 7px;
    white-space: nowrap;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 7px;
    border: 0;
    border-radius: 30px;
    justify-content: center;
  }

}

/* Mobile screens (up to 684px) */
@media (max-width: 684px) {

  .button-blue {
    background-color: #195ee2;
    font-size: 15px;
    fill: white;
    color: white;
    cursor: pointer;
    display: flex;
    transition: 0.3s;
    align-items: center;
    padding-top: 7px;
    white-space: nowrap;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 7px;
    border: 0;
    border-radius: 30px;
    justify-content: center;
  }

}

@media (max-width: 1400px) {
  .page {
    padding: 0 30px 0 30px;
    box-sizing: border-box;
  }
}

/* Wide screens (1048px and above) */
@media (min-width: 1048px) {

  .footer {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1d1d1d;
    padding: 50px 0 0 0;
    box-sizing: border-box;
  }

  .footer .top-line {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto 14px;
      width: 100%;
      height: 46px;
      align-items: center;
      padding: 0 50px 0 50px;
      box-sizing: border-box;
  }

  .footer .top-line .wesnsoft-logo {
      position: relative;
      width: 145px;
      height: 20px;
      background: url(/images/wesnsoft.png) no-repeat left center;
  }

  .footer .footer-lang {
      position: relative;
      width: auto;
      height: 46px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 20px;
      color: white;
      padding: 10px;
      box-sizing: border-box;
      cursor: pointer;
      border: 1px solid white;
  }

  .footer .footer-lang .footer-lang-text {
      display: inline-block;
      cursor: pointer;
      overflow: hidden;
      font-family: Noto Sans;
      line-height: 1.5;
      font-size: 14px;
      text-decoration: none;
  }

  .lang-arrow {
      position: relative;
      width: 14px;
      height: 14px;
      padding: 10px;
      box-sizing: border-box;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M7 10L2 5h10z' fill='white'/%3E%3C/svg%3E") no-repeat center;
      background-size: contain;
  }

  .footer .copyright {
      position: relative;
      height: auto;
      font-size: 15px;
      color: #8b8b8b;
      text-align: center;
      padding: 21px;
      box-sizing: border-box;
  }

  .footer .links-block {
      position: relative;
      width: 100%;
      height: auto;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 70px;
      padding: 20px 50px 20px 50px;
      box-sizing: border-box;
  }

  .footer .links-block .links-column {
      position: relative;
      width: auto;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 10px;
  }

  .footer .links-block .links-column-title {
      font-size: 18px;
      color: white;
      font-weight: 600;
      padding: 0 0 14px 0;
      box-sizing: border-box;
  }

  .footer .links-block .links-column a, .footer .links-block .links-column a:visited {
      font-size: 16px;
      font-family: Noto Sans;
      font-weight: 500;
      color: white;
      text-decoration: none;
  }

  .footer .links-block .links-column a:hover {
      color: #3872df;
      text-decoration: none;
  }

}

/* Tablet screens (685px to 1047px) */
@media (min-width: 685px) and (max-width: 1047px) {

  .footer {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1d1d1d;
    padding: 50px 0 0 0;
    box-sizing: border-box;
  }

  .footer .top-line {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto 14px;
      width: 100%;
      height: 46px;
      align-items: center;
      padding: 0 50px 0 50px;
      box-sizing: border-box;
  }

  .footer .top-line .wesnsoft-logo {
      position: relative;
      width: 145px;
      height: 20px;
      background: url(/images/wesnsoft.png) no-repeat left center;
  }

  .footer .footer-lang {
      position: relative;
      width: auto;
      height: 46px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 20px;
      color: white;
      padding: 10px;
      box-sizing: border-box;
      cursor: pointer;
      border: 1px solid white;
  }

  .footer .footer-lang .footer-lang-text {
      display: inline-block;
      cursor: pointer;
      overflow: hidden;
      font-family: Noto Sans;
      line-height: 1.5;
      font-size: 14px;
      text-decoration: none;
  }

  .lang-arrow {
      position: relative;
      width: 14px;
      height: 14px;
      padding: 10px;
      box-sizing: border-box;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M7 10L2 5h10z' fill='white'/%3E%3C/svg%3E") no-repeat center;
      background-size: contain;
  }

  .footer .copyright {
      position: relative;
      height: auto;
      font-size: 15px;
      color: #8b8b8b;
      text-align: center;
      padding: 21px;
      box-sizing: border-box;
  }

  .footer .links-block {
      position: relative;
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 50px;
      padding: 20px 50px 20px 50px;
      box-sizing: border-box;
  }

  .footer .links-block .links-column {
      position: relative;
      width: auto;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 10px;
  }

  .footer .links-block .links-column-title {
      font-size: 18px;
      color: white;
      font-weight: 600;
      padding: 0 0 14px 0;
      box-sizing: border-box;
  }

  .footer .links-block .links-column a, .footer .links-block .links-column a:visited {
      font-size: 16px;
      font-family: Noto Sans;
      font-weight: 500;
      color: white;
      text-decoration: none;
  }

  .footer .links-block .links-column a:hover {
      color: #3872df;
      text-decoration: none;
  }

}

/* Mobile screens (up to 684px) */
@media (max-width: 684px) {

  .footer {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1d1d1d;
    padding: 50px 0 0 0;
    box-sizing: border-box;
  }

  .footer .top-line {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto 14px;
      width: 100%;
      height: 46px;
      align-items: center;
      padding: 0 30px 0 30px;
      box-sizing: border-box;
  }

  .footer .top-line .wesnsoft-logo {
      position: relative;
      width: 145px;
      height: 20px;
      background: url(/images/wesnsoft.png) no-repeat left center;
  }

  .footer .footer-lang {
      position: relative;
      width: auto;
      height: 46px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 10px;
      color: white;
      padding: 10px;
      box-sizing: border-box;
      cursor: pointer;
      border: 1px solid white;
  }

  .footer .footer-lang .footer-lang-text {
      display: inline-block;
      cursor: pointer;
      overflow: hidden;
      font-family: Noto Sans;
      line-height: 1.5;
      font-size: 14px;
      text-decoration: none;
  }

  .lang-arrow {
      position: relative;
      width: 14px;
      height: 14px;
      padding: 10px;
      box-sizing: border-box;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M7 10L2 5h10z' fill='white'/%3E%3C/svg%3E") no-repeat center;
      background-size: contain;
  }

  .footer .copyright {
      position: relative;
      height: auto;
      font-size: 15px;
      color: #8b8b8b;
      text-align: center;
      padding: 21px;
      box-sizing: border-box;
  }

  .footer .links-block {
      position: relative;
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 50px;
      padding: 20px 30px 20px 30px;
      box-sizing: border-box;
  }

  .footer .links-block .links-column {
      position: relative;
      width: auto;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 10px;
  }

  .footer .links-block .links-column-title {
      font-size: 18px;
      color: white;
      font-weight: 600;
      padding: 0 0 14px 0;
      box-sizing: border-box;
  }

  .footer .links-block .links-column a, .footer .links-block .links-column a:visited {
      font-size: 16px;
      font-family: Noto Sans;
      font-weight: 500;
      color: white;
      text-decoration: none;
  }

  .footer .links-block .links-column a:hover {
      color: #3872df;
      text-decoration: none;
  }

}

/* Adaptive page styles */
.wide-page {
    display: none;
    color: white;
}

.tablet-page {
    display: none;
    color: white;
}

.mobile-page {
    display: none;
    color: white;
}

/* Wide screens (1048px and above) */
@media (min-width: 1048px) {
    .wide-page {
        display: flex;
    }
    .tablet-page {
        display: none;
    }
    .mobile-page {
        display: none;
    }
}

/* Tablet screens (685px to 1047px) */
@media (min-width: 685px) and (max-width: 1047px) {
    .wide-page {
        display: none;
    }
    .tablet-page {
        display: flex;
    }
    .mobile-page {
        display: none;
    }
}

/* Mobile screens (up to 684px) */
@media (max-width: 684px) {
    .wide-page {
        display: none;
    }
    .tablet-page {
        display: none;
    }
    .mobile-page {
        display: flex;
    }
}
