@font-face {
  font-family: "Inter";
  font-weight: 300;
  src: url("/assets/fonts/inter/Inter-Light.woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 400;
  src: url("/assets/fonts/inter/Inter-Regular.woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  src: url("/assets/fonts/inter/Inter-Medium.woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 600;
  src: url("/assets/fonts/inter/Inter-Semibold.woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 700;
  src: url("/assets/fonts/inter/Inter-Bold.woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 800;
  src: url("/assets/fonts/inter/Inter-ExtraBold.woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 300;
  src: url("/assets/fonts/inter/Inter-LightItalic.woff2");
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  src: url("/assets/fonts/inter/Inter-MediumItalic.woff2");
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 600;
  src: url("/assets/fonts/inter/Inter-SemiboldItalic.woff2");
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 700;
  src: url("/assets/fonts/inter/Inter-BoldItalic.woff2");
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 800;
  src: url("/assets/fonts/inter/Inter-ExtraBoldItalic.woff2");
  font-style: italic;
  font-display: swap;
}
.main-wrapper {
  width: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
}

.grayscale {
  filter: grayscale(1);
}

.container {
  transition: scale 1s ease;
  scale: var(--scale);
}

:root {
  --color-store-bg: #004DA5;
  --color-store-icon-bg: #F5F7FD;
}
@media (max-width: 992px) {
  :root {
    --section-height: auto;
  }
}

header {
  padding: 8px 0;
}
@media (max-width: 991.98px) {
  header {
    z-index: 100;
    position: fixed;
    background-color: white;
    width: 100%;
  }
}
header .logo {
  width: 60px;
  height: 60px;
}
@media (max-width: 767.98px) {
  header .logo {
    width: 45px;
    height: 45px;
  }
}
header .name {
  color: black;
  font-weight: 600;
  font-size: 1rem;
}
@media (max-width: 767.98px) {
  header .name {
    font-size: 1rem;
    line-height: 130%;
  }
}
header .datetime-weather {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
}
@media (max-width: 991.98px) {
  header .datetime-weather {
    display: none;
  }
}
header .datetime-weather .datetime {
  border-right: 2px solid #B2B2B2;
  padding-right: 12px;
}
header .datetime-weather .datetime .date {
  color: #999999;
  font-size: 13px;
}
header .datetime-weather .weather {
  display: flex;
  align-items: center;
  gap: 8px;
}
header .datetime-weather .weather .province-temperature {
  min-width: 80px;
}

.sidebar-menu .item .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  color: black;
}
.sidebar-menu .item .title .link {
  color: black;
  display: inline-block;
}
.sidebar-menu .item .title .icon {
  transition: transform 0.3s;
}
.sidebar-menu .item .menu {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  overflow: hidden;
}
.sidebar-menu .item .menu a {
  color: black;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.sidebar-menu .item.open .title .icon {
  transition: transform 0.3s;
  transform: rotate(90deg);
}
.sidebar-menu .item.open .menu {
  max-height: 800px;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s;
}

.navbar-wrapper {
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  margin-top: 76px;
  z-index: 9;
}
@media (max-width: 991.98px) {
  .navbar-wrapper {
    display: none;
  }
}
.navbar-wrapper.fixed-navbar {
  position: fixed;
  margin-top: 0;
}
.navbar-wrapper .navlinks-wrapper {
  width: 100%;
  height: 75px;
  background-color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  gap: 16px;
}
.navbar-wrapper .navlinks-wrapper .navlinks {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.navbar-wrapper .navlinks-wrapper .navlinks .item {
  height: 100%;
  position: relative;
}
.navbar-wrapper .navlinks-wrapper .navlinks .item .link {
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-weight: 700;
  text-align: center;
}
.navbar-wrapper .navlinks-wrapper .navlinks .item .link svg {
  width: 20px;
  height: 20px;
}
.navbar-wrapper .navlinks-wrapper .navlinks .item .menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50px;
  left: 0;
  background-color: white;
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.36);
  width: 300px;
}
.navbar-wrapper .navlinks-wrapper .navlinks .item .menu a {
  display: block;
  color: black;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 8px 4px;
  font-weight: 500;
  margin-bottom: 6px;
}
.navbar-wrapper .navlinks-wrapper .navlinks .item .menu a:hover {
  border-radius: 6px;
  background-color: rgba(237, 237, 237, 0.4);
}
.navbar-wrapper .navlinks-wrapper .navlinks .item .menu a:last-child {
  border: none;
}
.navbar-wrapper .navlinks-wrapper .navlinks .item:hover .menu {
  transition: opacity 0.4s;
  opacity: 1;
  height: auto;
  visibility: visible;
  overflow: visible;
}
.navbar-wrapper .navlinks-wrapper .buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
}
.navbar-wrapper .navlinks-wrapper .buttons .navlink-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 1;
  gap: 4px;
  padding: 8px;
  background-color: rgba(237, 237, 237, 0.4);
  border-radius: 8px;
  color: black;
  font-weight: 500;
  text-wrap: nowrap;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn {
  position: relative;
  cursor: pointer;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box {
  cursor: default;
  width: 300px;
  background-color: white;
  border-radius: 8px;
  padding: 12px;
  position: absolute;
  bottom: -290px;
  right: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .label {
  margin-bottom: 12px;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .langs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .langs .lang {
  width: 35px;
  height: 35px;
  background-color: #EDEDED;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-transform: uppercase;
  color: black;
  font-weight: 500;
  font-size: 0.875rem;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .langs .lang.active {
  background-color: #3778FB;
  color: white;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .themes {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .themes .theme-item {
  width: 35px;
  height: 35px;
  background-color: #EDEDED;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-transform: uppercase;
  color: black;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .themes .theme-item.active {
  background-color: #3778FB;
  color: white;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .settings-slider-container {
  width: 100%;
  padding-bottom: 20px;
  position: relative;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .settings-slider-container .settings-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 8px;
  background: linear-gradient(to right, #3778FB 0%, #3778FB var(--slider-fill), #EDEDED var(--slider-fill), #EDEDED 100%);
  outline: none;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .settings-slider-container .settings-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 18px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .settings-slider-container .settings-slider::-moz-range-thumb {
  width: 28px;
  height: 18px;
  background: white;
  border-radius: 30px;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .settings-slider-container .settings-slider-dots {
  display: flex;
  justify-content: space-between;
  width: 90%;
  right: 0;
  left: 0;
  margin: 0 auto;
  position: absolute;
  bottom: 8px;
}
.navbar-wrapper .navlinks-wrapper .buttons .settings-btn .settings-box .settings-slider-container .settings-slider-dots span {
  width: 6px;
  height: 6px;
  background: #EDEDED;
  border-radius: 50%;
}

footer {
  padding: 50px 0;
  color: #999999;
  text-align: start;
}
@media (max-width: 991.98px) {
  footer {
    text-align: center;
  }
}
footer .logo-name .logo {
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  footer .logo-name .logo {
    margin: 0 auto 8px auto;
  }
}
footer .logo-name .logo img {
  width: 100%;
  height: 100%;
}
footer .logo-name .name {
  font-size: 1.25rem;
  font-weight: 500;
  color: black;
  margin-bottom: 6px;
}
@media (max-width: 991.98px) {
  footer .logo-name .name {
    margin-bottom: 8px;
  }
}
footer .logo-name .download-app {
  margin-bottom: 6px;
  font-weight: 500;
}
footer .logo-name .appstore-googleplay {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 991.98px) {
  footer .logo-name .appstore-googleplay {
    justify-content: center;
    margin: 12px 0 24px 0;
  }
}
footer .logo-name .appstore-googleplay a {
  display: block;
  height: 42px;
}
footer .logo-name .appstore-googleplay a img {
  height: 100%;
}
footer .title {
  color: black;
  font-size: 1.125rem;
  margin-bottom: 12px;
  font-weight: 600;
}
footer .subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}
footer .subtitle.link {
  color: #696969;
  margin-bottom: 12px;
}
footer .subtitle.link:hover {
  text-decoration: underline !important;
}
footer .copyright {
  font-weight: 400;
}
footer .contacts .links {
  margin-top: 24px;
}
footer .footer-lang .dropdown .dropdown-toggle {
  font-weight: 500;
  color: #696969;
}
footer .footer-lang .dropdown .dropdown-menu {
  padding: 0;
  background-color: white !important;
}
footer .footer-lang .dropdown .dropdown-menu li a {
  color: black !important;
}
footer .footer-lang .dropdown .dropdown-menu li a:active {
  background-color: #EDEDED;
}
footer .footer-lang .dropdown .dropdown-menu li a.active {
  background-color: #3778FB;
  color: white !important;
}

.home-wrapper .section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid black;
  margin-bottom: 46px;
  padding-bottom: 12px;
}
@media (max-width: 991.98px) {
  .home-wrapper .section-title {
    margin-bottom: 28px;
  }
}
.home-wrapper .section-title .title {
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .home-wrapper .section-title .title {
    font-size: 1.5rem;
    line-height: 100%;
  }
}
.home-wrapper .section-title .see-all-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #EDEDED;
  color: black;
  padding: 6px 2px 6px 8px;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 100%;
}
.home-wrapper .section-title .see-all-btn svg {
  width: 18px;
  height: 18px;
}
.home-wrapper .read-more-link {
  color: black;
  font-size: 1.125rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 100%;
  transition: all 0.3s;
}
.home-wrapper .read-more-link:hover {
  gap: 10px;
  transition: all 0.3s;
}
.home-wrapper .see-all-link {
  color: #333333;
  display: inline-flex;
  align-items: center;
  line-height: 100%;
  gap: 8px;
  transition: all 0.3s;
  font-weight: 400;
}
.home-wrapper .see-all-link:hover {
  transition: all 0.3s;
  gap: 12px;
}
.home-wrapper .see-all-link svg {
  margin-top: 4px;
  width: 20px;
  height: 20px;
}
.home-wrapper .welcome {
  height: 800px;
  background-color: rgba(0, 0, 0, 0.45);
  background-blend-mode: overlay;
  color: #F2F2F2;
  position: relative;
}
@media (max-width: 991.98px) {
  .home-wrapper .welcome {
    padding-top: 96px;
  }
}
@media (max-width: 767.98px) {
  .home-wrapper .welcome {
    padding: 81px 0 32px 0;
    height: unset;
    background-position: right;
  }
}
.home-wrapper .welcome .video-background {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/img/home-banner.jpg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}
@media (max-width: 991.98px) {
  .home-wrapper .welcome .video-background video {
    object-position: right center;
  }
}
@media (max-width: 767.98px) {
  .home-wrapper .welcome .video-background {
    height: 100%;
    top: 61px;
  }
}
.home-wrapper .welcome .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.home-wrapper .welcome .video-background .video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.home-wrapper .welcome .info {
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
  padding-bottom: 86px;
  gap: 12px;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .home-wrapper .welcome .info {
    padding-top: 42px;
    padding-bottom: 24px;
  }
}
.home-wrapper .welcome .info .title {
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 120%;
}
@media (max-width: 767.98px) {
  .home-wrapper .welcome .info .title {
    font-size: 1.75rem;
  }
}
.home-wrapper .welcome .info .subtitle {
  padding-bottom: 12px;
}
@media (max-width: 767.98px) {
  .home-wrapper .welcome .info .subtitle {
    font-size: 0.875rem;
  }
}
.home-wrapper .welcome .year-info {
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: end;
  padding-top: 120px;
  padding-right: 20px;
}
@media (max-width: 991.98px) {
  .home-wrapper .welcome .year-info {
    padding: 0;
  }
}
.home-wrapper .welcome .year-info .year-logo {
  width: 150px;
  height: 150px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}
@media (max-width: 767.98px) {
  .home-wrapper .welcome .year-info .year-logo {
    width: 100px;
    height: 100px;
  }
}
.home-wrapper .welcome .year-info .year-logo .light-sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.5) 50%, transparent 55%);
  animation: sweep 5s linear infinite;
  pointer-events: none;
}
.home-wrapper .welcome .year-info .year-logo img {
  display: block;
}
@keyframes sweep {
  0% {
    transform: translate(-100%, 100%);
  }
  100% {
    transform: translate(100%, -100%);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.home-wrapper .short-news {
  padding: 12px 0;
  font-weight: 500;
  font-size: 1.125rem;
  background-color: white;
}
@media (max-width: 767.98px) {
  .home-wrapper .short-news {
    font-size: 0.875rem;
  }
}
.home-wrapper .short-news svg {
  margin: 0 12px;
}
.home-wrapper .president-quote {
  padding: 140px 0;
  background-color: #EDEDED;
}
@media (max-width: 991.98px) {
  .home-wrapper .president-quote {
    padding: 130px 0;
  }
}
@media (max-width: 767.98px) {
  .home-wrapper .president-quote {
    padding: 100px 0;
  }
}
@media (max-width: 991.98px) {
  .home-wrapper .president-quote img.grayscale {
    width: 200% !important;
  }
}
@media (max-width: 767.98px) {
  .home-wrapper .president-quote img.grayscale {
    width: 300% !important;
  }
}
.home-wrapper .president-quote .president-img {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .home-wrapper .president-quote .president-img {
    height: 450px;
  }
}
@media (max-width: 767.98px) {
  .home-wrapper .president-quote .president-img {
    height: 350px;
  }
}
.home-wrapper .president-quote .quote-box {
  padding: 26px;
  background-color: white;
  border-radius: 12px;
  height: 100%;
}
.home-wrapper .president-quote .quote-box .president-name {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
@media (max-width: 767.98px) {
  .home-wrapper .president-quote .quote-box .president-name {
    font-size: 1.375rem;
  }
}
.home-wrapper .president-quote .quote-box .quote {
  font-size: 1.15rem;
  font-style: italic;
}
@media (max-width: 767.98px) {
  .home-wrapper .president-quote .quote-box .quote {
    font-size: 1rem;
  }
}
.home-wrapper .news {
  padding: 70px 0;
}
.home-wrapper .news .news-card {
  height: 100%;
}
.home-wrapper .news .news-card .image {
  width: 100%;
  height: 250px;
  margin-bottom: 12px;
  background-color: #EDEDED;
  border-radius: 8px;
  overflow: hidden;
}
.home-wrapper .news .news-card .date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #EDEDED;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 100%;
  color: #696969;
  font-weight: 500;
  margin-bottom: 8px;
}
.home-wrapper .news .news-card .date svg {
  width: 18px;
  height: 18px;
}
.home-wrapper .news .news-card .title {
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  margin-bottom: 16px;
}
@media (max-width: 991.98px) {
  .home-wrapper .news .news-card .title {
    min-height: unset;
  }
}
.home-wrapper .news .news-card-small {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: black;
  font-weight: 500;
}
.home-wrapper .news .news-card-small .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: #999999;
}
.home-wrapper .news .news-card-small .date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
}
.home-wrapper .news .news-card-small .date .month {
  font-size: 1.25rem;
  font-weight: 500;
}
.home-wrapper .news .news-card-small .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-wrapper .video {
  background-color: #EDEDED;
  padding: 64px 0;
}
.home-wrapper .diplomatic-mission {
  background: #011633;
  background: linear-gradient(90deg, rgb(1, 22, 51) 0%, rgb(0, 0, 0) 100%);
  padding: 32px 0;
}
.home-wrapper .diplomatic-mission .title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
  line-height: 120%;
}
@media (max-width: 991.98px) {
  .home-wrapper .diplomatic-mission .title {
    font-size: 1.75rem;
  }
}
.home-wrapper .diplomatic-mission .subtitle {
  font-weight: 500;
  color: #999999;
  margin-bottom: 36px;
  font-size: 1.25rem;
}
@media (max-width: 991.98px) {
  .home-wrapper .diplomatic-mission .subtitle {
    font-size: 1rem;
  }
}
.home-wrapper .diplomatic-mission #globe-animation {
  width: 700px;
  height: 700px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .home-wrapper .diplomatic-mission #globe-animation {
    width: 350px;
    height: 350px;
    margin-top: 20px;
  }
}
.home-wrapper .docslibrary .body {
  display: flex;
  height: 250px;
}
@media (max-width: 991.98px) {
  .home-wrapper .docslibrary .body {
    height: 100%;
    display: block;
  }
}
.home-wrapper .docslibrary .body .image {
  height: 100%;
  aspect-ratio: 2.6;
}
.home-wrapper .docslibrary .body .info {
  background-color: #EDEDED;
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .home-wrapper .docslibrary .body .info {
    width: 100%;
  }
}
.home-wrapper .docslibrary .body .info .link {
  background-color: white;
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .home-wrapper .docslibrary .body .info .subtitle {
    display: none !important;
  }
}
.home-wrapper .docslibrary, .home-wrapper .unesco {
  padding: 64px 0;
}
@media (max-width: 991.98px) {
  .home-wrapper .docslibrary, .home-wrapper .unesco {
    padding: 32px 0;
  }
}
.home-wrapper .docslibrary .body, .home-wrapper .unesco .body {
  border-radius: 8px;
  overflow: hidden;
}
.home-wrapper .docslibrary .body .image, .home-wrapper .unesco .body .image {
  width: 100%;
  height: 100%;
}
.home-wrapper .docslibrary .body .info, .home-wrapper .unesco .body .info {
  height: 100%;
  padding: 24px;
}
.home-wrapper .docslibrary .body .info .link, .home-wrapper .unesco .body .info .link {
  display: inline-block;
  padding: 6px;
  border-radius: 8px;
  color: black;
  margin-bottom: 8px;
  font-weight: 500;
}
.home-wrapper .docslibrary .body .info .title, .home-wrapper .unesco .body .info .title {
  font-size: 1.5rem;
  font-weight: 600;
}
.home-wrapper .docslibrary .body .info .subtitle, .home-wrapper .unesco .body .info .subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.home-wrapper .docslibrary .body .info .read-more-link, .home-wrapper .unesco .body .info .read-more-link {
  font-weight: 500;
  font-size: 1rem;
}
.home-wrapper .docslibrary .body .info .read-more-link svg, .home-wrapper .unesco .body .info .read-more-link svg {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}
.home-wrapper .unesco {
  background-color: #EDEDED;
}
.home-wrapper .unesco .body .image {
  position: relative;
}
.home-wrapper .unesco .body .image:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background: #FFFFFF;
  background: linear-gradient(273deg, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 100%);
  height: 100%;
  width: 150px;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .home-wrapper .unesco .body .image:after {
    width: 100%;
    height: 100px;
    bottom: -3px;
    top: unset;
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
.home-wrapper .unesco .body .info {
  background-color: white;
}
.home-wrapper .unesco .body .info .link {
  background-color: #EDEDED;
}
.home-wrapper .gallery {
  padding: 46px 0;
}
.home-wrapper .diplomatic-news {
  padding: 64px 0 72px 0;
  background-color: #EDEDED;
  background-image: url("/img/national-patterns-bg.png");
  background-size: 100%;
  background-position: top left;
}
.home-wrapper .diplomatic-news .splide-arrows {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.home-wrapper .diplomatic-news .splide-arrows button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 6px;
  border: none;
}
.home-wrapper .diplomatic-news .splide-arrows button svg {
  width: 24px;
  height: 24px;
}
.home-wrapper .diplomatic-news .splide__pagination {
  bottom: -50px;
}
.home-wrapper .diplomatic-news .diplomatic-news-item {
  width: 30%;
}
@media (max-width: 991.98px) {
  .home-wrapper .diplomatic-news .diplomatic-news-item {
    width: 40%;
  }
}
@media (max-width: 767.98px) {
  .home-wrapper .diplomatic-news .diplomatic-news-item {
    width: 90%;
  }
}
.home-wrapper .diplomatic-news .diplomatic-news-item .image {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  margin-bottom: 12px;
}
.home-wrapper .diplomatic-news .diplomatic-news-item .image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.home-wrapper .diplomatic-news .diplomatic-news-item .date {
  background-color: white;
  display: inline-block;
  color: black;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 2px 6px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.home-wrapper .diplomatic-news .diplomatic-news-item .title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.375rem;
  font-weight: 600;
  color: black;
  margin-bottom: 12px;
}
.home-wrapper .actual-headings {
  padding: 64px 0;
}
.home-wrapper .actual-headings .splide-arrows {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.home-wrapper .actual-headings .splide-arrows button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDEDED;
  border-radius: 6px;
  border: none;
}
.home-wrapper .actual-headings .splide-arrows button svg {
  width: 24px;
  height: 24px;
}
.home-wrapper .actual-headings .image {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
@media (max-width: 991.98px) {
  .home-wrapper .actual-headings .image {
    height: 200px;
  }
}
.home-wrapper .actual-headings .link {
  display: inline-block;
  background-color: #EDEDED;
  padding: 4px;
  border-radius: 4px;
  color: black;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.875rem;
}
.home-wrapper .actual-headings .heading {
  color: black;
  font-weight: 500;
  font-size: 1.375rem;
}
.home-wrapper .actual-headings .actual-heading-item {
  width: calc(33.7% - 16px);
}
@media (max-width: 991.98px) {
  .home-wrapper .actual-headings .actual-heading-item {
    width: calc(48% - 16px);
  }
}
@media (max-width: 767.98px) {
  .home-wrapper .actual-headings .actual-heading-item {
    width: calc(90% - 16px);
  }
}
.home-wrapper .map-location {
  padding: 64px 0;
  background-color: #EDEDED;
}
.home-wrapper .map-location .turkmenistan-map-polygons {
  width: 100%;
  text-align: center;
}
.home-wrapper .map-location .turkmenistan-map-polygons svg {
  width: 100%;
  height: 100%;
}
.home-wrapper .map-location .turkmenistan-map-polygons svg path {
  cursor: pointer;
  transition: all 0.4s;
}
.home-wrapper .map-location .turkmenistan-map-polygons svg path:hover {
  fill: #3778FB;
  transition: all 0.4s;
}
.home-wrapper .map-location .turkmenistan-map-polygons svg path.active {
  fill: #3778FB;
}
.home-wrapper .map-location .info-box {
  background-color: white;
  height: 100%;
  border-radius: 8px;
  padding: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
}
.home-wrapper .map-location .info-box .title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.home-wrapper .map-location .info-box .subtitle {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
.home-wrapper .map-location .info-box svg {
  color: #999999;
}
.home-wrapper .map-location .info-box #location {
  border-radius: 6px;
  width: 100%;
  height: 200px;
  background-color: #EDEDED;
  overflow: hidden;
  margin-top: auto;
  cursor: pointer;
}
.home-wrapper .map-location .info-box #location img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
}

.page-wrapper {
  background-color: #EDEDED;
  padding-top: 130px;
  padding-bottom: 50px;
}
@media (max-width: 991.98px) {
  .page-wrapper {
    padding-top: 100px;
  }
}
@media (max-width: 767.98px) {
  .page-wrapper {
    padding-top: 90px;
  }
}
.page-wrapper .page-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid black;
  margin-bottom: 46px;
  padding-bottom: 12px;
}
@media (max-width: 991.98px) {
  .page-wrapper .page-title {
    margin-bottom: 28px;
  }
}
.page-wrapper .page-title .title {
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .page-wrapper .page-title .title {
    font-size: 1.5rem;
    line-height: 100%;
  }
}
.page-wrapper .other-news-card {
  background-color: white;
  padding: 16px;
  border-radius: 8px;
}
.page-wrapper .other-news-card a {
  color: black;
}
.page-wrapper .other-news-card .heading {
  font-weight: 500;
  font-size: 1.5rem;
  border-bottom: 1px solid black;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .page-wrapper .other-news-card .heading {
    font-size: 1.375rem;
  }
}
.page-wrapper .other-news-card .see-all-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 120%;
  transition: all 0.3s;
}
.page-wrapper .other-news-card .see-all-btn:hover {
  transition: all 0.3s;
  gap: 10px;
}
.page-wrapper .other-news-card .see-all-btn svg {
  width: 20px;
  height: 20px;
}
.page-wrapper .other-news-card .news-card-small {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: black;
  font-weight: 500;
}
.page-wrapper .other-news-card .news-card-small .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: #999999;
}
.page-wrapper .other-news-card .news-card-small .date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
}
.page-wrapper .other-news-card .news-card-small .date .month {
  font-size: 1.25rem;
  font-weight: 500;
}
.page-wrapper .other-news-card .news-card-small .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-wrapper .news-card {
  height: 100%;
}
.page-wrapper .news-card .image {
  width: 100%;
  height: 250px;
  margin-bottom: 12px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}
.page-wrapper .news-card .date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: white;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 100%;
  color: #696969;
  font-weight: 500;
  margin-bottom: 8px;
}
.page-wrapper .news-card .date svg {
  width: 18px;
  height: 18px;
}
.page-wrapper .news-card .title {
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  margin-bottom: 16px;
  color: black;
}
@media (max-width: 991.98px) {
  .page-wrapper .news-card .title {
    min-height: unset;
  }
}
.page-wrapper .dip-news-card {
  height: 100%;
  color: black;
}
.page-wrapper .dip-news-card .date {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: #999999;
}
.page-wrapper .dip-news-card .title {
  font-weight: 600;
  margin-bottom: 8px;
}
.page-wrapper .dip-news-card .subtitle {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-wrapper .archive-links a {
  display: block;
  color: black;
  font-size: 1.25rem;
  border-bottom: 1px solid black;
  margin-bottom: 24px;
  padding-bottom: 8px;
}
.page-wrapper .news-show .swiper1, .page-wrapper .article-show .swiper1 {
  border-radius: 8px;
  margin-bottom: 12px;
}
.page-wrapper .news-show .swiper-button-prev-unique, .page-wrapper .news-show .swiper-button-next-unique, .page-wrapper .article-show .swiper-button-prev-unique, .page-wrapper .article-show .swiper-button-next-unique {
  z-index: 2;
}
.page-wrapper .news-show .date-views, .page-wrapper .article-show .date-views {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: #999999;
  margin-bottom: 16px;
}
.page-wrapper .news-show .date-views svg, .page-wrapper .article-show .date-views svg {
  width: 20px;
  height: 20px;
}
.page-wrapper .news-show .news-title, .page-wrapper .article-show .news-title {
  margin-bottom: 24px;
}
.page-wrapper .news-show .news-description, .page-wrapper .article-show .news-description {
  overflow: scroll;
  scrollbar-width: none !important;
}
.page-wrapper .news-show .news-description p, .page-wrapper .article-show .news-description p {
  text-align: justify;
  font-weight: 400;
  font-size: 1rem;
}
.page-wrapper .news-show table, .page-wrapper .article-show table {
  width: 100% !important;
}
.page-wrapper .news-show table tr, .page-wrapper .article-show table tr {
  background-color: white;
}
.page-wrapper .news-show table tr:nth-child(odd), .page-wrapper .article-show table tr:nth-child(odd) {
  background-color: rgb(233, 239, 255);
}
.page-wrapper .news-show table tr:first-child, .page-wrapper .article-show table tr:first-child {
  background-color: #3778FB;
  color: white;
}
.page-wrapper .news-show table tr td, .page-wrapper .article-show table tr td {
  padding: 10px 15px 10px 15px;
  font-size: 1rem;
  border: 1px solid #696969;
}
.page-wrapper .news-show table tr td p, .page-wrapper .article-show table tr td p {
  font-weight: 400 !important;
  margin: 0;
}
.page-wrapper .newspapers .catolog-image-wrapper {
  height: 350px;
  padding: 12px;
}
.page-wrapper .newspapers .catolog-image-wrapper .catolog-title-background {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  font-weight: 500;
  transition: opacity 0.3s ease-in-out;
}
.page-wrapper .newspapers .catolog-image-wrapper:hover .catolog-title-background {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/*# sourceMappingURL=app.css.map */
