@charset "UTF-8";
/*
  ############################################################
    This file created by METHODDA
  ############################################################
*/
@font-face {
  font-family: "General Sans";
  src: url("../assets/fonts/general-sans/GeneralSans-Extralight.woff2") format("woff2"), url("../assets/fonts/general-sans/GeneralSans-Extralight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../assets/fonts/general-sans/GeneralSans-Light.woff2") format("woff2"), url("../assets/fonts/general-sans/GeneralSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../assets/fonts/general-sans/GeneralSans-Regular.woff2") format("woff2"), url("../assets/fonts/general-sans/GeneralSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../assets/fonts/general-sans/GeneralSans-Medium.woff2") format("woff2"), url("../assets/fonts/general-sans/GeneralSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../assets/fonts/general-sans/GeneralSans-Semibold.woff2") format("woff2"), url("../assets/fonts/general-sans/GeneralSans-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../assets/fonts/general-sans/GeneralSans-Bold.woff2") format("woff2"), url("../assets/fonts/general-sans/GeneralSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important; /* Yükseklik sınırlaması şart */
  touch-action: none; /* Dokunmatik kaydırmayı engeller */
  overscroll-behavior: none; /* Sayfa sonu sekmesini engeller */
}

html,
body {
  width: 100%;
  scroll-behavior: smooth;
}
@media (max-width: 991px) {
  html,
  body {
    overflow-x: clip;
  }
}

body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  font-family: "General Sans", "General Sans Placeholder", sans-serif;
}

body.page-animate:not(.motion-ready)::before, body.page-animate:not(.motion-ready)::after {
  display: none;
}
body.page-animate:not(.motion-ready) header {
  opacity: 1;
  transform: none;
}
body.page-animate::before, body.page-animate::after {
  content: "";
  position: fixed;
  left: 0;
  width: 100%;
  height: 50vh;
  background-color: #000000;
  pointer-events: none;
  z-index: 9999;
  transition: transform 900ms cubic-bezier(0.77, 0, 0.175, 1);
}
body.page-animate::before {
  top: 0;
  transform: translateY(0);
}
body.page-animate::after {
  bottom: 0;
  transform: translateY(0);
}
body.page-animate.motion-loaded::before {
  transform: translateY(-100%);
}
body.page-animate.motion-loaded::after {
  transform: translateY(100%);
}
body.page-animate header {
  opacity: 0;
  transform: translateY(-18px);
}
body.page-animate.motion-loaded header {
  animation: siteHeaderIn 850ms cubic-bezier(0.22, 1, 0.36, 1) 350ms forwards;
}
body.page-animate [data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  filter: blur(10px);
  transition: opacity 780ms cubic-bezier(0.22, 1, 0.36, 1), transform 780ms cubic-bezier(0.22, 1, 0.36, 1), filter 780ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--motion-order, 0) * 65ms);
  will-change: opacity, transform, filter;
}
body.page-animate [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
body.page-animate .about-banner img[data-reveal],
body.page-animate .hero-banner[data-reveal],
body.page-animate .images-text[data-reveal],
body.page-animate .reference-showcase[data-reveal] {
  transform: translateY(48px) scale(0.96);
  clip-path: inset(10% 0 10% 0 round 0);
}
body.page-animate .about-banner img[data-reveal].is-visible,
body.page-animate .hero-banner[data-reveal].is-visible,
body.page-animate .images-text[data-reveal].is-visible,
body.page-animate .reference-showcase[data-reveal].is-visible {
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0 round 0);
}
body.page-animate .hero-banner .bottom-title[data-reveal] {
  transform: translate(-50%, 42px);
}
body.page-animate .hero-banner .bottom-title[data-reveal].is-visible {
  transform: translate(-50%, 0);
}

@keyframes siteHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  body.page-animate::before, body.page-animate::after {
    display: none;
  }
  body.page-animate header,
  body.page-animate [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    animation: none;
    clip-path: none;
  }
  body.page-animate .hero-banner .text span {
    animation: none;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  padding: 12px 35px;
  border: 1.5px solid #000000;
  border-radius: 50px;
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .button {
    font-size: 16px;
  }
}
.button img {
  width: 20px !important;
  height: 20px !important;
  margin-left: 5px;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}
@media (max-width: 991px) {
  .button img {
    width: 16px !important;
    height: 16px !important;
  }
}
.button:hover img {
  transform: translateX(5px) rotate(-90deg);
}

.button-02 {
  display: inline-flex;
  align-items: center;
  padding: 12px 35px;
  border: 1.5px solid #000000;
  border-radius: 50px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .button-02 {
    font-size: 16px;
  }
}
.button-02 img {
  width: 20px !important;
  height: 20px !important;
  margin-left: 5px;
  filter: brightness(0) invert(1);
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}
@media (max-width: 991px) {
  .button-02 img {
    width: 16px !important;
    height: 16px !important;
  }
}
.button-02:hover {
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
}
.button-02:hover img {
  filter: brightness(0);
  transform: translateX(5px) rotate(-90deg);
}

.container-fluid {
  max-width: calc(100% - 100px);
}
@media (max-width: 991px) {
  .container-fluid {
    max-width: 100%;
  }
}

input:focus,
textarea:focus,
select:focus,
button:focus,
div:focus {
  outline: none;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

input:invalid {
  border-color: #dc3545;
}

form:invalid button[type=submit] {
  cursor: not-allowed;
  pointer-events: none;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .container {
    max-width: 1380px;
  }
}
.mt0 {
  margin-top: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

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

.ml60 {
  margin-left: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  z-index: 100;
  transition: all 300ms ease-in-out;
  padding: 10px 0;
  border-bottom: 2px solid black;
}
@media (max-width: 991px) {
  header {
    padding: 10px 12px;
  }
}
header.fixed .logo img {
  height: 42px;
}
header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  transition: all 300ms ease-in-out;
}
header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  margin-right: 1.5rem;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}
@media (max-width: 991px) {
  header .logo {
    min-width: 0;
    margin-right: 0;
  }
}
header .logo:hover {
  opacity: 0.8;
}
header .logo:focus-visible {
  outline: 2px solid #269fbd;
  outline-offset: 4px;
  border-radius: 0.5rem;
}
header .logo img {
  width: auto;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(0);
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  header .logo img {
    height: 42px;
    z-index: 1000;
  }
}
header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: right;
}
@media (max-width: 991px) {
  header nav {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 3rem 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 300ms ease-in-out;
    z-index: 99;
  }
  header nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
header nav .header-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 991px) {
  header nav .header-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding-top: 50px;
  }
}
header nav .header-menu .menu-item {
  position: relative;
  overflow: visible;
}
@media (max-width: 991px) {
  header nav .header-menu .menu-item {
    padding: 0;
  }
}
header nav .header-menu .menu-item::after {
  content: attr(data-hover);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(0) scale(1);
  opacity: 0;
  pointer-events: none;
  color: #111;
  font-weight: 700;
  font-size: 1em;
  white-space: nowrap;
  text-align: center;
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  background: white;
}
@media (max-width: 991px) {
  header nav .header-menu .menu-item::after {
    text-align: left;
    font-size: 30px;
    left: 1.5rem;
  }
}
header nav .header-menu .menu-item:hover::after, header nav .header-menu .menu-item:focus-within::after {
  opacity: 1;
  transform: translateY(-60%);
}
header nav .header-menu .menu-item a {
  display: inline-block;
  position: relative;
  z-index: 3;
  color: black;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 1;
}
@media (max-width: 991px) {
  header nav .header-menu .menu-item a {
    padding: 1rem 1.5rem;
    border-bottom: none;
    border-left: 4px solid transparent;
    font-size: 30px;
  }
}
header nav .header-menu .menu-item a .menu-text {
  display: block;
  position: relative;
  white-space: nowrap;
  z-index: 3;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 1;
}
header nav .header-menu .menu-item:hover a .menu-text, header nav .header-menu .menu-item:focus-within a .menu-text {
  transform: translateY(-120%) scale(0.88);
  opacity: 0;
}

.lang-switcher {
  position: relative;
  margin-left: 1.5rem;
}
@media (max-width: 991px) {
  .lang-switcher {
    margin-left: auto;
    margin-right: 20px;
  }
}

.lang-switcher-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: transparent;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  color: #000000;
}
.lang-switcher-toggle img {
  width: 20px;
  height: 20px;
}
.lang-switcher-toggle .lang-switcher-current {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.lang-switcher-toggle:focus-visible {
  outline: 2px solid #269fbd;
  outline-offset: 2px;
}

.lang-switcher-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 300ms ease-in-out;
  z-index: 101;
}
.lang-switcher-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switcher-dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 150ms ease-in-out;
}
.lang-switcher-dropdown li a img {
  width: 18px;
  height: auto;
}
.lang-switcher-dropdown li a:hover {
  background-color: #f8f9fa;
}
.lang-switcher-dropdown li.current-lang a {
  font-weight: 700;
}

.menu-trigger {
  position: relative;
  z-index: 100;
  width: 30px;
  height: 22px;
  display: none;
  transition: all 0.4s;
  cursor: pointer;
  box-sizing: border-box;
  margin-left: auto;
  background-color: transparent;
  border: none;
  padding: 0;
}
@media (max-width: 991px) {
  .menu-trigger {
    display: inline-block;
    margin-left: 0;
  }
}
.menu-trigger:focus-visible {
  outline: 2px solid #269fbd;
  outline-offset: 2px;
}
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s ease-in-out;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 9px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-7px) rotate(315deg);
}
.menu-trigger:active {
  transform: scale(0.95);
}

footer {
  padding: 20px 0;
}
footer .title {
  text-align: center;
  z-index: 1;
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  footer .title {
    text-align: left;
  }
}
@media (max-width: 767px) {
  footer .title {
    margin-bottom: 0;
  }
}
footer .title h4 {
  font-size: min(20px + 8vw, 140px);
  font-weight: bold;
  color: #000000;
}
@media (max-width: 991px) {
  footer .title h4 {
    font-size: calc(20px + 8vw);
    text-align: center;
  }
}
@media (max-width: 767px) {
  footer .title h4 {
    font-size: calc(14px + 10vw);
  }
}
@media (max-width: 576px) {
  footer .title h4 {
    font-size: calc(10px + 11vw);
  }
}
footer .header-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 991px) {
  footer .header-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  footer .header-menu {
    padding-top: 30px;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  footer .header-menu {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
}
footer .header-menu .menu-item {
  position: relative;
  overflow: visible;
}
footer .header-menu .menu-item::after {
  content: attr(data-hover);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(0) scale(1);
  opacity: 0;
  pointer-events: none;
  color: #000000;
  font-weight: 700;
  font-size: 1em;
  white-space: nowrap;
  text-align: center;
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  background: #ffffff;
}
@media (max-width: 767px) {
  footer .header-menu .menu-item::after {
    display: none;
  }
}
footer .header-menu .menu-item:hover::after, footer .header-menu .menu-item:focus-within::after {
  opacity: 1;
  transform: translateY(-60%);
}
footer .header-menu .menu-item a {
  display: inline-block;
  position: relative;
  z-index: 3;
  color: #000000;
  white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 1;
}
@media (max-width: 991px) {
  footer .header-menu .menu-item a {
    padding: 1rem 1.5rem;
    border-bottom: none;
    border-left: 4px solid transparent;
    font-size: 20px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  footer .header-menu .menu-item a {
    font-size: 18px;
    padding: 0.75rem 1rem;
  }
}
@media (max-width: 576px) {
  footer .header-menu .menu-item a {
    font-size: 16px;
    padding: 0.6rem 0.75rem;
  }
}
footer .header-menu .menu-item a .menu-text {
  display: block;
  position: relative;
  white-space: nowrap;
  z-index: 3;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 1;
}
@media (max-width: 991px) {
  footer .header-menu .menu-item a .menu-text {
    text-align: center;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  footer .header-menu .menu-item a .menu-text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  footer .header-menu .menu-item a .menu-text {
    font-size: 16px;
  }
}
footer .header-menu .menu-item:hover a .menu-text, footer .header-menu .menu-item:focus-within a .menu-text {
  transform: translateY(-120%) scale(0.88);
  opacity: 0;
}
@media (max-width: 767px) {
  footer .header-menu .menu-item:hover a .menu-text, footer .header-menu .menu-item:focus-within a .menu-text {
    transform: none;
    opacity: 1;
  }
}
footer .footer-legal {
  margin-bottom: 28px;
}
footer .footer-legal ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  footer .footer-legal ul {
    gap: 10px 16px;
  }
}
@media (max-width: 767px) {
  footer .footer-legal ul {
    gap: 8px 12px;
  }
}
@media (max-width: 576px) {
  footer .footer-legal ul {
    gap: 6px 10px;
  }
}
footer .footer-legal .menu-item {
  position: relative;
  overflow: visible;
}
footer .footer-legal .menu-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 1px;
  height: 14px;
  background-color: #dee2e6;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  footer .footer-legal .menu-item::before {
    right: -9px;
  }
}
@media (max-width: 576px) {
  footer .footer-legal .menu-item::before {
    right: -6px;
    height: 12px;
  }
}
footer .footer-legal .menu-item::after {
  content: attr(data-hover);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(0) scale(1);
  opacity: 0;
  pointer-events: none;
  color: #000000;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  text-align: center;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  background: #ffffff;
}
@media (max-width: 767px) {
  footer .footer-legal .menu-item::after {
    display: none;
  }
}
footer .footer-legal .menu-item:last-child::before {
  display: none;
}
footer .footer-legal .menu-item:hover::after, footer .footer-legal .menu-item:focus-within::after {
  opacity: 1;
  transform: translateY(-60%);
}
footer .footer-legal a {
  display: inline-block;
  position: relative;
  z-index: 3;
  color: #555555;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 576px) {
  footer .footer-legal a {
    font-size: 13px;
  }
}
footer .footer-legal a .menu-text {
  display: block;
  position: relative;
  white-space: nowrap;
  z-index: 3;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 1;
}
footer .footer-legal .menu-item:hover a .menu-text,
footer .footer-legal .menu-item:focus-within a .menu-text {
  transform: translateY(-120%) scale(0.88);
  opacity: 0;
}
@media (max-width: 767px) {
  footer .footer-legal .menu-item:hover a .menu-text,
  footer .footer-legal .menu-item:focus-within a .menu-text {
    transform: none;
    opacity: 1;
  }
}
footer .footer-social {
  margin-bottom: 35px;
}
footer .footer-social ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  footer .footer-social ul {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  footer .footer-social ul {
    gap: 8px;
  }
}
footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #dee2e6;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 300ms ease-in-out;
}
@media (max-width: 576px) {
  footer .footer-social a {
    width: 40px;
    height: 40px;
  }
}
footer .footer-social a:hover {
  background-color: #000000;
  border-color: #000000;
  transform: translateY(-4px);
}
footer .footer-social a:hover img {
  filter: brightness(0) invert(1);
}
footer .footer-social a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: all 300ms ease-in-out;
}
@media (max-width: 576px) {
  footer .footer-social a img {
    width: 18px;
    height: 18px;
  }
}
footer .footer-bottom {
  text-align: center;
}
footer .footer-bottom p {
  margin: 0;
  color: #555555;
  font-size: 16px;
}
@media (max-width: 576px) {
  footer .footer-bottom p {
    font-size: 14px;
  }
}
footer .footer-bottom a {
  color: #34b88a;
}

.page-default {
  padding: 60px 20px;
}
@media (max-width: 991px) {
  .page-default {
    padding: 40px 20px;
  }
}
.page-default .page-content .page-header {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.page-default .page-content .page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #000000;
}
@media (max-width: 767px) {
  .page-default .page-content .page-header h1 {
    font-size: 32px;
  }
}
.page-default .page-content .page-header .last-updated {
  font-size: 14px;
  color: #666;
  opacity: 0.7;
  margin: 0;
}
.page-default .page-content .page-header .last-updated time {
  font-weight: 500;
}
.page-default .page-content .page-body h1 {
  font-size: 48px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 25px;
  color: #000000;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page-default .page-content .page-body h1 {
    font-size: 36px;
  }
}
.page-default .page-content .page-body h1:first-child {
  margin-top: 0;
}
.page-default .page-content .page-body h2 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 22px;
  color: #000000;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .page-default .page-content .page-body h2 {
    font-size: 28px;
  }
}
.page-default .page-content .page-body h2:first-child {
  margin-top: 0;
}
.page-default .page-content .page-body h3 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #000000;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .page-default .page-content .page-body h3 {
    font-size: 24px;
  }
}
.page-default .page-content .page-body h4 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 18px;
  color: #000000;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .page-default .page-content .page-body h4 {
    font-size: 20px;
  }
}
.page-default .page-content .page-body h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #000000;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .page-default .page-content .page-body h4 {
    font-size: 18px;
  }
}
.page-default .page-content .page-body h6 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #000000;
  line-height: 1.4;
}
.page-default .page-content .page-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  opacity: 0.85;
  margin-bottom: 18px;
}
.page-default .page-content .page-body p:last-of-type {
  margin-bottom: 0;
}
.page-default .page-content .page-body ul,
.page-default .page-content .page-body ol {
  margin-bottom: 20px;
  padding-left: 30px;
}
.page-default .page-content .page-body ul li,
.page-default .page-content .page-body ol li {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  opacity: 0.85;
  margin-bottom: 10px;
}
.page-default .page-content .page-body ul li:last-child,
.page-default .page-content .page-body ol li:last-child {
  margin-bottom: 0;
}
.page-default .page-content .page-body ul li {
  list-style-type: disc;
}
.page-default .page-content .page-body ol li {
  list-style-type: decimal;
}
.page-default .page-content .page-body a {
  color: #269fbd;
  text-decoration: underline;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.page-default .page-content .page-body a:hover {
  opacity: 0.8;
}
.page-default .page-content .page-body strong,
.page-default .page-content .page-body b {
  font-weight: 700;
  color: #000000;
}
.page-default .page-content .page-body blockquote {
  background-color: rgba(0, 0, 0, 0.05);
  border-left: 4px solid #269fbd;
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
  font-style: italic;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}
.page-default .page-content .page-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  border-radius: 8px;
  overflow: hidden;
}
.page-default .page-content .page-body table th {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 12px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #000000;
}
.page-default .page-content .page-body table td {
  padding: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  color: #444;
}
.page-default .page-content .page-body table tr:last-child td {
  border-bottom: none;
}

.hero-banner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  padding-top: 0px;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .hero-banner {
    height: calc(100vh - 64px);
  }
}
.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}
.hero-banner .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  left: 0;
  top: 0;
}
.hero-banner .title {
  text-align: center;
  z-index: 1;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-banner .title h1 {
  font-size: min(26px + 8vw, 130px);
  letter-spacing: 5px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 991px) {
  .hero-banner .title h1 {
    font-size: calc(20px + 8vw);
    padding-top: 30px;
  }
}
.hero-banner .text span {
  position: absolute;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.9;
  z-index: 3;
  transform-origin: center center;
  will-change: transform;
}
@media (max-width: 991px) {
  .hero-banner .text span {
    font-size: 16px;
  }
}
.hero-banner .text span:nth-child(1) {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  animation: heroTextOrbitLeft 8s ease-in-out infinite;
}
@media (max-width: 991px) {
  .hero-banner .text span:nth-child(1) {
    top: 30%;
  }
}
.hero-banner .text span:nth-child(2) {
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: heroTextOrbitCenter 9s ease-in-out infinite;
}
@media (max-width: 991px) {
  .hero-banner .text span:nth-child(2) {
    top: 35%;
  }
}
.hero-banner .text span:nth-child(3) {
  top: 60%;
  right: 5%;
  transform: translateY(-50%);
  animation: heroTextOrbitRight 8.5s ease-in-out infinite;
}
@media (max-width: 991px) {
  .hero-banner .text span:nth-child(3) {
    top: 40%;
  }
}
.hero-banner .bottom-title {
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-bottom: 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hero-banner .bottom-title h2 {
  color: #fff;
  font-size: 27px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .hero-banner .bottom-title h2 {
    font-size: 32px;
  }
}
.hero-banner .bottom-title h3 {
  color: #fff;
  font-size: 78px;
  font-weight: 600;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  .hero-banner .bottom-title h3 {
    font-size: 50px;
  }
}

@keyframes heroTextOrbitLeft {
  0%, 100% {
    transform: translateY(-50%) rotate(0deg) translate3d(0, 0, 0);
  }
  50% {
    transform: translateY(-50%) rotate(-3deg) translate3d(8px, -10px, 0);
  }
}
@keyframes heroTextOrbitCenter {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg) translate3d(0, 0, 0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(2.5deg) translate3d(0, 12px, 0);
  }
}
@keyframes heroTextOrbitRight {
  0%, 100% {
    transform: translateY(-50%) rotate(0deg) translate3d(0, 0, 0);
  }
  50% {
    transform: translateY(-50%) rotate(3deg) translate3d(-10px, -8px, 0);
  }
}
@media (max-width: 991px) {
  #banner {
    height: 450px;
  }
}

.section-01 {
  position: relative;
  background: #fff;
  z-index: 3;
  padding: 72px 0px;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section-01 {
    padding: 50px 0px;
  }
}
.section-01 .border-fill-text .border-char {
  color: transparent;
  -webkit-text-stroke: 1px #000;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: inline;
}
.section-01 .border-fill-text .border-char.filled {
  color: #000;
  -webkit-text-stroke: 0px #000;
  transition: color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-01 .border-fill-text .border-char.space {
  width: 0.35em;
}
.section-01 p {
  font-size: calc(18px + 1.3vw);
  font-weight: 500;
  display: block;
  margin: 0;
  margin-bottom: 40px;
  white-space: normal !important;
}
@media (max-width: 991px) {
  .section-01 p {
    font-size: calc(15px + 1.2vw);
    line-height: 36px;
  }
  .section-01 p br {
    display: none !important;
  }
}
.section-01 .button {
  display: inline-block;
  margin: 0 auto;
}

.section-02 {
  position: relative;
  background: #fff;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.section-02::after {
  content: "";
  position: sticky;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  z-index: 19;
  will-change: auto;
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 90%, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 37.5%);
  backdrop-filter: blur(10px);
}
.section-02 .images-text {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}
.section-02 .images-text .image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}
.section-02 .images-text .image img,
.section-02 .images-text .image video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media (max-width: 991px) {
  .section-02 .images-text .image img,
  .section-02 .images-text .image video {
    height: inherit;
    aspect-ratio: 1/1;
  }
}
.section-02 .images-text .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  height: 100%;
  background-color: black;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.section-02 .images-text .image:hover::before {
  opacity: 0.7;
}
.section-02 .images-text .image:hover img,
.section-02 .images-text .image:hover video {
  transform: scale(1.1);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-02 .images-text .image img,
.section-02 .images-text .image video {
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-02 .images-text .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 9;
  pointer-events: none;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.section-02 .images-text .text span {
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  padding: 20px;
  border-radius: 10px;
  display: table;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .section-02 .images-text .text span {
    font-size: 20px;
  }
}
.section-02 .images-text .text h4 {
  font-size: 46px;
}
.section-02 .images-text .text img {
  width: 300px;
  max-height: 120px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section-02 .images-text .text img {
    width: 200px;
    max-height: 90px;
  }
}

.section-03 {
  position: relative;
  background: #fff;
  z-index: 3;
  padding: 50px 0;
  border-bottom: 2px solid black;
}
@media (max-width: 991px) {
  .section-03 .row {
    flex-direction: column-reverse;
  }
}
@media (max-width: 991px) {
  .section-03 {
    text-align: center;
    min-height: inherit;
    padding: 32px 0;
  }
}
.section-03 .title {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .section-03 .title {
    margin: 0;
  }
}
.section-03 .title h4 {
  font-size: 33px;
}
@media (max-width: 991px) {
  .section-03 .title h4 {
    font-size: 30px;
  }
}
.section-03 .title p {
  font-size: 25px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .section-03 .title p {
    font-size: 20px;
  }
}
.section-03 .intro-box h4 {
  font-size: 31px;
  font-weight: 600;
  line-height: 1.2;
  color: #111;
  margin-bottom: 30px;
  letter-spacing: -1.5px;
}
@media (max-width: 991px) {
  .section-03 .intro-box h4 {
    font-size: 25px;
    line-height: inherit;
  }
}
.section-03 .intro-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
  max-width: 90%;
}
@media (max-width: 991px) {
  .section-03 .intro-box p {
    max-width: inherit;
  }
}
.section-03 .intro-box img {
  width: 100%;
  aspect-ratio: 16/14;
  object-fit: cover;
  border-radius: 10px;
}
.section-03 .services-wrapper .service-item {
  border-bottom: 1px solid black;
  overflow: hidden;
  transition: all 0.25s ease;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .section-03 .services-wrapper .service-item {
    margin-top: 20px;
  }
}
.section-03 .services-wrapper .service-item .service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}
@media (max-width: 991px) {
  .section-03 .services-wrapper .service-item .service-header {
    padding: 0px 15px;
    margin-bottom: 20px;
  }
}
.section-03 .services-wrapper .service-item .service-header h4 {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  color: #111;
  transition: color 0.3s ease;
}
@media (max-width: 991px) {
  .section-03 .services-wrapper .service-item .service-header h4 {
    font-size: 18px;
  }
}
.section-03 .services-wrapper .service-item .service-header .toggle-icon {
  width: 35px;
  height: 35px;
  background-color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
}
@media (max-width: 991px) {
  .section-03 .services-wrapper .service-item .service-header .toggle-icon {
    width: 25px;
    height: 25px;
  }
}
.section-03 .services-wrapper .service-item .service-header .toggle-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  transform: rotate(0deg);
  transition: all 500ms ease-in-out;
}
.section-03 .services-wrapper .service-item .service-header:hover h4 {
  color: #555;
}
.section-03 .services-wrapper .service-item .service-body {
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 300ms ease-in-out;
  padding-bottom: 0;
  will-change: max-height, opacity, transform;
}
.section-03 .services-wrapper .service-item .service-body p {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
  max-width: 90%;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .section-03 .services-wrapper .service-item .service-body p {
    padding-left: 15px;
    font-size: 15px;
    text-align: left;
  }
}
.section-03 .services-wrapper .service-item.active .service-header .toggle-icon {
  background-color: #000;
}
.section-03 .services-wrapper .service-item.active .service-header .toggle-icon img {
  transform: rotate(180deg);
}
.section-03 .services-wrapper .service-item.active .service-body {
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 10px;
}

.blog {
  padding: 50px 0;
  border-bottom: 2px solid black;
}
@media (max-width: 991px) {
  .blog {
    padding: 50px 15px;
  }
}
.blog .title {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .blog .title {
    text-align: center;
  }
}
.blog .title h4 {
  font-size: 23px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .blog .title h4 {
    font-size: 32px;
  }
}
body.page-animate .blog .item[data-reveal=blog-card] {
  opacity: 0;
  transform: translateY(58px) scale(0.94) rotateX(7deg);
  transform-origin: center bottom;
  filter: blur(18px);
  transition: all 500ms ease-in-out;
  transition-delay: calc(var(--motion-order, 0) * 140ms);
}
body.page-animate .blog .item[data-reveal=blog-card].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
  filter: blur(0);
}
@media (max-width: 991px) {
  .blog .item {
    margin-bottom: 32px;
    display: block;
  }
}
.blog .item .item-image {
  margin-bottom: 20px;
}
.blog .item .item-image img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16/13;
  object-fit: cover;
}
.blog .item .item-title {
  margin-bottom: 10px;
}
.blog .item .item-title h4 {
  color: black;
  font-weight: 400;
  font-size: 28px;
  margin: 0;
}
.blog .item .item-text p {
  color: black;
}

.detail-page-section-01 {
  padding: 100px 0;
}
.detail-page-section-01 .container-fluid .meta {
  position: relative;
  padding-right: 20px;
}
.detail-page-section-01 .container-fluid .meta .meta-logo {
  margin-bottom: 30px;
}
.detail-page-section-01 .container-fluid .meta .meta-logo img {
  max-width: 180px;
  max-height: 60px;
  object-fit: contain;
}
.detail-page-section-01 .container-fluid .meta .meta-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .detail-page-section-01 .container-fluid .meta .meta-grid {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.detail-page-section-01 .container-fluid .meta .meta-grid .meta-item {
  display: flex;
  flex-direction: column;
  border-left: 2px solid black;
  padding-left: 20px;
}
.detail-page-section-01 .container-fluid .meta .meta-grid .meta-item .meta-label {
  font-size: 12px;
  text-transform: uppercase;
  color: black;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.detail-page-section-01 .container-fluid .meta .meta-grid .meta-item .meta-value {
  font-size: 24px;
  font-weight: 700;
  color: black;
}
.detail-page-section-01 .container-fluid .content-wrapper .text-block p {
  font-size: 18px;
  line-height: 35px;
  color: black;
  margin-bottom: 25px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .detail-page-section-01 .container-fluid .content-wrapper .text-block p {
    font-size: 15px;
    line-height: 32px;
  }
}
.detail-page-section-01 .container-fluid .content-wrapper .text-block p:last-child {
  margin-bottom: 0;
}
.detail-page-section-01 .container-fluid .content-wrapper .text-block p:first-of-type::first-letter {
  float: left;
  font-size: 3.5rem;
  line-height: 0.8;
  font-weight: 700;
  margin-right: 15px;
  color: black;
}
@media (max-width: 991px) {
  .detail-page-section-01 .container-fluid .content-wrapper .text-block p:first-of-type::first-letter {
    font-size: 3rem;
    margin-right: 10px;
  }
}

.detail-page-section-02 {
  border-bottom: 2px solid #000;
  padding-bottom: 50px;
}
.detail-page-section-02 .col-lg-12 img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/8 !important;
  display: block;
}
@media (max-width: 991px) {
  .detail-page-section-02 .col-lg-12 img {
    aspect-ratio: 16/16 !important;
  }
}
.detail-page-section-02 .item {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 25px;
}
body.page-animate .detail-page-section-02 .item[data-reveal=detail-card] {
  opacity: 0;
  transform: translateY(58px) scale(0.94) rotateX(7deg);
  transform-origin: center bottom;
  filter: blur(18px);
  transition: all 500ms ease-in-out;
  transition-delay: calc(var(--motion-order, 0) * 140ms);
}
body.page-animate .detail-page-section-02 .item[data-reveal=detail-card].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
  filter: blur(0);
}
.detail-page-section-02 .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.detail-page-section-02 .item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/12;
  display: block;
}
@media (max-width: 991px) {
  .detail-page-section-02 .item img {
    aspect-ratio: 16/16;
  }
}
.detail-page-section-02 .item .text {
  position: absolute;
  left: 5%;
  top: 10%;
}
.detail-page-section-02 .item .text h3 {
  background: linear-gradient(110deg, #fff 30%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  color: rgba(0, 0, 0, 0);
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .detail-page-section-02 .item .text h3 {
    font-size: 30px;
    max-width: 300px;
  }
}
.detail-page-section-02 .item .text h3::after {
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.2) 100%);
  display: block;
}
@media (max-width: 991px) {
  .detail-page-section-02 .item .text h3::after {
    width: 90%;
  }
}
.detail-page-section-02 .item .text h4 {
  color: #fff;
  font-size: 23px;
}
@media (max-width: 991px) {
  .detail-page-section-02 .item .text h4 {
    font-size: 25px;
  }
}
.detail-page-section-02 .next-page {
  margin-top: 50px;
  width: 100%;
  text-align: right;
}
@media (max-width: 991px) {
  .detail-page-section-02 .next-page {
    text-align: center;
    margin-top: 20px;
  }
}

.about-banner {
  padding: 50px 0;
  border-bottom: 2px solid black;
}
.about-banner h1 {
  margin-bottom: 30px;
  font-size: 46px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .about-banner h1 {
    font-size: 40px;
  }
}
.about-banner img {
  width: 100%;
  border-radius: 0;
  aspect-ratio: 16/10;
  object-fit: cover;
}
@media (max-width: 991px) {
  .about-banner img {
    aspect-ratio: 16/14;
  }
}

.about-section-01 {
  padding: 80px 0;
  border-bottom: 2px solid black;
}
.about-section-01 .title {
  text-align: center;
}
.about-section-01 .title h4 {
  margin: 0 auto;
  font-size: 33px;
  margin-bottom: 40px;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .about-section-01 .title h4 {
    font-size: 27px;
    line-height: 40px;
  }
}
.about-section-01 .title h4 strong {
  background-color: black;
  color: white;
  padding: 0 20px;
}
@media (max-width: 991px) {
  .about-section-01 .title h4 strong {
    padding: 0;
  }
}
.about-section-01 .text p {
  text-align: center;
  font-size: 30px;
  line-height: 50px;
}
@media (max-width: 991px) {
  .about-section-01 .text p {
    font-size: 20px;
    line-height: 40px;
  }
}

.founding-section-01 {
  padding: 80px 0;
  background-color: #ffffff;
  border-bottom: 2px solid #000000;
}
@media (max-width: 991px) {
  .founding-section-01 {
    padding: 50px 0;
  }
}
.founding-section-01 .founding-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 50px;
  align-items: start;
  margin-bottom: 40px;
  padding-bottom: 36px;
}
@media (max-width: 991px) {
  .founding-section-01 .founding-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 28px;
  }
}
.founding-section-01 .founding-head h2 {
  margin: 0;
  color: #000000;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  max-width: 1050px;
}
@media (max-width: 1199px) {
  .founding-section-01 .founding-head h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .founding-section-01 .founding-head h2 {
    font-size: 36px;
    line-height: 1.18;
  }
}
.founding-section-01 .founding-head p {
  margin: 0;
  color: #555555;
  font-size: 20px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .founding-section-01 .founding-head p {
    font-size: 17px;
    line-height: 1.6;
  }
}
.founding-section-01 .founding-grid {
  row-gap: 26px;
}
@media (max-width: 991px) {
  .founding-section-01 .founding-grid {
    gap: 28px;
  }
}
@media (max-width: 767px) {
  .founding-section-01 .founding-grid {
    gap: 24px;
  }
}
.founding-section-01 .founding-grid > div {
  display: flex;
}
.founding-section-01 .founding-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  color: #000000;
  transition: all 300ms ease-in-out;
}
@media (max-width: 991px) {
  .founding-section-01 .founding-item {
    border-radius: 18px;
  }
}
.founding-section-01 .founding-item:hover {
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.15);
}
.founding-section-01 .founding-item:hover .founding-image img {
  transform: scale(1.04);
}
.founding-section-01 .founding-showcase {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.founding-section-01 .founding-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/11;
  background-color: #f8f9fa;
}
@media (max-width: 991px) {
  .founding-section-01 .founding-image {
    aspect-ratio: 16/10;
  }
}
@media (max-width: 767px) {
  .founding-section-01 .founding-image {
    aspect-ratio: 16/12;
  }
}
.founding-section-01 .founding-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.5));
  opacity: 0.55;
}
.founding-section-01 .founding-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 500ms ease-in-out;
}
.founding-section-01 .founding-content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: auto;
  margin: -54px 20px 20px;
  padding: 28px 28px 30px;
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  clip-path: none;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.05);
  z-index: 2;
}
@media (max-width: 1199px) {
  .founding-section-01 .founding-content {
    margin-top: -46px;
    padding: 26px;
  }
}
@media (max-width: 991px) {
  .founding-section-01 .founding-content {
    margin: -42px 18px 20px;
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .founding-section-01 .founding-content {
    margin: -34px 14px 20px;
    padding: 22px;
  }
}
.founding-section-01 .founding-content p {
  margin: 0 0 20px;
  color: #555555;
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 1199px) {
  .founding-section-01 .founding-content p {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .founding-section-01 .founding-content p {
    font-size: 16px;
  }
}
.founding-section-01 .founding-content .button-02 {
  width: fit-content;
  margin-top: auto;
}
.founding-section-01 .founding-logo {
  display: flex;
  align-items: center;
  min-height: 76px;
  margin-bottom: 24px;
}
.founding-section-01 .founding-logo img {
  max-width: 180px;
  max-height: 60px;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .founding-section-01 .founding-logo img {
    max-width: 220px;
  }
}
@media (max-width: 767px) {
  .founding-section-01 .founding-logo img {
    max-width: 200px;
  }
}

.reference-section-01 {
  padding: 80px 0;
  background-color: #ffffff;
  border-bottom: 2px solid #000000;
  overflow: hidden;
}
@media (max-width: 991px) {
  .reference-section-01 {
    padding: 50px 0;
  }
}
.reference-section-01 .reference-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 50px;
  align-items: start;
  margin-bottom: 42px;
}
@media (max-width: 991px) {
  .reference-section-01 .reference-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.reference-section-01 .reference-head h2 {
  margin: 0;
  color: #000000;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .reference-section-01 .reference-head h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .reference-section-01 .reference-head h2 {
    font-size: 34px;
    line-height: 1.18;
  }
}
.reference-section-01 .reference-head p {
  margin: 0;
  color: #555555;
  font-size: 20px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .reference-section-01 .reference-head p {
    font-size: 17px;
    line-height: 1.6;
  }
}
.reference-section-01 .reference-showcase {
  padding: 0;
  border: 1px solid #dee2e6;
  border-radius: 18px;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .reference-section-01 .reference-showcase {
    padding: 0;
  }
}
.reference-section-01 .reference-logo-grid {
  display: grid;
  grid-template-columns: repeat(60, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: inherit;
  background-color: #ffffff;
  list-style: none;
  margin: 0;
  padding: 0;
}
.reference-section-01 .reference-logo-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: span 10;
  min-height: 190px;
  padding: 34px;
  background-color: #ffffff;
  transition: all 300ms ease-in-out;
}
.reference-section-01 .reference-logo-grid li:nth-child(6n+1):last-child {
  grid-column: span 60;
}
.reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(2), .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(2) ~ li {
  grid-column: span 30;
}
.reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(3), .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(3) ~ li {
  grid-column: span 20;
}
.reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(4), .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(4) ~ li {
  grid-column: span 15;
}
.reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(5), .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(5) ~ li {
  grid-column: span 12;
}
@media (max-width: 991px) {
  .reference-section-01 .reference-logo-grid li {
    grid-column: span 20;
    min-height: 160px;
  }
  .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(2), .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(2) ~ li, .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(3), .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(3) ~ li, .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(4), .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(4) ~ li, .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(5), .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(5) ~ li {
    grid-column: span 20;
  }
  .reference-section-01 .reference-logo-grid li:nth-child(3n+1):last-child {
    grid-column: span 60;
  }
  .reference-section-01 .reference-logo-grid li:nth-child(3n+1):nth-last-child(2), .reference-section-01 .reference-logo-grid li:nth-child(3n+1):nth-last-child(2) ~ li {
    grid-column: span 30;
  }
}
@media (max-width: 767px) {
  .reference-section-01 .reference-logo-grid li {
    grid-column: span 30;
    min-height: 130px;
    padding: 26px;
  }
  .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(2), .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(2) ~ li, .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(3), .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(3) ~ li, .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(4), .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(4) ~ li, .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(5), .reference-section-01 .reference-logo-grid li:nth-child(6n+1):nth-last-child(5) ~ li, .reference-section-01 .reference-logo-grid li:nth-child(3n+1):nth-last-child(2), .reference-section-01 .reference-logo-grid li:nth-child(3n+1):nth-last-child(2) ~ li {
    grid-column: span 30;
  }
  .reference-section-01 .reference-logo-grid li:nth-child(2n+1):last-child {
    grid-column: span 60;
  }
}
.reference-section-01 .reference-logo-grid li:hover {
  background-color: #f8f9fa;
}
.reference-section-01 .reference-logo-grid li img {
  width: 120px;
  height: 56px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  opacity: 1;
  transition: all 300ms ease-in-out;
}
@media (max-width: 767px) {
  .reference-section-01 .reference-logo-grid li img {
    width: 96px;
    height: 46px;
  }
}
.reference-section-01 .reference-logo-grid li img:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.reference-section-01 .reference-actions {
  display: flex;
  justify-content: center;
  padding: 32px;
  border-top: 1px solid #dee2e6;
}
.reference-section-01 .reference-actions .button {
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
}
.reference-section-01 .reference-actions .button:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.reference-section-01 .reference-actions .button:hover img {
  filter: brightness(0) invert(1);
}
.reference-section-01[data-reveal],
.reference-section-01 .reference-showcase[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  clip-path: none !important;
  transition: none !important;
}

.about-section-02 {
  padding: 80px 0;
  border-bottom: 2px solid black;
}
@media (max-width: 991px) {
  .about-section-02 .col-lg-6 {
    margin-bottom: 40px;
  }
}
.about-section-02 .item {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.about-section-02 .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}
.about-section-02 .item img {
  width: 100%;
  aspect-ratio: 16/14;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-section-02 .item .text {
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 2;
}
@media (max-width: 991px) {
  .about-section-02 .item .text {
    top: 10%;
    left: 5%;
  }
}
.about-section-02 .item .text h4 {
  color: #fff;
  font-size: 23px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}
@media (max-width: 991px) {
  .about-section-02 .item .text h4 {
    font-size: 30px;
    border-bottom: 1px solid #fff;
  }
}
.about-section-02 .item .text h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-section-02 .item:hover::before {
  opacity: 0.7;
}
.about-section-02 .item:hover .text h4::after {
  width: 100%;
}
.about-section-02 .item:hover img {
  transform: scale(1.05);
}

.contact-banner {
  padding: 50px 0;
}
.contact-banner .title {
  text-align: center;
  margin-bottom: 40px;
}
.contact-banner .title h1 {
  font-size: clamp(21px, 26px + 5vw, 72px);
  font-weight: bold;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .contact-banner .title h1 {
    font-size: clamp(28px, 30px + 8vw, 70px);
    padding-top: 30px;
  }
}
.contact-banner .col-lg-4 {
  text-align: center;
}
@media (max-width: 991px) {
  .contact-banner .col-lg-4 {
    margin-bottom: 20px;
  }
}
.contact-banner .col-lg-4 .box {
  padding: 20px 0;
  background-color: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.contact-banner .col-lg-4 .box:hover {
  transform: translateY(-5px);
}
.contact-banner .col-lg-4 .box .icon-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: black;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .contact-banner .col-lg-4 .box .icon-box {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
  }
}
.contact-banner .col-lg-4 .box .icon-box img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}
@media (max-width: 991px) {
  .contact-banner .col-lg-4 .box .icon-box img {
    width: 20px;
    height: 20px;
  }
}
.contact-banner .col-lg-4 .box h4 {
  font-size: 30px;
  color: black;
  margin-bottom: 10px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .contact-banner .col-lg-4 .box h4 {
    font-size: 25px;
  }
}
.contact-banner .col-lg-4 .box p {
  font-size: 20px;
  color: #555555;
  margin: 0;
}
@media (max-width: 991px) {
  .contact-banner .col-lg-4 .box p {
    font-size: 18px;
  }
}

.contact-section-form {
  padding: 80px 0;
  border-bottom: 2px solid black;
}
.contact-section-form .image {
  margin-right: 20px;
}
@media (max-width: 991px) {
  .contact-section-form .image {
    margin: 0;
    margin-bottom: 20px;
  }
}
.contact-section-form .image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .contact-section-form .image img {
    aspect-ratio: 1/1;
  }
}
.contact-section-form form label {
  display: block;
  font-size: 1.2rem;
  color: #1a120b;
  margin-bottom: 8px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .contact-section-form form label {
    font-size: 17px;
  }
}
.contact-section-form form .custom-input {
  width: 100%;
  padding: 15px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
}
.contact-section-form form .custom-input:focus {
  border-color: #1a120b;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(26, 18, 11, 0.1);
}
.contact-section-form form .custom-input::placeholder {
  color: #999999;
  opacity: 0.65;
}
.contact-section-form form textarea.custom-input {
  resize: none;
}
.contact-section-form form .wpcf7-acceptance {
  display: block;
  margin-bottom: 20px;
}
.contact-section-form form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.contact-section-form form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-weight: 400;
}
.contact-section-form form .wpcf7-acceptance input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 4px;
  accent-color: #000000;
}
.contact-section-form form .wpcf7-acceptance .wpcf7-list-item-label {
  color: #555555;
  font-size: 15px;
  line-height: 1.5;
}
.contact-section-form form .wpcf7-acceptance .wpcf7-list-item-label a {
  color: #000000;
}
.contact-section-form form .btn-submit {
  background-color: #1a120b;
  color: #fff;
  padding: 10px 40px;
  border: 1px solid transparent;
  border-radius: 30px;
  font-size: 1rem;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .contact-section-form form .btn-submit {
    width: 100%;
  }
}
.contact-section-form form .btn-submit:hover {
  background-color: #fff;
  color: black;
  border-color: black;
}

.page-404 {
  padding: 60px 20px;
  min-height: calc(100vh - 300px);
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .page-404 {
    padding: 50px 15px;
    min-height: calc(100vh - 250px);
  }
}
@media (max-width: 767px) {
  .page-404 {
    padding: 40px 15px;
  }
}
@media (max-width: 320px) {
  .page-404 {
    padding: 30px 10px;
    min-height: calc(100vh - 200px);
  }
}
.page-404 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-404 .container h1 {
  font-size: clamp(120px, 20vw, 200px);
  font-weight: 700;
  background: linear-gradient(130deg, #269fbd, #009ace);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  line-height: 1;
  letter-spacing: -5px;
  animation: slideDown 0.6s ease-out;
}
@media (max-width: 767px) {
  .page-404 .container h1 {
    font-size: 80px;
    letter-spacing: -3px;
  }
}
@media (max-width: 320px) {
  .page-404 .container h1 {
    font-size: 60px;
    letter-spacing: -2px;
  }
}
.page-404 .container h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: 2px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page-404 .container h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
@media (max-width: 320px) {
  .page-404 .container h2 {
    font-size: 22px;
    letter-spacing: 1px;
  }
}
.page-404 .container .messages {
  margin-bottom: 40px;
  max-width: 600px;
}
@media (max-width: 767px) {
  .page-404 .container .messages {
    margin-bottom: 35px;
  }
}
@media (max-width: 320px) {
  .page-404 .container .messages {
    margin-bottom: 30px;
  }
}
.page-404 .container .messages p {
  font-size: 16px;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}
@media (max-width: 320px) {
  .page-404 .container .messages p {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.page-404 .container .messages a.button-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  background-color: #269fbd;
  padding: 15px 40px;
  border-radius: 50px;
  border: 2px solid #269fbd;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}
.page-404 .container .messages a.button-base:hover {
  background-color: rgb(29.4625550661, 123.2775330397, 146.537444934);
  border-color: rgb(29.4625550661, 123.2775330397, 146.537444934);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 147, 130, 0.3);
}
.page-404 .container .messages a.button-base:hover .icon {
  transform: translateX(4px);
}
.page-404 .container .messages a.button-base:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 147, 130, 0.2);
}
.page-404 .container .messages a.button-base .button-text {
  display: inline-block;
}
.page-404 .container .messages a.button-base .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.page-404 .container .messages a.button-base .fill-container {
  display: none;
}
@media (max-width: 320px) {
  .page-404 .container .messages a.button-base {
    padding: 12px 30px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
}
.page-404 .container .social-links {
  margin-top: 50px;
}
@media (max-width: 320px) {
  .page-404 .container .social-links {
    margin-top: 35px;
  }
}
.page-404 .container .social-links .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 320px) {
  .page-404 .container .social-links .social-media {
    gap: 15px;
  }
}
.page-404 .container .social-links .social-media li {
  display: inline-block;
}
.page-404 .container .social-links .social-media li a {
  color: #269fbd;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  background-color: white;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}
.page-404 .container .social-links .social-media li a:hover {
  color: white;
  background-color: #269fbd;
  border-color: #269fbd;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 147, 130, 0.2);
}
.page-404 .container .social-links .social-media li a:focus {
  outline: 2px solid #269fbd;
  outline-offset: 2px;
}
.page-404 .container .social-links .social-media li a img {
  width: 20px;
  height: 20px;
}
@media (max-width: 320px) {
  .page-404 .container .social-links .social-media li a {
    width: 45px;
    height: 45px;
  }
  .page-404 .container .social-links .social-media li a img {
    width: 18px;
    height: 18px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ytVideoWrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  z-index: 10000 !important;
  transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.ytVideoWrapper.active {
  height: 100%;
}
.ytVideoWrapper.active .iframewrapper {
  height: 100vh;
}
.ytVideoWrapper.active .closeBtn {
  display: block;
}

.ytVideoWrapper .iframewrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 0;
  background-color: #1a1a1a;
  z-index: 1000 !important;
  transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.ytVideoWrapper .iframewrapper #ytplayer,
.ytVideoWrapper .iframewrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.ytVideoWrapper .closeBtn {
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  z-index: 1011 !important;
  display: none;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  padding: 0;
  transition: background-color all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ytVideoWrapper .closeBtn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
.ytVideoWrapper .closeBtn:focus-visible {
  outline: 2px solid #269fbd;
  outline-offset: -2px;
}
.ytVideoWrapper .closeBtn .line {
  position: absolute;
  background-color: white;
  left: 50%;
  top: 50%;
  transform-origin: center;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ytVideoWrapper .closeBtn .line.a {
  width: 40px;
  height: 3px;
  margin-left: -20px;
  margin-top: -1.5px;
  transform: rotate(45deg);
}
.ytVideoWrapper .closeBtn .line.b {
  width: 3px;
  height: 40px;
  margin-left: -1.5px;
  margin-top: -20px;
  transform: rotate(45deg);
}
.ytVideoWrapper .closeBtn:hover .line {
  background-color: white;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #269fbd;
  border: none;
  border-radius: 9999px;
  padding: 0;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 60px;
  height: 60px;
}
.play-btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 2px;
}
.play-btn:hover {
  background-color: rgb(29.4625550661, 123.2775330397, 146.537444934);
  transform: scale(1.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.play-btn:active {
  transform: scale(0.95);
}
.play-btn:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}
@media (max-width: 320px) {
  .play-btn {
    width: 50px;
    height: 50px;
  }
  .play-btn::before {
    border-left-width: 10px;
    border-top-width: 6px;
    border-bottom-width: 6px;
  }
}

.video-banner {
  position: relative;
  overflow: hidden;
  background-color: #000;
  border-radius: 0.75rem;
}
.video-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.video-banner .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  padding: 1.5rem;
  text-align: center;
  color: white;
  z-index: 10;
}
.video-banner .text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .video-banner .text h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 320px) {
  .video-banner .text h2 {
    font-size: 1.5rem;
  }
}
.video-banner .text p {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  max-width: 600px;
}
@media (max-width: 767px) {
  .video-banner .text p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 320px) {
  .video-banner .text p {
    font-size: 0.875rem;
  }
}

@media (max-width: 767px) {
  .ytVideoWrapper .closeBtn {
    width: 70px;
    height: 70px;
  }
  .ytVideoWrapper .closeBtn .line.a {
    width: 35px;
    margin-left: -17.5px;
  }
  .ytVideoWrapper .closeBtn .line.b {
    height: 35px;
    margin-top: -17.5px;
  }
}
@media (max-width: 320px) {
  .ytVideoWrapper .closeBtn {
    width: 60px;
    height: 60px;
  }
  .ytVideoWrapper .closeBtn .line.a {
    width: 30px;
    margin-left: -15px;
  }
  .ytVideoWrapper .closeBtn .line.b {
    height: 30px;
    margin-top: -15px;
  }
  .video-banner .text {
    padding: 1rem;
  }
  .video-banner .text h2,
  .video-banner .text p {
    max-width: 90%;
  }
}
