@import url("../fonts/DMSans/stylesheet.css");
@import url("../fonts/Inter/inter.css");
@import url("../fonts/icons/itmim-icon.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: InterVariable, sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}
input {
  outline: none;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
  outline: none;
}

.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -ms-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
}

.lg-prev,
.lg-next {
  color: white !important;
  font-size: 30px !important;
}

/* Custom Modal Component */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.custom-modal.active {
  display: flex;
}

.custom-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -ms-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  cursor: pointer;
}

.custom-modal-content {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  overflow-y: auto;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -moz-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -ms-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -o-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.custom-modal.active .custom-modal-content {
  transform: scale(1);
  opacity: 1;
}

.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
}

.custom-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.custom-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.custom-modal-close:hover {
  background: #e0e0e0;
  color: #333;
}

.custom-modal-body {
  padding: 24px;
}

.custom-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-modal {
    padding: 16px;
  }

  .custom-modal-content {
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 8px;
  }

  .custom-modal-header {
    padding: 16px 20px;
  }

  .custom-modal-title {
    font-size: 18px;
  }

  .custom-modal-body {
    padding: 20px;
  }

  .custom-modal-footer {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .custom-modal {
    padding: 12px;
  }

  .custom-modal-content {
    max-width: 98vw;
    max-height: 98vh;
    border-radius: 6px;
  }

  .custom-modal-header {
    padding: 12px 16px;
  }

  .custom-modal-title {
    font-size: 16px;
  }

  .custom-modal-body {
    padding: 16px;
  }

  .custom-modal-footer {
    padding: 10px 16px;
  }
}

/* Utility classes for different modal sizes */
.custom-modal-sm .custom-modal-content {
  max-width: 400px;
}

.custom-modal-md .custom-modal-content {
  max-width: 600px;
}

.custom-modal-lg .custom-modal-content {
  max-width: 800px;
}

.custom-modal-xl .custom-modal-content {
  max-width: 1000px;
}

.custom-modal-full .custom-modal-content {
  max-width: 95vw;
  max-height: 95vh;
}

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

ul li,
ol li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

body {
  background-color: #101820;
  color: #f1f1f1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.container-fluid {
  padding: 0 48px;
}

.container {
  max-width: 1530px;
  margin: 0 auto;
  padding-inline: 15px;
}

@media (max-width: 1440px) {
  .container {
    max-width: 1290px;
  }
}
@media (max-width: 992px) {
  .container-fluid {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 442px) {
  .container-fluid {
    padding: 0 21px;
  }
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 375px) {
  .container-fluid {
    padding-top: 0 20px;
  }
}

/* pagination */

.pagination {
  display: flex;
  align-items: center;
}

.pagination a {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.pagination a.arrow-btn {
  font-size: 24px;
  color: #f5f5f5;
}
.pagination a.arrow-btn.disabled {
  color: #696b6e;
  pointer-events: none;
}

.pagination a.page-btn {
  font-size: 15px;
  line-height: 24px;
  color: #a2a2a2;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.pagination a.page-btn:hover {
  color: #ffffff;
  border: 0.5px solid #66666666;
  background: #ffffff0d;
  backdrop-filter: blur(50px);
}
.pagination a.page-btn.current {
  color: #ffffff;
  pointer-events: none;
  border: 0.5px solid #66666666;
  background: #ffffff0d;
  backdrop-filter: blur(50px);
}

/* Government Banner */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: #101820;
}

.government-banner {
  padding: 6px 0;
  border-bottom: 0.5px solid #ffffff80;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.government-banner.open {
  background-color: #101820;
}

.government-banner .banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.government-banner .banner-header .banner-title {
  display: flex;
  align-items: center;
  column-gap: 8px;
  flex: 1;
  justify-content: center;
  cursor: pointer;
}

.government-banner .banner-header .banner-title .title {
  color: #f5f5f5;
  font-size: 12px;
  line-height: 100%;
}

.government-banner .banner-header .banner-title .title span {
  color: #a8aeb8;
}

.government-banner .banner-header .banner-title .title i {
  display: flex;
  color: #a8aeb8;
}
.government-banner .banner-header .social-media {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.government-banner .banner-header .social-media .social-link {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 54.545px;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}

.government-banner .wrap {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.government-banner .wrap .banner-content {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  padding-bottom: 18px;
}

.government-banner .wrap .banner-content .box {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 20px;
}

.government-banner .wrap .banner-content .box p {
  font-size: 12px;
  font-family: DM Sans;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.12px;
}

.government-banner .wrap .banner-content .box p a {
  color: #1789d0;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .government-banner .banner-header .social-media {
    display: none;
  }
  .government-banner {
    padding: 8px 0;
  }
  .government-banner .wrap .banner-content {
    padding-bottom: 16px;
  }
}

@media (max-width: 576px) {
  .government-banner {
    padding: 12px 0;
  }
  .government-banner .wrap .banner-content {
    padding-bottom: 12px;
  }
  .government-banner .wrap .banner-content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 12px;
  }
}

/* Navbar */

.navbar-wrap {
  margin-top: 37px;
}
.navbar {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  column-gap: 24px;
  padding: 24px 0;
}
.navbar .logo {
  flex: 1;
}

.navbar .logo img {
  width: 280px;
  height: auto;
}

.navbar .menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.navbar .menu .menu-item .menu-link {
  display: block;
  padding: 10px 32px;
  font-size: 14px;
  line-height: 100%;
  color: white;
  display: flex;
}

.navbar .toolButtons {
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: 122px;
  justify-content: flex-end;
  flex: 1;
}

.navbar .toolButtons button,
.navbar .toolButtons a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 35px;
  border: 1px solid #80808099;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  position: relative;
  transition: all 0.3s ease;
}
.navbar .toolButtons button span,
.navbar .toolButtons a span {
  position: relative;
  z-index: 1;
}

.navbar .toolButtons button::before,
.navbar .toolButtons a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;

  border-radius: 13px;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.navbar .toolButtons button:hover::before,
.navbar .toolButtons a:hover::before {
  background: #40474d;
}

.navbar .toolButtons a.lang span {
  font-size: 12px;
  font-weight: 500;
}

.navbar .toolButtons a.search span {
  font-size: 16px;
}

.navbar .toolButtons button.more {
  display: none;
}
.navbar .toolButtons button.more span {
  font-size: 20px;
}

.navbar .menu .menu-item {
  position: relative;
}

.navbar .menu .menu-item .dropdown-wrap {
  position: absolute;
  top: 100%;
  width: max-content;
  padding-top: 8px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  z-index: 100;
}
.navbar .menu .menu-item:hover .dropdown-wrap {
  opacity: 1;
  visibility: visible;
}

.navbar .menu .menu-item .dropdown-wrap .dropdown {
  background: #101820;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}

.navbar .menu .menu-item .dropdown-wrap .dropdown .dropdown-link {
  display: flex;
  align-items: center;
  column-gap: 12px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 8px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.navbar .menu .menu-item .dropdown-wrap .dropdown .dropdown-link:hover {
  background-color: #ffffff1a;
}

.navbar .menu .menu-item .dropdown-wrap .dropdown .dropdown-link .icon-wrap {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  font-size: 24px;
  background: #262e36;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.navbar
  .menu
  .menu-item
  .dropdown-wrap
  .dropdown
  .dropdown-link:hover
  .icon-wrap {
  background: linear-gradient(200deg, #3e2297 18.36%, #dea2f8 108.64%);
}

.navbar .menu .menu-item .dropdown-wrap .dropdown .dropdown-link .caption {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}
.navbar .menu .menu-item .dropdown-wrap .dropdown .dropdown-link .caption span {
  display: block;
}
.navbar
  .menu
  .menu-item
  .dropdown-wrap
  .dropdown
  .dropdown-link
  .caption
  .title {
  color: white;
  font-weight: 500;
  font-size: 14px;
}
.navbar
  .menu
  .menu-item
  .dropdown-wrap
  .dropdown
  .dropdown-link
  .caption
  .description {
  color: #8b919b;
  font-weight: 400;
  font-size: 12px;
}

@media (max-width: 1140px) {
  .navbar .menu .menu-item .menu-link {
    padding: 10px 20px;
  }
}

@media (max-width: 992px) {
  /* .navbar {
    padding-bottom: 0;
  } */
  .navbar .toolButtons {
    width: auto;
  }
  .navbar .menu {
    display: none;
  }
  .navbar .logo img {
    width: 201px;
    height: 44px;
  }
  .navbar .toolButtons .search {
    display: none;
  }
  .navbar .toolButtons button.more {
    display: flex;
  }
  .navbar .toolButtons {
    column-gap: 8px;
  }
}
/* Burger Menu */

.burger-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #101820;
  z-index: 1000;
  padding: 20px;
  padding-bottom: 36px;
  display: none;
  flex-direction: column;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  overflow: hidden;
}
.burger-menu.active {
  transform: translateX(0);
}

.burger-menu .menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.burger-menu .menu-header .logo img {
  width: 201px;
  height: 44px;
}

.burger-menu .menu-header .toolButtons {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.burger-menu .menu-header .toolButtons {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.burger-menu .menu-header .toolButtons button,
.burger-menu .menu-header .toolButtons a,
.burger-menu .menu-footer a.search {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 35px;
  background: linear-gradient(135deg, #ffffff66 0%, #84848466 100%);
  border: none;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  position: relative;
  transition: all 0.3s ease;
}
.burger-menu .menu-header .toolButtons button span,
.burger-menu .menu-header .toolButtons a span,
.burger-menu .menu-footer a.search span {
  position: relative;
  z-index: 1;
}

.burger-menu .menu-header .toolButtons button::before,
.burger-menu .menu-header .toolButtons a::before,
.burger-menu .menu-footer a.search::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: #101820;
  border-radius: 13px;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.burger-menu .menu-header .toolButtons button:hover::before,
.burger-menu .menu-header .toolButtons a:hover::before,
.burger-menu .menu-footer a.search:hover::before {
  background: #40474d;
}

.burger-menu .menu-header .toolButtons a.lang span {
  font-size: 12px;
  font-weight: 500;
}

.burger-menu .menu-footer a.search span {
  font-size: 16px;
}

.burger-menu .menu-footer button.close span {
  font-size: 16px;
}

.burger-menu .menu-body {
  flex: 1;
  padding-top: 56px;
}

.burger-menu .menu-body .menu-list {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}
.burger-menu .menu-body .menu-list .menu-item {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.burger-menu .menu-body .menu-list .menu-item .menu-link {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #fcfcfc;
  text-align: left;
  display: flex;
  align-content: center;
  column-gap: 7px;
}
.burger-menu .menu-body .menu-list .menu-item .menu-link i {
  font-size: 14px;
}
.burger-menu .menu-body .menu-list .menu-item .dropdown {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  display: none;
}

.burger-menu .menu-body .menu-list .menu-item .dropdown .dropdown-link {
  display: flex;
  align-items: center;
  column-gap: 12px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 8px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.burger-menu .menu-body .menu-list .menu-item .dropdown .dropdown-link:hover {
  background-color: #ffffff1a;
}

.burger-menu
  .menu-body
  .menu-list
  .menu-item
  .dropdown
  .dropdown-link
  .icon-wrap {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  font-size: 24px;
  background: #262e36;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.burger-menu
  .menu-body
  .menu-list
  .menu-item
  .dropdown
  .dropdown-link:hover
  .icon-wrap {
  background: linear-gradient(200deg, #3e2297 18.36%, #dea2f8 108.64%);
}

.burger-menu
  .menu-body
  .menu-list
  .menu-item
  .dropdown
  .dropdown-link
  .caption {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}
.burger-menu
  .menu-body
  .menu-list
  .menu-item
  .dropdown
  .dropdown-link
  .caption
  span {
  display: block;
}
.burger-menu
  .menu-body
  .menu-list
  .menu-item
  .dropdown
  .dropdown-link
  .caption
  span.title {
  color: white;
  font-weight: 500;
  font-size: 14px;
}
.burger-menu
  .menu-body
  .menu-list
  .menu-item
  .dropdown
  .dropdown-link
  .caption
  span.description {
  color: #8b919b;
  font-weight: 400;
  font-size: 12px;
}

.burger-menu .menu-body .menu-list .menu-item > div {
  display: flex;
  align-items: center;
  column-gap: 7px;
}

.burger-menu .menu-body .menu-list .menu-item > div i {
  font-size: 14px;
}

.burger-menu .menu-footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.burger-menu .ellipse {
  position: absolute;
  z-index: -1;
  opacity: 0.4;
  animation: pulse 3s ease-in-out infinite;
  -webkit-animation: pulse 3s ease-in-out infinite;
}

.burger-menu .ellipse.left-ellipse {
  left: 0;
  top: 0;
  animation-delay: 0s;
}

.burger-menu .ellipse.right-ellipse {
  right: 0;
  bottom: 0;
  animation-delay: 1.5s;
}

@media (max-width: 992px) {
  .burger-menu {
    display: flex;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@-webkit-keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    -webkit-transform: scale(1);
  }
  50% {
    opacity: 0.8;
    -webkit-transform: scale(1.05);
  }
}

/* Hero */

.hero-canvas {
  width: 100%;
  height: 100%;
  aspect-ratio: 14/9;
  position: absolute;
  bottom: -110px;
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

#canvas_hero_tablet {
  display: none;
  bottom: 8px;
}

#canvas_hero_mobile {
  display: none;
  bottom: 6px;
}
.hero-wrap {
  position: relative;
}

.hero-wrap .hero-bg {
  position: absolute;
  width: 80%;
  top: 133px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.hero-wrap .hero {
  padding-top: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.hero-wrap .hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
  text-align: center;
}

.hero-wrap .hero .hero-content .hero-caption {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  align-items: center;
}
.hero-wrap .hero .hero-content .hero-caption .hero-title {
  font-size: 80px;
  line-height: 90px;
  background: linear-gradient(
    90deg,
    rgba(133, 133, 133, 0.85) 0%,
    rgba(212, 212, 212, 0.85) 32%,
    rgba(255, 255, 255, 0.85) 52.13%,
    rgba(255, 255, 255, 0.85) 77.26%,
    rgba(246, 246, 246, 0.85) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 70%;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.hero-wrap .hero .hero-content .hero-caption .hero-description {
  color: #a8aeb8;
  text-align: center;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px; /* 137.5% */
  letter-spacing: 0.16px;
  width: 50%;
}

.hero-wrap .hero .hero-content .video {
  display: flex;
  align-items: center;
  column-gap: 10px;
  border: 0.5px solid #66666666;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  padding: 10px 16px;
  /* padding-left: 10px; */
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
  font-family: DM Sans, sans-serif;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
}

.hero-wrap .hero .hero-content .video i {
  font-size: 32px;
}

.hero-bg:is(.img-1440, .img-768, .img-401, .img-375) {
  display: none;
}

.hero-wrap .marquee-wrap {
  width: 1000px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  overflow: hidden;
  max-width: 80%;
  margin-top: 400px;
  margin-inline: auto;
}

.hero-wrap .marquee-wrap .marquee-hero-title {
  font-size: 16px;
  line-height: 170%;
  font-weight: 500;
  background: linear-gradient(
    90deg,
    #cacaca 0%,
    #ffffff 19.64%,
    #ffffff 50.14%,
    #ffffff 81.14%,
    #cacaca 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 3;
}

.marquee-hero-list {
  display: flex;
  align-items: center;
  column-gap: 64px;
  width: fit-content;
  white-space: nowrap;
}

.marquee-list-wrap {
  position: relative;
  width: 100%;
}

.hero-wrap .marquee-wrap .marquee-list-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    #101820 0%,
    rgba(16, 24, 32, 0.8) 15%,
    rgba(16, 24, 32, 0) 30%,
    rgba(16, 24, 32, 0) 70%,
    rgba(16, 24, 32, 0.8) 85%,
    #101820 100%
  );
  pointer-events: none;
  z-index: 2;
}
/* Marquee Animation */
.marquee-hero-list.scrolling {
  animation: marqueeScroll 20s linear infinite;
}

.marquee-hero-list.paused {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
.hero-wrap .marquee-wrap .marquee-item {
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-shrink: 0;
}

.hero-wrap .marquee-wrap .marquee-item .slide-logo {
  height: 48px;
}
.hero-wrap .marquee-wrap .marquee-item .slide-title {
  font-size: 33px;
  font-weight: 800;
  font-family: DM Sans, sans-serif;
  white-space: nowrap;
  color: #ececec;
}

@media (max-width: 1600px) {
  .hero-wrap .hero .hero-content .hero-caption .hero-title {
    font-size: 72px;
    line-height: 80px;
  }
}

@media (max-width: 1440px) {
  .hero-wrap .hero .hero-content .hero-caption .hero-title {
    font-size: 64px;
    line-height: 74px;
  }
  .hero-bg.img-1920 {
    display: none;
  }
  .hero-bg.img-1440 {
    display: block;
  }
  .hero-wrap .hero-bg {
    top: 11px;
    width: 1216px;
    height: 1046px;
    object-fit: contain;
    max-width: 95%;
  }
  .hero-wrap .marquee-wrap {
    margin-top: 358px;
  }
}

@media (max-width: 1265px) {
  .hero-wrap .hero .hero-content .hero-caption .hero-title {
    width: 100%;
  }
  .hero-wrap .hero .hero-content .hero-caption .hero-description {
    width: 82%;
  }
}

@media (max-width: 992px) {
  #canvas_hero {
    display: none;
  }
  #canvas_hero_tablet {
    display: block;
  }
  .hero-wrap .hero .hero-content .hero-caption .hero-title {
    font-size: 44px;
    line-height: 50px;
  }
  .hero-wrap .hero .hero-content .hero-caption .hero-description {
    font-size: 14px;
    line-height: 20px;
  }
  .hero-wrap .hero .hero-content {
    row-gap: 36px;
  }

  .hero-wrap .hero {
    padding-top: 113px;
  }
  .hero-bg.img-1440 {
    display: none;
  }
  .hero-bg.img-768 {
    display: block;
  }
  .hero-wrap .hero-bg {
    width: 778px;
    height: 778px;
    top: 144px;
    max-width: 100%;
  }
  .hero-wrap .marquee-wrap {
    margin-top: 483px;
  }
}

@media (max-width: 768px) {
  .hero-wrap .marquee-wrap .marquee-hero-title {
    font-size: 12px;
  }

  .hero-wrap .marquee-wrap .marquee-item .slide-title {
    font-size: 25px;
  }
  .hero-wrap .marquee-wrap .marquee-item .slide-logo {
    height: 36px;
  }
  .hero-wrap .marquee-wrap .marquee-item {
    column-gap: 8px;
  }
  .marquee-hero-list {
    column-gap: 48px;
  }
  .hero-wrap .marquee-wrap {
    width: 636px;
  }
}

@media (max-width: 576px) {
  #canvas_hero_tablet {
    display: none;
  }
  #canvas_hero_mobile {
    display: block;
  }
}

@media (max-width: 442px) {
  .hero-wrap .hero .hero-content .hero-caption .hero-title {
    font-size: 36px;
    line-height: 42px;
  }
  .hero-wrap .hero .hero-content .hero-caption .hero-description {
    width: 100%;
  }
  .hero-wrap .hero {
    padding-top: 77px;
  }
  .hero-bg.img-768 {
    display: none;
  }
  .hero-bg.img-401 {
    display: block;
  }
  .hero-wrap .hero-bg {
    object-fit: cover;
    top: 251px;
  }

  .hero-wrap .hero .marquee-wrap .marquee-item .slide-title {
    font-size: 20px;
  }
  .marquee-hero-list {
    column-gap: 32px;
  }
  .hero-wrap .marquee-wrap {
    width: 100%;
    margin-top: 506px;
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .hero-wrap .hero .hero-content .hero-caption .hero-title {
    font-size: 32px;
    line-height: 38px;
  }
  .hero-wrap .hero .hero-content {
    row-gap: 32px;
  }
  /* .hero-wrap .hero {
    padding-top: 121px;
  } */
  .hero-bg.img-401 {
    display: none;
  }
  .hero-bg.img-375 {
    display: block;
  }
  .hero-wrap .hero-bg {
    top: 126px;
  }
  .hero-wrap .marquee-wrap .marquee-item .slide-title {
    font-size: 18px;
  }
  .hero-wrap .marquee-wrap .marquee-item .slide-logo {
    height: 36px;
  }
  .marquee-hero-list {
    column-gap: 24px;
  }
  .hero-wrap .marquee-wrap {
    margin-top: 405px;
  }
}

/* Services Section */

.services-section {
  margin-top: 140px;
}

.services-section .services-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.services-section .services-wrap .title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.services-section .services-wrap .title-wrap .section-title {
  font-family: DM Sans;
  font-size: 12px;
  background: linear-gradient(
    90deg,
    #cacaca 0%,
    #ffffff 19.64%,
    #ffffff 50.14%,
    #ffffff 81.14%,
    #cacaca 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  padding: 8px 12px;
  border: 0.5px solid #80808099;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  font-weight: 500;
}

.services-section .services-wrap .title-wrap .caption {
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(
      90deg,
      #909090 0%,
      #ffffff 32%,
      #ffffff 52.13%,
      #ffffff 77.26%,
      #909090 100%
    ),
    linear-gradient(
      90deg,
      #909090 0%,
      #ffffff 32%,
      #ffffff 52.13%,
      #ffffff 77.26%,
      #909090 100%
    );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 12px;
  margin-bottom: 4px;
}

.services-section .services-wrap .title-wrap .description {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #a8aeb8;
}

.services-section .services-wrap .services-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.services-section .services-wrap .services-list .service-item {
  position: relative;
  padding: 28px;
  border: 1px solid #ffffff12;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  height: 368px;
  background: linear-gradient(
    133.91deg,
    rgba(255, 255, 255, 0.2) -16.27%,
    rgba(255, 255, 255, 0.08) 21%,
    rgba(16, 24, 32, 0) 64.3%
  );
  overflow: hidden;
  transition: background 0.3s ease-in;
  -webkit-transition: background 0.3s ease-in;
  -moz-transition: background 0.3s ease-in;
  -ms-transition: background 0.3s ease-in;
  -o-transition: background 0.3s ease-in;
}
.services-section
  .services-wrap
  .services-list
  .service-item
  .service-item-title-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.services-section
  .services-wrap
  .services-list
  .service-item
  .service-item-title-wrap
  .service-item-title {
  font-size: 24px;
  line-height: 100%;
  font-weight: 600;
  color: white;
}

.services-section
  .services-wrap
  .services-list
  .service-item
  .service-item-title-wrap
  .service-item-description {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #8a909a;
}

.services-section .services-wrap .services-list .service-item img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease-in;
  -webkit-transition: transform 0.3s ease-in;
  -moz-transition: transform 0.3s ease-in;
  -ms-transition: transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
  z-index: -1;
}
.services-section .services-wrap .services-list .service-item:hover {
  background: linear-gradient(
    133.91deg,
    rgba(255, 255, 255, 0.2) -16.07%,
    rgba(255, 255, 255, 0.09) 21%,
    rgba(16, 24, 32, 0) 64.3%
  );
}
.services-section .services-wrap .services-list .service-item:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

@media (max-width: 1440px) {
  .services-section .services-wrap .services-list .service-item {
    height: 331px;
  }
}

@media (max-width: 1200px) {
  .services-section .services-wrap .services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .services-section {
    margin-top: 56px;
  }
  .services-section .services-wrap .title-wrap .caption {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .services-section .services-wrap .title-wrap .description {
    font-size: 14px;
    line-height: 20px;
  }
  .services-section .services-wrap {
    row-gap: 24px;
  }
  .services-section .services-wrap .services-list .service-item {
    padding: 24px;
  }
  .services-section
    .services-wrap
    .services-list
    .service-item
    .service-item-title-wrap
    .service-item-title {
    font-size: 20px;
  }
  .services-section
    .services-wrap
    .services-list
    .service-item
    .service-item-title-wrap
    .service-item-description {
    font-size: 14px;
    line-height: 21px;
  }
  .services-section
    .services-wrap
    .services-list
    .service-item
    .service-item-title-wrap {
    row-gap: 4px;
  }
}

@media (max-width: 650px) {
  .services-section .services-wrap .services-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* About Section */

.about-section {
  margin-top: 59px;
  padding-top: 79px;
  padding-bottom: 36px;
  position: relative;
}

.about-section .about-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 60px;
  position: relative;
}

.about-section .about-wrap .title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-section .about-wrap .title-wrap .section-title {
  font-family: DM Sans;
  font-size: 12px;
  background: linear-gradient(
    90deg,
    #cacaca 0%,
    #ffffff 19.64%,
    #ffffff 50.14%,
    #ffffff 81.14%,
    #cacaca 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 8px 12px;
  border: 0.5px solid #80808099;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  font-weight: 500;
}

.about-section .about-wrap .title-wrap .caption {
  font-family: DM Sans, sans-serif;
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 46px;
  font-weight: 500;
  background: linear-gradient(
    90deg,
    #909090 0%,
    #ffffff 15.3%,
    #ffffff 52.13%,
    #ffffff 84.73%,
    #909090 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.about-section .about-wrap .title-wrap .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 24px;
}
.about-section .about-wrap .title-wrap .about-content .description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #a6acb6;
  max-width: 960px;
}

.about-section .about-wrap .title-wrap .about-content .more {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  text-decoration: underline;
  color: #c4cad4;
}

.about-section .about-wrap .counter-wrap {
  display: flex;
  align-items: center;
  column-gap: 34px;
  position: relative;
}
.about-section .about-wrap .counter-wrap .counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-section .about-wrap .counter-wrap .counter-item .count {
  font-size: 56px;
  line-height: 64px;
  font-weight: 600;
  background: linear-gradient(
    108.79deg,
    #cfcfcf 20.47%,
    rgba(255, 255, 255, 0.85) 53.8%,
    #ffffff 82.64%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-section .about-wrap .counter-wrap .counter-item .description {
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
}

.about-section .about-wrap .counter-wrap .divider {
  width: 1px;
  height: 60px;
  background-color: #ffffff;
  opacity: 0.2;
}

.about-section .about-wrap .counter-wrap .counter-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.about-section .about-wrap .counter-wrap .counter-bg.counter-bg-vertical {
  display: none;
}

@media (max-width: 1440px) {
  .about-section {
    margin-top: 61px;
    padding-bottom: 46px;
  }
  .about-section .about-wrap {
    row-gap: 36px;
  }
  .about-section .about-wrap .counter-wrap .counter-item .count {
    font-size: 48px;
    line-height: 56px;
  }
  .about-section .about-wrap .title-wrap .about-content .description {
    max-width: 690px;
  }
}

@media (max-width: 992px) {
  .about-section .about-wrap .counter-wrap .counter-bg {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-section {
    margin-top: 56px;
    padding-top: 0;
    padding-bottom: 40px;
  }
  .about-section .about-wrap .title-wrap .caption {
    margin-bottom: 8px;
  }
  .about-section .about-wrap .title-wrap .caption {
    font-size: 24px;
    line-height: 30px;
  }
  .about-section .about-wrap .title-wrap .about-content .description {
    font-size: 14px;
    line-height: 18px;
    max-width: 630px;
  }
  .about-section .about-wrap {
    row-gap: 49px;
  }
}

@media (max-width: 650px) {
  .about-section .about-wrap .counter-wrap {
    flex-direction: column;
    row-gap: 34px;
  }
  .about-section .about-wrap .counter-wrap .divider {
    height: 1px;
    width: 51px;
  }
  .about-section .about-wrap .counter-wrap .counter-bg {
    max-width: unset;
  }
  .about-section .about-wrap .counter-wrap .counter-bg.counter-bg-vertical {
    display: block;
  }
  .about-section .about-wrap .counter-wrap .counter-bg.counter-bg-horizontal {
    display: none;
  }
}

@media (max-width: 375px) {
  .about-section .about-wrap {
    row-gap: 36px;
  }
  .about-section .about-wrap .counter-wrap .counter-item .count {
    font-size: 40px;
  }
}

/* Projects Section */

.projects-section {
  margin-top: 74px;
}

.projects-section .projects-wrap {
  display: flex;
  flex-direction: column;
}
.projects-section .projects-wrap .title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
.projects-section .projects-wrap .title-wrap .section-title {
  font-family: DM Sans;
  font-size: 12px;
  background: linear-gradient(
    90deg,
    #cacaca 0%,
    #ffffff 19.64%,
    #ffffff 50.14%,
    #ffffff 81.14%,
    #cacaca 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  padding: 8px 12px;
  border: 0.5px solid #80808099;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  font-weight: 500;
}

.projects-section .projects-wrap .title-wrap .caption {
  font-family: DM Sans, sans-serif;
  font-size: 40px;

  font-weight: 600;
  text-align: center;
  background: linear-gradient(
      90deg,
      #909090 0%,
      #ffffff 32%,
      #ffffff 52.13%,
      #ffffff 77.26%,
      #909090 100%
    ),
    linear-gradient(
      90deg,
      #909090 0%,
      #ffffff 32%,
      #ffffff 52.13%,
      #ffffff 77.26%,
      #909090 100%
    );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 12px;
  margin-bottom: 4px;
}

.projects-section .projects-wrap .title-wrap .description {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #a8aeb8;
}

/* .projects-section .projects-wrap .projects-list {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px;
} */

.projects-section .projects-wrap .projects-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

/* .projects-section .projects-wrap .projects-list .project-item:first-child {
  grid-column-start: 1;
  grid-column-end: 3;
} */

.projects-section .projects-wrap .projects-list .project-item {
  height: 400px;
  overflow: hidden;
  position: relative;
  padding: 28px;
  background-color: #101820;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 1px solid #6666664d;
}
/* .projects-section .projects-wrap .projects-list .project-item:nth-child(2),
.projects-section .projects-wrap .projects-list .project-item:nth-child(3) {
  height: 348px;
} */

.projects-section .projects-wrap .projects-list .project-item:nth-child(5n + 1),
.projects-section
  .projects-wrap
  .projects-list
  .project-item:nth-child(5n + 2) {
  grid-column: span 3;
  height: 400px;
}

.projects-section .projects-wrap .projects-list .project-item:nth-child(5n + 3),
.projects-section .projects-wrap .projects-list .project-item:nth-child(5n + 4),
.projects-section
  .projects-wrap
  .projects-list
  .project-item:nth-child(5n + 5) {
  grid-column: span 2;
  height: 348px;
}

.projects-section
  .projects-wrap
  .projects-list
  .project-item:nth-child(5n + 3)
  .caption-wrap
  .project-title,
.projects-section
  .projects-wrap
  .projects-list
  .project-item:nth-child(5n + 4)
  .caption-wrap
  .project-title,
.projects-section
  .projects-wrap
  .projects-list
  .project-item:nth-child(5n + 5)
  .caption-wrap
  .project-title {
  font-size: 22px;
  line-height: 28px;
}

.projects-section
  .projects-wrap
  .projects-list
  .project-item:nth-child(5n + 3)
  .caption-wrap
  .project-info-wrap
  p,
.projects-section
  .projects-wrap
  .projects-list
  .project-item:nth-child(5n + 4)
  .caption-wrap
  .project-info-wrap
  p,
.projects-section
  .projects-wrap
  .projects-list
  .project-item:nth-child(5n + 5)
  .caption-wrap
  .project-info-wrap
  p {
  font-size: 14px;
  line-height: 18px;
}

.projects-section .projects-wrap .projects-list .project-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    344.1deg,
    rgba(16, 24, 32, 0) 30.13%,
    rgba(16, 24, 32, 0.7) 60.29%,
    rgba(16, 24, 32, 0.8) 65.18%,
    rgba(16, 24, 32, 0.9) 71.29%,
    #101820 81.38%
  );
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}

.projects-section .projects-wrap .projects-list .project-item:hover::after {
  background: linear-gradient(
    344.1deg,
    rgba(16, 24, 32, 0.2) 30.13%,
    rgba(16, 24, 32, 0.8) 60.29%,
    rgba(16, 24, 32, 0.9) 65.18%,
    rgba(16, 24, 32, 0.95) 71.29%,
    #101820 81.38%
  );
}
.projects-section .projects-wrap .projects-list .project-item .caption-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.projects-section
  .projects-wrap
  .projects-list
  .project-item
  .caption-wrap
  .project-title {
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
}
.projects-section
  .projects-wrap
  .projects-list
  .project-item
  .caption-wrap
  .project-info-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.projects-section
  .projects-wrap
  .projects-list
  .project-item
  .caption-wrap
  .project-info-wrap
  p {
  color: #8a909a;
  font-size: 16px;
  line-height: 20px;
}
.projects-section
  .projects-wrap
  .projects-list
  .project-item
  .caption-wrap
  .project-info-wrap
  ul {
  padding-left: 20px;
}
.projects-section
  .projects-wrap
  .projects-list
  .project-item
  .caption-wrap
  .project-info-wrap
  ul
  li {
  list-style: disc;
  color: #8a909a;
  font-size: 16px;
  line-height: 22px;
}
.projects-section .projects-wrap .projects-list .project-item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.3s ease-in;
  -webkit-transition: transform 0.3s ease-in;
  -moz-transition: transform 0.3s ease-in;
  -ms-transition: transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
}
.projects-section .projects-wrap .projects-list .project-item:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.projects-section .projects-wrap .button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.projects-section .projects-wrap .button-wrap .all-projects {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
  height: 48px;
  width: 175px;
  justify-content: center;
  color: white;
  border: 0.6px solid #66666666;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  background: #ffffff0d;
  backdrop-filter: blur(50px);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.projects-section .projects-wrap .button-wrap .all-projects .icon-star {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
}
.projects-section .projects-wrap .button-wrap .all-projects:hover {
  background: #ffffff1a;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.projects-section .projects-wrap .button-wrap .all-projects:hover .icon-star {
  transform: rotate(360deg) scale(1.2);
  -webkit-transform: rotate(360deg) scale(1.2);
  -moz-transform: rotate(360deg) scale(1.2);
  -ms-transform: rotate(360deg) scale(1.2);
  -o-transform: rotate(360deg) scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1.3);
  -webkit-filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1.3);
  animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -o-animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1440px) {
  .projects-section {
    margin-top: 66px;
  }
}

@media (max-width: 992px) {
  .projects-section {
    margin-top: 34px;
  }
  .projects-section .projects-wrap .title-wrap .caption {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .projects-section .projects-wrap .title-wrap .description {
    font-size: 14px;
    line-height: 20px;
  }

  .projects-section .projects-wrap .projects-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-section .projects-wrap .projects-list .project-item {
    grid-column: span 1;
    height: 348px;
    padding: 24px;
  }

  .projects-section
    .projects-wrap
    .projects-list
    .project-item:nth-child(3n + 1) {
    grid-column: span 2;
    height: 348px;
  }

  .projects-section
    .projects-wrap
    .projects-list
    .project-item:nth-child(3n + 2),
  .projects-section
    .projects-wrap
    .projects-list
    .project-item:nth-child(3n + 3) {
    grid-column: span 1;
    height: 348px;
  }

  .projects-section
    .projects-wrap
    .projects-list
    .project-item
    .caption-wrap
    .project-title {
    font-size: 20px !important;
  }

  .projects-section
    .projects-wrap
    .projects-list
    .project-item
    .caption-wrap
    .project-info-wrap
    p {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .projects-section
    .projects-wrap
    .projects-list
    .project-item
    .caption-wrap
    .project-info-wrap
    ul
    li {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .projects-section .projects-wrap .button-wrap {
    margin-top: 24px;
  }
  .projects-section .projects-wrap .title-wrap {
    margin-bottom: 36px;
  }
}

@media (max-width: 650px) {
  .projects-section .projects-wrap .projects-list {
    grid-template-columns: 1fr;
  }
  .projects-section .projects-wrap .projects-list .project-item {
    grid-column: span 1 !important;
  }
}

@media (max-width: 442px) {
  .projects-section {
    margin-top: 22px;
  }
}

@media (max-width: 375px) {
  .projects-section .projects-wrap .title-wrap {
    margin-bottom: 24px;
  }
}

/* Mission Section */

.mission-section {
  margin-top: 50px;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.mission-section .mission-wrap .text {
  font-size: 46px;
  line-height: 54px;
  font-family: DM Sans, sans-serif;
  max-width: 1370px;
  color: white;
  position: relative;
  z-index: 2;
}

.mission-section .mission-wrap .text .word {
  color: #8b919b;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}

.mission-wrap .text .word.is-white {
  color: white;
}

.mission-section .grid {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: -1;
}

.mission-section .circle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  max-width: 483px;
  z-index: 0;
  object-fit: cover;
}

@media (max-width: 1440px) {
  .mission-section .mission-wrap .text {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 768px) {
  .mission-section {
    padding: 0;
    margin-top: 56px;
  }
  .mission-section .circle {
    max-width: 408px;
    right: -200px;
  }
}

@media (max-width: 442px) {
  .mission-section .mission-wrap .text {
    font-size: 26px;
    line-height: 32px;
  }
}

@media (max-width: 375px) {
  .mission-section .mission-wrap .text {
    font-size: 24px;
    line-height: 30px;
  }
}

/* News Section */
.news-section {
  margin-top: 44px;
  margin-bottom: 144px;
  scroll-margin-top: 100px;
}

.news-section .news-wrap {
  display: flex;
  flex-direction: column;
}
.news-section .news-wrap .title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
.news-section .news-wrap .title-wrap .section-title {
  font-family: DM Sans;
  font-size: 12px;
  background: linear-gradient(
    90deg,
    #cacaca 0%,
    #ffffff 19.64%,
    #ffffff 50.14%,
    #ffffff 81.14%,
    #cacaca 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  padding: 8px 12px;
  border: 0.5px solid #80808099;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  font-weight: 500;
}

.news-section .news-wrap .title-wrap .caption {
  font-family: DM Sans, sans-serif;
  font-size: 40px;

  font-weight: 600;
  text-align: center;
  background: linear-gradient(
      90deg,
      #909090 0%,
      #ffffff 32%,
      #ffffff 52.13%,
      #ffffff 77.26%,
      #909090 100%
    ),
    linear-gradient(
      90deg,
      #909090 0%,
      #ffffff 32%,
      #ffffff 52.13%,
      #ffffff 77.26%,
      #909090 100%
    );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 12px;
  margin-bottom: 4px;
}

.news-section .news-wrap .title-wrap .description {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #a8aeb8;
}

.news-section .news-wrap .button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.news-section .news-wrap .button-wrap .all-news {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
  height: 48px;
  width: 175px;
  justify-content: center;
  color: white;
  border: 0.6px solid #66666666;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  background: #ffffff0d;
  backdrop-filter: blur(50px);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.news-section .news-wrap .button-wrap .all-news .icon-star {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
}
.news-section .news-wrap .button-wrap .all-news:hover {
  background: #ffffff1a;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.news-section .news-wrap .button-wrap .all-news:hover .icon-star {
  transform: rotate(360deg) scale(1.2);
  -webkit-transform: rotate(360deg) scale(1.2);
  -moz-transform: rotate(360deg) scale(1.2);
  -ms-transform: rotate(360deg) scale(1.2);
  -o-transform: rotate(360deg) scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1.3);
  -webkit-filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1.3);
  animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -o-animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes starShine {
  0% {
    transform: rotate(0deg) scale(1);
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0)) brightness(1);
  }
  50% {
    transform: rotate(180deg) scale(1.3);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5)) brightness(1.5);
  }
  100% {
    transform: rotate(360deg) scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1.3);
  }
}

@-webkit-keyframes starShine {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    -webkit-filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0)) brightness(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1.3);
    -webkit-filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5))
      brightness(1.5);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1.2);
    -webkit-filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3))
      brightness(1.3);
  }
}

@-moz-keyframes starShine {
  0% {
    -moz-transform: rotate(0deg) scale(1);
    -moz-filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0)) brightness(1);
  }
  50% {
    -moz-transform: rotate(180deg) scale(1.3);
    -moz-filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5)) brightness(1.5);
  }
  100% {
    -moz-transform: rotate(360deg) scale(1.2);
    -moz-filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1.3);
  }
}

@-ms-keyframes starShine {
  0% {
    -ms-transform: rotate(0deg) scale(1);
    -ms-filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0)) brightness(1);
  }
  50% {
    -ms-transform: rotate(180deg) scale(1.3);
    -ms-filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5)) brightness(1.5);
  }
  100% {
    -ms-transform: rotate(360deg) scale(1.2);
    -ms-filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1.3);
  }
}

@-o-keyframes starShine {
  0% {
    -o-transform: rotate(0deg) scale(1);
    -o-filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0)) brightness(1);
  }
  50% {
    -o-transform: rotate(180deg) scale(1.3);
    -o-filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5)) brightness(1.5);
  }
  100% {
    -o-transform: rotate(360deg) scale(1.2);
    -o-filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1.3);
  }
}

.news-section .news-wrap .news-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 16px;
  column-gap: 12px;
}
.news-section .news-wrap .news-list .news-item {
  position: relative;
  height: 448px;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid #6666664d;
}

.news-section .news-wrap .news-list .news-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(
      179.99deg,
      rgba(16, 24, 32, 0) 62.39%,
      rgba(16, 24, 32, 0.7) 93.08%,
      rgba(16, 24, 32, 0.8) 98.06%,
      rgba(16, 24, 32, 0.9) 104.28%,
      #101820 114.54%
    );
}

.news-section .news-wrap .news-list .news-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  object-position: center;
  transition: transform 0.3s ease-in;
  -webkit-transition: transform 0.3s ease-in;
  -moz-transition: transform 0.3s ease-in;
  -ms-transition: transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
}

.news-section .news-wrap .news-list .news-item:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.news-section .news-wrap .news-list .news-item .media-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
.news-section .news-wrap .news-list .news-item .media-caption .date {
  font-size: 12px;
  line-height: 20px;
  color: white;
}
.news-section .news-wrap .news-list .news-item .media-caption .title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #f3f3f3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-section
  .news-wrap
  .news-list
  .news-item:is(:nth-child(1), :nth-child(2), :nth-child(6), :nth-child(7)) {
  grid-column: span 3;
  grid-row: span 2;
  height: 347px;
}

.news-section
  .news-wrap
  .news-list
  .news-item:is(:nth-child(3), :nth-child(4), :nth-child(5)) {
  grid-column: span 2;
}

@media (max-width: 1440px) {
  .news-section {
    margin-top: 66px;
    margin-bottom: 140px;
  }
}

@media (max-width: 992px) {
  .news-section {
    margin-top: 34px;
  }
  .news-section .news-wrap .title-wrap .caption {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .news-section .news-wrap .title-wrap .description {
    font-size: 14px;
    line-height: 20px;
  }
  .news-section .news-wrap .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .news-section
    .news-wrap
    .news-list
    .news-item:is(:nth-child(1), :nth-child(2), :nth-child(6), :nth-child(7)) {
    grid-column: span 1;
    grid-row: span 1;
    height: 366px;
  }

  .news-section
    .news-wrap
    .news-list
    .news-item:is(:nth-child(3), :nth-child(4), :nth-child(5)) {
    grid-column: span 1;
    height: 366px;
  }
  .news-section .news-wrap .news-list .news-item:nth-child(5) {
    display: none;
  }
  .news-section .news-wrap .button-wrap {
    margin-top: 24px;
  }
  .news-section .news-wrap .title-wrap {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .news-section {
    margin-bottom: 56px;
  }
}
@media (max-width: 650px) {
  .news-section .news-wrap .news-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 375px) {
  .news-section .news-wrap .title-wrap {
    margin-bottom: 24px;
  }
  .news-section {
    margin-bottom: 70px;
  }
}

/* Footer */

/* Useful Links */

.useful-links {
  height: 144px;
}

.useful-links .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid #d2dade26;
  border-bottom: none;
  border-left: none;
}

.useful-links .swiper-slide .title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #ffffffe5;
  display: block;
}
.useful-links .swiper-slide .links-wrap {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.useful-links .swiper-slide .links-wrap .site {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #a8abaf;
}

.useful-links .swiper-slide .links-wrap i {
  font-size: 20px;
  color: #bcbcc3;
}

/* Footer */

footer {
  position: relative;
  overflow: hidden;
}
footer .bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: -1;
  max-width: 100%;
}

.footer {
  border-top: 1px solid #d2dade26;
}

.footer .footer-top {
  padding-top: 64px;
  padding-bottom: 102px;
}
.footer .footer-top .wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 200px;
}

.footer .footer-top .wrapper .footer-links-wrap {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
}
.footer .footer-top .wrapper .footer-links-wrap .link-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 288px;
}
.footer .footer-top .wrapper .footer-links-wrap .main-link {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.footer .footer-top .wrapper .footer-links-wrap .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer-top .wrapper .footer-links-wrap .links .link {
  font-size: 16px;
  line-height: 24px;
  color: #a8aeb8;
  letter-spacing: 0;
}

.footer .footer-top .wrapper .footer-links-wrap .main-links-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer .footer-top .wrapper .social-medias {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .footer-top .wrapper .social-media-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 24px;
}
.footer .footer-top .wrapper .social-media-wrap .copyright-links {
  display: none;
  align-items: center;
  column-gap: 24px;
}
.footer .footer-top .wrapper .social-media-wrap .copyright-links a {
  font-size: 12px;
  line-height: 20px;
  text-decoration: underline;
}
.footer .footer-top .wrapper .social-media-wrap .copyright-links button {
  font-size: 12px;
  line-height: 20px;
  text-decoration: underline;
  color: #f1f1f1;
}
.footer .footer-top .wrapper .social-medias .social-media {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid #6c6c6c66;
  color: white;
  font-size: 24px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: #e7e7eb2e;
  backdrop-filter: blur(50px);
}

/* Footer Bottom */

.footer .footer-bottom {
  padding: 24px 0;
  border-top: 1px solid #d2dade26;
}
.footer .footer-bottom .footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer .footer-bottom .footer-bottom-wrap .logo {
  display: flex;
}
.footer .footer-bottom .footer-bottom-wrap .logo img {
  width: 221.33px;
  height: 48px;
}
.footer .footer-bottom .footer-bottom-wrap .copyright-wrap {
  display: flex;
  align-items: center;
  column-gap: 36px;
}
.footer .footer-bottom .footer-bottom-wrap .copyright-wrap .privacy-policy {
  font-size: 12px;
  line-height: 20px;
  text-decoration: underline;
  color: #f1f1f1;
}
.footer .footer-bottom .footer-bottom-wrap .copyright-wrap .site-map {
  font-size: 12px;
  line-height: 20px;
  text-decoration: underline;
  color: #f1f1f1;
}
.footer .footer-bottom .footer-bottom-wrap .copyright-wrap .update {
  font-size: 12px;
  line-height: 20px;
  color: #a8aeb8;
}

/* Site Map Modal */

.site-map-modal .modal-content .modal-body .site-map-list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.site-map-modal .modal-content .modal-body .site-map-list ul {
  padding-left: 26px;
  margin-top: 16px;
}
.site-map-modal .modal-content .modal-body .site-map-list ul li {
  list-style: disc;
}

.site-map-modal .modal-content .modal-body .site-map-list > li > a {
  padding-left: 12px;
  position: relative;
}

.site-map-modal .modal-content .modal-body .site-map-list li a {
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
}

.site-map-modal .modal-content .modal-body .site-map-list > li > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #3e2297;
}

@media (max-width: 992px) {
  .footer .footer-top {
    padding-bottom: 24px;
    padding-top: 40px;
  }
  .footer .footer-top .wrapper {
    flex-direction: column;
    gap: 54px;
  }
  .footer .footer-top .wrapper .social-media-wrap {
    width: 100%;
  }
  .footer .footer-top .wrapper .social-media-wrap .copyright-links {
    display: flex;
  }
  .footer .footer-top .wrapper .social-medias {
    flex-direction: row;

    gap: 12px;
  }
  .footer .footer-top .wrapper .footer-links-wrap {
    flex-wrap: wrap;
    row-gap: 40px;
    justify-content: left;
    column-gap: 75px;
  }
  .footer .footer-top .wrapper .footer-links-wrap .link-box:nth-child(2) {
    order: -1;
  }
  .footer .footer-bottom .footer-bottom-wrap .privacy-policy {
    display: none;
  }
  .footer .footer-bottom .footer-bottom-wrap .copyright-wrap .site-map {
    display: none;
  }
}

@media (max-width: 768px) {
  footer .bg {
    height: 65%;
    object-fit: cover;
  }
  .footer .footer-bottom .footer-bottom-wrap {
    flex-direction: column;
    align-items: start;
  }
  .footer .footer-bottom .footer-bottom-wrap .copyright-wrap {
    flex-direction: column;
    align-items: start;
    row-gap: 10px;
  }
}

@media (max-width: 560px) {
  .footer .footer-bottom .footer-bottom-wrap {
    flex-direction: column;
    row-gap: 24px;
    align-items: flex-start;
  }
}

@media (max-width: 442px) {
  .footer .footer-top .wrapper .footer-links-wrap .link-box:nth-child(2) {
    order: 0;
  }
  .footer .footer-top .wrapper .footer-links-wrap {
    column-gap: 40px;
  }
  .footer .footer-top .wrapper .footer-links-wrap .link-box {
    max-width: 100%;
  }
}

/* Inner Page */

.inner-page-wrap {
  position: relative;
  overflow: hidden;
  flex: 1;
}
.inner-page {
  padding-top: 38px;
  padding-bottom: 140px;
  flex: 1;
}
.inner-page .page-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.inner-page .page-header .breadcrumb {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.inner-page .page-header .breadcrumb .circle {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.inner-page .page-header .breadcrumb .link {
  font-size: 12px;
  line-height: 22px;
  font-weight: 300;
  color: #959595;
}
.inner-page .page-header .breadcrumb .link.current {
  pointer-events: none;
  color: #fff;
}
.inner-page .page-header .page-title {
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(
    90deg,
    #909090 -4.1%,
    #ffffff 6.51%,
    #ffffff 52.23%,
    #ffffff 92.81%,
    #909090 103.95%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 36px;
  text-align: center;
  padding-inline: 20px;
}
.inner-page .page-header .page-description {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #a8aeb8;
  margin-top: 8px;
  max-width: 666px;
  text-align: center;
}

@media (max-width: 992px) {
  .inner-page .page-header .page-title {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .inner-page .page-header .page-title {
    margin-top: 16px;
    font-size: 32px;
    padding-inline: 20px;
    text-align: center;
    width: 100%;
  }

  .inner-page .page-header .page-description {
    margin-top: 4px;
    padding-inline: 20px;
  }
}

@media (max-width: 442px) {
  .inner-page .page-header .page-title {
    font-size: 28px;
  }
}

/* Search Page */

.inner-page-wrap .light {
  position: absolute;
  z-index: -1;
}
.inner-page-wrap .light.left {
  left: 0;
  top: 30px;
}
.inner-page-wrap .light.right {
  right: 0;
  top: 200px;
}

.search-page {
  max-width: 584px;
  margin: 0 auto;
  margin-top: 36px;
  row-gap: 36px;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.search-page .search-box {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  align-items: center;
}
.search-page .search-box .input-wrap {
  width: 100%;
  position: relative;
}
.search-page .search-box .input-wrap input {
  background: #ffffff0d;
  width: 100%;
  padding: 16px 18px;
  padding-left: 52px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 0.7px solid #84848466;
  font-size: 16px;
}

.search-page .search-box .input-wrap i {
  font-size: 24px;
  color: white;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.search-page .search-box .result-count {
  font-size: 14px;
  line-height: 22px;
  color: #8a909a;
}
.search-page .search-results {
  display: flex;
  flex-direction: column;
}
.search-page .search-results .result-item {
  padding: 28px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #a8aeb866;
}

.search-page .search-results .result-item:first-child {
  padding-top: 0;
}

.search-page .search-results .result-item .title {
  font-size: 18px;
  color: #e0e0e0;
}

.search-page .pagination-wrap {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .inner-page-wrap .light {
    display: none;
  }

  .search-page {
    margin-top: 20px;
    row-gap: 24px;
  }
  .inner-page {
    padding-bottom: 56px;
  }
}

/* Services page */
.services-page {
  width: 100%;
  max-width: 998px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}
.services-page .service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 88px;
  scroll-margin-top: 150px;
}

.services-page .service-item:nth-child(even) {
  flex-direction: row-reverse;
}
.services-page .service-item .services-content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.services-page .service-item .services-content .title-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.services-page .service-item .services-content .title-wrap .title {
  font-size: 32px;
  font-weight: 600;
  color: white;
}

.services-page .service-item .services-content .title-wrap .description {
  font-size: 16px;
  line-height: 22px;
  color: #8a909a;
}

.services-page .service-item .services-content .tags {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 8px;
}
.services-page .service-item .services-content .tags .tag {
  padding: 7px 24px;
  background-color: #ffffff0d;
  backdrop-filter: blur(40px);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 1px solid #6666664d;
  transition: background-color 0.3s ease-in;
  -webkit-transition: background-color 0.3s ease-in;
  -moz-transition: background-color 0.3s ease-in;
  -ms-transition: background-color 0.3s ease-in;
  -o-transition: background-color 0.3s ease-in;
  cursor: default;
}
.services-page .service-item .services-content .tags .tag:hover {
  background-color: #ffffff12;
}

.services-page .service-item .img-wrap {
  width: 412px;
  height: 331px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  border: 1px solid #ffffff12;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  background: linear-gradient(
    133.91deg,
    rgba(255, 255, 255, 0.2) -16.27%,
    rgba(255, 255, 255, 0.08) 21%,
    rgba(16, 24, 32, 0) 64.3%
  );
  transition: background 0.3s ease-in;
  -webkit-transition: background 0.3s ease-in;
  -moz-transition: background 0.3s ease-in;
  -ms-transition: background 0.3s ease-in;
  -o-transition: background 0.3s ease-in;
}

.services-page .service-item .img-wrap img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease-in;
  -webkit-transition: transform 0.3s ease-in;
  -moz-transition: transform 0.3s ease-in;
  -ms-transition: transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
  z-index: -1;
}

.services-page .service-item .img-wrap:hover {
  background: linear-gradient(
    133.91deg,
    rgba(255, 255, 255, 0.2) -16.07%,
    rgba(255, 255, 255, 0.09) 21%,
    rgba(16, 24, 32, 0) 64.3%
  );
}

.services-page .service-item .img-wrap:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

@media (max-width: 992px) {
  .services-page {
    max-width: 518px;
    margin-top: 24px;
    row-gap: 40px;
  }
  .services-page .service-item {
    flex-direction: column-reverse !important;
    align-items: center;
    row-gap: 24px;
  }
  .services-page .service-item .services-content {
    align-items: center;
  }
  .services-page .service-item .services-content .title-wrap {
    align-items: center;
  }
  .services-page .service-item .services-content .title-wrap .description {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
  }
  .services-page .service-item .services-content .tags {
    justify-content: center;
  }
  .services-page .service-item .services-content .tags .tag {
    font-size: 14px;
    line-height: 26px;
  }
  .services-page .service-item .services-content .title-wrap .title {
    font-size: 20px;
  }
  .services-page .service-item .services-content {
    row-gap: 16px;
  }
}

@media (max-width: 442px) {
  .services-page {
    row-gap: 24px;
  }
  .services-page .service-item {
    row-gap: 16px;
  }
  .services-page .service-item .img-wrap {
    width: 100%;
  }
}

/* Contact page */
.contact-page {
  margin-top: 48px;
}

.contact-page .contact-info-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 24px;
}

.contact-page .contact-info-wrap .contact-info {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.contact-page .contact-info-wrap .contact-info .icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff0d;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  flex-shrink: 0;
  backdrop-filter: blur(40px);
  border: 1px solid #6666664d;
}
.contact-page .contact-info-wrap .contact-info .contact-info-content {
  display: flex;
  flex-direction: column;
}
.contact-page .contact-info-wrap .contact-info .contact-info-content .item {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}

.contact-page .contact-info-wrap .contact-info .contact-info-content a.item {
  text-decoration: underline;
}

.contact-page .map-wrap {
  margin-top: 28px;
  width: 100%;
  height: 558px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  overflow: hidden;
  border: 1px solid #6666664d;
}

@media (max-width: 992px) {
  .contact-page {
    margin-top: 28px;
  }
  .contact-page .contact-info-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-page .map-wrap {
    height: 318px;
  }
}

@media (max-width: 576px) {
  .contact-page .contact-info-wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* Photo gallery page */

.photo-gallery-page {
  margin-top: 40px;
}

.photo-gallery-page .gallery-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.photo-gallery-page .gallery-wrap .pagination-wrap {
  display: flex;
  justify-content: center;
}

.photo-gallery-page .gallery-wrap .gallery-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.photo-gallery-page .gallery-wrap .gallery-list .gallery-item {
  height: 300px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 1px solid #6666664d;
  overflow: hidden;
}
.photo-gallery-page .gallery-wrap .gallery-list .video-gallery-item {
  height: 300px;
}

/* .photo-gallery-page .gallery-wrap .gallery-list .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
} */
.photo-gallery-page .gallery-wrap .gallery-list .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 992px) {
  .photo-gallery-page {
    margin-top: 24px;
  }
  .photo-gallery-page .gallery-wrap {
    row-gap: 32px;
  }
  .photo-gallery-page .gallery-wrap .gallery-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .photo-gallery-page .gallery-wrap .gallery-list .gallery-item {
    height: 260px;
  }
  .photo-gallery-page .gallery-wrap .gallery-list .video-gallery-item {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .photo-gallery-page .gallery-wrap .gallery-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .photo-gallery-page .gallery-wrap .gallery-list .gallery-item {
    height: 290px;
  }
  .photo-gallery-page .gallery-wrap .gallery-list .video-gallery-item {
    height: 290px;
  }
  .photo-gallery-page .gallery-wrap {
    row-gap: 24px;
  }
}

/* Video Modal and Overlay Styles */
.photo-gallery-page .gallery-wrap .gallery-list .gallery-item {
  position: relative;
  cursor: pointer;
}

/* .photo-gallery-page .gallery-wrap .gallery-list .gallery-item video {
  pointer-events: none;
} */

/* Video overlay play button */
/* .photo-gallery-page .gallery-wrap .gallery-list .gallery-item .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
  z-index: 10;
} */

/* .photo-gallery-page
  .gallery-wrap
  .gallery-list
  .gallery-item
  .video-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
} */

/* .photo-gallery-page .gallery-wrap .gallery-list .gallery-item .video-play-btn {
  width: 42px;
  height: 42px;
  background-color: #586570;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
} */

/* .photo-gallery-page
  .gallery-wrap
  .gallery-list
  .gallery-item
  .video-play-btn
  i {
  font-size: 36px;
} */

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  background: #000;
  border-radius: 20px;
  /* overflow: hidden; */
  animation: modalZoomIn 0.3s ease;
}

@keyframes modalZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.video-modal-content video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.video-modal-close i {
  font-size: 20px;
  color: #333;
}

/* Responsive adjustments for video modal */
@media (max-width: 768px) {
  .video-play-btn {
    width: 60px;
    height: 60px;
  }

  .video-play-btn i {
    font-size: 24px;
  }

  .video-modal-content {
    width: 95%;
    margin: 10px;
  }

  .video-modal-close {
    top: -40px;
    width: 35px;
    height: 35px;
  }

  .video-modal-close i {
    font-size: 16px;
  }
}

/* News Page */
.news-page .news-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 16px;
  column-gap: 12px;
}

.news-page .news-list .news-item {
  grid-column: span 2;

  position: relative;
  height: 448px;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid #6666664d;
}

.news-page .news-list .news-item:nth-child(5n + 1),
.news-page .news-list .news-item:nth-child(5n + 2) {
  grid-column: span 3;
  /* grid-row: span 2; */
  height: 347px; /* büyük kart yüksekliği */
}

.news-page .news-list .news-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(
      179.99deg,
      rgba(16, 24, 32, 0) 62.39%,
      rgba(16, 24, 32, 0.7) 93.08%,
      rgba(16, 24, 32, 0.8) 98.06%,
      rgba(16, 24, 32, 0.9) 104.28%,
      #101820 114.54%
    );
}

.news-page .news-list .news-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  object-position: center;
  transition: transform 0.3s ease-in;
  -webkit-transition: transform 0.3s ease-in;
  -moz-transition: transform 0.3s ease-in;
  -ms-transition: transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
}

.news-page .news-list .news-item:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.news-page .news-list .news-item .media-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
.news-page .news-list .news-item .media-caption .date {
  font-size: 12px;
  line-height: 20px;
  color: white;
}
.news-page .news-list .news-item .media-caption .title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #f3f3f3;
}

.news-page {
  margin-top: 40px;
}
.news-page .news-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.news-page .news-wrap .pagination-wrap {
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .news-page .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-page .news-list .news-item {
    grid-column: span 1;
    height: 384px !important;
  }
  .news-page .news-list .news-item:nth-child(5n + 1),
  .news-page .news-list .news-item:nth-child(5n + 2) {
    grid-column: span 1;
  }

  .news-page .news-list .news-item:nth-child(3n + 1) {
    grid-column: span 2;
    height: 403px;
  }
  .news-page {
    margin-top: 24px;
  }
  .news-page .news-wrap {
    row-gap: 32px;
  }
}

@media (max-width: 576px) {
  .news-page .news-list {
    grid-template-columns: 1fr;
  }
  .news-page .news-list .news-item {
    height: 436px !important;
  }
  .news-page .news-wrap {
    row-gap: 24px;
  }
}

/* About Page */
.about-page {
  margin-top: 32px;
}
.about-page .counter-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 856px;
  margin: 0 auto;
  padding-inline: 20px;
}

.about-page .counter-wrap .counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  background-color: #85858533;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 14px 0px;
  border: 0.6px solid #ffffff33;
  backdrop-filter: blur(18.18181800842285px);
  padding-inline: 10px;
}
.about-page .counter-wrap .counter-item i {
  color: white;
  font-size: 24px;
}
.about-page .counter-wrap .counter-item .count {
  font-size: 20px;
  font-weight: 600;
  color: white;
}
.about-page .counter-wrap .counter-item .description {
  color: #bfbfbf;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

/* .about-page .counter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1071px;
  margin: 0 auto;
  padding-top: 28px;
  padding-inline: 41px;
  border-top: 1px solid #40464d;
}
.about-page .counter-wrap .counter-item {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.about-page .counter-wrap .counter-item i {
  font-size: 24px;
  color: white;
}

.about-page .counter-wrap .counter-item span {
  font-size: 14px;
  line-height: 24px;
  color: #bfbfbf;
} */

/* .about-page .parallax-bg {
  width: 100%;
  height: 565px;
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  margin-top: 28px;
  position: relative;
  background-image: url("../img/about-background.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-page .parallax-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #10182040;
  z-index: 1;
} */

.about-background {
  position: absolute;
  height: 570px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.about-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #101820d9;
}

.about-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.scrolldown-animation-wrap {
  position: absolute;
  z-index: 11;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: 25%;
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 8px;
}

.scrolldown-animation-wrap .mouse {
  width: 20px;
  height: 30px;
  border: 2px solid white;
  border-radius: 60px;
  position: relative;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
}

.scrolldown-animation-wrap .mouse::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-radius: 50%;
  opacity: 1;
  animation: wheel 1s infinite;
  -webkit-animation: wheel 1s infinite;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.scrolldown-animation-wrap span {
  font-size: 10px;
  color: white;
}

@keyframes wheel {
  to {
    opacity: 0;
    top: 20px;
  }
}

@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: 20px;
  }
}

.about-page .content-wrap {
  margin-top: 180px;
}
.about-page .content-wrap .about-text {
  width: 100%;
  max-width: 700px;
  padding-inline: 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 24px;
  scroll-margin-top: 145px;
}
.about-page .content-wrap .about-text .about-title {
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(
    90deg,
    #909090 -4.1%,
    #ffffff 6.51%,
    #ffffff 52.23%,
    #ffffff 92.81%,
    #909090 103.95%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.about-page .content-wrap .about-text .about-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #a8aeb8;
}

/* Enhanced parallax effect for mobile devices */
/* @media (max-width: 768px) {
  .about-page .parallax-bg {
    background-attachment: scroll;
    background-position: center top;
  }
} */

/* Fallback for devices that don't support background-attachment: fixed */
@supports not (background-attachment: fixed) {
  .about-page .parallax-bg {
    background-attachment: scroll;
  }
}

.about-page .structure {
  margin-top: 140px;
  scroll-margin-top: 145px;
}

.about-page .structure-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 38px;
  width: 100%;
}
.about-page .structure-wrap .structure-content {
  width: 100%;
}
.about-page .structure-wrap .structure-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-page .structure-wrap .structure-heading .structure-title {
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(
    93.5deg,
    #909090 1.22%,
    #ffffff 10.79%,
    #ffffff 52.02%,
    #ffffff 88.62%,
    #909090 98.67%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-page .structure-wrap .structure-heading .structure-description {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #a8aeb8;
}

.about-page .structure-wrap .structure-content .director-wrap {
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  /* max-width: 840px; */
  width: 100%;
  margin: 0 auto;
}

.about-page .structure-wrap .structure-content .director-wrap .directory-item {
  background: #ffffff0d;
  display: flex;
  align-items: center;
  column-gap: 16px;
  padding: 22px 24px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 1px solid #6666664d;
}

.about-page
  .structure-wrap
  .structure-content
  .director-wrap
  .directory-item:nth-child(1) {
  grid-column-start: 2;
}
.about-page
  .structure-wrap
  .structure-content
  .director-wrap
  .directory-item:nth-child(2) {
  grid-column-start: 1;
}
.about-page
  .structure-wrap
  .structure-content
  .director-wrap
  .directory-item
  .img-wrap {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.about-page
  .structure-wrap
  .structure-content
  .director-wrap
  .directory-item
  .img-wrap
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-page
  .structure-wrap
  .structure-content
  .director-wrap
  .directory-item
  .director-info {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.about-page
  .structure-wrap
  .structure-content
  .director-wrap
  .directory-item
  .director-info
  .name {
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.about-page
  .structure-wrap
  .structure-content
  .director-wrap
  .directory-item
  .director-info
  .position {
  font-size: 14px;
  color: #a8aeb8;
}

.about-page .structure-wrap .structure-content .staff-list {
  padding-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 12px;
  row-gap: 40px;
  border-top: 1px solid #a8aeb833;
}
.about-page .structure-wrap .structure-content .staff-list .staff {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.about-page .structure-wrap .structure-content .staff-list .staff .name {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}

.about-page .structure-wrap .structure-content .staff-list .staff .position {
  font-size: 14px;
  color: #a8aeb8;
}

.about-page .structure .structure-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.about-page .structure .structure-btn-wrap .structure-btn {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
  height: 42px;
  padding-inline: 16px;
  justify-content: center;
  color: white;
  border: 0.6px solid #66666666;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  background: #ffffff0d;
  backdrop-filter: blur(50px);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.about-page .structure .structure-btn-wrap .structure-btn .icon-star {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
}
.about-page .structure .structure-btn-wrap .structure-btn:hover {
  background: #ffffff1a;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.about-page .structure .structure-btn-wrap .structure-btn:hover .icon-star {
  transform: rotate(360deg) scale(1.2);
  -webkit-transform: rotate(360deg) scale(1.2);
  -moz-transform: rotate(360deg) scale(1.2);
  -ms-transform: rotate(360deg) scale(1.2);
  -o-transform: rotate(360deg) scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1.3);
  -webkit-filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) brightness(1.3);
  animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -o-animation: starShine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-page .covarage {
  margin-top: 140px;
  scroll-margin-top: 145px;
}

.about-page .covarage .covarage-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}
.about-page .covarage .covarage-wrap .covarage-title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(
    90deg,
    #909090 39.8%,
    #ffffff 41.85%,
    #ffffff 50.66%,
    #ffffff 58.49%,
    #909090 60.63%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-page .covarage .covarage-wrap .covarage-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-page .covarage .covarage-wrap .covarage-list .covarage-item {
  display: flex;
  align-items: center;
  column-gap: 16px;
  background: #ffffff0d;
  backdrop-filter: blur(40px);
  padding: 28px 24px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 0.7px solid #6666664d;
}

.about-page .covarage .covarage-wrap .covarage-list .covarage-item .img-wrap {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.about-page
  .covarage
  .covarage-wrap
  .covarage-list
  .covarage-item
  .img-wrap
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.about-page .covarage .covarage-wrap .covarage-list .covarage-item span {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #ffffffe5;
}

.about-page .documents {
  margin-top: 140px;
  scroll-margin-top: 145px;
}

.about-page .documents .documents-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.about-page .documents .documents-wrap .documents-title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(
    90deg,
    #909090 36.22%,
    #ffffff 38.96%,
    #ffffff 50.75%,
    #ffffff 61.23%,
    #909090 64.1%
  );

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 32px;
  border-bottom: 1px solid #a8aeb833;
}

.about-page .documents .documents-wrap .documents-list {
  display: flex;
  flex-direction: column;
}

.about-page .documents .documents-wrap .documents-list .document-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px 0;
}

.about-page
  .documents
  .documents-wrap
  .documents-list
  .document-item
  .name-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.about-page
  .documents
  .documents-wrap
  .documents-list
  .document-item
  .name-wrap
  i {
  font-size: 24px;
  color: #c4c4c4;
}

.about-page
  .documents
  .documents-wrap
  .documents-list
  .document-item
  .name-wrap
  span {
  font-size: 16px;
  font-weight: 500;
  color: #e0e0e0;
}

.about-page .documents .documents-wrap .documents-list .document-item .date {
  text-align: center;
  font-size: 14px;
  color: #828892;
}

.about-page
  .documents
  .documents-wrap
  .documents-list
  .document-item
  .download {
  text-align: right;
  font-size: 24px;
}

.about-page .certificates {
  margin-top: 140px;
}
.about-page .certificates .certificates-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}

.about-page .certificates .certificates-wrap .certificates-title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(
    90deg,
    #909090 32.77%,
    #ffffff 36.23%,
    #ffffff 51.11%,
    #ffffff 64.32%,
    #909090 67.95%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 32px;
  border-bottom: 1px solid #a8aeb833;
}

.about-page .certificates .certificates-wrap .slider-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.about-page
  .certificates
  .certificates-wrap
  .slider-wrapper
  .certificates-swaper {
  width: 100%;
  height: 340px;
  max-width: 816px;
}

.about-page
  .certificates
  .certificates-wrap
  .slider-wrapper
  .certificates-swaper
  .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: end;
  /* width: 412px; */
}

.about-page
  .certificates
  .certificates-wrap
  .slider-wrapper
  .certificates-swaper
  .swiper-slide
  .certificate-item {
  background-color: #202830;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 20px;
  padding-top: 70px;
}

.about-page
  .certificates
  .certificates-wrap
  .slider-wrapper
  .certificates-swaper
  .swiper-slide
  .img-wrap {
  background-color: #3a4249;
  padding: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  /*width: calc(100% - 72px);
  */
  bottom: 106px;
  height: 234px;
}

.about-page
  .certificates
  .certificates-wrap
  .slider-wrapper
  .certificates-swaper
  .swiper-slide
  .img-wrap
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-page
  .certificates
  .certificates-wrap
  .slider-wrapper
  .certificates-swaper
  .swiper-slide
  .certificate-info {
  display: flex;
  align-items: center;
  column-gap: 40px;
  background-color: #3a4249;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  height: 62px;
}

.about-page
  .certificates
  .certificates-wrap
  .slider-wrapper
  .certificates-swaper
  .swiper-slide
  .certificate-info
  .certificate-name {
  font-size: 14px;
  line-height: 19px;
  color: white;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
  box-orient: vertical;
}

.about-page
  .certificates
  .certificates-wrap
  .slider-wrapper
  .certificates-swaper
  .swiper-slide
  .certificate-info
  .certificate-download {
  font-size: 20px;
  flex-shrink: 0;
}

.about-page .certificates .certificates-wrap .slider-wrapper .slider-btn-wrap {
  display: flex;
  justify-content: center;
  column-gap: 12px;
}

.about-page
  .certificates
  .certificates-wrap
  .slider-wrapper
  .slider-btn-wrap
  .slider-btn {
  width: 48px;
  height: 48px;
  background: #ffffff0d;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  backdrop-filter: blur(50px);
  border: 0.5px solid #a8aeb833;
  font-size: 22px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .faq {
  margin-top: 140px;
  display: flex;
  flex-direction: column;
  row-gap: 36px;
  max-width: 700px;
  margin-inline: auto;
  padding: 0 24px;
  scroll-margin-top: 145px;
}
.about-page .faq .faq-title {
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(
    90deg,
    #909090 0%,
    #ffffff 9.82%,
    #ffffff 52.13%,
    #ffffff 89.69%,
    #909090 100%
  );

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.about-page .faq .faq-accordion {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.about-page .faq .faq-accordion .faq-accordion-item {
  background: #ffffff0d;
  backdrop-filter: blur(40px);
  padding: 28px 24px;
  padding-top: 0px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 0.7px solid #6666664d;
}

.about-page .faq .faq-accordion .faq-accordion-item .accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 28px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  color: #ffffffe5;
  text-align: left;
  column-gap: 12px;
}

.about-page .faq .faq-accordion .faq-accordion-item .accordion-btn i {
  font-size: 24px;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.about-page .faq .faq-accordion .faq-accordion-item.active .accordion-btn i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.about-page .faq .faq-accordion .faq-accordion-item .accordion-content {
  display: none;
}

.about-page .faq .faq-accordion .faq-accordion-item .question {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #a8aeb8;
  padding-top: 20px;
  border-top: 0.5px solid #60656a;
  margin-top: 20px;
}

.structure-modal .modal-content {
  max-width: 924px;
}

.structure-modal .modal-content .img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.structure-modal .modal-content .structure-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  /* .about-page .counter-wrap {
    padding-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 24px;
    column-gap: 36px;
  } */
  .about-background {
    height: 660px;
  }
  .about-page .counter-wrap {
    grid-template-columns: repeat(2, 1fr);
    max-width: 432px;
  }
  .about-page .parallax-bg {
    margin-top: 24px;
    height: 301px;
  }
  .about-page .content-wrap {
    margin-top: 112px;
  }
  .about-page .content-wrap .about-text .about-title {
    font-size: 24px;
  }
  .about-page .content-wrap .about-text {
    row-gap: 12px;
  }
  .about-page .content-wrap .about-text .about-description {
    font-size: 14px;
    line-height: 20px;
  }
  .about-page .structure {
    margin-top: 56px;
  }
  .about-page .structure-wrap .structure-heading .structure-title {
    font-size: 24px;
  }
  .about-page .structure-wrap .structure-heading {
    row-gap: 4px;
  }
  .about-page .structure-wrap {
    row-gap: 32px;
  }
  .about-page .structure-wrap .structure-content .director-wrap {
    padding-bottom: 32px;
    grid-template-columns: repeat(2, 1fr);
    /* max-width: 600px; */
  }
  .about-page
    .structure-wrap
    .structure-content
    .director-wrap
    .directory-item:nth-child(1) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
  }
  .about-page
    .structure-wrap
    .structure-content
    .director-wrap
    .directory-item:nth-child(2) {
    grid-column-start: auto;
  }

  .about-page
    .structure-wrap
    .structure-content
    .director-wrap
    .directory-item {
    row-gap: 8px;
  }
  .about-page
    .structure-wrap
    .structure-content
    .director-wrap
    .directory-item
    .director-info
    .name {
    font-size: 18px;
  }
  .about-page .structure-wrap .structure-content .staff-list {
    padding-top: 32px;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 26px;
  }
  .about-page .structure-wrap .structure-content .staff-list .staff .name {
    font-size: 16px;
  }
  .about-page .covarage {
    margin-top: 56px;
  }
  .about-page .covarage .covarage-wrap .covarage-title {
    font-size: 24px;
  }
  .about-page .covarage .covarage-wrap {
    row-gap: 24px;
  }
  .about-page .covarage .covarage-wrap .covarage-list {
    column-gap: 12px;
    row-gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .covarage .covarage-wrap .covarage-list .covarage-item {
    padding: 19px 24px;
  }
  .about-page .documents {
    margin-top: 56px;
  }
  .about-page .documents .documents-wrap .documents-title {
    font-size: 24px;
    padding-bottom: 24px;
  }
  .about-page .documents .documents-wrap {
    row-gap: 24px;
  }
  .about-page .certificates {
    margin-top: 56px;
  }
  .about-page .certificates .certificates-wrap .certificates-title {
    font-size: 24px;
    padding-bottom: 24px;
  }
  .about-page .certificates .certificates-wrap {
    row-gap: 24px;
  }
  .about-page .faq {
    margin-top: 56px;
    row-gap: 24px;
  }
  .about-page .faq .faq-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  /* .about-page .counter-wrap .counter-item:nth-child(3) {
    order: 1;
  } */
  /* .about-page .structure-wrap .structure-content .director-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-page
    .structure-wrap
    .structure-content
    .director-wrap
    .directory-item:nth-child(1) {
    width: 100%;
  } */
  .about-background {
    height: 624px;
  }
}

@media (max-width: 576px) {
  .about-page
    .structure-wrap
    .structure-content
    .director-wrap
    .directory-item:nth-child(1) {
    width: 100%;
  }
  .about-background {
    height: 644px;
  }
  .about-page .content-wrap {
    margin-top: 100px;
  }
  /* .about-page .counter-wrap .counter-item:nth-child(3) {
    order: -1;
  } */
  /* .about-page .counter-wrap {
    row-gap: 14px;
    column-gap: 14px;
    padding-inline: 14px;
    padding-top: 14px;
    flex-direction: column-reverse;
  } */
  .about-page .content-wrap .about-text {
    row-gap: 16px;
    padding-inline: 20px;
  }
  .about-page .structure-wrap .structure-heading {
    row-gap: 8px;
  }
  .about-page .structure-wrap {
    row-gap: 24px;
  }
  .about-page .structure-wrap .structure-content .director-wrap {
    grid-template-columns: repeat(1, 1fr);
    /* gap: 24px;
    padding-bottom: 24px; */
  }
  .about-page
    .structure-wrap
    .structure-content
    .director-wrap
    .directory-item:nth-child(1) {
    grid-column-start: 1;
  }

  .about-page .structure-wrap .structure-content .staff-list {
    padding-top: 24px;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 24px;
  }
  .about-page .structure .structure-btn-wrap {
    margin-top: 32px;
  }
  .about-page .covarage .covarage-wrap .covarage-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 12px;
  }
  .about-page .documents .documents-wrap .documents-list .document-item .date {
    display: none;
  }
  .about-page .documents .documents-wrap .documents-list .document-item {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .certificates .certificates-wrap .slider-wrapper {
    row-gap: 24px;
  }
  .about-page .faq .faq-accordion .faq-accordion-item {
    padding: 20px;
    padding-top: 0;
  }
  .about-page .faq .faq-accordion .faq-accordion-item .accordion-btn {
    padding-top: 20px;
  }
}

@media (max-width: 440px) {
  .about-background {
    height: 660px;
  }
}
@media (max-width: 375px) {
  .about-background {
    height: 680px;
  }
}

/* Projects Page */
.inner-page .page-header .project-banner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  height: 304px;
  object-fit: cover;
  margin-bottom: 28px;
  margin-top: 48px;
}

.projects-page {
  margin-top: 40px;
}
.projects-page .projects-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 140px;
}
/* .projects-page .projects-wrap .projects-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px;
} */
.projects-page .projects-wrap .projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
/* .projects-page .projects-wrap .projects-grid .project-item:first-child {
  grid-column-start: 1;
  grid-column-end: 3;
} */

.projects-page .projects-wrap .projects-grid .project-item {
  height: 400px;
  overflow: hidden;
  position: relative;
  padding: 28px;
  background-color: #101820;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 1px solid #6666664d;
}
/* .projects-page .projects-wrap .projects-grid .project-item:nth-child(2),
.projects-page .projects-wrap .projects-grid .project-item:nth-child(3) {
  height: 348px;
} */

.projects-page .projects-wrap .projects-grid .project-item:nth-child(5n + 1),
.projects-page .projects-wrap .projects-grid .project-item:nth-child(5n + 2) {
  grid-column: span 3;
  height: 400px;
}

.projects-page .projects-wrap .projects-grid .project-item:nth-child(5n + 3),
.projects-page .projects-wrap .projects-grid .project-item:nth-child(5n + 4),
.projects-page .projects-wrap .projects-grid .project-item:nth-child(5n + 5) {
  grid-column: span 2;
  height: 348px;
}

.projects-page
  .projects-wrap
  .projects-grid
  .project-item:nth-child(5n + 3)
  .caption-wrap
  .project-title,
.projects-page
  .projects-wrap
  .projects-grid
  .project-item:nth-child(5n + 4)
  .caption-wrap
  .project-title,
.projects-page
  .projects-wrap
  .projects-grid
  .project-item:nth-child(5n + 5)
  .caption-wrap
  .project-title {
  font-size: 22px;
  line-height: 28px;
}

.projects-page
  .projects-wrap
  .projects-grid
  .project-item:nth-child(5n + 3)
  .caption-wrap
  .project-info-wrap
  p,
.projects-page
  .projects-wrap
  .projects-grid
  .project-item:nth-child(5n + 4)
  .caption-wrap
  .project-info-wrap
  p,
.projects-page
  .projects-wrap
  .projects-grid
  .project-item:nth-child(5n + 5)
  .caption-wrap
  .project-info-wrap
  p {
  font-size: 14px;
  line-height: 18px;
}

.projects-page .projects-wrap .projects-grid .project-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    344.1deg,
    rgba(16, 24, 32, 0) 30.13%,
    rgba(16, 24, 32, 0.7) 60.29%,
    rgba(16, 24, 32, 0.8) 65.18%,
    rgba(16, 24, 32, 0.9) 71.29%,
    #101820 81.38%
  );
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}

.projects-page .projects-wrap .projects-grid .project-item:hover::after {
  background: linear-gradient(
    344.1deg,
    rgba(16, 24, 32, 0.2) 30.13%,
    rgba(16, 24, 32, 0.8) 60.29%,
    rgba(16, 24, 32, 0.9) 65.18%,
    rgba(16, 24, 32, 0.95) 71.29%,
    #101820 81.38%
  );
}
.projects-page .projects-wrap .projects-grid .project-item .caption-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.projects-page
  .projects-wrap
  .projects-grid
  .project-item
  .caption-wrap
  .project-title {
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
}
.projects-page
  .projects-wrap
  .projects-grid
  .project-item
  .caption-wrap
  .project-info-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.projects-page
  .projects-wrap
  .projects-grid
  .project-item
  .caption-wrap
  .project-info-wrap
  p {
  color: #8a909a;
  font-size: 16px;
  line-height: 20px;
}
.projects-page
  .projects-wrap
  .projects-grid
  .project-item
  .caption-wrap
  .project-info-wrap
  ul {
  padding-left: 20px;
}
.projects-page
  .projects-wrap
  .projects-grid
  .project-item
  .caption-wrap
  .project-info-wrap
  ul
  li {
  list-style: disc;
  color: #8a909a;
  font-size: 16px;
  line-height: 22px;
}
.projects-page .projects-wrap .projects-grid .project-item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.3s ease-in;
  -webkit-transition: transform 0.3s ease-in;
  -moz-transition: transform 0.3s ease-in;
  -ms-transition: transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
}
.projects-page .projects-wrap .projects-grid .project-item:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.projects-page .more-projects {
  display: flex;
  flex-direction: column;
}

.projects-page .more-projects .title {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(
    90deg,
    #909090 20.19%,
    #ffffff 32.18%,
    #ffffff 50.1%,
    #ffffff 67.41%,
    #909090 79.57%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 32px;
  border-bottom: 1px solid #a8aeb833;
}

.projects-page .more-projects .projects-list {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.projects-page .more-projects .projects-list .project-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  height: 78px;
  text-align: left;
  min-height: 78px;
}

.projects-page .more-projects .projects-list .project-item.expanded {
  height: auto;
}

.projects-page .more-projects .projects-list .project-item.expanded .name-wrap {
  align-items: flex-start;
}
.projects-page
  .more-projects
  .projects-list
  .project-item.expanded
  .name-wrap
  .name-grid-wrap {
  align-items: start;
}

.projects-page .more-projects .projects-list .project-item .name-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.projects-page
  .more-projects
  .projects-list
  .project-item
  .name-wrap
  .name-grid-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.projects-page
  .more-projects
  .projects-list
  .project-item
  .name-wrap
  .img-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects-page
  .more-projects
  .projects-list
  .project-item
  .name-wrap
  .img-wrap
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.projects-page .more-projects .projects-list .project-item .name-wrap .name {
  font-size: 18px;
  font-weight: 500;
  color: #e0e0e0;
}
.projects-page .more-projects .projects-list .project-item.expanded .info-wrap {
  align-items: start;
}
.projects-page .more-projects .projects-list .project-item .info-wrap {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.projects-page
  .more-projects
  .projects-list
  .project-item.expanded
  .info-wrap
  .info {
  display: block;
}

.projects-page .more-projects .projects-list .project-item .info-wrap .info {
  font-size: 16px;
  color: #828892;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* .projects-page
  .more-projects
  .projects-list
  .project-item.expanded
  .info-wrap
  i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
} */

.projects-page .more-projects .projects-list .project-item .info-wrap i {
  font-size: 14px;
  color: white;
}

.projects-page .more-projects .projects-list .project-item .name-wrap > i {
  display: none;
}

.projects-page .more-projects .coming-soon {
  text-align: center;
  margin-top: 28px;
}
/* .projects-marquee-wrap {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
} */
.projects-marquee-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  position: relative;
  margin-bottom: 28px;
  margin-top: 48px;
}

.projects-marquee .marquee-item {
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-shrink: 0;
}
.projects-marquee .marquee-item .slide-logo {
  height: 48px;
}
.projects-marquee .marquee-item .slide-title {
  font-size: 33px;
  font-weight: 800;
  font-family: DM Sans, sans-serif;
  white-space: nowrap;
  color: #ececec;
}

.projects-marquee .projects-marquee-list {
  display: flex;
  align-items: center;
  column-gap: 64px;
  width: fit-content;
  white-space: nowrap;
  padding: 16px 0;
}

.projects-marquee {
  width: 100%;
}

.projects-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    #101820 0%,
    rgba(16, 24, 32, 0.8) 15%,
    rgba(16, 24, 32, 0) 30%,
    rgba(16, 24, 32, 0) 70%,
    rgba(16, 24, 32, 0.8) 85%,
    #101820 100%
  );
  pointer-events: none;
  z-index: 2;
}
.projects-marquee-wrap .centered-badge {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  align-items: center;
  column-gap: 12px;
  z-index: 999;
  width: 210px;
  height: 80px;
  justify-content: center;
  background: #ffffff12;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 0.6px solid #ffffff0d;

  backdrop-filter: blur(27.999998092651367px);
}
.projects-marquee-wrap .centered-badge .badge-text {
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #f5f5f5;
}
.project-banner-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
}
.project-banner-wrap .marquee-ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  object-fit: contain;
  z-index: -1;
}
/* Marquee Animation */
.projects-marquee .projects-marquee-list.scrolling {
  animation: marqueeScroll 40s linear infinite;
  -webkit-animation: marqueeScroll 40s linear infinite;
}

.projects-marquee .projects-marquee-list.paused {
  animation-play-state: paused;
}

.projects-marquee.reverse .projects-marquee-list.scrolling {
  animation: marqueeScrollReverse 40s linear infinite;
  -webkit-animation: marqueeScrollReverse 40s linear infinite;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

@keyframes marqueeScrollReverse {
  0% {
    transform: translateX(-33.333%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 992px) {
  .projects-page .projects-wrap .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-page .projects-wrap .projects-grid .project-item {
    grid-column: span 1;
    height: 348px;
    padding: 24px;
  }
  .projects-page .projects-wrap .projects-grid .project-item:nth-child(3n + 1) {
    grid-column: span 2;
    height: 348px;
  }
  .projects-page .projects-wrap .projects-grid .project-item:nth-child(3n + 2),
  .projects-page .projects-wrap .projects-grid .project-item:nth-child(3n + 3) {
    grid-column: span 1;
    height: 348px;
  }
  .projects-page
    .projects-wrap
    .projects-grid
    .project-item
    .caption-wrap
    .project-title {
    font-size: 20px !important;
  }
  .projects-page
    .projects-wrap
    .projects-grid
    .project-item
    .caption-wrap
    .project-info-wrap
    p {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .projects-page
    .projects-wrap
    .projects-grid
    .project-item
    .caption-wrap
    .project-info-wrap
    ul
    li {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .projects-page .more-projects .projects-list .project-item .name-wrap > i {
    display: block;
  }
  .projects-marquee-wrap {
    row-gap: 12px;
  }
  .projects-marquee .projects-marquee-list {
    padding: 20px 0;
  }

  .projects-marquee .marquee-item .slide-title {
    font-size: 25px;
  }
  .projects-marquee .marquee-item .slide-logo {
    height: 36px;
  }
  .project-banner-wrap .marquee-ellipse {
    width: 100%;
    /* height: 100%; */
  }

  .inner-page .page-header .project-banner {
    height: 264px;
    margin-bottom: 48px;
  }
  .projects-page {
    margin-top: 24px;
  }
  .projects-page .projects-wrap {
    row-gap: 56px;
  }
  .projects-page .more-projects .title {
    font-size: 20px;
    padding-bottom: 24px;
  }
  .projects-page .more-projects .projects-list .project-item .info-wrap {
    display: none;
  }
  .projects-page
    .more-projects
    .projects-list
    .project-item.expanded
    .info-wrap {
    display: -webkit-box;
  }
  .projects-page .more-projects .projects-list .project-item .info-wrap .info {
    text-align: justify;
    display: block;
  }
  .projects-page .more-projects .projects-list .project-item .info-wrap {
    justify-content: flex-end;
  }
  .projects-page .more-projects .projects-list .project-item {
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    row-gap: 16px;
    height: auto;
  }
  .projects-page .more-projects .projects-list .project-item .info-wrap i {
    display: none;
  }
  .projects-page .more-projects .projects-list .project-item .name-wrap .name {
    font-size: 16px;
  }
  .projects-page .more-projects .coming-soon {
    margin-top: 24px;
  }
  .inner-page .page-header .page-title.projects {
    font-size: 28px;
  }
  .inner-page .page-header .page-description.projects {
    font-size: 14px;
  }
}

@media (max-width: 650px) {
  .projects-page .projects-wrap .projects-grid {
    grid-template-columns: 1fr;
  }
  .projects-page .projects-wrap .projects-grid .project-item {
    grid-column: span 1 !important;
  }
}

@media (max-width: 442px) {
  .projects-marquee .marquee-item .slide-title {
    font-size: 20px;
  }
  .inner-page .page-header .page-title.projects {
    font-size: 24px;
  }
  .projects-page .more-projects .projects-list .project-item {
    column-gap: 35px;
  }
}

@media (max-width: 375px) {
  .projects-marquee .marquee-item .slide-title {
    font-size: 18px;
  }
}

/* Project Detail Page */
.project-detail-page {
  margin-top: 50px;
}
.project-detail-page .banner-wrap {
  width: 100%;
  height: 436px;
  position: relative;
}
.project-detail-page .banner-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-page .banner-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    4.73deg,
    rgba(16, 24, 32, 0) 2.98%,
    rgba(16, 24, 32, 0.7) 55.67%,
    rgba(16, 24, 32, 0.8) 64.21%,
    rgba(16, 24, 32, 0.9) 74.89%,
    #101820 92.51%
  );

  z-index: 1;
}

.project-detail-page .banner-wrap .project-link {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
}

.project-detail-page .content-wrap {
  max-width: 700px;
  padding-inline: 24px;
  margin-inline: auto;
  margin-top: 140px;
}

.project-detail-page ul li {
  list-style-type: disc;
}

.project-detail-page ol li {
  list-style-type: decimal;
}

@media (max-width: 768px) {
  .project-detail-page .banner-wrap {
    height: 520px;
  }
  .project-detail-page .content-wrap {
    margin-top: 56px;
  }
}

@media (max-width: 442px) {
  .project-detail-page .content-wrap {
    padding-inline: 20px;
  }
}

/* Modal Component */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.modal-body {
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* Modal Overlay (Backdrop) */
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -ms-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  cursor: pointer;
}

/* Modal Content */
.modal-content {
  position: relative;
  background: #101820;

  padding: 36px;
  max-width: 500px;
  max-height: 90vh;
  width: 100%;
  overflow-y: auto;
  transform: scale(0.7);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -moz-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -ms-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -o-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 1;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  border: 0.5px solid #6666664d;
}

.modal.active .modal-content {
  transform: scale(1);
}

/* Modal Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
}

.modal-title {
  font-size: 24px;
  font-weight: 500;
  color: #f5f5f5;
}

.modal-close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #202830;
  font-size: 12px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.banner-video-modal .modal-content {
  max-width: 924px;
  max-height: 570px;
  height: 100%;
}

.banner-video-modal iframe {
  flex: 1;
}
/* Responsive Design for Tablets */

@media (max-width: 768px) {
  .modal {
    padding: 16px;
  }

  .modal-content {
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 8px;
  }
}

/* Responsive Design for Mobile */
@media (max-width: 480px) {
  .modal {
    padding: 12px;
  }

  .modal-content {
    max-width: 98vw;
    max-height: 98vh;
    border-radius: 6px;
  }
}

/* PDF Modal Styles */
.pdf-modal .pdf-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  width: 900px;
}

.pdf-modal-body {
  padding: 0;
  height: 600px;
  overflow: hidden;
}

.pdf-modal-body iframe {
  border: none;
  border-radius: 0 0 12px 12px;
}

/* News Page */

.news-detail-page {
  margin-top: 50px;
}

.news-detail-page ul li {
  list-style-type: disc;
}

.news-detail-page ol li {
  list-style-type: decimal;
}

.page-title.news-page-title {
  max-width: 740px;
  margin-inline: auto;
}

.news-detail-page .content-wrap {
  max-width: 740px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.news-detail-page .content-wrap img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.news-detail-page .content-wrap .news-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.news-detail-page .content-wrap .news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-page .content-wrap .date {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #959595;
}

.news-detail-page .content-wrap .news-content-wrap * {
  color: #959595 !important;
}
.news-detail-page .content-wrap .news-content-wrap {
  color: #959595 !important;
}

/* Scroll arrow */

@keyframes scrollFlow {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

.scroll-arrow-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000000;
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  pointer-events: none;
}

.scroll-arrow-wrap svg {
  color: white;
  animation: scrollFlow 1.2s ease-in-out infinite;
}

.scroll-arrow-wrap svg:first-child {
  animation-delay: 0s;
}

.scroll-arrow-wrap svg:last-child {
  animation-delay: 0.3s;
}

@media (max-width: 992px) {
  .scroll-arrow-wrap {
    display: none !important;
  }
}
