:root {
  --primary: #c00000;
  --secondary: #EEEEEE;
  --success: #198754;
  --info: #007AFF;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #212529;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-dark: #343a40;

  --orange: #FD6502;
  --dark: #1F1F1F;
  --purple: #6F1DF4;
  --purple-light: #811BCD;
  --green: #55BA18;
  --red: #9c0e14;
  --primary-dark: #A80E15;

  --bs-primary-rgb: 166, 14, 21;


  --rounded-lg: 12px;
  --rounded-md: 6px;

  --body-bg: #fff;
  --font-primary: "Roboto";

  --text-color: #616161;
  --text-dark: #222222;

}
body {
  background-color: var(--body-bg);
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
  color: var(--text-color);
}
body,html {
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
}

@media (min-width: 1025px) {
  .navbar-toggler {
      display: none;
  }
}

@media screen and (max-width: 1024px) {
  .navbar-expand-lg .navbar-toggler {
    display: block;
  }
}


.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  pointer-events: none; 
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-cursor::after {
  content: '';
  width: 4px;  
  height: 4px;
  background-color: var(--primary-dark);
  border-radius: 50%;
}

@media (max-width: 767px) {
  .custom-cursor {
    display: none;
  }
  .image-pagination {
    width: 20% !important;
  }
}


@media screen and (min-width: 768px) {
  .swiper-pagination.hero-pagination {
    display: none;
  }
}


.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: #C43B42; 
  box-shadow: 0 0 0 0.25rem rgba(168, 14, 21, 0.25);
  outline: none;
}



section.section-experience {
  background-image: url("../assets/img/arka_2-min.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

section.section-experience .hero-line {
  font-size: 18px;
  color: var(--primary-dark);
  font-family: "Inter";
}
section.section-experience .hero-title {
  font-size: 40px;
  color: #FFFFFF;
  line-height: 1;
}


.experience-card {
  background: rgba(250, 250, 250, 0.5); 
  padding: 20px;                    
  backdrop-filter: blur(0.5px);          
  -webkit-backdrop-filter: blur(0.5px);   
  justify-content: space-between;
  border-radius: 0;
  justify-content: space-between;
  border-radius: 0;
  box-shadow: none;
}
.experience-card i {
  color: var(--primary-dark);
  font-size: 60px;
}
.experience-card .number {
  color: #1B1B1B;
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.experience-card .subtitle {
  display: block;
  text-align: center;
  color: #111111;
  font-family: "Inter";
  font-size: 15px;
  font-weight: 300;
  line-height: 21px;
}

@media screen and (max-width: 767px) {
  .card.experience-card {
    padding: 20px 5px !important;
  }
  .experience-card .number {
    font-size: 37px;
  }
  .experience-card .icon-container {
    display: flex;
    justify-content: center;
  }
  .experience-card .icon-container i {
    font-size: 50px;
  }
  .card.companion-card .overlay {
    left: -410px !important;
  }
}

a.link-primary:hover {
  color: var(--primary-dark) !important;
}
.btn.btn-primary.soft {
  background-color: #AB363A;
  font-family: "Roboto";
  font-weight: 300;
}
.btn.btn-primary:hover {
  background-color: #dd0505;
}
.btn.btn-primary {
  background-color: var(--primary-dark);
  border: 0;
  border-radius: 3px;
  font-size: 15px;
  padding: 12px 24px;
  line-height: 1;
  font-family: "Inter";
  font-weight: 300;
}
.btn.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-dark);
  border-width: 2px;
  border-radius: 0;
  padding-top: 13px;
  padding-bottom: 13px;
  min-width: 252px;
  color: var(--primary-dark);
  font-size: 16px;
}
.btn.btn-red {
  background-color: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  border-radius: var(--rounded-lg);
}
.btn.btn-outline-info {
  border: 1px solid var(--info);
  color: var(--info);
  border-radius: var(--rounded-lg);
}
.btn.btn-outline-red {
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: var(--rounded-lg);
}
.btn.btn-outline-green {
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: var(--rounded-lg);
}
.btn.btn-info {
  border: 1px solid var(--info);
  color: #fff;
  border-radius: var(--rounded-lg);
  background-color: var(--info);
}
.btn.btn-outline-info:hover {
  border: 1px solid var(--info);
  background-color: #fff;
}
.btn.btn-outline-gray {
  background-color: #fff;
  border: 1px solid #848199;
  border-radius: var(--rounded-lg);
  padding: 9px 21px;
  color: #848199;
}
.border-top-orange {
  border-top: 1px solid var(--orange);
}

.btn.btn-gray {
  background: #84819975;
  color: white;
}


.card {
  border: 0;
  box-shadow: 4px 4px 12.7px 1px #811BCD1A;
}


section {
  padding: 100px 0;
}

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

.cart-wrapper {
  width: 42px;
  height: 42px;
  border-radius: var(--rounded-md)
}

.border-white {
  border: 1px solid #fff;
}
.btn.btn-sign-in {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--rounded-md);
  width: 144px;
  height: 44px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  padding: 0px 15px 0px 15px;
  margin-right: 12px;
}
.btn.btn-sign-in::before {
  content: "\f2f6";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
}

.navbar .nav-link {
  font-size: 16px;
  color: #fff;
}

.navbar {
  transition: all 0.5s ease-in-out;
}
.navbar.hidden {
  transform: translateY(-100%);
}

.navbar-white {
  background-color: #ffffff !important;
  transition: background-color 0.5s ease;
}
.navbar-white .nav-link {
  color: #000;
}
.navbar-white .language-dropdown {
  color: #000;
}

.nav.nav-pills {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
}
.nav.nav-pills .nav-item {
  flex: 1;
  padding: 0;
}
.nav.nav-pills button.nav-link {
  border-radius: 12px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter";
  font-weight: 500;
  background-color: white;
  height: 44px;
  border: 1px solid #E7E7E7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  color: #272727;
  font-size: 15px;
  text-overflow: ellipsis;
  line-height: 1.2;
  white-space: nowrap;
}
.nav.nav-pills button.nav-link.active {
  color: var(--primary-dark);
}

.team-members-container-mobile {
  gap: 30px;
}

.modal-content p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #616161;
}
.modal-body {
  padding: 1.25rem;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #616161;
  overflow-y: auto;
}
.modal-content {
  width: 90%;
  max-height: 90vh;
  margin: 0 auto;
  border-radius: 4px 4px 4px 4px !important; 
}





.mobile-img img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
button.btn-action {
  background-color: var(--primary-dark);
  border-radius: 4px 4px 4px 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 1px solid #2575fc;
  height: 46px;
  padding: 0 20px;
}
.action-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.team-member-content {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .team-member-wrap {
    width: 90% !important;
    max-width: 90% !important;
  }
}

.btn.btn-sign-up {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  border-radius: var(--rounded-md);
  width: 189px;
  height: 44px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  padding: 0px 15px 0px 15px;
}
.btn.btn-sign-up::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
}




.sign-up-page .tab-content {
  background-color: #fff;
}

.sign-up-page .form-step {
  background-color: #fff;
  width: 32px;
  height: 32px;
  border: 2px solid #A1AEBE;
  border-radius: 100%;
}
.sign-up-page .form-step.active {
  width: 32px;
  height: 32px;
  background-color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 100%;
}
.sign-up-page .form-step-line {
  background-color: #A1AEBE;
  height: 2px;
  width: 80px;
  margin: 0 10px;
}
.sign-up-page .form-step-line.active {
  background-color: var(--orange);
}
.sign-up-page .form-step.active::before {
  content: "";
  display: block;
  width: 23px; 
  height: 14px; 
  background-image: url("../assets/img/check.png");
  background-size: cover; 
  background-position: center; 
  margin-top: 7px;
  margin-left: 3px;
}

.input-wrapper img {
  position: absolute;
  right: 10px;
  top: 12px;
}
.input-wrapper input {
  padding-right: 20px;
}

@media screen and (min-width: 769px) {
  .swiper-main-wrapper .swiper-pagination.services-pagination {
    bottom: -16% !important;
  }
}

@media screen and (max-width: 768px) {
  .swiper-main-wrapper .swiper-pagination.services-pagination {
    bottom: -11% !important;
  }
}

@media screen and (max-width: 1024px) {
  .distribution-network-mobile .swiper-pagination.services-pagination {
    bottom: 2% !important;
  }
}


.bg-light-gray {
  background-color: #F5F7FA;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.dropdown-toggle::after {
  display: none;
}
.dropdown-menu {
  border-radius: var(--rounded-lg);
  box-shadow: 0px 4px 9.9px 0px #0000001A;
  border: 0;
}
.dropdown-menu .dropdown-item {
  line-height: 30px;
}
.dropdown-menu .dropdown-item:active {
  background-color: #FF66001A;
  color: #FF6600;
}
.dropdown-menu[data-bs-popper] {
  top: 120%;
}
.dropdown-item.active, .dropdown-item:active {
  background-color: #FF66001A;
  color: #FF6600;
}
.nav-item {
  position: relative;
  padding: 10px;
  cursor: pointer;
}
.navbar {
  background-color: #0000003D;
  z-index: 100;
  width: 100%;
}

.navbar a {
  font-weight: 500;
}

@media screen and (max-width: 568px) {
  .navbar-collapse .nav-item {
    padding: 8px 0;
  }
  .navbar-collapse .nav-link {
    font-size: 19px;
   /* padding: 7px 0px 0px 0px; */
  }
  .slide-content h1 {
    font-size: 29px !important;
    line-height: 32px !important;
  }
}

.language-dropdown {
  color: #fff;
}
.lang-menu .lang-item {
  color: #000;
}


@media screen and (min-width: 1025px) {
  .navbar-collapse .collapse-head {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .navbar-collapse .collapse-head {
    display: flex;
  }
  .navbar-expand-lg .navbar-collapse {
    display: block !important;
    flex-basis: content;
  }
  .navbar-nav {
    flex-direction: column !important;
  }
}



@media screen and (min-width: 1200px) {
  .navbar-brand { 
    margin-left: -9px;
  }
}

@media screen and (max-width: 1024px) {
  .navbar-collapse,
.navbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  transform: translateX(-100%);
}

.navbar-collapse {
  width: 100vw;
  background-color: #fff;
  z-index: 1051; 
  overflow-y: hidden;
  overflow-x: hidden;
  transition: transform 0.9s ease; 
}

.navbar-overlay {
  width: 100vw;
  background-color: rgba(0,0,0,0.45);
  z-index: 1050; 
  transition: transform 0.3s ease; 
}

.navbar-collapse.show {
  transform: translateX(0);
}

.navbar-overlay.active {
  transform: translateX(0);
}

}






.navbar-collapse.show .nav-link {
  color: #000;
  font-weight: 400;
}
.navbar-collapse .collapse-head {
  padding-top: 20px;
  padding-left: 25px;
}

@media screen and (max-width: 1024px) {
  .navbar-nav {
    padding-left: 40px;
    height: 100vh;
  }
}

.navbar-nav {
  flex-direction: column;
}

.position-relative {
  position: relative; 
}

.dropdown-menu-sign-in {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  min-width: 150px;
  z-index: 1000;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; 
}


.dropdown-menu-sign-in.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu-sign-in-mobile {
  position: absolute;
  top: 90%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  min-width: 150px;
  z-index: 1000;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; 
}

.dropdown-menu-sign-in-mobile.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.dropdown-menu-sign-in a {
  font-size: 14px;
  display: block;
  text-align: left;
  padding: 15px 12px;
  color: #333;
  text-decoration: none;
}
.dropdown-menu-sign-in a:first-child {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.dropdown-menu-sign-in a:nth-child(2) {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.dropdown-menu-sign-in a:hover {
  background: #f0f0f0;
}


.dropdown-menu-sign-in-mobile {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.dropdown-menu-sign-in-mobile a {
  font-size: 14px;
  display: block;
  text-align: left;
  padding: 15px 12px;
  color: #333;
  text-decoration: none;
}
.dropdown-menu-sign-in-mobile a:first-child {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.dropdown-menu-sign-in-mobile a:nth-child(2) {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.dropdown-menu-sign-in-mobile a:hover {
  background: #f0f0f0;
}

.lang-menu-mobile {
  border: 1px solid #ccc;
}

.lang-menu-mobile .lang-item {
  font-size: 14px;
  display: block;
  text-align: left;
  padding: 15px 12px;
  color: #333;
  text-decoration: none;
}

#lang-btn-mobile i {
  color: #000;
}
#lang-btn-mobile {
  display: flex;
  align-items: center;
}
#bayi-btn-mobile {
  display: flex;
  align-items: center;
}





.language-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-menu {
  top: 90%;
  border: 1px solid #ccc;
}

.lang-menu, .lang-menu-mobile {
  position: absolute;
  left: 0;
  background: #fff;
  min-width: 150px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  list-style: none;
  border-radius: 5px;
  z-index: -1;
}

.lang-menu-mobile {
  top: calc(100% + 5px);
}

.lang-menu.show, .lang-menu-mobile.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-menu-mobile.show {
  z-index: 2;
}

.mobile-only .lang-item {
  color: #000;
}

.lang-item {
  padding: 5px 0;
  cursor: pointer;
  padding: 15px 12px;
  font-size: 14px;
  border-radius: 5px;
}

.lang-item:hover {
  background: #f0f0f0;
}


#custom-dropdown {
  position: absolute;
  top: 96px;
  left: 0;
  width: 100vw;
  background: #fff;
  padding: 20px 50px;
  /*box-shadow: 0 8px 16px rgba(0,0,0,0.2); */
  z-index: 1050;

  display: flex;        
  flex-direction: column;
  opacity: 0;              
  transform: translateY(-20px); 
  pointer-events: none;    
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#custom-dropdown.show {
  opacity: 1;
  transform: translateY(0); 
  pointer-events: auto;
}
#custom-dropdown .dropdown-item.active, .dropdown-item:active {
  background-color: transparent;
  color: var(--primary-dark);
}

#custom-dropdown .title {
  color: var(--primary-dark);
  font-size: 24px;
  font-weight: 500;
  font-family: "Inter";
  margin-top: 15px;
  margin-bottom: 15px;
}

.dropdown-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

#custom-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  flex: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
  gap: 10px;
  padding-right: 20px;
}


#custom-dropdown .dropdown-item:hover {
  transform: translateY(-5px);
} 
#custom-dropdown .dropdown-item img {
  width: 131px;
  height: 170px;
  object-fit: fill;
  border-radius: 8px;
  margin-bottom: 10px;
}
#custom-dropdown .dropdown-item .text-content span {
  font-size: 14px;
}
#custom-dropdown .dropdown-item .text-content h5 {
  font-size: 16px;
}

#custom-dropdown .dropdown-cta a {
  font-size: 16px;
}


.nav-tabs-standard {
  width: 55%;
}
.nav-tabs-standard .nav-link {
  flex: 1;
  justify-content: center;
  font-family: "Inter";
  font-weight: 500;
  font-size: 17px;
  line-height: 29px;
  padding: 20px;
  font-size: 17px;
}
.nav-tabs-large {
  width: 100%;
}
.nav-tabs.nav-tabs-large .nav-link {
  flex: 1;
  justify-content: center;
  font-family: "Inter";
  font-weight: 500;
  font-size: 17px;
  line-height: 29px;
  padding: 20px;
}
.nav-tabs.nav-tabs-large .nav-link.active {
  background: #FAFAFA;
}

.nav-tabs {
  border-bottom-color: transparent;
}
.nav-tabs .nav-link {
  color: #333;
  padding: 13px 38px 13px 38px;
  font-family: "Inter";
  font-size: 1rem;
  font-weight: 500;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  letter-spacing: normal;
  text-transform: none;
}
.nav-link:hover {
  color: #707070;
}
/*
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background: #fff;
  border-bottom: 3px solid var(--red);
  color: var(--red);
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active .tab-icon svg {
  fill: var(--red);
} */
/*
.nav-tabs .nav-link:hover {
  border-bottom: 3px solid var(--red);
  border-bottom-color: var(--red);
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
} */
.nav-tabs .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.nav-tabs .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  z-index: 0;
}

.nav-tabs .nav-link:hover {
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
  color: #333;
}
.nav-tabs .nav-link:hover::after {
  height: 3px;
  background-color: #9c0e14;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.nav-tabs .nav-link.active::after {
  height: 3px;
  background-color: #9c0e14;
  opacity: 1;
  transition: all 0.3s ease;
}
.nav-tabs .nav-link.active {
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
  color: var(--primary-dark);
  border-radius: 0;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active .tab-icon svg {
  fill: var(--primary-dark);
}


.grid-feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 20px 0px;
  background-color: #F7F7F7;
  height: 202px;
}
.grid-feature-item img {
  width: 90px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}

.corporate-tab-content {
  width: 100%;
  height: 90vh;
  margin-top: 60px;
  margin-right: 30px;
  background-position: center right;
  background-repeat: no-repeat;
  padding-top: 60px;
}
.corporate-tab-content.content-1 {
  background-image: url("../assets/img/kel.jpg");
}
.corporate-tab-content.content-2 {
  background-image: url("../assets/img/isilanlari.jpg");
}

.corporate-slider {
  max-width: 592px;
}

.corporate-slider .swiper-slide {
  background-color: transparent;
}

.corporate-slider-wrapper {
  position: relative;
  max-width: 592px;
  background-color: #FFFFFFCC;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 44px 2px rgba(0, 0, 0, 0.5);
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 60px;
  overflow: visible;
}

.swiper.corporate-slider {
  height: auto;
}

.swiper-pagination.corporate-pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
  border: 2px solid #ffff;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.corporate-pagination {
  text-align: center;
  margin-top: 20px; 
}


.swiper-pagination.corporate-pagination .swiper-pagination-bullet {
  opacity: .5;
  background-color: transparent;
  position: relative;
  -webkit-transform: scale(.8);
  transform: scale(.8);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.swiper-pagination.corporate-pagination .swiper-pagination-bullet::before {
  background-color: #282828 !important;
  border-radius: 50%;
  height: 8px;
  width: 8px;

  position: absolute;
  content: '';
  height: 6px;
  width: 6px;
  background: rgba(255, 255, 255, .8);
  top: 50%;
  left: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.swiper-pagination.corporate-pagination .swiper-pagination-bullet-active::before {
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.corporate-slider-content {
  text-align: left;
  padding-bottom: 20px;
}

.corporate-slider-title {
  font-size: 21px;
  line-height: 1;
  font-family: "Inter";
  margin-bottom: 45px;
  color: #000;
  font-weight: 700;
}

.bg-gray {
  background-color: #f2f2f2;
}

.corporate-image-wrap img {
  display: inline-block;
  vertical-align: middle;
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}
.team-members-container {
  display: flex;
  flex-direction: column;
  gap: 50px; 
  align-items: center;
  padding-top: 50px;
}


.team-members-row-with-line {
  display: flex;
  justify-content: center;
  gap: 30px; 
  flex-wrap: wrap; 
}

.team-member-wrap {
  flex: 1 1 300px; 
  max-width: 336px;
}

.line-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-wrap img {
  height: 100%; 
}

.team-members-with-central-line .team-member-wrap {
  width: auto !important;
  max-width: none !important
}

.team-members-with-central-line {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.team-row {
  display: flex;
  justify-content: center;
  gap: 100px;
  width: 100%;
}

.team-member-wrap {
  flex: 1 1 336px; 
  max-width: 336px;
  text-align: center;
}

.central-line {
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate(-50%, -49%);
  z-index: 0;
  width: 103px;
  height: 110%;
}

.team-row.single {
  justify-content: flex-start;
}
.team-row.single .team-member-wrap {
  max-width: 546px !important;
}

.central-line img {
  width: auto;
  height: 100%;
}


.team-members-row-with-line {
  display: flex;
}
.team-members-row-with-line .team-member-wrap {
  flex: 1;
}

.team-members-container.senior .team-member-wrap:first-child {
  width: 44%;
  max-width: 44%;
}

.team-members-row {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.team-member-wrap {
  width: 300px; 
}
.team-member-wrap {
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 0px;
  overflow: visible;
  width: 350px;
  padding: 10px;
}
.team-member-image img {
  width: 100%;
  display: block;
  margin: 0 auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}
.team-member-name {
  color: #272727;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .05em;
  margin: 5px 0;
  text-transform: uppercase;
  font-family: "Roboto";
}
.team-member-position {
  color: #272727;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: .05em;
  margin: 5px 0 10px;
  text-transform: uppercase;
}
.team-member-text {
  font-family: "Inter";
  color: #272727;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 26px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.masonry-grid > .corporate-card:last-child {
  grid-column: 1 / -1;  
  justify-self: center;  
  max-width: 50%;       
}
@media (max-width: 768px) {
  .masonry-grid {
    grid-template-columns: 1fr;
  }
  .masonry-grid > .corporate-card:last-child {
    grid-column: 1 / -1;  
    justify-self: center;  
    max-width: 100%;       
  }
}

.corporate-card {
  display: block; 
  border-radius: 4px;
  padding: 25px;
  box-shadow: none;
  background: #fff;
}

.corporate-card .title {
  margin: 14px 0 12px 2px;
  font-weight: 700;
}

.corporate-card .desc-text {
  font-family: "Inter";
  font-size: 17px;
  font-weight: 300;
  color: rgb(97, 97, 97);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: calc(1.4em * 4);
  position: relative;
  overflow: hidden;
  line-height: 1.2em;
}

.corporate-card .read-more-inline {
  color: var(--primary-dark);
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .corporate-card .desc-text {
    font-size: 13px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    line-height: 1.2em;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: calc(1.4em * 4);
  }
  .corporate-card .read-more-inline {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, transparent, white 40%);
    padding-left: 6px;
  }
  .corporate-card .read-more-mobile {
    display: block;
    background-color: var(--primary-dark);
    color: #fff;
    font-size: 13px;
    text-align: center;
  }
}

.corporate-card .media-wrap {
  background-color: #F7F7F7;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0px 17px 0px 18px;
  border-radius: 4px 4px 4px 4px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  flex-shrink: 0;
}

#fullTextModal .modal-content {
  border-radius: 0 !important;
}
@media screen and (max-width: 768px) {
  #fullTextModal .modal-content {
    min-height: 60vh;
  }
  #fullTextModal .modal-body {
    padding-left: 0;
    padding-right: 0;
  }
  #fullTextModal .desc-text {
    font-size: 17px;
  }

}
#fullTextModal .title {
  margin-top: 0;
}
#fullTextModal .card.corporate-card {
  padding-top: 0;
}
#fullTextModal .modal-body {
  padding-top: 0;
}
.btn-close:focus {
  box-shadow: 0 0 0 0.25rem rgba(168, 14, 21, 0.25)
}

@keyframes foldAnimation {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}


.media-wrap-icon svg {
  width: 40px;
  height: 60px;
  fill: var(--primary-dark);
}
.test-card:hover .media-wrap-icon svg {
  fill: white;
}
.test-card:hover .media-wrap {
  background-color: var(--primary-dark);
}
.test-card-inner:hover .media-wrap svg {
  animation: foldAnimation ease 0.5s;
}
.test-card-inner {
  transition: all 0.5s ease;
}

.page-middle-banner {
  position: relative;
  margin: 30px 0;
  padding: 83px 0;
  display: flex;
}
.page-middle-banner:hover::before {
  filter: brightness( 63% ) contrast( 100% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );
}
.page-middle-banner-vision::before {
  background-image: url("../assets/img/Debriyaj.jpg");
}
.page-middle-banner-mission::before {
  background-image: url("../assets/img/Motor-min.jpg");
}
.page-middle-banner-career::before {
  background-image: url("https://byedek.thebold.com.tr/wp-content/uploads/2025/08/basvuru.jpg");
  background-size: 100%;
  filter: none !important;
  opacity: 1;
}
.page-middle-banner-career {
  height: 427px;
  opacity: 1;
}
.page-middle-banner-career:hover::before, .page-middle-banner-policy:hover::before {
  filter: none !important; 
}

.page-middle-banner-policy {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .page-middle-banner-policy {
    height: 600px;
  }
  .page-middle-banner-policy .banner-bg {
    height: 700px;
  }
} 


@media screen and (max-width: 769px) {
  .page-middle-banner-policy {
    height: auto;
  }
} 


@media screen and (min-width: 769px)  {
  .page-middle-banner-policy .banner-bg {
    left: 55%;
    width: 110%;    
  }
}

.page-middle-banner-policy .banner-bg {
  position: absolute;
  top: -50px;        
  left: 60%;
  width: 120%;      
  height: 700px;       
  transform: translateX(-50%) translateY(0);
  object-fit: cover;
  z-index: -1;
  transition: transform 0.1s linear;
}


@media screen and (min-width: 769px) {
  .page-middle-banner-policy::before {
    height: 455px;
  }
  .page-middle-banner.page-middle-banner-policy {
    height: 455px;
  }
  .content-holder-with-opacity {
    width: 50%;
  }
}

@media screen and (max-width: 769px) {
  .page-middle-banner-career::before {
    background-size: cover;
  }
}



.content-holder-with-opacity {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 30px;
  overflow: visible;
}
.content-holder-with-opacity::before {
  background-color: rgba(168, 14, 21, 0.70); 
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}
.content-holder-with-opacity-inner {
  z-index: 2;
}
.content-holder-with-opacity .title {
  font-family: "Inter";
  font-size: 29px;
  line-height: 56px;
  color: #FFFFFF;
}

.policy-list {
  padding: 0;
}
.policy-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.policy-list li .list-icon svg {
  fill: #FFFFFF;
  transition: fill 0.3s;
  width: 14px;
  height: 14px;
}
.policy-list li span {
  color: #FFFFFF;
  transition: color 0.3s;
  font-family: "Inter";
}

.page-middle-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  min-height: 280px;
  filter: brightness(73%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}
.page-middle-banner-title {
  color: #fff;
  font-family: "Inter";
  z-index: 1;
  position: relative;
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  font-family: Roboto;
}
.page-middle-banner-description {
  text-align: left;
  font-family: "Inter";
  color: #FFFFFF;
  z-index: 1;
  position: relative;
  font-size: 18px;
  font-weight: 300;
  font-family: Roboto;
}
.page-middle-banner.aligned-left h2 {
  font-size: 52px;
  font-weight: 700;
  font-family: "Inter";
  line-height: 1;
}
.page-middle-banner.aligned-left p {
  font-size: 18px;
  font-family: "Inter";
  color: #fff;
}

section.member-document-content {
  border-radius: 20px 20px 0px 0px;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
} 
section.member-document-content h2 {
  font-size: 28px;
  color: #000;
}
section.member-document-content p {
  font-size: 18px;
  color: #000;
  text-align: justify;
}

@media screen and (min-width: 769px) {
  section.member-document-content {
    min-height: 610px;
    margin-top: -27px;
  }
  section.member-document-content .left {
    padding-left: 90px;
    padding-top: 60px;
  }
  section.member-document-content .right {
    padding-top: 60px;
  }
}

.tab-icon {
  fill: #54595F;
  width: 37px;
  height: 37px;
  display: flex;
}
.brand-cards-container .card.brand-card {
  box-shadow: none;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DDD;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  box-sizing: border-box;
  margin: 0;
}
.brand-card img {
  display: block;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 95%;
  max-height: 90%;
  object-fit: contain;
  filter: grayscale(100%) contrast(.95) brightness(1.03);
  opacity: .9;
  transition: .25s;
}
.card.brand-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .brand-cards-container .col:nth-child(n+10) {
    display: none; 
  }
  .tab-content > .tab-pane:not(.active) {
    display: none;
  }
  .tab-pane.show {display: block !important;}
}





.card.news-card {
  box-shadow: none;
}
.card-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.card-image-wrapper img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.card.news-card:hover .card-image-wrapper img {
  transform: scale(1.1);
}


.card-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    rgba(0,0,0,0.2) 0%, 
    rgba(0,0,0,1.0) 100%  
  );
  z-index: 1;
  transition: all 0.7s ease;
}

.pre-blog-content {
  padding: 0;
  position: absolute;
  left: 45px;
  bottom: 44px;
  right: 50px;
  z-index: 1;
}
.pre-post-title {
  font-size: 16px;
  line-height: 19px;
  margin: 0px 0px -17px -24px;
}
.pre-post-title a {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  font-family: 'Roboto';
  color: white;
  text-decoration: none;
}
.pre-pointer-events {
  background-image: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 100%);
  color: #fff;
  display: inline;
  background-position: left 100%;
  background-size: 0px 2px;
  transition: 0.7s;
  background-repeat: no-repeat;
}
.pre-pointer-events:hover {
  background-size: 100% 2px;
}

@media screen and (min-width: 769px) {
  .swiper.swiper-hero .swiper-button-next {
    right: 40px;
  }
  .swiper.swiper-hero .swiper-button-prev {
    left: 40px;
  }
  
}


@media (max-width: 768px) {
  .swiper-hero .swiper-pagination {
    display: block;
    bottom: 20px; 
    text-align: center;
    justify-content: center;
  }
  .swiper-hero .swiper-button-next, .swiper-hero .swiper-button-prev {
    display: none !important;
  }
  .swiper-hero .slide-content {
    margin-bottom: 20vh;
  }
}

.swiper-hero .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #999999;
  background: -moz-linear-gradient(top, #999999 0%, #e1e1e1 100%);
  background: -webkit-linear-gradient(top, #999999 0%, #e1e1e1 100%);
  background: -o-linear-gradient(top, #999999 0%,#e1e1e1 100%);
  background: -ms-linear-gradient(top, #999999 0%,#e1e1e1 100%);
  background: linear-gradient(to bottom, #999999 0%, #e1e1e1 100%);
  filter: progid:dximagetransform.microsoft.gradient( startcolorstr='#999999', endcolorstr='#e1e1e1',gradienttype=0 );
  border: 3px solid #e5e5e5;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box;
  opacity: 1;
}
.swiper-hero .swiper-pagination-bullet-active {
  background: #666666;
}
.swiper-hero .swiper-pagination {
  bottom: 2% !important;
}

.swiper.swiper-hero {
  width: 100%;
  height: 100vh; 
}
.swiper.swiper-hero .swiper-slide {
  width: 100vw;
  height: 100vh; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper.swiper-hero .slide-bg {
  height: 100%;
  background-size: cover;
}
.swiper.swiper-hero .swiper-slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.swiper.swiper-hero .swiper-button-next, .swiper.swiper-hero .swiper-button-prev {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper.swiper-hero .swiper-button-next:hover, .swiper.swiper-hero .swiper-button-prev:hover {
  background: #000;
}

.swiper.swiper-hero {
  --swiper-navigation-size: 20px;
  --swiper-navigation-color: #fff;
  --swiper-theme-color: #fff;

}

.slide-content {
  position: absolute;
  z-index: 2;
  color: #fff;
  max-width: 80%;
  padding: 20px;
  bottom: 100px;
  text-align: left;
}
.swiper-hero .slide-content h1 {
  font-family: Inter;
  font-size: 42px;
  color: rgb(255, 255, 255);
  text-transform: capitalize;
  text-decoration: none;
  letter-spacing: 0px;
  line-height: 56px;
  text-align: left;
  white-space: normal;
  padding: 0px;
  width: 582px;
  pointer-events: none;
  background: transparent;
  font-weight: 900;
  -webkit-font-smoothing: antialiased!important;
  margin-bottom: 10px;
}

.swiper-hero .slide-content p {
  font-size: 16px;
  font-family: 'Inter';
  line-height: 19px;
  color: rgb(255, 255, 255);
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .slide-content p {
    font-family: Inter;
    font-size: 13px !important;
    font-weight: 400;
    color: rgb(255, 255, 255);
    text-transform: none;
    text-decoration: none;
    letter-spacing: 0px;
    line-height: 18px;
  }
}

.slide-content button {
  background-color: var(--primary-dark);
  font-family: 'Inter';
  padding: 5px 17px;
  font-size: 12px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  line-height: 33px;
  text-align: left;
  filter: brightness(100%);
  border-width: 0px;
  border-style: none;
  border-color: rgb(255, 255, 255);
  margin-top: 20px;
  opacity: 1;
  transform: translateX(-50px);
  transition: all 1.2s ease;
  -webkit-font-smoothing: antialiased !important;
}
.slide-content button.desktop-only {
  padding: 2px 23px;
}
.slide-content button:hover {
  filter: brightness(70%)
}
.slide-content button.mobile-only {
  padding: 0 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .slide-content {
    width: 582px;
    margin-left: 10%;
  }
}

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

.slide-content h1 {
  font-size: 2.5rem;
  margin: 0 0 10px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}
.slide-content p {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1.2s ease;
}
.slide-content.active h1,
.slide-content.active p, .slide-content.active button {
  opacity: 1;
  transform: translateX(0);
}

.hero {
  background-color: #fff;
  padding-bottom: 25px;
}

@media screen and (min-width: 769px) {
  .hero {
    padding-top: 20px;
  }
}

.hero-title {
  font-family: "Inter";
  font-size: 56px;
  font-weight: 900;
  line-height: 57px;
  color: var(--dark);
}

.hero-line {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-dark);
  line-height: 1;
}

.card.experience-card {
  padding: 54px 40px;
}
.card.experience-card.title {
  color: var(--dark);
}
.card.experience-card .subtitle {
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  section.section-companions {
    padding-top: 150px;
   /* min-height: 100vh; */
  }
}

section.section-companions {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
section.section-companions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/Is-Otak-Arkaplan-scaled.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  filter: brightness(73%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  z-index: -1;
}


@media screen and (min-width: 768px) {
  .hero-subtitle {
    margin-top: 10px;
  }
}



@media screen and (max-width: 767px) {
  .section-head h1.hero-subtitle {
    font-size: 30px;
    line-height: 1.3em;
    margin-top: 15px;
  }
  .swiper.service-swiper .service-desc {
    font-family: "Inter";
    font-size: 11px;
    line-height: 28px;
    font-weight: 400;
    color: #535a5e;
    text-align: left;
  }
  .swiper.service-swiper .service-title {
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
    color: #1F1F1F;
    text-align: left;
  }
  .section-head p.hero-description {
    font-size: 15px;
  }
  h3.page-banner-subtitle-centered {
    font-size: 25px;
    text-align: center;
  }
  h2.page-banner-title-centered {
    font-size: 19px;
    margin-top: 40px;
  }
  .page-banner-description {
    margin-top: 20px;
  }
  div.page-divider-container {
    display: none;
  }
  .nav-tabs button.nav-link {
    width: 100%;
    justify-content: center;
  }
}

.page-navigator {
  position: fixed;
  left: 0;
  z-index: 2;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-navigator-button {
  width: 200px;
  height: 50px;
  text-decoration: none;
  background-color: #A80E15;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  padding: 15px 32px;
  border-radius: 2px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  overflow: hidden;
  position: relative;
  display: inline-block;
  line-height: 28px;
  transition: all 0.5s ease;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  white-space: nowrap;
}
.page-navigator-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #8D0202;
  transition: all 0.5s ease;
  transform: translateX(-100%);
  border-radius: 2px;
  z-index: 0;
}
.page-navigator-button:hover::before {
  transform: translateX(0);
}
.page-navigator-button:hover em > * {
  transform: translateX(150%);
}
.page-navigator-button span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-navigator-button em {
  width: 25px;
  height: 25px;
  line-height: 25px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.page-navigator-button em > * {
  height: inherit;
  width: inherit;
  line-height: inherit;
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease 0s;
}

.page-navigator-button em > *:nth-child(2) {
  transform: translateX(-150%);
}
.page-navigator-button:hover em >*:nth-child(2) {
  transform: translateX(0%);
}

@media screen and (min-width: 768px) {
  .section-head {
    padding-bottom: 50px;
  }
}


.section-head .hero-title {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1;
}
.section-head .hero-subtitle {
  font-family: "Inter";
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: #FFFFFF;
}
.section-head.style-dark .hero-subtitle {
  color: #202020;
}
.section-head .hero-description {
  font-family: "Inter";
  font-size: 20px;
  color: #FFFFFF;
  margin-top: 25px;
  margin-bottom: 20px;
}
.section-head.style-dark .hero-description {
  color: #858585;
}
.section-footer .dropdown-cta a:hover {
  color: var(--primary-dark) !important;
}
.section-footer {
  margin-top: 25px;
}
.section-footer a {
  font-family: "Inter";
  font-size: 17px;
  font-weight: 600;
  fill: #FFFFFF;
  color: #FFFFFF;
}
.section-footer a:hover {
  color: var(--primary-dark)
}

.section-footer.style-dark a {
  font-family: "Inter";
  font-size: 17px;
  font-weight: 600;
  fill: #202020;
  color: #202020;
}
.section-footer.style-dark a:hover {
  color: var(--primary-dark)
}

#logo-search {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  box-shadow: none;
}
#logo-search::placeholder {
  opacity: 0.6;
}

.companion-card-sm {
  display: flex;
  align-items: center;
  justify-content: center;
}
.companion-card-sm-img img {
  max-width: 200px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain !important;
  filter: grayscale(100%) brightness(1.1) contrast(.9) !important;
  opacity: .85 !important;
  transition: transform .3s ease, filter .3s ease, opacity .3s ease !important;
  display: inline-block;
  vertical-align: middle;
}
.companion-card-sm-img img:hover {
  filter: none !important;
  opacity: 1 !important;
  transform: scale(1.05) !important;
}


.card.companion-card {
  background-color: #fff;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transition: all .5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .card.companion-card:hover span {
    color: #fff;
  }  
  .card.card.companion-card:hover svg {
    fill: #fff;
  }
}

.card.companion-card:hover .overlay {
  left: 0;
}
.card.companion-card .overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-dark);
  transition: all .5s ease;
}
.card.companion-card span {
  display: flex;
  align-items: center;
  z-index: 2;
  transition: all .5s ease;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.card.companion-card em {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  transition: all .5s ease;
}
.card.companion-card svg {
  transition: all .5s ease;
}

section.section-truck {
  background-image: url("../assets/img/alanw.jpg");
  background-size: cover;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  section.section-truck {
    height: 300px;
  }
  section.section-truck h1 {
    font-size: 25px;
    line-height: 1.2em;
  }
  section.section-truck p {
    font-size: 15px !important;
  }
}

@media screen and (min-width: 768px) {
  section.section-truck {
    min-height: 569px;
  }
}

#scrollUp {
  width: 42px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 40px;
  cursor: pointer;
  position: fixed;
  right: 40px;
  z-index: 10;
  background-color: var(--primary-dark);
  border-radius: 5px;
  color: white;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);

  opacity: 0;               
  pointer-events: none;    
  transition: opacity 0.3s ease;
}

#scrollUp.show {
  opacity: 1;
  pointer-events: auto;   
}

#navbar-close {
  width: 42px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 35px;
  cursor: pointer;
  position: fixed;
  right: 35px;
  z-index: 10;
  background-color: var(--primary-dark);
  border-radius: 5px;
  color: white;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}


.service-center-img {
  overflow: hidden;
}
.service-center-img img:hover {
  transform: scale(1.05);
}
.service-center-card:hover .service-center-holder {
  background-color: #54585e;
}
a.service-center-card {
  color: #1F1F1F;
  text-decoration: none;
}

.service-center-card:hover .service-center-holder .title span {
  color: #fff;
}
.service-center-card:hover .service-center-holder .read-more .btn-text {
  color: #fff;
}
.service-center-card:hover .service-center-holder .read-more .btn-icon {
  background-color: var(--primary-dark);
}
.service-center-holder .title a {
  color: #1F1F1F;
  text-decoration: none;
}
.serve-center-holder .read-more span {
  color: #e6e6e6;
}
.service-center-holder .btn-area {
  display: flex;
  justify-content: space-between;
}
.service-center-holder .btn-text {
  color: rgb(97, 97, 97);
  text-decoration: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-center-img img {
  width: 100%;
  max-width: 100%;
  transition: all 0.3s ease;
}
.service-center-holder {
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 30px;
  background-color: #FAFAFA;
  text-align: left;
}
.service-center-content-area {
  position: relative;
  z-index: 3;
}
.service-center-holder .title {
  transition: all 0.5s ease;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 15px;
  font-family: "Inter";
}

.page-divider-container {
  padding: 20px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-divider {
  border-color: var(--primary-dark);
  min-height: 60px;
  border-style: solid;
  border-width: 0px 4px 0px 0px;
}

section.page-companions {
  background-color: #F8F8F8;
}

@media screen and (min-width: 769px) {
  .contact-animated-card {
    width: 29%;
  }
  .contact-animated-card-inner {
    width: 80%;
  }
}



.contact-animated-card {
  display: flex;
  margin-bottom: -80px;
  padding: 50px;
  border-radius: 2px;
  z-index: 999;
  height: 460px;
  position: relative; 
  overflow: hidden; 
  transition: transform 0.3s ease-out;
}

.contact-animated-card::before {
  content: "";
  position: absolute;
  inset: 0; 
  background-image: url("../assets/img/15787923-scaled.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1; 
  border-radius: 2px;
}
.contact-animated-card .media_wrap {
  height: 26px;
}
.contact-animated-card .media_wrap svg {
  height: 40px;
}
.contact-animated-card-inner .title {
  margin: 29px 0px -4px 0px;
  color: #000000;
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  font-family: "Roboto";
  transition: 0.3s;
}
.contact-animated-card-inner .desc-text {
  margin: 0px 0px 20px 0px;
  color: #000000CC;
  font-size: 18px;
  transition: 0.3s;
}
.contact-animated-card .address-item {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 0;
}
.address-item a, .address-item span {
  color: #000;
  text-decoration: none;
  font-size: 17px;
  font-weight: 300;
}

.contact-form {
  border-top: 4px solid var(--primary-dark);
  border-radius: 4px;
  padding: 30px 60px;
  background-color: #F7F7F7;
  box-shadow: 0px 0px 0px 5px #FFFFFF;
}
.contact-form .form-btn-area input {
  padding: 13px 53px 13px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  border-radius: 2px 2px 2px 2px;
  background-color: var(--primary-dark);
  color: #fff;
  font-family: "Roboto";
}
.contact-form .form-btn-area-inner {
  display: inline-block;
  position: relative;
}
.contact-form .form-btn-area {
  padding-top: 30px;
  padding-bottom: 50px;
}
.contact-form .form-btn-area svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
  position: absolute;
  content: "";
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.contact-form-head {
  padding-bottom: 40px;
}
.contact-form-head .hero-title {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1;
}
.contact-form-head .hero-subtitle {
  font-family: "Inter";
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: #FFFFFF;
}

.contact-form input {
  height: 50px;
  display: block;
  padding: 10px 20px 10px 20px;
  border-radius: 2px 2px 2px 2px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #D2D2D2;
}
.customer-form input[type="text"], .customer-form input[type="tel"], .customer-form input[type="email"] {
  font-size: 16px;
  border-radius: 0;
  padding: 12px;
  height: auto;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaea !important;
  line-height: 21px;
  text-align: left;
  transition: all .2s linear;
  background-color: #fafafa;
}
.contact-form textarea {
  display: block;
  border-radius: 2px 2px 2px 2px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #D2D2D2;
}
.contact-form input::placeholder, .contact-form textarea::placeholder, .customer-form input::placeholder, .customer-form textarea::placeholder {
  opacity: 0.6;
}

.contact-form .form-submit:hover {
  background-color: #E30613;
}

.customer-form .form-group-title {
  font-family: "Inter";
  font-size: 17px;
  color: #1F1F1F;
  font-weight: 700;
  margin-bottom: 30px;
}

.customer-form .dropdown-toggle {
  border: 1px solid #eaeaea;
  padding: 12px;
  font-size: 16px;
  color: #000;
  background-color: #fafafa;
  line-height: 21px;
  text-align: left;
  transition: all .2s linear;
}
.dropdown-toggle span {
  opacity: 0.4;
}
.customer-form .dropdown-menu {
  background-color: #fafafa;
  border: 1px solid #eaeaea;
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
  max-height: 200px;
  overflow-y: scroll;
}
.customer-form .dropdown-menu li {
  background-color: #fafafa;
  border-bottom: 2px solid #eaeaea;
  border-radius: 0;
}
.customer-form .dropdown-menu li a:hover {
  background-color: #f1f1f1;
}
.customer-form .dropdown-menu li:last-child {
  border-bottom: 0;
}
.customer-form .dropdown-menu li a {
  border-radius: 0;
}

.customer-form .dropdown-icon {
  transition: transform 0.3s ease;
}

.customer-form .dropdown-toggle.show .dropdown-icon {
  transform: rotate(180deg);
}
.customer-form .dropdown-icon {
  opacity: 0.4;
}
.customer-form .dropdown-item:active {
  background-color: #fafafa;
  color: inherit;
}

.customer-form select.form-select {
  border: 1px solid #eaeaea;
  padding: 12px;
  font-size: 16px;
  color: #9f9f9f;
  background-color: #fafafa;
  line-height: 21px;
  text-align: left;
  transition: all .2s linear;
  border-radius: 0; 
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/*
.customer-form select.form-select:focus {
  box-shadow: none;
  border: 1px solid #eaeaea;
} */

.custom-checkbox {
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #747474;
  border-color: #747474;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.custom-checkbox {
  display: none;
}


.custom-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #000;
  cursor: pointer;
}

.check-icon {
  width: 18px;
  height: 18px;
  border: 2px solid #747474;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent; 
  transition: color 0.3s ease, background-color 0.3s ease;
}

.custom-checkbox:checked + .custom-label .check-icon {
  color: var(--primary-dark); 
  border-color: var(--primary-dark);
  background-color: #fff; 
  font-size: 12px;
  padding-left: 1px;
  padding-top: 1px;
}

.custom-checkbox:checked {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.checkbox-item.secondary .custom-checkbox:checked + .custom-label .check-icon {
  color: #4285F4;
  border-color: #4285F4;
}

.custom-label {
  font-size: 16px;
  color: #000;
  cursor: pointer;
}



.btn-submit {
  padding: 20px 50px 20px 50px;
  color: #FFFFFF;
  border-style: none;
  border-radius: 5px 5px 5px 5px !important;
  font-family: "Roboto";
  font-weight: 300;
  -webkit-box-shadow: 0 5px 5px 0 rgba(66, 133, 244, .3);
  box-shadow: 0 5px 5px 0 rgba(66, 133, 244, .3);
  line-height: 18px;
  font-size: 16px;
}


input[type=text], input[type=number], input[type=password] {
  color: #303030;
  width: 100%;
  max-width: 100%;
  opacity: 1;
}
input[type=text], input[type=number], input[type=email], input[type=url] {
  border: 1px solid #D2D2D2;
  margin-bottom: 30px;
  outline: none;
}
input[type=reset], input[type=submit] {
  color: #fff;
  padding: 17px 30px;
  font-size: 14px;
  text-transform: capitalize;
  outline: none;
  transition: all 0.5s ease;
  background: #1F1F1F;
  position: relative;
  border: none;
}

.page-banner-contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.page-banner-contact {
  padding: 50px 0 !important;
}

.page-banner-contact .social-list li a {
  background-color: #E4E1E1;
  width: 40px;
  height: 40px;
  border-radius: 2px 2px 2px 2px !important;
  padding: 0px 0px 0px 0px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
  transition: all 0.3s ease 0s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgb(97, 97, 97);
}

.map-area iframe {
  height: 800px;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  background: rgb(247, 247, 247);
  outline: none !important;
}

section.page-banner-contact::before {
  background-image: url("../assets/img/deneme-min.jpg") !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.page-banner-contact {
  height: 73vh !important;
}

section.page-banner {
  position: relative;   
  min-height: 480px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}

section.page-banner::before {
  content: ""; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/Lojistik_back.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1; 
  opacity: 1; 
}
section.page-banner-companions::before {
  background-image: url("../assets/img/Is-ortaklarislidere.jpg") !important;
}
section.page-banner-corporate::before {
  background-image: url("../assets/img/Arka_Plan_hakkimizda_.jpg") !important;
}
section.page-banner-products::before {
  background-image: url("../assets/img/arac_gruplari2.jpg") !important;
}
section.page-banner-engine::before {
  background-image: url("../assets/img/Motor-min.jpg") !important;
}
section.page-banner-brake::before {
  background-image: url("../assets/img/Fren.jpg") !important;
}
section.page-banner-bearing::before {
  background-image: url("../assets/img/On-Takim.jpg") !important;
}
section.page-banner-clutch::before {
  background-image: url("../assets/img/Debriyaj.jpg") !important;
}
section.page-banner-heating::before {
  background-image: url("../assets/img/Isitma-Sogutma.jpg") !important;
}
section.page-banner-rubber-wires::before {
  background-image: url("../assets/img/Kucuk-Teller.jpg") !important;
}
section.page-banner-electricity::before {
  background-image: url("../assets/img/Elektrik-Aydinlatma.jpg") !important;
}
section.page-banner-body-parts::before {
  background-image: url("../assets/img/Kaporta.jpg") !important;
}
section.page-banner-consumables::before {
  background-image: url("../assets/img/Sarf-Malzemeler.jpg") !important;
}
section.page-banner-news::before {
  background-image: url("https://byedek.thebold.com.tr/wp-content/uploads/2024/02/haberler2.jpg") !important;
}
section.page-banner-human-resources::before {
  background-image: url("../assets/img/kariyer.jpg") !important;
}
section.page-banner-download-center::before {
  background-image: url("https://byedek.thebold.com.tr/wp-content/uploads/2025/08/SertifikalarB-min.jpg") !important;
  filter: brightness(87%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

@media screen and (max-width: 769px) {
  .page-banner.page-banner-news .page-banner-subtitle-centered {
    font-size: 56px;
  }
  .entry-card .entry-title {
    font-size: 24px;
  }
}

.document-card-animated {
  width: 100%;
  height: 309px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.document-card-animated-inner {
  background-image: url("https://byedek.thebold.com.tr/wp-content/uploads/2025/08/logogorsel-min.jpg");
  background-repeat: no-repeat;
  background-size: 105% 105%;
  background-position: center center; /* başlangıç */
  width: 100%;
  height: 309px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* taşmaları gizle */
  transition: background-position 0.1s ease-out;
}

.document-card-animated-inner.certificate {
  background-image: url("https://byedek.thebold.com.tr/wp-content/uploads/2025/08/serifikagorsel-min.jpg");
}

.document-card-animated-inner h2 {
  font-size: 22px;
  line-height: 29px;
  color: #FFFFFF;
  font-family: "Inter";
  font-weight: 700;
  text-align: center;
}
.document-card-animated-inner h2 a {
  color: #fff;
  text-decoration: none;
}

section.human-resources {
  background-color: #F3F3F3;
}
section.human-resources.learning {
  min-height: 100vh;
}
@media screen and (min-width: 769px) {
  section.human-resources .section-content {
    padding-right: 100px;
  }
  section.human-resources .section-content-title {
    padding-bottom: 10px;
  }
  section.human-resources .section-content p {
    font-size: 18px;
    margin: 0 0 26px;
    font-family: "Inter";
    font-weight: 300;
    line-height: 31px;
  }
  section.recruitment-process .section-content-title {
    padding-right: 50px;
  }
}

.theme-button {
  background: #EA5501;
  background-color: var(--primary-dark);
  color: #FFFFFF;
  border-radius: 2px 2px 2px 2px;
  padding: 15px 38px 15px 38px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  display: inline-block;
  line-height: 28px;
  transition: all 0.5s ease;
  text-decoration: none;
}
.theme-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ff5c00;
  transition: all 0.5s ease;
  transform: translateX(-100%);
  border-radius: 2px;
  z-index: 0;
  background-color: #E30613;
}
.theme-button:hover::before {
  transform: translateX(0);
}
.theme-button:hover {
  color: #fff;
}
.theme-button:hover em > * {
  transform: translateX(150%);
}
.theme-button em > *:nth-child(2) {
  transform: translateX(-150%);
}
.theme-button:hover em > *:nth-child(2) {
  transform: translateX(0);
}
.theme-button em {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 18px;
  height: 18px;
  line-height: 20px;
  flex-shrink: 0;
  font-style: italic;
}
.theme-button em > * {
  height: inherit;
  width: inherit;
  line-height: inherit;
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease 0s;
}
.theme-button span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}


.content-holder-with-gradient.animate {
 /* opacity: 1;
  transform: translateX(0); */
}




@media screen and (min-width: 769px) {
  .content-holder-with-gradient {
   /* opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease; */
  }
  .content-holder-with-gradient {
    width: 608px;
    height: 327px;
  }
  .content-holder-with-gradient::before {
    width: 608px;
  }
}

@media screen and (max-width: 769px) {
  .content-holder-with-gradient {
    width: 100%;
    height: 287px;
  }
  .content-holder-with-gradient h2.title {
    font-size: 22px;
    line-height: 32px;
  }
}

.content-holder-with-gradient {
  display: flex;
  overflow: visible;
  position: relative;
}
.content-holder-with-gradient-inner {
  margin: 40px;
  z-index: 2;
}
.content-holder-with-gradient::before {
  content: "";
  background-color: transparent;
  background-image: linear-gradient(-90deg, #A30000AB 23%, #00000005 100%);
  transition: background-image 0.3s, border-radius 0.3s, opacity 0.3s;
  height: 100%;
  position: absolute;
  left: 0;
  width: 100%;
}
.content-holder-with-gradient .sub-text {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  color: #FFFFFF;
}
.content-holder-with-gradient .title {
  font-family: Inter;
  font-size: 42px;
  line-height: 52px;
  color: #FFFFFF;
  margin: 11px 0px 0px 0px !important;
  padding: 0px 0px 0px 0px !important;
}

[data-aos="slide-down"] {
  transform: translateY(-80px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="slide-down"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

.animated-content-wrapper {
  position: relative;
  z-index: 20; 
}


/*

@media screen and (min-width: 769px) {
  .animated-content-wrapper {
    opacity: 0;
    transform: translateY(-100%);
    position: relative;
    z-index: 10;
  }
}



.animated-content-wrapper.animate {
  animation: slideDown 1s ease forwards;
}

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.content-black-logo {
  width: 133px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
.content-group-logo {
  width: 189px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

section.recruitment-process, section.career-management {
  background-color: #fff;
}
section.human-resources .section-content-title {
  font-family: "Inter";
  font-size: 40px;
  line-height: 45px;
}

@media screen and (min-width: 769px) {
  section.human-resources .list {
    padding-right: 50px;
  }
}

section.human-resources .list {
  padding-left: 0;
}
section.human-resources .list li .list-icon svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  flex-shrink: 0;
  fill: #A80E15;
  transition: fill 0.3s;
}
section.human-resources .list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
section.human-resources .list li .list-icon {
  width: 24px;
  height: 24px;
  display: flex;
}
section.human-resources .list li .list-text {
  font-size: 18px;
}
.section-content-subtitle {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
section.learning .section-content-title {
  padding-right: 50px;
}

section.learning .list li {
  margin-bottom: 10px;
}

.content-image-wrapper img {
  border-radius: 20px 20px 20px 20px;
  height: auto;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}

.entry-title {
  font-family: "Inter";
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25em;
  letter-spacing: -0.72px;
}
.entry-title {
  text-decoration: none;
  font-family: "Inter";
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25em;
  letter-spacing: -0.72px;
  color: #222222;
}
.card.entry-card {
  padding: 0;
}
.card.entry-card:hover .entry-title {
  color: var(--primary-dark);
}
.card.entry-card:hover .entry-thumb img {
  -webkit-transform: scale(1.05) rotate(2deg);
  transform: scale(1.05) rotate(2deg);
  opacity: .8;
  transform: scale(1.05) !important;
}
.entry-card p {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5em;
}
.entry-header .entry-thumb::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all .4s ease .2s;
  transition: all .4s ease .2s;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  visibility: hidden;
}
.entry-thumb {
  padding: 0px 0px 0px 0px;
  position: relative;
  overflow: hidden;
  display: block;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
  border-radius: 8px 8px 8px 8px;
  margin: 0px 0px 10px 0px;
}
.entry-thumb img {
  display: block;
  max-width: 100%;
  transition: transform 0.4s ease !important;
  transform: none !important;
  height: 300px !important;
  object-fit: cover;
}
.entry-thumb::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  opacity: 1;
  visibility: visible;
}
.card.entry-card.large .entry-thumb img {
  height: auto;
  width: 100%;
}






.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.pagination {
  display: flex;
  gap: 10px;
  margin: 0 auto;
}
.pagination .page-numbers {
  padding: 12px 14px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  background-color: rgb(247, 248, 251);
  font-size: 16px;
  line-height: 21px;
  color: rgb(80, 82, 85);
}
.pagination .page-numbers.current {
  color: rgb(255, 255, 255);
  background-color: rgb(80, 82, 85);
}
.pagination .page-numbers:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(80, 82, 85);
}
.news-detail-title {
  font-size: 29px;
  color: #333333;
  font-family: "Inter";
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 26px;
}
.news-detail-content p {
  font-size: 18px;
  margin: 0 0 26px;
}


.news-detail-content .image-carousel-img img {
  height: auto !important;
}

@media screen and (min-width: 769px) {
  .news-detail-content .image-swiper-container {
    padding-bottom: 100px;
  }

}

@media screen and (max-width: 769px) {
  .news-detail-content .image-pagination {
    left: 44% !important;
  }
}

.news-detail-content {
  padding-bottom: 100px;
}

.sticky-news-container {
  position: sticky;
  top: 100px;
  overflow-y: scroll;
  max-height: calc(100vh - 120px);
  scrollbar-width: none;
}
.sticky-news-title {
  font-size: 18px;
  color: #333333;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 26px;
}
.sticky-news {
 /* position: fixed;
  right: 0; */
}
.sticky-news-card {
  margin-bottom: 40px;
}
.sticky-news-card:hover .sticky-news-card-title {
  color: var(--primary-dark);
}
.sticky-news-card:hover .sticky-news-card-thumb img {
  filter: brightness( 73% ) contrast( 100% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );
}
.sticky-news-card-title {
  font-family: "Roboto";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  color: #333333;
  font-weight: 700;
  line-height: 21px;
}
.sticky-news-card-title a {
  line-height: 21px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease 0s;
  font-size: 18px;
}
.sticky-news-card-thumb {
  padding-bottom: calc(0.66 * 100%);
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  cursor: pointer;
}
.sticky-news-card-thumb img {
  height: auto;
  left: calc(50% + 1px);
  position: absolute;
  top: calc(50% + 1px);
  transform: scale(1.01) translate(-50%, -50%);
  display: block;
  max-height: none;
  max-width: none;
  transition: filter .3s;
  height: 100%;
  width: auto;
}


section.products-detail {
  background-color: #F3F3F3;
}

section.page-banner .page-banner-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Roboto";
  color: white;
}
.page-banner-description {
  text-align: center;
  font-family: "Inter";
  color: #FFFFFF;
  font-size: 18px;
}
.page-banner-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.page-banner.page-banner-centered {
  align-items: center;
}
.page-banner-title-centered {
  font-size: 24px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  line-height: 1;
  font-family: "Inter";
  font-weight: 700;
  margin-bottom: 20px;
}
.page-banner-subtitle-centered {
  font-size: 56px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
}
section.page-banner .page-banner-subtitle {
  color: white;
  font-size: 14px;
}
.image-box-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}
.image-box-description {
  font-family: "Inter";
  font-size: 18px;
}

.flex-feature-item img {
  display: block !important;
  width: auto !important;
  max-width: 180px !important;
  max-height: 100px !important;
  object-fit: contain !important;
  filter: grayscale(100%) !important;
  opacity: .85 !important;
  transition: transform .25s ease, filter .25s ease, opacity .25s ease !important;
}
.flex-feature-item:hover img {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transform: scale(1.04) !important;
}

.flex-feature-item .logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .page-banner-subtitle-centered {
    font-size: 25px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
  }
  .page-banner-description {
    font-size: 18px;
  }
  .customer-form input[type="text"], .customer-form input[type="tel"], .customer-form input[type="email"] {
    margin-bottom: 10px;
  }
  .customer-form .dropdown {
    margin-bottom: 10px;
  }
  .contact-form textarea {
    margin-top: 20px;
  }
  .contact-form {
    padding-left: 30px;
    padding-right: 30px;
  }
  .map-area iframe {
    height: 500px;
  }
}

#contact-list {
  padding: 0;
}
.contact-list-item .connector {
  border-style: solid;
  border-color: #992C33;
  border-width: 1px;
  display: block;
  position: absolute;
  width: 0;
  margin: 0 auto;
  z-index: 1;
  height: 100%;
  top: .5em;
  font-size: 60px;
  left: 0;
  right: calc(100% - 60px);
  border-right: none !important;
}
.contact-list-item {
  display: flex;
  list-style: none;
  padding-bottom: calc(12px / 2);
  position: relative;
}
.contact-list-icon-box {
  z-index: 2;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.contact-list-icon-inner {
  background-color: #37368e;
  -webkit-transition: all .5s;
  transition: all .5s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex
}
.contact-list-icon {
  height: 38px;
  width: 38px;
  font-size: 26px;
  padding: 0px 1px 1px 1px;
  color: white;
  background-color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-list-content-box {
  margin-left: 30px;
}
.contact-list-content {
  text-decoration: none;
}
.contact-list-icon svg {
  fill: white;
  width: 1em;
  height: 1em;
}
.features-list {
  display: grid;
  gap: 20px; 
  grid-template-columns: repeat(5, 1fr); 
}

@media (max-width: 767px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr); 
  }

  .features-list > .feature-item:nth-child(5) {
    grid-column: span 1; 
  }
  .features-list {
    grid-auto-rows: auto;
  }
  .flex-feature-item img {
    max-width: 140px !important;
    max-height: 80px !important;
  }
  section.page-banner {
    /* min-height: 250px !important;*/
    min-height: 420px !important;
  }
  .page-navigator {
    top: 310px !important;
  }
}
.swiper.image-swiper {
  height: auto !important;
}
.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


p.lojistik-text {
  font-size: 18px;
}
h4 {
  font-size: 30px;
  color: #1F1F1F;
  margin: 0 0 26px;
  font-family: "Inter";
  padding: 0;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.service-card:hover .service-title-holder {
  transform: translate(0, -10px);
}

.swiper-pagination.services {
  position: static;
}
.swiper-pagination.services .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  display: inline-block;
  font-size: 0;
  line-height: unset;
  padding: unset;
  outline: none;
  border: 1px solid #C6C1C2;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  border-radius: 15px;
  background-color: transparent;
  opacity: 1;
}
.swiper-pagination.services .swiper-pagination-bullet:hover {
  background-color: #A80E15;
  border-color: #EA5501;
  opacity: 1;
}
.swiper-pagination.services .swiper-pagination-bullet-active {
  background-color: #A80E15;
  border-color: #EA5501;
}

.swiper.swiper-news {
  height: auto !important;
}

@media screen and (min-width: 768px) {
  .news-slider {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .card-image-wrapper::before {
    display: none;
  }
  .card-image-wrapper {
    min-height: 260px;
  }
}

.news-progress {
  width: 100%;
  height: 5px;
  background: #e0e0e0;
  margin-bottom: 15px;
  border-radius: 3px;
  overflow: hidden;
}

.news-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--primary-dark);
  transition: width 0.3s ease;
}

.news-slide-title {
  padding-top: 20px;
  max-width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  font-family: "Inter";
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #1F1F1F;
  text-align: center;
}
.news-slide-title a {
  text-decoration: none;
  font-family: "Inter";
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #1F1F1F;
}


.news-mobile-slider-container .swiper-button-prev, .news-mobile-slider-container .swiper-button-next {
  width: 35px;
  height: 35px;
  padding: 5px 5px 5px 5px;
  background-color: var(--primary-dark);
  color: rgba(237, 237, 237, .9);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 25px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.news-mobile-slider-container .swiper-button-next {
  right: -2.4%;
}
.news-mobile-slider-container .swiper-button-prev {
  left: -2.4%;
}

.swiper-pagination.services-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  display: inline-block;
  font-size: 0;
  line-height: unset;
  padding: unset;
  outline: none;
  border: 1px solid #C6C1C2;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  border-radius: 15px;
  background-color: transparent;
  opacity: 1;
}
.swiper-pagination.services-pagination .swiper-pagination-bullet-active {
  background-color: #A80E15;
  border-color: #EA5501;
}
.swiper-pagination.services-pagination .swiper-pagination-bullet:hover {
  background-color: #A80E15;
  border-color: #EA5501;
  opacity: 1;
}

.image-pagination {
  position: relative;
  z-index: 10;
  bottom: 30px;
  left: 50% !important;
}
.image-pagination .swiper-pagination-bullet {
  background-color: #000;
  width: 8px;
  height: 8px;
}

.service-title-holder {
  margin-left: 92px;
  margin-top: -83px;
  transition: all 0.3s ease;
  padding: 30px;
  background-color: #f7f7f7;
  border-radius: 15px;
  transform: translate(0);
}
.read-more .btn-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: 0.3s;
  border-width: 2px;
  font-family: "Inter";
}
.read-more a {
  color: rgb(97, 97, 97);
  text-decoration: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card .read-more div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card .service-title-holder {
  color: rgb(97, 97, 97);
  text-decoration: none;
}
.service-card {
  text-decoration: none;
}

.read-more .btn-icon {
  background-color: #e6e6e9;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  line-height: 28px;
}
.read-more .btn-icon:hover {
  background-color: var(--primary-dark);
}
.read-more .btn-icon:hover svg {
  fill: white;
}
.read-more .btn-icon svg {
  width: 12px;
  height: 10px;
  fill: rgb(97, 97, 97);
}
.service-img img {
  width: 100%;
  height: auto;
  display: block;
}
.service-card {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .service-title-holder {
    margin-top: -102px;
  }
}
.swiper.service-swiper img {
  height: 217px !important;
  padding-right: 30px;
}
.swiper-pagination.services-pagination {
  bottom: 13% !important;
}
.service-title {
  font-family: "Inter";
  font-size: 15px;
}
.circle-wrapper {
  display: flex;
  min-height: 800px;
  overflow: visible;
}
.circles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: row;
  overflow: visible;
  position: relative;
}
.circle-inner img {
  display: inline-block;
  vertical-align: middle;
  height: auto;
  max-width: 100%;
  transition-duration: .3s;
  transition-property: transform;
}
.main-circle {
  left: 40%;
  position: absolute;
}
.circle {
 /* position: absolute; */
}
.circle.circle-1 {
  left: 10px;
}
.circle.circle-2 .hover-box {
  height: 170px;
}
.circle.circle-2 .hover-box p {
  left: 0;
}
.circle.circle-3 {
  left: 5%;
  top: 300px;
  position: absolute;
}
.circle.circle-3 .hover-box {
  width: 219px;
  height: 140px;
}
.circle.circle-3 .hover-box p {
  left: 0%;
  width: 60%;
}
.circle.circle-4 {
  left: 23%;
  top: 180px;
  position: absolute;
}
.circle.circle-4 .hover-box {
  height: 170px;
}
.circle.circle-4 .hover-box p {
  left: 0;
  width: 60%;
}
.circle.circle-6 .hover-box p {
  left: 0;
  width: 60%;
}
.circle.circle-6 .hover-box-sm {
  height: 150px;
}
.circle.circle-6 .hover-box-p {
  left: 0;
  width: 60%; 
  height: 85%;
}


.circle.circle-12 .hover-box-sm {
  width: 180px;
  height: 150px;
}
.circle.circle-12 .hover-box-sm p {
  left: 0;
}

.circle.circle-15 .hover-box-sm {
  width: 180px;
  height: 150px;
}
.circle.circle-15 .hover-box-sm p {
  left: 0;
}

.circle.circle-11 .hover-box-sm {
  width: 180px;
  height: 150px;
}
.circle.circle-11 .hover-box-sm p {
  left: 0;
}

.circle.circle-7 .hover-box-sm {
  width: 180px;
  height: 150px;
}
.circle.circle-5 .hover-box-md p {
  left: 0;
}
.circle.circle-5 .hover-box-md  {
  height: 180px;
}

.circle.circle-14 .hover-box-md p {
  left: 0;
}
.circle.circle-14 .hover-box-md  {
  height: 180px;
}

.circle.circle-8 .hover-box-md p {
  left: 0;
}
.circle.circle-8 .hover-box-md  {
  height: 180px;
}

.circle.circle-9 .hover-box-md p {
  left: 0;
}
.circle.circle-9 .hover-box-md  {
  height: 180px;
}

.circle.circle-10 .hover-box-md p {
  left: 0;
}
.circle.circle-10 .hover-box-md  {
  height: 180px;
}

.circle.circle-7 .hover-box-sm p {
  left: 0;
}

.circle.circle-5 {
  left: 4.76%;
  top: 470px;
  position: absolute;
}

.circle.circle-6 {
  left: 24.49%;
  top: 350px;
  position: absolute;
}

.circle.circle-7 {
  left: 22.37%;
  top: 570px;
  position: absolute;
}

.circle.circle-8 {
  left: 38.65%;
  top: 580px;
  position: absolute;
}

.circle.circle-9 {
  left: 59.66%;
  top: 570px;
  position: absolute;
}

.circle.circle-10 {
  left: 58.62%;
  top: 380px;
  position: absolute;
}

.circle.circle-11 {
  left: 71.5%;
  top: 250px;
  position: absolute;
}

.circle.circle-12 {
  left: 74.9%;
  top: 520px;
  position: absolute;
}

.circle.circle-13 {
  left: 73.86%;
  top: -36px;
  position: absolute;
}

.circle.circle-14 {
  left: 86.75%;
  top: 200px;
  position: absolute;
}

.circle.circle-15 {
  left: 87.43%;
  top: 430px;
  position: absolute;
}


section.distribution-network {
  background-image: url("../assets/img/15787923-scaled.jpg");
}


.circle-inner {
  position: relative;
  overflow: hidden;
}

.circle-inner:hover img {
  transform: scale(1.1);
}
.main-circle .circle-inner:hover img {
  transform: none;
}

.hover-box {
  width: 220px;
  height: 260px;
  position: absolute;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease; 
  z-index: 2;
}
.hover-box p {
  transform: translate(0, 0);
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  margin: 0;
  bottom: 0;
  left: 11%;
  color: #000;
  background: #fff;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  padding: 5px;
  transform: translate(0, 100%);
  transition: 1s;
  border-radius: 5px;
  width: 80%;
  height: 35%;
  text-align: center;
  border-right: 2px solid #fff;
}
.hover-box.hover-box-md p {
  height: 53%;
}
.hover-box.hover-box-sm p {
  height: 85%;
}
.hover-box:hover {
  transform: scale(1.1);
  transition-duration: .3s;
  transition-property: transform;
}
.hover-box:hover p {
  transform: translate(0, 0);
}
.brand-items-container {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 1px; 
}




@media (max-width: 1025px) {
  .desktop-only {
    display: none;
  }
  .desktop-only-column {
    display: none;
  }

  .mobile-only.first-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .mobile-only.second-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .brand-item img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: flex;
    gap: 0;
    justify-content: center;
  }
  .desktop-only-column {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .desktop-only-column .footer-logo {
    margin-top: -16px;
  }
}


.brand-item {
  flex: 0 0 14%; 
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-item.second-item img {
  max-height: 75px !important;
}

.brand-logo-img {
  filter: grayscale(100%) brightness(90%);
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
  transform: scale(1);
  cursor: pointer;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: none;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}
.brand-item:hover .brand-logo-img {
  transform: scale(1.1); 
  filter: grayscale(0%) brightness(100%); 
}

@media (max-width: 768px) {
  .brand-item {
    flex: 0 0 30%; 
    margin-bottom: 10px;
  }
}

.brand-logo-img:hover {
  filter: none; 
  opacity: 1;
}







.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 363px;
  object-fit: cover;
}

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 363px;
  object-fit: cover;
}

.swiper.mySwiper2 img {
  border-radius: 34px;
}
.swiper.mySwiper2 p {
  max-width: 592px;
  margin: 0 auto;
  padding: 20px 0;
}

.swiper-button-wrapper {
  background-color: #fff;
  width: 99px;
  height: 99px;
}
.swiper.mySwiper2 .swiper-button-next {
  background: linear-gradient(76.84deg, #222222 11.31%, #241CC9 93.56%);
  width: 62px;
  height: 62px;
  border-radius: 100%;
  border: 10px solid #fff;
  right: 80px;
  top: 40%;
}
.swiper.mySwiper2 .swiper-button-prev {
  background: linear-gradient(76.84deg, #222222 11.31%, #241CC9 93.56%);
  width: 62px;
  height: 62px;
  border-radius: 100%;
  border: 10px solid #fff;
  left: 80px;
  top: 40%;
}
.swiper.mySwiper2 .swiper-button-next:after, .swiper.mySwiper2 .swiper-button-prev:after {
  font-size: 24px;
}
.swiper.mySwiper2 .swiper-slide img {
  width: 80%;
  margin: 0 auto;
}

.quote-text {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 30px;
  font-style: italic;
  line-height: 45px;
  color: #383838;
}


.video-container {
  position: relative;
  width: 100%;
  max-width: 810px;
  height: 430px;
  margin: 0 auto;
}
.video-container.with_bottom_margin {
  margin-bottom: -50px;
}
.video-container video {
  width: 100%;
}

.video-container .play-pause-btn {
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background: #811BCD75;
  display: flex;
  align-items: center;
  justify-content: center;
}


.navbar-toggler {
  background-color: #FFFFFFA6;
  width: 45px;
  border-radius: 3px;
  padding: 6px 8px 7px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler-icon.custom-toggler {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; 
  height: 12px;  
}

.navbar-toggler-icon.custom-toggler span {
  display: block;
  height: 1px;
  background-color: var(--primary-dark); 
  width: 100%;
}

.section-content-image img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}
.section-content-title {
  font-family: "Inter";
  line-height: 43px;
  font-size: 40px;
  color: #1f1f1f;
  font-weight: 700;
  margin-bottom: 20px;
}
.section-content p {
  margin-bottom: 30px;
}

.navbar-brand {
  max-height: 80px;
}

@media screen and (max-width: 767px) {
  .section-content-title {
    font-size: 25px;
  }
  .section-content p {
    font-size: 15px;
  }
  .section-content {
    padding-bottom: 20px;
  }
  .grid-feature-item {
    height: 150px;
  }
  .grid-feature-item .logo-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .grid-feature-item .logo-img img {
    width: 65%;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-image-wrapper {
    width: 333px;
    margin: 0 auto;
  }
  section {
    padding: 50px 0;
  }
}

@media screen and (min-width: 568) {
  .navbar-brand img {
    width: 225px;
  }
}

@media screen and (min-width: 1024px) {
  .cta-with-bg {
    height: 416px;
  }
}


.text-gray {
  color: #848199;
}


@media screen and (max-width: 767px) {
  ul.social-list {
    max-width: 80%;
    margin: 40px auto;
  }
}

.modal-content {
  box-shadow: 5px 4px 23px 0px #00000026;
  border: 0;
  border-radius: var(--rounded-lg);
}
footer .copyright {
  color: #616161;
  margin-top: 20px;
}
.footer-bottom-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}
.footer-bottom-links li {
  list-style: none;
}
.footer-bottom-links li a {
  text-decoration: none;
  color: #616161;
  transition: all 0.3s ease 0s;
  font-size: 14px;
}
.footer-bottom-links li a:hover {
  color: #1F1F1F;
}
.footer-center {
  display: flex;
  align-items: center;
}
.footer-center .row {
  display: flex;
  align-items: center;
}

.footer-brand-items-container {
  display: flex;
  align-items: center;
  align-self: auto;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
}

@media screen and (min-width: 769px) {
  .footer-brand-items-container {
    /* padding-right: 60px; */
    gap: 20px;
  }
  footer {
    padding-left: 100px;
    padding-right: 100px;
  }
}

/* footer .copyright-info {
  padding-left: 4%;
} */
.footer-logo-mobile-wrapper {
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

@media screen and (max-width: 1024px) {
  .footer-logo-mobile-wrapper {
   /* flex-direction: column !important;
    align-items: flex-start; */
  }

}


.footer-logo-mobile {
  width: 100px;
  height: 67px;
}
.footer-logo-mobile.group {
  width: 136px;
  height: 90px;
}

@media screen and (max-width: 767px) {
  .footer-brand-items-container {
    padding: 0 10px;
  }
  .footer-brand-items-container img {
    width: 100%;
    height: 45px !important;
  }
}
.footer-brand-items-container img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

.footer-logo {
  width: 189px;
  height: 126px;
}
.footer-title {
  font-size: 24px;
  font-weight: 500;
  color: #2A2A2A;
  margin-bottom: 25px;
}

footer {
  color: var(--text-dark);
}
footer p {
  font-size: 14px;
}
.footer-list li a {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 300;
  line-height: 37px;
  color: var(--text-dark);
  text-decoration: none;
}
.footer-list li a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

footer h2 {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  color: #2A2A2A;
  margin-bottom: 0;
  text-decoration: none;
}
footer .social-list li {
  width: 42px;
  height: 42px;
  background-color: #747779;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10%;
}
footer .social-list li a i {
  color: white;
}
footer .social-list li:hover {
  opacity: .9;
}

@media screen and (max-width: 767px) {
  footer .social-list {
    justify-content: space-around;
  }
}

@media screen and (min-width: 769px) {
  .card.experience-card {
    margin: 0 15px;
  }
}

/* Helpers */
.container-fluid {
  max-width: 1224px;
}
.container-sm {
  max-width: 904px;
}
.rounded-lg {
  border-radius: var(--rounded-lg);
}
.rounded-md {
  border-radius: var(--rounded-md);
}
.w-90 {
  width: 90%;
}


