html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 640px) {
  html {
    overflow-x: hidden;
  }
}

:root {
  --color-raisen-black: #211D22;
  --color-fedora: #706970;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-orange: #F06C38;
  --color-light-grey: #F2F3F5;
  --color-geyser: #DBE0E3;
}

body {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  font-size: 14px;
  line-height: 1.3;
  background-color: var(--color-white);
  font-family: 'BodyReg', 'Open Sans', sans-serif;
}
body.active-modal {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
body.active-overlay:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  outline: 0;
}

input, textarea {
  border-radius: 0;
}



/*------------------------------------*\
  # CMS-STYLING-TABS
\*------------------------------------*/
.path-user .block-local-tasks-block .tabs {
  margin-top: 60px;
}
.block-local-tasks-block .tabs {
  background-color: transparent;
}

.block-local-tasks-block .tabs.primary {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.block-local-tasks-block .tabs.primary li {
  text-align: center;
  font-size: 16px;
  padding: 15px 30px;
  background-color: #007c81;
  border: 1px solid #41a89e;
}
@media (max-width: 960px)   {
  .block-local-tasks-block .tabs.primary li {
    width: 80%;
  }
}

.block-local-tasks-block .tabs.primary li a {
  color: #ffffff;
}

.block-local-tasks-block .tabs.primary li.is-active {
  background-color: #fff;
}

.block-local-tasks-block .tabs.primary li.is-active a {
  color: #007c81;
}

/*------------------------------------*\
  # Layout
\*------------------------------------*/
.outer-container  {
  width: 100%;
}
.inner-container  {
  width: 83.33%;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 1200px) {
  .inner-container {
    width: 90%;
  }

}

.TitleReg {
  font-family: 'TitleReg', 'Open Sans', sans-serif;
}
.TitleBold {
  font-family: 'TitleBold', 'Open Sans', sans-serif;
}
.BodyReg {
  font-family: 'BodyReg', 'Open Sans', sans-serif;
}
.BodyBold {
  font-family: 'BodyBold', 'Open Sans', sans-serif;
}
.size-12  {
  font-size: 12px;
}
.size-13  {
  font-size: 13px;
}
.size-14  {
  font-size: 14px;
}
.size-15  {
  font-size: 15px;
}
.size-16  {
  font-size: 16px;
}
.size-17  {
  font-size: 17px;
}
.size-18  {
  font-size: 18px;
}
.size-19  {
  font-size: 19px;
}
.size-20  {
  font-size: 20px;
}
.size-22  {
  font-size: 22px;
}
.size-24  {
  font-size: 24px;
}
.size-25  {
  font-size: 25px;
}
.size-26  {
  font-size: 26px;
}
.size-28  {
  font-size: 28px;
}
.size-30  {
  font-size: 30px;
}
.size-32  {
  font-size: 32px;
}
.size-34  {
  font-size: 34px;
}
.size-36  {
  font-size: 36px;
}
.size-40  {
  font-size: 40px;
}
.size-42  {
  font-size: 42px;
}
.size-48  {
  font-size: 48px;
}
.size-52  {
  font-size: 52px;
}

@media (max-width: 1280px){
  .size-12  {
    font-size: 12px;
  }
  .size-13  {
    font-size: 13px;
  }
  .size-14  {
    font-size: 14px;
  }
  .size-15  {
    font-size: 15px;
  }
  .size-16  {
    font-size: 16px;
  }
  .size-17  {
    font-size: 17px;
  }
  .size-18  {
    font-size: 18px;
  }
  .size-19  {
    font-size: 19px;
  }
  .size-20  {
    font-size: 20px;
  }
  .size-22  {
    font-size: 22px;
  }
  .size-24  {
    font-size: 24px;
  }
  .size-25  {
    font-size: 25px;
  }
  .size-26  {
    font-size: 25px;
  }
  .size-28  {
    font-size: 27px;
  }
  .size-30  {
    font-size: 28px;
  }
  .size-32  {
    font-size: 29px;
  }
  .size-34  {
    font-size: 30px;
  }
  .size-36  {
    font-size: 31px;
  }
  .size-40  {
    font-size: 34px;
  }
  .size-42  {
    font-size: 36px;
  }
  .size-48  {
    font-size: 40px;
  }
  .size-52  {
    font-size: 52px;
  }
}
.color-orange {
  color: var(--color-orange);
}
.color-white {
  color: var(--color-white);
}
.color-black {
  color: var(--color-black);
}
.color-raisen-black {
  color: var(--color-raisen-black);
}
.color-fedora {
  color: var(--color-fedora);
}
.color-light-grey {
  color: var(--color-light-grey);
}

.blurry-background  {
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  display: block;
}
.blurry-background.hidden   {
  display: none;
}

.hide-desktop {
  display: none;
}
@media (max-width: 960px){
  .hide-mobile  {
    display: none;
  }
}

.direction-ltr  {
  direction: ltr;
}

/*------------------------------------*\
  # Header
\*------------------------------------*/
#header   {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  overflow: inherit;
  z-index: 10;
  height: 110px;
}
.header-container {
  display: flex;
  height: 110px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
}
.mobile-header-container  {
  display: none;
}

/** LOGO **/
.header-logo  {
  width: 157px;
  height: 175px;
  background: #FFFFFF;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s linear;
}
.logo-wrapper {
  width: 95px;
  height: 118px;
  transition: 1s linear;
}
.logo-wrapper img {
  width: 100%;
  height: auto;
  transition: 1s linear;
}

/** Sticky Headers **/
.sticky .header-logo  {
  width: 99px;
  height: 110px;
}
.sticky .logo-wrapper {
  width: 90px;
  height: 110px;
}
.sticky .logo-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90%;
  padding: 5%;
}


.header-menus {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/** HEADER TOP MENU **/
.header-menus__top  {
  height: 40px;
  background: #211D22;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-menus__top-menu ul {
  display: flex;
}
.header-menus__top-menu ul li {
  margin-left: 31px;
}
[dir="rtl"] .header-menus__top-menu ul li {
  margin-right: 31px;
  margin-left: 0;
}
.header-menus__top-menu ul li a {
  color: #ffffff;
}
.header-menus__top-menu ul li a:hover,
.header-menus__top-menu ul li a.is-active {
  color: var(--color-orange);
}

/** HEADER BOOTOM MENU **/
.header_menus__bottom {
  height: 70px;
  background: #FFFFFF;
  border: 1px solid #E8E8E9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_menus__bottom .main-menu {
  display: flex;
  height: 100%;
  flex: 1;
}
.header_menus__bottom .main-menu li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.header_menus__bottom .main-menu li:after {
  content: '';
  height: 20px;
  width: 1px;
  background-color: #E8E8E9;
  margin: 0 32px;
}
@media (max-width: 1280px){
  .header_menus__bottom .main-menu li:after {
    margin: 0 15px;
  }
  }
  @media (max-width: 1150px){
    .header_menus__bottom .main-menu li:after {
      margin: 0 10px;
    }
  }
  .header_menus__bottom .main-menu li:first-child {
  margin-left: 31px;
}
[dir="rtl"] .header_menus__bottom .main-menu li:first-child {
  margin-right: 31px;
  margin-left: 0;
}
/*.header_menus__bottom .main-menu li:last-child:after {
  content: none;
}*/
.header_menus__bottom .main-menu li a,
.header_menus__bottom .main-menu li span {
  color: #221E23;
  cursor: pointer;
}
.header_menus__bottom .main-menu li a:hover,
.header_menus__bottom .main-menu li span:hover,
.header_menus__bottom .main-menu li.menu-item--active-trail > a,
.header_menus__bottom .main-menu li.menu-item--active-trail > span  {
  text-shadow: 0.5px 0px 0px #221E23;
}
.header_menus__bottom .main-menu li ul  {
  display: none;
  position: absolute;
  top: 100%;
  min-width: max-content;
  flex-direction: column;
  z-index: 100;
  background: #f4f4f4;
  padding: 20px;
  border: 1px solid var(--color-geyser);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  box-sizing: border-box;
}
.header_menus__bottom .main-menu li ul li,
.header_menus__bottom .main-menu li ul li:first-child {
  padding: 0;
  margin: 10px 0;
  width: 100%;
}
[dir="rtl"] .header_menus__bottom .main-menu li ul li,
[dir="rtl"] .header_menus__bottom .main-menu li ul li:first-child {
  margin: 10px 0;
}
.header_menus__bottom .main-menu li ul li:after {
  content: none;
}
.header_menus__bottom .main-menu li:hover ul  {
  display: flex;
}
.header_menus__bottom .main-menu .app-selector-link {
  margin-left: auto;
  margin-right: 50px;
}
[dir="rtl"] .header_menus__bottom .main-menu .app-selector-link {
  margin-left: 50px;
  margin-right: auto;
}
.header_menus__bottom .main-menu .app-selector-link:after {
  content: none;
}
.header_menus__bottom .main-menu .app-selector-link a {
  display: flex;
  align-items: center;
}
.header_menus__bottom .main-menu .app-selector-link a:after {
  content: '';
  width: 38px;
  height: 38px;
  background-color: var(--color-orange);
  background-image: url('../images/icons/arrow_white.png');
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  margin: 0 0 0 10px;
}
[dir="rtl"] .header_menus__bottom .main-menu .app-selector-link a:after {
  transform: rotate(180deg);
  margin: 0 10px 0 0;
}
.header_menus__bottom .main-menu .app-selector-link a:hover:after {
  box-shadow: 0px 10px 20px rgba(240, 108, 56, 0.63);
}

/** CHANGE COUNTRY MENU **/
.header-menus__country-language {
  display: flex;
  margin-right: 31px;
}

.change-country-menu  {
  margin-right: 50px;
  position: relative;
}
[dir="rtl"] .change-country-menu    {
  margin-right: 0;
  margin-left: 50px;
}
.change-country-menu--active  {
  display: flex;
  cursor: pointer;
  align-items: center;
}
.change-country-menu--active__name  {
  color: #ffffff;
}
.change-country-menu--active__icon  {
  width: 18px;
  height: 18px;
  background-image: url('../images/icons/location_white.png');
  margin: 0 3px;
}
.change-country-menu--active:hover .change-country-menu--active__name {
  color: var(--color-orange);
}
.header-menus .change-country-menu--active:hover .change-country-menu--active__icon {
  background-image: url('../images/icons/location_orange.png');
}
.change-country-menu--list-container  {
  padding: 20px;
  border: 1px solid var(--color-geyser);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198),
    0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035),
    0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  box-sizing: border-box;
  display: block;
  position: absolute;
  background: #f4f4f4;
  z-index: 100;
  right: 0;
  top: 30px;
  width: 160px;
}
[dir="rtl"] .change-country-menu--list-container {
  right: auto;
  left: 0;
}
.change-country-menu--list-container.hidden {
  display: none;
}
.change-country-menu--list li {
  margin-bottom: 16px;
}
.change-country-menu--list li:last-child  {
  margin: 0;
}
.change-country-menu--list li a {
  color: #332934;
}
.change-country-menu--list li a:hover {
  color: var(--color-orange);
}

@media (max-width: 960px) {
  .change-country-menu--list-container  {
    position: absolute;
    background: white;
    border: 0;
    width: auto;
    min-width: 150px;
    left: -5px;
    top: 40px;
    height: max-content;
  }
}

/** CHANGE LANGUAGE MENU **/
.change-language-menu  {
  position: relative;
}
.change-language-menu--active  {
  display: flex;
  cursor: pointer;
  align-items: center;
}
.change-language-menu--active__name  {
  color: #ffffff;
}
.change-language-menu--active__icon  {
  width: 16px;
  height: 16px;
  background-image: url('../images/icons/language_white.png');
  margin: 0 3px;
}
.change-language-menu--active:hover .change-language-menu--active__name {
  color: var(--color-orange);
}
.header-menus .change-language-menu--active:hover .change-language-menu--active__icon {
  background-image: url('../images/icons/language_orange.png');
}
.change-language-menu--list-container  {
  padding: 20px;
  border: 1px solid var(--color-geyser);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198),
    0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035),
    0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  box-sizing: border-box;
  display: block;
  position: absolute;
  background: #f4f4f4;
  z-index: 100;
  right: 0;
  top: 30px;
  width: 100px;
}
[dir="rtl"] .change-language-menu--list-container {
  right: auto;
  left: 0;
}
.change-language-menu--list-container.hidden {
  display: none;
}
.change-language-menu--list li {
  margin-bottom: 16px;
}
.change-language-menu--list li:last-child  {
  margin: 0;
}
.change-language-menu--list li a {
  color: #332934;
}
.change-language-menu--list li a:hover {
  color: var(--color-orange);
}

@media (max-width: 960px) {
  .change-language-menu--list-container  {
    position: absolute;
    background: white;
    border: 0;
    top: 40px;
    left: -2px;
    min-width: 100px;
    max-width: 100px;
  }
}

/** SEARCH BUTTON **/
.header-search-button-container {
  width: 70px;
  height: 70px;
  background-color: var(--color-orange);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.header-search-button-container:hover {
  box-shadow: 0px 10px 20px rgba(240, 108, 56, 0.63);
}
.header-search-button-container .search-button  {
  width: 23px;
  height: 23px;
  background-image: url('../images/icons/search_white.png');
  background-repeat: no-repeat;
}

/** HEADER SEARCH FORM AND CONTAINER **/
.header-search-form-container  {
  position: fixed;
  top: 150px;
  left: 0;
  width: 100%;
  z-index: 10001;
}
.header-search-form-wrapper  {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  height: 62px;
}
.search-form-block-wrapper  {
  width: 100%;
  height: 100%;
}
.search-form  {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  background: #FFFFFF;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  box-sizing: border-box;
  height: 100%;
}
.search-form .search-field__keywords {
  flex: 1;
  display: flex;
}
.search-form .search-field__keywords .form-item  {
  flex: 1;
  display: flex;
}
.search-form .search-field__keywords .form-item input  {
  flex: 1;
  padding: 0 10px;
  border: none;
  height: 100%;
}
.search-form__close {
  height: 62px;
  width: 62px;
  background-image: url('../images/icons/close_grey.png');
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.search-form__close:hover {
  background-image: url('../images/icons/close_white.png');
  background-color: var(--color-orange);
  box-shadow: 0px 10px 20px rgba(240, 108, 56, 0.63);
}
.search-form .form-actions  {
  width: 62px;
  height: 62px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-form .form-actions input {
  text-indent: -9999px;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  background-image: url('../images/icons/search_orange.png');
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 960px) {
  .search-form .search-field__keywords .form-item input {
    width: 100%;
  }
}


/** CONTENT SEARCH FORM AND CONTAINER **/
.main-page__header  {
  position: relative;
}
.content-search-form-wrapper  {
  position: absolute;
  bottom: -65px;
  height: 130px;
  width: 100%;
}
.content-search-form-wrapper .content-search-form{
  width: 62.5%;
  margin: 0 auto;
}
.content-search-form-wrapper .search-form-block-wrapper  {
  width: 100%;
  height: 100%;
}
.content-search-form-wrapper .search-form  {
  height: 130px;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
.content-search-form-wrapper .search-form .search-field__keywords {
  height: 49px;
  width: 74.3%;
  flex: none;
}
.content-search-form-wrapper .search-form .search-field__keywords .form-item  {
}
.content-search-form-wrapper .search-form .search-field__keywords .form-item input  {
  border: 1px solid var(--color-geyser);
  width: 100%;
}
.content-search-form-wrapper .search-form .form-actions  {
  width: 49px;
  height: 49px;
  background: var(--color-orange);
}
.content-search-form-wrapper .search-form .form-actions input {
  width: 100%;
  height: 100%;
  background-image: url('../images/icons/search_white.png');
}

@media (max-width: 960px) {
  .content-search-form-wrapper  {
    bottom: -85px;
  }
  .content-search-form-wrapper .content-search-form {
    width: 100%;
  }
  .content-search-form-wrapper .search-form {
    height: 90px;
  }
}


/*------------------------------------*\
  # Mobile Menu
\*------------------------------------*/
@media (max-width: 960px) {
  #header {
    height: 56px;
    background-color: var(--color-white);
  }
  .header-container {
    display: none;
  }
  .mobile-header-container  {
    display: flex;
    justify-content: space-between;
    height: 56px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
  }
  .mobile-logo  {
    width: 95px;
    height: 103px;
    z-index: 10;
    background: var(--color-white);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s linear;
  }
  .logo-wrapper {
    width: 61px;
    height: auto;
  }
  /** Sticky Headers **/
  .sticky .mobile-logo  {
    width: 51px;
    height: 56px;
  }
  .sticky .logo-wrapper {
    width: 51px;
    height: 56px;
    text-align: center;
  }
  .sticky .logo-wrapper img {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    padding: 5%;
  }
  .mobile-icons {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .mobile-icons .change-country-menu  {
    margin: 0;
  }
  .mobile-icons .change-country-menu--active__name  {
    display: none;
  }
  .mobile-icons .change-country-menu--active__icon  {
    width: 22px;
    height: 22px;
    background-image: url(../images/icons/location_orange_1.png);
    background-repeat: no-repeat;
    margin: 0;
  }
  .mobile-icons .change-language-menu--active__name  {
    display: none;
  }
  .mobile-icons .change-language-menu--active__icon  {
    width: 22px;
    height: 22px;
    background-image: url(../images/icons/language_orange_1.png);
    background-repeat: no-repeat;
    margin: 0;
  }
  .header-search-button-container {
    width: 26px;
    height: 26px;
    background-color: transparent;
  }
  .header-search-button-container .search-button {
    width: 26px;
    height: 26px;
    background-image: url(../images/icons/search_orange_1.png);
  }
  .burger-menu-button-container {
    width: 66px;
    height: 56px;
    background-color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .burger-menu  {
    background-image: url(../images/icons/burger-menu_white.png);
    background-repeat: no-repeat;
    width: 26px;
    height: 26px;
  }
  .mobile-menus {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 95px);
    background: var(--color-white);
    height: 100vh;
    overflow: scroll;
  }
  [dir="rtl"] .mobile-menus {
    right: auto;
    left: 0;
  }
  /*  .mobile-menus.active  {
      display: block;
    }*/
.close-menu-button-container {
    width: 66px;
    height: 56px;
    background-color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
  }
  [dir="rtl"] .close-menu-button-container  {
    right: auto;
    left: 0;
  }
  .close-menu  {
    background-image: url(../images/icons/close_white.png);
    background-repeat: no-repeat;
    width: 26px;
    height: 26px;
  }
  .main-menu-wrapper  {
    padding: 90px 40px 40px 40px;
    background: var(--color-white);
  }
  .other-menu-wrapper {
    padding: 50px 40px;
    background: var(--color-black);
  }
  .mobile-menus ul li {
    margin-bottom: 20px;
  }
  .mobile-menus ul li.menu-item--expanded > a,
  .mobile-menus ul li.menu-item--expanded > span {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: center;
  }
  .mobile-menus ul li.menu-item--expanded > a:after,
  .mobile-menus ul li.menu-item--expanded > span:after {
    content: '';
    display: block;
    width: 11px;
    height: 19px;
    background-image: url('../images/icons/next_black.png');
    background-repeat: no-repeat;
    transform: rotate(90deg);
    transition: 1s;
  }
  .mobile-menus ul li.menu-item--expanded.js-open > a:after,
  .mobile-menus ul li.menu-item--expanded.js-open > span:after {
    transform: rotate(270deg);
  }
  .mobile-menus .main-menu-wrapper ul li ul  {
    margin: 20px 0 20px 20px;
    display: none;
  }
  .mobile-menus .main-menu-wrapper ul li.menu-item--expanded.js-open ul {
  }
  [dir="rtl"] .mobile-menus .main-menu-wrapper ul li ul  {
    margin: 20px 20px 20px 0;
  }
  .mobile-menus .main-menu-wrapper ul li a  {
    color: var(--color-raisen-black);
  }
  .mobile-menus .main-menu-wrapper ul li.is-active a,
  .mobile-menus .main-menu-wrapper ul li a.is-active  {
    font-weight: bold;
  }
  .mobile-menus .other-menu-wrapper ul li a  {
    color: var(--color-white);
  }
  .mobile-menus .main-menu .app-selector-link {
    margin-top: 50px;
    display: flex;
    align-items: center;
  }
  .mobile-menus .main-menu .app-selector-link:after {
    content: '';
    width: 38px;
    height: 38px;
    background-color: var(--color-orange);
    background-image: url('../images/icons/arrow_white.png');
    background-repeat: no-repeat;
    background-position: center center;
    display: inline-block;
    margin: 0 0 0 10px;
  }
  [dir="rtl"] .mobile-menus .main-menu .app-selector-link:after {
    margin: 0 10px 0 0;
    transform: rotate(180deg);
  }
  .mobile-menus .main-menu .app-selector-link:hover:after {
    box-shadow: 0px 10px 20px rgba(240, 108, 56, 0.63);
  }
}



/*------------------------------------*\
  # General Elements
\*------------------------------------*/
.full-width-image {
  width: 100%;
}
.full-width-image .image-container  {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-height: 968px;
  width: 100%;
}
.full-width-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
}
.rectangle-80 {
  padding-left: 23px;
  position: relative;
}
[dir="rtl"]  .rectangle-80  {
  padding-left: 0;
  padding-right: 23px;
}
.rectangle-80:before  {
  content: '';
  display: inline-block;
  width: 13px;
  height: 27px;
  background-color: var(--color-orange);
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 11px;
}
[dir="rtl"]  .rectangle-80:before  {
  left: auto;
  right: 0;
  margin-left: 10px;
  margin-right: 0;
}
.rectangle-122 {
  padding-left: 23px;
  position: relative;
}
[dir="rtl"]  .rectangle-122  {
  padding-left: 0;
  padding-right: 23px;
}
.rectangle-122:before  {
  content: '';
  display: inline-block;
  width: 13px;
  height: 27px;
  background-color: var(--color-orange);
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 9px;
}
[dir="rtl"]  .rectangle-122:before  {
  left: auto;
  right: 0;
  margin-left: 10px;
  margin-right: 0;
}
.rectangle-133  {
  position: relative;
  padding-left: 23px;
}
[dir="rtl"]  .rectangle-133  {
  padding-left: 0;
  padding-right: 23px;
}
.rectangle-133:before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 27px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: 12px;
}
[dir="rtl"]  .rectangle-133:before  {
  left: auto;
  right: 0;
}
.rectangle-123  {
  position: relative;
  padding-left: 28px;
}
[dir="rtl"]  .rectangle-123  {
  padding-left: 0;
  padding-right: 28px;
}
.rectangle-123:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 32px;
  background-color: var(--color-orange);
  position: absolute;
  left: 0;
  top: 14px;
}
[dir="rtl"]  .rectangle-123:before  {
  left: auto;
  right: 0;
}
@media (max-width: 960px) {
  .rectangle-123:before {
    top: 10px;
    height: 28px;
  }
  .rectangle-80:before  {
    height: 25px;
    top: 10px;
  }
  .rectangle-122:before  {
    height: 22px;
  }
  .rectangle-133:before {
    top: 10px;
    height: 25px;
  }
}

.link-with-arrow  {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.link-arrow {
  display: inline-block;
  width: 38px;
  height: 38px;
  background-repeat: no-repeat;
  background-position: center center;
}
.link-arrow__white  {
  background-color: var(--color-white);
  background-image: url(../images/icons/arrow_black.png);
}
.link-with-arrow:hover .link-arrow__white {
  background-color: var(--color-orange);
  background-image: url(../images/icons/arrow_white.png);
  box-shadow: 0px 10px 20px rgba(240, 108, 56, 0.63);
}


.button-link__orange  {
}
.button-link__orange a  {
  color: #ffffff;
  background: var(--color-orange);
  border: 1.5px solid var(--color-orange);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: fit-content;
  padding: 0 58px;
  text-transform: uppercase;
}
.button-link__orange a:hover  {
  box-shadow: 0px 10px 20px rgba(240, 108, 56, 0.63);
}
.slider-arrows  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 42px;
}
.slider-arrows .slick-arrow  {
  width: 11px;
  height: 19px;
  display: inline-block;
  background-color: transparent;
  background-image: url('../images/icons/next_black.png');
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
  border: none;
  overflow: hidden;
}
[dir="rtl"] .slider-arrows .slick-arrow {
  transform: rotate(180deg);
}
.slider-arrows .slick-arrow:hover {
  background-image: url('../images/icons/next_orange.png');
}
.slick-arrow.slick-prev  {
  transform: rotate(180deg);
}
[dir="rtl"] .slick-arrow.slick-prev  {
  transform: rotate(0);
}
@media (max-width: 960px) {
  .slider-arrows  {
    width: fit-content;
  }
  .slider-arrows .slick-arrow.slick-next {
    margin-left: 20px;
  }
  [dir="rtl"] .slider-arrows .slick-arrow.slick-next {
    margin-right: 20px;
    margin-left: 0;
  }
}

.main-page__header  {
  padding: 100px 0;
  background: var(--color-light-grey);
}
.main-page__header-content  {
  max-width: 62.5%;
  margin: 0 auto;
}
.main-page__header-content.center  {
  max-width: fit-content;
  margin: 0 auto;
}
.main-page-title  {
  margin-bottom: 30px;
  position: relative;
}
.main-page-title.center{
  text-align: center;
}
.main-page-description {
  color: var(--color-fedora);
  line-height: 29px;
  padding: 0 28px;
}
.main-page-description p    {
  margin-bottom: 30px;
}
.main-page-description p:last-child {
  margin-bottom: 0;
}

.mobile-container {
  display: none;
}
.hide-mobile  {

}
@media (max-width: 960px){
  .mobile-container {
    display: block;
  }
  .hide-mobile  {
    display: none;
  }
  .main-page__header  {
    padding: 80px 0;
  }
  .main-page__header-content  {
    max-width: 100%;
  }
}

/*------------------------------------*\
  # Vacancy Page
\*------------------------------------*/
.view-display-id-vacancies  {
  margin-top: 40px;
}
.view-display-id-vacancies .view-filters  {
  margin-bottom: 40px;
}
.view-display-id-vacancies .view-filters .form-actions  {
  display: none;
}
.view-display-id-vacancies .view-content  {
  display: flex;
  gap: 30px 20px;
}
.view-display-id-vacancies .views-row {
  width: calc(100%/3 - 40px/3);
  background: var(--color-white);
  border: 1px solid var(--color-light-grey);
}
.vacancy--grid-item   {
  height: 100%;
}
.vacancy--grid-item:hover {
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.vacancy-content-wrapper  {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 35px;
  height: 100%;
}
.vacancy-grid__title:hover  {
  color: var(--color-orange);
}
.vacancy-grid__type-date  {
  display: flex;
  justify-content: space-between;
  opacity: 0.25;
}
.vacancy-grid__teaser {
  line-height: 29px;
}
.vacancy-grid__region {
  opacity: 0.25;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.vacancy-grid__region:before  {
  content: '';
  display: inline-block;
  width: 9px;
  height: 13px;
  background: url(../images/icons/map-mark_grey.png) no-repeat center;
  background-size: contain;
}
.vacancy--mini-grid .vacancy-grid__region {
  margin-bottom: 0;
  margin-top: auto;
}
.vacancy-grid__apply-link {
  margin-top: auto;
}

/***  Vacancy Node  ***/
.node-vacancy--full {
  padding: 60px 0 0 0;
}
.list-view-all-link {
  margin-bottom: 40px;
}
.list-view-all-link a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.list-view-all-link a:before  {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url(../images/icons/arrow_orange.png);
  background-size: contain;
  background-repeat: no-repeat;
}
[dir="ltr"] .list-view-all-link a:before {
  transform: rotate(180deg);
}
.list-view-all-link a:hover {
  text-shadow: 0.5px 0px 0px #221E23;
}
.vacancy-info {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}
.vacancy-info__left {
  width: 57.667%;
}
.vacancy-info__right  {
  width: 32.25%;
}
.vacancy-summary  {
  padding: 35px;
  background: #FFFFFF;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-bottom: 4px solid var(--color-orange);
}
.vacancy-summary > div  {
  display: flex;
  align-items: center;
  gap: 5px;
}
.vacancy-summary .vacancy-region:before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 20px;
  background: url(../images/icons/map-mark_grey.png) no-repeat center;
  background-size: contain;
}
.vacancy-summary .vacancy-type:before {
  content: '';
  display: inline-block;
  width: 17px;
  height: 14px;
  background: url(../images/icons/job-type_grey.png) no-repeat center;
  background-size: contain;
}
.vacancy-summary .vacancy-date:before {
  content: '';
  display: inline-block;
  width: 17px;
  height: 14px;
  background: url(../images/icons/calendar_grey.png) no-repeat center;
  background-size: contain;
}

.vacancy-title  {
  margin-bottom: 40px;
}
.vacancy-introduction {
  margin-bottom: 60px;
}
.node-vacancy .paragraph--text .inner-container {
  width: 100%;
}
.node-vacancy .paragraph--text .content-block-info  {
  width: 100%;
}
.vacancy-apply-button a {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  background-color: var(--color-orange);
}
.vacancy-apply-button a:hover {
  box-shadow: 0px 10px 20px rgba(240, 108, 56, 0.63);
}

@media (max-width: 960px) {
  .node-vacancy--full {
    padding-bottom: 0;
  }
  .vacancy-info {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .vacancy-info__left {
    width: 100%;
  }
  .vacancy-info__right  {
    width: 100%;
  }
  .vacancy-apply-button {
    position: fixed;
    top: 90vh;
    width: 90%;
    z-index: 10;
  }
  .view-related.view-display-id-vacancies  .view-content  {
    flex-direction: column;
  }
  .view-related.view-display-id-vacancies .views-row  {
    width: 100%;
  }
}

/*** Vacancy Form  ***/
.vacancy-application-container  {
  background-color: var(--color-light-grey);
  padding-bottom: 100px;
}
.vacancy-application-header-content {
  width: fit-content;
  margin: 0 auto;
}
.vacancy-application-form {
  width: 70%;
  margin: 0 auto;
}
.vacancy-application-form .webform-section-title {
  width: 100%;
  font-family: 'BodyBold', 'Open Sans', sans-serif;
  font-size: 22px;
  background: none;
  color: var(--color-raisen-black);
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 0;
}
.vacancy-application-form .two-columns-container,
.vacancy-application-form .webform-email-confirm--wrapper .fieldset-wrapper{
  display: flex;
  gap: 20px;
}
.vacancy-application-form .form-type-textfield,
.vacancy-application-form .form-type-email,
.vacancy-application-form .form-type-url  {
  position: relative;
  height: 60px;
  background: var(--color-white);
  border: 1px solid var(--color-geyser);
  padding: 13px 16px 0;
}
.vacancy-application-form .form-type-textfield input,
.vacancy-application-form .form-type-email input,
.vacancy-application-form .form-type-url input {
  font-size: 16px;
  padding: 0;
  -webkit-appearance: none;
  display: block;
  background: transparent;
  color: var(--color-fedora);
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: none;
  height: 100%;
}
.vacancy-application-form .form-type-textfield input:focus,
.vacancy-application-form .form-type-email input:focus,
.vacancy-application-form .form-type-url input:focus {
  outline: none;
}
.vacancy-application-form .form-type-textfield label,
.vacancy-application-form .form-type-email label,
.vacancy-application-form .form-type-url label  {
  color: #9DAFBD;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 16px;
  top: 20px;
  transition: all 0.2s ease;
}
.vacancy-application-form .form-type-textfield label.activated,
.vacancy-application-form .form-type-email label.activated,
.vacancy-application-form .form-type-url label.activated {
  top: 5px;
  font-size: 12px;
}
.vacancy-application-form .form-item.form-type-webform-document-file,
.vacancy-application-form .form-item.form-type-textarea {
  margin-bottom: 60px;
}
.vacancy-application-form .form-type-webform-document-file > label,
.vacancy-application-form .form-type-textarea > label {
  width: 100%;
  font-family: 'BodyBold', 'Open Sans', sans-serif;
  font-size: 22px;
  background: none;
  color: var(--color-raisen-black);
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 0;
}
.vacancy-application-form .webform-document-file  {
  position: relative;
  height: 60px;
  background: var(--color-white);
  border: 1px solid var(--color-geyser);
  padding: 13px 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vacancy-application-form .webform-document-file > label  {
  color: #9DAFBD;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
}
.vacancy-application-form .webform-document-file span.file a  {
  color: var(--color-orange);
}
.vacancy-application-form .webform-document-file input[name*="remove_button"] {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: .25rem;
  opacity: .5;
  text-indent: -9999px;
  margin: 10px;
}
.vacancy-application-form .webform-document-file input[name*="remove_button"]:hover {
  opacity: 1;
}
.vacancy-application-form .webform-submission-form .form-textarea-wrapper {
  max-width: 100%;
}
.vacancy-application-form .webform-submission-form textarea {
  padding: 13px 16px;
  color: var(--color-fedora);
  font-size: 16px;
}
.vacancy-application-form .webform-submission-form textarea::placeholder  {
  color: #9DAFBD;
  font-size: 16px;
}
.vacancy-application-form .form-actions .form-submit  {
  width: 100%;
  max-width: 100%;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-family: 'BodyBold', 'Open Sans', sans-serif;
}

/*------------------------------------*\
  # Products Page
\*------------------------------------*/
.products-page__list  {
  margin: 150px 0;
  display: flex;
  justify-content: space-between;
}
.products-page__side-categories {
  width: 20.667%;
}
.side-categories-list__title  {
  margin-bottom: 32px;
}
.side-categories-list ul {
  display: flex;
  flex-direction: column;
}
.side-categories-list ul li {
  margin-bottom: 30px;
}
.side-categories-list ul > li a {
  color: #211D22;
}
.side-categories-list ul li ul  {
  margin: 20px 17px 0 17px;
  height: 0;
  display: none;
}
.side-categories-list ul li.opened ul {
  height: auto;
  display: block;
}
.side-categories-list ul li ul li {
  margin-bottom: 20px;
}
.side-categories-list ul li ul li a {
  color: var(--color-fedora);
}
.side-categories-list ul li ul li.active  {
  font-family: 'BodyBold', 'Open Sans', sans-serif;
}
.side-categories-list ul > li {
  position: relative;
}
.side-list-item__level0__name    {
  display: flex;
  justify-content: space-between;
}
.side-list-item__level0__name a  {
  max-width: 85%;
}
.side-list-item__level0__name span  {
  height: 8px;
  width: 8px;
  position: relative;
  cursor: pointer;
}
.side-list-item__level0__name span:after {
  content: '\002B';
  width: 8px;
  height: 8px;
  color: #211D22;
  position: absolute;
  top: 0;
  left: 0;
}
.side-list-item__level0.opened .side-list-item__level0__name span:after   {
  content: '\2212';
}

.products-page__main-categories {
  width: 74.58%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.products-page__main-category {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.products-page__main-category__header  {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.products-page__main-category__header__image  {
  height: 38px;
}
.products-page__main-category__header__name {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.products-page__main-category__header__name h3  {
}
.products-page__main-category__header__name:after {
  content: '';
  flex: 1;
  margin-left: 20px;
  height: 1px;
  background-color: #000;
}
[dir="rtl"] .products-page__main-category__header__name:after {
  margin-right: 20px;
  margin-left: 0;
}
.products-page__child-category  {
  height: 100%;
}
.products-page__child-category a  {
  color: #211D22;
}
.products-page__child-category-content  {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid var(--color-light-grey);
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  text-align: center
}
.products-page__child-category-content:hover,
.view-display-id-category_block .views-row:hover  {
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  border-bottom: 4px solid var(--color-orange);
}
.products-page__main-category__children .slick-slide {
  margin: 0 5px;
}
.products-page__main-category__children .slick-list {
  margin: 0 -5px;
}
.products-page__main-category__children .slick-track {
  display: flex !important;
}
.products-page__main-category__children .slick-slide {
  height: inherit !important;
}
.products-page__main-category__children .slick-slide > div  {
  height: 100%;
}

.products-page__main-category__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.view-more-link {
  height: 38px;
  display: flex;
  align-items: center;
}
.view-more-link:after {
  content: '';
  width: 38px;
  height: 38px;
  background-color: var(--color-light-grey);
  background-image: url(../images/icons/arrow_black.png);
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  margin: 0 0 0 10px;
}
[dir="rtl"] .view-more-link:after   {
  margin: 0 10px 0 0;
  transform: rotate(180deg);
}
.view-more-link.plus:after {
  background-image: url(../images/icons/plus_black.png);
}
.view-more-link.white-box:after {
  background-color: var(--color-white);
}
.view-more-link:hover:after {
  background-color: var(--color-orange);
  background-image: url(../images/icons/arrow_white.png);
  box-shadow: 0px 10px 20px rgba(240, 108, 56, 0.63);
}
.view-more-link.plus:hover:after  {
  background-image: url(../images/icons/plus_white.png);
}
.view-more-link.white-box:hover:after {
  background-color: var(--color-orange);
}


@media (min-width: 961px){
  .view-more-link.hide-desktop  {
    display: none;
  }
}

@media (max-width: 960px){
  .view-more-link.hide-mobile  {
    display: none;
  }
}

/* Products in category block */
.view-display-id-category_block .views-row  {
  background: #FFFFFF;
  border: 1px solid var(--color-light-grey);
  padding: 25px 20px;
  height: 100%;
}

/* Full products list */
.view-display-id-products_by_category .view-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.view-display-id-products_by_category .views-row  {
  width: calc(33.33334% - (40px/3));
  background: #FFFFFF;
  border: 1px solid var(--color-light-grey);
  padding: 25px 20px;
}
.view-display-id-products_by_category .views-row:hover  {
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  border-bottom: 4px solid var(--color-orange);
}

@media (max-width: 960px){
  .products-page__list  {
    flex-direction: column;
    margin: 100px 0;
  }
  .products-page__side-categories {
    width: 100%;
  }
  .products-page__main-categories {
    width: 100%;
  }
  .products-page__child-category-content  {
    padding: 20px 15px;
  }
  .view-display-id-products_by_category .views-row  {
    width: calc(50% - 10px);
  }
}

/*------------------------------------*\
  # Product Page -- Grid View
\*------------------------------------*/
.node--product--grid-item a {
  display: flex;
  flex-direction: column;
}
.node--product--grid-item .product-image__grid  {
  width: fit-content;
  margin: 0 auto 25px auto;
  line-height: 0;
}
.node--product--grid-item .product-image__grid img  {
  max-height: 195px;
  width: auto;
}
.node--product--grid-item .product-name {
  color: #211D22;
}
.node--product--grid-item .product-name strong   {
  font-family: 'TitleBold', 'Open Sans', sans-serif;
}
.node--product--grid-item .product-subtitle {
  margin-top: 10px;
  color: #706970;
}

/*------------------------------------*\
  # Product Page
\*------------------------------------*/
.product-info-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
.product-image-wapper  {
  width: 49.25%;
}
.mobile-image-wapper  {
  display: none;
}
.product-image  {
  padding: 43px 74px 27px;
  border: 1px solid var(--color-geyser);
  border-radius: 1px;
}
.product-image img  {
  max-width: 100%;
  height: auto;
}
.product-info-top-right {
  width: 43.92%;
}
.product-info-top-right .product-title {
  position: relative;
  padding: 0 23px;
}
.product-info-top-right .product-title strong {
  font-family: 'TitleBold', 'Open Sans', sans-serif;
}
.product-info-top-right .product-subtitle {
  margin: 10px 23px 25px 23px;
}
.product-info-top-right .product-description {
  margin-bottom: 45px;
  line-height: 29px;
}

.product-info-block--body p {
  margin-bottom: 20px;
}
.product-info-block--body ul  {
  margin: 10px;
  list-style: none;
}
.product-info-block--body ul li {
  margin-bottom: 20px;
  display: flex;
}
.product-info-block--body ul li:last-child  {
  margin-bottom: 0;
}
.product-info-block--body ul li:before {
  content: "\2022";
  color: var(--color-orange);
  font-weight: bold;
  display: inline-block;
  width: 5px;
  margin-right: 10px;
}
[dir="rtl"] .product-info-block--body ul li:before {
  margin-right: 0;
  margin-left: 10px;
}
.product-info-block--body strong  {
  font-family: 'BodyBold', 'Open Sans', sans-serif;
}

.product-info-files {
  margin-bottom: 40px;
}
.product-files-title  {
  margin-bottom: 15px;
}
.product-files-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-file-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background-color: var(--color-light-grey);
  padding: 16px 20px;
  gap: 16px;
}
.product-file-block--image  {
  width: 36px;
  height: 48px;
  min-width: 36px;
  background: url(../images/icons/pdf_white.png);
  margin-right: 15px;
  background-size: contain;
  background-repeat: no-repeat;
}
[dir="rtl"] .product-file-block--image  {
  margin-right: 0;
  margin-left: 30px;
}
.product-file-block--name  {
  width: 45.5%;
  display: flex;
  align-items: center;
}
.product-file-block--name strong  {
  font-family: 'BodyBold', 'Open Sans', sans-serif;
}
.product-file-block--type  {
  width: 19.7%;
}
.product-file-block--icons  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.product-file-block--icons .icon  {
  width: 16px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}
.product-file-block--icons .icon.icon__download   {
  background-image: url('../images/icons/download_black.png');
}
.product-file-block--icons .icon.icon__download.disabled   {
  background-image: url('../images/icons/download_grey.png');
}
.product-file-block--icons .icon.icon__download:not(.disabled):hover   {
  background-image: url('../images/icons/download_orange.png');
}
.product-file-block--icons .icon.icon__locked   {
  background-image: url('../images/icons/lock_black.png');
}
.product-file-block--icons .icon.icon__locked:hover   {
  background-image: url('../images/icons/lock_orange.png');
}
.product-file-block--file a {
  color: #ff6c2c;
}


.shopping-link a  {
  height: 60px;
  background: #0164ab;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  cursor: pointer;
}

.dcp-tabs-wrapper {
  width: 100%;
  margin: 70px 0 100px;
}
.dcp-tabs ul {
  display: flex;
  height: 48px;
  border-bottom: 1px solid var(--color-light-grey);
}
.dcp-tabs ul li {
  background: transparent;
}
.dcp-tabs ul li a {
  display: block;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dcp-tabs ul li hover, .dcp-tabs ul li.active {
  border: 1px solid var(--color-light-grey);
  border-top: 4px solid var(--color-orange);
  border-bottom: 1px solid var(--color-white);
  margin-bottom: -1px;
}
.tab-panels   {
  background: #FFFFFF;
  border: 1px solid var(--color-light-grey);
  box-shadow: 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198);
  border-top: none;
  padding: 35px;
}
.tab-panels .tab-panel  {
  display: none;
  transition: all 1s ease-in-out;
}
.tab-panels .tab-panel.active {
  display: block;
}

@media all and (max-width: 960px) {
  .dcp-tabs-wrapper {
    margin: 40px 0 80px;
  }
  .dcp-tabs {
    display: none;
  }
  .dcp-tabs ul  {
    flex-direction: column;
    height: auto;
  }
  .dcp-tabs ul li {
    border: 1px solid var(--color-light-grey);
    height: 48px;
  }
  .dcp-tabs ul li hover, .dcp-tabs ul li.active  {
    margin: 0;
    border: 2px solid var(--color-orange);
  }
  .tab-panels   {
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .tab-panels .tab-panel  {
    display: block;
    height: 52px;
    border: 1px solid var(--color-light-grey);
    overflow: hidden;
  }
  .tab-panels .tab-panel.active {
    height: auto;
    box-shadow: 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198);
    margin-bottom: 30px;
  }
  .tab-panel:before {
    content: attr(data-title);
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'TitleReg', 'Open Sans', sans-serif;
    color: var(--color-raisen-black);
  }
  .tab-panels .tab-panel.active:before  {
    border-top: 4px solid var(--color-orange);
    margin-bottom: 32px;
  }
  .tab-panels .tab-panel .product-info-block--body  {
    padding: 0 20px;
  }
}

.related-container  {
  padding: 70px 0;
  background-color: var(--color-light-grey);
  position: relative;
}
.related-title  {
  margin-bottom: 40px;
}
.related-slider-wrapper {
  position: relative;
}
.related-slider-wrapper .slick-slide {
  margin: 0 10px;
}
.related-slider-wrapper .slick-list {
  margin: 0 -10px;
}
.related-slider-wrapper .slick-track {
  display: flex !important;
}
.related-slider-wrapper .slick-slide {
  height: inherit !important;
}
.related-slider-wrapper .slick-slide > div  {
  height: 100%;
}

.related-slider-wrapper .view-content {
}
.related-slider-wrapper .views-row {
  background: #FFFFFF;
  border: 1px solid var(--color-light-grey);
  padding: 25px 20px;
  height: 100%;
}
.related-products .slider-arrows  {
  position: absolute;
  top: 16px;
  right: 0;
}
[dir="rtl"] .related-products .slider-arrows  {
  right: auto;
  left: 0;
}

@media (max-width: 960px){
  .product-info-top {
    flex-direction: column;
  }
  .product-image-wapper {
    display: none;
  }
  .mobile-image-wapper  {
    display: block;
  }
  .product-info-top .product-image  {
    width: 100%;
  }
  .product-image  {
    padding: 20px 40px;
  }
  .product-info-top-right {
    width: 100%;
    margin-top: 20px;
  }
  .product-info-bottom  {
    flex-direction: column;
    margin-top: 40px;
    padding-bottom: 40px;
  }
  .product-info-bottom .product-info-block  {
    width: 100%;
  }
  .product-info-files {
    margin: 40px 0;
    padding-bottom: 40px;
    border: none;
  }
  .product-files-title  {
    margin-top: 40px;
  }
  .product-files-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
  }
  .product-file-block   {
    height: auto;
    padding: 10px;
    gap: 5px;
  }
  .product-file-block--name {
    width: auto;
    flex: 1;
  }
  .product-file-block--image {
    margin: 0;
  }
  .product-file-block--type {
    word-break: break-word;
  }
  .product-file-block--icons  {
    gap: 10px;
  }

  .related-container  {
    padding: 60px 0;
  }
  .related-products .view-content {
  }
  .related-products .views-row  {
  }
  .related-products .slider-arrows  {
    position: static;
    margin: 30px auto 0 auto;
  }
}

/*------------------------------------*\
  # Downloads Page
\*------------------------------------*/
.downloads-page .main-page__header {
  background: var(--color-white);
}
.downloads-page__content-wrapper  {
  background: var(--color-light-grey);
  padding: 186px 0;
}
.downloads-page__items  {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.downloads-category-row {
  height: 92px;
  width: 100%;
  border: 1px solid var(--color-geyser);
  margin-bottom: 20px;
  background: var(--color-white);
}
.downloads-category-row.active  {
  height: auto;
  padding-bottom: 30px;
  border: 1px solid var(--color-orange);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.downloads-category-row.active.closed {
  height: 92px;
}
.downlaods-category-title {
  padding: 0 20px;
  display: flex;
  align-items: center;
  position: relative;
  height: 92px;
}
.downlaods-category-title:after {
  content: "";
  width: 11px;
  height: 19px;
  background-image: url(../images/icons/next_black.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
  margin-left: auto;
}
[dir="rtl"] .downlaods-category-title:after {
  margin-left: unset;
  margin-right: auto;
}
.downloads-category-row.active .downlaods-category-title:after  {
  -webkit-transform: rotate(-90deg );
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
.downloads-category-row.active.closed .downlaods-category-title:after  {
  -webkit-transform: rotate(90deg );
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.downlaods-category-title {
  flex: 1;
  line-height: 40px;
}
.downlaods-category-title:hover  h4 {
  color: var(--color-orange);
}
.downloads-category-title:hover:after {
  background-image: url(../images/icons/next_orange.png);
}
.downloads-category-title--image  {
  width: fit-content;
  height: 38px;
  margin-right: 10px;
}
[dir="rtl"] .downloads-category-title--image  {
  margin-right: 0;
  margin-left: 10px;
}
.downlaods-subcategory-title  {
  padding: 0 40px;
  margin: 40px 0 10px;
}
.downloads-files-list {
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.product-file-block {
  width: 100%;
}
.product-file-block--title a  {
  color: #000000;
}
.product-file-block--file {
  margin-bottom: 5px;
}

@media (max-width: 960px){
  .downloads-page__content-wrapper  {
    padding: 100px 0;
  }
  .downloads-files-list {
    display: flex;
    flex-direction: column;
  }
}


/*------------------------------------*\
  # Get locked File
\*------------------------------------*/
.ajax-response-container  {
  position: fixed;
  top: 150px;
  z-index: 100;
  display: none;
  width: 100%;
}
.ajax-response-container.js-active  {
  display: block;
}
.ajax-response-content-wrapper  {
  width: 83.33%;
  max-width: 1200px;
  margin: 0 auto;
}
.ajax-response-inner-content  {
  width: 60%;
  margin: 0 auto;
  position: relative;
  background-color: var(--color-light-grey);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  border-top: 4px solid var(--color-orange);
  padding: 50px 40px;
}
.ajax-response-close  {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ajax-response-close {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
  background-image: url(../images/icons/close_grey.png);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.ajax-response-close:hover  {
  background-color: var(--color-black);
}

.webform-submission-form.webform-submission-get-locked-file-form  {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.webform-submission-form.webform-submission-get-locked-file-form .form-field__label   {
  margin-bottom: 5px;
}
.webform-submission-form.webform-submission-get-locked-file-form .form-item-teaser  {
  margin-bottom: 15px;
}
.webform-submission-form.webform-submission-get-locked-file-form .two-columns-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.webform-submission-form.webform-submission-get-locked-file-form .two-columns-container > div {
  width: 47%;
}
.webform-submission-form.webform-submission-get-locked-file-form .form-item {
  gap: 0;
  margin-bottom: 0;
}
.webform-submission-form.webform-submission-get-locked-file-form .form-submit {
  width: auto;
  padding: 16px 40px;
  background-color: var(--color-orange);
  color: var(--color-white);
  margin-top: 35px;
}
.webform-submission-form.webform-submission-get-locked-file-form .form-item-required-file {
  display: none;
}

@media (max-width: 960px) {
  .ajax-response-container  {
    top: 100px;
    height: calc(98vh - 100px);
    overflow-y: scroll;
  }
  .ajax-response-content-wrapper  {
    width: 100%;
  }
  .ajax-response-inner-content  {
    width: 90%;
    padding: 30px;
  }
  .webform-submission-form.webform-submission-get-locked-file-form .two-columns-container {
    flex-direction: column;
    gap: 15px;
  }
  .webform-submission-form.webform-submission-get-locked-file-form .two-columns-container > div {
    width: 100%;
  }
}




/*------------------------------------*\
  # Marketing Materials
\*------------------------------------*/
.materials-page .main-page__header {
  background: var(--color-white);
}
.materials-page__content-wrapper  {
  background: var(--color-light-grey);
  padding: 186px 0;
}
.materials-page__items  {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.materials-category-row {
  height: 92px;
  width: 100%;
  border: 1px solid var(--color-geyser);
  background: var(--color-white);
  overflow: hidden;
  padding: 0 30px;
}
.materials-category-row.active  {
  height: auto;
  border: none;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.materials-category-title {
  display: flex;
  align-items: center;
  position: relative;
  height: 92px;
  justify-content: space-between;
  cursor: pointer;
}
.materials-category-title:after {
  content: "";
  width: 11px;
  height: 19px;
  background-image: url(../images/icons/next_black.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}
[dir="rtl"] .materials-category-title:after {
}
.materials-category-row.active .materials-category-title:after  {
  -webkit-transform: rotate(-90deg );
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.materials-category-row__subcategories  {
  margin: 0 10px;
}
.marketing-material {
  margin-bottom: 40px;
}
.marketing-material .material-name  {
  margin-bottom: 10px;
}
.marketing-material .material-subtitle    {
  margin-bottom: 10px;
  max-width: 60%;
}
.marketing-material .product-file-block--name{
  flex: 1;
}

@media (max-width: 960px){
  .materials-page__content-wrapper  {
    padding: 100px 0;
  }
  .marketing-material .material-subtitle    {
    max-width: 100%;
  }
}


/*------------------------------------*\
  # References Page
\*------------------------------------*/
.references-page  {
  padding: 70px 0 100px 0;
  background: var(--color-light-grey);
}
.references-page__content-wrapper {
  margin-top: 100px;
  background: var(--color-light-grey);
}
.view-display-id-references .view-filters {
  margin: 40px 0;
}
.view-display-id-references .form--inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.exposed-fields-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 50%;
}
.exposed-fields-wrapper.right {
  justify-content: flex-end;
}
.exposed-fields-wrapper.no-gap  {
  gap: 0;
}
.exposed-fields-wrapper .form-item  {
  width: 285px;
}
.exposed-fields-wrapper .select-wrapper {
  width: 100%;
}
[dir="rtl"] .exposed-fields-wrapper .select-wrapper {
  margin-right: 0;
  margin-left: 20px;
}
.exposed-fields-wrapper select,
.exposed-fields-wrapper input {
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid var(--color-geyser);
  border-radius: 1px;
  padding: 0 5px;
  color: var(--color-fedora);
}
.exposed-fields-wrapper .form-actions {
  width: 50px;
  height: 50px;
  background: var(--color-orange);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.exposed-fields-wrapper .form-actions .form-submit  {
  text-indent: -9999px;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  background-image: url(../images/icons/search_white.png);
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
@media (max-width: 960px) {
  .view-display-id-references .form--inline {
    flex-direction: column;
    gap: 20px;
  }
  .exposed-fields-wrapper {
    width: 100%;
    flex-direction: column;
  }
  .exposed-fields-wrapper.no-gap  {
    flex-direction: row;
  }
  .exposed-fields-wrapper .form-item  {
    width: 100%;
  }
  .exposed-fields-wrapper .form-item-title  {
    width: calc(100% - 50px);
  }
}
.references-page .main-page__header {
  padding: 0;
}
.references-page .view-content  {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 20px;
}
.references-page .view-content .views-row {
  width: calc(100%/3 - 40px/3);
}
.reference--grid-item  {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-bottom: 4px solid #F06C38;
}
.reference--grid-item:hover  {
  border: none;
  border-bottom: 4px solid #F06C38;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.reference--grid-item .reference-image  {
}
.reference--grid-item .reference-image img  {
  max-width: 100%;
  height: auto;
  width: auto;
}
.reference--grid-item .reference-grid-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 35px 35px 40px 35px;
}
.reference--grid-item .reference-location {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.reference--grid-item .reference-location:before  {
  content: '';
  display: inline-block;
  width: 10px;
  height: 13px;
  background-image: url(../images/icons/map-mark_orange.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.reference--grid-item .reference-name {
  margin-bottom: 25px;
}
.reference--grid-item .reference-name:hover {
  color: var(--color-orange);
}
.reference--grid-item .reference-subtitle {
  margin-bottom: 30px;
  max-width: 90%;
  line-height: 29px;
  flex: 1;
}

@media (max-width: 960px) {
  .home-section__references {
    padding: 60px 0;
  }
  .references-page__content-wrapper  {
    margin-top: 0;
  }
  .references-page .view-content  {
    flex-direction: column;
  }
  .references-page .view-content .views-row {
    width: 100%;
  }
}

/*------------------------------------*\
  # News Page
\*------------------------------------*/
.news-page  {
}
.view-display-id-news .view-filters {
  margin: 40px 0;
}
.view-display-id-news .form--inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.view-display-id-news .exposed-fields-wrapper.left .form-item {
  width: 100%;
  display: flex;
  align-items: center;
}
.view-display-id-news .exposed-fields-wrapper.left .form-item label {
  width: 130px;
}
.view-display-id-news .exposed-fields-wrapper.left .form-item .select-wrapper {
  width: 285px;
}
.news-page .main-page__header {
  background: var(--color-white);
}
.news-page__content-wrapper {
  padding: 60px 0 100px;
  background: var(--color-light-grey);
}
.news-page .view-content  {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 20px;
}
.news-page .view-content .views-row {
  width: calc(100%/3 - 40px/3);
}
.news--grid-item  {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-bottom: 4px solid #F06C38;
}
.news--grid-item:hover  {
  border: none;
  border-bottom: 4px solid #F06C38;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.news--grid-item .news-image  {
}
.news--grid-item .news-image img  {
  max-width: 100%;
  height: auto;
  width: auto;
}
.news--grid-item .news-grid-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 35px 35px 50px 35px;
  align-items: flex-start;
}
.news--grid-item .news-date {
  margin-bottom: 10px;
  opacity: 0.25;
}
.news--grid-item .news-name {
  margin-bottom: 25px;
}
.news--grid-item .news-name:hover {
  color: var(--color-orange);
}
.news--grid-item .news-subtitle {
  margin-bottom: 30px;
  max-width: 90%;
  line-height: 29px;
  flex: 1;
}

@media (max-width: 960px){
  .news-page .view-content  {
    flex-direction: column;
  }
  .view-display-id-news .form--inline {
    flex-direction: column;
    gap: 20px;
  }
  .view-display-id-news .exposed-fields-wrapper.left .form-item {
    flex-direction: column;
    gap: 10px;
  }
  .view-display-id-news .exposed-fields-wrapper.left .form-item label {
    width: 100%;
  }
  .view-display-id-news .exposed-fields-wrapper.left .form-item .select-wrapper {
    width: 100%;
    margin: 0;
  }
  .news-page .view-content .views-row {
    width: 100%;
  }
  .news .main-image {
    margin-bottom: 20px;
  }
  .news--grid-item .news-grid-info {
    padding: 35px 25px;
  }
}

/*------------------------------------*\
  # News Node
\*------------------------------------*/
.node-news   {
  padding: 100px 0 0;
}
.news-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.news-info__image  {
  width: 49.083%;
}
.news-info__data {
  width: 40.667%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.news-node-date {
  opacity: 0.25;
}
.news-body {
  margin-top: 70px;
  margin-bottom: 100px;
}

.related-news .view-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.related-news .view-content .views-row  {
  width: 32.25%;
}

@media (max-width: 960px) {
  .news-info {
    flex-direction: column;
    gap: 50px;
  }
  .news-info__image  {
    width: 100%;
  }
  .news-info__data {
    width: 100%;
    gap: 30px;
  }
  .news-node-date {
    opacity: 0.25;
  }
  .news-body {
    margin-top: 60px;
    margin-bottom: 100px;
  }

  .related-news .view-content {
    flex-direction: column;
  }
  .related-news .view-content .views-row  {
    width: 100%;
  }
}


/*------------------------------------*\
  # Howto Page
\*------------------------------------*/
.howto-page  {
}
.view-display-id-howto .view-filters {
  margin: 40px 0;
}
.view-display-id-howto .form--inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.view-display-id-howto .exposed-fields-wrapper.left .form-item {
  width: 100%;
  display: flex;
  align-items: center;
}
.view-display-id-howto .exposed-fields-wrapper.left .form-item label {
  width: 130px;
}
.view-display-id-howto .exposed-fields-wrapper.left .form-item .select-wrapper {
  width: 285px;
}
.howto-page .main-page__header {
  background: var(--color-light-grey);
  padding: 100px 0 0;
}
.howto-page .main-page__header .main-page-title {
  margin: 0;
}
.howto-page__content-wrapper {
  padding: 60px 0 100px;
  background: var(--color-light-grey);
}
.howto-page .view-content  {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 20px;
}
.howto-page .view-content .views-row {
  width: calc(100%/3 - 40px/3);
}
.howto--grid-item  {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-bottom: 4px solid #F06C38;
}
.howto--grid-item:hover  {
  border: none;
  border-bottom: 4px solid #F06C38;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.howto--grid-item .howto-image  {
}
.howto--grid-item .howto-image img  {
  max-width: 100%;
  height: auto;
  width: auto;
}
.howto--grid-item .howto-grid-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 35px 35px 50px 35px;
  align-items: flex-start;
}
.howto--grid-item .howto-date {
  margin-bottom: 10px;
  opacity: 0.25;
}
.howto--grid-item .howto-name {
  margin-bottom: 25px;
}
.howto--grid-item .howto-name:hover {
  color: var(--color-orange);
}
.howto--grid-item .howto-subtitle {
  margin-bottom: 30px;
  max-width: 90%;
  line-height: 29px;
  flex: 1;
}

@media (max-width: 960px){
  .howto-page .view-content  {
    flex-direction: column;
  }
  .view-display-id-howto .form--inline {
    flex-direction: column;
    gap: 20px;
  }
  .view-display-id-howto .exposed-fields-wrapper.left .form-item {
    flex-direction: column;
    gap: 10px;
  }
  .view-display-id-howto .exposed-fields-wrapper.left .form-item label {
    width: 100%;
  }
  .view-display-id-howto .exposed-fields-wrapper.left .form-item .select-wrapper {
    width: 100%;
    margin: 0;
  }
  .howto-page .view-content .views-row {
    width: 100%;
  }
  .howto .main-image {
    margin-bottom: 20px;
  }
  .howto--grid-item .howto-grid-info {
    padding: 35px 25px;
  }
}

/*------------------------------------*\
  # Howto Node
\*------------------------------------*/
.howto-image-wrapper  {
  height: 617px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.node-howto   {
  padding: 100px 0 0;
}
.node-howto .page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: fit-content;
}
.howto-body {
  margin-top: 70px;
  margin-bottom: 100px;
}

.related-howto .view-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.related-howto .view-content .views-row  {
  width: 32.25%;
}

@media (max-width: 1440px) {
  .howto-image-wrapper  {
    height: 460px;
  }
}
@media (max-width: 960px) {
  .howto-image-wrapper  {
    height: 300px;
  }
  .howto-body {
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .related-howto .view-content {
    flex-direction: column;
  }
  .related-howto .view-content .views-row  {
    width: 100%;
  }
}

/*------------------------------------*\
  # Promotion Page
\*------------------------------------*/
.promotions-page  {
}
.promotions-page .main-page__header {
  background: var(--color-light-grey);
  padding: 100px 0 0;
}
.promotions-page .main-page__header .main-page-title {
  margin: 0;
}
.promotions-page__content-wrapper {
  padding: 60px 0 100px;
  background: var(--color-light-grey);
}
.promotions-page .view-content  {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 20px;
}
.promotions-page .view-content .views-row {
  width: calc(100%/3 - 40px/3);
}
.promotion--grid-item  {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-bottom: 4px solid #F06C38;
}
.promotion--grid-item:hover  {
  border: none;
  border-bottom: 4px solid #F06C38;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.promotion--grid-item .promotion-image  {
}
.promotion--grid-item .promotion-image img  {
  max-width: 100%;
  height: auto;
  width: auto;
}
.promotion--grid-item .promotion-grid-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 35px 35px 50px 35px;
  align-items: flex-start;
}
.promotion--grid-item .promotion-date {
  margin-bottom: 10px;
  opacity: 0.25;
}
.promotion--grid-item .promotion-name {
  margin-bottom: 25px;
}
.promotion--grid-item .promotion-name:hover {
  color: var(--color-orange);
}
.promotion--grid-item .promotion-subtitle {
  margin-bottom: 30px;
  max-width: 90%;
  line-height: 29px;
  flex: 1;
}

@media (max-width: 960px){
  .promotion-page .view-content  {
    flex-direction: column;
  }
  .promotion-page .view-content .views-row {
    width: 100%;
  }
  .promotion .main-image {
    margin-bottom: 20px;
  }
  .promotion--grid-item .promotion-grid-info {
    padding: 35px 25px;
  }
}

/*------------------------------------*\
  # Promotion Node
\*------------------------------------*/
.node-promotion   {
  padding: 100px 0 0;
}
.node-promotion .page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 66.67%;
}
.promotion__image {
  width: 66.67%;
  margin: 0 auto 50px;
}
.promotion-body {
  margin-top: 70px;
  margin-bottom: 100px;
}

.related-promotion .view-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.related-promotion .view-content .views-row  {
  width: 32.25%;
}

@media (max-width: 960px) {
  .node-promotion .page-title {
    width: 100%;
  }
  .promotion__image {
    width: 100%;
  }
  .promotion-body {
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .related-promotion .view-content {
    flex-direction: column;
  }
  .related-promotion .view-content .views-row  {
    width: 100%;
  }
}

/*------------------------------------*\
  # Reference Node
\*------------------------------------*/
.node-reference   {
  padding: 100px 0 0;
}
.reference-node-title {
  width: fit-content;
  margin: 0 auto 50px;
}
.reference-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reference-info__image  {
  width: 49.083%;
}
.reference-info__data {
  width: 40.667%;
}
.reference-info__data__title  {
  margin-bottom: 50px;
}
.reference-info__row  {
  display: flex;
  margin-bottom: 20px;
}
.reference-info__row__label {
  width: 45%;
}
.reference-info__row__data  {
  flex: 1;
}
.reference-body {
  margin-top: 70px;
  margin-bottom: 100px;
}

.related-references .view-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.related-references .view-content .views-row  {
  width: 32.25%;
}

@media (max-width: 960px) {
  .reference-info {
    flex-direction: column;
    gap: 50px;
  }
  .reference-info__image  {
    width: 100%;
  }
  .reference-info__data {
    width: 100%;
    gap: 30px;
  }
  .reference-body {
    margin-top: 60px;
    margin-bottom: 100px;
  }

  .related-references .view-content {
    flex-direction: column;
  }
  .related-references .view-content .views-row  {
    width: 100%;
  }
}


/*------------------------------------*\
  # Careers Page
\*------------------------------------*/
.careers-page  {
}
.view-display-id-careers .view-filters {
  margin: 40px 0;
}
.view-display-id-careers .form--inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.careers-page .main-page__header {
  background: var(--color-white);
}
.careers-page__content-wrapper {
  padding: 120px 0 100px;
  background: var(--color-light-grey);
}
.careers-page .view-content  {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 1.625%;
}
.careers-page .view-content .views-row {
  width: 32.25%;
}
.careers--grid-item  {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-bottom: 4px solid #F06C38;
}
.careers--grid-item:hover  {
  border: none;
  border-bottom: 4px solid #F06C38;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.careers--grid-item .careers-image  {
}
.careers--grid-item .careers-image img  {
  max-width: 100%;
  height: auto;
  width: auto;
}
.careers--grid-item .careers-grid-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 35px 35px 50px 35px;
  align-items: flex-start;
}
.careers--grid-item .careers-date {
  margin-bottom: 10px;
  opacity: 0.25;
}
.careers--grid-item .careers-name {
  margin-bottom: 25px;
}
.new--grid-item:hover .careers-name {
  color: var(--color-orange);
}
.careers--grid-item .careers-subtitle {
  margin-bottom: 30px;
  max-width: 90%;
  line-height: 29px;
  flex: 1;
}

@media (max-width: 960px){
  .careers-page .view-content  {
    flex-direction: column;
  }
  .careers-page .view-content .views-row {
    width: 100%;
  }
  .careers .main-image {
    margin-bottom: 20px;
  }
  .careers--grid-item .careers-grid-info {
    padding: 35px 25px;
  }
}

/*------------------------------------*\
  # Contact Page
\*------------------------------------*/
.contact-page  {
}
.contact-page .main-page__header {
  background: var(--color-white);
}
.contact-page__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.contact-page__stores-list  {
  display: flex;
  flex-direction: column;
}
.store-category-block {
  padding-bottom: 100px;
  margin-bottom: 100px;
  border-bottom: 1px solid var(--color-raisen-black);
}
.stores-list__views-block {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.store-category-block:last-child  {
  padding: 0;
  margin: 0;
  border: none;
}
.stores-list--views-block--title  {
  max-width: 500px;
}
.stores-list--views-block--stores .view-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.stores-list--views-block--stores .views-row  {
  width: calc(25% - 15px);
  padding: 24px 24px 40px 24px;
  border: 1px solid var(--color-light-grey);
}
.store--grid-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.store--grid-item .store-address-block  {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.store-address-block--row .telephone  {
  display: block;
  text-align: left;
  margin-top: 5px;
}
[dir="rtl"] .store-address-block--row .telephone  {
  text-align: right;
}
.store-map-link {
  margin-top: auto;
}

.contact-form-block__content  {
  display: flex;
}
.contact-form-block__content > div  {
  width: 50%;
}
.contact-form__address  {
  background-size: cover;
  display: flex;
  justify-content: center;
  padding: 70px 0;
}
.contact-form__address-content  {
  width: 70%;
  max-width: 488px;
  padding: 70px 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0px 25px 45px rgba(172, 174, 179, 0.33);
  backdrop-filter: blur(5px);
}
.contact-form__address__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__address__label {
  text-transform: uppercase;
}
.contact-form__address__data span {
  display: inline-block;
}
.contact-form__address__data span:first-child {
  width: 25%;
}

.contact-form__form {
  background: var(--color-light-grey);
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-form__form > div   {
  width: 70%;
  margin: 0 auto;
}

.contact-page__map  {
  line-height: 0;
}

@media (max-width: 960px) {
  .contact-page__content-wrapper  {
    flex-direction: column-reverse;
  }
  .store-category-block {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .stores-list--views-block--stores .view-content {
    flex-direction: column;
  }
  .stores-list--views-block--stores .views-row  {
    width: 100%;
  }
  .contact-form-block__content  {
    flex-direction: column;
  }
  .contact-form-block__content > div  {
    width: 100%;
  }
  .contact-form__address-content  {
    width: 90%;
    padding: 50px 30px;
  }
  .contact-form__form > div {
    width: 90%;
  }
  .contact-page__map iframe  {
    height: 500px;
  }
}


/***  Contact Form  ***/
.webform-submission-form .form-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}

.webform-submission-form .form-item {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}
.webform-submission-form label  {
}
.webform-submission-form label.form-required:after  {
  content:" *";
  color: inherit;
}
.webform-submission-form input,
.webform-submission-form select,
.webform-submission-form .form-textarea-wrapper {
  width: 100%;
  max-width: 488px;
}

.webform-submission-form input,
.webform-submission-form select,
.webform-submission-form textarea {
  border: 1px solid var(--color-geyser);
  padding: 10px 5px;
  height: 50px;
  background-color: #ffffff;
  resize: none;
}
.webform-submission-form textarea {
  width: 100%;
  height: 100px;
}


/*------------------------------------*\
  # FAQ Page
\*------------------------------------*/
.faq-page  {
}
.faq-page .main-page__header {
  background: var(--color-white);
}
.faq-page__content-wrapper {
  padding: 60px 0 100px;
  background: var(--color-light-grey);
}
.faq-page .view-content  {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.node--faq  {
  height: auto;
  width: 100%;
  border: 1px solid var(--color-geyser);
  background: var(--color-white);
  overflow: hidden;
  padding: 0 30px;
}
.node--faq.active {
  border: none;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.node--faq .faq-question {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  cursor: pointer;
  padding: 20px 0;
}
.node--faq .faq-question h4 {
  flex: 1;
}
.node--faq .faq-question:after {
  content: "";
  width: 11px;
  height: 19px;
  background-image: url(../images/icons/next_black.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}
.node--faq .faq-answer  {
  margin-bottom: 20px;
  line-height: 29px;
  display: none;
  transition: 1s;
}
.node--faq.active .faq-answer {
  display: block;
}
.faq-page .view-filters {
  display: none;
  justify-content: flex-end;
}
.faq-page .view-filters .form--inline {
  display: flex;
}
.faq-page .view-filters .form-item-keywords {

}




/*------------------------------------*\
  # Basic Page
\*------------------------------------*/
.page .page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px auto 80px;
  width: fit-content;
}
.page-content-block  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.page-content-block .content-block-image {
  width: 48.5%;
}
.page-content-block .content-block-info {
  width: 45%;
}

@media (max-width: 960px){
  .page-content-block {
    flex-direction: column;
  }
  .page-content-block .content-block-image  {
    width: 100%;
  }
  .page-content-block .content-block-info {
    width: 100%;
    margin-top: 10px;
  }
  .paragraph--text-image__right .page-content-block {
    flex-direction: column-reverse;
  }
  .content-block-info--body  {
    max-width: 100%;
  }
}


.full-text-editor ul  {
  list-style: none;
  padding: 0 30px;
}
.full-text-editor ul li::before {
  content: "\2022";
  color: #ff6c2c;
  font-weight: bold;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: -30px;
}
.full-text-editor a {
  text-decoration: none;
  color: #ff6c2c;
}
.full-text-editor a:hover {
  padding-bottom: 5px;
  border-bottom: 1px solid #ff6c2c;
}
.inner-view {
  margin: 50px 0;
}
.inner-webform   {
  margin: 50px 0;
}

@media (max-width: 960px){
  .full-width-image .image-container  {
    height: auto;
  }
  .page .page-title {
    margin: 80px 5% 50px;
  }
  .content-block-info--body  {
    max-width: 100%;
  }
}


/*------------------------------------*\
  # Paragraphs
\*------------------------------------*/

/* Text */
.paragraph--text  {
  margin-bottom: 60px;
}
.paragraph--text:last-child {
  margin-bottom: 0;
}
.paragraph--text .content-block-info  {
  width: 66.67%;
  margin: 0 auto;
}
.content-block-info--title {
  margin-bottom: 30px;
}
.content-block-info--body {
  line-height: 29px;
}
.content-block-info--body p {
  margin-bottom: 10px;
}
.content-block-info--body ul  {
  margin: 20px;
}
.content-block-info--body ul li {
  display: flex;
  margin-bottom: 10px;
}
.content-block-info--body ul li::before {
  content: "\2022";
  font-weight: bold;
  margin: 0 10px;
  font-size: 25px;
  color: var(--color-orange);
}
.content-block-info--body ol {
  list-style: none;
  counter-reset: item;
  margin: 20px;
}
.content-block-info--body ol li {
  counter-increment: item;
  display: flex;
  margin-bottom: 10px;
}
.content-block-info--body ol li:before {
  margin: 0 10px;
  content: counter(item)"\002E";
}

.content-block-info--body a,
.content-block-info--body a:visited,
.content-block-info--body a:active  {
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--color-fedora);
}
.content-block-info--body a:hover {
  border-bottom: 1px solid var(--color-orange);
}

.content-block-info--body strong  {
  font-family: 'BodyBold', 'Open Sans', sans-serif;
}
.content-block-info--body em  {
  font-style: italic;
}

@media (max-width: 960px) {
  .paragraph--text .content-block-info  {
    width: 100%;
  }
}

/* 2Col Text */
.paragraph--2col-text   {
  margin-bottom: 40px;
}
.content-block-info--2cols  {
  display: flex;
  justify-content: space-between;
}
.content-block-info--2cols .content-block-info--body  {
  width: 46.5%;
}
@media (max-width: 960px){
  .content-block-info--2cols  {
    flex-direction: column;
  }
  .content-block-info--2cols .content-block-info--body  {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Full Image */
.paragraph--full-image   {
  margin-bottom: 30px;
}
.paragraph--full-image .content-block-info  {
  width: 100%;
  margin: 0 auto;
}
.paragraph--full-image .full-width-image  {
  margin-bottom: 10px;
}
@media (max-width: 960px) {
}

/* Text and Image */
.paragraph--text-image  {
  padding: 100px 0;
}
.page .page-title + .paragraph--text-image  {
  padding-top: 0;
}
.paragraph--text-image + .paragraph--text-image {
  margin-top: -50px;
  padding-top: 0;
}
.text-image__content-wrapper  {
  display: flex;
  align-items: center;
}
.text-image__image  {
  width: 50%;
  z-index: 9;
}
.text-image__body-wrapper   {
  width: 57.667%;
  margin-left: -7.667%;
  z-index: 10;
}
[dir="rtl"] .text-image__body-wrapper   {
  margin-left: 0;
  margin-right: -7.667%;
}
.text-image__body {
  padding: 60px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 25px 45px rgba(172, 174, 179, 0.33);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.paragraph--text-image__right .text-image__body-wrapper {
  margin-left: 0;
  margin-right: -7.667%;
}
[dir="rtl"] .paragraph--text-image__right .text-image__body-wrapper {
  margin-right: 0;
  margin-left: -7.667%;
}
.text-image__text {
  line-height: 29px;
}
.paragraph--text-image--with-title .text-image__text  {
  margin-left: 23px;
}
[dir="rtl"] .paragraph--text-image--with-title .text-image__text  {
  margin-left: 0;
  margin-right: 23px;
}
.paragraph--text-image--howto .text-image__body-wrapper   {
  width: 48%;
  margin-left: 0;
}
[dir="rtl"] .paragraph--text-image--howto .text-image__body-wrapper   {
  margin-left: 0;
  margin-right: 0;
}
.paragraph--text-image--howto .text-image__content-wrapper  {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.paragraph--text-image--howto .text-image__body {
  padding: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.paragraph--text-image--howto.paragraph--text-image--with-title .text-image__text  {
  margin-left: 0;
}
[dir="rtl"] .paragraph--text-image--howto.paragraph--text-image--with-title .text-image__text  {
  margin-left: 0;
  margin-right: 0;
}
.paragraph--text-image--howto.paragraph--text-image__right .text-image__body-wrapper {
  margin: 0;
}
[dir="rtl"] .paragraph--text-image--howto.paragraph--text-image__right .text-image__body-wrapper {
  margin: 0;
}
.paragraph--text-image--howto.paragraph--text-image--with-title .text-image__text  {
  margin-left: 0;
}
[dir="rtl"] .paragraph--text-image--howto.paragraph--text-image--with-title .text-image__text  {
  margin-left: 0;
  margin-right: 0;
}

.text-image__text p + p {
  margin-top: 25px;
}
.text-image__text em  {
  text-transform: uppercase;
  border-left: 3px solid var(--color-orange);
  color: var(--color-raisen-black);
  display: block;
  padding: 0 10px;
}
[dir="rtl"] .text-image__text em  {
  border-left: 0;
  border-right: 3px solid var(--color-orange);
}
.text-image__text ul  {
  margin: 20px;
}
.text-image__text ul li {
  display: flex;
  margin-bottom: 10px;
}
.text-image__text ul li::before {
  content: "\2022";
  font-weight: bold;
  margin: 0 10px;
  font-size: 25px;
  color: var(--color-orange);
}

@media (max-width: 960px) {
  .paragraph--text-image  {
    padding: 100px 0;
  }
  .paragraph--text-image .inner-container {
    width: 100%;
  }
  .paragraph--text-image + .paragraph--text-image {
    margin-top: -20px;
  }
  .text-image__content-wrapper  {
    flex-direction: column;
  }
  .paragraph--text-image__right .text-image__content-wrapper {
    flex-direction: column-reverse;
  }
  .text-image__image  {
    width: 100%;
  }
  .text-image__image img  {
    width: 100%;
    height: auto;
  }
  .text-image__body-wrapper   {
    width: 90%;
    margin-left: 0;
    margin-top: -40px;
  }
  [dir="rtl"] .text-image__body-wrapper   {
    margin-left: 0;
    margin-right: 0;
    margin-top: -40px;
  }
  .text-image__body {
    padding: 30px;
    backdrop-filter: none;
  }
  .paragraph--text-image__right .text-image__body-wrapper {
    margin-left: 0;
    margin-right: 0;
    margin-top: -40px;
    z-index: 2;
  }
  [dir="rtl"] .paragraph--text-image__right .text-image__body-wrapper {
    margin-right: 0;
    margin-left: 0;
    margin-top: -40px;
  }
}


/* Text List */
.paragraph--text-list {
  padding: 100px 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.text-list__content-wrapper {
  background-color: var(--color-black);
  padding: 50px;
}
.text-list__header  {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.text-list--description {
  margin-left: 23px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
[dir="rtl"] .text-list--description {
  margin-left: 0;
  margin-right: 23px;
}
.text-list--description p  {
  width: 45%;
}
.text-list__blocks  {
  margin-left: 23px;
}
[dir="rtl"] .text-list__blocks  {
  margin-left: 0;
  margin-right: 23px;
}
.text-list__blocks-wrapper  {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.text-list__blocks-wrapper > div  {
  width: 45%;
}
.text-list__blocks__block {
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
}
.text-list__blocks__block > div {
  width: calc(100% - 17px);
}
.text-list__blocks__block:before  {
  content: '';
  width: 17px;
  height: 17px;
  background-image: url('../images/icons/list-bullet.png');
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 4px;
}

@media (max-width: 960px) {
  .paragraph--text-list {
    padding: 50px 0;
  }
  .text-list__content-wrapper {
    padding: 40px 30px;
  }
  .text-list__header  {
    margin-bottom: 30px;
  }
  .text-list--description {
    flex-direction: column;
    gap: 20px;
  }
  .text-list--description p  {
    width: 100%;
  }
  .text-list__blocks-wrapper  {
    flex-direction: column;
  }
  .text-list__blocks-wrapper > div  {
    width: 100%;
  }
}

/* Accordion Items */
.paragraph--accordion-items {
  padding: 100px 0;
  background-color: var(--color-light-grey);
}
.accordion-items__content-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.accordion-items__body  {
  width: 43%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.accordion-items--text  {
  margin-left: 23px;
}
[dir="rtl"] .accordion-items--text  {
  margin-left: 0;
  margin-right: 23px;
  line-height: 29px;
}
.accordion-items--text p + p  {
  margin-top: 20px;
}
.accordion-items--text a  {
  color: inherit;
  border-bottom: 2px solid;
}
.accordion-items--text a:hover  {
  color: var(--color-orange);
}
.accordion-items__blocks  {
  width: 50%;
}
.accordion-items__blocks-wrapper  {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accordion-items__blocks__block {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-light-grey);
  cursor: pointer;
}
.accordion-items__blocks__block.active  {
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.accordion-items__blocks__block:hover {
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}

.accordion-items__blocks__block__header {
  display: flex;
  align-items: center;
}
.accordion-items__blocks__block__image  {
  width: 43px;
  margin-right: 14px;
}
[dir="rtl"] .accordion-items__blocks__block__image  {
  margin-right: 0;
  margin-left: 14px;
}
.accordion-items__blocks__block__arrow  {
  width: 38px;
  height: 38px;
  background-image: url('../images/icons/arrow_black.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-light-grey);
  transform: rotate(90deg);
  margin-left: auto;
}
[dir="rtl"] .accordion-items__blocks__block__arrow  {
  margin-left: unset;
  margin-right: auto;
}
.accordion-items__blocks__block__body {
  margin: 0 57px;
  display: none;
}
.accordion-items__blocks__block.active .accordion-items__blocks__block__body {
  display: block;
}
.accordion-items__blocks__block__title  {
  width: 72%;
}
.accordion-items__blocks__block.active .accordion-items__blocks__block__arrow {
  transform: rotate(-90deg);
}
.accordion-items__blocks__block:hover .accordion-items__blocks__block__arrow {
  background-image: url('../images/icons/arrow_white.png');
  background-color: var(--color-orange);
}
.accordion-items__blocks__block:hover .accordion-items__blocks__block__title {
  color: var(--color-orange);
}

@media (max-width: 960px) {
  .paragraph--accordion-items {
    padding: 80px 0;
  }
  .accordion-items__content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .accordion-items__body  {
    width: 100%;
  }
  .accordion-items__blocks  {
    width: 100%;
  }
  .accordion-items__blocks__block {
    margin-left: -5%;
    margin-right: -5%;
    border: none;
  }
  .accordion-items__blocks__block__image  {
    margin-right: 10px;
  }
  [dir="rtl"] .accordion-items__blocks__block__image  {
    margin-right: 0;
    margin-left: 10px;
  }
  .accordion-items__blocks__block__body {
    margin: 0 53px;
  }
}

/*  TIMELINE  */
.paragraph--timeline  {
  padding: 150px 0;
}
.timeline-body  {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: center;
}
.timeline-wrapper {
  position: relative;
  margin-top: 70px;
}

.timeline-items .timeline-item {
  position: relative;
}
.timeline-items .timeline-item .timeline-item--year {
  position: relative;
  padding: 0 50px;
  display: block;
  width: 100%;
  height: 50px;
}
.timeline-items .timeline-item .timeline-item--year:before {
  background-color: var(--color-light-grey);
  height: 3px;
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  top: 100%;
  left: 0;
}
.timeline-items .timeline-item .timeline-item--year:after {
  content: '';
  position: absolute;
  top: calc(100% - 6.5px);
  left: 50px;
  width: 7px;
  height: 7px;
  background-color: var(--color-white);
  border: 5px solid var(--color-orange);
  border-radius: 50%;
}
.timeline-item--event {
  margin-top: 38px;
  padding-top: 10px;
  border-top: 3px solid var(--color-raisen-black);
  max-width: 185px;
  margin: 38px 50px 0 50px;
}

/* TIMELINE ARROWS */
.timeline-arrow {
  position: absolute;
  top: 42px;
  right: -20px;
  width: 11px;
  height: 19px;
  display: inline-block;
  background-color: transparent;
  background-image: url(../images/icons/next_black.png);
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
  border: none;
  overflow: hidden;
}
[dir="rtl"] .timeline-arrow {
  right: auto;
  left: -20px;
  transform: rotate(180deg);
}
.timeline-arrow.timeline-arrow__prev {
  right: auto;
  left: -20px;
  transform: rotate(180deg);
}
[dir="rtl"] .timeline-arrow.timeline-arrow__prev{
  right: -20px;
  left: auto;
  transform: rotate(0);
}
.timeline-arrow.disabled {
  opacity: .5;
}

@media screen and (max-width: 768px) {
  .paragraph--timeline  {
    padding: 100px 0;
  }
  .timeline-arrows  {
    position: absolute;
    top: 0;
    right: 5%;
    width: 40px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
  }
  [dir="rtl"] .timeline-arrows  {
    right: auto;
    left: 5%;
  }
  .timeline-arrow {
    position: static;
    margin: 0 10px;
  }
}


/* Highlighted Blocks */
.paragraph--highlighted-blocks  {
  background-color: var(--color-white);
  padding: 100px 0;
}
.highlighted-blocks__header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.highlighted-blocks__header > div,
.highlighted-blocks__header > h3 {
  width: 45%;
}
.highlighted-blocks__blocks-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.highlighted-blocks--teaser   {
  line-height: 29px;
}
.highlighted-blocks__blocks__block  {
  padding: 50px;
  background: var(--color-light-grey);
  border: 1px solid var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: calc(100% / 3 );
}
.highlighted-blocks__blocks__block:hover  {
  background: var(--color-white);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  z-index: 10;
}
.highlighted-blocks__blocks__block.title-block  {
  background: var(--color-white);
  border: none;
  padding: 0;
}
.highlighted-blocks__blocks__block.title-block:hover  {
  box-shadow: none;
}
.highlighted-blocks__blocks__block__image {
  width: auto;
  max-height: 65px;
}
.highlighted-blocks__blocks__block__text  {
  line-height: 29px;
}

@media (max-width: 960px) {
  .paragraph--highlighted-blocks  {
    padding: 100px 0;
  }
  .highlighted-blocks__header {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
  }
  .highlighted-blocks__header > div,
  .highlighted-blocks__header > h3 {
    width: 100%;
  }
  .highlighted-blocks__blocks-wrapper {
    flex-direction: column;
  }
  .highlighted-blocks__blocks__block  {
    padding: 50px 30px;
    width: 100%;
  }
  .highlighted-blocks__blocks__block.title-block  {
    margin-bottom: 25px;
  }
}

/* Highlighted Text and Image*/
.paragraph--highlighted-text-image  {
  padding: 100px 0;
  background: var(--color-light-grey);
}
.highlighted-text-image__content-wrapper  {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.highlighted-text-image__content-wrapper > div  {
  width: 45%;
}
.highlighted-text-image__body {
  display: flex;
  flex-flow: column nowrap;
  gap: 25px;
}
.highlighted-text-image__title  {
  max-width: 80%;
}
.highlighted-text-image__link {
  margin-top: auto;
  margin-left: 23px;
}
[dir="rtl"] .highlighted-text-image__link {
  margin-left: 0;
  margin-right: 23px;
}
.highlighted-text-image__text {
  line-height: 29px;
  margin-left: 23px;
}
[dir="rtl"] .highlighted-text-image__text {
  margin-left: 0;
  margin-right: 23px;
}
.highlighted-text-image__text p + p  {
  margin-bottom: 20px;
}
.highlighted-text-image__text ul  {
  margin: 20px;
  list-style: none;
}
.highlighted-text-image__text ul li {
  margin-bottom: 10px;
}
.highlighted-text-image__text ul li:last-child  {
  margin-bottom: 0;
}
.highlighted-text-image__text ul li:before {
  content: "\2022";
  color: var(--color-orange);
  font-weight: bold;
  display: inline-block;
  width: 5px;
  margin-right: 10px;
}
[dir="rtl"] .highlighted-text-image__text ul li:before {
  margin-right: 0;
  margin-left: 10px;
}
.highlighted-text-image__text strong  {
  font-family: 'BodyBold', 'Open Sans', sans-serif;
}

@media (max-width: 960px) {
  .paragraph--highlighted-text-image  {
    padding: 80px 0;
  }
  .highlighted-text-image__content-wrapper  {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .highlighted-text-image__content-wrapper > div  {
    width: 100%;
  }
  .highlighted-text-image__title  {
    max-width: 100%;
  }
}

/* Contacts Forms Links Block */
.contact-forms-links-block__content  {
  display: flex;
}
.contact-forms-links-block__content > div  {
  width: 50%;
}
.contact-forms-links__info  {
  background-size: cover;
  display: flex;
  justify-content: center;
  padding: 50px 0;
}
.contact-forms-links__info-content  {
  width: 85%;
  max-width: 620px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0px 25px 45px rgba(172, 174, 179, 0.33);
  backdrop-filter: blur(5px);
}
.contact-forms-links__info__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 23px;
}
.contact-forms-links__info__label {
  text-transform: uppercase;
}
.contact-forms-links__info__data span {
  display: inline-block;
}
.contact-forms-links__info__data span:first-child {
  width: 25%;
}
.contact-forms-links__links {
  background: var(--color-light-grey);
  padding: 50px 0;
  display: flex;
  justify-content: center;
}
.contact-forms-links__links-content {
  width: 85%;
  max-width: 620px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-forms-links__links-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 23px;
}

.contact-social-pages  {
  margin: 90px 23px 0 23px;
}
.contact-form__address .contact-social-pages  {
  margin: 90px 0 0 0;
}
.contact-social-links  {
  display: flex;
  gap: 30px;
}
.social-links--link a  {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.social-links--link.facebook a {
  background-image: url('../images/social/facebook.png');
  width: 7px;
  height: 19px;
}
.social-links--link.twitter a {
  background-image: url('../images/social/twitter.png');
  width: 24px;
  height: 19px;
}
.social-links--link.instagram a {
  background-image: url('../images/social/instagram.png');
  width: 19px;
  height: 19px;
}
.social-links--link.youtube a {
  background-image: url('../images/social/youtube.png');
  width: 19px;
  height: 19px;
}
.social-links--link.linkedin a {
  background-image: url('../images/social/linkedin.png');
  width: 19px;
  height: 19px;
}
.social-links--link.facebook:hover a {
  background-image: url('../images/social/facebook_hover.png');
}
.social-links--link.twitter:hover a {
  background-image: url('../images/social/twitter_hover.png');
}
.social-links--link.instagram:hover a {
  background-image: url('../images/social/instagram_hover.png');
}
.social-links--link.youtube:hover a {
  background-image: url('../images/social/youtube_hover.png');
}
.social-links--link.linkedin:hover a {
  background-image: url('../images/social/linkedin_hover.png');
}

@media (max-width: 960px) {
  .contact-forms-links-block__content  {
    flex-direction: column;

  }
  .contact-forms-links-block__content > div  {
    width: 100%;
  }
  .contact-forms-links__info  {
    padding: 50px 0;
  }
  .contact-forms-links__info-content  {
    width: 90%;
    padding: 50px 30px;
    gap: 30px;
  }
  .contact-forms-links__links  {
    padding: 50px 0;
  }
  .contact-forms-links__links-content  {
    width: 90%;
    padding: 50px 30px;
    gap: 30px;
  }
}



.news .main-image img {
  max-height: 400px;
  height: auto;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
}
.reference .main-image img {
  max-height: 400px;
  height: auto;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
}
.promotion .main-image img {
  max-height: 400px;
  height: auto;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
}
.reference-file {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.reference-file--image  {
  width: 30px;
  height: 40px;
  background: url(/themes/spring/images/pdf.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.reference-file--file {
  margin: 0 20px;
}

.paragraph--video-embed   {
  margin-bottom: 40px;
}
.content-block-video  {
  margin-bottom: 30px;
}
.paragraph--video-embed__full_width .content-block-video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.paragraph--video-embed__full_width .content-block-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media (max-width: 960px){
  .reference-item {
    flex-direction: column;
    margin: 40px 0;
  }
  .reference-item .main-image {
    width: 100%;
    margin-bottom: 20px;
  }
  .reference-right-block  {
    width: 100%;
  }
}


/*------------------------------------*\
  # Homepage
\*------------------------------------*/
.home-section__title {
  max-width: 500px;
  display: flex;
  position: relative;
  margin: 0 0 40px 0;
}
.home-section__title.center  {
  text-align: center;
  margin: 0 auto 40px auto;
  width: fit-content;
}
@media (max-width: 960px) {
  .home-section__title {
    margin: 0 0 20px 0;
  }
  .home-section__title.center  {
    margin: 0 auto 20px auto;
  }
}

/** Hero Section **/
.home-section__hero {
  position: relative;
}
.home-search-form-container {
  position: absolute;
  bottom: -31px;
  width: 100%;
}
.home-search-form-wrapper {
  width: 66.1667%;
  margin: 0 auto;
}
.home-search-form-container .search-form  {
  flex-direction: row;
}
.home-search-form-container .search-form .form-actions  {
  background-color: var(--color-orange);
}
.home-search-form-container .search-form .form-actions:hover  {
  box-shadow: 0px 10px 20px rgba(240, 108, 56, 0.63);
}
.home-search-form-container .search-form .form-actions input  {
  background-image: url(../images/icons/search_white.png);
}

/** Home -- Hero Node **/
.home-hero  {
  position: relative;
}
.home-hero__background  {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 130px 0;
  height: 715px;
}
.home-hero-info {
  padding: 76px 102px 63px 120px;
  max-width: 710px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725);
  backdrop-filter: blur(12.5px);
}
.home-hero-info--subtitle {
  margin-bottom: 5px;
  text-transform: uppercase;
}
.home-hero-info--title  {
  margin-bottom: 30px;
}
.home-hero-info--body  {
  line-height: 1.4;
  margin-bottom: 30px;
}

@media (max-width: 1680px){
  .home-hero__background  {
    height: 625px;
    padding: 100px 0 130px;
  }
}
@media (max-width: 1440px){
  .home-hero__background  {
    height: 535px;
    padding: 100px 0 130px;
  }
}
@media (max-width: 1280px){
  .home-hero__background  {
    height: auto;
    padding: 75px 0 130px;
  }
  .home-hero-info {
    padding: 50px 50px 50px 120px;
  }
}

@media (max-width: 960px){
  .home-hero__background  {
    padding: 75px 0 130px;
  }
  .home-hero-info   {
    padding: 40px 5%;
    max-width: 90%;
    margin: 0 auto;
    top: auto;
    left: auto;
  }
  .home-search-form-wrapper {
    width: 100%;
  }
}

/** Home -- About Section **/
.home-section__about  {
  background-color: var(--color-light-grey);
  padding: 120px 0 100px 0;
}
.about-section-content  {
  display: flex;
  justify-content: space-between;
}
.about-section-content .about-section__image  {
  width: 49.33%;
}
.about-section-content .about-section__image img  {
  max-width: 100%;
  height: auto;
}
.about-section-content .about-section__body {
  width: 40.67%;
  line-height: 29px;
}
.about-section-content .about-section__body__text p {
  margin-bottom: 30px;
}
.about-section-content .about-section__body__link {
  margin-top: 10px;
}

@media(max-width: 960px)  {
  .about-section-content  {
    flex-direction: column;
    gap: 30px;
  }
  .about-section-content .about-section__image  {
    width: 100%;
  }
  .about-section-content .about-section__body {
    width: 100%;
  }
}

/** Home -- Products Categories Block **/
.home-section__products {
  margin-top: 100px;
}
.product-categories-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.product-category-block-item  {
  width: 25%;
  padding: 40px;
  background: var(--color-light-grey);
  border: 1px solid #FFFFFF;
}
.product-category-block-item:hover  {
  background: #FFFFFF;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  z-index: 1;
}
.product-category-block-item a  {
  color: #211D22;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-category-block-item__image img {
  max-height: 100px;
  width: auto;
}
.product-category-block-item__title {
  width: 80%;
  margin-top: 33px;
  text-align: center;
}

@media (max-width: 960px){
  .home-section__products {
    margin-top: 100px;
  }
  .product-category-block-item {
    width: 50%;
    padding: 30px 15px;
  }
  .product-category-block-item__image img {
    max-height: 75px;
  }
  .product-category-block-item__title {
    width: 90%;
    margin-top: 10px;
    font-size: 16px;
  }
  .product-category-block-item .product-category-block-item--product  {
    display: none;
  }
}

/* Home -- Partners Section */
.home-section__partners {
  padding: 80px 0;
}
.partners-section-content {
  position: relative;
}
.home-section__partners .views-row .partner--grid-item  {
  width: 100%;
  display: flex;
  justify-content: center;
  border-right: 1px solid #D7DDE0;
}
[dir="rtl"] .home-section__partners .views-row .partner--grid-item  {
  border-right: none;
  border-left: 1px solid #D7DDE0;
}
.home-section__partners .partner-image  {
  filter: grayscale(100%);
}
.home-section__partners .views-row:hover .partner-image  {
  filter: grayscale(0);
}
.home-section__partners .partner-image img  {
  max-height: 90px;
  width: auto;
}
.partners-section-content .slider-arrows  {
  position: absolute;
  top: -105px;
  right: 0;
}
[dir="rtl"] .partners-section-content .slider-arrows  {
  right: auto;
  left: 0;
}

@media (max-width: 960px){
  .partners-section-content .slider-arrows  {
    position: static;
    margin: 30px auto 0;
  }
}

/*** Home - Tools Sections   ***/
.home-section__tools  {
  background: linear-gradient(180deg, rgba(242, 243, 245, 0.41) 0%, rgba(242, 243, 245, 0.3) 100%, #FDFDFD 60.1%);
  padding: 100px 0;
}
.home-section__teaser {
  max-width: 700px;
  line-height: 32px;
}
.home-section__teaser.center  {
  margin: 0 auto;
  text-align: center;
}
.tools-section__blocks  {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px 20px;
  flex-wrap: wrap;
}
.tools-section__blocks__block {
  width: calc((100% / 3) - (40px / 3));
  background-color: var(--color-white);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-light-grey);
  border-bottom: 4px solid var(--color-orange);
  transition: all 0.5s;
}
.tools-section__blocks__block__top  {
  flex: 1;
  margin-bottom: 40px;
}
.tools-section__blocks__block__title  {
  margin-bottom: 15px;
  transition: all 0.5s;
}
.tools-section__blocks__block__teaser {
  line-height: 29px;
  transition: all 0.5s;
}
.tools-section__blocks__block__button {
  height: 50px;
}
.tools-section__blocks__block__button a {
  height: 50px;
  width: 50px;
  background-color: var(--color-orange);
  display: block;
  transition: all 0.5s;
}
.icon__plus {
  background-image: url('../images/icons/plus_white.png');
  background-repeat: no-repeat;
  background-position: center;
}
.tools-section__blocks__block:hover {
  background-color: var(--color-orange);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  border: 1px solid var(--color-orange);
  border-bottom: 4px solid var(--color-orange);
}
.tools-section__blocks__block:hover .tools-section__blocks__block__title  {
  color: var(--color-white);
}
.tools-section__blocks__block:hover .tools-section__blocks__block__teaser  {
  color: var(--color-white);
}
.tools-section__blocks__block:hover .tools-section__blocks__block__button a  {
  background-color: var(--color-white);
}
.tools-section__blocks__block:hover .icon__plus  {
  background-image: url('../images/icons/plus_orange.png');
}

@media (max-width: 960px) {
  .home-section__tools  {
    padding: 80px 0;
  }
  .tools-section__blocks  {
    flex-direction: column;
  }
  .tools-section__blocks__block  {
    width: 100%;
  }
}


.mobile-app-info-block  {
  margin-top: 120px;
}
.mobile-block-container  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.mobile-block-data--left {
  width: 41.6667%;
}
.mobile-app-info-block--title {
  margin-bottom: 30px;
}
.mobile-app-info-block--subtitle  {
  margin: 0 23px 30px 23px;
  line-height: 32px;
}
.mobile-app-info-block--links-title {
  margin: 0 23px;
}
.mobile-app-info-block--links  {
  display: flex;
  margin: 15px 23px 0 23px;
}
.mobile-app-info-block--links--link a {
  width: 120px;
  height: 40px;
  display: block;
  margin-right: 10px;
}
[dir="rtl"] .mobile-app-info-block--links--link a {
  margin-right: 0;
  margin-left: 10px;
}
.mobile-app-info-block--links--link.apple a {
  background: url(../images/apple-store.png) no-repeat;
}
.mobile-app-info-block--links--link.google a {
  background: url(../images/google-play.png) no-repeat;
}
.mobile-block-data--right {
  width: 45.5833%;
  display: flex;
  gap: 45px;
}
.mobile-block-data--image img {
}

@media (max-width: 960px){
  .mobile-block-container {
    flex-direction: column;
  }
  .mobile-block-data--left {
    width: 100%;
  }
  .mobile-block-data--right {
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
  }
}

/***  Home - Case Studies  ***/
.home-section__references {
  margin: 100px 0;
}
.view-display-id-home_references .slick-slide {
  margin: 0 5px;
}
.view-display-id-home_references .slick-list {
  margin: 0 -5px;
}
.view-display-id-home_references .slick-track {
  display: flex !important;
}
.view-display-id-home_references .slick-slide {
  height: inherit !important;
}
.view-display-id-home_references .slick-slide > div  {
  height: 100%;
}
.reference--featured  {
  width: 100%;
  height: auto;
}
.reference--featured a  {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 72.25%;
  position: relative;
}
.reference-featured-image  {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.reference-shadow-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(359.25deg, rgba(0, 0, 0, 0.36) 0.38%, rgba(0, 0, 0, 0) 50%);
}
.reference-featured-info  {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
[dir="rtl"] .reference-featured-info    {
  left: auto;
  right: 40px;
}
.reference--featured:hover .reference-name  {
  color: var(--color-orange);
}

.home-section__references__footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 960px){
  .reference-featured-info  {
    bottom: 20px;
    left: 20px;
  }
  [dir="rtl"] .reference-featured-info    {
    left: auto;
    right: 20px;
  }
}


/***   Home - News Section   ***/
.home-section__news {
  background: linear-gradient(180deg, rgba(242, 243, 245, 0.41) 0%, rgba(242, 243, 245, 0.3) 27.2%, #FDFDFD 60.1%);
  padding: 100px 0;
}
.view-display-id-home_news  .view-content {
  display: flex;
  justify-content: space-between;
  gap: 30px 20px;
}
.view-display-id-home_news .views-row {
  width: 33.3333%;
}
@media (max-width: 960px){
  .home-section__news {
    padding: 60px 0;
  }
  .view-display-id-home_news  .view-content {
    flex-direction: column;
  }
  .view-display-id-home_news .views-row {
    width: 100%;
  }
}


/*------------------------------------*\
  # Footer Top
\*------------------------------------*/

/* Contact Block */
.contact-link-block {
  background-color: var(--color-orange);
}
.contact-link-block-wrapper {
  display: flex;
  align-items: center;
}
.contact-link-block__left {
  max-width: 40%;
  padding: 80px 0;
}
.contact-link-block__title  {
  margin-bottom: 20px;
}
.contact-link-block__teaser {
  margin: 0 23px 30px 23px;
}
.contact-link-block__link {
  margin: 0 23px;
  width: fit-content;
}
.contact-link-block__link .link-with-arrow:hover .link-arrow__white {
  background-color: var(--color-white);
  background-image: url(../images/icons/arrow_black.png);
  box-shadow: 0px 10px 20px #CE440E;
}

@media (max-width: 960px){
  .contact-link-block__left {
    max-width: 100%;
    padding: 40px 0;
  }
  .contact-link-block-wrapper {
    flex-direction: column;
  }
}


/* Newsletter Block */
.newsletter-subscription-block  {
  padding: 100px 0;
}
.newsletter-subscription-block-wrapper  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 996px;
  margin: 0 auto;
}
.newsletter-subscription-block__title {
  width: 48%;
}
.newsletter-subscription-block__form {
  width: 42.5%;
}
.newsletter-subscription-block__form  form  {
  width: 100%;
}
.newsletter-subscription-block__form .mailchimp-newsletter-mergefields {
  width: calc(100% - 50px);
  height: 50px;
  border: 1px solid var(--color-geyser);
  display: inline-block;
  float: left;
}
[dir="rtl"] .newsletter-subscription-block__form .mailchimp-newsletter-mergefields {
  float: right;
}
.newsletter-subscription-block__form .form-item input {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  background-color: #ffffff;
  border: none;
}
.newsletter-subscription-block__form .form-item input::placeholder {
  color: #9DAFBD;
}
.newsletter-subscription-block__form .form-actions {
  width: 50px;
  height: 50px;
  margin: 0;
  display: inline-block;
  float: left;
}
[dir="rtl"] .newsletter-subscription-block__form .form-actions {
  float: right;
}
.newsletter-subscription-block__form .form-actions input {
  width: 50px;
  height: 50px;
  background-color: var(--color-orange);
  background-image: url('../images/icons/send_white.png');
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  border: none;
}
[dir="rtl"] .newsletter-subscription-block__form .form-actions input  {
  transform: rotate(-90deg);
}
.newsletter-subscription-block__form .form-actions input:hover {
  box-shadow: 0px 10px 20px rgba(240, 108, 56, 0.63);
}
.newsletter-subscription-block__form .status-message-close {
  display: none;
}
.newsletter-subscription-block__form .simple-status-messages {
  margin-bottom: 10px;
  font-family: 'TitleReg' , 'Open Sans', sans-serif;
  font-size: 16px;
}
.newsletter-subscription-block__form .simple-status-messages .messages--error  {
  color: red;
}
.newsletter-subscription-block__form .simple-status-messages .messages--status  {
  color: green;
}

@media (max-width: 960px){
  .newsletter-subscription-block-wrapper {
    flex-direction: column;
    gap: 25px;
  }
  .newsletter-subscription-block__title   {
    width: 100%;
  }
  .newsletter-subscription-block__form  {
    width: 100%;
  }
}

/*------------------------------------*\
  # Footer
\*------------------------------------*/
.footer-container {
  background-color: var(--color-black);
  padding: 54px 0;
}
.footer-logo  {
  margin-bottom: 40px;
}
.footer-contact-menu-wrapper  {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.footer-contact-info  {
  width: 20.4%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer-products-menu {
  width: 31%;
}
.footer-company-menus {
  width: 24.5%;
}
.footer-menu-block__title {
  margin-bottom: 30px;
  position: relative;
}
.footer-menu-block__title:before  {
  content: '';
  width: 2px;
  height: 12px;
  position: absolute;
  left: -6px;
  top: 4px;
  background-color: var(--color-orange);
}
[dir="rtl"] .footer-menu-block__title:before  {
  left: auto;
  right: -6px;
}
.footer-company-menus {
  display: flex;
  justify-content: space-between;
}
.footer-products-menu ul  {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-products-menu ul li {
  width: 40%;
}
.footer-menu-block__items li  {
  margin-bottom: 15px;
}
.footer-menu-block__items li a  {
  color: var(--color-white);
}
.footer-menu-block__items li a:hover,
.footer-menu-block__items li.is-active > a,
.footer-menu-block__items li a.is-active  {
  color: var(--color-orange);
}

.footer-copyrights  {
  border-top: 1px solid var(--color-white);
  padding: 20px 0;
  opacity: 0.6;
}

.footer-social-pages  {
  margin: 40px 0;
}
.footer-social-links  {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer-social-links--link  {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 23px;
  height: 19px;
}

@media (max-width: 960px){
  .footer-contact-menu-wrapper  {
    flex-direction: column;
    gap: 50px;
  }
  .footer-contact-info  {
    width: 100%;
  }
  .footer-products-menu {
    width: 100%;
  }
  .footer-products-menu ul li {
    width: 50%;
  }
  .footer-company-menus {
    width: 100%;
  }
  footer-company-menus > div  {
    width: 50%;
  }
}




/*------------------------------------*\
  # Selector App
\*------------------------------------*/
/*** Main Page  ***/
.app-selector {
}
.app-selector__content  {
  margin: 100px 0;
}
.app-blocks {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.app-blocks--block  {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-blocks--block:nth-child(2) {
  flex-direction: row-reverse;
}
.block-image  {
  width: 49.167%;
}
.block-image img  {
  width: 100%;
  height: auto;
}
.app-blocks--block--info {
  width: 40.667%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.app-selector__mobile-block {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(242, 243, 245, 0.41) 0%, rgba(242, 243, 245, 0.3) 27.2%, #FDFDFD 60.1%);
}
.app-selector__mobile-block .mobile-app-info-block  {
  margin: 0;
}

@media (max-width: 960px){
  .app-blocks {
    gap: 100px;
  }
  .app-blocks--block  {
    flex-direction: column-reverse;
    gap: 50px;
  }
  .app-blocks--block:nth-child(2) {
    flex-direction: column-reverse;
  }
  .block-image  {
    width: 100%;
  }
  .app-blocks--block--info {
    width: 100%;
  }
}

/*------------------------------------*\
  # Product Selector Page.
\*------------------------------------*/
.app-product-selector {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.app-selector .header-title {
  margin-bottom: 35px;
}
.initial-block  {
  width: 20%;
}
.initial-block--item  {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  transition: 1s;
  cursor: pointer;
}
.initial-block--item.selected {
  background: transparent;
}
.initial-block--item .initial-block--item--title  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.initial-block--item .initial-block--item--title:after  {
  content: '';
  width: 11px;
  height: 10px;
  background-image: url('../images/icons/arrow_black.png');
  background-repeat: no-repeat;
  background-size: contain;
}
.initial-block--item.selected .initial-block--item--title {
  color: var(--color-orange);
  padding-left: 10px;
}
[dir="rtl"] .initial-block--item.selected .initial-block--item--title {
  padding-right: 10px;
  padding-left: 0;
}
.initial-block--item.selected .initial-block--item--title:after  {
  background-image: url('../images/icons/arrow_orange.png');
}
.initial-block--item--image  {
  display: none;
}
.app-product-selector.inactive .initial-block {
  width: 100%;
}
.app-product-selector.inactive .initial-block--item {
  width: 100%;
  height: 80px;
  margin-bottom: 20px;
  border: 1px solid #92979d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.app-product-selector.inactive .initial-block--item:after {
  content: "";
  margin: 0 20px;
  width: 11px;
  height: 19px;
  background-image: url('../images/icons/next_black.png');
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}
.app-product-selector.inactive .initial-block--item--image  {
  display: block;
  height: 80px;
  width: 23%;
  background-size: cover;
  background-position: center;
}
.app-product-selector.inactive .initial-block--item--title  {
  width: 74%;
  margin: 0 30px;
}
.app-product-selector.inactive .initial-block--item--title:after  {
  content: none;
}

.app-product-selector.inactive .selector-vocabularies {
  display: none;
}
.selector-vocabularies  {
  width: 74%;
  transition: 1s;
}
.selector-vocabularies--vocabulary  {
  margin-bottom: 50px;
  transition: 1s;
}
.selector-vocabularies--vocabulary.inactive  {
  display: none;
}
.selector-vocabularies--vocabulary--title {
  margin-bottom: 30px;
}
.selector-vocabularies--vocabulary--items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.selector-vocabularies--vocabulary--items::after  {
  content: "";
  width: 30%;
}
.selector-vocabularies--vocabulary--items--item {
  width: 30%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--color-light-grey);
  cursor: pointer;
}
.selector-vocabularies--vocabulary--items.list .selector-vocabularies--vocabulary--items--item  {
  height: 60px;
}
.selector-vocabularies--vocabulary--items--item.selected,
.selector-vocabularies--vocabulary--items--item:hover {
  border: none;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802), inset 0px -4px 0px #F06C38;
}
.selector-vocabularies--vocabulary--items--item.disabled  {
  display: none;
}
.selector-vocabularies--vocabulary--items--item--info {
  height: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.selector-vocabularies--vocabulary--items--item--image  {
  height: 87px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.selector-vocabularies--vocabulary--items.list .selector-vocabularies--vocabulary--items--item--image {
  display: none;
}
.selector-vocabularies--vocabulary--items--item--title  {
  max-width: 90%;
}
.selector-vocabularies--vocabulary--items--item--subtitle {
}

.selector-finish-button {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.selector-finish-button.disabled {
  display: none;
}
.selector-finish-button a {
}
.selector-finish-button.inactive a  {
  color: var(--color-light-grey);
}

@media (max-width: 960px){
  .app-product-selector {
    flex-direction: column;
  }
  .initial-block  {
    width: 100%;
  }
  .initial-block--item  {
    height: 50px;
    display: none;
  }
  .initial-block--item.selected {
    background: #ff6c2c;
    display: block;
    margin-bottom: 40px;
    line-height: 50px;
  }
  .initial-block--item.selected .initial-block--item--title {
    color: #ffffff;
  }
  .initial-block--item--image  {
    display: none;
  }
  .app-product-selector.inactive .initial-block {
    width: 100%;
  }
  .app-product-selector.inactive .initial-block--item {
    width: 100%;
    height: 50px;
    display: flex;
  }
  .app-product-selector.inactive .initial-block--item--image  {
    display: block;
    height: 50px;
    width: 50%;
    background-size: cover;
    background-position: center;
  }
  .app-product-selector.inactive .initial-block--item--title  {
    width: 50%;
    margin: 0 15px;
  }

  .selector-vocabularies  {
    width: 100%;
  }
  .selector-vocabularies--vocabulary--items--item {
    width: 48%;
  }
}

/*** Slector Products List  ***/
.app-products-list  {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.products-question  {
  margin-bottom: 40px;
  max-width: 50%;
}
.app-products-list--product {
  width: 45%;
}
.app-products-list--product--info {
  position: relative;
  padding-bottom: 50px;
}
.app-products-list--product--info .product-subtitle {
  line-height: 29px;
}
.app-hints  {
  margin-top: 80px;
  width: 90%;
}
.app-hints--title {
  margin-bottom: 20px;
}
.app-hints--list  {
  list-style: decimal;
  list-style-position: inside;
  margin-left: 15px;
  line-height: 29px;
}
.app-hints--list--hint  {
  color: #92979d;
  margin-bottom: 10px;
}
.app-hints--hints ol {
  list-style: decimal;
  list-style-position: outside;
  padding: 0 20px;
}
.app-hints--hints li  {
  margin: 5px 0;
}

.app-product-grid-item  {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 35px 20px;
  border: 1px solid var(--color-light-grey);
}
.app-product-grid-item:hover  {
  border: none;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802), inset 0px -4px 0px #F06C38;
}
.app-product-grid-item--info  {
}
.product-image__selector  {
  margin-bottom: 35px;
}
.product-image__selector img  {
  max-height: 250px;
}
.product-label  {
  width: fit-content;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
  padding: 4px 13px;
  margin-left: -20px;
}
.product-label__orange  {
  background: var(--color-orange);
}
.product-label__green  {
  background: #4CAF50;
}
.product-label__transparent {
  color: #666666;
  border: 2px solid #666666;
}
.app-product-grid-item--info .product-image  {
  margin-bottom: 35px;
}
.app-product-grid-item--info .product-name  {
  margin-bottom: 10px;
}
.app-product-grid-item--buttons {
}
.app-inner-link {
  text-decoration: none;
  margin-top: 10px;
  display: block;
}
.app-inner-link:hover {
  text-decoration: underline;
}
.app-products-list--calculate-button  {
  margin-top: 20px;
}

@media (max-width: 960px){
  .products-question  {
    max-width: 100%;
  }
  .app-products-list  {
    flex-direction: column;
    width: 100%;
    gap: 40px;
  }
  .app-product-grid-item  {
    width: 100%;
  }
  .app-hints  {
    margin-top: 40px;
    width: 100%;
  }
}

/*** Product Coverage  ***/
.app-coverage {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.app-coverage--product  {
  width: 25%;
}
.app-coverage--text {
  width: 60%;
  margin: 60px 0;
}
.app-coverage--text--title  {
  margin-bottom: 20px;
}
.app-coverage--text--text {
  color: #92979d;
}
.app-coverage--text--text p {
  margin-bottom: 20px;
}

/***  Calculators Page  ***/
.app-calculators  {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 120px 0 100px;
}
.app-calculators--block {
  width: 30%;
  height: 180px;
  background: #f5f6fa;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 30px 30px 30px;
}
.app-calculators--block a   {
  color: #000000;
}
.app-calculators--block-image {
  max-height: 140px;
  max-width: 140px;
  margin: -30px auto 0 auto;
}
.app-calculators--block-image img {
  max-height: 100%;
  max-width: 100%;
}
.app-calculators--block-title {
  width: 100%;
  position: relative;
  height: 30px;
  margin: 30px 0 10px 0;

}
.app-calculators--block-title:after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
  -o-transform: rotate(135deg);
  border-color: #000000;
  border-style: solid;
  border-width: 1px 0 0 1px;
}
@media (max-width: 930px) {
  .app-calculators  {
    flex-direction: column;
    gap: 100px;
  }
  .app-calculators--block {
    width: 100%;
  }
}


/*** Calculator Products  ***/
.app-calculator-products-list {
  display: flex;
  gap: 35px 4%;
  flex-wrap: wrap;
}
.app-calculator-products-list--product  {
  width: 22%;
}
@media (max-width: 960px) {
  .app-calculator-products-list {
    flex-direction: column;
  }
  .app-calculator-products-list--product  {
    width: 100%;
  }
}

/***  Product Calculator  ***/
.app-calculator-product-calculator  {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0;
}
.app-calculator-product-calculator:after  {
  content: "";
  width: 32.25%;
}
.app-calculator-product-calculator--product {
  width: 23.75%;
}
.app-calculator-product-calculator--form  {
  width: 20%;
}
.app-calculator-product-calculator--results {
  width: 32.25%;
}
.app-calculator-product-calculator--results.hidden  {
  display: none;
}
.general-subtitle {
  margin-bottom: 30px;
}
.calculator-form  {
  /*  display: none;*/
}
.calculator-form.is-active  {
  display: block;
}
.calculator-form form {
  width: 90%;
}
.calculator-form-item {
  margin-bottom: 30px;
}
.calculator-form-item--label  {
  margin-bottom: 10px;
}
.calculator-form-item--input  {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.calculator-form-item--input input  {
  border: 1px solid var(--color-geyser);
  outline: none;
  background: transparent;
  font-family: 'TitleReg' , 'Open Sans', sans-serif;
  font-size: 18px;
  width: 100%;
  height: 50px;
  padding: 0 10px;
}
.calculator-form-button {
  height: 50px;
  background: var(--color-orange);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
  margin-top: 40px;
}
.calculator-form-button.hidden  {
  display: none;
}

.app-calculator-product-calculator--results--info {
  padding: 35px 20px;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.app-calculator-product-calculator--results--title  {
  margin-bottom: 40px;
  text-align: center;
}
.app-calculator-product-calculator--results--results--row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  margin-bottom: 20px;
}
.app-calculator-product-calculator--results--hints  {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--color-fedora);
}
.app-calculator-product-calculator--results--hints p  {
  margin-bottom: 15px;
}
.app-calculator-product-calculator--results--buttons  {
  margin-top: 40px;
}
.app-calculator-product-calculator--results--button {
  width: 100%;
  margin-bottom: 30px;
}
.app-calculator-product-calculator--results--button a {
  display: block;
  width: 100%;
  color: var(--color-white);
  background: var(--color-orange);
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 960px){
  .app-calculator-product-calculator  {
    flex-direction: column;
  }
  .app-calculator-product-calculator--product {
    width: 100%;
    margin: 0;
  }
  .app-calculator-product-calculator--form  {
    width: 100%;
    margin: 40px 0;
  }
  .calculator-form form {
    width: 100%;
  }
  .calculator-form-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .calculator-form-item--label  {
    margin: 0;
    width: 40%;
  }
  .calculator-form-item--input  {
    width: 50%;
    height: 35px;
  }
  .calculator-form-item--input input  {
    width: 70%;
  }
  .app-calculator-product-calculator--results {
    width: 100%;
    margin: 20px 0;
    padding: 20px;
  }
  .app-calculator-product-calculator--results--results--row {
    margin-bottom: 10px;
  }
  .app-calculator-product-calculator--results--hints  {
    margin-top: 40px;
  }
}

/***  Color Selector Page  ***/
.app-selector--color-selector   {
  position: relative;
}
.app-selector--color-selector .products-question  {
  max-width: 100%;
}
.app-color-selector {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.app-color-selector--product  {
  width: 23.75%;
}
.app-color-selector--form {
  width: 40%;
  position: relative;
}
.app-color-selector--form--content  {
  width: 100%;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}
.app-color-selector--colors {
  width: 23.75%
}
.app-color-selector--tiles-area {
  width: 100%;
}
.app-color-selector--tiles-area .tiles-area--row  {
  width: 100%;
  display: flex;
}
.app-color-selector--tiles-area .tiles-area--row .tiles-area--square  {
  width: 20%;
  border: 2px solid #ffffff;
  background-color: #f4f4f4;
  padding-top: calc(20% - 4px);
  background-size: contain;
}
.app-color-selector .app-products-list--calculate-button  {
  max-width: 250px;
  margin-top: 80px;
}
.app-color-selector--form--more-info  {
  margin-top: 50px;
}
.app-color-selector--colors--label  {
  width: 100%;
  margin-bottom: 25px;
}
.app-color-selector--colors--tiles-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.app-color-selector--colors--tiles-list:after  {
  content: "";
  width: 18%;
}
.app-color-selector--colors--tiles-list--item {
  width: 18%;
  padding-top: 18%;
  margin-bottom: 10px;
  cursor: pointer;
}
.app-color-selector--colors--upload {
  margin-top: 20px;
  margin-bottom: 40px;
}
.app-color-selector--colors--upload-button {
  margin-top: 20px;
  background: var(--color-orange);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 100%;
  cursor: pointer;
  max-width: 350px;
}
.app-color-selector--colors--upload-button span  {
  padding-right: 30px;
  background-image: url(../images/icons/upload_white.png);
  background-position: right center;
  background-repeat: no-repeat;
  height: 16px;
  background-size: contain;
}
.app-color-selector--colors--colors-list  {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.app-color-selector--colors--colors-list:after  {
  content: "";
  width: 23%;
}
.app-color-selector--colors--colors-list--item  {
  width: 23%;
  margin-bottom: 20px;
}
.app-color-selector--colors--colors-list--item--color {
  width: 100%;
  padding-top: 90%;
  margin-bottom: 10px;
  cursor: pointer;
}
.app-color-selector--colors--note {
  margin-top: 40px;
}

@media (max-width: 960px){
  .app-color-selector {
    flex-direction: column;
  }
  .app-color-selector--product  {
    width: 100%;
  }
  .app-color-selector--product .app-product-grid-item {
    margin-bottom: 40px;
  }
  .app-color-selector--form {
    width: 100%;
    margin-bottom: 20px;
  }
  .app-color-selector--colors {
    width: 100%;
  }
}

/***  Upload Popup  ***/
.popup-area  {
  position: absolute;
  width: 100%;
  height: auto;
  top: 5%;
  left: 0;
  z-index: 100;
}
.popup-area.hidden {
  display: none;
}
.popup-area .inner-container  {
  height: 100%;
}
.popup-area--page  {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
.popup-area--page.hidden  {
  display: none;
}
.upload-area--page--header  {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #000000;
}
.upload-area--page--header--title {
  margin: 0 40px;
}
.upload-area--close {
  margin: 0 20px;
  height: 18px;
  width: 18px;
  background-image: url(../images/close.png);
  cursor: pointer;
  z-index: 10;
}
.upload-area--page--content  {
  margin: 40px;
  flex: 1;
}
.drag-area  {
  width: 100%;
  height: 100%;
  border: 1px dashed #dadde3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
}
.drag-area.active {
  background: rgba(0, 0, 0, 0.8);
}
.drag-area header {
  margin-bottom: 20px;
}
.drag-area div  {
  margin-bottom: 20px;
}
.crop-area  {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #000000;
  padding: 40px;
  margin: 0;
}
.crop-area--buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.crop-area--buttons .app-color-selector--colors--label  {
  margin: 0 20px;
  max-width: 250px;
  cursor: pointer;
}
#crop-area-cancel {
  background: #ffffff;
  border: 1px solid #ff6c2c;
  color: #ff6c2c;
}
#crop-area-container  {
  width: 400px;
  height: 400px;
}
.cr-slider::-webkit-slider-runnable-track   {
  background: #d8d8d8 !important;
}
.cr-slider::-webkit-slider-thumb    {
  background: #ff6c2c !important;
}

@media screen and (max-width:768px) {
  .popup-area {
    position: fixed;
  }
  .upload-area--page--content {
    margin: 0;
  }
  .crop-area  {
    padding: 0;
  }
  #crop-area-container  {
    width: 100%;
    height: auto;
  }
  .crop-area--buttons {
    flex-direction: column-reverse;
    padding: 10px 0;
  }
  .crop-area--buttons .app-color-selector--colors--label  {
    margin: 5px 0;
  }

}


/**************
Search Results
**************/
.search-results-page__header  {
  background: var(--color-white);
}
.search-results-page__content-wrapper {
  background: var(--color-light-grey);
}
.search-results-page__content {
  padding: 150px 0;
  position: relative;
}
.search-results-page .view  {
  position: static;
}
.search-results-page .view-content  {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.search-results-page .views-row {
  background: var(--color-white);
  padding: 30px;
}
.search-result-item {
  padding: 0;
}
.search-result-item .landing-page-link  {
  margin-bottom: 5px;
}
.search-result-item .result-title {
  margin-bottom: 10px;
}
.search-result-item .result-title strong {
  font-family: 'TitleBold', 'Open Sans', sans-serif;
}
.search-result-item .result-body {
  margin-bottom: 10px;
  max-width: 80%;
}
.search-result-item .result-body strong {
  font-weight: bold;
  color: var(--color-orange);
}
.search-result-item .product-info-files  {
  margin: 0;
  padding: 0;
}

.facets-widget-links ul {
  display:flex;
  justify-content: flex-start;
  gap: 20px 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.facets-widget-links .facet-item__status  {
  display: none;
}
.facets-widget-links .facet-item a  {
  font-family: 'BodyReg', 'Open Sans', sans-serif;
  font-size: 16px;
  color: #9DAFBD;
}
.facets-widget-links .facet-item a:hover,
.facets-widget-links .facet-item a.is-active  {
  color: var(--color-raisen-black);
  border-bottom: 4px solid var(--color-orange);
  padding-bottom: 4px;
}

.search-results-page .view-filters  {
  position: absolute;
  top: -65px;
  width: 100%;
}
.search-results-page .view-filters form {
  width: 66.2%;
  height: 130px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-light-grey);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.search-results-page .view-filters .form-fields  {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.search-results-page .view-filters .form-fields .exposed-field__type  {
  display: none;
}
.search-results-page .view-filters .form-fields .exposed-field__country  {
  display: none;
}
.search-results-page .view-filters .form-fields .exposed-actions  {
  display: none;
}
.search-results-page .view-filters .exposed-field__keywords {
  width: 74.3%;
  display: flex;
}
.search-results-page .view-filters .exposed-field__keywords .form-item-keywords {
  flex: 1;
  display: flex;
}
.search-results-page .view-filters .exposed-field__keywords input {
  background: transparent;
  border: none;
  padding: 0 5px;
  height: 100%;
  width: 100%;
  flex: 1;
  height: 49px;
  border: 1px solid var(--color-geyser);
  font-size: 18px;
  font-family: 'BodyReg', 'Open Sans', sans-serif;
}
.search-results-page .view-filters .exposed-field__keywords .icon__search {
  height: 49px;
  width: 49px;
  background-color: var(--color-orange);
  background-image: url('../images/icons/search_white.png');
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.search-results-page .view-header {
  margin-bottom: 20px;
  font-style: italic;
  color: #332934;
  opacity: 0.7;
}

@media (max-width: 960px){
  .facets-widget-links ul {
    gap: 20px;
  }
  .search-results-page .view-filters  {
    top: -45px;
  }
  .search-results-page .view-filters form {
    width: 100%;
    height: 90px;
  }
  .search-results-page .view-filters .exposed-field__keywords {
    width: 90%;
  }
  .search-result-item .result-body {
    max-width: 100%;
  }
}


/** Pager **/
.pager-container  {
  margin-top: 50px;
}
.js-pager__items  {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pager__item  {
  margin: 0 10px;
  width: fit-content;
}
.pager__item a  {
  width: 25px;
  height: 25px;
  background: var(--color-white);
  color: var(--color-raisen-black);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
[dir="rtl"] .pager__item a  {
  padding-top: 0;
}
.pager__item.is-active a  {
  background: var(--color-orange);
  color: #ffffff;
  font-family: 'TitleBold', 'Open Sans', sans-serif;
}
.pager__item--next a,
.pager__item--last a,
.pager__item--previous a,
.pager__item--first a,
[dir="rtl"] .pager__item--next a,
[dir="rtl"] .pager__item--last a,
[dir="rtl"] .pager__item--previous a,
[dir="rtl"] .pager__item--first a {
  padding: 6px;
}
.pager__item--last a,
.pager__item--first a  {
  width: 28px;
}
.pager__item--next a span,
.pager__item--last a span,
.pager__item--previous a span,
.pager__item--first a span {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(../images/icons/next_black.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.pager__item--previous a span,
.pager__item--first a span  {
  transform: rotate(180deg);
}
[dir="rtl"] .pager__item--next a span,
[dir="rtl"] .pager__item--last a span  {
  transform: rotate(180deg);
}
[dir="rtl"] .pager__item--previous a span,
[dir="rtl"] .pager__item--first a span  {
  transform: rotate(0deg);
}
.pager__item--next a:hover span,
.pager__item--last a:hover span,
.pager__item--previous a:hover span,
.pager__item--first a:hover span {
  background-image: url(../images/icons/next_orange.png);
}
.pager__item--last a span,
.pager__item--first a span{
  background-repeat: repeat-x;
  background-position: unset;
}

.pager--load-more {
  margin-top: 60px;
}
.pager--load-more .pager__item a  {
  display: block;
  padding: 16px 32px;
  background: var(--color-orange);
  color: #ffffff;
  font-family: 'BodyBold', 'Open Sans', sans-serif;
  width: auto;
  height: auto;
}
.pager--load-more .pager__item a:hover  {
  box-shadow: 0px 10px 20px rgba(240, 108, 56, 0.63);
}

/************************
Customer Satisfaction
************************/
.webform-section-title  {
  width: 100%;
  font-family: 'TitleReg' , 'Open Sans', sans-serif;
  font-size: 20px;
  background: #F26520;
  color: #ffffff;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
}
.webform-section-wrapper  {
  width: 100%;
  margin-bottom: 60px;
}
.webform-submission-form .form-item.form-type-webform-likert  {
  margin-bottom: 60px;
}
.webform-submission-form .form-item.form-type-webform-likert > .form-field__label  {
  width: 100%;
  font-family: 'TitleReg' , 'Open Sans', sans-serif;
  font-size: 20px;
  background: #F26520;
  color: #ffffff;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
}
.webform-likert-table-wrapper {
  width: 100%;
}
.webform-likert-table thead {
  font-family: 'TitleReg' , 'Open Sans', sans-serif;
  font-size: 18px;
  height: 50px;
}
.webform-submission-form .webform-likert-table-wrapper tbody .form-item   {
  justify-content: center;
}
.webform-submission-form .webform-likert-table-wrapper tbody label  {
  font-size: 18px;
  width: 90%;
}
.webform-submission-form .webform-likert-table-wrapper input  {
  width: 30px;
  height: 30px;
}

/*------------------------------------*\
  # Status Messages.
\*------------------------------------*/
.webform-submission-form .simple-status-messages {
  padding: 20px;
  font-size: 18px;
  line-height: 25px;
  border: 1px dashed;
  margin-bottom: 30px;
}
.status-message-close {
  display: none;
}
.webform-submission-form .messages--status  {
  color: #008000;
}
.webform-submission-form .messages--error  {
  color: #ff0000;
}


/*------------------------------------*\
  # Breadcrumbs.
\*------------------------------------*/
.breadcrumbs-wrapper  {
  height: 148px;
  background-size: cover;
  position: relative;
}
.breadcrumbs-wrapper.no-background  {
  height: 30px;
  margin-top: 25px;
}
.breadcrumb-backgroud-div {
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--color-black);
  opacity: 0.4;
  top: 0;
  left: 0;
}
.breadcrumbs-wrapper .breadcrumb  {
  position: absolute;
  bottom: 25px;
}
.breadcrumbs-wrapper.no-background .breadcrumb  {
  position: static;
  bottom: unset;
}
.breadcrumbs-wrapper .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.breadcrumbs-wrapper .breadcrumb ol li:before  {
  content: '';
  margin: 0 10px 0 0;
  width: 6px;
  height: 10px;
  background-image: url(../images/icons/next_orange.png);
  background-size: contain;
  display: inline-block;
}
[dir="rtl"] .breadcrumbs-wrapper .breadcrumb ol li:before {
  margin: 0 0 0 10px;
  transform: rotate(180deg);
}
.breadcrumbs-wrapper .breadcrumb ol li:last-child {
  color: #D9D9D9;
}
.breadcrumbs-wrapper .breadcrumb ol li:first-child:before  {
  content: none;
}
.breadcrumbs-wrapper .breadcrumb ol li a:hover  {
  color: var(--color-orange);
}
.breadcrumbs-wrapper .breadcrumb ol li strong {
  font-family: 'BodyBold', 'Open Sans', sans-serif;
}
.breadcrumbs-wrapper.no-background .breadcrumb ol li a  {
  color: var(--color-raisen-black);
}
.breadcrumbs-wrapper.no-background .breadcrumb ol li:last-child {
  color: #868686;
}

@media (max-width: 960px){
  .breadcrumbs-wrapper  {
    padding-top: 80px;
  }
  .breadcrumbs-wrapper .breadcrumb  {
    bottom: 10px;
  }
}

/*------------------------------------*\
  # Cookie Concent.
\*------------------------------------*/
.freeprivacypolicy-com---nb-simple {
  max-width: 50% !important;
  right: auto !important;
  left: 40% !important;
  border-top: 4px solid var(--color-orange) !important;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802) !important;
}
.freeprivacypolicy-com---palette-light.freeprivacypolicy-com---nb   {
  background-color: var(--color-white) !important;
}
.freeprivacypolicy-com---nb .cc-nb-main-container {
  padding: 50px 40px 30px 40px !important;
}
.freeprivacypolicy-com---palette-light .cc-nb-title {
  color: var(--color-raisen-black) !important;
  font-family: 'TitleBold', 'Open Sans', sans-serif !important;
}
.freeprivacypolicy-com---palette-light .cc-nb-text  {
  color: var(--color-fedora) !important;
  font-family: 'BodyReg', 'Open Sans', sans-serif !important;
  font-size: 18px !important;
  line-height: 29px !important;
}
.freeprivacypolicy-com---palette-light .cc-nb-okagree {
  background-color: var(--color-orange) !important;
  font-family: 'BodyBold', 'Open Sans', sans-serif !important;
}
.freeprivacypolicy-com---palette-light .cc-nb-reject  {
  background-color: var(--color-light-grey) !important;
  font-family: 'BodyBold', 'Open Sans', sans-serif !important;
  color: var(--color-black) !important;
}
.freeprivacypolicy-com---palette-light .cc-nb-changep {
  display: none !important;
}
@media (max-width: 960px){
  .freeprivacypolicy-com---nb-simple {
    max-width: 90% !important;
    left: 5% !important;
  }
}

