/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  margin: 0;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

@font-face {
  font-family: "Manrope-Regular";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope-Medium";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Manrope-Regular";
  line-height: 1.35;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope-Medium";
}

a {
  color: #3a3b38;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #6eb04c;
  cursor: url("../img/icons/icon-cursor.svg"), auto;
}

.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*=== Optional Delays, change values here  ===*/
.animate-block__one {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.animate-block__two {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.animate-block__three {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.animate-block__four {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

@-webkit-keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.block-animation .fade-in-up {
  -webkit-animation-name: fade-in-up;
  animation-name: fade-in-up;
}

/*=== FADE IN DOWN ===*/
.block-animation .fade-in-down {
  -webkit-animation-name: fade-in-down;
  animation-name: fade-in-down;
}

@-webkit-keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/*=== FADE IN LEFT ===*/
@-webkit-keyframes fade-in-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fade-in-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.block-animation .fade-in-left {
  -webkit-animation-name: fade-in-left;
  animation-name: fade-in-left;
}

/*==== FADE IN RIGHT ===*/
@-webkit-keyframes fade-in-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fade-in-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.block-animation .fade-in-right {
  -webkit-animation-name: fade-in-right;
  animation-name: fade-in-right;
}

@-webkit-keyframes slide {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slide {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1324px;
  }
}
.layout-main-wrapper {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .layout-main-wrapper {
    padding-bottom: 5rem;
  }
}

.region-footer-second {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  height: 100%;
}

.node--type-technology .layout-main-wrapper {
  padding-bottom: 6.875rem;
}
@media screen and (min-width: 768px) {
  .node--type-technology .layout-main-wrapper {
    padding-bottom: 8.125rem;
  }
}

.node--type-service .layout-main-wrapper {
  padding-top: 1.75rem;
}
.node--type-service .node--view-mode-full .node__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}
.node--type-service .node--view-mode-full .node__content .row .col-12 > .field > .field__label {
  margin-bottom: 1.25rem;
  font-size: 1.875rem;
}
.node--type-service .node--view-mode-full .node__content .row .field .paragraph .field__label {
  display: none;
}
.node--type-service .node--view-mode-full .node__content .field--name-field-advantages .field__items {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.node--type-service .node--view-mode-full .node__content .field--name-field-advantages .field__items .paragraph {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.node--type-service .node--view-mode-full .node__content .field--name-field-advantages .field__items .paragraph > .field:first-child .field__item {
  font-size: 1.25rem;
  color: #6eb04c;
}
@media screen and (min-width: 768px) {
  .node--type-service .node--view-mode-full .node__content .field--name-field-advantages .field__items {
    flex-wrap: nowrap;
  }
}
.node--type-service .node--view-mode-full .node__content .field--name-field-services .field__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.node--type-service .node--view-mode-full .node__content .field--name-field-services .field__items .field__item {
  font-size: 1.25rem;
  padding: 1.875rem 2.5rem;
  border: 1px solid #6eb04c;
  border-radius: 8px;
  background: #f9f6f2;
}
.node--type-service .node--view-mode-full .node__content .field--name-field-service-forms .field__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.node--type-service .node--view-mode-full .node__content .field--name-field-service-forms .field__items > .field__item {
  position: relative;
  display: inline-block;
  padding: 2.5rem 2rem;
  padding-left: 9.5rem;
  border-radius: 8px;
  background: #f9f6f2;
  overflow: hidden;
  z-index: 1;
}
.node--type-service .node--view-mode-full .node__content .field--name-field-service-forms .field__items > .field__item:before {
  content: "01";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 7.5rem;
  background-color: #6eb04c;
  border-radius: 8px;
  font-size: 3rem;
  color: #fffefc;
}
.node--type-service .node--view-mode-full .node__content .field--name-field-service-forms .field__items > .field__item:last-child:before {
  content: "02";
}
@media screen and (min-width: 768px) {
  .node--type-service .node--view-mode-full .node__content .field--name-field-service-forms .field__items {
    gap: 2.5rem;
  }
  .node--type-service .node--view-mode-full .node__content .field--name-field-service-forms .field__items > .field__item {
    max-width: 33.75rem;
    padding: 2.9375rem 2.5rem;
    padding-left: 11.6875rem;
  }
  .node--type-service .node--view-mode-full .node__content .field--name-field-service-forms .field__items > .field__item:before {
    font-size: 4rem;
    width: 9.1875rem;
  }
  .node--type-service .node--view-mode-full .node__content .field--name-field-service-forms .field__items > .field__item:first-child {
    align-self: flex-start;
  }
  .node--type-service .node--view-mode-full .node__content .field--name-field-service-forms .field__items > .field__item:last-child {
    align-self: flex-end;
    max-width: 36.25rem;
  }
}
@media screen and (min-width: 992px) {
  .node--type-service .node--view-mode-full .node__content .field--name-field-service-forms .field__items {
    position: relative;
  }
  .node--type-service .node--view-mode-full .node__content .field--name-field-service-forms .field__items:before {
    content: "";
    position: absolute;
    top: 60px;
    left: calc(50% + 34px);
    width: 25%;
    height: 6rem;
    background-image: url("../img/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    translate: -50% 0;
  }
  .node--type-service .node--view-mode-full .node__content .field--name-field-service-forms .field__items:after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% - 80px);
    width: 25%;
    height: 6rem;
    background-image: url("../img/arrow-up.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    translate: -50% 0;
  }
}
@media screen and (min-width: 768px) {
  .node--type-service .node--view-mode-full .node__content {
    gap: 5rem;
  }
  .node--type-service .node--view-mode-full .node__content .row .col-12 > .field > .field__label {
    margin-bottom: 2.5rem;
    font-size: 2.25rem;
  }
}
.node--type-service .node--view-mode-full .service__hero h1 {
  margin-bottom: 0.75rem;
  font-size: 1.875rem;
}
.node--type-service .node--view-mode-full .service__hero img {
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .node--type-service .node--view-mode-full .service__hero h1 {
    font-size: 2.25rem;
  }
}

.node--type-technology .node__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .node--type-technology .node__content {
    gap: 5rem;
  }
}
.node--type-technology h1.node__title {
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.35;
}
.node--type-technology h2 {
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .node--type-technology h2 {
    margin-bottom: 2.5rem;
  }
}
.node--type-technology .goals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.node--type-technology .goals__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.node--type-technology .goals__item > p:first-child {
  position: relative;
  display: flex;
  align-items: center;
  height: 3rem;
  padding-left: 3.75rem;
  font-size: 1.25rem;
  font-weight: 400;
}
.node--type-technology .goals__item > p:first-child:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3rem;
  height: 3rem;
  background-image: url("../img/icons/01.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.node--type-technology .goals__item:nth-child(2) > p:first-child:before {
  background-image: url("../img/icons/02.svg");
}
.node--type-technology .goals__item:nth-child(3) > p:first-child:before {
  background-image: url("../img/icons/03.svg");
}
@media screen and (min-width: 768px) {
  .node--type-technology .goals {
    flex-direction: row;
  }
  .node--type-technology .goals__item > p:first-child {
    padding-left: 4.5rem;
    height: 3.75rem;
  }
  .node--type-technology .goals__item > p:first-child:before {
    width: 3.75rem;
    height: 3.75rem;
  }
}
.node--type-technology .field--name-field-media-image {
  width: 100%;
  margin-top: 1.5rem;
}
.node--type-technology .field--name-field-media-image img,
.node--type-technology .field--name-field-media-image video {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 560px) {
  .node--type-technology .field--name-field-media-image {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .node--type-technology .field--name-field-media-image {
    margin-top: 2.5rem;
  }
}
.node--type-technology .field--name-field-dependencies.field__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 992px) {
  .node--type-technology .field--name-field-dependencies.field__items {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 8.75rem;
  }
  .node--type-technology .field--name-field-dependencies.field__items > .field__item {
    flex: 0 1 40%;
  }
  .node--type-technology .field--name-field-dependencies.field__items > .field__item:nth-child(2) {
    -webkit-transform: translateY(52px);
    transform: translateY(52px);
  }
  .node--type-technology .field--name-field-dependencies.field__items > .field__item:nth-child(3) {
    -webkit-transform: translateX(112px);
    transform: translateX(112px);
  }
  .node--type-technology .field--name-field-dependencies.field__items > .field__item:nth-child(4) {
    -webkit-transform: translateY(52px) translateX(100px);
    transform: translateY(52px) translateX(100px);
  }
}
.node--type-technology .field--name-field-dependencies .paragraph {
  font-size: 1.25rem;
  padding: 1.875rem 2.5rem;
  border: 1px solid #6eb04c;
  border-radius: 8px;
  background: #f9f6f2;
}
.node--type-technology .field--name-field-dependencies .paragraph .field--name-field-name {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: #6eb04c;
}
.node--type-technology .field--name-field-dependencies .paragraph .field--name-field-text {
  font-size: 1.0625rem;
}
@media screen and (min-width: 1200px) {
  .node--type-technology .field--name-field-dependencies .paragraph {
    max-width: 32vw;
  }
}
@media screen and (min-width: 1024px) {
  .node--type-technology .field--name-field-dependencies .paragraph {
    max-width: 22vw;
  }
}
.node--type-technology .components {
  margin-top: 2.5rem;
}
.node--type-technology .components h1 {
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.35;
}
.node--type-technology .components > div:first-child {
  display: flex;
  flex-direction: column;
}
.node--type-technology .components > div:first-child > p {
  font-size: 1.25rem;
}
.node--type-technology .components > div:first-child > p:last-of-type {
  align-self: flex-start;
}
.node--type-technology .components > div img {
  height: 100%;
}
.node--type-technology .components__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.node--type-technology .components__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 0 1 100%;
  padding: 1.5rem 0;
  border-top: 1px solid #6eb04c;
}
.node--type-technology .components__item > p:first-child {
  font-size: 1.25rem;
  color: #6eb04c;
}
.node--type-technology .components__item:last-child {
  border-bottom: 1px solid #6eb04c;
}
@media screen and (min-width: 768px) {
  .node--type-technology .components {
    margin-top: 5rem;
  }
  .node--type-technology .components__items {
    gap: 0 1.5rem;
  }
  .node--type-technology .components__item {
    flex: 0 1 calc(50% - 0.75rem);
  }
  .node--type-technology .components__item:last-child {
    flex: 0 1 100%;
  }
}

.node--type-article {
  padding: 0;
  border: none;
}
.node--type-article .node__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.node--type-article h1.node__title {
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.35;
}
.node--type-article .date {
  font-size: 0.875rem;
  color: #ccc7bf;
}
.node--type-article.node--view-mode-teaser {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.node--type-article.node--view-mode-teaser > img {
  margin-bottom: 0.75rem;
}
.node--type-article.node--view-mode-teaser h3 {
  font-size: 1.25rem;
}
.node--type-article.node--view-mode-teaser:hover {
  color: #3a3b38;
}
.node--type-article.node--view-mode-teaser:hover h3 {
  color: #6eb04c;
}

.path-contact .block-page-title-block h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.path-contact .field--name-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.path-contact .field--name-body h4 {
  flex: 0 1 100%;
  margin-bottom: 2.5rem;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.35;
}
.path-contact .field--name-body > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1.25rem;
}
.path-contact .field--name-body > div > a {
  font-size: 2.25rem;
  font-weight: 500;
  color: #6eb04c;
}
.path-contact .field--name-body > div > p > a {
  font-size: 2.25rem;
  font-weight: 500;
  color: #6eb04c;
}
.path-contact .field--name-body > div > p:last-of-type {
  font-size: 0.875rem;
  color: #ccc7bf;
}
@media screen and (min-width: 992px) {
  .path-contact .field--name-body {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 2.5rem;
  }
  .path-contact .field--name-body > p > span:first-child {
    font-size: 2.25rem;
  }
}

@media (min-width: 560px) {
  .node .field--type-image {
    width: 100%;
    float: none;
    margin: 0;
  }
  .node .field--type-image img,
  .node .field--type-image video {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.home-services {
  padding-bottom: 3.75rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-services {
    padding-bottom: 5rem;
  }
}
.home-services__image img {
  border-radius: 8px;
}
.home-services__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.home-services__content h2 {
  font-size: 2.25rem;
  font-weight: 500;
}
.home-services__content h2 span {
  color: #6eb04c;
}
.home-services__content ol {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  padding-left: 0;
  list-style-type: none;
}
.home-services__content ol li {
  padding: 1.5rem 0;
  border-top: 1px solid #6eb04c;
}
.home-services__content ol li:last-child {
  padding-bottom: 0;
}
.home-services__content__items {
  gap: 1.5rem 0;
}
.home-services__content__items > div {
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
}
.home-services__content__items > div > h3 {
  font-size: 2.25rem;
  font-weight: 500;
  color: #6eb04c;
}

.home-logos {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .home-logos {
    padding-bottom: 5rem;
  }
}
.home-logos h2 {
  font-size: 2.25rem;
  font-weight: 500;
}
.home-logos h2 span {
  color: #6eb04c;
}
.home-logos .logo-carousel {
  overflow: hidden;
  background: white;
  white-space: nowrap;
  position: relative;
}
.home-logos .logo-carousel .logo-carousel__wrapper {
  -webkit-animation: 15s slide infinite linear;
  animation: 15s slide infinite linear;
  display: inline-flex;
}
.home-logos .logo-carousel .logo-carousel__wrapper .logo-carousel__item {
  display: inline-block;
}
.home-logos .logo-carousel .logo-carousel__wrapper img {
  max-width: 14.0625rem;
  height: auto;
  margin: 0 5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

#contact {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  #contact {
    padding-bottom: 5rem;
  }
}
#contact .content {
  padding: 1.875rem 0;
  background-image: url("../img/ox.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  #contact .content {
    padding: 3.75rem 0;
  }
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin: 1em 0;
}
.video-container > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.paragraph--type--advantages .field--name-field-name {
  font-size: 2.25rem;
  font-weight: 500;
  font-family: "Manrope-Medium";
  margin-bottom: 20px;
}

.navbar {
  padding: 0;
}
.navbar-nav {
  gap: 1.5rem;
}
.navbar-nav .nav-link {
  padding: 0;
  font-size: 1.0625rem;
  color: #3a3b38;
}
.navbar-nav .nav-link:hover {
  color: #6eb04c;
}
.navbar-brand {
  height: 2.5rem;
  padding: 0;
  margin: 0;
}
.navbar .container {
  align-items: flex-end;
  max-width: 1300px;
  padding: 1rem 1.5rem 1.875rem;
  background-color: #f9f6f2;
  border-radius: 8px;
}

.menu--footer .nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .menu--footer .nav {
    gap: 1.25rem 2.5rem;
  }
}

.footer {
  padding: 1.875rem 0 1.875rem;
  background-color: #f9f6f2;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 3.75rem 0 3.75rem;
  }
  .footer .navbar-brand {
    height: 5rem;
  }
}
.footer .container > .row {
  row-gap: 1.25rem;
}

.view-product .view-content {
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .view-product .view-content {
    row-gap: 2.5rem;
  }
}
.view-product .article-product {
  padding: clamp(1rem, 3vw, 1.25rem);
  background-color: #f9f6f2;
  border-radius: 8px;
  height: 12vw;
  min-height: 28.25rem;
  display: flex;
  justify-content: center;
}
.view-product .article-product img {
  width: 11.25rem;
}
.view-product .article-product > button {
  all: unset;
  cursor: pointer;
}
.view-product .article-product > button:hover {
  color: #3a3b38;
}
.view-product .article-product > button:hover h3 {
  color: #6eb04c;
}
.view-product .article-product > button .field--name-field-description {
  max-height: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.view-product .article-product > button .field--name-field-media {
  margin-bottom: 0;
}
.view-product .article-product h3 {
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .view-product .article-product {
    padding: clamp(1.25rem, 2.5vw, 2.5rem);
    height: 18.5vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  .view-product .article-product {
    min-height: 29.75rem;
  }
}
@media screen and (min-width: 768px) {
  .view-product .article-product h3 {
    font-size: 2.25rem;
  }
}

.view-service .node--view-mode-teaser .field--name-field-media, .view-medias .node--view-mode-teaser .field--name-field-media, .view-technology .node--view-mode-teaser .field--name-field-media {
  display: inline-flex;
  overflow: hidden;
  border-radius: 8px;
}
.view-service a:hover img, .view-medias a:hover img, .view-technology a:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.view-service img, .view-medias img, .view-technology img {
  margin-bottom: 0;
  transition-duration: 1.5s;
  will-change: transform;
  transition-timing-function: ease;
}

.view-service .view-content,
.view-technology .view-content {
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .view-service .view-content,
  .view-technology .view-content {
    row-gap: 2.5rem;
  }
}
.view-service .node--view-mode-teaser,
.view-technology .node--view-mode-teaser {
  border: none;
  margin: 0;
  padding: 0;
}
.view-service .node--view-mode-teaser img,
.view-technology .node--view-mode-teaser img {
  -o-object-fit: contain;
  object-fit: contain;
  height: auto;
  border-radius: 8px;
}
.view-service .node--view-mode-teaser h2,
.view-technology .node--view-mode-teaser h2 {
  font-family: "Manrope-Regular";
  font-size: 1.25rem;
}
.view-service .node--view-mode-teaser h2 a,
.view-technology .node--view-mode-teaser h2 a {
  color: #3a3b38;
}
.view-service .node--view-mode-teaser h2 a:hover,
.view-technology .node--view-mode-teaser h2 a:hover {
  color: #6eb04c;
}
.view-service .node--view-mode-teaser .node__title,
.view-technology .node--view-mode-teaser .node__title {
  padding: 0;
}

.view-filters .views-exposed-form {
  display: flex;
  justify-content: flex-end;
}
.view-filters .views-exposed-form .form-type-select > label {
  display: none;
}
.view-filters .views-exposed-form .form-type-select select {
  min-width: 12.5rem;
  padding: 0.25rem 0.625rem 0.25rem 1.25rem;
  border-radius: 8px;
  border: 1px solid #ccc7bf;
  font-size: 0.875rem;
}

.service__efficiency {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 48.6px;
}
.service__efficiency .green-text {
  color: #6eb04c;
}

#country-select {
  margin-right: 1.5rem;
}
#country-select .dropdown-toggle {
  font-size: 1.0625rem;
}

.video-background-holder {
  height: auto;
  border-radius: 8px;
}
.video-background-content .text {
  gap: 0.75rem;
  padding: 2.5rem 0 7.5rem 3.75rem;
  color: #fffefc;
}
.video-background-content .text h2 {
  font-size: 2.25rem;
}
.video-background-content .text .button {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .video-background-content .text {
    padding: 5rem 0 clamp(17.5rem, 5vw, 21.25rem) clamp(5rem, 5vw, 6.875rem);
  }
}

.services-items {
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .services-items__item img {
    height: 12.890625rem;
  }
}
.services-items__item h3 {
  margin-bottom: 1.5rem;
  font-family: "Manrope-Regular";
  font-size: 1.25rem;
  min-height: 3rem;
}
@media screen and (max-width: 768px) {
  .services-items__item h3 {
    margin-top: 0.9375rem;
  }
}
.services-items .service-button {
  width: -webkit-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .services-items {
    padding: 5rem 0;
  }
}

.block-page-title-block h1 {
  margin-bottom: 1.25rem;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .block-page-title-block h1 {
    margin-bottom: 1.75rem;
    font-size: 2.25rem;
  }
}

#block-glanit-theme-footercontacts .field > p {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

#block-glanit-theme-footerlinks .field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
#block-glanit-theme-footerlinks .field > p {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#block-glanit-theme-footerlinks .field a {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  #block-glanit-theme-footerlinks .field {
    text-align: right;
  }
}

.contact-glanit-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 90%;
  margin: 0 auto;
  padding: 1.875rem;
  background-color: #6eb04c;
  border-radius: 8px;
}
.contact-glanit-form .form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 0 !important;
}
.contact-glanit-form .form-wrapper > .row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-glanit-form .form-wrapper > .row > div {
  width: 100%;
}
.contact-glanit-form .form-wrapper > .row > div .js-form-item {
  margin: 0 !important;
}
.contact-glanit-form .form-wrapper > .row > div input,
.contact-glanit-form .form-wrapper > .row > div textarea {
  padding: 0 0 10px 10px;
  background-color: transparent;
  color: #fffefc;
  border: none;
  border-bottom: 1px solid #fffefc;
  border-radius: 0;
}
.contact-glanit-form .form-wrapper > .row > div input::-webkit-input-placeholder, .contact-glanit-form .form-wrapper > .row > div textarea::-webkit-input-placeholder {
  color: #fffefc;
}
.contact-glanit-form .form-wrapper > .row > div input:-ms-input-placeholder, .contact-glanit-form .form-wrapper > .row > div textarea:-ms-input-placeholder {
  color: #fffefc;
}
.contact-glanit-form .form-wrapper > .row > div input::-ms-input-placeholder, .contact-glanit-form .form-wrapper > .row > div textarea::-ms-input-placeholder {
  color: #fffefc;
}
.contact-glanit-form .form-wrapper > .row > div input::placeholder,
.contact-glanit-form .form-wrapper > .row > div textarea::placeholder {
  color: #fffefc;
}
.contact-glanit-form .form-wrapper > .row > div input:active, .contact-glanit-form .form-wrapper > .row > div input:focus-within,
.contact-glanit-form .form-wrapper > .row > div textarea:active,
.contact-glanit-form .form-wrapper > .row > div textarea:focus-within {
  border-color: #3a3b38;
}
.contact-glanit-form .form-wrapper .form-select {
  background-color: transparent;
  border-color: #fffefc;
  color: #fffefc;
}
.contact-glanit-form .form-wrapper .form-select option {
  color: #3a3b38;
}
.contact-glanit-form .button {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .contact-glanit-form {
    width: 40%;
    margin: 0;
    padding: 3.75rem;
    border-radius: 0 8px 8px 0;
  }
}

#block-glanit-theme-content > .content:has(.contact-glanit-form) {
  margin-top: 2.5rem;
  padding: 1.875rem 0;
  background-image: url("../img/ox.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  #block-glanit-theme-content > .content:has(.contact-glanit-form) {
    margin-top: 5rem;
    padding: 3.75rem 0;
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 1.875rem;
  font-size: 1.0625rem;
  color: #fffefc;
  background-color: #3ca3d2;
  border: 1px solid transparent;
  border-radius: 30px;
  text-decoration: none;
}
.button:hover {
  background-color: #1e7299;
  color: #fffefc;
}
.button:focus-within, .button:active {
  color: #3a3b38;
  background-color: #fffefc;
  border: 1px solid #1e7299;
}
.button:focus {
  outline: none;
}
.button:disabled {
  color: #fffefc;
  background-color: #99a1a4;
  border: 1px solid transparent;
}
.button--secondary {
  background-color: #fffefc;
  color: #3a3b38;
  border: 1px solid #3ca3d2;
}

.breadcrumb {
  margin-bottom: 0.75rem;
}
.breadcrumb-item {
  color: #ccc7bf;
}
.breadcrumb-item a {
  color: #ccc7bf;
}
.breadcrumb-item a:hover {
  color: #6eb04c;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #ccc7bf;
}
.breadcrumb-item.active {
  color: #ccc7bf;
}

.dropdown-toggle {
  position: relative;
}
.dropdown-toggle:after {
  all: unset;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../img/icons/icon-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform-origin: center;
  transform-origin: center;
  transition: all 0.3s ease;
}
.dropdown-toggle.show:after {
  -webkit-transform: translate(100%, -50%) rotate(180deg);
  transform: translate(100%, -50%) rotate(180deg);
}

@media (min-width: 992px) {
  .modal-dialog {
    max-width: 54.75rem;
  }
}
.modal-header {
  position: relative;
  padding: 1.25rem 1.25rem 0.625rem;
  border: none;
}
.modal-header h3 {
  color: #6eb04c;
  font-size: 2.25rem;
}
.modal-header .btn-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../img/icons/close.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .modal-header {
    padding: 2.5rem 2.5rem 0.75rem;
  }
  .modal-header .btn-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 2.125rem;
    height: 2.125rem;
  }
}

.modal-body {
  padding: 0 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .modal-body {
    padding: 0 2.5rem 1.875rem;
  }
}
.modal-body .field--name-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-body .field--name-body h6 {
  margin: 0.75rem 0;
  color: #6eb04c;
}
.modal-body a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0.625rem 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.0625rem;
  color: #fffefc;
  background-color: #3ca3d2;
  border: 1px solid transparent;
  border-radius: 30px;
  text-decoration: none;
}
.modal-body a:hover {
  background-color: #1e7299;
  color: #fffefc;
}
.modal-body a:focus-within, .modal-body a:active {
  color: #3a3b38;
  background-color: #fffefc;
  border: 1px solid #1e7299;
}
.modal-body a:focus {
  outline: none;
}
.modal-body .field--type-file .file--text {
  padding: 0;
  background: none;
}