@font-face {
  font-family: "title";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/title.woff") format("woff");
}
@font-face {
  font-family: "body";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/body.woff") format("woff");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  user-select: none;
}

html {
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  background: #1c3728;
}

body {
  line-height: 1.2;
  font-family: "body", sans-serif;
  background: #A9B92A;
  color: #204730;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 3px, #000000 3px, #000000 6px);
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.05;
}

h1 {
  font-size: 100px;
  line-height: 80px;
  letter-spacing: 2px;
}

.glitch {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 1000;
  pointer-events: none;
  background-image: url(../images/glitch.gif);
  background-size: auto;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.03;
}

.frame-light-grey {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  border: 10px solid #c5c5c5;
  border-radius: 30px 30px 50px 30px;
  z-index: 10010;
}
.frame-light-grey > .corner {
  z-index: 10;
  position: absolute;
  top: -30px;
  left: -30px;
  width: 40px;
  height: 40px;
  background: #c5c5c5;
  transform: rotate(45deg);
}
.frame-light-grey > .corner:nth-child(2) {
  top: -30px;
  right: -30px;
  left: auto;
}
.frame-light-grey > .corner:nth-child(3) {
  bottom: -30px;
  left: -30px;
  top: auto;
}
.frame-light-grey > .corner:nth-child(4) {
  bottom: -47px;
  right: -16px;
  left: auto;
  top: auto;
  height: 52px;
  width: 50px;
  transform: rotate(66deg);
}
.frame-light-grey > .corner:nth-child(5) {
  bottom: -6px;
  right: -40px;
  left: auto;
  top: auto;
  transform: rotate(33deg);
}

.frame-grey {
  pointer-events: none;
  z-index: 1009;
  position: fixed;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  border-top: 60px solid #6e6f78;
  border-left: 100px solid #6e6f78;
  border-right: 100px solid #6e6f78;
  border-bottom: 60px solid #6e6f78;
  border-radius: 50px 50px 100px 50px;
}
.frame-grey > .corner {
  z-index: -1;
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 100px;
  height: 100px;
  background: #6e6f78;
}
.frame-grey::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 4px solid #515e1e;
  z-index: -1;
}
.frame-grey .frame-header {
  width: calc(100% + 100px);
  border-top: 3px solid #150A5D;
  border-bottom: 3px solid #712057;
  left: -50px;
  position: absolute;
  top: -37px;
  padding: 0;
  padding-right: 50px;
  font-family: sans-serif;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-end;
}
.frame-grey .frame-header span {
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.frame-grey .frame-header span:before {
  width: 115%;
  height: 42px;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #6e6f78;
  z-index: -1;
}
.frame-grey .frame-light {
  position: absolute;
  top: 30%;
  left: -50px;
  width: 14px;
  height: 14px;
  border: 1px solid #b22c2c;
  border-radius: 50%;
  background: rgb(255, 0, 0);
  background: radial-gradient(circle, rgb(255, 0, 0) 0%, rgb(221, 62, 62) 53%);
  animation: light 1s infinite alternate;
}
.frame-grey .frame-battery {
  color: #fff;
  font-family: sans-serif;
  position: absolute;
  top: calc(30% + 25px);
  left: -65px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.loader {
  position: fixed;
  top: 64px;
  overflow: hidden;
  left: 104px;
  width: calc(100vw - 208px);
  height: calc(100vh - 128px);
  height: calc(100dvh - 128px);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 1;
}
.loader > div {
  position: absolute;
  width: 100%;
  left: 0;
  height: 12.5%;
  background: #1c3728;
  transition: all 0.7s steps(10, end);
}
.loader .one {
  top: 0;
}
.loader .two {
  top: 12.5%;
}
.loader .three {
  top: 25%;
}
.loader .four {
  top: 37.5%;
}
.loader .five {
  top: 50%;
}
.loader .six {
  top: 62.5%;
}
.loader .seven {
  top: 75%;
}
.loader .eight {
  top: 87.5%;
}
.loader .one, .loader .three, .loader .five, .loader .seven {
  transform: translateX(-100%);
}
.loader .two, .loader .four, .loader .six, .loader .eight {
  transform: translateX(100%);
}
.loader .loading {
  color: #A9B92A;
  font-size: 15px;
  display: none;
  position: relative;
}
.loader .loading.visible {
  display: block;
}
.loader.active {
  opacity: 1;
  pointer-events: all;
}
.loader.active div {
  transform: translateX(0);
}

@keyframes light {
  from {
    -webkit-box-shadow: 0px 0px 10px 0px rgb(255, 131, 122);
    -moz-box-shadow: 0px 0px 10px 0px rgb(255, 131, 122);
    box-shadow: 0px 0px 10px 0px rgb(255, 131, 122);
  }
  to {
    -webkit-box-shadow: 0px 0px 15px 0px rgb(255, 131, 122);
    -moz-box-shadow: 0px 0px 15px 0px rgb(255, 131, 122);
    box-shadow: 0px 0px 15px 0px rgb(255, 131, 122);
  }
}
@media (max-width: 767px) {
  .frame-light-grey {
    border-radius: 20px 20px 20px 20px;
  }
  .frame-light-grey > .corner {
    top: -40px;
  }
  .frame-light-grey > .corner:nth-child(2) {
    top: -40px;
  }
  .frame-light-grey > .corner:nth-child(3) {
    bottom: -40px;
  }
  .frame-light-grey > .corner:nth-child(4) {
    bottom: -40px;
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    right: -30px;
  }
  .frame-light-grey > .corner:nth-child(5) {
    display: none;
  }
  .frame-grey {
    border-top: 46px solid #6e6f78;
    border-left: 20px solid #6e6f78;
    border-right: 20px solid #6e6f78;
    border-bottom: 20px solid #6e6f78;
    border-radius: 0;
  }
  .frame-grey::after {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border: 3px solid #515e1e;
  }
  .frame-grey .frame-header {
    width: 100%;
    left: 0px;
    top: -26px;
  }
  .frame-grey .frame-header span {
    font-size: 10px;
  }
  .frame-grey .frame-header span:before {
    height: 30px;
  }
  .frame-grey .frame-light {
    display: none;
  }
  .frame-grey .frame-battery {
    display: none;
  }
  .loader {
    top: 49px;
    left: 23px;
    width: calc(100vw - 46px);
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
  }
}
section {
  opacity: 0;
  pointer-events: none;
}

section.active {
  pointer-events: all;
  opacity: 1;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 5px 5px 8px;
  margin: 40px auto 0;
  text-align: center;
  z-index: 1;
  position: relative;
  font-size: 18px;
  background: #204730;
  color: #A9B92A;
  border: 2px solid #204730;
  cursor: pointer;
}
.btn span {
  display: inline-block;
  padding-right: 3px;
}
.btn svg {
  transform: scaleX(-1);
}
.btn svg path {
  fill: #A9B92A;
}
.btn:hover {
  background: transparent;
  color: #204730;
}
.btn:hover svg path {
  fill: #204730;
}

.menu-item {
  cursor: pointer;
}

.header {
  position: fixed;
  top: 75px;
  left: 120px;
  width: calc(100% - 240px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 100;
}
.header .menu-toggle {
  margin-right: auto;
  cursor: pointer;
  position: relative;
}
.header .menu-toggle:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #204730;
  opacity: 0;
}
.header .menu-toggle:hover::after {
  opacity: 1;
}
.header .score {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.header .time {
  display: flex;
  align-items: center;
}
.header .credits {
  position: fixed;
  bottom: 80px;
  right: 120px;
}
.header .sound {
  position: fixed;
  bottom: 80px;
  left: 120px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.header .sound svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.header .sound svg.off {
  display: block;
}
.header .sound svg.on {
  display: none;
}
.header .sound.active svg.off {
  display: none;
}
.header .sound.active svg.on {
  display: block;
}

@media (max-width: 767px) {
  .header {
    padding: 0 15px;
    top: 59px;
    left: 23px;
    width: calc(100% - 46px);
    z-index: 100;
    font-size: 12px;
  }
  .header .score {
    margin-right: 20px;
  }
  .header .credits {
    position: fixed;
    bottom: 32px;
    right: 35px;
  }
  .header .sound {
    position: fixed;
    bottom: 32px;
    left: 35px;
  }
}
.home {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-position: center;
  background-repeat: repeat;
  z-index: 1;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-position: left;
  background-size: auto;
  background-repeat: repeat;
  opacity: 0.5;
  background-image: url(../images/1.webp);
  animation: parallax 60s steps(500, end) infinite alternate;
  pointer-events: none;
}
.home .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .title {
  animation: scale 2s steps(10, end) infinite alternate;
}
.home .title h1 {
  font-size: 100px;
  line-height: 80px;
  letter-spacing: 2px;
  text-align: center;
  color: #204730;
  font-family: "title", sans-serif;
  position: relative;
}
.home .title h1 .square {
  position: absolute;
  background: #204730;
}
.home .title h1 .square.one {
  width: 10px;
  height: 10px;
  top: 8px;
  left: 25px;
  animation: opacity 1s steps(4, end) infinite alternate;
}
.home .title h1 .square.two {
  width: 10px;
  height: 10px;
  bottom: 25px;
  left: -10px;
  animation: opacity 2s steps(6, end) infinite alternate;
}
.home .title h1 .square.three {
  width: 10px;
  height: 10px;
  right: 10px;
  top: 50px;
  animation: opacity 1.5s steps(5, end) infinite alternate;
}
.home .title h1 .square.four {
  width: 14px;
  height: 14px;
  top: -5px;
  right: 30px;
  animation: opacity 1.2s steps(5, end) infinite alternate;
}
.home .title h1 .square.five {
  width: 16px;
  height: 16px;
  top: 40px;
  left: -10px;
  animation: opacity 1.8s steps(6, end) infinite alternate;
}
.home .title h1 .square.six {
  width: 15px;
  height: 16px;
  bottom: 19px;
  right: -16px;
  animation: opacity 1.6s steps(5, end) infinite alternate;
}
.home .title h1 .line {
  position: absolute;
  background: #204730;
  width: 70%;
  height: 10px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.home .title p {
  font-size: 27px;
  margin: 11px 0 0;
  text-align: center;
  font-family: "body", sans-serif;
  color: #204730;
  position: relative;
}
.home .title p::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 10px;
  background: #204730;
}

@media (max-width: 767px) {
  .home .title h1 {
    font-size: 60px;
    line-height: 45px;
    letter-spacing: 1px;
  }
  .home .title h1 .square.one {
    left: 13px;
  }
  .home .title h1 .square.two {
    bottom: 13px;
  }
  .home .title h1 .square.three {
    right: -8px;
    top: 30px;
  }
  .home .title h1 .square.four {
    top: -6px;
    right: 18px;
  }
  .home .title h1 .square.five {
    left: -23px;
  }
  .home .title h1 .square.six {
    right: -20px;
  }
  .home .title h1 .line {
    height: 6px;
  }
  .home .title p {
    font-size: 16px;
    margin: 13px 0 0;
  }
  .home .title p::after {
    height: 6px;
  }
}
@keyframes scale {
  from {
    transform: scale(0.95);
  }
  to {
    transform: scale(1);
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes parallax {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.menu {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-position: center;
  background-repeat: repeat;
  z-index: 2;
}
.menu .container {
  width: 100%;
  padding: 0 125px;
}
.menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  background-image: url(../images/2.webp);
  animation: bg_scale 15s steps(100, end) infinite alternate;
  pointer-events: none;
}
.menu .container {
  width: 100%;
  padding: 0 140px;
}
.menu .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu h2 {
  font-size: 70px;
  line-height: 50px;
  width: 300px;
  letter-spacing: 2px;
  text-align: center;
  color: #204730;
  font-family: "title", sans-serif;
  position: relative;
}
.menu h2 .square {
  position: absolute;
  background: #204730;
}
.menu h2 .square.one {
  width: 10px;
  height: 10px;
  top: 8px;
  left: 25px;
  animation: opacity 1s steps(4, end) infinite alternate;
}
.menu h2 .square.two {
  width: 10px;
  height: 10px;
  bottom: 25px;
  left: -10px;
  animation: opacity 2s steps(6, end) infinite alternate;
}
.menu h2 .square.three {
  width: 10px;
  height: 10px;
  right: 10px;
  top: 50px;
  animation: opacity 1.5s steps(5, end) infinite alternate;
}
.menu h2 .square.four {
  width: 14px;
  height: 14px;
  top: -5px;
  right: 30px;
  animation: opacity 1.2s steps(5, end) infinite alternate;
}
.menu h2 .square.five {
  width: 16px;
  height: 16px;
  top: 40px;
  left: -10px;
  animation: opacity 1.8s steps(6, end) infinite alternate;
}
.menu h2 .square.six {
  width: 15px;
  height: 16px;
  bottom: 19px;
  right: -16px;
  animation: opacity 1.6s steps(5, end) infinite alternate;
}
.menu h2 .line {
  position: absolute;
  background: #204730;
  width: 70%;
  height: 10px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.menu .menu-container {
  position: relative;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 30px;
}
.menu .menu-container > div {
  padding: 7px 0px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  margin-bottom: 10px;
}
.menu .menu-container > div:hover {
  background: #204730;
  color: #A9B92A;
}
.menu .menu-container > div:hover::before {
  background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 3px, #A9B92A 3px, #A9B92A 7px);
}
.menu .menu-container > div::before {
  content: "";
  position: absolute;
  bottom: 15px;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 3px, #204730 3px, #204730 7px);
}
.menu .menu-container > div[data-section=about]::before {
  left: 79px;
  right: 69px;
}
.menu .menu-container > div[data-section=works]::before {
  left: 79px;
  right: 99px;
}
.menu .menu-container > div[data-section=contact]::before {
  left: 109px;
  right: 68px;
}
.menu .back {
  margin: 0 auto;
}
.menu .back svg {
  transform: scaleX(1);
}
.menu .back:hover svg {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .menu .container {
    width: 100%;
    padding: 0 40px;
  }
  .menu h2 {
    font-size: 50px;
    line-height: 35px;
    letter-spacing: 1px;
    width: 200px;
  }
  .menu h2 .square.one {
    left: 13px;
  }
  .menu h2 .square.two {
    bottom: 13px;
  }
  .menu h2 .square.three {
    right: -8px;
    top: 30px;
  }
  .menu h2 .square.four {
    top: -6px;
    right: 18px;
  }
  .menu h2 .square.five {
    left: -23px;
  }
  .menu h2 .square.six {
    right: -20px;
  }
  .menu h2 .line {
    height: 6px;
  }
  .menu p {
    font-size: 16px;
    margin: 13px 0 0;
  }
  .menu p::after {
    height: 6px;
  }
}
@keyframes bg_scale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.25);
  }
}
.about {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-position: center;
  background-repeat: repeat;
  z-index: 2;
}
.about .container {
  width: 100%;
  padding: 0 125px;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  background-image: url(../images/3.webp);
  animation: bg_scale 15s steps(100, end) infinite alternate;
  pointer-events: none;
}
.about .container {
  width: 100%;
  padding: 0 140px;
}
.about .container .inner {
  max-height: 70vh;
  max-height: 70dvh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.about .container .inner::-webkit-scrollbar {
  display: none;
}
.about .arrow {
  display: none;
}
.about .content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  justify-content: center;
}
.about .col-l {
  width: 30%;
  max-width: 500px;
}
.about .col-l img {
  width: 100%;
  display: block;
  border: 8px solid #204730;
}
.about .col-r {
  position: relative;
  width: 70%;
  padding-left: 40px;
}
.about .col-r h2 {
  margin-bottom: 40px;
  font-size: 70px;
  line-height: 50px;
  width: fit-content;
  letter-spacing: 2px;
  text-align: left;
  color: #204730;
  font-family: "title", sans-serif;
  position: relative;
}
.about .col-r h2 .square {
  position: absolute;
  background: #204730;
}
.about .col-r h2 .square.one {
  width: 10px;
  height: 10px;
  top: -23px;
  left: 25px;
  animation: opacity 1s steps(4, end) infinite alternate;
}
.about .col-r h2 .square.two {
  width: 10px;
  height: 10px;
  bottom: 25px;
  left: -10px;
  animation: opacity 2s steps(6, end) infinite alternate;
}
.about .col-r h2 .square.three {
  width: 10px;
  height: 10px;
  right: -20px;
  top: 50px;
  animation: opacity 1.5s steps(5, end) infinite alternate;
}
.about .col-r h2 .square.four {
  width: 14px;
  height: 14px;
  top: -20px;
  right: 30px;
  animation: opacity 1.2s steps(5, end) infinite alternate;
}
.about .col-r h2 .square.five {
  width: 16px;
  height: 16px;
  top: 40px;
  left: -20px;
  animation: opacity 1.8s steps(6, end) infinite alternate;
}
.about .col-r h2 .square.six {
  width: 15px;
  height: 16px;
  bottom: 19px;
  right: -16px;
  animation: opacity 1.6s steps(5, end) infinite alternate;
}
.about .col-r h2 .line {
  position: absolute;
  background: #204730;
  width: 100%;
  height: 10px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.about .col-r .description-container {
  background: #204730;
  color: #A9B92A;
  margin: 60px 16px;
  width: calc(100% - 32px);
  min-height: 20px;
  line-height: 1.4;
  box-shadow: 16px 0 #204730, -16px 0 #204730, 0 -16px #204730, 0 16px #204730, 4px 0 0 8px #204730, -4px 0 0 8px #204730, 0 -4px 0 8px #204730, 0 4px 0 8px #204730, 20px 0 #204730, -20px 0 #204730, 0 -20px #204730, 0 20px #204730, 0 0 0 12px #204730, 0 8px 0 8px #204730, 0 -8px 0 8px #204730, 8px 0 0 8px #204730, -8px 0 0 8px #204730;
}
.about .col-r .description-container .description {
  border: none !important;
}
.about .col-r .btn.contact {
  display: flex;
  width: 190px;
  margin: 0 auto 0 0;
  padding: 0;
  background: transparent;
  color: #204730;
  border: none;
  position: relative;
}
.about .col-r .btn.contact svg {
  transition: steps(4, end) 0.4s;
  transform: scaleX(-1);
}
.about .col-r .btn.contact svg path {
  fill: #204730;
}
.about .col-r .btn.contact:hover svg {
  transform: scaleX(-1) translateX(-10px);
}
.about .col-r .scroll-content {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #204730;
  position: fixed;
  left: 50%;
  bottom: 120px;
  cursor: pointer;
  transform: translateX(-50%);
  animation: opacityArrow 0.5s steps(4, end) infinite alternate;
}
.about .col-r .scroll-content.hidden {
  display: none;
}
.about .col-r .scroll-content svg {
  transform: rotate(-90deg);
}
.about .col-r .scroll-content svg path {
  fill: #A9B92A;
}

@media (max-width: 767px) {
  .about .container {
    width: 100%;
    padding: 0 40px;
  }
  .about .col-l {
    width: 100%;
    max-width: 300px;
  }
  .about .col-l img {
    border: 4px solid #204730;
  }
  .about .col-r {
    width: 100%;
    padding-left: 0;
    padding-top: 50px;
  }
  .about .col-r h2 {
    margin-left: auto;
    margin-right: auto;
    font-size: 50px;
    line-height: 35px;
    letter-spacing: 1px;
  }
  .about .col-r h2 .square.one {
    left: 13px;
  }
  .about .col-r h2 .square.two {
    bottom: 13px;
  }
  .about .col-r h2 .square.three {
    right: -8px;
    top: 30px;
  }
  .about .col-r h2 .square.four {
    top: -6px;
    right: 18px;
  }
  .about .col-r h2 .square.five {
    left: -23px;
  }
  .about .col-r h2 .square.six {
    right: -20px;
  }
  .about .col-r h2 .line {
    height: 6px;
  }
  .about .col-r .btn.contact {
    margin: 0 auto;
  }
  .about .col-r .scroll-content {
    bottom: 40px;
    width: 26px;
    height: 26px;
  }
}
@keyframes opacityArrow {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/*# sourceMappingURL=style.css.map */
