@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #1f2b51;
  --primary-100: white;
  --primary-300: #a3a6ab;
  --primary-400: #6eb346;
  --primary-900: black;
  --white-text: white;
  --black-text: black;
}

/* GENERAL CSS START */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

ol,
ul {
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none !important;
  font-size: 16px;
  transition: all 0.3s ease;
}

li {
  list-style: none;
}

section {
  padding: 60px 0;
  scroll-margin-top: 120px;
}

@media (max-width: 992px) {
  section {
    scroll-margin-top: 180px;
  }
}

.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .section-title {
    text-align: center;
    font-size: 24px;
  }
}

/* GENERAL CSS END */

/* CONTENT WRAPPER START */

.content-wrapper {
  padding: 20px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 40px !important;
  margin-bottom: 20px !important;
}

.content-wrapper ul li,
.content-wrapper ol li {
  list-style: disc;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
  position: relative;
}

.content-wrapper p + h2,
.contnet-wrapper p + h3,
.content-wrapper p + h4,
.content-wrapper p + h5,
.content-wrapper p + h6 {
  margin-bottom: 20px;
}

.content-wrapper img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  height: auto;
  margin: 20px 0;
}

/* CONTENT WRAPPER END */

/* HEADER START */

header {
  transition: background-color 0.4s ease, padding 0.4s ease,
    box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

header.scrolled .desktop-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  background-color: rgba(31, 43, 81, 0.85);
  /* hafif transparan koyu arka plan */
  backdrop-filter: blur(10px);
  /* zarif cam efekti */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.desktop-header {
  width: 100%;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 5;
}

.desktop-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-wrapper nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-wrapper nav ul li a {
  color: var(--white-text);
}

.desktop-wrapper nav ul li a:hover {
  opacity: 0.7;
}

.desktop-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.desktop-right a {
  color: var(--white-text);
}

.desktop-right a:hover {
  color: var(--white-text);
  opacity: 0.7;
}

.desktop-right .desktop-menu {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.desktop-right .desktop-menu:hover {
  background-color: var(--primary-400);
}

.desktop-right .desktop-menu i {
  color: var(--primary-100);
}

.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 40%;
  height: 100vh;
  background-color: #3c3c3c;
  color: white;
  padding: 80px;
  transition: right 0.4s ease;
  z-index: 12;
}

@media (max-width: 1200px) {
  .side-menu {
    width: 55%;
  }
}

.menu-title {
  font-size: 50px;
}

.side-menu ul li {
  margin: 20px 0;
  color: #bababa;
}

.side-menu ul li a {
  color: #bababa;
  transition: 0.3s;
}

.side-menu.active {
  right: 0;
}

.desktop-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 11;
}

.desktop-overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.close-btn i {
  font-size: 32px;
}

.menu-slogan {
  margin-bottom: 30px;
}

.menu-slogan span {
  font-size: 50px;
  font-weight: bold;
}

.menu-slogan .menu-slogan-top {
  display: flex;
  gap: 15px;
}

.menu-slogan .menu-slogan-top .green-text {
  background: linear-gradient(0deg, #fff, #a8d58a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.side-menu .menu-link {
  color: #bababa;
  position: relative;
}

.side-menu .menu-link::after {
  content: "";
  position: absolute;
  left: 125px;
  width: 100%;
  border-radius: 30px;
  height: 2px;
  background: #bababa;
  top: 50%;
  transform: translateY(-50%);
}

/* MOBILE HEADER START */

@media (min-width: 992px) {
  .mobile-header {
    display: none;
  }
}

@media (max-width: 992px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: block;
  }
}

/* MOBILE HEADER START */

.mobile-header .logo img {
  width: 180px;
}

@media (min-width: 992px) {
  .mobile-header {
    display: none;
  }
}

@media (max-width: 992px) {
  .desktop-header {
    display: none;
  }
}

.mobile-header {
  transition: all 0.3s ease;
  padding: 0 10px;
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.mobile-top {
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger {
  display: block;
  cursor: pointer;
  position: relative;
  right: 0;
}

.hamburger::after {
  content: "MENÜ";
  position: absolute;
  left: -55px;
  top: 50%;
  color: var(--primary-400);
  transform: translateY(-50%);
  z-index: 13;
}

.hamburger.active::after {
  content: "KAPAT";
  color: var(--white-text);
}

.hamburger .bar {
  display: block;
  margin: 5px 0;
  height: 3px;
  width: 30px;
  border-radius: 10px;
  background-color: var(--primary-400);
  transition: all 0.3s ease;
  margin-left: auto;
  position: relative;
  z-index: 13;
}

@media (min-width: 430px) {
  .hamburger.active .bar {
    background-color: white;
  }
}

@media (max-width: 500px) {
  .hamburger.active::after {
    display: none;
  }

  .hamburger.active .bar {
    display: none;
  }
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100vh;
  z-index: 12;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

  /* Lacivert → Beyaz geçişli arka plan */
  background: linear-gradient(
      to bottom,
      rgba(31, 43, 81, 1) 0%,
      rgba(31, 43, 81, 0.85) 40%,
      rgba(255, 255, 255, 1) 100%
    ),
    white;
}

.header-wrapper.active {
  left: 0;
}

@media (max-width: 768px) {
  .header-wrapper {
    width: 75%;
  }
}

@media (max-width: 430px) {
  .header-wrapper {
    width: 90%;
  }
}

.header-wrapper nav ul li a {
  display: block;
  color: var(--white-text);
  padding: 10px 25px;
  border-bottom: 1px solid var(--primary-100);
}

.overlay {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.9) !important;
  z-index: 3;
  display: none;
  pointer-events: none;
  bottom: 0;
}

.overlay.active {
  display: block;
  pointer-events: all;
}

/* MOBILE HEADER END */

/* HEADER END */

/* HERO START */

.hero {
  padding: 0;
}

.hero-image {
  position: relative;
}

@media (min-width: 992px) {
  .hero-mobil-image {
    display: none;
  }
}

@media (max-width: 992px) {
  .hero-desktop-image {
    display: none;
  }

  .hero-mobil-image {
    display: block;
    width: 100%;
  }
}

.hero-image::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
}

.hero-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    var(--primary-color),
    rgba(0, 0, 128, 0) 100%
  );
  z-index: 2;
}

.hero .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 50px);
}

@media (max-width: 992px) {
  .hero .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0px);
  }
}

.hero .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 50px);
}

@media (max-width: 992px) {
  .hero .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px);
  }
}

.hero .swiper-button-next,
.swiper-rtl .swiper-button-prev img {
  width: 120px;
}

.hero .swiper-button-prev,
.swiper-rtl .swiper-button-next img {
  width: 120px;
}

@media (max-width: 992px) {
  .hero .swiper-button-next,
  .swiper-rtl .swiper-button-prev img {
    width: 65px;
  }

  .hero .swiper-button-prev,
  .swiper-rtl .swiper-button-next img {
    width: 65px;
  }
}

.hero .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "";
}

.hero .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  z-index: 4;
}

@media (max-width: 1200px) {
  .hero-content {
    top: 55%;
  }
}

.hero-content .hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

@media (max-width: 1200px) {
  .hero-content .hero-title {
    margin-bottom: 0px;
  }
}

.hero-content .hero-title span {
  text-transform: uppercase;
  font-weight: 200;
  font-size: 42px;
  color: var(--white-text);
}

@media (max-width: 992px) {
  .hero-content .hero-title span {
    font-size: 32px;
  }
}

.hero-content .hero-btn {
  background: none;
  border: none;
  font-size: 27px;
  color: var(--white-text);
  font-weight: bold;
}

@media (max-width: 992px) {
  .hero-content .hero-btn {
    font-size: 22px;
  }
}

/* HERO END */

/* BRANDS SECTION START */

.brands {
  padding: 0;
  background-color: var(--primary-color);
  position: relative;
  margin-top: -5px;
}

.brands .brands-top {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@media (max-width: 992px) {
  .brands .brands-top {
    padding: 15px;
    position: static;
    transform: translateX(0);
  }
}

.brands .section-title {
  text-align: center;
  color: var(--white-text);
  font-weight: 300;
}

.brands .section-desc {
  text-align: center;
  color: var(--white-text);
  font-weight: 200;
}

.brands-container {
  display: flex;
}

.brands-box {
  position: relative;
  padding: 100px 0;
  width: 100%;
}

.brands-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #1f2b51ca 100%, transparent 0%),
    var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.brands-box:hover::before {
  opacity: 1;
}

@media (max-width: 992px) {
  .brands-box::before {
    opacity: 1;
  }
}

.brands-box .left-content,
.brands-box .right-content {
  position: relative;
  z-index: 1;
  width: 55%;
  color: var(--white-text);
}

@media (max-width: 992px) {
  .brands-box .left-content,
  .brands-box .right-content {
    width: 100%;
  }
}

.brands-box .left-content {
  left: 35%;
  top: 60px;
  transition: all 0.3s ease;
}

@media (max-width: 1550px) {
  .brands-box .left-content {
    left: 30%;
  }
}
@media (max-width: 1400px) {
  .brands-box .left-content {
    left: 23%;
  }
}

@media (max-width: 1200px) {
  .brands-box .left-content {
    left: 20%;
  }
}

@media (max-width: 992px) {
  .brands-box .left-content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.brands-box .right-content {
  left: 170px;
  top: 60px;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .brands-box .right-content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.brands-container .brands-box .left-line {
  position: absolute;
  top: 100px;
  right: 30px;
  z-index: 2;
}

@media (max-width: 992px) {
  .brands-container .brands-box .left-line {
    display: none;
  }
}

.brands-container .brands-box .right-line {
  position: absolute;
  top: 100px;
  left: 30px;
  z-index: 2;
}

@media (max-width: 992px) {
  .brands-container .brands-box .right-line {
    display: none;
  }
}

.logo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .logo-image {
    align-items: center;
    justify-content: center;
  }
}

.logo-image img {
  max-width: 160px;
}

.logo-image i {
  border: 1px solid var(--primary-100);
  transform: translateX(90px);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .logo-image i {
    display: none;
  }
}

.brands-box-desc {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid var(--primary-100);
}

@media (max-width: 992px) {
  .brands-box-desc {
    display: none;
  }
}

/* BRANDS SECTION END */

/* ABOUT SECTION START */

.about {
  padding: 100px 0;
  background-repeat: no-repeat;
}

@media (max-width: 992px) {
  .about {
    padding: 60px 0;
  }
}

.about-left {
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (max-width: 992px) {
  .about-left {
    border-bottom: 1px solid var(--primary-900);
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}

.about-left::before {
  content: "";
  position: absolute;
  left: -60%;
  bottom: -15px;
  width: 100%;
  height: 1px;
  background-color: var(--primary-900);
}

@media (max-width: 992px) {
  .about-left::before {
    display: none;
  }
}

.about-left span {
  font-size: 36px;
}

@media (max-width: 992px) {
  .about-left span {
    font-size: 24px;
  }
}

.about-right .title {
  display: flex;
  flex-direction: column;
}

.about-right .title span:nth-child(1) {
  color: var(--primary-400);
  font-size: 24px;
}

.about-right .title span:nth-child(2) {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 48px;
}

@media (max-width: 992px) {
  .about-right .title span:nth-child(2) {
    font-size: 32px;
  }
}

/* ABOUT SECTION END */

/* EXPERIENCE SECTION START */

.experience-banner {
  padding: 60px 0 300px 0;
  text-align: center;
  font-size: 36px;
  color: var(--white-text);
  background-repeat: no-repeat !important;
}

@media (max-width: 992px) {
  .experience-banner {
    padding: 60px 0;
  }
}

.experience-wrapper {
  position: relative;
  top: -120px;
  z-index: 2;
}

@media (max-width: 992px) {
  .experience-wrapper {
    position: static;
    top: 0;
  }
}

.experience-box {
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--primary-100);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 95%;
}

@media (max-width: 992px) {
  .experience-box {
    padding: 15px 30px;
    margin-bottom: 15px;
  }
}

.experience-box .circle {
  display: inline-block;
  padding: 5px;
  border-radius: 50%;
  background-color: var(--primary-400);
}

.experience-box .number {
  font-size: 46px;
  font-weight: 500;
}

.experience-box .experience-icon {
  width: 80px;
  height: 80px;
  border: 1px solid var(--primary-color);
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.experience-box .experience-icon img {
  max-width: 50px;
  height: 50px;
}

/* EXPERIENCE SECTION END */

/* MAP SECTION START */

.maps {
  padding: 0;
  position: relative;
  top: -240px;
  margin-bottom: -180px;
}

@media (max-width: 992px) {
  .maps {
    position: static;
    top: 0;
    margin-bottom: 0;
    padding: 60px 0;
  }
}

.maps .container {
  position: relative;
}

.map-item {
  position: relative;
}

.map-item img {
  width: 100%;
}

.map-content {
  width: 100%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-content span {
  color: var(--primary-400);
}

.map-content span:nth-child(1) {
  font-size: 60px;
  font-weight: bold;
}

.map-content span:nth-child(2) {
  font-size: 27px;
  font-weight: 300;
}

@media (max-width: 992px) {
  .map-content span:nth-child(1) {
    font-size: 16px;
  }

  .map-content span:nth-child(2) {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .mapSlider {
    padding-bottom: 40px !important;
  }
}

.maps .swiper-button-next:after {
  font-size: 27px;
  color: var(--primary-color);
}

.maps .swiper-button-prev:after {
  font-size: 27px;
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .maps .swiper-button-next {
    display: none;
  }

  .maps .swiper-button-prev {
    display: none;
  }

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

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

.maps .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -25px);
}

.maps .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -25px);
}

.maps .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 35px);
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 50px)
  ) !important;
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  ) !important;
  border-radius: var(--swiper-pagination-bullet-border-radius, 5px) !important;
  background: var(--primary-color) !important;
}

/* MAP SECTION END */

/* SERVICES SECTION START */

.services {
  background-color: #f6f6f6;
  padding: 60px 0;
}

.services .container {
  position: relative;
}

.servicesSlider {
  padding-bottom: 60px !important;
}

.services .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -35px);
  right: auto;
}

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

@media (max-width: 992px) {
  .services .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    display: none;
  }

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

.services .swiper-button-next:after {
  font-size: 27px;
  color: var(--primary-color);
}

.services .swiper-button-prev:after {
  font-size: 27px;
  color: var(--primary-color);
}

.services .section-title {
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.services-right {
  position: relative;
  z-index: 2;
  left: -165px;
}

@media (max-width: 992px) {
  .services-right {
    left: 0;
  }
}

.services-box {
  position: relative;
  background: var(--primary-100);
  padding: 50px 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 125%;
}

@media (max-width: 992px) {
  .services-box {
    padding: 30px;
    width: 100%;
  }
}

.services-box::after {
  content: "";
  position: absolute;
  left: -8px;
  height: 90%;
  top: 50%;
  width: 16px;
  transform: translateY(-50%);
  background-color: var(--primary-400);
  z-index: -1;
}

.services-box .title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.services-box .desc {
  font-size: 20px;
  font-weight: 300;
}

.services-image {
  position: relative;
}

.services-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* SERVICES SECTION END */

/* BANNER SECTION START */

.banner {
  padding: 0;
  position: relative;
}

.banner-image {
  position: relative;
}

.banner-image img {
  width: 100%;
}

@media (max-width: 1150px) {
  .banner-image img {
    height: 500px;
    object-fit: cover;
  }
}

.banner-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #1f2b51ca 100%, transparent 0%);
}

.absolute-left {
  position: absolute;
  top: 30px;
  left: 20%;
  z-index: 2;
  width: 100px !important;
}

.absolute-right {
  position: absolute;
  bottom: 30px;
  right: 15%;
  z-index: 2;
  width: 100px !important;
}

.banner-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.banner-slogan {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: 300;
  color: var(--white-text);
  text-align: center;
}

@media (max-width: 1150px) {
  .banner-slogan {
    font-size: 32px;
  }
}

/* BANNER SECTION END */

/* FOOTER START */

footer {
  padding: 60px 0 200px 0;
  position: relative;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 992px) {
  footer {
    overflow-x: hidden;
    padding: 60px 15px 0 15px;
  }
}

.footer-top {
  display: flex;
  margin-bottom: 200px;
}

@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    margin-bottom: 60px;
  }
}

.footer-menu {
  display: flex;
  gap: 100px;
  margin-left: 100px;
}

@media (max-width: 992px) {
  .footer-menu {
    gap: 30px;
    margin-left: 0;
  }
}

@media (max-width: 450px) {
  .footer-menu {
    flex-direction: column;
  }
}

.footer-col .title {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-col .footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col .footer-list li a {
  color: gray;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

.footer-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  width: 75%;
  z-index: -1;
  top: -30px;
  height: 1px;
  background-color: var(--primary-color);
}

@media (max-width: 992px) {
  .footer-bottom::after {
    width: 100%;
  }
}

.footer-bottom-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

@media (max-width:450px) {
  .footer-bottom-top {
    gap: 15px;
  }
}

.footer-deep {
  position: absolute;
  bottom: 30px;
}

@media (max-width:992px) {
  .footer-deep {
    position: static;
  }
}

.footer-contact {
  color: gray;
}

.footer-contact i {
  color: var(--primary-color);
}

.absolute-tick {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (min-width: 1920px) {
  .absolute-tick {
    width: 30%;
  }
}

@media (max-width: 992px) {
  .absolute-tick {
    position: static;
    width: auto;
  }
}

/* FOOTER END */

/* BREADCRUMB START */

.breadcrumb-container {
  background-color: var(--primary-color);
  text-align: center;
  padding: 120px 0 60px 0;
}

@media (max-width: 992px) {
  .breadcrumb-container {
    padding: 30px 0;
  }
}

.breadcrumb-container h1 {
  color: var(--white-text);
  margin-bottom: 15px;
}

.breadcrumb-container .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.breadcrumb-container .links li {
  position: relative;
  color: var(--white-text);
}

.breadcrumb-container .links li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.breadcrumb-container .links li a {
  color: var(--white-text);
}

/* BREADCRUMB END */

/* CONTACT PAGE START */

.contact-page {
  padding: 60px 0 0 0;
}

@media (max-width: 992px) {
  .contact-page-left {
    margin-bottom: 30px;
  }
}

.contact-page-left .title,
.contact-page-right .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .contact-page-left .title,
  .contact-page-right .title {
    font-size: 22px;
  }
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid var(--primary-300);
}

.contact-form .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-form .btn-wrapper .recaptha {
  margin-bottom: 30px;
}

.contact-form .btn-wrapper button {
  padding: 15px 60px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white-text);
}

@media (max-width: 578px) {
  .contact-form .btn-wrapper {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form .btn-wrapper button {
    width: 100%;
    padding: 15px 0;
  }
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 30px;
  color: var(--black-text);
  width: 100%;
  margin-bottom: 15px;
}

.contact-box:hover {
  color: var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contact-box i {
  font-size: 32px;
  color: var(--primary-400);
}

.contact-box-info {
  display: flex;
  flex-direction: column;
}

.contact-box-info .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}

.map .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .map .title {
    font-size: 22px;
  }
}

/* CONTACT PAGE END */

/* FOOTER STICKY MENU START */

.footer-sticky {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: black;
  position: fixed;
  z-index: 4;
  width: 100%;
  bottom: 0;
  padding: 0 0.5rem 1.15rem 0.5rem;
  border-top-left-radius: 2.15rem;
  border-top-right-radius: 2.15rem;
  border-top: 6px solid var(--primary-400);
}

@media (max-width: 992px) {
  .footer-sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer-sticky .sticky-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.footer-sticky .sticky-box .icon {
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}

.footer-sticky .sticky-box .text {
  font-size: 14px;
  color: white;
  text-align: center;
}

@media (max-width: 568px) {
  .footer-sticky .sticky-box .text {
    font-size: 10px;
  }
}

.footer-sticky .top-box .icon::before {
  content: "";
  position: absolute;
  height: 66px;
  width: 66px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
  content: "";
  position: absolute;
  height: 56px;
  width: 56px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box {
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem);
}

.footer-sticky .top-box .text {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  text-align: center;
}

.footer-sticky .top-box .icon {
  background: var(--primary-900);
  border-radius: 50%;
  position: relative;
}

/* FOOTER STICKY BUTTON END */

/* ERROR PAGE START */

.error-page-breadcrumb {
  padding: 0;
}

.error-page-breadcrumb .links {
  display: none;
}

@media (max-width: 992px) {
  .error-left {
    margin-bottom: 30px;
  }
}

.error-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}

.error-right .title {
  font-size: 32px;
  font-weight: bold;
}

.error-right .home-link {
  padding: 15px 60px;
  border-radius: 30px;
  background-color: var(--primary-color);
  color: var(--white-text);
}
/* ERROR PAGE END */


/* BRANDS PAGE START */

.brands-page {
  padding: 0;
}


/* BRANDS PAGE END */