@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
:root {
  --fontsize1: 2.5em;
  --fontsize2: 2em;
  --fontsize3: 1.5em;
  --fontsize4: 1.2em;
}

@media (max-width: 1040px) {
  :root {
    --fontsize1: 2.2em;
    --fontsize2: 1.8em;
    --fontsize3: 1.3em;
    --fontsize4: 1.1em;
  }
}
@media (max-width: 820px) {
  :root {
    --fontsize1: 1.6em;
    --fontsize2: 1.4em;
    --fontsize3: 1.1em;
    --fontsize4: 1em;
  }
}
* {
  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%;
  min-width: 320px;
  line-height: 1;
  font-size: 14px;
  font-family: "Montserrat";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Montserrat";
}

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: inherit;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -mox-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0 20px;
}
.input.err {
  -webkit-box-shadow: 0 0 8px red;
          box-shadow: 0 0 8px red;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

html {
  scroll-behavior: smooth;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
}
.header__row {
  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;
}
.header__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.header__menu {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 27.5%;
          flex: 0 0 27.5%;
}
@media (max-width: 1130px) {
  .header__menu {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33%;
            flex: 0 0 33%;
  }
}
.header__burger {
  display: none;
}

.label__logo {
  width: 100px;
  height: 56px;
}
@media (max-width: 980px) {
  .label__logo {
    width: 75px;
    height: 42px;
  }
}
.label__name {
  font-size: 2.14em;
}
@media (max-width: 980px) {
  .label__name {
    font-size: 1.8em;
  }
}
@media (max-width: 700px) {
  .label__name {
    font-size: 1.3em;
  }
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.menu__link {
  position: relative;
  font-size: var(--fontsize4);
  color: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 980px) {
  .menu__link {
    font-size: 1em;
  }
}
.menu__link::after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.menu__link:hover {
  text-shadow: 0 1px 2px;
}
.menu__link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.7);
  -webkit-filter: blur(400%);
          filter: blur(400%);
  -webkit-box-shadow: 0 0 5px;
          box-shadow: 0 0 5px;
}

.whatsapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.whatsapp__logo {
  width: 56px;
  height: 56px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 980px) {
  .whatsapp__logo {
    width: 42px;
    height: 42px;
  }
}
.whatsapp__logo:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.whatsapp__number {
  font-size: var(--fontsize3);
  font-weight: 700;
  color: black;
}
@media (max-width: 980px) {
  .whatsapp__number {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .lock {
    overflow: hidden;
  }

  .header__menu {
    position: absolute;
    width: 100%;
    height: 110vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: -110vh;
    padding: 50px 20px;
    right: 0;
    z-index: 3;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow-y: auto;
    border-radius: 5px;
    background: -webkit-gradient(linear, left top, right top, color-stop(75%, #82f7dd), to(#197c80));
    background: linear-gradient(90deg, #82f7dd 75%, #197c80);
  }

  .header__menu.active {
    top: 0;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .menu__list li a {
    font-size: var(--fontsize2);
  }

  .menu__list li {
    margin-bottom: 20px;
  }

  .header__burger {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50px;
    height: 28px;
    margin-right: 3px;
    z-index: 3;
  }

  .header__burger::after,
.header__burger::before {
    content: "";
    position: absolute;
    right: 0;
    width: 50px;
    height: 1px;
    background: #000;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .header__burger::before {
    top: 0.3px;
  }

  .header__burger::after {
    bottom: 0;
  }

  .header__burger span {
    display: block;
    height: 1px;
    width: 100%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    background-color: #000;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .header__burger.active::before {
    top: 18px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    height: 1px;
  }

  .header__burger.active::after {
    bottom: 9px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    height: 1px;
  }

  .header__burger.active span {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
a {
  cursor: pointer;
}

.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.ibg img {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

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

.container {
  max-width: 1230px;
  padding: 0px 15px;
  margin: 0 auto;
}

.main-screen {
  height: 100%;
  padding: 120px 0 0 0;
  margin: 0 0 100px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#80e9f0), color-stop(46.88%, rgba(154, 194, 224, 0.625)), color-stop(100%, rgba(196, 196, 196, 0)), to(rgba(145, 170, 206, 0)));
  background: linear-gradient(180deg, #80e9f0 0%, rgba(154, 194, 224, 0.625) 46.88%, rgba(196, 196, 196, 0) 100%, rgba(145, 170, 206, 0) 100%);
}
@media (max-width: 600px) {
  .main-screen {
    margin: 0 0 70px 0;
  }
}
@media (min-width: 1400px) {
  .main-screen {
    padding: 150px 0 0 0;
  }
}
.main-screen__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.main-screen__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44.5%;
          flex: 0 0 44.5%;
  padding: 0 0 47.25% 0;
  -webkit-filter: drop-shadow(1px 1px 75px rgba(255, 210, 94, 0.65));
          filter: drop-shadow(1px 1px 75px rgba(255, 210, 94, 0.65));
}
@media (max-width: 600px) {
  .main-screen__image {
    display: none;
  }
}

.offer {
  max-width: 358px;
}
.offer__title {
  font-size: var(--fontsize1);
  line-height: 1.2em;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 800px) {
  .offer__title {
    margin: 0 0 10px 0;
  }
}
.offer__text {
  font-size: var(--fontsize3);
  line-height: 1.4em;
  margin: 0 0 36px 0;
}
@media (max-width: 800px) {
  .offer__text {
    margin: 0 0 20px 0;
  }
}
.offer__list {
  padding: 0 0 0 20px;
}
.offer__list li {
  position: relative;
}
.offer__list li::before {
  content: "";
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: -15px;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: black;
  border-radius: 50%;
}
.offer__button {
  position: relative;
  display: block;
  text-align: center;
  width: 225px;
  height: 70px;
  background: linear-gradient(274.36deg, #ffef5e 0%, rgba(255, 229, 112, 0.810938) 58.07%, rgba(254, 203, 157, 0.34) 98.67%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  font-size: var(--fontsize3);
  line-height: 69px;
  font-weight: 700;
  color: #000;
  overflow: hidden;
}
@media (max-width: 820px) {
  .offer__button {
    width: 180px;
    height: 50px;
    line-height: 50px;
  }
}
.offer__button:hover {
  background: linear-gradient(274.36deg, #cc5eff 0%, rgba(162, 112, 255, 0.811) 58.07%, rgba(254, 203, 157, 0.34) 98.67%);
}
.offer__button:focus {
  outline: none;
}

.offer__button .circle {
  position: absolute;
  background-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-animation: scale 0.5s ease-out;
          animation: scale 0.5s ease-out;
}

.offer__button:focus {
  outline: none;
}

@-webkit-keyframes scale {
  to {
    -webkit-transform: translate(-50%, -50%) scale(3);
            transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

@keyframes scale {
  to {
    -webkit-transform: translate(-50%, -50%) scale(3);
            transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
@media (orientation: portrait) {
  .main-screen {
    max-height: 800px;
  }
}
@media (min-width: 1600px) {
  .main-screen {
    max-height: 900px;
  }
}
.content {
  overflow: hidden;
}

.section-title {
  font-weight: 700;
  font-size: var(--fontsize2);
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: var(--fontsize3);
  font-weight: 700;
}

.text {
  font-size: var(--fontsize4);
  line-height: 1.2em;
}

.product {
  margin: 0 0 100px 0;
}
@media (max-width: 800px) {
  .product {
    margin: 0 0 80px 0;
  }
}
.product__subtitle {
  margin-bottom: 20px;
}
.product__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product__row_1 {
  margin-bottom: 30px;
}
@media (max-width: 980px) {
  .product__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product__column_image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .product__column_text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.product__column_images {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((700 / 1200) * 100%);
          flex: 0 0 calc((700 / 1200) * 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
}
.product__column_text {
  background-color: rgba(111, 190, 151, 0.418);
  text-align: justify;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((440 / 1200) * 100%);
          flex: 0 0 calc((440 / 1200) * 100%);
  border-radius: 10px;
  padding: 10px;
  -webkit-box-shadow: 0 0 10px rgba(83, 34, 138, 0.486);
          box-shadow: 0 0 10px rgba(83, 34, 138, 0.486);
}
.product__column_text span {
  font-weight: 700;
}
.product__column_text p {
  padding: 10px 0 10px;
}

.images__item {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.images__item_1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((110 / 700) * 100%);
          flex: 0 0 calc((110 / 700) * 100%);
  padding: 0 0 35.5% 0;
}
.images__item_2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((232 / 700) * 100%);
          flex: 0 0 calc((232 / 700) * 100%);
  padding: 0 0 23.5% 0;
}
.images__item_3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((146 / 700) * 100%);
          flex: 0 0 calc((146 / 700) * 100%);
  padding: 0 0 23.5% 0;
}
.images__item_4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((308 / 700) * 100%);
          flex: 0 0 calc((308 / 700) * 100%);
  padding: 0 0 23.5% 0;
}
.images__item_5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((249 / 700) * 100%);
          flex: 0 0 calc((249 / 700) * 100%);
  padding: 0 0 35.5% 0;
}

.quality::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: darkblue;
  -webkit-box-shadow: 0 0 30px;
          box-shadow: 0 0 30px;
  z-index: 1;
  -webkit-filter: blur(300%);
          filter: blur(300%);
  opacity: 0.3;
}

.quality {
  position: relative;
  margin: 0 0 150px 0;
}
@media (max-width: 800px) {
  .quality {
    margin: 0 0 80px 0;
  }
}
.quality__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 980px) {
  .quality__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.quality__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
}
@media (max-width: 980px) {
  .quality__label {
    margin-bottom: 20px;
  }
}
.quality__brand {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((196 / 552) * 100%);
          flex: 0 0 calc((196 / 552) * 100%);
  padding: 0 0 22% 0;
  margin-right: calc((20 / 552) * 100%);
}
@media (max-width: 980px) {
  .quality__brand {
    padding: 0 0 24% 0;
  }
}
.quality__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc((360 / 552) * 100%);
          flex: 1 1 calc((360 / 552) * 100%);
}
@media (max-width: 980px) {
  .quality__text {
    font-size: var(--fontsize2);
    line-height: 1.4em;
  }
}
@media (max-width: 544px) {
  .quality__text {
    font-size: var(--fontsize3);
    line-height: 1em;
  }
}
@media (max-width: 340px) {
  .quality__text {
    font-size: var(--fontsize4);
    line-height: 1em;
  }
}
.quality__certificates {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.quality__prof {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26.6304347826%;
          flex: 0 0 26.6304347826%;
  padding: 0 0 24% 0;
}
.quality__certificate {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18.6594202899%;
          flex: 0 0 18.6594202899%;
  padding: 0 0 24% 0;
}

.contacts {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(145, 170, 206, 0)), color-stop(0%, rgba(196, 196, 196, 0)), color-stop(46.88%, rgba(154, 194, 224, 0.625)), to(#80e9f0));
  background: linear-gradient(180deg, rgba(145, 170, 206, 0) 0%, rgba(196, 196, 196, 0) 0%, rgba(154, 194, 224, 0.625) 46.88%, #80e9f0 100%);
}
@media (max-width: 768px) {
  .contacts__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contacts__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.steps {
  margin: 0px 0px 50px 0px;
}
@media (max-width: 980px) {
  .steps {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0px 0px 0px 0px;
  }
}
@media (max-width: 800px) {
  .steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.steps__step {
  margin: 0 0 30px 0;
}
@media (max-width: 980px) {
  .steps__step {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}
@media (max-width: 800px) {
  .steps__step_2 {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
.steps__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.steps__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 2.1em;
  line-height: 60px;
  margin-right: 15px;
}
.steps__number span {
  display: block;
}
.steps__number_1 {
  background: #d2a0cd;
}
.steps__number_2 {
  background: #e676da;
}
.steps__number_3 {
  background: #f120dc;
}
.steps__body {
  padding: 10px 0 0 35px;
}
.steps__body_1 {
  padding: 0 0 0 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.steps__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 5px 0;
}
.steps__list {
  position: relative;
}
.steps__point {
  position: relative;
  font-weight: 700;
  padding: 0 0 0 20px;
  margin-bottom: 15px;
}
.steps__point::before {
  content: "";
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  top: -8px;
  left: -20px;
  display: block;
  background: url("../img/icons/point.svg") center center/cover no-repeat;
}
.steps__sublist {
  padding-left: 10px;
}
.steps__subpoint {
  position: relative;
  font-weight: 400;
}
.steps__subpoint::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -8px;
  width: 5px;
  height: 5px;
  background-color: #000;
}

.social-link__logo {
  width: 40px;
  height: 40px;
}
.social-link__logo_3 {
  margin: 2px 4px 0 5px;
  width: 31px;
  height: 31px;
}
.social-link__name {
  color: #000;
  font-weight: 700;
}

.feedback {
  padding: 0px 0px 160px 0px;
}
@media (max-width: 980px) {
  .feedback {
    padding-left: 15px;
    margin-right: auto;
  }
}
@media (max-width: 977px) {
  .feedback {
    padding-top: 20px;
  }
}
@media (max-width: 800px) {
  .feedback {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-right: 0;
    padding-left: 0px;
    padding: 0px 0px 100px 0px;
  }
}
.feedback__title {
  margin: 0px 0px 30px 0px;
}
.feedback__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feedback__form_input {
  width: 290px;
  height: 60px;
}
@media (max-width: 340px) {
  .feedback__form_input {
    width: 260px;
    height: 60px;
  }
}
.feedback__form_input {
  margin: 0 30px 0 0;
}
.feedback__form_input input::-webkit-input-placeholder {
  font-size: var(--fontsize3);
}
.feedback__form_input input::-moz-placeholder {
  font-size: var(--fontsize3);
}
.feedback__form_input input:-ms-input-placeholder {
  font-size: var(--fontsize3);
}
.feedback__form_input input::-ms-input-placeholder {
  font-size: var(--fontsize3);
}
.feedback__form_input input::placeholder {
  font-size: var(--fontsize3);
}
.feedback__form_input input:focus::-webkit-input-placeholder {
  color: transparent;
}
.feedback__form_input input:focus::-moz-placeholder {
  color: transparent;
}
.feedback__form_input input:focus:-ms-input-placeholder {
  color: transparent;
}
.feedback__form_input input:focus::-ms-input-placeholder {
  color: transparent;
}
.feedback__form_input input:focus::placeholder {
  color: transparent;
}
.feedback__form_btn {
  width: 200px;
  height: 60px;
  background: #dd3ccd;
  font-weight: bold;
  font-size: var(--fontsize3);
  text-align: center;
  line-height: 60px;
  color: #ffffff;
}
.feedback__form_btn:hover {
  background: #5f1d58;
}
@media (max-width: 980px) {
  .feedback__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feedback__form_input {
    margin: 0 0 30px 0;
  }
}

.footer {
  background: #444447;
  padding: 0 20px;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.33%;
          flex: 0 1 33.33%;
}

.footer__column_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__column_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer__title {
  color: #fff;
}

.footer__github {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-decoration: none;
}

.logo {
  width: 50px;
}

.logo img {
  width: 100%;
}

.github__logo {
  width: 50px;
  margin: 0 10px 0 0;
}

.github__logo img {
  width: 100%;
}