@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&display=swap');
@import url("../fonts/fontawesome6/css/fontawesome.css");
@import url("../fonts/fontawesome6/css/brands.css");
@import url("../fonts/fontawesome6/css/solid.css");

* {
  --body-font: "Manrope", Helvetica, Arial, sans-serif;
  --body-font-size: 16px;
  --body-font-color: #8a8a8a;
  --body-font-color-dark: rgba(255, 255, 255, .65);
  --body-font-weight: 400;
  --heading-font: "Oxanium", Helvetica, Arial, sans-serif;
  --heading-font-weight: 500;
  --heading-font-color: #002060;
  --heading-text-transform: none;
  --h1-font-size: 60px;
  --h1-font-weight: var(--heading-font-weight);
  --h1-letter-spacing: -0.02em;
  --h1-line-height: 1.15em;
  --h1-margin-bottom: 20px;
  --h2-font-size: 48px;
  --h2-font-weight: var(--heading-font-weight);
  --h2-letter-spacing: -0.015em;
  --h2-line-height: 1.2em;
  --h2-margin-bottom: 15px;
  --h3-font-size: 26px;
  --h3-font-weight: 600;
  --h3-letter-spacing: 0;
  --h3-line-height: 1.5em;
  --h3-margin-bottom: 10px;
  --h4-font-size: 20px;
  --h4-font-weight: 600;
  --h4-letter-spacing: 0;
  --h4-line-height: 1.6em;
  --h4-margin-bottom: 10px;
  --h5-font-size: 18px;
  --h5-font-weight: 600;
  --h5-letter-spacing: 0;
  --h5-line-height: 1.6em;
  --h5-margin-bottom: 10px;
  --h6-font-size: 16px;
  --h6-font-weight: 600;
  --h6-letter-spacing: 0;
  --h6-line-height: 1.6em;
  --h6-margin-bottom: 10px;
  --mainmenu-font: var(--body-font);
  --mainmenu-font-size: 16px;
  --mainmenu-font-weight: 500;
  --mainmenu-letter-spacing: 0;
  --mainmenu-text-transform: none;
  --logo-width: 240px;
  --bg-dark-1: #1B1663;
  --bg-dark-2: #120d4f;
  --bg-dark-1-rgb: 27, 22, 99;
  --swiper-theme-color: var(--primary-color);
  --rounded-1: 10px;
  --btn-color: #ffffff;
  --btn-font-family: var(--body-font);
  --btn-font-size: 15px;
  --btn-font-weight: 600;
  --btn-letter-spacing: 0;
  --btn-padding: 6px 20px;
  --btn-rounded: 6px;
  --btn-text-decoration: none;
  --btn-text-transform: none;
}

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

.bg-dark,
.bg-dark-1 {
  background-color: var(--bg-dark-1) !important
}

.bg-dark-2 {
  background-color: var(--bg-dark-2) !important
}

.id-color {
  color: var(--primary-color)
}

.rounded-1 {
  border-radius: var(--rounded-1) !important;
}

html {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  color: var(--body-font-color);
}

body.dark-scheme {
  color: var(--body-font-color-dark);
  background: var(--bg-dark-1);
}

a,
a:hover {
  color: var(--body-font-color);
  text-decoration: none;
  outline: none;
}

.dark-scheme a,
.dark-scheme a:hover,
.text-light a,
.text-light a:hover {
  color: var(--body-font-color-dark);
  text-decoration: none;
  outline: none;
}

header {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1001;
  margin: 0;
}

header.transparent {
  background: none;
}

header div#logo {
  transition: all 0.3s;
}

header.smaller {
  position: fixed;
  top: 0px;
  background: rgba(var(--bg-dark-1-rgb), .65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

header.smaller #topbar {
  margin-top: -42px;
  overflow: hidden;
}

header .logo-mobile {
  display: none;
}

div#logo img {
  max-width: var(--logo-width);
}

.logo-footer {
  max-width: var(--logo-width);
}

.de-flex {
  display: flex;
  justify-content: space-between;
}

.de-flex-col {
  display: flex;
  align-items: center;
}

#subheader {
    overflow: hidden;
    position: relative;
    padding: 160px 0 0px 0;
    background-image: url('../images/background/5.webp'); /* 배경 이미지 경로 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#subheader h1 {
  font-size: 48px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.gradient-edge-top {
  z-index: 1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(var(--bg-dark-1-rgb), 1) 0%, rgba(var(--bg-dark-1-rgb), 0) 100%);
}

.gradient-edge-bottom {
  z-index: 1;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(0deg, rgba(var(--bg-dark-1-rgb), 1) 0%, rgba(var(--bg-dark-1-rgb), 0) 100%);
}

.gradient-edge-bottom.color {
  background: linear-gradient(0deg, rgba(var(--primary-color-rgb), 1) 0%, rgba(var(--primary-color-rgb), 0) 100%);
}

#mainmenu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.dark-scheme #mainmenu ul {
  background: var(--bg-dark-1);
  border: solid 1px rgba(255, 255, 255, .1);
  border-radius: 3px;
  padding: 0;
}

#mainmenu li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}

#mainmenu>li {
  margin-right: 30px;
}

#mainmenu>li:last-child {
  margin-right: 0;
}

#mainmenu>li.has-child:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  padding-left: 5px;
  font-size: 8px;
  position: relative;
  top: -2px;
  color: rgba(255, 255, 255, .75);
  font-weight: 900;
}

#mainmenu>li>a {
  padding-right: 6px;
  font-family: var(--mainmenu-font);
  font-size: var(--mainmenu-font-size);
  font-weight: var(--mainmenu-font-weight);
  text-transform: var(--mainmenu-text-transform);
  letter-spacing: var(--mainmenu-letter-spacing);
}

#mainmenu li.has-child>a {
  padding-right: 0;
}

#mainmenu a {
  position: relative;
  display: inline-block;
  padding: 25px 15px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  outline: none;
}

#mainmenu li li {
  font-family: var(--body-font);
  font-size: 14px;
  margin: 0;
  display: block;
}

#mainmenu li li a {
  padding: 10px 15px;
  color: #ffffff;
  width: 100%;
  text-align: left;
  font-weight: normal;
  border-bottom: none;
  letter-spacing: 0;
  display: block;
  transition: background 0.3s ease;
  white-space: nowrap;
}

#mainmenu li li a:hover {
  background: var(--primary-color);
  color: #fff;
}

.dark-scheme #mainmenu li li a {
  color: #ffffff;
}

#mainmenu li a.active {
  color: var(--primary-color) !important;
}

#mainmenu li ul {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  border-radius: 3px;
  margin: 0;
  padding: 0;
  transition: all 0.2s ease;
  width: auto;
  min-width: 190px;
  display: table;
}

#mainmenu li:hover>ul {
  visibility: visible;
  opacity: 1;
}

#menu-btn {
  display: none;
  cursor: pointer;
  color: #fff;
  margin-left: 20px;
}

#btn-close {
  position: absolute;
  z-index: 1001;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

#content {
  padding: 0;
}

.dark-scheme #content {
  background: var(--bg-dark-1);
}

section {
  padding: 100px 0;
}

.no-top {
  padding-top: 0 !important;
}

.no-bottom {
  padding-bottom: 0 !important;
}

.pb-80 {
  padding-bottom: 80px;
}

footer {
  color: var(--body-font-color-dark);
  background: var(--bg-dark-2);
  padding: 100px 0 0 0;
}

.dark-scheme footer a {
  color: var(--body-font-color-dark);
}

footer h5 {
  color: #fff;
  font-size: 18px;
  text-transform: none;
}

footer a {
  color: var(--body-font-color-dark);
  text-decoration: none !important;
}

footer a:hover {
  color: var(--primary-color);
}

.subfooter {
  margin-top: 50px;
  border-top: solid 1px rgba(255, 255, 255, .1);
  padding: 20px 0;
}

#topbar {
  width: 100%;
  overflow: hidden;
  background: rgba(var(--bg-dark-1-rgb), .25);
}

#topbar a {
  text-decoration: none;
}

#topbar.text-light a {
  color: #ffffff;
}

.topbar-widget {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  padding: 6px 0;
}

.topbar-widget a {
  color: rgba(255, 255, 255, .75);
}

.topbar-widget i {
  font-size: 16px;
  margin-right: 10px;
  color: var(--primary-color);
}

.menu_side_area {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

a.btn-main,
a.btn-main:visited,
.btn-main {
  background: var(--primary-color);
  color: var(--btn-color);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  padding: var(--btn-padding);
  text-decoration: var(--btn-text-decoration);
  text-transform: var(--btn-text-transform);
  border-radius: var(--btn-rounded);
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  outline: 0;
  white-space: nowrap;
}

a.btn-main.fx-slide {
  overflow: hidden;
}

a.btn-main.fx-slide span {
  display: block;
  position: relative;
  transition: all .3s ease-in-out;
}

a.btn-main.fx-slide:hover span {
  transform: translate(0, 40px);
  opacity: 0;
}

a.btn-main.fx-slide:before {
  content: attr(data-hover);
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translate(0, -100%);
  transition: all 0.3s ease-in-out;
}

a.btn-main.fx-slide:hover:before {
  opacity: 1;
  transform: translate(0, 0);
}

a.btn-line,
a.btn-line:hover {
  background: none;
  border: solid 1px rgba(255, 255, 255, .5);
}

.text-light .btn-line {
  color: #ffffff;
}

.spacer-single {
  height: 30px;
  display: block;
  clear: both;
}

.spacer-double {
  height: 60px;
  display: block;
  clear: both;
}

.spacer-20 {
  height: 20px;
  display: block;
  clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-font-color);
  text-transform: var(--heading-text-transform);
}

.dark-scheme h1,
.dark-scheme h2,
.dark-scheme h3,
.dark-scheme h4,
.dark-scheme h5,
.dark-scheme h6 {
  color: #ffffff;
}

footer h5 {
  color: #fff;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
  margin-bottom: var(--h1-margin-bottom);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
  margin-bottom: var(--h2-margin-bottom);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
  margin-bottom: var(--h3-margin-bottom);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  margin-bottom: var(--h4-margin-bottom);
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  letter-spacing: var(--h5-letter-spacing);
  line-height: var(--h5-line-height);
  margin-bottom: var(--h5-margin-bottom);
}

.text-light,
.text-light p {
  color: var(--body-font-color-dark);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5 {
  color: #fff;
}

#de-loader {
  position: fixed;
  z-index: 20000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dark-scheme #de-loader {
  background: var(--bg-dark-1);
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-color);
  margin: -2px 0 0 -2px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

.social-icons {
  display: inline-block;
}

.social-icons i {
  padding: 10px 5px;
  width: 36px;
  height: 36px;
  text-align: center;
  font-size: 16px;
  margin: 0 3px;
  border-radius: 6px;
}

.dark-scheme .social-icons i {
  background: rgba(255, 255, 255, .1);
}

.social-icons i:hover {
  background: #fff;
  color: #333;
}

header,
.hover,
.hover *,
a.btn-line:after,
.de_count,
.social-icons a i,
#back-to-top,
#extra-wrap,
#btn-extra *,
.crumb *,
.de__pcard * {
  transition: .5s;
  outline: none;
}

#mainmenu li ul {
  transition: .2s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.scaleIn {
  animation-name: scaleIn;
}

.wow {
  visibility: hidden;
}

.widget {
  margin-bottom: 30px;
  padding-bottom: 30px;
}

footer .widget {
  margin-bottom: 0;
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget ul li {
  margin: 3px 0;
}

footer .widget h5 {
  font-size: 18px;
  margin-bottom: 20px;
}

.menu-simple {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.menu-simple li {
  display: inline;
  margin: 0 15px;
}

.w-100 {
  width: 100%;
}

.h-20 {
  height: 20%;
}

.h-40 {
  height: 40%;
}

.h-50 {
  height: 50%;
}

.h-100 {
  height: 100%;
}

.bottom-0 {
  bottom: 0;
}

.fs-32 {
  font-size: 32px;
}

.fs-40 {
  font-size: 40px;
}

.fs-72 {
  font-size: 72px;
}

.fw-bold {
  font-weight: bold;
}

.p-40 {
  padding: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.op-1 {
  opacity: .1;
}

.op-5 {
  opacity: .5;
}

.op-6 {
  opacity: .6;
}

.lh-1 {
  line-height: 1em;
}

.lh-1-1 {
  line-height: 1.1em;
}

.mh-500 {
  min-height: 500px;
}

.mh-700 {
  min-height: 700px;
}

.absolute,
.abs {
  position: absolute;
}

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

.relative,
.position-relative {
  position: relative;
  padding-bottom: 0px;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-4 {
  z-index: 4;
}

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

.hover-op-0 {
  opacity: 1
}

.hover:hover .hover-op-0 {
  opacity: 0
}

.hover-op-1 {
  opacity: 0
}

.hover:hover .hover-op-1 {
  opacity: 1
}

.hover-mt-40 {
  margin-top: 40px;
}

.hover:hover .hover-mt-40 {
  margin-top: 0;
}

.de-flex {
  display: flex;
  justify-content: space-between;
}

.de-flex>.de-flex-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

#back-to-top {
  background: var(--primary-color);
  position: fixed;
  bottom: -40px;
  right: 20px;
  z-index: 1020;
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
  outline: none;
  opacity: 0;
  border-radius: 30px;
}

#back-to-top:hover {
  transform: scale(1.1);
}

#back-to-top.show {
  bottom: 20px;
  opacity: 1;
}

#back-to-top:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  content: "\f106";
  color: #ffffff;
  position: relative;
  top: 3px;
}

.subtitle {
  position: relative;
  font-weight: 500;
  display: inline-block;
  font-size: 12px;
  font-family: var(--heading-font);
  text-transform: uppercase;
  line-height: 1.5em;
  margin-bottom: 20px;
  padding: 6px 0 3px 0;
  letter-spacing: 10px;
}

.subtitle:before,
.subtitle:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

.dark-scheme .subtitle,
.text-light .subtitle {
  color: #ffffff;
}

.subtitle:after {
  bottom: auto;
  left: auto;
  top: 0;
  right: 0;
}

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

.sw-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(var(--bg-dark-1-rgb), .75) 0%, rgba(var(--bg-dark-1-rgb), .75) 50%);
}

.swiper-slide {
  position: relative;
  background: var(--bg-dark-1);
}

.swiper-inner {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
}

.bg-blur {
  background: rgba(0, 0, 0, .15);
  backdrop-filter: blur(10px);
}


#wrapper {
  position: relative;
}

header.transparent .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo-main {
  height: 40px;
}

#mainmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

#mainmenu li {
  margin-left: 30px;
}

#mainmenu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.language-switcher {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.language-switcher .selected-lang .fas {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
}

.language-switcher .lang-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  list-style: none;
  padding: 8px;
  margin: 0;
  display: none;
  z-index: 1000;
  min-width: 50px;
}

.language-switcher.active .lang-dropdown {
  display: block;
}

.language-switcher .lang-dropdown li {
  padding: 5px;
}

.language-switcher .lang-dropdown li:hover {
  background-color: #333;
  border-radius: 5px;
}

.language-switcher .lang-dropdown li a .flag-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  object-fit: cover;
}

#menu-btn i,
#btn-close i {
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
}


@media (max-width: 992px) {

  /* Reduce font size for top bar telephone and email */
  [data-lang-key="top_bar_tel"],
  [data-lang-key="top_bar_email"] {
    font-size: 12px;
    /* Adjust to desired size, e.g., 12px */
  }

  /* Reduce font size for hero title */
  [data-lang-key="hero_title"] {
    font-size: 32px;
    /* Adjust to desired size, e.g., 32px */
  }

  .de-flex.sm-pt10 {
    padding-top: 10px;
  }

  #mainmenu,
  .language-switcher {
    display: none;
  }

  #menu-btn {
    display: block;
  }
  
}

/* Mobile Menu Styles */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background: var(--bg-dark-1);
    z-index: 1002;
    transition: right 0.3s ease;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
}

#mobile-menu.active {
    right: 0;
}

#mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

#mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 60px;
}

#mobile-menu ul li {
    margin: 10px 0;
}

#mobile-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px;
}

#mobile-menu ul li a:hover {
    background: var(--primary-color);
    border-radius: 5px;
}

#mobile-menu ul ul {
    padding-left: 20px;
    margin-top: 5px;
}

#mobile-menu ul ul li a {
    font-size: 14px;
}
.line-break {
    display: block;
}

@media (max-width: 767px) {
  img[src="images/misc/p1.webp"],
  img[src="images/misc/p2.webp"] {
    display: none;
  }
}
.company-overview-section {
    padding: 30px 0;
}







.section-padding {
    padding: 60px 0;
}

.image-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    display: flex; /* Add flexbox to center the image */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically, if needed */
}

.main-image {
    width: 100%; /* Make the image take full width of the container */
    max-width: 100%; /* Ensure it doesn't exceed the container */
    display: block;
    height: auto; /* Maintain aspect ratio */
}

.secondary-image {
    width: 60%;
    max-width: 300px;
    bottom: -20px;
    right: 10%;
    z-index: 1;
}

.soft-shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .main-image {
        width: 100%;
        max-width: 100%;
    }
    .secondary-image {
        width: 70%;
        max-width: 200px;
        bottom: -10px;
        right: 5%;
    }
}


.history-title {
    position: relative;
    font-weight: 500;
    display: block; /* Changed from inline-block to block for centering */
    font-size: 12px;
    font-family: var(--heading-font);
    text-transform: uppercase;
    line-height: 1.5em;
    margin: 0 auto 20px auto; /* Center horizontally with auto margins */
    padding: 6px 0 3px 0;
    letter-spacing: 10px;
    text-align: center; /* Center text */
    width: fit-content; /* Adjust width to content */
}

.history-title:before,
.history-title:after {
    content: '';
    POSITION: absolute;
    width: 50%;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
}

.dark-scheme .history-title,
.text-light .history-title {
    color: #ffffff;
}

.history-title:after {
    bottom: auto;
    left: auto;
    top: 0;
    right: 0;
}

.mov-wrap iframe {
    width: 100%;
    max-width: 100%;
    height: auto; /* Maintains aspect ratio */
    aspect-ratio: 16 / 9; /* Ensures proper YouTube video aspect ratio */
}