:root {
  --background: #ffffff;
  --foreground: #171717;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--foreground);
  background: white;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}


.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}


@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}


@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.service_section03 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 991px) {
  .service_section03 {
    grid-template-columns: 1fr;
  }
}

.service_left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width:575px) {
  .service_left {
    grid-template-columns: 1fr;
  }
}

/* banner section */
/* =========================
   Banner Base
========================= */
.side_padding {
  padding: 10px;
}

.side_padding p {
  color: #fff;
}

.side_padding.side_padding_white p {
  color: #000;

}

@media (max-width:575px) {
  .side_padding img {
    width: 100%;
  }
}

#banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

@media (max-width:575px) {
  #banner {
    height: 350px;
  }
}

#banner .swiper {
  width: 100%;
  height: 100%;
}

#banner .swiper-wrapper {
  height: 100%;
}

#banner .swiper-slide {
  height: 100%;
  position: relative;
}

/* =========================
   Image Fix
========================= */

#banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   Caption
========================= */

.banner_caption {
  position: absolute;
  /* top: 50%; */
  top: 35% !important;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 20;
}

.banner_caption h2 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner_caption h3 {
  font-size: 30px;
}

/* =========================
   Navigation Arrows
========================= */

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  width: 50px;
  height: 50px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 24px;
  font-weight: bold;
}

/* Hover Effect */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.1);
}

/* =========================
   Pagination Dots
========================= */

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #00aaff;
}

/* =========================
   Optional Overlay
========================= */

#banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
}