
/*==============================GENERAL==============================*/
html, body {
  position: relative;
  min-width: 320px;
}

body {
  font-family: Roboto, sans-serif;
  line-height: 1;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.center-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1440px;
}

h1, h2, h3, h4, h5, h6, .title_1, .title_2, .title_3, .title_4, .title_5, .title_6 {
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--link-color);
  text-transform: uppercase;
}

.title_line {
  position: relative;
  padding-left: 45px;
  z-index: 1;
}

.title_line:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 140%;
  -webkit-transform: skew(-15deg) translateY(-50%);
  -ms-transform: skew(-15deg) translateY(-50%);
  transform: skew(-15deg) translateY(-50%);
  background: var(--link-color);
}

.title_line span {
  position: absolute;
  top: 50%;
  left: 45px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  white-space: nowrap;
  font-weight: 900;
  color: #F2F2F2;
  z-index: -1;
}

h1, .title_1 {
  font-size: 60px;
  line-height: 1;
}

h1 span, .title_1 span {
  font-size: 80px;
}

h2, .title_2 {
  font-size: 40px;
  line-height: 1;
  text-align: center;
}

h2 span, .title_2 span {
  font-size: 60px;
}

p {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 22px;
}

a {
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

img {
  height: auto;
  vertical-align: top;
}

table {
  width: 100%;
}

.only-tablet {
  display: none;
}

.lines {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1470px;
  height: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.lines:before, .lines:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.lines::before {
  left: calc(33.333% + 5px);
}

.lines::after {
  right: calc(33.333% + 5px);
}

.main {
  position: relative;
  z-index: 1;
}

.main .lines {
  border-left: 1px solid #E4E4E4;
  border-right: 1px solid #E4E4E4;
}

.main .lines:before, .main .lines:after {
  background: #E4E4E4;
}
