body {
  font-family: 'Raleway', sans-serif;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* Header */

.header {
  display: flex;
  padding: 3.125vw 4.6875vw;
  height: 20.3125vw;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}

.header__logo_link {
  display: inline-block;
  padding: 10px;
  font-size: 0;
}

.header__logo_img {
  width: 31.09375vw;
  display: inline-block;
}

.header__menu_mobile--open {
  padding: 10px;
  position: relative;
  top: -1.09375vw;
  left: -2.8125vw;
}

.header__menu_mobile--open .header__menu_mobile_icon {
  display: inline-block;
  width: 6.71875vw;
  height: 5.15625vw;
  background: transparent url('../img/burger.png') no-repeat center/cover;
}

.header--green .header__menu_mobile--open .header__menu_mobile_icon {
  background: transparent url('../img/burger-green.png') no-repeat center/cover;
}

.core__menu--mobile {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  left: -100vw;
  background-color: #fff;
  transition: transform 0.5s;
}

.core__menu--mobile--open {
  transform: translateX(100vw);
}

.core__menu_layer {
  height: 100%;
}

.core__menu_layer_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  box-sizing: border-box;
  padding: 21.875vw 0 10px;
}

.core__menu_level1_link {
  text-decoration: none;
  font-size: 16px;
  padding: 12px;
  box-sizing: border-box;
  text-align: center;
  color: #023d24;
  width: 100%;
  border-bottom: 1px solid #cbcbcb;
  font-weight: 600;
}

.core__menu_level1_link:first-of-type {
  border-top: 1px solid #cbcbcb;
}

.core__menu_level2_link {
  text-decoration: none;
  font-size: 16px;
  padding: 12px;
  box-sizing: border-box;
  text-align: center;
  color: #023d24;
  width: 100%;
  border-bottom: 1px solid #cbcbcb;
  font-weight: 600;
}

.core__menu_layer_content .core__menu_level2_link:first-of-type {
  border-top: 1px solid #cbcbcb;
}

.core__menu_layer--close {
  position: absolute;
  top: 7.8125vw;
  right: 7.8125vw;
  padding: 10px;
}

.core__menu_layer--close .header__menu_mobile_icon {
  display: inline-block;
  width: 5.46875vw;
  height: 5.46875vw;
  background: transparent url('../img/menu-cross.png') no-repeat center/cover;
}

.core__menu_layer--main-layer {
  z-index: 10;
  transition: opacity 0.5s;
  padding: 35px;
}

.core__menu_layer--main-layer-hide > * {
  opacity: 0;
}

.core__menu_layer--layer {
  z-index: 20;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  left: -100vw;
  background-color: #fff;
  transition: transform 0.5s;
}

.core__menu_layer--layer-active {
  transform: translateX(100vw);
}

.core__menu_layer--back {
  position: absolute;
  top: 7.8125vw;
  left: 6.71875vw;
  padding: 10px;
  z-index: 10;
}

.core__menu_layer--back .header__menu_mobile_icon {
  display: inline-block;
  width: 7.34375vw;
  height: 5.46875vw;
  background: transparent url('../img/arrow-menu-mobile-hover.png') no-repeat center/cover;
}

.core__menu_layer_content_title {
  position: absolute;
  top: 13.75vw;
  left: 0;
  padding: 0 18.75vw;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  color: #023d24;
}

.core__menu_layer--layer[data-layer="3"] .core__menu_layer_content {
  padding-left: 35px;
  padding-right: 35px;
}

.core__menu_layer--layer[data-layer="4"] .core__menu_layer_product {
  height: 30%;
  width: 120px;
}

.core__menu_layer--layer[data-layer="4"] .core__menu_layer_product > a {
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  color: #003e22;
  font-family: 'Univers LT Std';
  font-weight: bold;
  text-align: center;
  display: inline-block;
  padding-top: 135px;
  width: 100%;
}

.core__menu_layer--layer[data-layer="4"] .core__menu_layer_product:nth-of-type(1) {
  background: transparent url('../img/green.png') no-repeat top -29px center/100%;
}

.core__menu_layer--layer[data-layer="4"] .core__menu_layer_product:nth-of-type(2) {
  background: transparent url('../img/red.png') no-repeat top -19px center/100%;
}

.core__menu_layer--layer[data-layer="4"] .core__menu_layer_product:nth-of-type(2) a {
  padding-top: 159px;
}

.core__menu_layer--layer[data-layer="4"] .core__menu_layer_product:nth-of-type(3) {
  background: transparent url('../img/yellow.png') no-repeat top 20px center/100%;
}

.core__menu_layer--layer[data-layer="4"] .core__menu_layer_product:nth-of-type(3) a {
  padding-top: 182px;
}

@media (min-width: 640px) {
  .header {
    padding: 20px 30px;
    height: 130px;
  }

  .header__logo_img {
    width: 199px;
  }

  .header__menu_mobile--open {
    top: -7px;
    left: -18px;
  }

  .header__menu_mobile--open .header__menu_mobile_icon {
    width: 43px;
    height: 33px;
  }
}

@media (min-width: 769px) {
  .header {
    max-width: 1675px;
    margin: 0 auto;
    padding: 30px 30px;
    align-items: start;
  }

  .header__logo_img {
    width: 190px;
  }

  .core__menu.is--desktop {
    padding-top: 33px;
  }

  .core__menu_level1 {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .core__menu_level1_item {
    display: inline-block;
    padding-left: 0;
  }

  .core__menu_level1_link {
    color: #fff;
    text-decoration: none;
    font-size: 1.642857vw;
    font-weight: 600;
    padding: 0 2.14285vw 0 0;
    border: 0;
    background: transparent url('../img/arrow-menu.png') no-repeat top 0.85714vw right 0.71428vw;
  }

  .core__menu_level1_link:first-of-type {
    border: 0;
  }

  .header--green .core__menu_level1_link {
    color: #023d24;
    background: transparent url('../img/arrow-menu-green.png') no-repeat top 9px right 10px;
  }

  .core__menu_desktop {
    position: absolute;
    top: 87px;
    left: 30px;
    right: 30px;
    display: none;
    transition: all 0.5s;
    padding-top: 135px;
  }

  .core__menu_desktop--visible {
    display: block;
  }

  .core__menu_desktop_inner {
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 83px 60px 60px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    font-size: 19px;
    line-height: 26px;
    font-family: 'Univers LT Std';
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
  }

  .core__menu_products {
    height: 400px;
  }

  .core__menu_products .core__menu_desktop--inner {
    height: 150px;
  }

  .core__menu_level1_link--hover {
    padding-bottom: 140px;
    background-image: url('../img/menu-d.png');
    background-position: bottom center!important;
  }

  .core__menu_product {
    height: 100%;
    width: 200px;
    box-sizing: border-box;
    margin: 0 44px;
  }

  .core__menu_product a {
    padding-top: 205px;
    display: inline-block;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    color: #003e22;
    text-decoration: none;
  }

  .core__menu_product:nth-of-type(1) a {
    background: transparent url('../img/green-d.png') no-repeat top center;
  }

  .core__menu_product:nth-of-type(2) a {
    background: transparent url('../img/red-d.png') no-repeat top center;
  }

  .core__menu_product:nth-of-type(3) a {
    background: transparent url('../img/yellow-d.png') no-repeat top center;
  }

  .core__menu_undertaking {
    width: 200px;
    box-sizing: border-box;
    margin: 0 44px;
  }

  .core__menu_undertaking a {
    padding: 20px;
    display: inline-block;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    color: #003e22;
    text-decoration: none;
  }
}

@media ( min-width: 1200px) {
  .header {
    padding: 55px 30px;
  }

  .header__logo_img {
    width: 216px;
  }

  .core__menu.is--desktop {
    padding-top: 24px;
  }

  .core__menu_level1_item {
    padding-left: 20px;
  }

  .core__menu_level1_link {
    font-size: 23px;
    padding-right: 30px;
  }

  .core__menu_desktop {
    position: absolute;
    top: 110px;
  }
}

@media (min-width: 1400px) {
  .core__menu_level1_item {
    font-size: 23px;
    background-position: top 12px right 10px;
  }
}

@media (min-width: 1470px) {
  .core__menu_level1_item {
    padding-left: 40px;
  }
}

/* Footer */

.core__footer {
  text-align: center;
}

.footer__grey {
  background-color: #ededed;
  -webkit-clip-path: polygon(0 4.6875vw, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 4.6875vw, 100% 0, 100% 100%, 0% 100%);
  padding-top: 5.625vw;
  margin-top: -7vw;
}

.core__footer1 {
  padding-top: 7.8125vw;
  padding-bottom: 8.59375vw;
  border-bottom: 2px solid #cacaca;
}

.core__footer1_title {
  text-transform: uppercase;
  margin-bottom: 3.4375vw;
}

.core__footer1_list {
  list-style: none;
  padding-top: 3.4375vw;
}

.core__footer1_list_item {
  display: none;
  width: 100%;
}
/*.core__footer1_list--open .core__footer1_list_item { width: 100%; display: inline-block; }*/
.core__footer1_link {
  text-decoration: none;
  color: #003E2B;
  font-size: 4.0625vw;
  font-size: 300;
}

.core__footer1_title .core__footer1_link {
  font-weight: 700;
  padding-right: 12.5vw;
  background-size: 3.125vw;
  background: transparent url('../img/footer-arrow-m.png') no-repeat center right 6.25vw;
}

.core__footer1_list_item .core__footer1_link {
  padding-right: 7.5vw;
}

.core__footer2 {
  padding-top: 11.5625vw;
  padding-bottom: 15vw;
}

.footer__links {
  margin-bottom: 9.375vw;
}

.footer__link {
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 3.75vw;
  margin-bottom: 5vw;
  color: #003E2B;
}

.footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 7.8125vw;
}

.footer__logo_link {
  position: relative;
  padding: 0 21.5px 0 21px;
}

.footer__logo_link:first-of-type:after {
  content: '';
  position: absolute;
  right: -1px;
  top: 11px;
  bottom: 10px;
  border-left: 1px solid #ECECEC;
  border-right: 1px solid #ccc;
  width: 0;
}

.footer__logo1 {
  width: 85px;
}

.footer__logo2 {
  width: 165px;
}

.footer__socials {
  display: flex;
  justify-content: center;
}

.footer__social {
  width: 45.6px;
  height: 43.8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  margin: 0 15px;
}

.footer__social_facebook {
  background-image: url('../img/footer-logo-facebook-m.png');
}

.footer__social_twitter {
  background-image: url('../img/footer-logo-twitter-m.png');
}

.footer__social_instagram {
  background-image: url('../img/footer-logo-instagram-m.png');
}

@media (min-width: 395px) {

  .footer__logos {
    padding-bottom: 12.5vw;
  }

  .footer__logo_link {
    padding: 0 5.46875vw 0 5.3125vw;
  }

  .footer__logo_link:first-of-type:after {
    top: 2.8125vw;
    bottom: 2.5vw;
  }

  .footer__logo1 {
    width: 21.40625vw;
  }

  .footer__logo2 {
    width: 41.71875vw;
  }

  .footer__social {
    width: 11.5625vw;
    height: 11.09375vw;
    margin: 0 3.75vw;
  }
}

@media (min-width: 640px) {
  .core__footer1 {
    padding-top: 50px;
    padding-bottom: 55px;
  }

  .core__footer1_list {
    padding-top: 22px;
  }

  .core__footer1_link {
    font-size: 26px;
    padding-right: 80px;
    background-position: center right 40px;
    background-size: 20px;
  }

  .core__footer2 {
    padding-top: 74px;
  }

  .footer__links {
    margin-bottom: 60px;
  }

  .footer__link {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .footer__logos {
    padding-bottom: 76px;
  }
}

@media (min-width: 769px) {
  .footer__grey {
    padding-top: 2.2916vw;
    margin-top: -5vw;
  }

  .core__footer1 {
    max-width: 1380px;
    margin: 0 auto;
    color: #023d24;
    padding: 7.64583vw 20px 48px;
    display: flex;
    text-align: left;
    border-bottom: 0;
  }

  .core__footer1 > ul {
    margin: 0;
    padding: 0 0.75%;
    box-sizing: border-box;
  }

  .core__footer1_list li {
    width: 100%;
    display: inline-block;
  }

  .core__footer1_list:nth-of-type(1) {
    width: 23.5%;
  }

  .core__footer1_list:nth-of-type(2) {
    width: 30%;
  }

  .core__footer1_list:nth-of-type(3) {
    width: 33%;
  }

  .core__footer1_list:nth-of-type(4) {
    width: 13.5%;
  }

  .core__footer1_title {
    margin-bottom: 14px;
  }

  .core__footer1_title > .core__footer1_link {
    font-size: 20px;
    line-height: 24px;
  }

  .core__footer1_list_item {
    margin-bottom: 13px;
  }

  .core__footer1_list_item > .core__footer1_link {
    font-weight: 300;
    font-size: 18px;
    padding-right: 0;
  }

  .core__footer1_title .core__footer1_link {
    background: none;
    padding: 0;
  }

  .core__footer2 {
    border-top: 1px solid #cbcbcb;
    max-width: 1380px;
    margin: 0 auto;
    padding: 74px 0 0;
    display: flex;
  }

  .core__footer2--no-border {
    border-top: 0;
  }

  .footer__links {
    width: 25%;
    text-align: left;
    padding-left: 10px;
    box-sizing: border-box;
  }

  .footer__link {
    font-size: 14px;
    margin-bottom: 11px;
  }

  .footer__logos {
    width: 50%;
    flex-direction: column;
    align-items: center;
  }

  .footer__logo1 {
    width: 119px;
  }

  .footer__logo_link:first-of-type::after {
    display: none;
  }

  .footer__logo_link:nth-of-type(1) {
    margin-bottom: 20px;
  }

  .footer__logo2 {
    width: 281px;
  }

  .footer__socials {
    width: 25%;
    justify-content: flex-end;
    padding-top: 19px;
    padding-right: 10px;
    box-sizing: border-box;
  }

  .footer__social {
    width: 33px;
    height: 33px;
    margin: 0 0 0 22px;
  }
}

@media (min-width: 1080px) {
  .core__footer1_title {
    margin-bottom: 16px;
  }

  .core__footer1_title > .core__footer1_link {
    font-size: 22px;
    line-height: 26px;
  }

  .core__footer1_list_item {
    margin-bottom: 15px;
  }

  .core__footer1_list_item > .core__footer1_link {
    font-size: 20px;
  }

  .footer__logos {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer__logo_link:first-of-type::after {
    top: 4px;
    bottom: 3px;
    border-left: 0;
    border-right: 1px solid #cbcbcb;
    right: 4px;
  }

  .footer__logo_link:first-of-type::after {
    display: inline-block;
  }

  .footer__logo_link:nth-of-type(1) {
    padding: 0 53px 0 0px;
    margin-bottom: 0;
  }

  .footer__logo_link:nth-of-type(2) {
    padding: 5px 26px 0 32px;
  }
}

@media (min-width: 1340px) {
  .core__footer1_title {
    margin-bottom: 18px;
  }

  .core__footer1_title > .core__footer1_link {
    font-size: 24px;
    line-height: 28px;
  }

  .core__footer1_list_item {
    margin-bottom: 17px;
  }

  .core__footer1_list_item > .core__footer1_link {
    font-size: 22px;
  }
}