@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;700&display=swap");
/* Defaults
-------------------------------------------------------------- */
html {
  font-size: 18px;
}

body {
  color: #000000;
  font-size: 1rem;
  direction: ltr;
  line-height: 1.3;
  font-weight: 400;
  font-family: "Assistant", sans-serif;
}

/************scroller************/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: transparent;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 2px;
  margin: 4px 0;
  background-color: #eee;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #2d2d2d;
  border-radius: 0px;
  border: solid 1px transparent;
  width: 10px;
  position: absolute;
}

::-webkit-scrollbar-button {
  height: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  display: block;
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  line-height: 1.5em;
}

h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  color: #4D4F53;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

div,
p,
span,
a,
input,
input[type=submit],
select,
textarea {
  font-family: "Assistant", sans-serif;
}

form#searchform div,
form#search-download div, form#search-cad div {
  display: flex;
}
form#searchform input#searchsubmit,
form#search-download input#searchsubmit, form#search-cad input#searchsubmit {
  border: none;
  background: url(../../svg/search-icon-white.svg) center center no-repeat #E1251B;
  color: white;
  font-size: 0;
  width: 30px;
  height: 30px;
  margin-left: 2px;
}
form#searchform input#s,
form#search-download input#s, form#search-cad input#s {
  border-radius: 0;
  border: 1px solid #4d4f53;
}

form#search-download {
  display: flex;
  justify-content: flex-end;
}
form#search-download input#search-field {
  border: 1px solid #E1251B;
  background: transparent;
}
form#search-download input#search-field:visited {
  background: transparent;
}

strong,
b {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

ul li,
ol li {
  text-align: left;
}

a,
input[type=submit],
button,
.transition {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

a {
  text-decoration: none;
  color: #E1251B;
}

a:hover,
a:focus {
  color: #E1251B;
  text-decoration: underline;
}

img {
  max-width: 100%;
}

img.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.caps {
  text-transform: uppercase;
}

.bold {
  font-weight: 700;
}

.round {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.center {
  text-align: center;
}

.primary-color {
  color: #E1251B;
}

.white-color {
  color: #fff;
}

.primary-bg {
  background-color: #E1251B;
}

.small-text {
  font-size: 0.9rem;
}

.medium-text {
  font-size: 1.2rem;
}

.large-text {
  font-size: 1.7rem;
}

.bg-cover {
  background-size: cover;
  background-position: center;
}
.bg-cover.caption {
  position: relative;
  overflow: hidden;
  padding-top: 66%;
  border-radius: 80px 0 0 0;
}
.bg-cover.caption:hover .image-description {
  transform: translateY(0);
}

.logo {
  padding-top: 10px;
}
.logo .site_logo img {
  min-width: 260px;
}

.content {
  line-height: 1.4;
}
.content h2 {
  font-size: 1.4em;
  margin-bottom: 0.5em;
}
.content h3 {
  font-size: 1.1em;
  font-weight: 700;
  color: #4D4F53;
  margin-bottom: 0;
}
.content ol,
.content ul:not(.blocks-gallery-grid) {
  line-height: 1.4;
  margin-bottom: 1.5em;
}
.content ol li,
.content ul:not(.blocks-gallery-grid) li {
  margin-bottom: 0.5em;
}
.content ul:not(.blocks-gallery-grid) {
  list-style: none;
  margin-left: 5px;
  padding-left: 0;
}
.content ul:not(.blocks-gallery-grid) li {
  position: relative;
  padding-left: 25px;
}
.content ul:not(.blocks-gallery-grid) li::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #E1251B;
  position: absolute;
  left: 0;
  top: 6px;
  border-radius: 50%;
}
.content ol {
  list-style: none;
  margin-left: 5px;
  padding-left: 0;
}
.content ol > li {
  position: relative;
  padding-left: 25px;
  counter-increment: item;
}
.content ol > li::before {
  content: counter(item) ".";
  display: inline-block;
  width: 1em;
  padding-right: 0.5em;
  font-weight: bold;
  text-align: right;
  position: absolute;
  left: 0;
  top: 0;
}
.content p {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 1.5em;
}

.button {
  display: inline-block;
  background-color: #EFEFEF;
  border: 1px solid #4D4F53;
  padding: 10px 35px;
  color: #4D4F53;
  margin-top: 20px;
  border-radius: 0 0 15px 0;
  transition: 0.4s;
}
.button:hover, .button:focus {
  background-color: #4D4F53;
  color: #EFEFEF;
  text-decoration: none;
}
.button.red-button {
  color: #fff;
  background-color: #E1251B;
  border: 1px solid #E1251B;
}
.button.red-button a {
  color: white;
}
.button.red-button:hover a {
  color: #E1251B;
}
.button.download a::after {
  content: url(../../svg/download-icon-w.svg);
  display: inline-block;
  width: 22px;
  height: 19px;
  margin-left: 10px;
}

.sticky {
  position: absolute;
  top: 0;
  background: white;
}
.sticky.active {
  position: fixed;
}

/****************************************************************
    LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT
****************************************************************/
.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
}

.small-container {
  max-width: 900px;
}

.flex_container {
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex_container > .row {
  flex: 1;
}

header {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  padding: 0 0 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .flex_container {
  align-items: flex-end;
}
header .nav {
  flex-direction: column;
  align-items: flex-end;
}
header .top-menu {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
header .top-menu .family-search-bar {
  margin-right: 20px;
}
header .site-switcher {
  position: relative;
}
header .site-switcher > a {
  color: #000000;
  display: flex;
  align-items: center;
}
header .site-switcher > a:hover {
  color: #E1251B;
  text-decoration: none;
}
header .site-switcher > a:after {
  width: 8px;
  height: 8px;
  content: "";
  display: inline-block;
  margin-left: 4px;
  border-right: 2px solid #E1251B;
  border-top: 2px solid #E1251B;
  transform: rotate(135deg);
  transition: all ease 0.3s;
}
header .site-switcher ul {
  position: absolute;
  right: -10px;
  top: 20px;
  min-width: 200px;
  display: none;
  background: white;
  padding: 10px;
  margin: 0;
  list-style: none;
  transition: all ease-in-out 0.3s;
  z-index: 9999;
  box-shadow: 2px 2px 6px 4px rgba(0, 0, 0, 0.15);
}
header .site-switcher ul li {
  border-left: 4px solid #E1251B;
  transition: all ease 0.3s;
}
header .site-switcher ul li:hover {
  padding-left: 10px;
}
header .site-switcher ul li a {
  color: #000000;
  font-size: 0.9rem;
  padding: 5px 10px;
}
header .site-switcher ul li a:hover {
  text-decoration: none;
  color: #E1251B;
}
header .site-switcher:hover ul {
  display: block;
}
header .site-switcher:hover > a:after {
  transform: rotate(-45deg);
}
header .login-button {
  border: 1px solid #E1251B;
  border-top: 0;
  border-radius: 0 0 10px 0;
  padding: 20px 25px 8px;
}

footer {
  border-radius: 0 50px 0 0;
  background-color: #2d2d2d;
  color: #fff;
}
footer h2 {
  color: #fff;
  margin-bottom: 50px;
}
footer a {
  color: #fff;
  text-decoration: underline;
}
footer a:hover, footer a:focus {
  color: #fff;
  opacity: 0.7;
}
footer .row {
  width: 100%;
}
footer .flex_container {
  flex-direction: column;
}
footer .credit {
  margin-top: 80px;
  background-color: #000000;
  font-size: 0.8rem;
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
}
footer .credit .right-side {
  display: flex;
}
footer .credit .right-side a {
  padding: 0 5px;
}
footer .credit .right-side .rights {
  padding: 0 15px;
}

.share-box-popup {
  position: fixed;
  z-index: 5;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: center;
}
.share-box-popup.active {
  display: flex;
}
.share-box-popup .share-box {
  background-color: #fff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  padding: 40px 50px;
  border-radius: 0 0 30px 0;
}
.share-box-popup .share-box a:hover {
  text-decoration: underline;
}
.share-box-popup .share-box svg {
  width: 50px;
  height: 50px;
  margin: 0 20px;
}

.wpcf7-spinner {
  position: absolute;
}

.plasson-map {
  padding-top: 70px;
  border-top: 2px solid #fff;
}
.plasson-map .map-wrapper {
  position: relative;
}
.plasson-map .map-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  position: relative;
}
.plasson-map .map-title::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 5px);
  left: 0;
}
.plasson-map .map-title.subsidiaries::before {
  width: 20px;
  height: 20px;
  background-color: #E1251B;
  border-radius: 50%;
}
.plasson-map .map-title.distributors::before {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid #E1251B;
  border-radius: 50%;
}
.plasson-map svg {
  width: 100%;
  height: auto;
}
.plasson-map ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 500px;
  overflow: auto;
}
.plasson-map ul li {
  margin-bottom: 5px;
}
.plasson-map .subsidiary-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #E1251B;
  border-radius: 50%;
}
.plasson-map .subsidiary-pin .pin-label {
  opacity: 0;
  transition: 0.4s;
  background-color: #000000;
  position: absolute;
  font-size: 0.8rem;
  line-height: 1;
  padding: 5px 10px;
  text-align: center;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) scale(0);
  z-index: 5555;
}
.plasson-map .subsidiary-pin:hover .pin-label {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.plasson-map .distributor-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid #E1251B;
  border-radius: 50%;
}
.plasson-map .distributor-pin .pin-label {
  opacity: 0;
  transition: 0.4s;
  background-color: #000000;
  position: absolute;
  font-size: 0.8rem;
  line-height: 1;
  padding: 5px 10px;
  text-align: center;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) scale(0);
  z-index: 5555;
}
.plasson-map .distributor-pin:hover .pin-label {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.social {
  margin-top: 40px;
  display: flex;
}
.social a {
  display: block;
  margin-right: 15px;
}
.social a svg,
.social a img {
  width: 35px;
  height: auto;
}

.contact-section {
  padding: 80px 0;
  background-color: #2d2d2d;
  color: #fff;
}
.contact-section h2 {
  color: #fff;
  margin-bottom: 50px;
}
.contact-section a {
  color: #fff;
  text-decoration: underline;
}
.contact-section a:hover, .contact-section a:focus {
  color: #fff;
  opacity: 0.7;
}
.contact-section .form-wrapper {
  display: flex;
  justify-content: space-between;
}
.contact-section .form-wrapper .right-side,
.contact-section .form-wrapper .left-side {
  width: 100%;
}
.contact-section .form-wrapper .left-side {
  margin-right: 30px;
}
.contact-section .form-wrapper .wpcf7-form-control-wrap,
.contact-section .form-wrapper label {
  width: 100%;
}
.contact-section .form-wrapper p:last-child {
  margin-bottom: 0;
}
.contact-section .form-wrapper label:last-child {
  margin-bottom: 0;
}
.contact-section .form-wrapper input,
.contact-section .form-wrapper textarea {
  border: 0;
  width: 100%;
  padding: 7px 10px;
  transition: 0.3s;
}
.contact-section .form-wrapper input:focus,
.contact-section .form-wrapper textarea:focus {
  border: 0;
  outline: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
.contact-section .form-wrapper textarea {
  height: 170px;
  border: 0;
}
.contact-section .form-wrapper label {
  position: relative;
  margin-bottom: 1.6em;
}
.contact-section .form-wrapper .label {
  position: absolute;
  bottom: calc(100% - 28px);
  left: 10px;
  transition: 0.4s;
  color: gray;
  z-index: 1;
  font-size: 0.9rem;
}
.contact-section .form-wrapper .top-label .label {
  font-size: 0.8rem;
  top: auto;
  bottom: calc(100% + 3px);
  color: #fff;
  left: 0;
}
.contact-section .button-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  position: relative;
}
.contact-section .button-wrapper .ajax-loader {
  position: absolute;
}
.contact-section .button-wrapper input.wpcf7-submit {
  background-color: transparent;
  border: 1px solid #fff;
  padding: 10px 35px;
  color: #fff;
  border-radius: 0 0 15px 0;
  text-transform: uppercase;
  transition: 0.4s;
  z-index: 5;
  position: relative;
}
.contact-section .button-wrapper input.wpcf7-submit:hover, .contact-section .button-wrapper input.wpcf7-submit:focus {
  color: #E1251B;
  background-color: #fff;
}
.contact-section .contact-details {
  line-height: 1.5;
}

/** Main Menu */
ul#main-menu {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
  list-style: none;
  margin: 0 -5px;
  padding: 0;
}

ul#main-menu > li {
  position: relative;
}
ul#main-menu > li > a {
  position: relative;
  display: block;
  color: #000000;
  padding: 5px 10px;
}
ul#main-menu > li > a:focus, ul#main-menu > li > a:hover {
  text-decoration: none;
  color: #E1251B;
}
ul#main-menu > li:last-child > a {
  padding-right: 0;
}
ul#main-menu > li.current-menu-item > a {
  color: #E1251B;
}

/** Sub Menu  ***/
ul#main-menu .catalogue-menu ul.sub-menu {
  padding-top: 10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: none;
}
ul#main-menu .catalogue-menu ul.sub-menu .mega-menu {
  display: flex;
}

.mega-menu {
  background-color: #fff;
  box-shadow: 2px 2px 6px 4px rgba(0, 0, 0, 0.15);
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  display: none;
}
.mega-menu .single-main-cat {
  display: flex;
  border-right: 3px solid #E1251B;
  padding-right: 20px;
  margin-right: 20px;
}
.mega-menu .single-main-cat .image {
  max-width: 120px;
  max-height: 80px;
  padding-right: 20px;
}
.mega-menu .single-main-cat .image img {
  max-height: 100%;
  height: auto;
}
.mega-menu .single-main-cat:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}
.mega-menu .main-cat {
  display: block;
  color: #E1251B;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.mega-menu .sub-cat {
  display: block;
  color: #000000;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

ul#main-menu ul.sub-menu {
  position: absolute;
  z-index: 10;
  left: -15px;
  top: 100%;
  min-width: 200px;
  display: none;
  padding-left: 0;
  box-shadow: 2px 2px 6px 4px rgba(0, 0, 0, 0.15);
}

ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}

ul#main-menu ul.sub-menu li {
  position: relative;
  display: block;
  background: #fff;
  padding-left: 15px;
}
ul#main-menu ul.sub-menu li:first-child {
  padding-top: 15px;
}
ul#main-menu ul.sub-menu li:last-child {
  padding-bottom: 15px;
}

ul#main-menu ul.sub-menu li a {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  color: #000000;
  font-size: 0.9rem;
  padding: 5px 10px;
  border-left: 3px solid #E1251B;
}

ul#main-menu ul.sub-menu li a:hover,
ul#main-menu ul.sub-menu li a:focus {
  text-decoration: underline;
  color: #000000;
}

ul#main-menu ul.sub-menu li:hover > a {
  color: #000000;
}

/************/
.acf-map {
  width: 100%;
  height: 400px;
  border: #ccc solid 1px;
  margin: 20px 0;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

/*------------------------------------------ Homepage Style 1 -----------------------------------------------------*/
#hp-video {
  min-height: calc(100vh - 50px);
  overflow: hidden;
  position: relative;
}
#hp-video video {
  background-color: #4D4F53;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#hp-video .hp-video-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#hp-video .hp-slogan {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 45%;
}
#hp-video .hp-slogan h1 {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  font-weight: 400;
  display: inline-block;
  line-height: 1;
}
#hp-video .hp-slogan h1 p {
  margin: 0;
}
#hp-video .hp-apps {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  height: 40%;
}
#hp-video .hp-apps .container {
  max-width: 1500px;
}
#hp-video .hp-apps ul {
  width: 100%;
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin-bottom: 0;
  align-items: stretch;
}
#hp-video .hp-apps ul li {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 150px;
  align-items: stretch;
}
#hp-video .hp-apps ul li a {
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 10px 20px;
  height: 100%;
}
#hp-video .hp-apps ul li a::before {
  content: "";
  position: absolute;
  background-color: #E1251B;
  bottom: 0;
  left: 0;
  border-radius: 0 15px 0 0;
  width: 100%;
  height: 0;
  transition: 0.4s;
}
#hp-video .hp-apps ul li a svg,
#hp-video .hp-apps ul li a img {
  transition: all ease 0.4s;
  width: 80px;
  height: 80px;
  position: relative;
}
#hp-video .hp-apps ul li a svg .red-fill,
#hp-video .hp-apps ul li a img .red-fill {
  transition: 0.5s;
}
#hp-video .hp-apps ul li a svg .red-stroke,
#hp-video .hp-apps ul li a img .red-stroke {
  transition: 0.5s;
}
#hp-video .hp-apps ul li a:hover {
  text-decoration: none;
}
#hp-video .hp-apps ul li a:hover svg,
#hp-video .hp-apps ul li a:hover img {
  transition: all ease 0.4s;
}
#hp-video .hp-apps ul li a:hover svg .red-fill,
#hp-video .hp-apps ul li a:hover img .red-fill {
  fill: #fff;
}
#hp-video .hp-apps ul li a:hover svg .red-stroke,
#hp-video .hp-apps ul li a:hover img .red-stroke {
  stroke: #fff;
}
#hp-video .hp-apps ul li a:hover::before {
  height: 100%;
  transition: 0.4s;
}
#hp-video .hp-apps ul li p {
  margin-top: 1rem;
  position: relative;
  display: inline-block;
}

#hp-main-cats {
  position: relative;
  background: #EFEFEF;
  padding: 150px 0;
  border-bottom-right-radius: 100px;
}
#hp-main-cats .svg-element {
  position: absolute;
  opacity: 0.2;
}
#hp-main-cats .left-element {
  bottom: -70px;
}
#hp-main-cats .right-element {
  right: 0;
  top: -100px;
}
#hp-main-cats .row {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
#hp-main-cats .row .single-solution {
  background: white;
  position: relative;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
}
#hp-main-cats .row .single-solution::after {
  content: "";
  position: absolute;
  background-color: #E1251B;
  bottom: 0;
  left: 0;
  height: 7px;
  border-radius: 0 0 6px 0;
  width: 0;
  max-width: 100%;
  transition: 0.4s;
}
#hp-main-cats .row .single-solution .image-wrapper {
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#hp-main-cats .row .single-solution img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 85%;
  margin-bottom: 20px;
  transform: scale(0.9);
  transition: 0.5s;
}
#hp-main-cats .row .single-solution p {
  text-align: left;
  color: #4D4F53;
  font-size: 1.5rem;
  font-weight: 700;
  width: 100%;
  line-height: 1;
  margin: 0;
}
#hp-main-cats .row .single-solution:hover {
  text-decoration: none;
}
#hp-main-cats .row .single-solution:hover::after {
  width: 50%;
}
#hp-main-cats .row .single-solution:hover img {
  transform: scale(1.1);
}
#hp-main-cats .button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.main-cats-wrapper .single-cat {
  background-color: #4D4F53;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 0;
  padding-top: 100%;
  transition: 0.4s;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.main-cats-wrapper .single-cat .inner-content {
  padding: 20px;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-cats-wrapper .single-cat h2 {
  text-align: center;
  color: #fff;
  font-weight: 700;
  width: 100%;
  line-height: 1;
  margin: 0 auto;
  max-width: 250px;
  font-size: 1.8rem;
  line-height: 1.2em;
}
.main-cats-wrapper .single-cat:hover {
  background-color: #2d2d2d;
  text-decoration: none;
}
.main-cats-wrapper .single-cat:hover h2 {
  text-decoration: none;
}

#promotion-product-section {
  padding: 150px 0;
}
#promotion-product-section .product-image {
  position: absolute;
  right: 15px;
  top: 0;
  width: calc(50vw - 15px);
  height: 100%;
  min-height: 20vw;
  background-size: cover;
  background-position: center;
  border-radius: 0 50px 0 0;
}
#promotion-product-section .flex {
  min-height: 20vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

#vision-section {
  padding: 80px 0;
}
#vision-section .vision-repeater-wrapper {
  display: flex;
  margin-top: 40px;
}
#vision-section .single-vision-wrapper {
  width: 100%;
  border: 2px solid #fff;
}
#vision-section .single-vision {
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding-top: 150%;
}
#vision-section .single-vision::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  width: 100%;
  height: 100%;
}
#vision-section .single-vision h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  max-width: 290px;
  line-height: 1.3;
  margin: 0 auto;
}
#vision-section .single-vision .texts-wrapper {
  transition: 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  width: 100%;
}
#vision-section .single-vision .texts-wrapper::before {
  content: "";
  position: absolute;
  background-color: #E1251B;
  width: 100%;
  height: 100%;
  max-height: 0;
  transition: 0.7s ease-out;
  left: 0;
  bottom: 0;
}
#vision-section .single-vision .texts-wrapper .content {
  padding-top: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.7s ease-out;
  max-height: 0;
  z-index: 1;
  max-width: 290px;
  margin: 0 auto;
}
#vision-section .single-vision:hover .texts-wrapper::before {
  max-height: 600px;
  transition: 1s linear;
}
#vision-section .single-vision:hover .texts-wrapper .content {
  max-height: 500px;
  transition: 1s linear;
  overflow: hidden;
}

#hp-case-studies {
  padding: 80px 0;
}
#hp-case-studies .svg-element {
  position: absolute;
  opacity: 0.14;
  right: 0;
}
#hp-case-studies h2 {
  margin-bottom: 40px;
}

.single-case-study-wrapper {
  margin-bottom: 50px;
}
.single-case-study-wrapper .single-case-study {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
.single-case-study-wrapper .single-case-study .top {
  width: 100%;
}
.single-case-study-wrapper .single-case-study:hover .hidden::after {
  height: 0;
}
.single-case-study-wrapper .case-study-image {
  position: relative;
  background-color: #EFEFEF;
  width: 100%;
  padding-top: 80%;
  background-size: cover;
  background-position: center;
}
.single-case-study-wrapper .case-study-image .related-application {
  position: absolute;
  background-color: #E1251B;
  right: 0;
  bottom: 0;
  padding: 10px;
  border-radius: 15px 0 0 0;
}
.single-case-study-wrapper .case-study-image .related-application svg {
  width: 40px;
  height: auto;
}
.single-case-study-wrapper .case-study-image .related-application svg .red-stroke {
  stroke: #fff;
}
.single-case-study-wrapper .case-study-image .related-application svg .red-fill {
  fill: #fff;
}
.single-case-study-wrapper h3 {
  margin-top: 15px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
}
.single-case-study-wrapper .hidden {
  position: relative;
}
.single-case-study-wrapper .hidden::after {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  transition: 0.5s;
}

#hp-floating-button {
  z-index: 55;
  position: fixed;
  right: 30px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  margin: 0;
  padding: 10px 20px;
  color: #fff;
  background-color: #E1251B;
  border: 1px solid #E1251B;
  padding: 10px 20px;
  border-radius: 0 0 15px 0;
}

.page-wrap .woocommerce-error,
.page-wrap .woocommerce-info,
.page-wrap .woocommerce-message {
  background-color: #EFEFEF;
  border-radius: 15px;
  color: #000000;
  border-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.page-wrap .woocommerce-error .button,
.page-wrap .woocommerce-info .button,
.page-wrap .woocommerce-message .button {
  float: none;
  order: 5;
  margin-top: 10px;
}
.page-wrap .woocommerce-message::before {
  color: #fff;
}
.page-wrap a.button,
.page-wrap button.button,
.page-wrap input.button {
  background-color: #EFEFEF;
  padding: 10px 35px;
  color: #E1251B;
  border: 1px solid #E1251B;
  margin-top: 20px;
  border-radius: 0 0 15px 0;
  text-decoration: none !important;
}
.page-wrap a.button:hover,
.page-wrap button.button:hover,
.page-wrap input.button:hover {
  background-color: #E1251B;
  color: #EFEFEF;
  text-decoration: none;
}
.page-wrap a.button:hover.loading::after,
.page-wrap button.button:hover.loading::after,
.page-wrap input.button:hover.loading::after {
  background-color: #EFEFEF;
}
.page-wrap a.button.red-button,
.page-wrap button.button.red-button,
.page-wrap input.button.red-button {
  color: #fff;
  background-color: #E1251B;
  border: 1px solid #E1251B;
}
.page-wrap a.button.red-button.loading::after,
.page-wrap button.button.red-button.loading::after,
.page-wrap input.button.red-button.loading::after {
  background-color: #EFEFEF;
}
.page-wrap a.button.red-button:hover,
.page-wrap button.button.red-button:hover,
.page-wrap input.button.red-button:hover {
  background-color: #EFEFEF;
  color: #E1251B;
}
.page-wrap a.button.red-button:hover.loading::after,
.page-wrap button.button.red-button:hover.loading::after,
.page-wrap input.button.red-button:hover.loading::after {
  background-color: #E1251B;
}
.page-wrap a.button.loading,
.page-wrap button.button.loading,
.page-wrap input.button.loading {
  position: relative;
  padding-right: 50px;
}
.page-wrap a.button.loading::after,
.page-wrap button.button.loading::after,
.page-wrap input.button.loading::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #E1251B;
  animation-name: loader;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
@keyframes loader {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2.5);
  }
  100% {
    transform: scale(1);
  }
}
.page-wrap .woocommerce-breadcrumb {
  margin-bottom: 0;
  color: #fff;
}
.page-wrap .woocommerce-breadcrumb a {
  color: #fff;
}
.page-wrap .tax-strip {
  position: fixed;
  z-index: 3;
  background-color: #4D4F53;
  padding: 10px 0;
  margin-bottom: 30px;
  width: 100%;
}
.page-wrap .tax-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-wrap .tax-strip a {
  color: #fff;
}
.page-wrap .tax-strip .related-apps svg {
  margin-left: 10px;
  height: 35px;
  width: 40px;
}
.page-wrap .tax-strip .related-apps svg .red-fill {
  fill: #fff;
}
.page-wrap .tax-strip .related-apps svg .red-stroke {
  stroke: #fff;
}
.page-wrap.single-product .product {
  margin-bottom: 100px;
}
.page-wrap.single-product .title-section {
  margin-bottom: 50px;
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 2;
  padding: 20px 0;
  transition: 0.4s;
}
.page-wrap.single-product .title-section h1 {
  transition: 0.4s;
}
.page-wrap.single-product .title-section.scroll {
  margin-bottom: 0;
  padding: 10px 0;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}
.page-wrap.single-product .title-section.scroll h1 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.page-wrap.single-product .action-buttons {
  display: flex;
  justify-content: flex-end;
}
.page-wrap.single-product .action-buttons .action-button {
  border: 2px solid #E1251B;
  margin-left: 10px;
  padding: 4px 5px;
  border-radius: 0 0 10px 0;
  transition: 0.4s;
}
.page-wrap.single-product .action-buttons .action-button svg {
  width: 23px;
  height: 23px;
}
.page-wrap.single-product .action-buttons .action-button svg .red-fill {
  transition: 0.4s;
}
.page-wrap.single-product .action-buttons .action-button svg .red-stroke {
  transition: 0.4s;
}
.page-wrap.single-product .action-buttons .action-button:hover {
  background-color: #E1251B;
}
.page-wrap.single-product .action-buttons .action-button:hover .red-fill {
  fill: #fff;
}
.page-wrap.single-product .action-buttons .action-button:hover .red-stroke {
  stroke: #fff;
}
.page-wrap .woocommerce-result-count,
.page-wrap .woocommerce-ordering {
  float: none;
}

.product-gallery {
  width: 100%;
}
.product-gallery .slick-list {
  width: 100%;
}
.product-gallery .slick-dots {
  font-size: 0;
  margin: 0;
  padding: 0;
  display: flex;
  position: absolute;
  bottom: 95px;
  left: 0;
  right: 0;
  justify-content: center;
}
.product-gallery .slick-dots li {
  margin: 0 3px;
}
.product-gallery .slick-dots li button {
  border-radius: 50%;
  height: 15px;
  width: 15px;
  padding: 0;
  border: 2px solid #d3d3d3;
  background: #fff;
}
.product-gallery .slick-dots li.slick-active button {
  background: #d3d3d3;
}
.product-gallery .single-image {
  position: relative;
  padding: 10px 10px 70px 10px;
  display: flex;
  flex-direction: column;
}
.product-gallery .image-wrapper {
  background-color: #fff;
  box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  padding-top: 63%;
  position: relative;
}
.product-gallery .image-wrapper img {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 20px 50px 20px;
}
.product-gallery .description {
  position: absolute;
  left: 0;
  margin: 10px 10px;
  border-left: 3px solid #E1251B;
  padding-left: 5px;
  font-size: 0.9rem;
}

.general-facts {
  margin-top: 15px;
}
.general-facts .single-fact {
  margin-bottom: 30px;
}

.all-links-wrapper {
  border-left: 3px solid #efefef;
  margin-left: 20px;
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 40px;
}
.all-links-wrapper .one-type {
  margin-bottom: 30px;
}
.all-links-wrapper .one-type .one-type-top {
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
}
.all-links-wrapper .one-type .one-type-top span {
  display: inline-block;
  font-weight: 700;
  margin-right: 10px;
  transition: 0.4s;
}
.all-links-wrapper .one-type .one-type-top::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #4D4F53;
  margin-right: 30px;
  transition: 0.4s;
}
.all-links-wrapper .one-type .one-type-top::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #E1251B;
  border-right: 2px solid #E1251B;
  border-radius: 0 0 3px 0;
  right: 0;
  transform: rotate(-45deg);
  transition: 0.4s;
}
.all-links-wrapper .one-type .one-type-top:hover span {
  color: #E1251B;
}
.all-links-wrapper .one-type .one-type-top:hover::after {
  background-color: #E1251B;
}
.all-links-wrapper .one-type .links-wrapper {
  display: none;
  padding-top: 20px;
}
.all-links-wrapper .one-type.active .one-type-top::before {
  transform: rotate(45deg);
}
.all-links-wrapper .one-type:last-child {
  margin-bottom: 0;
}

.links-wrapper {
  margin-left: -20px;
}
.links-wrapper .single-file {
  display: flex;
  align-items: center;
  padding-left: 30px;
  padding: 10px 30px;
  margin-bottom: 5px;
  border-radius: 0 0 20px 0;
  background-image: linear-gradient(-90deg, #fff 50%, #EFEFEF 50%);
  background-size: 200%;
  background-position: right;
}
.links-wrapper .single-file .icon {
  margin-right: 15px;
  margin-top: 3px;
}
.links-wrapper .single-file .title {
  color: #000000;
}
.links-wrapper .single-file .file-name {
  color: #000000;
}
.links-wrapper .single-file:hover, .links-wrapper .single-file:focus {
  text-decoration: none;
  background-position: left;
}

.variations .variations-table {
  max-height: 60vh;
  overflow: auto;
}
.variations tr {
  border-bottom: 2px solid #EFEFEF;
}
.variations th {
  vertical-align: bottom;
  background: white;
  position: sticky;
  top: 0;
}
.variations td,
.variations th {
  padding: 10px 15px;
  white-space: nowrap;
  max-width: 100%;
}
.variations .th-text {
  display: flex;
  align-items: flex-end;
}
.variations td.add-to-cart {
  max-width: none;
}
.variations td.add-to-cart .button {
  width: 150px;
  padding: 10px 20px;
  margin: 0;
}
.variations td.full-cell {
  white-space: nowrap;
  max-width: none;
}
.variations td.quantity input {
  border: 1px solid #E1251B;
  padding: 7px 5px;
  width: 50px;
}
.variations td.on-hover {
  opacity: 0;
  transition: 0.4s;
}
.variations tr:hover td.on-hover {
  opacity: 1;
}
.variations .unit {
  font-size: 0.7rem;
  font-weight: 300;
  margin-left: 0.2em;
}

.page-wrap.category-page .title-section {
  margin-bottom: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-radius: 0 0 50px 0;
  overflow: hidden;
  background-color: #4D4F53;
}
.page-wrap.category-page .title-section .flex_container {
  flex-direction: column;
  align-items: flex-start;
}
.page-wrap.category-page .title-section .cat-title {
  padding: 0 15px;
}
.page-wrap.category-page .title-section h1 {
  margin-bottom: 15px;
}
.page-wrap.category-page .title-section .action-button {
  position: relative;
  border: 2px solid #fff;
  padding: 4px 5px;
  border-radius: 0 0 10px 0;
  transition: 0.4s;
  display: inline-flex;
  max-width: 120px;
}
.page-wrap.category-page .title-section .action-button svg {
  width: 23px;
  height: 23px;
}
.page-wrap.category-page .title-section .action-button svg .red-fill {
  fill: #fff;
}
.page-wrap.category-page .title-section .action-button svg .red-stroke {
  stroke: #fff;
}
.page-wrap.category-page .title-section .action-button .text-wrapper {
  left: 100%;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.8s linear, padding 0.1s linear 0.6s;
  display: block;
  text-transform: uppercase;
  color: #fff;
}
.page-wrap.category-page .title-section .action-button:hover .text-wrapper {
  max-width: 150px;
  padding-left: 5px;
  transition: max-width 0.8s linear 0.1s, padding 0.1s linear;
}
.page-wrap.category-page .title-section .cat_desc {
  color: white;
  border-left: 1px solid white;
}
.page-wrap.category-page .main-section .woocommerce-breadcrumb {
  display: none;
}
.page-wrap.category-page .archive-squares {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 80px;
  width: 100%;
}
.page-wrap.category-page .archive-squares .single-square {
  width: 16.5%;
  padding: 0 15px 30px;
  color: #000000;
}
.page-wrap.category-page .archive-squares .single-square .thumbnail-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border: 1px solid #4D4F53;
  margin-bottom: 10px;
  overflow: hidden;
  transition: 0.4s;
}
.page-wrap.category-page .archive-squares .single-square .thumbnail-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  width: auto;
  height: auto;
}
.page-wrap.category-page .archive-squares .single-square .thumbnail-wrapper .hover {
  position: absolute;
  bottom: 0;
  transform: translateX(-100%);
  text-transform: uppercase;
  transition: 0.4s;
  padding: 5px;
}
.page-wrap.category-page .archive-squares .single-square .thumbnail-wrapper .hover::after {
  content: "";
  position: absolute;
  height: 6px;
  width: 100%;
  border-radius: 0 0 5px 0;
  background-color: #E1251B;
  left: 0;
  bottom: 0;
}
.page-wrap.category-page .archive-squares .single-square .title {
  font-weight: 700;
}
.page-wrap.category-page .archive-squares .single-square:hover {
  text-decoration: none;
}
.page-wrap.category-page .archive-squares .single-square:hover .thumbnail-wrapper {
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.2);
}
.page-wrap.category-page .archive-squares .single-square:hover .thumbnail-wrapper .hover {
  transform: translateX(0);
}
.page-wrap.category-page .filter-wrapper h2 {
  font-size: 1.2rem;
}
.page-wrap.category-page .search-form input {
  border: 0;
  border-bottom: 1px solid #000000;
  width: 100%;
  padding: 5px 30px 5px 5px;
}
.page-wrap.category-page .search-form input:focus {
  outline: 0;
  border-bottom: 1px solid #E1251B;
  background-color: #f7f7f7;
}
.page-wrap.category-page .search-form .field-wrapper {
  position: relative;
}
.page-wrap.category-page .search-form .field-wrapper::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 7px;
  background-size: contain;
  background-image: url(../../svg/search-icon.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
.page-wrap.category-page .family-search-bar {
  position: relative;
}
.page-wrap.category-page .family-search-bar #keyword.searching {
  background: url(../img/ajax_loader.gif) 95% center no-repeat;
  background-size: 25px 14px !important;
}
.page-wrap.category-page .family-search-bar .search_result {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 30px;
  left: 0;
  width: 300px;
  max-height: 500px;
  overflow-y: auto;
  background: white;
  padding: 10px;
  box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.1);
}
.page-wrap.category-page .family-search-bar .search_result ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.page-wrap.category-page .family-search-bar .search_result ul li {
  font-size: 0.9rem;
  padding: 3px 0;
}
.page-wrap.category-page .family-search-bar .search_result ul li a {
  color: #000000;
  transition: all ease 0.3s;
}
.page-wrap.category-page .family-search-bar .search_result ul li a:hover {
  color: #E1251B;
  text-decoration: none;
}
.page-wrap.main-category .title-section {
  margin-bottom: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  min-height: 330px;
  padding: 20px 0;
  border-radius: 0 0 50px 0;
  overflow: hidden;
}
.page-wrap.main-category .title-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.page-wrap.main-category .title-section .flex_container {
  flex-direction: column;
  align-items: flex-start;
}
.page-wrap.main-category .title-section h1 {
  margin-bottom: 15px;
}
.page-wrap.main-category .title-section .action-button {
  position: relative;
  background-color: #E1251B;
  border: 2px solid #E1251B;
  padding: 4px 5px;
  border-radius: 0 0 10px 0;
  transition: 0.4s;
  display: flex;
}
.page-wrap.main-category .title-section .action-button svg {
  width: 23px;
  height: 23px;
}
.page-wrap.main-category .title-section .action-button svg .red-fill {
  fill: #fff;
}
.page-wrap.main-category .title-section .action-button svg .red-stroke {
  stroke: #fff;
}
.page-wrap.main-category .title-section .action-button .text-wrapper {
  left: 100%;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.8s linear, padding 0.1s linear 0.6s;
  display: block;
  text-transform: uppercase;
  color: #fff;
}
.page-wrap.main-category .title-section .action-button:hover .text-wrapper {
  max-width: 150px;
  padding-left: 5px;
  transition: max-width 0.8s linear 0.1s, padding 0.1s linear;
}
.page-wrap.main-catalogue .title-section {
  margin-bottom: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  min-height: 330px;
  padding: 20px 0;
  border-radius: 0 0 50px 0;
  overflow: hidden;
}
.page-wrap.main-catalogue .title-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
}
.page-wrap.main-catalogue .title-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-wrap.main-catalogue .title-section h1 {
  margin-bottom: 15px;
}
.page-wrap.main-catalogue .title-section .content {
  max-width: 500px;
  font-weight: 700;
}
.page-wrap.main-catalogue .title-section .action-button {
  position: relative;
  background-color: #E1251B;
  border: 2px solid #E1251B;
  padding: 4px 5px;
  border-radius: 0 0 10px 0;
  transition: 0.4s;
  display: flex;
}
.page-wrap.main-catalogue .title-section .action-button svg {
  width: 23px;
  height: 23px;
}
.page-wrap.main-catalogue .title-section .action-button svg .red-fill {
  fill: #fff;
}
.page-wrap.main-catalogue .title-section .action-button svg .red-stroke {
  stroke: #fff;
}
.page-wrap.main-catalogue .title-section .action-button .text-wrapper {
  left: 100%;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.8s linear, padding 0.1s linear 0.6s;
  display: block;
  text-transform: uppercase;
  color: #fff;
}
.page-wrap.main-catalogue .title-section .action-button:hover .text-wrapper {
  max-width: 150px;
  padding-left: 5px;
  transition: max-width 0.8s linear 0.1s, padding 0.1s linear;
}
.page-wrap .main-section {
  position: relative;
  margin-bottom: 100px;
}
.page-wrap .main-section .row {
  display: flex;
  justify-content: space-around;
}
.page-wrap .main-section .row .single-solution-wrapper {
  width: 350px;
  flex: none;
  margin-bottom: 40px;
}
.page-wrap .main-section .row .single-solution {
  background: white;
  position: relative;
  padding-top: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
}
.page-wrap .main-section .row .single-solution::after {
  content: "";
  position: absolute;
  background-color: #E1251B;
  bottom: 0;
  left: 0;
  height: 10px;
  border-radius: 0 0 6px 0;
  width: 0;
  max-width: 100%;
  transition: 0.4s;
}
.page-wrap .main-section .row .single-solution .inner-content {
  position: absolute;
  width: 86%;
  height: 86%;
  bottom: 7%;
  left: 7%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page-wrap .main-section .row .single-solution .image-wrapper {
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-wrap .main-section .row .single-solution img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 20px;
  transform: scale(0.9);
  transition: 0.5s;
}
.page-wrap .main-section .row .single-solution p {
  text-align: left;
  color: #4D4F53;
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
  line-height: 1;
  margin: 0;
  max-width: 300px;
}
.page-wrap .main-section .row .single-solution:hover::after {
  width: 50%;
}
.page-wrap .main-section .row .single-solution:hover img {
  transform: scale(1.1);
}

.apps-strip {
  display: flex;
  width: 100%;
  align-items: flex-end;
  background-color: #EFEFEF;
  max-width: 1200px;
  border-radius: 0 0 0 50px;
  position: relative;
  padding: 50px 30px 20px;
  margin-bottom: 100px;
}
.apps-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  width: 100%;
  background-color: #EFEFEF;
}
.apps-strip ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: stretch;
}
.apps-strip ul li {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 15px;
  align-items: stretch;
}
.apps-strip ul li a {
  color: #000000;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.apps-strip ul li a svg,
.apps-strip ul li a img {
  transition: all ease 0.4s;
  max-width: 70px;
  max-height: 70px;
}
.apps-strip ul li a:hover {
  text-decoration: none;
}
.apps-strip ul li a:hover svg,
.apps-strip ul li a:hover img {
  transform: translateY(-10px) scale(1.1);
  transition: all ease 0.4s;
}
.apps-strip ul li a:hover p::after {
  width: 50px;
}
.apps-strip ul li p {
  margin-top: 1rem;
  position: relative;
  display: inline-block;
}
.apps-strip ul li p::after {
  content: "";
  position: absolute;
  background-color: #E1251B;
  top: 100%;
  left: 0;
  height: 7px;
  border-radius: 0 0 6px 0;
  width: 0;
  max-width: 100%;
  transition: 0.4s;
}

.main-about-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  border-radius: 0 0 50px 0;
  overflow: hidden;
}
.main-about-section::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.main-about-section .content {
  max-width: 800px;
}
.main-about-section .bg-video {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: black;
}
.main-about-section .bg-video video {
  opacity: 0.5;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  min-height: 50%;
  min-width: 50%;
}
.main-about-section .about-section-content {
  position: relative;
  z-index: 1;
}

.second-about-section {
  padding: 80px 0;
}
.second-about-section img {
  border-radius: 0 0 0 50px;
}

.map-section {
  margin-bottom: 100px;
}
.map-section .inner-page-map {
  position: relative;
}
.map-section .inner-page-map svg {
  width: 100%;
  height: auto;
}
.map-section .inner-page-map svg path {
  fill: #EFEFEF;
}
.map-section .inner-page-map .subsidiary-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #E1251B;
  border-radius: 50%;
}
.map-section .inner-page-map .subsidiary-pin .pin-label {
  opacity: 0;
  transition: 0.4s;
  position: absolute;
  font-size: 0.8rem;
  line-height: 1;
  text-align: center;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) scale(0);
  z-index: 5555;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2px 5px;
}
.map-section .inner-page-map .subsidiary-pin:hover .pin-label {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.map-section .inner-page-map .distributor-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid #E1251B;
  border-radius: 50%;
}
.map-section .inner-page-map .distributor-pin .pin-label {
  opacity: 0;
  transition: 0.4s;
  position: absolute;
  font-size: 0.8rem;
  line-height: 1;
  text-align: center;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) scale(0);
  z-index: 5555;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2px 5px;
}
.map-section .inner-page-map .distributor-pin:hover .pin-label {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.map-section .map-legend {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.map-section .map-legend .map-title {
  margin: 0 15px;
  position: relative;
  padding-left: 15px;
}
.map-section .map-legend .map-title.subsidiaries::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #E1251B;
  border-radius: 50%;
  left: 0;
  bottom: 5px;
}
.map-section .map-legend .map-title.distributors::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 2px solid #E1251B;
  border-radius: 50%;
  left: 0;
  bottom: 5px;
}

.history-section {
  margin-bottom: 50px;
}
.history-section .background {
  position: relative;
  padding: 80px 0 150px;
}
.history-section .background::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
}
.history-section .background .content {
  max-width: 700px;
}
.history-section .gray-bg {
  margin-top: -100px;
}
.history-section .gray-bg .content {
  max-width: 700px;
  padding: 50px 50px 50px 0;
  font-weight: 700;
  position: relative;
  border-radius: 0 50px 0 0;
  background-color: #4D4F53;
}
.history-section .gray-bg .content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #4D4F53;
  right: 100%;
  bottom: 0;
}

.timeline-container {
  padding: 0 !important;
}

.timeline {
  margin-top: 80px;
}
.timeline .single-time {
  display: inline-block;
  margin-right: 60px;
  max-width: 150px;
  vertical-align: top;
}
.timeline .single-time .year {
  position: relative;
  background-color: #E1251B;
  font-weight: 700;
  width: 150px;
  height: 150px;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  white-space: normal;
  text-align: center;
  line-height: 1;
}
.timeline .single-time .year::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #000000;
  left: 100%;
}
.timeline .single-time .content {
  white-space: normal;
  line-height: 1.2;
  margin-right: -40px;
}
.timeline .single-time .content ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  line-height: 1.2;
}
.timeline .single-time .content ul li {
  position: relative;
  padding-left: 13px;
  margin-bottom: 0.4em;
}
.timeline .single-time .content ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #e1251b;
  border-radius: 50%;
  left: 0;
  top: 0.5em;
}
.timeline .single-time:last-child .year::after {
  content: none;
}

.people-section {
  padding: 80px 0 60px;
  background-color: #EFEFEF;
}
.people-section .content {
  max-width: 500px;
}
.people-section img {
  border-radius: 0 0 0 50px;
}

.main-community-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  border-radius: 0 0 50px 0;
  overflow: hidden;
}
.main-community-section::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0.2));
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.main-community-section h1 {
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.main-community-section h1::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 70px;
  border-radius: 0 0 10px 0;
  background-color: #E1251B;
  left: 0;
  top: 100%;
}
.main-community-section .content {
  max-width: 400px;
}

.page-wrap.contact h2 {
  margin-bottom: 0.8em;
}
.page-wrap.contact .contact-section-wrapper {
  position: relative;
  width: 100%;
}
.page-wrap.contact .bg-image {
  position: absolute;
  width: 60%;
  z-index: 1;
  height: 100%;
  right: 0;
  background-size: cover;
  background-position: center;
}
.page-wrap.contact .contact-section {
  padding: 50px 0 40px;
  position: relative;
  z-index: 2;
  max-width: 50%;
  border-radius: 0 0 100px 0;
}
.page-wrap.contact .contact-section .flex_container {
  max-width: 750px;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
}
.page-wrap.contact .contact-section .form-wrapper {
  flex-direction: column;
}
.page-wrap.contact .contact-section .form-wrapper .left-side label:last-child {
  margin-bottom: 1.6em;
}
.page-wrap.contact .map-section h2 {
  margin: 100px 0 50px;
}
.page-wrap.contact .subsidiaries-details .single-subsidiary {
  margin-bottom: 50px;
  transition: 0.4s;
}
.page-wrap.contact .subsidiaries-details .single-subsidiary.active {
  background-color: #EFEFEF;
}
.page-wrap.contact .subsidiaries-details h3 {
  background-color: #4D4F53;
  color: #fff;
  border-radius: 0 0 30px 0;
  padding: 10px 15px;
  font-weight: 700;
  margin-bottom: 20px;
}
.page-wrap.contact .subsidiaries-details .single-detail {
  display: flex;
  margin-bottom: 20px;
}
.page-wrap.contact .subsidiaries-details .single-detail > a {
  display: flex;
  color: #000000;
}
.page-wrap.contact .subsidiaries-details .single-detail > a:hover {
  color: #E1251B;
  text-decoration: none;
}
.page-wrap.contact .subsidiaries-details .single-detail .icon {
  width: 40px;
  text-align: center;
  padding-right: 10px;
  margin: 0 auto;
}
.page-wrap.contact .subsidiaries-details .single-detail .text {
  flex: 1;
}

.page-wrap.application .title-section {
  margin-bottom: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  min-height: 330px;
  padding: 20px 0;
  border-radius: 0 0 50px 0;
  overflow: hidden;
}
.page-wrap.application .title-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}
.page-wrap.application .title-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-wrap.application .title-section .white-bg {
  background-color: #fff;
  padding: 20px 40px 20px 0;
  border-radius: 0 0 50px 0;
  position: relative;
  margin-bottom: 30px;
}
.page-wrap.application .title-section .white-bg::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0;
  height: 100%;
  width: 500px;
  right: 100%;
}
.page-wrap.application .title-section h1 {
  margin-bottom: 0;
}
.page-wrap.application .title-section .content {
  max-width: 350px;
  margin-bottom: 30px;
}
.page-wrap.application .title-section .action-button {
  position: relative;
  background-color: #E1251B;
  border: 2px solid #E1251B;
  padding: 4px 5px;
  border-radius: 0 0 10px 0;
  transition: 0.4s;
  display: flex;
}
.page-wrap.application .title-section .action-button svg {
  width: 23px;
  height: 23px;
}
.page-wrap.application .title-section .action-button svg .red-fill {
  fill: #fff;
}
.page-wrap.application .title-section .action-button svg .red-stroke {
  stroke: #fff;
}
.page-wrap.application .title-section .action-button .text-wrapper {
  left: 100%;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.8s linear, padding 0.1s linear 0.6s;
  display: block;
  text-transform: uppercase;
  color: #fff;
}
.page-wrap.application .title-section .action-button:hover .text-wrapper {
  max-width: 150px;
  padding-left: 5px;
  transition: max-width 0.8s linear 0.1s, padding 0.1s linear;
}

.page-wrap.simple-page .title-wrapper {
  background-color: #4D4F53;
  padding: 20px 0;
  margin-bottom: 50px;
}
.page-wrap.simple-page .title-wrapper h1 {
  color: #fff;
}
.page-wrap.simple-page .content {
  margin-bottom: 100px;
  max-width: 900px;
}
.page-wrap.simple-page .content h2 {
  color: #E1251B;
  font-weight: 700;
  font-size: 1.2em;
}
.page-wrap.simple-page .wp-block-embed iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.page-wrap.blog-page {
  margin-bottom: 150px;
}
.page-wrap.blog-page .title-wrapper {
  background-color: #4D4F53;
  padding: 30px 0;
  margin-bottom: 50px;
}
.page-wrap.blog-page .title-wrapper h1 {
  color: #fff;
}
.page-wrap.blog-page .col-md-6 {
  padding: 0;
}
.page-wrap.blog-page a {
  color: inherit;
}
.page-wrap.blog-page a:hover {
  text-decoration: none;
}
.page-wrap.blog-page a:hover .read-more {
  opacity: 1;
}
.page-wrap.blog-page a:hover .read-more::after {
  width: 100%;
}
.page-wrap.blog-page .single-post {
  margin: 0;
  margin-bottom: 50px;
}
.page-wrap.blog-page .single-post .image {
  width: 100%;
  min-height: 100%;
  padding-top: 50%;
  border-radius: 80px 0 0 0;
  background-size: cover !important;
}
.page-wrap.blog-page .single-post .text-side {
  border: 1px solid #eee;
  padding: 30px;
}
.page-wrap.blog-page .read-more {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: 0.4s;
  padding: 10px 15px;
}
.page-wrap.blog-page .read-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #E1251B;
  width: 0;
  height: 5px;
  border-radius: 5px 0 0 0;
  transition: 0.5s;
}
.page-wrap.blog-page .load-more-posts {
  position: relative;
}
.page-wrap.blog-page .load-more-posts::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
}

.page-wrap.post-page .title-wrapper {
  background-color: #4D4F53;
  padding: 70px 0;
  margin-bottom: 50px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-wrap.post-page .title-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.page-wrap.post-page .title-wrapper .date {
  color: #fff;
  font-size: 0.8rem;
}
.page-wrap.post-page .title-wrapper h1 {
  color: #fff;
}
.page-wrap.post-page .title-wrapper .blog-link {
  color: #fff;
  position: relative;
  padding: 0 20px;
}
.page-wrap.post-page .title-wrapper .blog-link::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  bottom: 50%;
  left: 0;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(45deg) translate(7px, 5px);
  transition: 0.5s;
}
.page-wrap.post-page .content {
  max-width: 800px;
  margin-bottom: 100px;
}

.wp-block-image {
  border-radius: 0 0 0 50px;
  margin-bottom: 50px;
}
.wp-block-image img {
  height: auto;
}

.wp-block-gallery {
  margin-bottom: 50px;
}

.page-wrap.repeater-page .title-wrapper {
  margin-bottom: 100px;
}
.page-wrap.repeater-page .title-wrapper .container {
  display: flex;
  align-items: center;
  height: 400px;
}
.page-wrap.repeater-page .title-wrapper h1 {
  color: #4D4F53;
  width: 40%;
  font-size: 2.1rem;
  position: relative;
  padding-bottom: 10px;
}
.page-wrap.repeater-page .title-wrapper h1::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 70px;
  border-radius: 0 0 10px 0;
  background-color: #E1251B;
  left: 0;
  top: 100%;
}
.page-wrap.repeater-page .title-wrapper .image {
  top: 0;
  right: calc((100vw - 1200px) / -2);
  position: absolute;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: calc(450px + (100vw - 1200px) / 2);
  border-radius: 0 0 0 80px;
}
.page-wrap.repeater-page .title-wrapper .sketch {
  position: relative;
  z-index: 2;
}
.page-wrap.repeater-page .doc-group {
  margin-bottom: 50px;
}
.page-wrap.repeater-page .doc-group .doc-group-top {
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
}
.page-wrap.repeater-page .doc-group .doc-group-top h2 {
  font-size: 1.5rem;
  margin-bottom: 0;
  margin-right: 10px;
  transition: 0.4s;
}
.page-wrap.repeater-page .doc-group .doc-group-top h2 .downloads-cat-icon {
  display: inline-block;
  width: 80px;
  text-align: center;
}
.page-wrap.repeater-page .doc-group .doc-group-top .count {
  margin-right: 15px;
  color: #ababab;
}
.page-wrap.repeater-page .doc-group .doc-group-top::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #4D4F53;
  margin-right: 30px;
  transition: 0.4s;
}
.page-wrap.repeater-page .doc-group .doc-group-top::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #E1251B;
  border-right: 2px solid #E1251B;
  border-radius: 0 0 3px 0;
  right: 0;
  transform: rotate(-45deg);
  transition: 0.4s;
}
.page-wrap.repeater-page .doc-group .doc-group-top:hover h2 {
  color: #E1251B;
}
.page-wrap.repeater-page .doc-group .doc-group-top:hover::after {
  background-color: #E1251B;
}
.page-wrap.repeater-page .doc-group .docs-wrapper {
  display: none;
  padding-top: 20px;
}
.page-wrap.repeater-page .doc-group .docs-wrapper .docs-container {
  display: flex;
  flex-wrap: wrap;
  padding-left: 90px;
}
.page-wrap.repeater-page .doc-group .docs-wrapper .doc-wrapper {
  flex: 0 0 50%;
  max-width: 50%;
}
.page-wrap.repeater-page .doc-group .docs-wrapper .doc-wrapper a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  border-bottom: 1px solid #ababab;
  padding: 15px 0px;
  color: #4D4F53;
}
.page-wrap.repeater-page .doc-group .docs-wrapper .doc-wrapper a .svg-stroke {
  transition: 0.4s;
}
.page-wrap.repeater-page .doc-group .docs-wrapper .doc-wrapper a:hover {
  text-decoration: none;
  color: #E1251B;
  border-bottom: 1px solid #E1251B;
}
.page-wrap.repeater-page .doc-group .docs-wrapper .doc-wrapper a:hover .svg-stroke {
  stroke: #E1251B;
}
.page-wrap.repeater-page .doc-group.active .doc-group-top::before {
  transform: rotate(45deg);
}
.page-wrap.repeater-page .doc-group:last-child {
  margin-bottom: 150px;
}
.page-wrap.repeater-page .doc-group .answer {
  max-width: 700px;
}
.page-wrap.repeater-page .doc-group .answer *:last-child {
  margin-bottom: 0;
}
.page-wrap.repeater-page .doc-group .button-wrapper {
  padding-left: 90px;
}
.page-wrap.repeater-page .doc-group .button-wrapper .button {
  background: transparent !important;
}
.page-wrap.repeater-page .doc-group .button-wrapper .button:hover {
  background: #E1251B !important;
}
.page-wrap.repeater-page .doc-group .button-wrapper .loader {
  display: none;
  padding-top: 20px;
}

.single-case-study .title-section {
  margin-bottom: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  min-height: 330px;
  padding: 20px 0;
  border-radius: 0 0 50px 0;
  overflow: hidden;
}
.single-case-study .title-section .white-bg {
  background-color: #fff;
  padding: 20px 40px 20px 0;
  border-radius: 0 0 50px 0;
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.single-case-study .title-section .white-bg:before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0;
  height: 100%;
  width: 500px;
  right: 100%;
}
.single-case-study .title-section .white-bg .flag {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #4D4F53;
  margin-right: 10px;
}
.single-case-study .title-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.single-case-study .title-section a {
  color: #fff;
}
.single-case-study .title-section .action-button {
  position: relative;
  background-color: #E1251B;
  border: 2px solid #E1251B;
  padding: 4px 5px;
  border-radius: 0 0 10px 0;
  transition: 0.4s;
  display: flex;
}
.single-case-study .title-section .action-button svg {
  width: 23px;
  height: 23px;
}
.single-case-study .title-section .action-button svg .red-fill {
  fill: #fff;
}
.single-case-study .title-section .action-button svg .red-stroke {
  stroke: #fff;
}
.single-case-study .title-section .action-button .text-wrapper {
  left: 100%;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.8s linear, padding 0.1s linear 0.6s;
  display: block;
  text-transform: uppercase;
  color: #fff;
}
.single-case-study .title-section .action-button:hover .text-wrapper {
  max-width: 150px;
  padding-left: 5px;
  transition: max-width 0.8s linear 0.1s, padding 0.1s linear;
}
.single-case-study .title-section .project-country {
  line-height: 0.8;
  font-size: 1.3rem;
}
.single-case-study .title-section .project-country span {
  font-size: 3.5rem;
  font-weight: 700;
}
.single-case-study .title-section .project-title {
  display: flex;
}
.single-case-study .title-section .project-title .icon {
  margin-right: 20px;
}
.single-case-study .title-section .project-title .icon svg {
  max-width: 50px;
  max-height: 50px;
}
.single-case-study .title-section .project-title .title {
  border-left: 2px solid white;
  padding-left: 20px;
  max-width: 60%;
}
.single-case-study .title-section .project-title .title .action-button {
  display: inline-flex;
}
.single-case-study .title-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.single-case-study .main-content {
  margin-bottom: 100px;
}
.single-case-study .case-gallery {
  margin: 0 -10px 50px;
}
.single-case-study .case-gallery img {
  padding: 0 10px;
}
.single-case-study .project-summery h2 {
  font-size: 1.4rem;
  border-bottom: 2px solid #4D4F53;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.single-case-study .project-summery h3 {
  font-size: 0.85rem;
  margin-bottom: 0;
}
.single-case-study .project-summery .single-data {
  border-bottom: 2px solid #EFEFEF;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.single-case-study .project-summery .single-data:last-child {
  border-bottom: 0;
}
.single-case-study .project-summery .flex {
  display: flex;
  margin-bottom: 1em;
}
.single-case-study .project-summery .flex p {
  margin-bottom: 0;
}
.single-case-study .project-summery .flex .texts {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.single-case-study .project-summery .flex .icon {
  width: 30px;
  margin-top: 5px;
  margin-right: 15px;
}
.single-case-study .project-summery .flex .icon svg {
  max-width: 100%;
  height: auto;
}
.single-case-study .project-summery .flex .logo {
  width: 100%;
  max-width: 170px;
  max-height: 50px;
}
.single-case-study .project-summery .flex .logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.single-case-study .project-summery a {
  display: block;
  margin-bottom: 30px;
  max-width: 200px;
  color: #4D4F53;
}
.single-case-study .project-summery a .thumbnail-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border: 1px solid #4D4F53;
  margin-bottom: 5px;
  overflow: hidden;
  transition: 0.4s;
}
.single-case-study .project-summery a .thumbnail-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  width: auto;
  height: auto;
}
.single-case-study .project-summery a .thumbnail-wrapper .hover {
  position: absolute;
  bottom: 0;
  transform: translateX(-100%);
  text-transform: uppercase;
  transition: 0.4s;
  padding: 5px;
}
.single-case-study .project-summery a .thumbnail-wrapper .hover::after {
  content: "";
  position: absolute;
  height: 6px;
  width: 100%;
  border-radius: 0 0 5px 0;
  background-color: #E1251B;
  left: 0;
  bottom: 0;
}
.single-case-study .project-summery a .title {
  font-weight: 700;
}
.single-case-study .project-summery a:hover {
  text-decoration: none;
}
.single-case-study .project-summery a:hover .thumbnail-wrapper {
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.2);
}
.single-case-study .project-summery a:hover .thumbnail-wrapper .hover {
  transform: translateX(0);
}
.single-case-study .quote-part {
  position: relative;
  background-color: #4D4F53;
  color: #fff;
  padding: 50px 50px 50px 0;
  border-radius: 0 0 50px 0;
  margin-bottom: 50px;
}
.single-case-study .quote-part::before {
  content: "";
  position: absolute;
  background-color: #4D4F53;
  width: 1000px;
  right: 100%;
  height: 100%;
  top: 0;
}
.single-case-study .back-button {
  color: #000000;
  position: relative;
  text-decoration: none;
  padding-left: 1em;
  margin-bottom: 50px;
  font-weight: 700;
  display: block;
  transition: 0.4s;
}
.single-case-study .back-button::before {
  content: "";
  position: absolute;
  width: 0.7em;
  height: 0.7rem;
  border-left: 3px solid #E1251B;
  border-bottom: 3px solid #E1251B;
  transform: rotate(45deg);
  left: 0;
  bottom: 4px;
  transition: 0.4s;
}
.single-case-study .back-button:hover {
  color: #E1251B;
}
.single-case-study .back-button:hover::before {
  left: -10px;
}
.single-case-study table {
  border-bottom: 8px solid #d8dbd8;
}
.single-case-study table tbody tr:nth-child(odd) td {
  background: #f7f7f7;
}
.single-case-study table tbody tr td {
  padding: 8px;
  border: 4px solid #fff;
}

.archive-case-study .title-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #4D4F53;
  padding: 20px 0;
  color: #fff;
  margin-bottom: 80px;
}
.archive-case-study .title-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}
.archive-case-study .title-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.archive-case-study .title-section .content {
  position: relative;
  max-width: 800px;
  margin: 20px 0 20px 0;
  padding-top: 30px;
}
.archive-case-study .title-section .content::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 12px;
  background-color: #E1251B;
  border-radius: 0 0 10px 0;
  top: 0;
  left: 0;
}
.archive-case-study .title-section .action-button {
  position: relative;
  background-color: #E1251B;
  border: 2px solid #E1251B;
  padding: 4px 5px;
  border-radius: 0 0 10px 0;
  transition: 0.4s;
  display: flex;
}
.archive-case-study .title-section .action-button svg {
  width: 23px;
  height: 23px;
}
.archive-case-study .title-section .action-button svg .red-fill {
  fill: #fff;
}
.archive-case-study .title-section .action-button svg .red-stroke {
  stroke: #fff;
}
.archive-case-study .title-section .action-button .text-wrapper {
  left: 100%;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.8s linear, padding 0.1s linear 0.6s;
  display: block;
  text-transform: uppercase;
  color: #fff;
}
.archive-case-study .title-section .action-button:hover .text-wrapper {
  max-width: 150px;
  padding-left: 5px;
  transition: max-width 0.8s linear 0.1s, padding 0.1s linear;
}

.community-projects-section {
  margin-top: 120px;
}
.community-projects-section .flex_container {
  display: block;
}

.community-projects-wrapper {
  margin-top: 50px;
  margin-bottom: 150px;
  padding-bottom: 30px;
  overflow-x: auto;
  display: flex;
}
.community-projects-wrapper .single-project {
  min-width: 400px;
  width: 400px;
  margin: 0 20px;
}
.community-projects-wrapper .single-project:first-child {
  margin-left: 40px;
}
.community-projects-wrapper .single-project:last-child {
  margin-right: 40px;
}
.community-projects-wrapper .single-project .project-title {
  color: #4D4F53;
  font-size: 1.2em;
  margin-top: 10px;
  font-weight: 700;
}
.community-projects-wrapper .single-project .bg-wrapper {
  position: relative;
  background-color: #eee;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding-top: 100%;
}
.community-projects-wrapper .single-project .bg-wrapper .text {
  position: relative;
  top: 0;
  margin-top: -400px;
  padding: 20px;
  opacity: 0;
  transition: 0.4s;
  z-index: 4;
}
.community-projects-wrapper .single-project .bg-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2d2d2d;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.4s;
}
.community-projects-wrapper .single-project:hover .bg-wrapper .text {
  opacity: 1;
}
.community-projects-wrapper .single-project:hover .bg-wrapper::before {
  opacity: 1;
}

.page-wrap.ethical .single-breadcrumb {
  color: #fff;
  font-size: 0.9em;
}
.page-wrap.ethical .content a {
  text-decoration: underline;
  font-weight: 700;
}
.page-wrap.ethical .content a:hover {
  color: inherit;
}
.page-wrap.ethical .content ul {
  margin-top: 1.2em;
}
.page-wrap.ethical .content ul li::before {
  background-image: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  top: 8px;
}

.top-ethics-section {
  padding-top: 70px;
}
.top-ethics-section .content {
  margin-bottom: 1em;
}
.top-ethics-section .values {
  padding-top: 70px;
  display: flex;
  margin: 0 -2px 4px;
}
.top-ethics-section .values .value {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  text-align: center;
  height: 20vw;
  margin: 0 2px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 25px;
}
.top-ethics-section .values .value::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2) 70%);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.top-ethics-section .values .value h3 {
  position: relative;
}

.bg-ethics-section {
  padding: 100px 0 400px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.bg-ethics-section::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2) 70%);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.bg-ethics-section .content {
  max-width: 600px;
  margin-bottom: 20px;
}
.bg-ethics-section .content.medium-text {
  max-width: 800px;
}

.gray-ethics-section {
  margin-top: -350px;
}
.gray-ethics-section .gray-bg {
  background-color: #2d2d2d;
  padding: 50px 50px 50px 0;
  border-radius: 0 50px 0 0;
  position: relative;
  max-width: 700px;
}
.gray-ethics-section .gray-bg::before {
  content: "";
  position: absolute;
  background-color: #2d2d2d;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100vw;
}

.evironment-ethics-section {
  padding: 50px 0;
}
.evironment-ethics-section .image {
  padding-top: 50%;
  border-radius: 0 0 0 50px;
  background-size: cover;
  background-position: center;
}

.icons-ethics-section {
  margin: 100px 0;
}
.icons-ethics-section .icons {
  display: flex;
  margin-top: 50px;
}
.icons-ethics-section .icons .value {
  width: 100%;
}
.icons-ethics-section .icons .value .img {
  height: 70px;
  width: auto;
}
.icons-ethics-section .icons .value .text {
  position: relative;
  max-width: 150px;
  padding-top: 10px;
  margin-top: 30px;
}
.icons-ethics-section .icons .value .text::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 70px;
  border-radius: 0 0 10px 0;
  background-color: #dfdfdf;
  left: 0;
  bottom: 100%;
}

.donations-ethics-section {
  background-image: linear-gradient(180deg, #dfdfdf, #fff);
  padding: 100px 0;
}
.donations-ethics-section .content {
  max-width: 500px;
}
.donations-ethics-section .image {
  padding-top: 50%;
  border-radius: 0 0 0 50px;
  background-size: cover;
  background-position: center;
}
.donations-ethics-section .buttons {
  margin-bottom: 40px;
}
.donations-ethics-section .button {
  margin-right: 10px;
}

.page-wrap.single-solution .title-section {
  position: relative;
  padding: 50px 0;
}
.page-wrap.single-solution .title-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.page-wrap.single-solution .title-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-wrap.single-solution .title-section a {
  color: #fff;
}
.page-wrap.single-solution .title-section .action-button {
  position: relative;
  background-color: #E1251B;
  border: 2px solid #E1251B;
  padding: 4px 5px;
  border-radius: 0 0 10px 0;
  transition: 0.4s;
  display: flex;
}
.page-wrap.single-solution .title-section .action-button svg {
  width: 23px;
  height: 23px;
}
.page-wrap.single-solution .title-section .action-button svg .red-fill {
  fill: #fff;
}
.page-wrap.single-solution .title-section .action-button svg .red-stroke {
  stroke: #fff;
}
.page-wrap.single-solution .title-section .action-button .text-wrapper {
  left: 100%;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.8s linear, padding 0.1s linear 0.6s;
  display: block;
  text-transform: uppercase;
  color: #fff;
}
.page-wrap.single-solution .title-section .action-button:hover .text-wrapper {
  max-width: 150px;
  padding-left: 5px;
  transition: max-width 0.8s linear 0.1s, padding 0.1s linear;
}
.page-wrap.single-solution .main-section {
  margin: 70px 0 100px;
}
.page-wrap.single-solution .main-section .video-thumb {
  width: 100%;
  padding-top: 56%;
  background-size: cover !important;
  border-radius: 0 0 0 50px;
  position: relative;
}
.page-wrap.single-solution .main-section .video-thumb a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../svg/yt_play.svg) center center no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  background-size: 100px;
}
.page-wrap.single-solution .main-section img {
  border-radius: 0 0 0 50px;
}
.page-wrap.single-solution .bg-section {
  margin: 70px 0;
}
.page-wrap.single-solution .bg-section .content {
  max-width: 600px;
}
.page-wrap.single-solution .bg-section .bg-part {
  position: relative;
  padding: 50px 0 350px;
  background-size: cover;
  background-position: center;
}
.page-wrap.single-solution .bg-section .bg-part::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}
.page-wrap.single-solution .dark-bg {
  position: relative;
  margin-top: -300px;
  max-width: 800px;
  border-radius: 0 50px 0 0;
  background: #2d2d2d;
  padding: 50px 0;
}
.page-wrap.single-solution .dark-bg::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 100%;
  top: 0;
  right: 100%;
  background: #2d2d2d;
}
.page-wrap.single-solution .dark-bg .content {
  margin-top: 30px;
}
.page-wrap.single-solution .dark-bg .content ul li {
  margin-bottom: 1em;
}
.page-wrap.single-solution .icons-section {
  margin: 70px 0;
}
.page-wrap.single-solution .icons-section h2 {
  margin-bottom: 40px;
}
.page-wrap.single-solution .icons-section .single-icon {
  margin-bottom: 50px;
}
.page-wrap.single-solution .icons-section .title {
  position: relative;
  padding-top: 25px;
  margin-top: 25px;
}
.page-wrap.single-solution .icons-section .title::before {
  content: "";
  position: absolute;
  background-color: #EFEFEF;
  width: 100px;
  height: 13px;
  border-radius: 0 0 15px 0;
  top: 0;
}
.page-wrap.single-solution .slides-section h2 {
  margin-bottom: 40px;
}
.page-wrap.single-solution .slides-section .single-slide {
  margin-bottom: 40px;
}
.page-wrap.single-solution .slides-section .single-slide .hidden {
  display: none;
  padding-bottom: 40px;
}
.page-wrap.single-solution .slides-section .single-slide .slide-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
}
.page-wrap.single-solution .slides-section .single-slide .slide-top .line {
  height: 2px;
  flex: 1;
  background-color: #ddd;
  margin: 0 20px;
}
.page-wrap.single-solution .slides-section .single-slide .slide-top .arrow {
  height: 15px;
  width: 15px;
  border-bottom: 3px solid #E1251B;
  border-right: 3px solid #E1251B;
  transform: rotate(-45deg);
  transition: 0.5s;
}
.page-wrap.single-solution .slides-section .single-slide .button {
  margin-right: 20px;
}
.page-wrap.single-solution .slides-section .single-slide.active .slide-top .arrow {
  height: 15px;
  width: 15px;
  border-bottom: 3px solid #E1251B;
  border-right: 3px solid #E1251B;
  transform: rotate(45deg);
}
.page-wrap.single-solution .button-section {
  margin: 50px 0 150px;
}

.serach-page h1 span {
  color: #E1251B;
}
.serach-page .no-results {
  text-align: center;
  width: 100%;
}
.serach-page .no-results h3 {
  color: #E1251B;
  font-size: 2rem;
  font-weight: 600;
}
.serach-page .no-results p {
  font-size: 1.3rem;
}
.serach-page .no-results form#searchform div {
  justify-content: center;
}

.page-404 .container,
.thankyou-page .container {
  padding: 100px 0;
}
.page-404 h1,
.thankyou-page h1 {
  margin: 50px 0 20px;
}
.page-404 .social,
.thankyou-page .social {
  margin-top: 50px;
  justify-content: center;
  align-items: center;
}
.page-404 .social .text,
.thankyou-page .social .text {
  margin: 0 20px;
}
.page-404 .social svg path,
.page-404 .social svg polygon,
.thankyou-page .social svg path,
.thankyou-page .social svg polygon {
  fill: #E1251B;
}

.single-project-wrapper {
  counter-reset: li;
}
.single-project-wrapper .main-details {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}
.single-project-wrapper .main-details .flag {
  margin-right: 15px;
  margin-top: 5px;
}
.single-project-wrapper .main-details .flag img {
  width: 85px;
  height: auto;
}
.single-project-wrapper .main-details .texts {
  flex: 1;
}
.single-project-wrapper .single-content-type {
  margin: 80px 0;
}
.single-project-wrapper .single-content-type.only-title-content {
  margin-bottom: -60px;
}
.single-project-wrapper .single-content-type h2 {
  margin-bottom: 1rem;
}
.single-project-wrapper .content.two-col {
  column-count: 2;
  column-gap: 30px;
}
.single-project-wrapper .side-gallery .image {
  width: 100%;
  padding-top: 100%;
  margin-bottom: 15px;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.single-project-wrapper .side-gallery .image:hover .image-description {
  transform: translateY(0);
}
.single-project-wrapper .side-single-image img {
  max-width: 100%;
  border-radius: 0 0 80px 0;
}
.single-project-wrapper .side-image-wrapper {
  width: calc((100vw - 1200px - 30px) / 2 + 405px);
}
.single-project-wrapper .side-image {
  width: 100%;
  padding-top: 58%;
  border-radius: 80px 0 0 0;
}
.single-project-wrapper .container-gallery .image {
  position: relative;
  width: 100%;
  padding-top: 70%;
  margin-bottom: 15px;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.single-project-wrapper .container-gallery .image:hover .image-description {
  transform: translateY(0);
}
.single-project-wrapper .image-description {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 5px 10px;
  font-size: 0.9rem;
  transform: translateY(105%);
  background-color: #E1251B;
  color: #fff;
  transition: 0.3s;
  width: 100%;
}
.single-project-wrapper .title-icon {
  background-color: #E1251B;
  padding: 0.25em;
  width: 1.7em;
  height: 1.7em;
  margin-right: 10px;
  border-radius: 20px 0 0 0;
  margin-bottom: 15px;
}
.single-project-wrapper .title-number {
  position: relative;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  counter-increment: li;
}
.single-project-wrapper .title-number::before {
  content: counter(li);
  background-color: #E1251B;
  position: relative;
  color: #fff;
  border-radius: 20px 0 0 0;
  padding: 0.25em;
  min-width: 1.7em;
  height: 1.7em;
  margin-right: 10px;
  text-align: center;
}
.single-project-wrapper .light-bg {
  background-color: #EFEFEF;
  padding: 50px;
  margin: 0 -50px;
  border-radius: 0 0 0 50px;
  position: relative;
}
.single-project-wrapper .light-bg::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #EFEFEF;
  width: 100%;
  height: 100%;
}
.single-project-wrapper .light-bg .image-wrapper img {
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.single-project-wrapper .dark-bg {
  background-color: #2d2d2d;
  color: #fff;
}
.single-project-wrapper .testimonials-type .left-side {
  height: 100%;
  position: relative;
  padding: 50px 30px 50px 0;
}
.single-project-wrapper .testimonials-type .left-side ::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  background-color: #2d2d2d;
  width: 100%;
  height: 100%;
}
.single-project-wrapper .testimonial {
  padding: 50px 30px;
}
.single-project-wrapper .testimonial .testimonial-text {
  position: relative;
  padding: 0 40px;
}
.single-project-wrapper .testimonial .testimonial-text .qoute {
  position: absolute;
}
.single-project-wrapper .testimonial .testimonial-text .qoute.open-qoute {
  top: -20px;
  left: 0;
}
.single-project-wrapper .testimonial .testimonial-text .qoute.end-qoute {
  bottom: -20px;
  right: 0;
}
.single-project-wrapper .testimonial .testimonial-text .qoute svg {
  width: 25px;
  height: auto;
}
.single-project-wrapper .testimonial .details {
  margin-top: 30px;
  padding: 0 40px;
}
.single-project-wrapper .testimonials-slider {
  width: calc((100vw - 1200px - 30px) / 2 + 799.3421052632px);
  /* the parent */
}
.single-project-wrapper .testimonials-slider .slick-track {
  display: flex !important;
}
.single-project-wrapper .testimonials-slider .slick-slide {
  height: inherit !important;
  margin: 0 10px;
}
.single-project-wrapper .testimonials-slider .slick-slide > div,
.single-project-wrapper .testimonials-slider .slick-slide .testimonial {
  height: 100%;
}
.single-project-wrapper .testimonials-slider .slick-list {
  margin: 0 -20px;
}
.single-project-wrapper .testimonials-slider .slick-dots {
  font-size: 0;
  margin: 0;
  padding: 0;
  display: flex;
  position: absolute;
  bottom: 20px;
  right: calc(100% + 50px);
  justify-content: center;
}
.single-project-wrapper .testimonials-slider .slick-dots li {
  margin: 0 5px;
}
.single-project-wrapper .testimonials-slider .slick-dots li button {
  height: 10px;
  width: 10px;
  padding: 0;
  background: #EFEFEF;
  border: 0;
}
.single-project-wrapper .testimonials-slider .slick-dots li.slick-active button {
  background: #E1251B;
}
.single-project-wrapper .archive-squares {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  width: 100%;
}
.single-project-wrapper .single-square {
  width: 25%;
  padding: 0 15px 30px;
  color: #000000;
}
.single-project-wrapper .single-square .thumbnail-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: #fff;
  border: 1px solid #4D4F53;
  margin-bottom: 10px;
  overflow: hidden;
  transition: 0.4s;
}
.single-project-wrapper .single-square .thumbnail-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  width: auto;
  height: auto;
}
.single-project-wrapper .single-square .thumbnail-wrapper .hover {
  position: absolute;
  bottom: 0;
  transform: translateX(-100%);
  text-transform: uppercase;
  transition: 0.4s;
  padding: 5px;
}
.single-project-wrapper .single-square .thumbnail-wrapper .hover::after {
  content: "";
  position: absolute;
  height: 6px;
  width: 100%;
  border-radius: 0 0 5px 0;
  background-color: #E1251B;
  left: 0;
  bottom: 0;
}
.single-project-wrapper .single-square .title {
  font-weight: 700;
}
.single-project-wrapper .single-square:hover {
  text-decoration: none;
}
.single-project-wrapper .single-square:hover .thumbnail-wrapper {
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.2);
}
.single-project-wrapper .single-square:hover .thumbnail-wrapper .hover {
  transform: translateX(0);
}

#downloads-filter {
  background: #efefef;
  padding: 70px 0;
  margin-bottom: 70px;
}
#downloads-filter ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
#downloads-filter ul li {
  margin-right: 30px;
}
#downloads-filter ul li a.button {
  margin: 0;
  padding: 8px 20px;
  border-width: 2px;
  cursor: pointer;
}
#downloads-filter ul li a.button.active {
  background: #E1251B;
  color: white;
}
#downloads-filter ul li.loader {
  display: flex;
  align-items: flex-end;
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.2s;
}
#downloads-filter ul li.loader.active {
  visibility: visible;
  opacity: 1;
}

#downloads-list .cad-loader {
  display: flex;
  align-items: flex-end;
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.2s;
}
#downloads-list .cad-loader.active {
  visibility: visible;
  opacity: 1;
}
#downloads-list h4 {
  margin-right: 20px;
}

body.page-template-media-center .single-video {
  margin-bottom: 50px;
}
body.page-template-media-center .single-video .video-thumb {
  width: 100%;
  padding-top: 56%;
  background-size: 100% !important;
  position: relative;
  transition: all ease-in-out 0.3s;
}
body.page-template-media-center .single-video .video-thumb a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../svg/plasson_play.svg) center center no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  background-size: 65px;
}
body.page-template-media-center .single-video .video-thumb:hover {
  background-size: 110% !important;
}
body.page-template-media-center .single-video h4 {
  font-weight: 600;
}
body.page-template-media-center .button-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
body.page-template-media-center .button-wrapper .button {
  background: transparent;
}
body.page-template-media-center .button-wrapper .button:hover {
  background: #E1251B;
}
body.page-template-media-center .loader {
  display: none;
}

#page-wrap.plassaddle .page-top {
  position: relative;
}
#page-wrap.plassaddle .page-top .top-bg {
  position: absolute;
  top: 0;
  width: 100%;
}
#page-wrap.plassaddle .page-top .top-bg .bg-image {
  width: 55%;
  background-size: cover !important;
  border-bottom-right-radius: 100px;
  position: relative;
  overflow: hidden;
}
#page-wrap.plassaddle .page-top .top-bg .bg-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
#page-wrap.plassaddle .page-top h2 {
  font-size: 2.2rem;
  padding-bottom: 1rem;
}
#page-wrap.plassaddle .page-top .page-intro {
  padding: 120px 28% 120px 0;
}
#page-wrap.plassaddle .page-top .grey-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 90%;
  background: #EFEFEF;
}
#page-wrap.plassaddle .page-top .floatin-img {
  position: fixed;
  max-width: 100%;
  top: 30vh;
}
#page-wrap.plassaddle .page-top .seperator {
  margin-top: 2rem;
}
#page-wrap.plassaddle .seperator {
  display: block;
  height: 10px;
  width: 188px;
  background: #E1251B;
  border-bottom-right-radius: 10px;
  margin: 0.5rem 0 1.5rem;
}
#page-wrap.plassaddle #plassaddle-info {
  padding: 3rem 0 5rem;
}
#page-wrap.plassaddle #plassaddle-info button.red-button a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
#page-wrap.plassaddle #plassaddle-info button.red-button a:hover {
  color: #E1251B;
}
#page-wrap.plassaddle h3 {
  color: #E1251B;
  font-weight: 700;
  font-size: 1.66rem;
}
#page-wrap.plassaddle ol {
  list-style: none;
  counter-reset: counter;
  padding-left: 50px;
}
#page-wrap.plassaddle ol li {
  counter-increment: counter;
  margin-bottom: 1rem;
}
#page-wrap.plassaddle ol li::before {
  content: counter(counter) " ";
  width: 35px;
  height: 35px;
  border-top-right-radius: 10px;
  margin-left: -50px;
  margin-right: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: white;
  background: #E1251B;
  font-weight: 700;
}
#page-wrap.plassaddle ul {
  list-style: none;
  padding-left: 20px;
}
#page-wrap.plassaddle ul li {
  margin-bottom: 1rem;
}
#page-wrap.plassaddle ul li::before {
  content: "";
  display: inline-block;
  background: #E1251B;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: -20px;
  margin-right: 10px;
}
#page-wrap.plassaddle #plassadle-gallery {
  padding: 0 0 3rem;
  background: white;
  position: relative;
}
#page-wrap.plassaddle #plassadle-gallery .single-image {
  aspect-ratio: 3/2;
  background-size: cover !important;
}
#page-wrap.plassaddle #plassadle-tech-info {
  background: white;
  padding: 4rem 0;
  position: relative;
}
#page-wrap.plassaddle #plassadle-tech-info .tech-info-col {
  padding: 0 2rem 0 5rem;
}
#page-wrap.plassaddle #plassadle-tech-info .tech-info-col .title {
  color: #E1251B;
  margin-bottom: 0;
}
#page-wrap.plassaddle #plassadle-tech-info .tech-info-col .value {
  font-weight: 700;
}
#page-wrap.plassaddle #plassadle-tech-info h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5rem;
}
#page-wrap.plassaddle #plassadle-tech-info .row .tech-info-col:first-child {
  border-right: 1px solid #6A7777;
}
#page-wrap.plassaddle #plassaddle-install-guide {
  background: #EFEFEF;
  border-top-left-radius: 100px;
  padding: 4rem 0;
  position: relative;
}
#page-wrap.plassaddle #plassaddle-install-guide .large-text {
  color: #4D4F53;
  margin-bottom: 0;
}
#page-wrap.plassaddle #plassaddle-install-guide .options {
  border: 2px solid black;
  border-radius: 6px;
  overflow: hidden;
  margin-left: 3rem;
}
#page-wrap.plassaddle #plassaddle-install-guide .options span {
  padding: 4px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#page-wrap.plassaddle #plassaddle-install-guide .options span.active {
  background: black;
  color: white;
}
#page-wrap.plassaddle #plassaddle-install-guide .single-step {
  aspect-ratio: 3/2;
  background-size: cover !important;
  position: relative;
  margin-top: 50px;
}
#page-wrap.plassaddle #plassaddle-install-guide .single-step .step-name {
  position: absolute;
  left: 0;
  top: -50px;
  width: 100px;
  height: 100px;
  border-top-right-radius: 20px;
  background: #E1251B;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 3.5rem;
}
#page-wrap.plassaddle #plassaddle-install-guide .step-carousel {
  top: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  height: 0;
}
#page-wrap.plassaddle #plassaddle-install-guide .step-carousel.active {
  visibility: visible;
  opacity: 1;
  height: auto;
  transition: all ease 0.5s;
}
#page-wrap.plassaddle #plassaddle-install-guide .carousel-wrapper {
  padding: 5rem 0;
  position: relative;
}
#page-wrap.plassaddle #plassaddle-install-guide .videos-carousel .single-video {
  background-size: cover !important;
  aspect-ratio: 3/2;
}
#page-wrap.plassaddle #plassaddle-install-guide .videos-carousel .single-video a {
  display: block;
  background: url(../../svg/plasson_play.svg) center center no-repeat rgba(0, 0, 0, 0.6);
  height: 100%;
}
#page-wrap.plassaddle #plassaddle-install-guide #install-videos h2 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4rem;
}
#page-wrap.plassaddle .plassaddle-carousel {
  background: white;
  margin-top: 3rem;
  position: relative;
}
#page-wrap.plassaddle .plassaddle-carousel .owl-nav, #page-wrap.plassaddle .guide-carousel .owl-nav, #page-wrap.plassaddle .videos-carousel .owl-nav {
  position: absolute;
  top: calc(50% - 30px);
  width: 100%;
}
#page-wrap.plassaddle .plassaddle-carousel .owl-nav button, #page-wrap.plassaddle .guide-carousel .owl-nav button, #page-wrap.plassaddle .videos-carousel .owl-nav button {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
#page-wrap.plassaddle .plassaddle-carousel .owl-nav button.owl-prev, #page-wrap.plassaddle .guide-carousel .owl-nav button.owl-prev, #page-wrap.plassaddle .videos-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 60px;
  padding-left: 10px !important;
}
#page-wrap.plassaddle .plassaddle-carousel .owl-nav button.owl-prev span, #page-wrap.plassaddle .guide-carousel .owl-nav button.owl-prev span, #page-wrap.plassaddle .videos-carousel .owl-nav button.owl-prev span {
  transform: rotate(225deg);
}
#page-wrap.plassaddle .plassaddle-carousel .owl-nav button.owl-next, #page-wrap.plassaddle .guide-carousel .owl-nav button.owl-next, #page-wrap.plassaddle .videos-carousel .owl-nav button.owl-next {
  position: absolute;
  right: 60px;
  padding-right: 10px !important;
}
#page-wrap.plassaddle .plassaddle-carousel .owl-nav button span, #page-wrap.plassaddle .guide-carousel .owl-nav button span, #page-wrap.plassaddle .videos-carousel .owl-nav button span {
  width: 18px;
  height: 18px;
  border-right: 2px solid white;
  border-top: 2px solid white;
  transform: rotate(45deg);
}
#page-wrap.plassaddle .plassaddle-carousel .owl-dots, #page-wrap.plassaddle .guide-carousel .owl-dots, #page-wrap.plassaddle .videos-carousel .owl-dots {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}
#page-wrap.plassaddle .plassaddle-carousel .owl-dots .owl-dot, #page-wrap.plassaddle .guide-carousel .owl-dots .owl-dot, #page-wrap.plassaddle .videos-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #4D4F53;
  margin: 0 5px;
}
#page-wrap.plassaddle .plassaddle-carousel .owl-dots .owl-dot.active, #page-wrap.plassaddle .guide-carousel .owl-dots .owl-dot.active, #page-wrap.plassaddle .videos-carousel .owl-dots .owl-dot.active {
  background: #E1251B;
  width: 25px;
  border-top-left-radius: 10px;
}

.page-template-plassaddle .footer {
  position: relative;
}

.sustainability .main-community-section {
  padding: 140px 0;
}
.sustainability .sustainability-sections {
  padding: 4rem 0;
}
.sustainability .sustainability-sections .sustainability-section {
  padding-bottom: 3rem;
}
.sustainability .sustainability-sections .sustainability-section img {
  margin-bottom: 2rem;
}
.sustainability .sustainability-sections .sustainability-section h2 {
  font-size: 1.5rem;
  position: relative;
}
.sustainability .sustainability-sections .sustainability-section h2::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 70px;
  border-radius: 0 0 10px 0;
  background-color: #dfdfdf;
  left: 0;
  bottom: 130%;
}
.sustainability .sustainability-docs {
  padding: 3rem;
  background-image: linear-gradient(180deg, #dfdfdf, #fff);
}
.sustainability .sustainability-docs h2 {
  margin-bottom: 2rem;
}
.sustainability .sustainability-docs a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  border-bottom: 1px solid #ababab;
  padding: 15px 0px;
  color: #4D4F53;
  margin-bottom: 1rem;
}

.page-template-simple-text .title-wrapper {
  background-size: cover !important;
  min-height: 300px;
  position: relative;
}
.page-template-simple-text .title-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.page-template-simple-text .title-wrapper .container {
  position: relative;
  z-index: 1;
}
.page-template-simple-text span.label {
  display: block;
}

.page-template-landing-page header, .page-template-landing-page footer, .page-template-landing-page #hp-floating-button {
  display: none;
}
.page-template-landing-page .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.page-template-landing-page .top {
  position: relative;
  height: 55vh;
  display: flex;
  justify-content: center;
}
.page-template-landing-page .top .container {
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.page-template-landing-page .top .logo {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 30px 50px;
  border-radius: 0 0 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-landing-page .main {
  background-color: #fff;
}
.page-template-landing-page .main .container {
  padding: 80px 15px 0 15px;
}
.page-template-landing-page .main .col-md-6:nth-of-type(1) .video .circle {
  background-color: #E1251B;
  border-color: #F0928D;
}
.page-template-landing-page .main .col-md-6:nth-of-type(2) .video .circle {
  background-color: #87898F;
  border-color: #BBBCC0;
}
.page-template-landing-page .main .col-md-6:nth-of-type(3) .video .circle {
  background-color: #231F20;
  border-color: #707070;
}
.page-template-landing-page .main .col-md-6:nth-of-type(4) .video .circle {
  background-color: #D7D8D6;
  border-color: #E8E8E7;
}
.page-template-landing-page .video {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}
.page-template-landing-page .video .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  border: 4px solid;
}
.page-template-landing-page .title {
  font-size: 1.6667rem;
}
.page-template-landing-page .arrow {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 25px solid #fff;
  transform: rotate(90deg);
  margin-left: 5px;
}
.page-template-landing-page .bottom {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 100px;
}
.page-template-landing-page .logo-wrapper {
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E1251B;
  border-radius: 0 30px 0 0;
}

/* Edit Above Only*/
.mobile_menu_button {
  position: relative;
  display: none;
}

.triggerMobileMenu {
  position: relative;
  width: 35px;
  height: 28px;
  padding: 0;
  border: 0;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: none;
  text-indent: -99999px;
}

.triggerMobileMenu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #E1251B;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.triggerMobileMenu span:nth-child(1) {
  top: 0px;
}

.triggerMobileMenu span:nth-child(2) {
  top: 11px;
}

.triggerMobileMenu span:nth-child(3) {
  top: 22px;
}

.triggerMobileMenu.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.triggerMobileMenu.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.triggerMobileMenu.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.button.triggerMobileMenu:focus,
.button.triggerMobileMenu:hover {
  background: none;
  outline: none;
}

/** off-cnavas (mobile menu wrapper) ****************/
.off-canvas {
  position: fixed;
  z-index: 9999;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #e6e6e6;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.off-canvas.is-open {
  background: #fff;
  transform: translate(0);
}

.position-left {
  transform: translateY(100%);
  left: 0;
}

.position-right {
  transform: translateY(100%);
  right: 0;
}

body.admin-bar .off-canvas {
  top: 32px;
}

/** Mobile Menu Style **************/
.mobile_menu_holder {
  position: relative;
}

.mobile_menu_title {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  padding: 10px 0;
  background: #E1251B;
  border-bottom: 1px solid #E1251B;
  font-weight: 500;
  color: #fff;
}

ul#mobile-menu {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 20px;
}
ul#mobile-menu .mega-menu {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  flex-direction: column;
}
ul#mobile-menu .mega-menu .single-main-cat {
  display: flex;
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}
ul#mobile-menu .mega-menu .single-main-cat .image {
  display: none;
}
ul#mobile-menu .mega-menu .single-main-cat a.sub-cat {
  padding-top: 0;
}
ul#mobile-menu li {
  position: relative;
  display: block;
}
ul#mobile-menu li a {
  position: relative;
  display: block;
  font-size: 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 15px 15px;
  color: #000000;
}
ul#mobile-menu > li {
  border-bottom: 1px solid #eee;
}
ul#mobile-menu > li > a {
  font-weight: 700;
  color: #E1251B;
}

ul#mobile-menu ul.sub-menu {
  position: relative;
  display: block;
  margin-left: 0;
  padding-left: 0;
}

ul#mobile-menu ul.sub-menu li a {
  padding: 0px 15px 10px 15px;
  font-size: 0.9rem;
}

ul#mobile-menu ul.sub-menu li a:before {
  position: absolute;
  display: block;
  left: 0;
  top: 0px;
  font-size: 0.7rem;
}

ul#mobile-menu > li > a:focus,
ul#mobile-menu > li.current-menu-item > a,
ul#mobile-menu ul.sub-menu li.current-menu-item a,
ul.mobile_menu > li a:hover {
  color: #E1251B;
}

/****************************************************************************************************************/
@media only screen and (max-width: 1440px) {
  .page-template-landing-page .main .container {
    padding-top: 60px;
  }
  .page-template-landing-page .video {
    margin-bottom: 50px;
  }
  .page-template-landing-page .bottom {
    margin-top: 40px;
  }
  .page-wrap.category-page .archive-squares .single-square {
    width: 25%;
  }
  .single-project-wrapper .single-square {
    width: 25%;
  }
  .page-wrap.repeater-page .title-wrapper .container {
    height: 300px;
  }
  .page-wrap.repeater-page .title-wrapper .container .images {
    height: 100%;
  }
  .page-wrap.repeater-page .title-wrapper .container .sketch {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .page-wrap.repeater-page .title-wrapper .container .sketch img {
    max-height: 80%;
  }
  .page-wrap.repeater-page .title-wrapper h1 {
    width: 45%;
  }
  .community-projects-wrapper .single-project {
    min-width: 350px;
    width: 350px;
    margin: 0 10px;
  }
  .community-projects-wrapper .single-project:first-child {
    margin-left: 20px;
  }
  .community-projects-wrapper .single-project:last-child {
    margin-right: 20px;
  }
  .community-projects-wrapper .single-project .bg-wrapper .text {
    margin-top: -350px;
  }
}
@media only screen and (max-width: 1200px) {
  header {
    font-size: 0.9rem;
    padding: 0 0 10px;
  }
  header .logo img {
    width: 200px;
  }
  header .top-menu {
    margin-bottom: 15px;
  }
  ul#main-menu > li > a {
    padding: 0 7px;
  }
  ul#main-menu .catalogue-menu ul.sub-menu {
    left: 150%;
  }
  #vision-section .vision-repeater-wrapper {
    flex-wrap: wrap;
  }
  #vision-section .single-vision-wrapper {
    width: 33.33333%;
  }
  #vision-section .single-vision-wrapper.last-odd {
    width: 66.66666%;
  }
  #vision-section .single-vision-wrapper.last-odd .single-vision {
    padding-top: 75%;
  }
  #hp-video .hp-slogan h1 {
    font-size: 2rem;
  }
  #hp-video .hp-slogan h1 span {
    margin: 1rem auto;
  }
  #hp-video .hp-apps ul {
    padding: 0;
    flex-wrap: wrap;
  }
  #hp-video .hp-apps ul li {
    width: auto;
  }
  #hp-video .hp-apps ul li svg {
    max-width: 50px;
    max-height: 50px;
  }
  #hp-video .hp-apps ul li a {
    font-size: 1rem;
  }
  .apps-strip ul {
    flex-wrap: wrap;
  }
  .apps-strip ul li {
    margin-bottom: 30px;
  }
  .page-wrap.category-page .archive-squares .single-square {
    width: 33.3333%;
  }
  .page-wrap.category-page h2.open-filter {
    font-size: 1rem;
  }
  .page-wrap.category-page .family-search-bar {
    margin-bottom: 50px;
  }
  .page-wrap.category-page .family-search-bar input {
    max-width: 100%;
  }
  .single-project-wrapper .single-square {
    width: 33.3333%;
  }
  .page-wrap.repeater-page .title-wrapper .image {
    right: 0;
    width: calc(450px + (100vw - 1200px) / 2);
  }
  .page-wrap.contact .bg-image {
    width: 40%;
  }
  .page-wrap.contact .contact-section {
    max-width: 70%;
  }
  .top-ethics-section .values .value {
    padding: 15px;
  }
  .top-ethics-section .values .value h3 {
    font-size: 1rem;
  }
  .icons-ethics-section .icons {
    flex-wrap: wrap;
  }
  .icons-ethics-section .icons .value {
    width: 200px;
    margin-bottom: 30px;
    padding-right: 20px;
  }
  .single-project-wrapper .side-image-wrapper {
    width: 40vw;
  }
} /* end of (max-width: 1200px) */
/****************************************************************************************************************/
@media only screen and (max-width: 991px) {
  .mobile_menu_button {
    display: block;
  }
  .wrap_main_menu {
    display: none;
  }
  .flex_container {
    padding-left: 20px;
    padding-right: 20px;
  }
  header {
    padding: 15px 0;
  }
  header .login-button {
    border: 0;
    padding: 0;
    margin: 0 10px;
    color: #E1251B;
  }
  header .nav {
    align-items: center;
    flex-direction: row-reverse;
  }
  header .top-menu {
    margin-bottom: 0;
  }
  header .site-switcher {
    margin-right: 20px;
  }
  .single-project-wrapper .single-square {
    width: 50%;
  }
  .page-wrap.category-page .archive-squares .single-square {
    width: 50%;
  }
  .page-wrap.category-page .main-section .row .single-solution p {
    font-size: 1.2rem;
    max-width: 200px;
  }
  .single-case-study .project-summery .flex .icon {
    width: 25px;
    margin-right: 10px;
  }
  .top-ethics-section .values {
    flex-wrap: wrap;
  }
  .top-ethics-section .values .value {
    padding: 15px;
    width: calc(50% - 4px);
    background-position: top center;
    margin: 4px 2px 0;
    height: 40vw;
  }
  .top-ethics-section .values .value h3 {
    font-size: 1rem;
  }
  .top-ethics-section .values .value:last-child:nth-child(odd) {
    width: 100%;
  }
  .single-project-wrapper .testimonials-type .left-side {
    border-radius: 0 50px 0 0;
  }
  .single-project-wrapper .testimonials {
    margin-top: 20px;
  }
  .single-project-wrapper .testimonials-slider {
    width: 100%;
  }
  .single-project-wrapper .testimonials-slider .slick-dots {
    right: auto;
    left: 55px;
  }
} /* end of (max-width: 991px) */
/****************************************************************************************************************/
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 1.4rem;
  }
  body.admin-bar .off-canvas {
    top: 46px;
  }
  #hp-video {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #hp-video video {
    min-height: 70%;
    height: 70%;
    top: 0;
    transform: translate(-50%, 0);
  }
  #hp-video .hp-video-overlay {
    height: 100%;
    background: linear-gradient(0deg, #2d2d2d 40%, rgba(45, 45, 45, 0.05) 70%, rgba(45, 45, 45, 0) 100%);
  }
  #hp-video .hp-slogan {
    position: relative;
    margin-top: 65%;
  }
  #hp-video .hp-slogan h1 {
    font-size: 2rem;
    padding: 0 15px;
    width: 340px;
    max-width: 100%;
  }
  #hp-video .hp-slogan h1 span {
    margin: 1rem auto;
  }
  #hp-video .hp-apps {
    position: relative;
    height: auto;
    margin-top: 50px;
  }
  #hp-video .hp-apps ul {
    padding: 0;
    flex-wrap: wrap;
  }
  #hp-video .hp-apps ul li {
    width: 33.3%;
  }
  #hp-video .hp-apps ul li svg {
    max-width: 50px;
    max-height: 50px;
  }
  #hp-video .hp-apps ul li a {
    font-size: 1rem;
  }
  #hp-video .hp-apps ul li a p {
    margin-top: 5px;
    font-weight: 400;
  }
  .main-cats-wrapper {
    border-radius: 0 0 60px 0;
    padding: 70px 0 20px;
  }
  .main-cats-wrapper .svg-element {
    display: none;
  }
  .main-cats-wrapper .single-cat-wrapper {
    margin: 0 auto 20px;
    max-width: 350px;
  }
  .main-cats-wrapper .single-cat-wrapper p {
    align-self: flex-start;
    max-width: 150px;
  }
  .main-cats-wrapper .single-cat-wrapper:last-child {
    margin-bottom: 0;
  }
  .main-cats-wrapper .single-cat-wrapper:last-child .single-cat {
    border-radius: 0 0 40px 0;
  }
  .main-cats-wrapper .single-cat-wrapper .single-solution {
    position: relative;
    padding-bottom: 30px;
  }
  .main-cats-wrapper .single-cat-wrapper .single-solution::after {
    position: absolute;
    content: "";
    width: 150px;
    height: 7px;
    background-color: #E1251B;
    left: 0;
    bottom: 0;
    border-radius: 0 5px 0 0;
  }
  #vision-section .single-vision-wrapper {
    width: 100%;
  }
  #vision-section .single-vision-wrapper .single-vision {
    padding-top: 75%;
    border-bottom: 3px solid #fff;
  }
  #vision-section .single-vision-wrapper .single-vision .texts-wrapper::before {
    content: none;
  }
  #vision-section .single-vision-wrapper .single-vision .texts-wrapper .content {
    max-height: 500px;
    transition: 1s linear;
    overflow: hidden;
  }
  #vision-section .single-vision-wrapper.last-odd {
    width: 100%;
  }
  #vision-section .single-vision-wrapper.last-odd .single-vision {
    padding-top: 75%;
  }
  #promotion-product-section {
    padding: 70px 0;
    text-align: center;
  }
  #promotion-product-section .small-container .row {
    flex-direction: column-reverse;
  }
  #promotion-product-section h2 {
    margin-top: 20px;
  }
  #promotion-product-section .flex {
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
  }
  #promotion-product-section .button {
    margin: 20px auto 0;
    position: absolute;
    top: 100%;
  }
  #promotion-product-section .product-image {
    position: static;
    width: 100%;
    min-height: 30vw;
  }
  #promotion-product-section .col-md-6 {
    position: static;
  }
  #hp-case-studies .svg-element {
    display: none;
  }
  #hp-case-studies .hidden::after {
    content: none;
  }
  #hp-case-studies .row {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  #hp-case-studies .single-case-study-wrapper {
    max-width: none;
  }
  #hp-case-studies .single-case-study {
    min-width: 75vw;
  }
  footer {
    padding-top: 30px;
  }
  footer h2 {
    margin-bottom: 20px;
  }
  footer .form-wrapper {
    flex-direction: column;
  }
  footer .form-wrapper .left-side {
    margin-right: 0;
  }
  footer .form-wrapper .left-side label:last-child {
    margin-bottom: 1.6em;
  }
  footer .contact-details {
    margin-top: 40px;
  }
  .apps-strip {
    padding: 50px 15px 20px;
  }
  .apps-strip ul li {
    margin-bottom: 30px;
    width: 25%;
  }
  .apps-strip ul li p {
    margin-top: 10px;
    font-size: 0.9em;
  }
  .plasson-map .subsidiary-pin {
    width: 8px;
    height: 8px;
  }
  .plasson-map .distributor-pin {
    width: 6px;
    height: 6px;
  }
  .plasson-map .map-legend {
    display: none;
  }
  .page-wrap .tax-strip {
    position: relative;
    margin-bottom: 15px;
  }
  .page-wrap .tax-strip .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-wrap .tax-strip .related-apps {
    display: none;
  }
  .page-wrap .tax-strip .related-apps svg {
    height: 30px;
    width: 35px;
  }
  .page-wrap.single-product .title-section {
    position: relative;
    padding: 0;
  }
  .page-wrap.single-product .title-section .row {
    flex-direction: column-reverse;
  }
  .page-wrap.single-product .title-section h1 {
    margin-top: 10px;
  }
  .page-wrap.single-product .action-buttons {
    justify-content: flex-end;
  }
  .page-wrap.single-product .action-buttons .action-button {
    padding: 1px 3px;
    border-radius: 0 0 7px 0;
  }
  .page-wrap.single-product .action-buttons .action-button svg {
    width: 19px;
    height: 19px;
  }
  .links-wrapper {
    margin-left: 0;
    margin-bottom: 50px;
  }
  .page-wrap.main-catalogue .title-section::before {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  }
  .page-wrap.main-catalogue .title-section .content {
    font-weight: 400;
  }
  .page-wrap.main-catalogue .main-cats-wrapper {
    padding-top: 0;
  }
  .page-wrap.main-catalogue .main-cats-wrapper .single-cat {
    padding-top: 50%;
    background-size: contain;
    background-position: right center;
  }
  .page-wrap.main-catalogue .main-cats-wrapper .single-cat h2 {
    text-align: inherit;
  }
  .page-wrap.main-category .title-section {
    min-height: 160px;
  }
  .page-wrap.category-page.last-category .title-section {
    margin-bottom: 15px;
  }
  .page-wrap.category-page.last-category .filter-wrapper.open {
    position: fixed;
    background: #fff;
    display: block;
    width: 100vw;
    position: fixed;
    height: 100vh;
    z-index: 99;
    top: 0;
    left: 0;
    padding: 100px 20px 20px 20px;
    max-width: 100%;
  }
  .page-wrap.category-page.last-category .filter-wrapper.open h2 {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
  .page-wrap.category-page.last-category .filter-wrapper.open h2::after {
    content: "X";
  }
  .page-wrap.category-page.last-category .filter-wrapper.open .searchandfilter {
    display: block;
  }
  .page-wrap.category-page.last-category .searchandfilter {
    display: none;
  }
  .page-wrap.repeater-page .title-wrapper .image {
    display: none;
  }
  .page-wrap.single-case-study .row {
    flex-direction: column-reverse;
  }
  .page-wrap.single-case-study .products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
  .page-wrap.single-case-study .products a {
    max-width: 100%;
    width: 150px;
    padding: 0 10px;
  }
  .page-wrap.contact .bg-image {
    display: none;
  }
  .page-wrap.contact .contact-section {
    max-width: 100%;
  }
  .page-wrap.contact .contact-section .contact-details {
    margin-top: 50px;
  }
  .community-projects-section {
    margin-top: 70px;
  }
  .community-projects-section h2 {
    text-align: inherit;
  }
  .page-wrap.application .title-section::before {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  }
  .page-wrap.application .title-section .content {
    font-weight: 400;
  }
  .single-project-wrapper .side-image-wrapper {
    width: 90vw;
  }
  .single-project-wrapper .side-image-wrapper .side-image {
    border-radius: 0 80px 0 0;
  }
  .single-project-wrapper .side-gallery {
    max-width: 500px;
  }
  .single-project-wrapper .light-bg .image-wrapper {
    max-width: 500px;
  }
  .single-project-wrapper .content.two-col {
    column-count: auto;
  }
  form#search-download {
    margin-top: 30px;
    display: block;
  }
  #page-wrap.plassaddle .page-top .top-bg {
    height: 50% !important;
  }
  #page-wrap.plassaddle .page-top .top-bg .bg-image {
    width: 100%;
    height: 100%;
  }
  #page-wrap.plassaddle .page-top .page-intro {
    padding-right: 0;
  }
  #page-wrap.plassaddle .page-top .floatin-img {
    position: initial;
    top: 0;
  }
  #page-wrap.plassaddle #plassadle-tech-info .row .tech-info-col {
    padding: 0 2rem 3rem;
  }
} /* end of (max-width: 768px) */
/****************************************************************************************************************/
@media only screen and (max-width: 640px) {
  header .flex_container {
    align-items: flex-start;
    flex-flow: column;
  }
  header .flex_container nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  #hp-floating-button {
    right: 20px;
    padding: 5px 15px;
    font-size: 0.9rem;
  }
  .apps-strip ul li {
    width: 50%;
  }
  .page-wrap.repeater-page .title-wrapper {
    margin-bottom: 20px;
  }
  .page-wrap.repeater-page .title-wrapper .container {
    height: 150px;
  }
  .page-wrap.repeater-page .title-wrapper h1 {
    width: auto;
    flex: 1;
  }
  .page-wrap.repeater-page .title-wrapper .sketch {
    position: absolute;
    right: -20px;
  }
  .page-wrap.repeater-page .doc-group .doc-group-top {
    position: relative;
  }
  .page-wrap.repeater-page .doc-group .doc-group-top h2 {
    margin-right: 15px;
    font-size: 1.2rem;
  }
  .page-wrap.repeater-page .doc-group .doc-group-top .count {
    position: absolute;
    top: 100%;
    font-size: 0.9rem;
  }
  footer .credit .right-side {
    flex-direction: column;
    text-align: right;
  }
  footer .credit .right-side > * {
    margin-top: 5px;
    padding: 0;
  }
  footer .credit .right-side .rights {
    padding: 0;
  }
  footer .credit .left-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .single-project-wrapper .testimonials-slider .slick-slide {
    margin: 0 5px;
  }
  .single-project-wrapper .testimonials-type .left-side {
    border-radius: 0 50px 0 0;
    margin-right: calc(8.7% - 10px);
  }
  .single-project-wrapper .testimonials {
    margin-top: 10px;
  }
  #downloads-filter ul {
    display: block;
  }
  #downloads-filter ul li {
    margin-bottom: 20px;
  }
  form#search-download {
    margin-top: 0;
  }
} /* end of (max-width: 640px) */
/****************************************************************************************************************/
@media only screen and (max-width: 576px) {
  .page-wrap.category-page .title-section .cat_desc {
    border-left: none;
    padding-top: 20px;
  }
  #page-wrap.plassaddle #plassaddle-install-guide .options {
    margin: 1rem 0 0 0;
    display: inline-block;
  }
}
@media only screen and (max-width: 480px) {
  .single-case-study .title-section {
    padding: 50px 0 20px 0;
  }
  .single-case-study .title-section .project-country {
    font-size: 1.1rem;
  }
  .single-case-study .title-section .project-country span {
    font-size: 2.5rem;
  }
  .single-case-study .title-section .white-bg .flag {
    width: 50px;
    height: 50px;
  }
  .page-wrap.repeater-page .doc-group .docs-wrapper .docs-container {
    display: block;
    padding-left: 20px;
  }
  .page-wrap.repeater-page .doc-group .docs-wrapper .docs-container .doc-wrapper {
    max-width: 100%;
  }
  #page-wrap.plassaddle #plassaddle-install-guide .single-step .step-name {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }
  #page-wrap.plassaddle .page-top .top-bg {
    height: 60% !important;
  }
  .page-template-landing-page .top {
    height: 42vh;
  }
  .page-template-landing-page .main .container {
    padding: 50px 15px 0 15px;
  }
  .page-template-landing-page .title {
    font-size: 1.2667rem;
  }
  .page-template-landing-page .video {
    margin-bottom: 25px;
  }
  .page-template-landing-page .video .circle {
    width: 60px;
    height: 60px;
    border-width: 3px;
    margin-bottom: 10px;
  }
  .page-template-landing-page .video .circle .arrow {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 18px solid #fff;
  }
} /* end of (max-width: 480px) */
/****************************************************************************************************************/
@media only screen and (max-width: 400px) {
  .community-projects-wrapper .single-project {
    min-width: 300px;
    width: 300px;
    margin: 0 7px;
  }
  .community-projects-wrapper .single-project:first-child {
    margin-left: 14px;
  }
  .community-projects-wrapper .single-project:last-child {
    margin-right: 14px;
  }
  .community-projects-wrapper .single-project .bg-wrapper .text {
    margin-top: -300px;
    font-size: 0.9em;
  }
  header .flex_container {
    align-items: flex-start;
    flex-flow: column;
  }
  header .flex_container nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  header .site-switcher ul {
    left: -10px;
    right: auto;
  }
  #hp-video {
    padding-top: 130px;
  }
} /* end of (max-width: 400px) */
/****************************************************************************************************************/
@media only screen and (max-width: 350px) {
  .community-projects-wrapper .single-project {
    min-width: 250px;
    width: 250px;
    margin: 0 7px;
  }
  .community-projects-wrapper .single-project:first-child {
    margin-left: 14px;
  }
  .community-projects-wrapper .single-project:last-child {
    margin-right: 14px;
  }
  .community-projects-wrapper .single-project .bg-wrapper .text {
    margin-top: -250px;
    font-size: 0.8em;
    padding: 10px;
  }
} /* end of (max-width: 400px) */
/****************************************************************************************************************/
/* end of (max-width: 320px) */
/****************************************************************************************************************/
@media print {
  header, .off-canvas, footer {
    display: none;
  }
  .links-wrapper, .action-buttons {
    display: none !important;
  }
  .page-wrap.single-product .row {
    flex-wrap: nowrap;
  }
  .page-wrap.single-product .row .left-side {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page-wrap.single-product .row .facts-side {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .page-wrap.single-product .row .gallery-side {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .page-wrap.single-product .variations {
    page-break-before: always;
  }
} /* end of print */
/****************************************************************************************************************//*# sourceMappingURL=style.css.map */