/*Meyer*/
html,
body,
div,
span,
h1,
p,
a,
img,
li,
header,
nav {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
header,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  color: #fff;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}

/*  page construction  */
body {
  position: relative;
}

.section-main {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: url(fond.png) no-repeat center;
  background-size: cover;
}

.section-main-title {
  padding: 2rem 2rem 4rem;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .section-main-title {
    font-size: 4.5rem;
  }
}

.section-nav {
  display: flex;
  justify-content: flex-start;
}

.section-main-logo {
  width: 50px;
  height: 59px;
  padding: 2rem;
  z-index: 1;
}

.section-expect {
  margin-bottom: 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  text-align: center;
}

.section-expect-title {
  text-transform: uppercase;
  font-weight: 600;
}

.section-help-title {
  font-size: 1.2rem;
}

.section-help-title,
.section-link {
  padding: 1rem;
}

.section-link-img {
  margin-left: 2rem;
}

.section-link-img .svg,
.section-link-phone .svg {
  fill: #fff;
}

.section-link-phone .svg-phone {
  width: 2rem;
  height: 2rem;
}

.glitch {
  position: relative;
  mix-blend-mode: lighten;
  transform: translate(2px, 2px);
}

.glitch:hover::before,
.glitch:hover::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  opacity: 0.8;
}

.glitch:hover::before {
  left: -1px;
  text-shadow: #0d1d41 0 -2px;
  z-index: -1;
  color: #2bc597;
}

.glitch:hover::after {
  left: 1px;
  text-shadow: #0d1d41 0 -2px;
  z-index: -2;
  color: red;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-3px, -3px);
  }
  60% {
    transform: translate(3px, 3px);
  }
  80% {
    transform: translate(3px, -3px);
  }
  to {
    transform: translate(0);
  }
}

.glitch:hover::before {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

.glitch:hover::after {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both
    infinite;
}
