h1, h2, h3, h4, h5 {
  margin: 0 0 1em;
  font-weight: bold;
  line-height: 1.4;
}

h1 {
  font-size: 1.875rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.1rem;
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.1rem;
  }
}

@media (min-width: 1200px) {
  h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  h4 {
    font-size: 1.25rem;
  }
}
.swiper-button-next-custom, .swiper-button-prev-custom {
  position: absolute;
  top: 50%;
  width: auto;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #28a745;
  color: #fff;
  border: none;
  transition: background-color 0.3s, transform 0.3s;
}
.swiper-button-next-custom i, .swiper-button-prev-custom i {
  font-size: 20px;
}
.swiper-button-next-custom:hover, .swiper-button-prev-custom:hover {
  transform: scale(1.1);
  background-color: #218838;
}
.swiper-button-next-custom {
  right: 2%;
}
.swiper-button-prev-custom {
  left: 2%;
}
.swiper {
  width: 100%;
  height: auto;
}

main {
  padding-top: 100px;
}

.navbar {
  transition: top 0.3s;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.text-content {
  max-width: 80%;
}

.text-content h1 {
  font-size: 2rem;
}

.text-content h2 {
  font-size: 1.5rem;
}

.text-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.image-content img {
  max-width: 100%;
  height: auto;
}

.card-hover {
  overflow: hidden;
}

.card-hover img {
  transition: transform 0.3s ease;
}

.card-hover:hover img {
  transform: scale(1.1);
}


.card-hover:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-body {
  padding: 1.25rem;
}

.card-title {
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-height: fit-content;
}

.card-text {
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card {
  height: 100%;
}

.card-body {
  height: 50%;
  padding: 1.25rem;
}

.card-img-bottom {
  height: 50%;
  object-fit: cover;
}

.custom-section .card {
  position: relative;
}

.custom-section .card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 25%;
  border-top: 2px solid var(--bs-green);
  border-right: 1px solid var(--bs-green);
  border-top-right-radius: 16px;
}


.products-list {
  border-top: 2px solid rgba(0,0,0,0.1);
  border-bottom: 2px solid rgba(0,0,0,0.1);
}

.products-list .swiper {
  width: 240px;
  height: 300px;
}

.products-list .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.products-list .card-link {
  text-decoration: none;
  color: inherit;
}

.products-list .custom-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-top: 2px solid var(--bs-green);
  border-bottom: 1px solid var(--bs-green);
  border-radius: 18px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.products-list .custom-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.products-list .custom-card .img-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
}

.products-list .custom-card .img-container .img-fluid {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.products-list .custom-card .custom-overlay {
  background: rgba(0,0,0,0);
  color: #000;
  padding: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.products-list .custom-card .card-title {
  margin: 0;
  font-size: 1.25rem;
  background: rgba(0,0,0,0);
  padding: 0.2rem;
  display: block;
}

.products-list .custom-card .card-text {
  margin: 0;
  font-size: 1rem;
  background: rgba(0,0,0,0);
  padding: 0.2rem;
  display: block;
}

.products-list .products-title {
  margin: 0px;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
}



.about-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
}

@media (min-width: 768px) {
  .about-contents {
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-body {
  position: relative;
  padding: 0 15px 15px;
}

@media (min-width: 768px) {
  .about-body {
    display: flex;
    flex: 0 0 25%;
    padding: 0;
  }
}

.about-text-body {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  margin-top: -20px;
  padding: 18px;
  border: 2px solid #f2f2f2;
  background-color: #fff;
}

@media (min-width: 768px) {
  .about-text-body {
    margin-top: 0;
    flex-basis: 300px;
  }
}

@media (min-width: 992px) {
  .about-text-body {
    flex-basis: 400px;
    padding: 28px;
  }
}

.at-title h4 {
  font-weight: bold;
  margin: 0 0 .3em;
}

.at-parag {
  margin: 0;
}

.at-btn {
  margin-top: 1.2em;
}

.about-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-img-link {
  display: block;
  width: 100%;
  outline: none;
}

.about-img-contents {
  display: block;
  width: 100%;
  margin: auto;
}
.reference {
  margin-top: 50px;
  border: solid 1px #efefef;
  background-color: rgba(250,250,250,0.84);
}

.ref-con {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.reference .ref-slider {
  width: 100%;
  overflow: hidden;
}

.reference .swiper-container {
  width: 100%;
  height: 150px;
}

ref-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  border-right: solid 1px #efefef;
}

ref-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.swiper-slide .ref-item img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 500ms;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}



.bs-icon.bs-icon-costum {
  color: var(--bs-green);
  background-color: #fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,0.15) !important;
}

textarea.form-control {
  height: auto;
  padding: 2rem;
  resize: none;
}



.footer-area {
  padding-top: 50px;
  border-top: 1px solid #ebebeb;
  background-color: rgba(0,0,0,0.03);
}

@media (min-width: 991px) {
  .footer-area-top {
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
}

.footer-area-top {
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (min-width: 991px) {
  .footer-area-top .gfa-logo {
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .footer-area-top .gfa-logo {
    max-width: 200px;
  }
}

.gfa-logo img {
  height: 75px;
}

.footer-area-center {
  padding-bottom: 50px;
}

.widget {
  position: relative;
}

.widget .widget-title::after {
  clear: both;
  content: "";
  display: table;
}

.widget_footer .widget-title {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  color: #000;
}

.widget_footer ul > li > a {
  display: block;
  padding: 5px 0;
  color: #7d7d7d;
}

.widget_footer ul > li > a:hover {
  color: var(--bs-green);
  padding-left: 10px;
}

.widget_footer ul, .widget_footer ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 991px) {
  .footer-area .footer-area {
    padding-top: 30px;
  }
}



.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 60px;
  border-top: 1px solid #ebebeb;
}

.footer-bottom p {
  margin-bottom: 0;
  color: #9fa4af;
}

.footer-bottom p a {
  color: #544cf9;
}

.footer-bottom p a:hover {
  text-decoration: underline;
}

.footer-bottom .footer-nav {
  margin-bottom: 20px;
}

@media (min-width: 767px) {
  .footer-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    text-align: left;
    padding-bottom: 40px;
  }
}

@media (min-width: 767px) {
  .footer-bottom div {
    max-width: 100%;
  }
}

@media (min-width: 767px) {
  .footer-bottom div:last-child {
    text-align: center;
    max-width: 100%;
  }
}

.footer-bottom > * {
  width: 100%;
}

.footer-area .footer-nav li {
  display: inline-block;
  margin-right: 20px;
}

.footer-area .footer-nav li a {
  display: block;
  line-height: 20px;
  font-weight: 500;
  color: #000;
}

.footer-area .footer-nav li a:hover {
  color: var(--bs-green);
}

.footer-area .footer-nav li:last-child {
  margin-right: 0;
}

.footer-bottom .footer-nav {
  margin-bottom: 20px;
}



.social-icons {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 1000;
  transition: left 0.3s;
}

@media (max-width: 768px) {
  .social-icons {
    left: auto;
    right: 10px;
  }
}

.social-icons a {
  display: block;
  margin: 10px 0;
  color: #333;
  text-decoration: none;
  font-size: 24px;
  transition: color 0.3s;
  position: relative;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons a[aria-label]:hover:after {
  content: attr(aria-label);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 12px;
  white-space: nowrap;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .social-icons a[aria-label]:hover:after {
    left: -75px;
  }
}

@media (min-width: 769px) {
  .social-icons a[aria-label]:hover:after {
    left: 30px;
  }
}



.social-icons a[aria-label="Facebook"] {
  color: #3b5998;
}

.social-icons a[aria-label="Instagram"] {
  color: #e4405f;
}

.social-icons a[aria-label="Twitter"] {
  color: #55acee;
}

.social-icons a[aria-label="Youtube"] {
  color: #cd201f;
}

.social-icons a[aria-label="Linkedin"] {
  color: #0077b5;
}

.social-icons a[aria-label="Whatsapp"] {
  color: #25d366;
}



.form-abone h6 {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  color: #000;
}

.form-abone p {
  margin-bottom: 20px;
  color: #7d7d7d;
}

.form-abone input {
  height: 40px;
  border-radius: 40px 0 0 40px;
  border: 1px solid #d9e6ec;
  font-size: 14px;
  color: #7d7d7d;
}

.form-abone input::-webkit-input-placeholder {
  color: #7d7d7d;
  font-size: 14px;
}

.form-abone input::-moz-placeholder {
  color: #7d7d7d;
  font-size: 14px;
}

.form-abone input:-moz-placeholder {
  color: #7d7d7d;
  font-size: 14px;
}

.form-abone input:-ms-input-placeholder {
  color: #7d7d7d;
  font-size: 14px;
}

.form-abone button {
  height: 40px;
  border: none;
  padding: 0 45px;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 0 40px 40px 0;
  background-color: var(--bs-success);
}

@media (max-width: 479px) {
  .form-abone button {
    padding: 0 25px;
    font-size: 12px;
    letter-spacing: .05em;
  }
}

@media (max-width: 991px) {
  .footer-area .form-abone {
    padding-top: 30px;
  }
}

.form-create {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.form-create .ps-btn {
  border-radius: 0 4px 4px 0;
  padding-left: 25px;
  padding-right: 25px;
}

.form-create input {
  border-radius: 4px 0 0 4px;
  border-color: #ccc;
  border-right: none;
}

.form-content .form-control {
  outline: none;
  height: 50px;
  font-size: 14px;
  padding: 0 20px;
  border: none;
  height: 50px;
  text-indent: 5px;
  border-radius: 50px;
  color: #000;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  border: 1px solid #ebebeb;
  box-shadow: 0 0 0 transparent;
  background-color: transparent;
}

.form-contect .btn {
  width: auto;
  white-space: nowrap;
}





.page-presentation-img .title-container {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .page-presentation-img > .title-container {
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    overflow: hidden;
    transform: translateY(-50%);
  }
}



.page-presentation-img-type {
  position: relative;
  overflow: hidden;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.page-presentation-img-type .image-wrap {
  margin: 0;
  order: 1;
  overflow: visible;
}

.page-presentation-img-type .image-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.page-presentation-img-type .title-container {
  position: relative;
  padding: 20px 15px 30px;
}

.page-presentation-img-type .title-container-inner {
  display: flex;
  flex-direction: column;
}

.page-presentation-img-type .title-container-box {
  padding: 0;
}

.title-box-headline {
  color: #302e2c;
}

.title-box-text {
  color: #969492;
}

@media (min-width: 768px) {
  .page-presentation-img-type {
    border-bottom: 1px solid #f2f2f2;
  }
}

@media (min-width: 768px) {
  .page-presentation-img-type .title-container {
    position: absolute;
    top: 0;
    left: calc(calc(100vw - 750px) / 2);
    bottom: 0;
    width: calc(0.45 * 750px);
    padding-right: 40px;
    padding-bottom: 60px;
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .page-presentation-img-type .image-wrap {
    flex: 0 0 auto;
    width: calc(0.55 * 750px + calc(calc(100vw - 750px) / 2));
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .page-presentation-img-type .image-wrap-helper {
    height: 300px;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .image-wrap-helper {
    padding-bottom: 50%;
  }
}

@media (min-width: 768px) {
  .page-presentation-img-type .image-container {
    max-width: none;
    object-fit: cover;
    object-position: right;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .page-presentation-img-type .title-container-box {
    background-color: transparent;
    max-width: none;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .page-presentation-img-type .title-container {
    left: calc(calc(100vw - 970px) / 2);
    width: calc(0.45 * 970px);
    display: flex;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .page-presentation-img-type .image-wrap {
    width: calc(0.55 * 970px + calc(calc(100vw - 970px) / 2));
  }
}

@media (min-width: 992px) {
  .page-presentation-img-type .image-wrap-helper {
    height: 320px;
  }
}

@media (min-width: 1200px) {
  .page-presentation-img-type .title-container {
    left: calc(calc(100vw - 1170px) / 2);
    width: calc(0.45 * 1170px);
    padding-bottom: 70px;
  }
}

@media (min-width: 1200px) {
  .page-presentation-img-type .image-wrap {
    width: calc(0.55 * 1170px + calc(calc(100vw - 1170px) / 2));
  }
}

@media (min-width: 1200px) {
  .page-presentation-img-type .image-wrap-helper {
    height: 380px;
  }
}

@media (min-width: 1600px) {
  .page-presentation-img-type .title-container {
    left: calc(calc(100vw - 1400px) / 2);
    width: calc(0.45 * 1400px);
  }
}

@media (min-width: 1600px) {
  .page-presentation-img-type .image-wrap {
    width: calc(0.55 * 1400px + calc(calc(100vw - 1400px) / 2));
  }
}

@media (min-width: 1600px) {
  .page-presentation-img-type .image-wrap-helper {
    height: 450px;
  }
}

@media (min-width: 1920px) {
  .page-presentation-img-type::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #f2f2f2;
    pointer-events: none;
  }
}

@media (min-width: 1920px) {
  .page-presentation-img-type .title-container {
    left: 260px;
    width: 630px;
  }
}

@media (min-width: 1920px) {
  .page-presentation-img-type .image-wrap {
    width: 1030px;
  }
}



@media (min-width: 768px) {
  .content-info {
    flex-direction: row;
  }
}



.container-structure {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-structure:before, .container-structure:after {
  content: " ";
  display: table;
}

.container-structure:after {
  clear: both;
}

.container-structure {
  width: 100%;
}



.container-gutter {
  padding-left: 0;
  padding-right: 0;
}

.content-info {
  display: flex;
  flex-direction: column;
  overflow: visible;
}



.image-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.image-wrap {
  max-width: 1920px;
}



.image-wrap-helper {
  position: relative;
  height: 0;
}



.image-container {
  width: 100%;
}



.title-container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.page-presentation-img .title-container {
  padding-top: 0;
  padding-bottom: 0;
}



.title-container-box {
  padding-top: 15px;
  padding-bottom: 15px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.title-container-box {
  display: inline-flex;
  flex-direction: column;
  -ms-hyphens: none;
  hyphens: none;
}

@media (min-width: 768px) {
  .title-container-box {
    display: inline-block;
    max-width: 50%;
    padding: 20px;
    background-color: rgba(0,0,0,.75);
  }
}

@media (min-width: 768px) {
  .title-container-box {
    max-width: 60%;
    color: #fff;
  }
}

@media (min-width: 992px) {
  .title-container-box {
    max-width: 50%;
    padding: 30px;
  }
}

@media (min-width: 1200px) {
  .title-container-box {
    padding: 40px;
  }
}


.content-text p {
  max-width: 45em;
}

.page-nav-map {
  position: relative;
  flex: 0 0 auto;
  height: 45px;
  cursor: default;
  border-bottom: 1px solid #777;
  display: none;
  z-index: 3;
}

@media (min-width: 768px) {
  .page-nav-map {
    display: block;
  }
}

.page-nav-map {
  font-size: 16px;
  color: #969492;
  border-bottom-color: #d9d9d9;
}


.nav-map-list {
  display: flex;
  height: 100%;
  margin: 0 auto;
  padding: 0 5px;
  list-style: none;
}

.nav-map-list {
  overflow: hidden;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .nav-map-list {
    padding-left: 0;
  }
}


.nav-map-item {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  margin: 6px 0 6px 5px;
}

.nav-map-item:first-child {
  margin-left: 0;
}

.nav-map-item > .map-icon {
  position: absolute;
  left: -6px;
  width: 8px;
  height: 8px;
  top: 20%;
}

.nav-map-item:first-child > .map-icon {
  display: none;
}

.nav-map-item {
  margin: 0;
  padding: 6px 0 6px 5px;
  overflow: hidden;
}

.nav-map-item:first-child {
  margin-left: 2px;
}

.nav-map-item > .map-icon {
  left: -2px;
}


.nav-map-link, .map-current {
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.nav-map-link, .map-current {
  color: inherit;
  overflow: hidden;
}


.nav-map-current {
  flex-shrink: 1;
}


.map-current {
  border-color: transparent;
  padding-right: 5px;
}

.map-current {
  color: #302e2c;
}

.nav-map-link:hover, .nav-map-linkfocus {
  color: var(--bs-success);
}


.custom-nav .nav-link {
  color: rgba(0, 0, 0, 0.7);
  border-top: 1px solid transparent;
  border-right: 0px solid transparent;
  border-left: 0px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}


.custom-nav .nav-link:hover {
  color: var(--bs-success);
  border-top: 1px solid var(--bs-success);
  border-right: 1px solid var(--bs-success);
  border-left: 1px solid var(--bs-success);
  border-bottom: 1px solid #fff;
}

.custom-nav .nav-link.active {
  border-top: 1px solid var(--bs-success);
  color: var(--bs-success);
  border-bottom: 0px;
}

.custom-nav .nav-link.active:hover {
  border-bottom: 1px solid #fff;
}

.custom-nav .nav-tabs {
  border-bottom-color: var(--bs-success);
}

.custom-nav .card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}



.custom-nav .card-link:hover .card-title, .custom-nav .card-link:hover .card-text, .custom-nav .card-link:focus .card-title, .custom-nav .card-link:focus .card-text {
  color: var(--bs-success);
  transition: color 0.3s;
}



@media (hover: none) {
  .custom-nav .card-link:active .card-title, .custom-nav .card-link:active .card-text {
    color: var(--bs-success);
    transition: color 0.3s;
  }
}


.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



.product-overview-teaser {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 220px;
  max-width: 500px;
  background-color: #fff;
  border-bottom: 2px solid var(--bs-success);
  margin-bottom: 15px;
  border-right: 1px solid var(--bs-success);
}

.product-overview-teaser__icons {
  position: absolute;
  left: 10px;
  top: 10px;
}

.product-overview-teaser__icon {
  display: block;
  width: 64px;
  height: auto;
  margin: 5px auto 0;
}

.product-overview-teaser__img {
  display: block;
  margin: auto 0 auto auto;
  width: 100%;
  max-width: 90%;
  max-height: 400px;
  transition: transform .3s;
  object-fit: contain;
}

.product-overview-teaser__img-link {
  display: flex;
  width: 100%;
  flex-direction: column;
  color: #302e2c;
  text-decoration: none;
  transition: color .3s;
  -webkit-touch-callout: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.product-overview-teaser__img-figure {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.product-overview-teaser__body-list {
  display: flex;
  list-style: none;
  font-size: 16px;
  margin: 0;
  padding: 0 0 20px 0;
}

.product-overview-teaser__body-list-item {
  display: inline-block;
  text-align: center;
  padding: 0 10px;
  border-left: 1px solid #CBC9C8;
}

.product-overview-teaser__body-list-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.product-overview-teaser__body-list-item i {
  margin-bottom: 5px;
  font-size: 20px;
}

.product-overview-teaser__body-list-item-text {
  font-size: 13px;
  display: block;
}

.product-overview-teaser__headline {
  margin-bottom: 10px;
  font-size: 24px;
}

.product-overview-teaser__body-link a:hover {
  color: var(--bs-success);
}
.crc {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.crc .ps {
  margin-top: -2rem;
}

@media (min-width: 768px) {
  .crc.cf .cti-tr .cti-b {
    padding: 30px 30px 30px 5%;
  }
}

@media (min-width: 1200px) {
  .crc.cf .cti .cti-i .cti-tr .cti-b {
    padding: 30px 30px 30px 7%;
  }
}


.cf {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.c:before, .c:after, .cf:before, .cf:after, .r:before, .r:after {
  content: " ";
  display: table;
}

.c:after, .cf:after, .r:after {
  clear: both;
}

.c, .cf {
  width: 100%;
}

.cn-g {
  padding-left: 0;
  padding-right: 0;
}
.ps {
  overflow: hidden;
  position: relative;
}


.ps-iw {
  position: relative;
  max-width: 320px;
  margin: auto;
}

@media (min-width: 480px) {
  .ps-iw {
    max-width: 70vw;
  }
}


.ps-oct {
  position: absolute;
  left: 0;
  bottom: 20px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: var(--bs-success);
  border-radius: 10px;
  border: 0;
  overflow: hidden;
  transition: transform .3s;
}

.ps-oct:hover {
  transform: scale(1.2);
}



.ps-t2 .ps-oct-iw {
  display: none;
}

@media (min-width: 768px) {
  .ps-t2 .ps-oct-iw {
    display: block;
  }
}

.ps-bgi .ps-oct-iw {
  left: auto;
  top: 10px;
  right: 0;
  bottom: auto;
}

@media (min-width: 768px) {
  .ps-oct, .ps-bgi .ps-oct-iw {
    left: 0;
    top: auto;
    right: auto;
    bottom: 30px;
  }
}

@media (min-width: 768px) {
  .ps-iw {
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    width: calc(50% - 15px);
    max-width: none;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: auto;
  }
}



.ps-t2 .ps-oct-bgi {
  left: 15px;
  top: -180px;
}

@media (min-width: 768px) {
  .ps-t2 .ps-oct-bgi {
    display: none;
  }
}

.ps-t2 {
  background-color: #f2f2f2;
}

.ps-t2 .ps-t {
  background: none;
}

.ps-t2 .ps-tc {
  padding-bottom: 100px;
}

.ps-t2 .ps-tbh1 {
  font-size: .5em;
  font-weight: 700;
  margin-bottom: 1em;
  color: #969492;
}

.ps-t2 .ps-tbh2 {
  color: #302e2c;
}

.ps-t2 .ps-tbt {
  margin-bottom: .5em;
  font-weight: 700;
}

.ps-t2 .ps-bc {
  margin-top: -100px;
}

@media (min-width: 768px) {
  .ps-t2 {
    display: flex;
    flex-direction: column;
    min-height: 300px;
  }
}

@media (min-width: 768px) {
  .ps-t2 .ps-t {
    display: flex;
    align-items: center;
    flex-grow: 1;
  }
}

@media (min-width: 768px) {
  .ps-tc, .ps-t2 .ps-tc {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .ps-t2 .ps-tb {
    max-width: 40%;
  }
}

@media (min-width: 768px) {
  .ps-bc, .ps-t2 .ps-bc, .ps-bgi .ps-bc {
    margin-top: -30px;
  }
}

@media (min-width: 768px) {
  .ps-t2 .ps-iw {
    width: calc(60% - 15px);
  }
}

@media (min-width: 992px) {
  .ps-t2 {
    min-height: 370px;
  }
}

@media (min-width: 1200px) {
  .ps-t2 {
    min-height: 440px;
  }
}

@media (min-width: 1200px) {
  .ps-t2 .ps-i {
    width: 100px;
    height: 100px;
  }
}
.ps-bgi {
  background-color: transparent;
}

.ps-bgi .ps-iw {
  max-width: none;
}

.ps-t2:not(.ps-bgi) .ps-i {
  margin-right: 0;
  margin-bottom: 1em;
}

@media (min-width: 480px) {
  .ps-bgi .ps-iw {
    max-width: none;
  }
}

@media (min-width: 768px) {
  .ps-bgi .ps-t, .ps-bgi .ps-b {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
  }
}

@media (min-width: 768px) {
  .ps-bgi .ps-t {
    bottom: 100px;
  }
}

@media (min-width: 768px) {
  .ps-bgi .ps-b {
    display: flex;
    align-items: flex-end;
  }
}

@media (min-width: 768px) {
  .ps-bgi .ps-tbh1, .ps-bgi .ps-tbh2 {
    color: #fff;
  }
}

@media (min-width: 768px) {
  .ps-bgi .ps-tbt {
    color: #cbc9c8;
  }
}

@media (min-width: 768px) {
  .ps-bgi.ps-c1 .ps-tbh1 {
    color: inherit;
  }
}

@media (min-width: 768px) {
  .ps-bgi.ps-c1 .ps-tbh2 {
    color: #545454;
  }
}

@media (min-width: 768px) {
  .ps-bgi.ps-c1 .ps-tbt, .ps-bgi.ps-c1 .ps-a {
    color: #969492;
  }
}

@media (min-width: 768px) {
  .ps-bc, .ps-t2 .ps-bc, .ps-bgi .ps-bc {
    margin-top: -30px;
  }
}

@media (min-width: 768px) {
  .ps-bgi .ps-i {
    margin-right: 0;
    margin-bottom: 1em;
  }
}

@media (min-width: 768px) {
  .ps-bgi .ps-aiw {
    color: #fff;
  }
}

@media (min-width: 768px) {
  .ps-bgi .ps-a {
    color: #fff;
    border-bottom-color: currentColor;
  }
}
.ps-biw {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}
.ps-bi {
  display: block;
  width: 100%;
}
.ps-bi-wgh {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.ps-tc {
  padding-bottom: 125px;
}
.ps-tb {
  padding-top: 15px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .ps-tb {
    display: inline-block;
    max-width: 50%;
    padding: 20px 0 30px;
  }
}

@media (min-width: 992px) {
  .ps-tb {
    padding: 30px 0 50px;
  }
}

@media (min-width: 1200px) {
  .ps-tb {
    padding-top: 50px;
  }
}
.ps-tbh {
  margin-bottom: 0;
}
.ps-tbh1 {
  display: block;
  margin-bottom: 0;
  font-weight: normal;
}
ps-tbh1 {
  display: block;
  margin-bottom: .4em;
}
.ps-tbt {
  margin-bottom: 1.1em;
  color: #969492;
}
.ps-bc {
  margin-top: -125px;
}
.c {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .c {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .c {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .c {
    width: 1170px;
  }
}
.ps-ic {
  position: relative;
}

@media (min-width: 768px) {
  .ps-ic {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
  }
}
.cn-g {
  padding-left: 0;
  padding-right: 0;
}
.ps-i {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .ps-i {
      flex-direction: row;
  }

  .ps-icon {
      margin-bottom: 0;
      margin-right: 10px; 
  }
}

.ps-t2:not(.ps-bgi) .ps-i {
  position: absolute;
  right: 0;
  top: 0;
  flex-direction: column;
}

.ps-bgi .ps-i {
  margin-top: 10px;
}

.ps-icon {
  display: block;
  margin-bottom: 10px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .ps-i {
    margin-top: -30px;
  }
}

@media (min-width: 768px) {
  .ps-t2 .ps-i {
    position: absolute;
    right: 15px;
    margin-top: 20px;
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .ps-t2 .ps-i {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {
  .ps-t2 .ps-i {
    margin-top: 50px;
  }
}
.ps-i {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  vertical-align: bottom;
}

@media (min-width: 992px) {
  .ps-i {
    width: 80px;
    height: 80px;
  }
}
.ps-as {
  max-width: 290px;
  margin: 1em 0 30px;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .ps-as {
    max-width: 250px;
  }
}

@media (min-width: 992px) {
  .ps-as {
    max-width: 320px;
  }
}

.ps-a {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  max-width: 100%;
  padding: 10px 0;
  color: #969492;
  white-space: nowrap;
  border-bottom: 1px solid #cbc9c8;
}

.ps-a:last-child {
  border-bottom: 0;
}
.ps-aiw {
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  color: #545454;
}
.ps-ai {
  width: 20px;
  height: 20px;
  max-width: 100%;
  max-height: 100%;
}
.ps-ak {
  flex-grow: 1;
}

.min-img {
  max-width: 94px;
}

.accordion-custom .accordion-item {
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-radius: 0px;
}

.bg-body-tertiary {
  opacity: 1;
  background-color: rgba(250,250,250,1) !important;
}

.horizontal-scroll-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.horizontal-scroll-container .card {
  width: 300px;
  min-width: 240px;
  margin-right: 10px;
  border: 1px solid rgba(0,0,0,0.7);
}

.product-user {
  background: var(--color-surface);
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  overflow: hidden;
}

.product-user .swiper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
}

.product-user .swiper .swiper-wrapper {
  transform: translateX(calc(-162px - 32px - 32px));
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-user .swiper-slide {
  height: 54px;
  width: 108px;
  margin-right: 32px;
  flex-shrink: 0;
}

.product-user .swiper-slide img {
  height: 54px;
}

.product-user .swiper-slide {
  animation: motion-navigation 5s infinite linear;
}

@keyframes motion-navigation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 16px));
  }
}

.products-users {
  background-color: rgba(0,0,0,0.03);
}

.gallery-item {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 5px 10px;
  border-radius: 0 0 0 5px;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 1084;
}

.lightbox-content {
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 5px;
  position: relative;
  max-width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.lightbox-content .image-container {
  flex: 0 0 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 550px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}

.lightbox-content .description-container {
  flex: 0 0 10%;
  text-align: center;
  padding: 10px;
  color: rgba(255,255,255,0.8);
}

.lightbox .swiper-slide img {
  width: 100px;
  height: 75px;
  object-fit: cover;
}

.lightbox-content .swiper-container {
  flex: 0 0 30%;
  width: 100%;
}

.product-user-img-list {
  border-bottom: 1px solid #ddd;
}


.downloader {
  background-color: rgba(0,0,0,0.03);
}

.content-download-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: -20px -15px 0;
  padding: 0;
}

.download-list-item {
  position: relative;
  max-width: 100%;
  flex: 0 0 100%;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .download-list-item {
    flex-basis: 50%;
    max-width: 50%;
  }
}

.download-list-item-inner {
  position: relative;
  padding: 20px;
}

.download-list-itemfirst-child .download-list-item-inner {
  border-top: 0;
}

@media (min-width: 768px) {
  .download-list-itemfirst-child(2) .download-list-item-inner {
    border-top: 0;
  }
}

@media (min-width: 992px) {
  .download-list-item-inner {
    padding: 40px 20px;
  }
}

.download-item-icon-wrap {
  display: flex;
  flex: 0 0 50px;
  min-height: 40px;
}

@media (min-width: 992px) {
  .download-item-icon-wrap {
    flex-basis: 60px;
  }
}

.bi.bi-filetype-pdf.download-item-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 35px;
  color: var(--bs-success);
  overflow: hidden;
  font-size: xx-large;
}

@media (min-width: 992px) {
  .bi.bi-filetype-pdf.download-item-icon {
    width: 32px;
    height: 42px;
    font-size: xx-large;
  }
}

.download-item-text-wrap {
  overflow: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
  color: #969492;
}

.downlaod-headline {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  color: #302e2c;
}

.download-filesize {
  display: block;
  white-space: nowrap;
  margin-top: .8em;
  font-weight: 700;
}

.download-btn {
  display: inline-block;
  margin-top: 1em;
  font-weight: 700;
}

.download-btn .bi.bi-download {
  margin-right: 12px;
  font-size: 24px;
}
.about-container {
  position: relative;
  overflow: hidden;
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.img-lazy-helper {
  position: relative;
  height: 0;
  padding-bottom: 35%;
}
.about-content-img {
  width: 100%;
}
.about-container .crc {
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .about-container .crc {
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    overflow: hidden;
    transform: translateY(-50%);
  }
}
.about-text-box {
  padding-top: 15px;
  padding-bottom: 15px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .about-text-box {
    display: inline-block;
    padding: 20px;
    background-color: rgba(0,0,0,.75);
    max-width: 60%;
    color: #fff;
  }
}
.about-text-box {
  display: inline-flex;
  flex-direction: column;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 992px) {
  .about-text-box {
    max-width: 50%;
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .about-text-box {
    padding: 40px;
  }
}
.mission-vision {
  background-color: rgba(0,0,0,0.03);
}
.contact-section {
  margin-top: 20px;
}
.contact-section h3 {
  margin-bottom: 20px;
}
.contact-section ul {
  list-style: none;
  padding: 0;
}
.contact-section ul li {
  margin-bottom: 10px;
}
.contact-section ul li a {
  text-decoration: none;
  color: #000;
}
.contact-section ul li a:hover {
  text-decoration: underline;
}
.map-container {
  height: 300px;
  width: 100%;
  border: 1px solid #ddd;
}
.contact-section ul li a i {
  font-size: 24px;
  padding: 10px;
}
.map-container iframe {
  border: 0;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  transition: top 0.3s ease-in-out;
  border-top-width: 5px;
}
.headertopcolor {
  border-top-style: solid;
  border-top-color: var(--bs-green);
}
.contact-section-nav {
  background-color: #fff;
  z-index: 1000;
  font-size: 12px;
}
.web-navbar {
  background-color: #fff;
  width: 100%;
  z-index: 999;
  transition: transform 0.3s ease-in-out;
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}
.web-navbar .navbar-nav .nav-link {
  color: rgb(0, 0, 0);
  display: inline;
}
.web-navbar .navbar-nav .nav-link:hover {
  color: #0bb944;
}
.web-navbar-sub {
  display: block;
  width: auto;
  max-height: 450px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #ffffff50
}
.sidebar {
  display: none;
  height: auto;
  width: 300px;
  position: absolute;
  top: 80px;
  z-index: 1000;
  overflow-y: auto;
  background-color: #fff;
  padding: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.sidebar a {
  color: rgb(0, 0, 0);
  padding: 5px;
  display: block;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  width: 100%;
}

.sidebar a:hover {
  background-color: #0bb944;
  color: white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;

}
.sidebar .arrow:hover {
  background-color: #0bb944;
  color: white;
  border-radius: 10px;
}
.product-panel {
  display: none;
  background-color: #fff;
  padding: 10px;
  border-left: 2px solid #0bb944;
  margin-left: 300px;
  max-height: 450px;
  overflow-y: auto;
  top: 0;
  z-index: 1001;
  width: calc(100% - 300px);
}
.product-panel-content {
  display: none;
}
.sidebar a,
.nav-link {
  text-decoration: none;
  color: black;
}
.nav-link:hover,
.menu-item:hover {
  
}
.product-panel h5 {
  color: #1d1d1d;
  font-weight: bold;
  border-bottom: 2px solid #0bb944;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: 12pt;
}
.product-panel h5 a {
display: block;
width: 100%;
}
.product-panel h5 a:hover {
background-color: #f2f2f2;
border-radius:10px;
padding:5px;
}
.product-panel ul {
  list-style-type: none;
  padding: 0;
}
.product-panel ul li {
  padding: 5px 0;
  font-size: 10pt;
}
.product-panel ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  padding: 5px;
  border-radius: 10px;
}
.product-panel ul li a:hover {
  background-color: #0bb944;
  color:white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.product-columns {
  display: flex;
  justify-content: space-between;
}
.product-column {
  width: 30%;
  padding: 5px;
}
.arrow {
  font-size: 1rem;
  transition: transform 0.3s;
}
.sidebar a.open .arrow,
.menu-item.open .arrow {
  transform: rotate(180deg);
}
.mobile-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-navbar .navbar-nav .nav-link {
  color: #333;
}
.mobile-navbar .menu-item a {
width: 100%;
}
.menu-item {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:black;
  background-color: #ffffff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.menu-item:hover {
}
.menu-item:hover li a{
  color: white;
}
.menu-item:hover i{
  color: black;
}
.menu-item .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: #333;
  padding-right: 25px;
  padding-left: 25px;
}
.sidebar.open {
  display: block;
}
.sub-menu {
  display: none;
  padding-left: 20px;
  margin-bottom: 10px;
}
.product-list {
  max-height: 200px;
  overflow-y: auto;
  margin-top: 10px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.product-list h5 {
  color: #444;
  font-weight: bold;
  border-bottom: 2px solid #0bb944;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.sub-menu h5 a {
display: block;
width: 100%;
}
.sub-menu li a {
display: block;
width: 100%;
}
.product-list li {
  list-style: none;
  padding: 5px 0;
  color: #555;
}
.product-list li:hover {
  background-color: #0bb944;
  border-radius: 4px;
  cursor: pointer;
  padding: 10px;
  border-radius:10px;
}
.product-list li a:hover {
background-color: #0bb944;
color:white;
border-radius: 10px;
background-color: #0bb944;
padding: 15px;
text-align: center;
}
@media (min-width: 992px) {
  .mobile-navbar {
      display: none;
  }

  .web-navbar {
      display: block;
  }
}
@media (max-width: 992px) {
  .web-navbar {
      display: none;
  }

  .mobile-navbar {
      display: block;
  }
}
.contact-info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}