/* roboto-300 - cyrillic */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/roboto-v30-cyrillic-300.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+ */
      url("../fonts/roboto-v30-cyrillic-300.woff") format("woff");
  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-regular - cyrillic */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v30-cyrillic-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+ */
      url("../fonts/roboto-v30-cyrillic-regular.woff") format("woff");
  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-700 - cyrillic */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v30-cyrillic-700.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+ */
      url("../fonts/roboto-v30-cyrillic-700.woff") format("woff");
  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: "Roboto";
  font-style: normal;
  font-size: 16px;
  line-height: 1.2;
  font-weight: normal;
  color: #333232;
  background-color: #ffffff;
}

.wrapper {
  max-width: 1328px;
  margin: 0 auto;
  /*позицииноривание по центру*/
}
.header {
  position: fixed;
  background-color: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.pinkrectangle {
  background-color: #ffffef;

  width: 100%;
  height: 16px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.header_wrapper {
  display: flex;
  flex-wrap: wrap;
  padding-top: 13px;
  padding-left: 3%;
  padding-bottom: 12px;
  text-transform: uppercase;
  line-height: 158%;
  justify-content:space-between;
  letter-spacing: 1.575px;

  color: #56593d;
}

.header_list {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  font-weight: 300;
  transition: all 0.3s ease;
}

.header_item {
  margin-left: 0;
  margin-right: 40px;
}

.header_item:last-child {
  margin-right: 0;
}

*:link{
  text-decoration: none
}


/*footer*/
.container {
  max-width: 100%;
  margin: 0 auto;
  bottom: 0;
  
}
.row {
  display: flex;
  flex-wrap: wrap;
  
  bottom: 0;
  justify-content: space-evenly;
}

.footer {
  background-color: #717353;
  padding: 50px;
}
.footer-col {
  width: 25%;
  padding: 0 5px;
  
}
.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-first-col {
  width: 256px;
  right: 40px;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  background-color: #ffffef;
  height: 1px;
  box-sizing: border-box;
  width: 40px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col ul li{
  color:#ffffff;
}

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}


.element-animation {
  /* Скроем элемент в начальном состоянии */
  opacity: 0;
  transform: translateY(20px);
}

.element-animation.element-show {
  opacity: 1;
  transition: all 1s;
  transform: translateY(0%);
}
