* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #262b35;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
  margin: 5px;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

[class*="__container"] {
  max-width: 95vw;
  padding: 0 15px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  /*MOBILE*/
  [class*="__container"] {
    max-width: none;
  }
}

body.lock {
  overflow: hidden;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 20;
  top: 0;
  left: 0;
  background-color: rgba(38, 43, 53, 0);
  -webkit-transition: 0.9s ease;
  transition: 0.9s ease;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
}

.header.active {
  background-color: #262b35;
}

.header__logo {
  z-index: 3;
  height: 80%;
}

.header__logo img {
  height: 100%;
}

.menu__icon {
  display: none;
}

.menu__list > li {
  position: relative;
  margin: 0 0 0 20px;
}

.menu__link {
  color: #FFF;
  font-size: 18px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.menu__link.active {
  border-color: rgba(0, 0, 0, 0);
}

.menu__arrow {
  display: none;
}

/*-------------------------------*/
body._touch .menu__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body._touch .menu__link {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

/*-------------------------------*/
@media (min-width: 767.98px) {
  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu__list > li {
    padding: 10px 0;
  }
}

@media (max-width: 991.98px) {
  .menu__link {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .menu__icon {
    z-index: 5;
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    background-color: #fff;
    content: '';
  }
  .menu__icon::before {
    top: 0;
  }
  .menu__icon::after {
    bottom: 0;
  }
  .menu__icon span {
    top: 50%;
    -webkit-transform: scale(1) translate(0, -50%);
            transform: scale(1) translate(0, -50%);
  }
  .menu__icon.active span {
    -webkit-transform: scale(0) translate(0, -50%);
            transform: scale(0) translate(0, -50%);
  }
  .menu__icon.active::before {
    top: 50%;
    -webkit-transform: rotate(-45deg) translate(0, -50%);
            transform: rotate(-45deg) translate(0, -50%);
  }
  .menu__icon.active::after {
    bottom: 50%;
    -webkit-transform: rotate(45deg) translate(0, 50%);
            transform: rotate(45deg) translate(0, 50%);
  }
  .menu__body {
    position: fixed;
    overflow: auto;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-color: #000;
    padding: 100px 30px 30px;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
  }
  .menu__body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    background-color: #262b35;
    z-index: 2;
  }
  .menu__body.active {
    left: 0;
  }
  .menu__list > li {
    margin: 0 0 30px;
  }
  .menu__list > li:last-child {
    margin-bottom: 0;
  }
  .menu__link {
    font-size: 20px;
  }
}

.text {
  color: #d8d8d8;
}

.text span {
  color: #8f8e9e;
}

.button {
  border: 2px solid #6e6e76;
  padding: 4px 8px;
  font-weight: 700;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: rgba(255, 255, 255, 0);
}

.button:hover {
  color: #fff;
  border-color: #fff;
}

.greeting {
  position: relative;
  height: 100vh;
}

.greeting__container {
  padding: 80px 0 0;
  text-align: center;
  height: 100%;
  z-index: 1;
  position: relative;
}

.greeting__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
}

.greeting__background img {
  width: 100%;
  height: 100%;
}

.greeting__preview-item {
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.greeting__preview-big {
  font-size: 40px;
  padding: 30px 0 0 0;
}

.greeting__preview-low {
  font-size: 28px;
}

.greeting__button {
  font-size: 18px;
  padding: 10px;
}

@media (max-width: 991.98px) {
  .greeting__preview-big {
    font-size: 30px;
  }
  .greeting__preview-low {
    font-size: 18px;
  }
  .greeting__button {
    font-size: 14px;
  }
  .greeting__background img {
    width: auto;
    height: 100%;
  }
}

@media (max-width: 767.98px) {
  .greeting__preview-big {
    font-size: 20px;
  }
  .greeting__preview-low {
    font-size: 12px;
  }
  .greeting__button {
    font-size: 10px;
  }
}

@media (max-width: 479.98px) {
  /*MOBILE SMALL*/
}

.work {
  height: auto;
}

.work__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.work__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.work__box-center {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.work__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  height: 50vh;
  position: relative;
  overflow: hidden;
}

.work__item-img {
  opacity: 0.8;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  z-index: 0;
}

.work__item-img.active {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  opacity: 1;
}

.work__item-coverage {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.work__item-text {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  text-align: center;
}

.work__item-text-left {
  left: auto;
  right: 0;
}

.work__item-text-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.work__item-text-midle {
  color: #8f8e9e;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.work__item-text-back {
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  top: auto;
  bottom: 0;
}

.work__item-text.active {
  opacity: 0;
}

@media (max-width: 1439.98px) {
  .work__item-text {
    font-size: 16px;
  }
}

@media (max-width: 991.98px) {
  .work__item {
    height: 30vh;
  }
  .work__item-text {
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .work__item-text {
    top: auto;
    bottom: 0;
    width: 100%;
    font-size: 12px;
  }
  .work__item-text-title {
    width: 100%;
  }
  .work__item-text-midle {
    width: 100%;
  }
  .work__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .work__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .work__container {
    padding: 20px 15px;
  }
}

.aboutMe {
  position: relative;
  height: 100vh;
}

.aboutMe__container {
  padding: 10vh 15px;
}

.aboutMe__title {
  font-size: 32px;
  padding: 13vh 0;
}

.aboutMe__midle-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 30px;
}

.aboutMe__midle-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.aboutMe__midle-title {
  font-size: 20px;
  padding: 0 0 40px;
  color: #d0d0da;
}

.aboutMe__midle-text {
  font-size: 16px;
  max-width: 80%;
  line-height: 135%;
  color: #8f8e9e;
}

.aboutMe__background {
  opacity: 0.1;
}

.info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.info__box-title {
  font-size: 14px;
  color: #8f8e9e;
}

.info__box-text {
  font-size: 18px;
  padding: 5px;
  border-bottom: 1px solid #8f8e9e;
}

@media (max-width: 991.98px) {
  .aboutMe {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .aboutMe__midle-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .aboutMe__title {
    padding: 0 0 30px;
    font-size: 24px;
  }
  .aboutMe__midle-title {
    padding: 0;
  }
  .aboutMe__midle-text {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .aboutMe__container {
    padding: 2vh 15px;
  }
  .info__box-title {
    font-size: 12px;
  }
  .info__box-text {
    font-size: 14px;
    text-align: center;
  }
}

.contact {
  position: fixed;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  top: 0;
  right: -100%;
  background-color: #262b35;
  z-index: 20;
  padding: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px;
}

.contact__item-img {
  position: relative;
  width: 40px;
  height: 40px;
}

.contact__item-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact__text {
  color: #fff;
  font-size: 24px;
}

.contact.active {
  right: 0;
}

@media (max-width: 1439.98px) {
  .contact {
    padding: 10px;
  }
  .contact__text {
    font-size: 18px;
  }
  .contact__item-img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767.98px) {
  .contact__text {
    display: none;
  }
}

@media (max-width: 479.98px) {
  /*MOBILE SMALL*/
}
