:root {
  --primary: #ff497c;
  --grey-100: #f4f4f5;
  --grey-200: #9a9a9a;
  --grey-300: #7f7f7f;
  --green: #a0ce4e;
  --blue: #00bea3;
  --orange: #f1894c;
  --black-100: #1f2732;
  --black-200: #323232
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -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 {
  font-family: "Poppins", sans-serif;
  height: 100%;
  width: 100%;
  line-height: 1;
  font-weight: 400;
  font-size: 16px;
  color: var(--black-100);
  background-color: #fff;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

main {
  overflow: hidden;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: 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;
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
}

P {
  line-height: 30px;
}

*::selection {
  /*background-color: var(--primary);
  color: #fff;*/
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
  }
}

.pink {
  color: var(--primary);
}

.green {
  color: var(--green)
}

.blue {
  color: var(--blue)
}

.orange {
  color: var(--orange)
}

.m-20 {
  margin-top: 20px;
}

.m-30 {
  margin-top: 30px;
}

.m-40 {
  margin-top: 40px;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  border: 4px solid var(--primary);
  color: #fff;
  text-transform: uppercase;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 26px 61px;
  transition: all 0.2s linear 0s;
}

.btn-main:hover {
  background-color: transparent;
  transition: all 0.15s linear 0s;
}

.btn-outline-maincolor {
  border-color: var(--primary);
  color: var(--black-100);
  background-color: transparent;
  margin: 40px 0;

  &:hover {
    background-color: var(--primary);
    color: #fff;
    transition: all 0.15s linear 0s;
  }
}

.white-btn {
  background-color: #fff;
  border: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  color: var(--black-100);
  padding: 30px 61px;

  &:hover {
    background-color: var(--primary);
    color: #fff;
    transition: all 0.15s linear 0s;
  }
}

.btn-main.outline {
  &:hover {
    background-color: #fff;
    color: var(--primary);

    & svg path {
      fill: var(--primary);
    }
  }
}

.divider {
  z-index: 5;
  position: relative;
  text-align: center;

}

.block-title {
  font-size: 31px;
  font-weight: 500;
}

.block-text {
  margin-top: 25px;
  color: var(--grey-300);
  max-width: 800px;
}

@media screen and (max-width: 768px) {

  .block-text {
    margin-top: 15px;
  }
}

@media screen and (max-width: 576px) {
  .block-title {
    font-size: 26px;
  }

}

/* ========================================= */
/* header */
.header {
  background-color: rgba(31, 39, 50, .5);
  left: 0;
  position: absolute;
  right: 0;
  z-index: 10;
  transition: .5s all;

}

.sticky {
  box-shadow: 0 2px 15px 0 rgba(100, 100, 100, .05);
  background-color: rgba(31, 39, 50, .95);
  position: fixed !important;
  height: 60px;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;

}

.header__logo {
  display: flex;
  align-items: center;

  & a {
    color: #fff;
    font-size: 36px;
  }
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.menu {
  display: flex;
  align-items: center;
}

.menu__link.active a {
  color: var(--primary);
}

.menu__link a {
  position: relative;
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  margin: 0 20px;
  padding-left: 0;
  padding-right: 0;
  padding: 53px 0;
  transition: all .2s ease-in-out 0s;
  color: #fff;
  text-transform: uppercase;

  &:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    display: block;
    background: #fff;
    border-radius: 50%;
    left: -20px;
    top: 56px;
    transition: all .2s ease-in-out 0s;
  }

  &:hover {
    color: var(--primary);
  }
}

.sticky .menu__link a {
  padding: 24px 0;

  &:after {
    top: 27px;
  }
}

.menu__link:first-child a:after {
  display: none;
}

.menu__link:last-child>a {
  margin-right: 0;
}

.menu__link:first-child>a {
  margin-left: 0;
}

.header__phone {
  color: #fff;
  display: block;
  font-size: 24px;
  font-weight: 200;
  margin: 0 0 0 auto;
}

.toggle_menu {
  display: none;
  cursor: pointer;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  opacity: .95;
  padding: 0 !important;
  position: absolute;
  right: 0;
  top: 50%;
  visibility: visible;
  width: 60px;
  z-index: 1002
}

.toggle_menu {
  left: auto;
  margin: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.toggle_menu:before,
.toggle_menu span,
.toggle_menu span:before,
.toggle_menu span:after {
  content: "";
  background-color: #fff;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  width: 31px
}

.toggle_menu:before,
.toggle_menu span {
  color: #fff;
  content: "menu";
  font-size: 9px;
  font-weight: 800;
  left: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: .5s ease-in-out;
  top: 43%;
  width: 0;
}

.toggle_menu span {
  top: 24%;
}

.toggle_menu span:before {
  top: 0;
}

.toggle_menu span:after {
  top: 28px
}

.toggle_menu.mobile-active span:before {
  top: 13px;
  transform: rotate(45deg)
}

.toggle_menu.mobile-active span:after {
  top: 13px;
  transform: rotate(-45deg)
}

.toggle_menu.mobile-active {
  background-color: var(--primary);
  border: none;
  left: auto;
  margin: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 3000
}

.toggle_menu.mobile-active:before,
.toggle_menu.mobile-active span {
  background-color: #fff;
}


.toggle_menu.mobile-active span:before,
.toggle_menu.mobile-active span:after {
  opacity: 1
}

.toggle_menu.active span:before,
.toggle_menu.active span:after {
  opacity: 1
}

.toggle_menu.mobile-active:before {
  top: 43px;
}

@media screen and (max-width: 1200px) {
  .top-nav {
    flex: 0 0 65%;
    max-width: 65%;
  }

  .header__phone {
    font-size: 22px;
  }
}

@media screen and (max-width:1024px) {
  .header__container {
    padding: 12px 15px;
  }

  .top-nav {
    touch-action: pan-y;
    position: fixed;
    background-color: #fff;
    border-top: 61px solid #ff497c;
    display: block;
    font-size: 12px;
    font-weight: 700;
    left: 0;
    bottom: 0;
    top: 0;
    right: 100%;
    overflow: auto;
    padding: 20px 10px 20px 20px;
    text-align: left;
    opacity: 0;
    transition: all .4s ease-in-out;
    max-width: 100%;
  }

  .mobile-active .top-nav {
    opacity: 1;
    right: 0;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu__link{
    width: 100%;
  }

  .menu__link a {
    width: 100%;
    color: var(--black-100);
    padding: 15px;
    margin: 0;

    &:after {
      display: none;
    }
  }

  .header__phone {
    width: 280px;
  }

  .toggle_menu {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .header__phone {
    width: 245px;
    font-size: 20px;
  }
}

@media screen and (max-width: 576px) {
  .header__phone {
    display: none;
  }
  .header__logo {

    & a {
      font-size: 30px;
    }
  }
}


/* intro */
.intro {
  padding: 220px 0;
  /* background: url('../img/meeting.jpg') 0 0/ cover no-repeat; */
  position: relative;
  text-align: center;
  height: 100vh;
  color: #fff;

  &:after,
  &:before {
    background-color: #fff;
    bottom: -35px;
    content: "";
    height: 70px;
    position: absolute;
    width: 50%;
    z-index: 4;
  }
  &:after {
    right: 0;
    -webkit-transform: skewY(-3deg);
    -ms-transform: skewY(-3deg);
    transform: skewY(-3deg);
  }

  &:before {
    left: 0;
    -webkit-transform: skewY(3deg);
    -ms-transform: skewY(3deg);
    transform: skewY(3deg);
  }
}

.intro img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  object-fit: cover;
}

.intro .container {
  height: 100%;
}

.overlay {
  background-color: rgba(31, 39, 50, 0.7);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;

}

.inrto__wrap {
  padding: 20px 0;
  z-index: 5;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro__subtitle {
  margin-top: 60px;
  font-size: 14px;
  letter-spacing: 2.1em;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}

.intro__title {
  margin-top: 40px;
  text-shadow: 0 0 13px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  font-size: 138px;
  font-weight: 500;
  text-transform: uppercase;
}

.intro__desc {
  font-weight: 200;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
  font-size: 42px;
}

.intro__btn {
  margin-top: 77px;
}

.mouse-button {
  background-image: url('../img/mouse_icon.png');
  background-repeat: no-repeat;
  bottom: 30px;
  display: block;
  height: 60px;
  left: 50%;
  margin-left: -20px;
  position: absolute;
  width: 40px;
  z-index: 5;
}

.floating {
  animation: floating 1.5s infinite;
}

.animated {
  animation-fill-mode: both;
  animation-duration: 1s;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(8%);
  }

  100% {
    transform: translateY(0%);
  }
}

@media screen and (max-width: 1440px) {
  .intro {
    padding: 200px 0;
  }
}

@media screen and (max-width: 1200px) {
  .intro {
    padding: 150px 0;
    height: auto;
    &:after,
    &:before {
      background-color: #fff;
      display: none;
    }
  }

  .mouse-button {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .intro {
    padding: 50px 0;
  }

  .intro__title {
    margin-top: 30px;
    font-size: 95px;
  }

  .intro__desc {
    font-size: 37px;
  }
}

@media screen and (max-width: 768px) {
  .intro__title {
    font-size: 80px;
  }

  .intro__desc {
    font-size: 30px;
  }
}

@media screen and (max-width: 576px) {
  .intro__subtitle {
    letter-spacing: 1.8em;
  }

  .intro__title {
    font-size: 56px;
  }

  .intro__desc {
    margin-top: 10px;
    font-size: 25px;
  }
}

@media screen and (max-width: 375px) {
  .intro__subtitle {
    letter-spacing: 1.4em;
  }
}

/* about */
.about {
  padding: 50px 0 0;
}

.about__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about__text span {
  color: var(--black-100);
  font-weight: 600;
}

/* services */
.services {
  padding: 50px 0 0;
}

.services__items {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
}

.services__item {
  flex: 1 1 calc((100% - 30px * 2) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.services__icon {
  width: 100px;
  height: 100px;

  & img {
    width: 100%;
    height: auto
  }
}

.services__title {
  font-size: 24px;
  font-weight: 500;
}

.services__text {
  color: var(--grey-300);
  text-align: center;
  font-weight: 300;
}

@media screen and (max-width: 998px) {
  .services__item {
    flex: 1 1 calc((100% - 30px * 2) / 2);
  }
}

@media screen and (max-width: 768px) {
  .services__items {
    justify-content: center;
    gap: 30px;
  }

  .services__item {
    gap: 15px;
    max-width: 600px;
    flex: 1 1 100%;
  }
}

/* processes */
.processes {
  position: relative;
  overflow: visible;
  margin-left: -100px;
  margin-right: -100px;
  background-image: url("../img/texture_dark.jpg");
  background-position: 50% -24px;
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  z-index: 5;
}

.processes .container {
  transform: rotate(-3deg);
}

.processes__items {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.processes__item {
  display: flex;
  align-items: center;

  &:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.processes__title-wrap {
  flex: 0 0 calc(100% / 3);
}

.processes__title {
  text-align: right;
  position: relative;
  color: #fff;
  font-size: 45px;
  font-weight: 500;
  z-index: 1;
  margin-right: -30px;
}

.processes__title span {
  font-size: 200px;
  font-weight: 600;
  line-height: 54px;
  left: -48%;
  letter-spacing: 1px;
  position: absolute;
  top: 1px;
  width: 100%;
  z-index: -1;
}

.processes__img-wrap {
  flex: 0 0 calc(100% / 3);
  display: flex;
  justify-content: center;
}

.processes__img {
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-radius: 50%;
  max-width: 270px;
  position: relative;

  &::after {
    content: "";
    background-image: url("../img/right_arrow.png");
    background-repeat: no-repeat;
    display: block;
    height: 136px;
    position: absolute;
    right: -12px;
    bottom: -97px;
    width: 34px;
    z-index: 4;
  }
}

.processes__item:last-child .processes__img::after {
  display: none;
}

.processes__text {
  flex: 0 0 calc(100% / 3);
  color: var(--grey-200);
  margin-left: -30px;
}

.processes__item:nth-child(even) .processes__title {
  margin-right: 0;
  margin-left: -30px;
  text-align: left;
}

.processes__item:nth-child(even) .processes__text {
  margin-left: 0;
  margin-right: -30px;
  text-align: right;
}

.processes__item:nth-child(even) .processes__title span {
  left: 36%;
  position: absolute;
  top: 1px;
}

.processes__item:nth-child(even) .processes__img::after {
  left: -12px;
  right: auto;
  background-image: url("../img/left_arrow.png");
}

.processes__btn-bottom {
  text-align: center;
  bottom: -40px;
  display: block;
  margin-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .processes__title {
    margin: 0 !important;
  }

  .processes__title span {
    font-size: 170px;
  }

  .processes__text {
    margin: 0 !important;
  }
}

@media screen and (max-width: 1024px) {
  .processes__item {
    flex-direction: column !important;
    gap: 20px;
  }

  .processes__title {
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .processes__title span {
    font-size: 80px;
    left: 0 !important;
    position: relative !important;
    top: 0;
    right: auto;
  }

  .processes__text {
    text-align: center !important;
  }

  .processes__item .processes__img::after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .processes {
    margin: 0;
    transform: rotate(0deg);
  }

  .processes .container {
    transform: rotate(0deg);
  }
}

@media screen and (max-width: 576px) {
  .processes__title {
    font-size: 35px;
  }

  .processes__title span {
    font-size: 65px;
  }
}

/* team */
.team {
  padding: 50px 0 0;
  position: relative;
}

.team__title {
  color: var(--primary);
  display: block;
  font-size: 280px;
  font-weight: 600;
  left: -272px;
  margin-bottom: 0;
  margin-top: 0;
  opacity: 0.1;
  position: absolute;
  text-transform: lowercase;
  top: 52%;
  -ms-transform: translateY(-58%) rotate(-90deg);
  -webkit-transform: translateY(-58%) rotate(-90deg);
  transform: translateY(-58%) rotate(-90deg);
  word-break: unset;
  z-index: 4;
}

.team__wrap {
  display: flex;
  align-items: center;
}

.team__name {
  flex: 1 1 50%;
  font-size: 54px;
  font-weight: 500;
}

.team__img {
  background-color: var(--grey-100);
  flex: 1 1 50%;
}

.team__btn {
  text-align: center;
  position: relative;
  bottom: -40px;
  z-index: 9;
}

@media screen and (max-width: 1440px) {
  .team__title {
    font-size: 250px;
    left: -235px;
  }
}

@media screen and (max-width: 1200px) {
  .team__name {
    font-size: 42px;
  }
}

@media screen and (max-width: 992px) {
  .team__name {
    font-size: 35px;
  }

  .team__title {
    font-size: 165px;
    left: -155px;
  }
}

@media screen and (max-width: 768px) {
  .team__title {
    display: none;
  }

  .team__name {
    font-size: 30px;
  }

  .team__img {
    max-width: 400px;
  }

  .team__wrap {
    padding: 0 0 40px;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .team__btn {
    bottom: 0;
  }
}

/* products */
.products {
  margin-top: -45px;
  position: relative;
  background-color: var(--grey-100);
  position: relative;

  &:before {
    content: "";
    display: block;
    height: 0;
    position: absolute;
    width: 0;
    border-bottom: none;
    border-left: 50vw solid var(--grey-100);
    border-right: 50vw solid var(--grey-100);
    border-top: 50px solid #fff;
  }
}

.products__wrap {
  padding: 110px 0 0;
  text-align: center;
}

.products__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.products__text {
  max-width: 600px;
}

.products__items {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.products__logo {
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  & img {
    height: 100%;
  }
}

.products__item {
  flex: 1 1 calc(100% - 40px / 3);
  padding: 25px 45px 45px 30px;
  background: url('../img/Fon1.png') 0 0/ 100% 100% no-repeat;
}

.products__item:nth-child(2) {
  background: url('../img/Fon2.png') 0 0/ 100% 100% no-repeat;
}

@media screen and (max-width: 992px) {
  .products__items {
    flex-direction: column;
    align-items: center;
  }

  .products__item {
    max-width: 600px;
  }
}

@media screen and (max-width: 768px) {
  .products:before {
    display: none;
  }
}

/* tabs */
.tabs {
  display: flex;
  justify-content: center;
  cursor: pointer;
  padding: 30px 0;
}

.tab {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  padding: 20px;
  transition: all 0.2s linear 0s;

  &.active-tab,
  &:hover {
    color: var(--primary);
  }
}

.tabs-wrap {
  overflow: hidden;
}

.tab-content {
  max-height: 0;
  visibility: hidden;
}

.tab-content.active {
  max-height: 100rem;
  visibility: visible;
}

.tab-content .swiper2 .swiper-slide {
  opacity: 0;
  scale: 0;
  visibility: hidden;
  transition: all .2s linear 0s;

}

.tab-content.active .swiper2 .swiper-slide {
  opacity: 1;
  scale: 1;
  visibility: visible;
  transition: all .2s linear 0s;
}

@media screen and (max-width: 576px) {
  .tab {
    font-size: 18px;
    padding: 20px 7px;
  }
}

@media screen and (max-width: 375px) {
.tabs {
    padding-bottom: 0;
  }
  .tab {
    font-size: 16px;
  }
}
/* slider */
.slider {
  background-position: 50% -53px;
  background-color: var(--black-100);
  background-image: url("../img/texture-process.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.slider__wrap {
  padding: 0 0 30px 0;
}

.slider__btn {
  position: relative;
  margin-bottom: -80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider__btn a {
  padding: 20px;
  position: relative;
  z-index: 100;
}

/* swiper1*/
.swiper1 {
  position: relative;
  padding: 50px 0 60px;
  overflow: hidden;
}

.swiper1 .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 70%;
  margin: 0 auto;
}

.swiper1 .item__img {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 6px;

  & img {
    width: 270px;
    max-width: 270px;
    height: 270px;
  }
}

.swiper1 .item__job {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.6em;
  text-transform: uppercase;
}

.swiper1 .item__name {
  font-size: 30px;
  color: #fff;
  font-weight: 500;
}

.swiper1 .item__text {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--grey-200);
  text-align: center;
}

.swiper-pagination-bullet {
  height: 6px !important;
  margin: 1px 12px 3px !important;
  width: 6px !important;
  opacity: 1;
  background-color: #fff !important;
  transition: all .2s linear 0s;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
  background-color: var(--primary) !important;
}

@media screen and (max-width: 768px) {
  .slider__wrap {
    padding: 0;
  }

  .swiper1 .item {
    max-width: 100%;
  }

  .slider__btn {
    bottom: -40px;
    margin-bottom: 0;
  }
}

/* info */
.info {
  position: relative;

  &:after {
    content: "";
    display: block;
    height: 0;
    position: absolute;
    width: 0;
    border-bottom: 50px solid transparent;
    border-left: 50vw solid #fff;
    border-right: 50vw solid #fff;
    border-top: 50px solid #fff;
  }

  &::before {
    content: "";
    display: block;
    height: 0;
    position: absolute;
    width: 0;
    border-top: 50px solid transparent;
    border-left: 50vw solid #fff;
    border-right: 50vw solid #fff;
    border-bottom: 50px solid #fff
  }
}

.info__wrap {
  padding: 120px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: -50px;
}

.info__title {
  font-size: 56px;
}

@media screen and (max-width: 768px) {
  .info {
    position: relative;

    &:after,
    &::before {
      display: none;
    }
  }

  .info__title {
    font-size: 38px;
  }

  .info__wrap {
    padding: 80px 0 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 576px) {
  .info__title {
    font-size: 26px;
  }
}

/* contacts */
.contacts {
  padding: 50px 0 0;
  background-image: url(../img/texture_2.png);
  background-repeat: no-repeat;
  background-position: 50% -71px;
  background-attachment: fixed;
  background-size: cover;
  background-color: var(--grey-100);
}

.contacts__wrap {
  padding: 50px 0 70px;
}

.contacts__blocks {
  display: flex;
  gap: 20px;
}

.contacts__block {
  text-align: center;
  flex: 1 1 calc(100% - 40px / 3);
  position: relative;
  z-index: 5;
}

.contacts__icon-wrap {
  border: 4px solid #fff;
  border-radius: 50%;
  display: inline-block;
  font-size: 65px;
  height: 2.5em;
  padding: 4px;
  width: 2.5em;

  &:hover {
    animation: scale .5s;
  }
}

.contacts__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  color: var(--black-100);
  font-weight: 500;
  height: 100%;
  width: 100%;
}

.contacts__title {
  margin: 23px 0 13px;
  font-size: 24px;
  font-weight: 500;
}

.contacts__text {
  color: #6e6e6e;
}

@keyframes scale {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  60% {
    opacity: 0;
    transform: scale(1.3);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media screen and (max-width: 768px) {
  .contacts {
    padding: 0;
  }

  .contacts__blocks {
    flex-direction: column;
    gap: 25px;
  }

  .contacts__title {
    margin: 15px 0 10px;
    font-size: 20px;
  }
}

/* footer */
.footer__top {
  position: relative;
  text-align: center;
  padding: 60px 0;
  background-color: var(--black-100);

  &:before,
  &:after {
    background-image: url(../img/texture_dark.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 290px;
    position: absolute;
    top: -30px;
    width: 50%;
    z-index: 0;
  }

  &:before {
    left: 0;
    -webkit-transform: skewY(3deg);
    -ms-transform: skewY(3deg);
    transform: skewY(3deg);
  }

  &:after {
    right: 0;
    -webkit-transform: skewY(-3deg);
    -ms-transform: skewY(-3deg);
    transform: skewY(-3deg);
  }
}

.footer__title {
  font-size: 72px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 1;
}

.social__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.social__links a {
  transform: translateY(50%);
  transition: all .15s linear 0s;

  &:hover {
    transform: translateY(0);
  }
}

.social__links svg {
  width: 15px;
  height: 15px;
}

.footer__bottom {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  background: url('../img/copyright_bg.jpg') 0 0 / 100% no-repeat;
  color: #fff;
  font-weight: 500;
  text-align: center;

  & p {
    font-size: 14px;
    line-height: 1;

  }
}

@media screen and (min-width: 1600px) {
  .footer__top {

    &:before,
    &:after {
      height: 265px;
    }
  }

  .footer__title {
    font-size: 56px;
  }
}

@media screen and (max-width: 768px) {
  .footer__top {
    padding: 40px 0;

    &:before,
    &:after {
      height: 210px;
    }
  }

  .footer__title {
    font-size: 56px;
  }
}

@media screen and (max-width: 576px) {
  .footer__top {
    padding: 30px 0;

    &:before,
    &:after {
      height: 190px;
    }
  }

  .footer__title {
    font-size: 40px;
  }
}

/* page-up */
#toTopBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
  z-index: -1;

  &.active {
    opacity: .8;
    z-index: 9999;
  }

  &:hover {
    opacity: 1;
    bottom: 15px;
  }
}