/*------------------------------------*\
  # Table of Contents
  -------------------
  # General
  # Utils
  # Elements
  # Header
  # Slider
  # Section Description
  # Section Timeline
  # Section Gallery
  # Footer

  # Inner Page Header
  # Inner Page Content With Image

  # Degerlerimiz

  # Businesses

  # Supply Chain

  # Clients 
  
\*------------------------------------*/

/*------------------------------------*\
  # Global
\*------------------------------------*/

:root {
  --site-width: 1200px;
  --site-x-padding: 30px;

  --title-color: #333333;
  --text-color: #777777;
  --orange: #ff9700;
  --orange-light: #f1cf69;
  --dark-blue: #0054a6;
  --link-hover: var(--orange);
}

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

html {
  font-size: 10px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  padding: 0;
  margin: 0;
  font-size: 14px;
  min-height: 100vh;
  position: relative;
}

.lock-position {
  overflow: hidden;
  position: fixed;
}

body,
button,
input,
select,
textarea {
  font-family: 'Poppins', sans-serif;
}

.section {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.section-wrapper {
  width: 100%;
  max-width: var(--site-width);
  padding: 0 var(--site-x-padding);
}

/*------------------------------------*\
  # Utils
\*------------------------------------*/

.font-xxl {
  font-size: 1.8rem;
}
.font-xl {
  font-size: 1.6rem;
  line-height: 1.4;
}
.font-normal {
  font-size: 1.4rem;
}

.color-text {
  color: var(--text-color);
}
.color-title {
  color: var(--title-color);
}

.text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-color);
}

.align-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/*------------------------------------*\
  # Elements
\*------------------------------------*/

.btn {
  background: var(--orange);
  outline: none;
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  box-shadow: 0px 0px 5px 0px #333;
  min-width: 120px;
  height: 56px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: #444;
}

/*------------------------------------*\
  # Header
\*------------------------------------*/

.header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  min-height: 70px;
  padding: 20px;
  margin-top: 20px;
}

.header-wrapper {
  max-width: var(--site-width);
  width: 100%;
  padding: 0 var(--site-x-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-wrapper:before {
  position: absolute;
  top: 0;
  right: 20px;
  color: #fff;
  font-family: "Kaushan Script";
  font-size: 15px;
  letter-spacing: 0.2px;
}

/* headroom start */
.headroom {
  transition: transform .25s ease-in-out;
  will-change: transform;
}

.headroom--unpinned {
  /* transform: translateY(-100%); */
}

.headroom--not-top {
  background-color: #fff;
  margin-top: 0;
  height: 80px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: fixed;
}

.headroom--not-top .nav-item > .link {
  color: var(--title-color);
}

.headroom--not-top .logo img {
  max-height: 60px;
}
/* headroom end */

.logo > img {
  max-width: 145px;
  min-width: 50px;
  width: 100%;
  object-fit: contain;
}

.nav {

}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-item {
  position: relative;
  white-space: nowrap;
}

.nav-item:not(:last-child) {
  margin-right: 30px;
}

.link {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  background: linear-gradient(var(--link-hover), var(--link-hover)) 0 100% / 0 2px no-repeat;
  transition: background-size 0.2s ease-in-out, color 0.2s ease-in-out;
}

.link:hover,
.link.active {
  color: var(--link-hover);
  background-size: 20px 2px;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid\9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.submenu {
  min-width: 220px;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 30px;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.2s ease-in-out, margin-left 0.2s ease-in-out, margin-right 0.2s ease-in-out, padding-top 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.submenu ul {
  white-space: nowrap;
  background-color: #282828;
  padding: 21px 25px;
}

.submenu-item {
  display: block;
  margin-top: 21px;
  font-size: 14px;
}

.submenu-item:first-child {
  margin-top: 0;
}

.nav-item:hover .submenu {
  padding-top: 10px;
  visibility: visible;
  opacity: 1;
}

.nav-toggle {
  padding: 19px 10px;
  position: relative;
  cursor: pointer;
  display: none;
}

.nav-toggle > span {
  position: relative;
  height: 3px;
  width: 20px;
}

.nav-toggle > span:before,
.nav-toggle > span:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
}

.nav-toggle > span,
.nav-toggle > span:before,
.nav-toggle > span:after {
  display: block;
  background-color: #555;
  transition: all 400ms ease-in-out;
  pointer-events: none;
}

.nav-toggle > span:before {
  top: -6px;
}
.nav-toggle > span:after {
  top: 6px;
}

.nav-toggle.active > span {
  background-color: transparent;
}
.nav-toggle.active > span:before {
  transform: rotate(225deg);
}
.nav-toggle.active > span:after {
  transform: rotate(-225deg);
}
.nav-toggle.active > span:before,
.nav-toggle.active > span:after {
  top: 0;
  transform-origin: 50% 50%;
}

@media screen and (max-width: 991px) {
  .header {
    margin-top: 0;
    background-color: #fff;
    padding: 10px 20px;
    align-items: flex-start;
  }

  .header-wrapper {
    position: static;
  }

  .header-wrapper:before {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .logo > img {
    max-width: 60px;
    max-height: 60px;
  }

  .link {
    color: #000;
    font-size: 18px;
  }

  .nav {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .nav-list {
    display: block;
  }
  
  .header.active {
    min-height: 100vh;
  }

  .header.active .nav {
    display: block;
  }

  .nav-item:not(:last-child) {
    margin-right: 0;
  }

  .nav-item {
    padding: 10px 0;
  }

  .submenu {
    position: static;
    padding-top: 0;
    display: none;
    width: 0;
    min-width: 100%;
    padding-right: 250px;
    margin-right: -250px;
  }

  .submenu.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-item:hover .submenu {
    padding-top: 0;
  }

  .submenu ul {
    background-color: transparent;
  }

  .submenu-item {
    margin-top: 18px;
  }
}

@media screen and (max-width: 768px) {
  
}

@media screen and (max-width: 576px) {
  
}

@media screen and (max-width: 375px) {
  
}

/*------------------------------------*\
  # Slider
\*------------------------------------*/

.swiper-container {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

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

.swiper-slide__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.swiper-slide__img img {
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter:contrast(.7) brightness(.7); /* hangi resim olursa olsun üzerindeki yazının okunabilmesi için */
}

.swiper-slide__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 3;
  text-align: center;
}

.swiper-slide__content h3 {
  color: #fff;
  font-weight: 700;
  font-size: 70px;
}

.swiper-slide__content .btn {
  margin-top: 20px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  font-weight: 700;
  transform: rotate(-90deg);
  transform-origin: center center;
  outline: 0;
  font-size: 18px;
}

.swiper-pagination-bullet {
  opacity: 1;
  background: var(--orange);
  width: 16px;
  height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--dark-blue);
}

/*------------------------------------*\
  # Section Description
\*------------------------------------*/

.section-description {
  padding: 100px 0 80px 0;
}

.section-description-container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 30px;
}

.section-description__left {
  padding-left: 15px;
  padding-right: 15px;

}

.section-description__right {}

.section-description__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--title-color);
}
.section-description__text {}

.section-description__text p:not(:first-child) {
  margin-top: 15px;
}

.section-description-products {
  margin-top: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.product-item {
  text-align: center;
}

.product-item__img {
  object-fit: contain;
  width: 80px;
  height: 80px;
}

.product-item__title {
  font-size: 1.6rem;
  color: var(--title-color);
  line-height: 1.5;
  font-weight: 600;
  margin-top: 15px;
}

@media screen and (max-width: 991px) {
  .section-description {
    padding: 60px 0;
  }

  .section-description-container {
    grid-template-columns: 1fr;
  }

  .section-description__left {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .section-description-products {
    grid-gap: 20px;
  }

  .product-item__img {
    width: 50px;
    height: 50px;
  }

  .product-item__title {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 576px) { 
  .section-description {
    padding: 40px 0;
  }

  .section-description__title {
    font-size: 3rem;
  }

  .section-description-products {
    margin-top: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 375px) {
  .section-description-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*------------------------------------*\
  # Section Timeline
\*------------------------------------*/

.section-timeline {
  padding: 100px 0 0 0;
  background-color: #fef8e9;
}

.timeline-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.timeline-item {
  position: relative;
  padding: 60px 20px 20px 0;
  --circle-size: 16px;
}

.timeline-item:before {
  content: '';
  position: absolute;
  z-index: 2;
  width: var(--circle-size);
  height: var(--circle-size);
  left: 0;
  top: calc(var(--circle-size) / -2);
  border-radius: 50%;
  background: radial-gradient(#c8cfb8 0 3px, #fff 3.5px 100%) no-repeat;
}

.timeline-item:after {
  content: '';
  position: absolute;
  left: calc(var(--circle-size) / 2);
  top: 0;
  height: 40px;
  width: 100%;
  border-left: 1px solid #c8cfb8;
  border-top: 1px solid #c8cfb8;
}

.timeline-item__number {
  color: var(--dark-blue);
  font-weight: 700;
  line-height: 1;
  font-size: 6rem;
}

.timeline-item__title {
  color: var(--dark-blue);
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.8rem;
  margin-top: 15px;
}

.timeline-item__text {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .section-timeline {
    padding-top: 50px;
  }

  .timeline-container {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    padding: 20px 0 20px 60px;
    border-left: 1px solid #c8cfb8;
    --top-distance: 50px;
  }

  .timeline-item:after {
    left: 0;
    top: var(--top-distance);
    height: calc(100% - var(--top-distance));
    width: 40px;
    border-top: 1px solid #c8cfb8;
    border-left: 0;
  }

  .timeline-item:before {
    top: calc(var(--top-distance) - var(--circle-size) / 2);
    left: calc(var(--circle-size) / -2);
  }
}

/*------------------------------------*\
  # Section Gallery
\*------------------------------------*/

.section-gallery {
  padding: 0 0 100px 0;
  background-color: #fef8e9;
}

.gallery-container {

}

.gallery-group {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, 280px);
  justify-content: center;
  grid-auto-rows: 280px;
  margin: 100px 0;
}

.gallery-item {
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  position: relative;
}

.gallery-item__content {

  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.gallery-item__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--title-color);
}

.gallery-item__text {
  margin-top: 20px;
}

.gallery-item__link {
  display: block;
  margin-top: 20px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}

.gallery-item__img {
  padding: 10px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item__placeholder-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 50%;
  object-fit: contain;
}

.gallery-item__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item__overlay:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item__overlay__title {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  position: relative;
  z-index: 2;
  transition: color 0.2s ease;
}

.gallery-item:hover .gallery-item__overlay:before {
  opacity: 1;
}

.gallery-item:hover .gallery-item__overlay__title {
  color: var(--orange);
}

@media screen and (max-width: 991px) {
  .gallery-group {
    margin: 75px 0;
  }

  .section-gallery {
    padding-bottom: 75px;
  }
}

@media screen and (max-width: 768px) {
  .gallery-group {
    margin: 50px 0;
  }

  .section-gallery {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 576px) {
  .gallery-group {
    margin: 30px 0;
  }

  .section-gallery {
    padding-bottom: 30px;
  }
}

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

.footer {
  color: #fff;
  background-color: var(--dark-blue);
}

.footer-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 20px;
  padding: 50px 0;
}

.footer-col-group-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}

.footer-left {
  max-width: 255px;
  width: 100%;
}

.footer-logo {
  object-fit: contain;
  max-width: 105px;
  width: 100%;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.6;
}

.footer-center {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
}


.footer-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-column-gap: 10px;
}

.footer-group > .footer-col-group-title {
 grid-column: span 2;
}

.footer-col {}

.footer-list {}

.footer-list + .footer-list {
  margin-top: 20px;
}

.footer-list__title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.footer-list__item {
  padding: 6px 0;
}

.footer-list__item > a::before {
  content: "› ";
  font-size: 15px;
  position: relative;
  top: 1px;
  color: rgb(243, 243, 243);
  margin-right: 3px;
}

.footer-list__item > a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  transition: color 0.2s ease;
}

.footer-list__item:hover > a {
  color: rgba(255,255,255, 0.6);
}

.footer-contact-list {
  max-width: 150px;
  width: 100%;
}

.footer-contact-list__item {
  padding: 6px 0;
}

.footer-contact-list__item,
.footer-contact-list__item > a {
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: none;
}

.footer-social > a:not(:last-child) {
  margin-right: 10px;
}

.footer-bottom {
  color: #fff;
  padding: 30px 0;
  font-size: 12px;
  font-weight: 300;
  background-color: #333;
}

.footer-copyright {
  display: block;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  
}

@media screen and (max-width: 991px) {
  .footer-left {
    max-width: 200px;
  }

  .footer-group {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    grid-column-gap: 0;
    grid-row-gap: 10px;
  }

  .footer-group > .footer-col-group-title {
    grid-column: span 1;
  }

  .footer-list + .footer-list {
    margin-top: 10px;
  }

}

@media screen and (max-width: 768px) {
  .footer-left {
    grid-column: span 3;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr auto;
    grid-column-gap: 0;
  }

  .footer-col-group-title {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 576px) {
  .footer-right {
    grid-column: span 3;
    max-width: 100%;
    margin-top: 30px;
  }

  .footer-contact-list {
    max-width: 100%;
  } 
  
  .footer-col-group-title {
    margin-bottom: 0;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

@media screen and (max-width: 375px) {
  .footer-center {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

/*------------------------------------*\
# To Top
\*------------------------------------*/

.to-top-wrapper {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 5;
  cursor: pointer;
  display: none;
}

.btn-to-top {
  width: 44px;
  height: 44px;
  line-height: 38px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  background-color: #efc852;
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-to-top:hover {
  opacity: 1;
}

.btn-to-top:before {
  content: '';
  border-bottom: 6px solid #fff;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}

/*------------------------------------*\
# Inner Page Header
\*------------------------------------*/

.section-inner-page-header {
  height: 600px;
  width: 100%;
  background: linear-gradient(var(--overlay-color, rgba(74, 139, 113, 0.3)), var(--overlay-color, rgba(74, 139, 113, 0.3))) center / cover, 
              var(--hero-image, url('../img/hakkimizda.jpg')) center / cover fixed;
}

.inner-page-header-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px 0;
  height: 100%;
}

.inner-page-header__title {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.8rem;
  font-weight: 700;
  font-size: 4rem;
}

.breadcrumb {
  margin-top: 20px;
}

.breadcrumb-list {
  display: flex;
}

.breadcrumb-list-item {
  color: var(--orange-light);
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-right: 5px;
}

.breadcrumb-list-item > a {
  color: #fff;
  text-decoration: none;
  text-transform: none;
}

.breadcrumb-list-item:not(:last-child):after {
  content: ' › ';
  color: #fff;
}

@media screen and (max-width: 991px) {
  .inner-page-header__title {
    font-size: 7rem;
  }
}

@media screen and (max-width: 768px) {
  .inner-page-header__title {
    font-size: 6rem;
  }
}

@media screen and (max-width: 576px) {
  .inner-page-header__title {
    font-size: 4.5rem;
  }

  .breadcrumb-list-item {
    font-size: 15px;
  }
}

@media screen and (max-width: 375px) {
  .inner-page-header__title {
    font-size: 4rem;
  }
}

/*------------------------------------*\
# Inner Page Content With Image
\*------------------------------------*/

.inner-page-content-with-image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  padding: 50px 0;
}

.inner-page-content-with-image-wrapper > img {
  max-width: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .inner-page-content-with-image-wrapper {
    grid-template-columns: 1fr;
  }

  .inner-page-content-with-image-wrapper > img {
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  .inner-page-content-with-image-wrapper {
    padding: 30px 0;
  }
}

/*------------------------------------*\
# Degerlerimiz
\*------------------------------------*/

.full-width-description {
  width: 100%;
  padding: 0 10px;
  margin: 50px 0;
  font-style: italic;
}

.section-zigzag-content {
  margin: 50px 0;
}

.zigzag-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 365px;
  align-items: center;
}

.zigzag-layout__img {
  position: relative;
  height: 100%;
}

.zigzag-layout img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zigzag-layout__text {
  text-align: center;
  padding: 20px;
}

.zigzag-layout__text h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.zigzag-layout__text p {
  line-height: 2.4rem;
}

@media screen and (max-width: 1200px) {
  .zigzag-layout {
    grid-auto-rows: 320px;
  }
}

@media screen and (max-width: 991px) {
  .zigzag-layout {
    grid-auto-rows: 280px;
  }
}

@media screen and (max-width: 768px) {
  .full-width-description,
  .section-zigzag-content {
    margin: 40px 0;
  }

  .zigzag-layout {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .zigzag-layout__img {
    min-height: 250px;
  }

  .zigzag-layout__img:nth-child(4) {
    grid-row: 3 / 4;
  }

  .zigzag-layout__text {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 576px) {
  .full-width-description,
  .section-zigzag-content {
    margin: 30px 0;
  }

  .zigzag-layout__img {
    min-height: 200px;
  }
}

@media screen and (max-width: 375px) {
  .zigzag-layout__img {
    min-height: 180px;
  }
}

/*------------------------------------*\
  # Businesses
\*------------------------------------*/

.section-businesses {
  margin-bottom: 50px;
}

.businesses-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 15px;
  column-gap: 15px;
  color: #777;
}

.bussinesses-col-group-title {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
}

.bussinesses-col {
  margin: 10px 0;
}

.bussinesses-list {}

.bussinesses-list__item {
  font-weight: 300;
  font-size: 13px;
  line-height: 20px;
  margin-left: 10px;
  padding-top: 5px;
}

.bussinesses-list__item:not(:first-child)::before {
  content: "❯";
  background-color: transparent;
  height: 18px;
  font-size: 10px;
  width: 4px;
  position: relative;
  top: -1px;
  margin-right: 3px;
  color: rgb(136, 136, 136) !important;
}

.bussinesses-list__title {
  font-size: 15px;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 5px;
  margin-left: -10px;
}

.bussinesses-list__title:before {
  content: "";
  width: 3px;
  height: 12px;
  background-color: #000;
  display: inline-block;
  margin-right: 5px;
  background-color: var(--marker-color, #000);
}

@media screen and (max-width: 991px) {
  .section-businesses {
    margin-bottom: 40px;
  }

  .businesses-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .section-businesses {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 576px) {
  .section-businesses {
    margin-bottom: 20px;
  }

  .businesses-container {
    grid-template-columns: 1fr;
  }

  .bussinesses-group:not(:first-child) {
    margin-top: 20px;
  }

  .bussinesses-col {
    margin: 5px 0;
  }
}

/*------------------------------------*\
  # Supply Chain
\*------------------------------------*/

.section-supply-chain {
  margin:50px 0;
}

.chain-list {}

.chain-item {
  display: grid;
  grid-template-columns: 155px 1fr;
  grid-column-gap: 50px;
  column-gap: 50px;
  padding: 20px;
  align-items: center;
  position: relative;
  --item-line-height: 124px;
  margin-bottom: var(--item-line-height);
}

.chain-item:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: var(--item-line-height);
  background: url('../img/line.png') 50% 50% / contain no-repeat;
}

.chain-item:nth-child(2n):before {
  transform: scale(-1, 1);
}

.chain-item:last-child {
  margin-bottom: 0;
}

.chain-item:last-child:before {
  display: none;
}

.chain-item:nth-child(2n) {
  grid-template-columns: 1fr 155px;
}
.chain-item:nth-child(2n) > .chain-img {
  grid-row: 1;
  grid-column: 2 / 3;
}
.chain-item:nth-child(2n) > .chain-content {
  grid-row: 1;
  grid-column: 1 / 2;
}

.chain-img {
  width: 155px;
  height: 155px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.chain-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chain-content {
  width: 100%;
}

.chain-title {
  font-weight: 700;
  color: #333;
  text-align: center;
  font-size: 1.6rem;
}

.chain-text {
  margin-top: 15px;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .chain-item {
    grid-column-gap: 30px;
    column-gap: 30px;
  }

  .chain-item:before {
    background-size: 80% auto;
  }
}

@media screen and (max-width: 576px) {
  .chain-item,
  .chain-item:nth-child(2n) {
    grid-template-columns: 1fr;
    grid-template-rows: 155px auto;
    justify-content: center;
    grid-column-gap: 0;
    column-gap: 0;
    margin-bottom: 0;
    padding: 20px;
  }

  .chain-item:nth-child(2n) > .chain-content,
  .chain-item:nth-child(2n) > .chain-img {
    grid-row: unset;
    grid-column: unset;
  }

  .chain-item:before {
    display: none;
  }

  .chain-img {
    margin: 0 auto;
  }

  .chain-content {
    margin-top: 30px;
  }
}

@media screen and (max-width: 375px) {
  .chain-item {
    padding: 20px 10px;
  }
}

/*------------------------------------*\
  # Clients 
\*------------------------------------*/

.single-scene-page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.clients-top-logo {
  max-height: 50px;
  object-fit: contain;
  margin-top: 150px;
}

.section-clients-logos {
  margin: 150px 0;
}

.client-logos-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  grid-gap: 100px 50px;
  align-items: center;
  justify-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.client-logo {
  max-height: 45px;
  object-fit: contain;
}

.clients-footer {
  margin-top: auto;
  background-color: var(--dark-blue);
}

.clients-footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
}

.clients-footer-left,
.clients-footer-right {
  width: 300px;
}

.clients-footer-center {
  margin: 0 auto;
}

.clients-footer-social {
  display: flex;
  justify-content: flex-end;
}

.clients-footer-logo {
  object-fit: contain;
  max-height: 25px;
  filter: brightness(0) invert(1);
}

.clients-footer-social > a {
  margin-right: 10px;
}

.clients-footer-social > a > svg {
  height: 24px;
  width: 24px;
  color: #fff;
}

.clients-footer-info-list {
  padding: 15px 0;
}

.clients-footer-info-list__item {
  padding: 5px 0;
}

.clients-footer-info-list__item > a {
  color: #fff;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .clients-top-logo {
    margin-top: 120px;
  }
  
  .section-clients-logos {
    margin: 120px 0;
  }

  .client-logos-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .clients-footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }

  .clients-footer-center {
    margin: 0;
    order: 1;
  }
  .clients-footer-left {
    order: 2;
    width: 100%;
  }
  .clients-footer-right {
    order: 3;
    width: 100%;
  }

  .clients-footer-social {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .clients-top-logo {
    margin-top: 80px;
  }
  
  .section-clients-logos {
    margin: 100px 0;
  }

  .client-logos-container {
    grid-gap: 80px 50px;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 375px) {
  .client-logos-container {
    grid-gap: 60px;
    grid-template-columns: 1fr;
  }
}