@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

html,
body {
  overflow-x: hidden;
  min-width: 350px;
  font-family: "DM Sans", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px) brightness(0.5);
  --webkit-backdrop-filter: blur(10px) brightness(0.5);
}

.top-nav > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-nav .nav-links {
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.top-nav .nav-links a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  color: #fff;
  width: 260px;
  height: 40px;
  object-fit: cover;
}

.login-button img {
  height: 35px;
}

.lang-selector {
  align-items: center;
  column-gap: 1rem;
}

.lang-selector label {
  display: flex;
  align-items: center;
}

.lang-selector svg {
  color: #fff;
  width: 16px;
}

.lang-selector select {
  background-color: transparent;
  color: #fff;
  border: none;
  outline: none;
}

.lang-selector select option {
  background-color: #15120f;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .nav-links,
  .lang-selector {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .nav-links,
  .lang-selector {
    display: flex;
  }
}

.main-banner {
  background-image: url("/assets/img/mesh.png");
  background-size: cover;
  background-position: top;
  padding: 15rem 0;
  background-repeat: no-repeat;
}

.main-banner h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 2.5rem;
}

.main-banner p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 4rem;
}

.banner-buttons {
  display: flex;
  gap: 1rem;
}

.banner-buttons button {
  padding: 10px 40px 11px 40px;
  font-size: 1.1rem;
  color: #f1f5f7;
  border-radius: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-buttons button:first-child {
  background-color: #c49b6d;
  border: 2px solid #c49b6d;
}

.banner-buttons button:last-child {
  background-color: transparent;
  border: 2px solid #f1f5f7;
}

.services {
  margin-top: -11.5rem;
  padding-top: 3rem;
}

.services > div, .dept-links {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 992px) {
  .services > div, .dept-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-item p:last-child {
    margin-bottom: 0 !important;
  }
  .news-content {
    padding: 0.7rem;
  }
}

.news-content h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .news-content {
    padding: 1rem;
  }
}

@media screen and (max-width: 540px) {
  .services > div, .dept-links {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .main-banner {
    padding: 8rem 0.5rem 12rem 0.5rem;
  }
  .main-banner h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  .main-banner p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .banner-buttons button:first-child,
  .banner-buttons button:last-child {
    width: 50%;
    padding: 10px 20px 11px 20px;
    font-size: 1rem;
    font-weight: 500;
  }
  .service-box h3 {
    font-size: 20px;
  }
  .service-box p {
    font-size: 14px;
  }
  .statistics {
    margin: 5rem 0;
  }
  .news-slider {
    margin-bottom: 5rem;
  }
  .news {
    padding: 1rem 0 4rem 0;
  }
  .news-detail {
    padding: 1rem 0;
  }
  .news-header {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .statistics {
    margin: 8rem 0;
  }
  .news-slider {
    margin-bottom: 8rem;
  }
  .news {
    padding: 2rem 0 6rem 0;
  }
  .news-detail {
    padding: 2rem 0;
  }
  .news-header {
    margin-bottom: 1.5rem;
  }
}

.news .container .row {
  row-gap: 2rem;
}

.news-description {
  color: #7a7a7a;
  font-size: 1.2rem;
  line-height: 2rem;
}

.news a {
  text-decoration: none;
  color: inherit;
}

.news-item:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.news-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-header p {
  color: #21212166;
}

.service-box {
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #f2e9e4;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fdfdfd;
  text-decoration: none;
  color: #7a7a7a;
  transition: all 0.3s ease;
}

.service-box:hover {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    border-color: #eed4b7;
}

.service-box:hover h3 {
  color: #c49b6d;
}

.service-box:hover p {
  color: #c49b6d;
}

.service-box:hover .service-icon {
    border-color: #c49b6d;
}

.service-box h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  transition: color 0.3s ease;
}

.service-box p {
  font-size: 16px;
  color: #7a7a7a;
  margin: 0;
  transition: color 0.3s ease;
}

.service-icon {
  padding: 17px;
  border-radius: 50%;
  border: 2px solid #d1d1d1;
  width: fit-content;
  transition: border-color 0.3s ease;
}
.service-icon img {
  height: 40px;
}
.statistics {
  padding: 5rem 0;
  background-color: #f9f8f6;
}

.statistics > div {
  display: flex;
}

.statistic {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 25%;
  text-align: center;
}

.statistic h1 {
  color: #b07b39;
  font-size: 2.6rem;
  margin: 0;
  font-weight: 500;
}

.statistic p {
  color: #5f5f5f;
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
}

@media (min-width: 540px) and (max-width: 992px) {
  .statistics > div {
    flex-wrap: wrap;
    row-gap: 4rem;
  }
  .statistic {
    width: 50%;
    text-align: center;
  }
}

@media screen and (max-width: 540px) {
  .statistics > div {
    flex-direction: column;
    row-gap: 3rem;
  }
  .statistic {
    width: 100%;
    text-align: center;
  }
}

.splide__arrows {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.splide__arrows div {
  display: flex;
  gap: 0.6rem;
  justify-content: end;
}

.splide__arrows button {
  aspect-ratio: 1;
  padding: 0.7rem;
  height: fit-content;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e1e4e8;
  background-color: transparent;
  cursor: pointer;
}

.splide__arrows button:hover {
  background-color: #f9f9f9;
}

.news-slider img,
.news .news-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.news-item {
  border-radius: 4px;
  overflow: hidden;
  margin-left: 1px;
  cursor: pointer;
}

.news-content {
  border: 1px solid #ead7be;
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.news-content h4 {
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-content p:first-child {
  color: #45464899;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.news-content p:last-child {
  color: #7a7a7a;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination {
  display: flex;
  justify-content: end;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination a {
  text-decoration: none;
  border-radius: 50%;
  border: 1px solid #e1e4e8;
  background-color: transparent;
  color: #252525;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1/1;
  font-size: 14px;
}

.pagination a.active {
  background-color: #b07b39;
  color: #f1f5f7;
}

.pagination a:hover {
  background-color: #f9f9f9;
}

footer {
  background: linear-gradient(0deg, #15120f, #15120f),
    linear-gradient(
      168.96deg,
      rgba(66, 33, 0, 0.6) -7.9%,
      rgba(41, 32, 24, 0.48) 113.14%
    );
  margin-top: auto;
}

footer p {
  margin: 0;
}

footer > .container {
  display: flex;
  justify-content: space-between;
  padding: 5rem 0;
}

footer > p.container {
  padding-bottom: 2rem;
  padding-top: 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h5 {
  color: #fff;
  margin-bottom: 1rem;
}

footer p {
  color: #7a7a7a;
  margin-bottom: 0.5rem;
}

.footer-header {
  padding: 2rem 0;
  border-top: 1px solid #e1e4e826;
}

.footer-header .container a {
  text-decoration: none;
  color: #7a7a7a;
}
.footer-header .container a span {
    color: #ffcc01;
}
.footer-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  aspect-ratio: 1;
  padding: 0.5rem;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f5f71f;
  background-color: transparent;
}

@media (min-width: 768px) and (max-width: 992px) {
  .footer-column {
    width: 50%;
  }

  footer > .container {
    flex-wrap: wrap;
    row-gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  footer > .container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .footer-header .container {
    flex-direction: column;
    gap: 2rem;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1000;
}

.sidebar ul {
  list-style: none;
  padding: 20px;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar ul li a:not(.btn) {
  text-decoration: none;
  color: #4d5e80;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
}

.sidebar ul li .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    width: 70%;
    background-color: #c49b6d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}

@media screen and (max-width: 992px) {
  .menu-button {
    display: flex;
  }
  .sidebar {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .menu-button {
    display: none;
  }
  .sidebar {
    display: none;
  }
}

.menu-button {
  border: 1px solid #d4d4d440;
  background: transparent;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

#closeButton {
  border: 1px solid #82828266;
}

.sidebar-close {
  display: flex;
  gap: 1rem;
}

.lang-button {
  border: 1px solid #82828266;
  background: transparent;
  margin-bottom: 1rem;
  border-radius: 20px;
  width: 5rem;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.lang-button span {
  font-weight: 500;
  margin-bottom: 4px;
}

.mt-9 {
  margin-top: 4.5rem;
}

.mb-7 {
  margin-bottom: 4rem;
}

.mb-9 {
  margin-bottom: 5rem;
}

.breadcrumb {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f9eee0;
  margin-bottom: 0;
}

.breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.breadcrumb a {
  color: #252525;
  text-decoration: none;
  font-size: 14px;
}

.breadcrumb a:last-child {
  color: #7a7a7a;
}

.breadcrumb span {
  color: #7a7a7a;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .news-image {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}

@media screen and (min-width: 768px) {
  .news-image {
    width: 50%;
    margin: 0 1.2rem 0 0;
  }
}

.news-image {
  height: auto;
  float: left;
  border-radius: 5px;
}

.news-image-container {
  padding: 0 0 2rem 0;
}

.news-image-container img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  min-height: 450px;
}
.dept-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 5rem 0 6rem 0;
  min-height: 30rem;
}
.contact-info span {
  color: #7a7a7a;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 400;
}

.contact-info p {
  color: #252525;
  font-size: 1.6rem;
  font-weight: 500;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: transparent;
  /* hide track */
}

::-webkit-scrollbar-thumb {
  background: #c49b6d;
}

::-webkit-scrollbar-thumb:hover {
  background: #a97e4f;
}

.dept-title {
  color: #fff;
  display: flex;
  align-items: center;
  background-color: #c49b6d;
  padding: 1rem 0 0.7rem 1rem;
  border-radius: 0.3rem;
}

.dept-response {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #000;
  background-color: rgb(255, 235, 59);
  border-radius: 0.3rem;
  padding: 2rem;
}
.dept-response svg {
  flex-shrink: 0;
}
.dept-response > a {
  margin-left: auto;
}

.dept-response > button ~ button {
  margin-left: inherit;
}

.dept-response p {
  margin: 0;
}