/* base */

* {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
button {
  cursor: pointer;
  outline: none;
  background-color: transparent;
  border: 0;
  color: inherit;
}

ul,
ol {
  list-style: none;
  padding: 0;
  color: #475569;
  line-height: 1.8rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 1rem;
  max-width: 85rem;
  margin: 0 auto;
}

section .section-title {
  font-size: 2.2rem;
}

@media (min-width: 768px) {
  section {
    padding: 2rem;
  }
}

section + section {
  margin-top: 3rem;
}

section p {
  line-height: 1.5rem;
  color: #475569;
}

img {
  max-width: 100%;
  width: 100%;
}

main section:nth-child(1) {
  margin-top: 3.5rem;
}
section:has(> .container) {
  max-width: initial;
}

section > .container {
  max-width: 85rem;
  margin: 0 auto;
  padding: 2rem;
}

@media (min-width: 1440px) {
  main section:nth-child(1) {
    margin-top: 8.5rem !important;
  }
}
/* Variable */

:root {
  --primary: #004899;
  --slate-text: #64748b;
  --light-slate: #e2e8f0;
  --dark-slate: #334155;
  --disabled-slate: #94a3b8;
  --border-light: #cbd5e1;
  --text-dark: #0f172a;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --zinc-100: #f4f4f5;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --text-gray: #1f2937;
  --blue-500: #3b82f6;
  --yellow-500: #eab308;
  --sky-500: #0ea5e9;
  --gray-800: #1f2937;
  --gray-700: #374151;
}

/* Utilities */

.divide-gray-300 > * {
  border-top-color: var(--gray-300);
}

.divide-y > * + * {
  border-width: 1px 0 0 0;
  border-style: solid;
}
.pt-8 {
  padding-top: 2rem;
}

.group:hover .group-hover\:border-black {
  border-color: black;
}

.group:hover .group-hover\:border-b {
  border-width: 0 0 1px 0;
  border-style: solid;
}

.border-transparent {
  border-color: transparent;
}

.pb-8 {
  padding-bottom: 2rem;
}

.border-b {
  border-width: 0 0 1px 0;
  border-style: solid;
}

.border-gray-100 {
  border-color: var(--gray-100);
}

.border-gray-300 {
  border-color: var(--gray-300);
}

.border {
  border-width: 1px;
  border-style: solid;
}

.rounded {
  border-radius: 0.25rem; /* 4px */
}

.p-4 {
  padding: 1rem;
}

.shadow {
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.rounded-lg {
  border-radius: 1rem;
}

.aspect-video {
  aspect-ratio: 16/9;
}

.aspect-square {
  aspect-ratio: 1/1;
}

.object-cover {
  object-fit: cover;
}

.justify-between {
  justify-content: space-between;
}

.text-blue-500 {
  color: var(--blue-500);
}

.text-sky-500 {
  color: var(--sky-500);
}

.break-words {
  overflow-wrap: break-word;
}

.text-gray-700 {
  color: var(--gray-700);
}

.gap-4 {
  gap: 1rem;
}

.items-center {
  align-items: center;
}

.flex {
  display: flex;
}

.block {
  display: block;
}

.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.text-base {
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
}

.text-lg {
  font-size: 1.125rem; /* 18px */
  line-height: 1.75rem; /* 28px */
}

.mt-16 {
  margin-top: 4rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.text-center {
  text-align: center;
}

.bg-gray-100 {
  background-color: var(--gray-100);
}

.border-blue-500 {
  border-color: var(--blue-500);
}

.border-sky-500 {
  border-color: var(--sky-500);
}

.border-yellow-500 {
  border-color: var(--yellow-500);
}

.custom-select {
  width: 100%;
  padding: 1rem;
  border-radius: 5px;
  font-size: 0.8rem;
  position: relative;
  border: 1px solid var(--gray-400);
  cursor: text;
  display: flex;
}

.custom-select select {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  top: -99999;
  left: -99999;
}

.custom-select .select-text {
  margin-right: 1rem;
}

.custom-select .select-text.blur {
  color: var(--gray-400);
}

.custom-select .options-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  transform: translateY(100%);
  z-index: 3;
  border: 1px solid var(--gray-400);
  border-radius: 5px;
  margin: 0;
  display: none;
}

.custom-select .options-container .option {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.custom-select .options-container .option:hover {
  background-color: var(--blue-500);
  color: white;
}

.custom-select .options-container .option.selected {
  background-color: var(--blue-500);
  color: white;
}

.custom-select input {
  border: none;
  padding: 0;
  outline: none;
  font-size: 1rem;
  width: 100%;
}

.custom-select::after {
  font-family: "Material Symbols Outlined";
  content: "expand_more";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  gap: 0.5rem;
}

.pagination {
  height: 2rem;
  width: 2rem;
  font-size: 1rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination:hover:not(.current, .none) {
  background-color: var(--gray-200) !important;
}

.pagination.page {
  background-color: white;
}

.pagination.page.current {
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  cursor: no-drop;
  user-select: none;
}

.pagination.none {
  user-select: none;
  cursor: no-drop;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none;
}

.show {
  display: block !important;
}

.bold {
  font-weight: bold;
}

.btn-outline-primary {
  color: var(--primary);
  border-width: 1px;
  border-radius: 5px;
  border-color: var(--primary);
  padding: 0.75rem 1rem;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  border-style: solid;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.outline-btn {
  border: 1px solid;
  background-color: transparent;
  padding: 0.5rem 0.75rem;
}

/* Header */
header {
  position: fixed;
  background-color: transparent;
  top: 0;
  left: 0;
  padding: 0.5rem;
  width: 100%;
  z-index: 1000;
  transition-property: background-color;
  transition-duration: 0.2s;
}

header .very-large-action {
  display: none;
}

header .bottom-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.bg-white {
  background-color: white;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.2);
}

header .nav-container {
  display: none;
}

.header-logo {
  height: 2.5rem;
  max-width: 4rem;
}

header .contact-us,
header .sitemap {
  display: none;
}

header .action {
  display: flex;
  align-items: center;
}

header .action button {
  background-color: transparent;
  border: 0;
  color: #2aabe2;
}

header .lang-toggler {
  display: flex;
  align-items: center;
}

header .lang-dropdown {
  position: relative;
}

header .lang-list {
  position: absolute;
  right: 100%;
  color: #2aabe2;
  padding: 0.5rem;
  min-width: 8rem;
  top: calc(0 + 1rem);
  background-color: white;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}

header .lang-list * + * {
  margin-top: 0.5rem;
}

header .lang-list * {
  cursor: pointer;
  padding: 0.5rem 0.75rem;
}

header .lang-list *:hover {
  background-color: rgb(243, 243, 243);
}

/* Aside */

aside {
  position: fixed;
  top: 0;
  background-color: white;
  max-width: 250px;
  color: #2aabe2;
  padding: 1rem;
  min-height: 100vh;
  overflow-y: auto;
  z-index: 1001;
  max-height:100vh;
}

aside::-webkit-scrollbar {
  background-color:#cbd5e1;
  width:10px;
}

aside::-webkit-scrollbar-thumb {
  background-color:#0ea5e9;
}

aside h1 {
  color: black;
  font-size: 1.3rem;
}

aside h2 {
  font-size: 1.1rem;
}

aside h3 {
  font-weight: normal;
  font-size: 1rem;
}

aside h1,
aside h2,
aside h3,
aside h4,
aside h5,
aside h6 {
  margin: 1rem 0;
}

aside a {
  transition-duration: 0.1s;
  transition-timing-function: linear;
}

aside a:hover {
  color: black;
}

aside .group + .group {
  margin-top: 3rem;
}

aside ul {
  margin-top: 2rem;
}

/* Main Content */
#hero {
  position: relative;
  padding: 0;
  margin: 0 !important;
  max-width: none;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(252, 252, 252, 1) 0%,
    rgba(237, 237, 244, 0) 60%,
    rgba(0, 212, 255, 0) 100%
  );
}

#hero .slick-background {
  min-height: 100vh;
  overflow: hidden;
  z-index: -1;
}

#hero .video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: black;
}

#hero .video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc((100vh + 25%) * 16 / 9); /* 16:9 aspect ratio */
  height: calc((100vw + 25%) * 16 / 9);
}

#hero .slick-background img {
  object-fit: cover;
  object-position: center;
  height: 100vh;
  max-width: 100%;
  display: block;
}

#hero .content-button {
  width: 100%;
  border: 2px solid white;
  color: white;
  padding: 0.5rem 0.75rem;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  font-size: 1.1rem;
  max-width: 15rem;
}

#hero .content-button:hover {
  background-color: white;
  color: black;
}

#hero .slick-content article {
  border-radius: 10px;
  margin: 4px;
  max-width: 100%;
}

#hero .slick-content-over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: 0.5rem;
  height: 100%;
  padding-top: 15rem;
}

#hero .slick-content {
  margin-top: 2rem;
}

#hero .slick-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#hero .video-mute {
  margin-top: 5rem;
}

section#hero .slick-content p {
  color: white !important;
}

section#who-we-are .section-title {
  color: var(--primary);
}

#who-we-are img {
  max-width: 5rem;
}

section#who-we-are .see-details {
  width: 100%;
  border-color: var(--primary);
  color: var(--primary);
  padding: 0.75rem 1rem;
  transition-property: background-color, color;
  transition-duration: 0.2s;
}

section#who-we-are .see-details:hover {
  background-color: var(--primary);
  color: white;
}

section#who-we-are .card-container {
  padding: 1rem 0;
}

section#who-we-are .card {
  background-color: var(--primary);
  border-radius: 10px;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

section#who-we-are .card h1 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

section#we-offer {
  background-image: url("/assets/img/we-offer-bg.jpg");
  color: white;
  padding: 0;
  background-position: center top;
  margin: 0;
  max-width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

#we-offer .differlay img {
  max-width: 7rem;
}

section#we-offer::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

section#we-offer .section-title {
  font-weight: 200;
  text-align: center;
  line-height: 1.8rem;
  margin-top: 1rem;
  padding: 1rem;
}

section#we-offer article {
  position: relative;
  padding: 3rem 1rem;
}

section#we-offer article .background-hover-img {
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  object-fit: cover;
  object-position: center;
  left: 0;
  opacity: 0;
  transition: opacity;
  transition-duration: 0.4s;
}

section#we-offer article:hover .background-hover-img {
  opacity: 1;
}

section#we-offer article .differlay {
  display: flex;
  align-items: center;
  transition: opacity 0.5s;
  gap: 2rem;
  z-index: 2;
}

section#we-offer article:hover .differlay {
  opacity: 0;
}

section#we-offer article .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 71, 153, 0.9);
  text-align: center;
  height: 100%;
  font-size: 0.875rem;
  transition: opacity 0.5s;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 2;
}

section#we-offer article:hover .overlay {
  opacity: 1;
}

section#we-offer article .overlay p {
  color: white;
  padding: 0 2rem;
  max-height: 60%;
  overflow-y: auto;
  max-width: 400px;
}

section#we-offer article .overlay p::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

section#we-offer article .overlay a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #94a3b8;
  text-decoration-thickness: 2px;
}

section#we-offer .overlay-content {
  height: 100%;
  transition: max-height 0.5s;
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

section#we-offer article:hover .overlay-content {
  max-height: 100%;
}

section#our-signature .section-title {
  color: var(--primary);
  font-weight: normal;
  font-size: 1.7rem;
}

#our-signature {
  background: linear-gradient(180deg, white 60%, #f6f6f6 60%);
  max-width: initial;
}

#our-signature .articles-container {
  margin-top: 2rem;
}
#our-signature .signature {
  transition-property: transform;
  transition-duration: 0.2s;
  padding: 0.5rem;
}

#our-signature .signature:hover {
  transform: translateY(-30px);
}

#our-signature .signature-img-container {
  position: relative;
}

#our-signature .signature-img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
}

#our-signature .signature-category {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f3f4f6;
  padding: 0.5rem;
  border-radius: 0 3px 0 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--slate-text);
}

#our-signature .category-icon {
  color: var(--primary);
}

#our-signature .signature-detail-container {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

#our-signature .signature-detail-line {
  width: 3.5rem;
  border-width: 3px 0 0 0;
  border-color: var(--light-slate);
  opacity: 0.4;
  flex-shrink: 0;
}

#our-signature .signature-title {
  font-size: 1.2rem;
  color: var(--dark-slate);
}

#our-signature .signature-description {
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

#our-signature .slick-nav {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

#our-signature .slick-btn {
  border-color: var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  transition-property: background-color, color;
  transition-duration: 0.2s;
}

#our-signature .slick-btn:hover {
  background-color: var(--primary);
  color: white;
}

#investor-relation {
  background-color: #f6f6f6;
  margin-top: 0;
  padding-top: 4rem;
  max-width: initial;
}

#investor-relation .section-container {
  margin: 0 auto;
  max-width: 1280px;
}

#investor-relation .section-title {
  color: var(--primary);
  font-weight: normal;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

#investor-relation .title-desc {
  font-weight: normal;
  line-height: 1.5rem;
}

#investor-relation .title-view-more {
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 1rem 2rem;
  color: var(--primary);
  margin: 1rem 0;
  transition-property: background-color, color;
  transition-duration: 0.2s;
}

#investor-relation .title-view-more:hover {
  background-color: var(--primary);
  color: white;
}

#investor-relation .relation-category-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

#investor-relation .category-name {
  font-size: 1.2rem;
  font-weight: bolder;
  color: var(--disabled-slate);
}

#investor-relation .category-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#investor-relation .category-btn.active .category-name {
  color: var(--primary) !important;
}

#investor-relation .relation-description-container {
  margin-top: 1rem;
}

#investor-relation .description-container {
  border: 1px solid var(--disabled-slate);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 1px 4px 3px rgba(0, 0, 0, 0.1);
}

#investor-relation .description {
  margin: 0;
}

#investor-relation .see-relation {
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 1rem 1.25rem;
  color: var(--primary);
  margin-top: 1rem;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  font-size: 1rem;
}

#investor-relation .see-relation:hover {
  background-color: var(--primary);
  color: white;
}

#investor-relation .category-content-img {
  display: none;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

#investor-relation .description-container {
  display: none;
  width: 100%;
}
#investor-relation .category-content-img.active {
  display: block;
}

#investor-relation .description-container.active {
  display: block;
}

#investor-relation .description-container-side {
  display: none;
  margin-left: 3rem;
}

#investor-relation .description-container-side.active {
  display: block;
}

#investor-relation .category-img {
  max-width: 2rem;
}

#investor-relation .category-btn {
  width: 100%;
}

#investor-relation .category-name {
  text-align: start;
}

#latest-information .section-title {
  color: var(--primary);
  font-weight: normal;
  font-size: 1.7rem;
}

#latest-information .filtering {
  margin-top: 1rem;
  display: flex;
  overflow-x: auto;
  gap: 2rem;
}

#latest-information .filter-category {
  flex-shrink: 0;
  color: var(--disabled-slate);
  padding: 1rem 0;
  font-size: 1.2rem;
  transition-property: border-width, border-color, border-style, color;
  transition-duration: 0.2s;
  font-weight: 500;
  border-bottom-width: 4px;
  border-color: transparent;
  border-style: solid;
}

#latest-information .filter-category.active {
  border-color: var(--primary);
  color: var(--primary);
}

#latest-information .filter-show {
  margin: 1rem 0;
  width: 100%;
  padding: 0.75rem 1rem;
  border-color: var(--disabled-slate);
  outline: none;
  border-radius: 5px;
}

#latest-information .articles-category {
  display: none;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

#latest-information .articles-category.active {
  display: grid;
}

#latest-information .article {
  border-width: 1px;
  border-color: var(--light-slate);
  border-style: solid;
  border-radius: 5px;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.1);
}

#latest-information .article-img {
  aspect-ratio: 4/2;
  object-fit: cover;
  width: 100%;
}

#latest-information .description-container {
  padding: 1rem;
}

#latest-information .publish-date {
  font-size: 0.9rem;
}

#latest-information .article-title {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
}

#latest-information .e-megazine {
  /* display:grid; */
  /* grid-template-columns:repeat(2, minmax(0,1fr)); */
  display: flex;
  overflow: hidden;  
}

#latest-information .megazine-img {
 width: 35%;
}

#latest-information .megazine-description-container {
  padding: 1rem;
  flex-grow: 0;
}

#latest-information .megazine-title {
  color: var(--primary);
  line-height: 2rem;
  word-wrap: break-word;
}

#latest-information .megazine-date {
  margin-top: 1rem;
  display: block;
  font-weight: 600;
}

#latest-information .action-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

#latest-information .action {
  border-color: var(--primary);
  border-style: solid;
  border-width: 1px;
  border-radius: 50%;
  height: 2rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  transition-property: background-color, color;
  transition-duration: 0.2s;
}

#latest-information .action:hover {
  background-color: var(--primary);
  color: white;
}

#latest-information .view-all {
  width: 100%;
  max-width: 150px;
  margin: 1rem auto;
  display: block;
}

#wika-member .section-title {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

#wika-member .member-container {
  padding: 0 0.5rem;
}

#wika-member .members {
  grid-column: span 10 / span 10;
}

#wika-member .members-container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

footer {
  background-color: var(--primary);
  color: white;
  padding: 1rem 0;
}

footer .page-link {
  font-size: 0.8rem;
  padding: 0.5rem;
}

footer .page-links {
  display: flex;
  padding: 0 1rem;
}

footer .page-link + .page-link {
  border-left-width: 1px;
  border-right-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-color: white;
  border-style: solid;
}

footer .social-media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1rem;
}

footer .social-media-link {
  font-size: 2rem;
}

footer .bottom-part {
  padding: 0 1rem;
  font-size: 0.8rem;
  margin-top: 2rem;
}

footer .address-container {
  display: flex;
  margin-top: 2rem;
}

footer address {
  font-style: normal;
}

footer .copyright {
  font-size: 0.7rem;
  text-align: center;
  display: block;
  margin-top: 2rem;
}

footer .footer-img {
  max-width: 15rem;
}

@media (min-width: 768px) {
  #hero .description h1 {
    max-width: 75%;
  }

  #hero .description h1 {
    font-size: 2rem;
  }

  section#who-we-are .section-title {
    font-size: 2rem;
    text-align: center;
  }

  section#who-we-are > p {
    text-align: center;
  }

  section#who-we-are .see-details {
    max-width: max-content;
    border-radius: 5px;
  }

  section#who-we-are .see-details-container {
    display: flex;
    justify-content: center;
  }

  section#who-we-are .card-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #our-signature .slick-\&-nav-container {
    display: grid;
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }

  #our-signature .articles-container {
    grid-column: span 12 / span 12;
    order: 2;
  }

  #our-signature .slick-nav {
    flex-direction: column;
    align-items: center;
  }

  #our-signature .signature {
    max-width: 450px;
    padding: 1.5rem;
  }

  #our-signature .signature-img {
    aspect-ratio: 3/2;
  }

  #latest-information .articles-category {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #latest-information .filter-category-\&-show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  #latest-information .filtering {
    flex-shrink: 0;
  }

  #latest-information .filter-show {
    max-width: 200px;
  }

  footer .page-link {
    padding: 1rem;
  }

  footer .social-media-links {
    gap: 2rem;
  }

  footer hr {
    opacity: 0.3;
  }

  footer .address-container {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  section#hero .description h1 {
    font-size: 3rem;
  }

  #hero .slick-content-over {
    padding: 4rem;
    padding-top: 15rem;
  }

  section#who-we-are .card-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  section#we-offer {
    position: relative;
  }

  section#we-offer .section-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    z-index: 1;
  }

  section#we-offer .articles-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  section#we-offer .articles-container > * + * {
    border-left-width: 1px;
    border-color: rgb(180, 178, 178);
    border-style: solid;
    border-right-width: 0;
    border-bottom-width: 0;
    border-top-width: 0;
  }

  section#we-offer article .differlay {
    flex-direction: column;
    text-align: center;
    transition-property: transform;
    transition-duration: 0.4s;
  }

  section#we-offer article {
    padding: 0;
  }

  section#we-offer .lay-container {
    transition-property: background-color;
    transition-duration: 0.3s;
  }

  section#we-offer article:hover .lay-container {
    background-color: rgba(0, 71, 153, 0.9);
  }

  section#we-offer article .lay-container {
    padding: 3rem 1rem;
    z-index: 2;
    padding-top: 15rem;
    height: 100%;
  }

  section#we-offer article .overlay-content p {
    height: 100px;
  }

  section#we-offer article .overlay {
    opacity: 1;
    background-color: transparent;
    height: 150px;
    bottom: 2rem;
    top: initial;
  }

  section#we-offer article:hover .differlay {
    opacity: 1;
    transform: translateY(-130px);
  }

  section#we-offer article:hover .background-hover-img {
    opacity: 0.3;
  }

  #investor-relation .relations-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
  }

  #investor-relation .relation-content-container {
    order: 2;
  }

  #investor-relation .relation-description-container {
    order: 3;
  }

  #latest-information .articles-category:not(.megazines) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  footer hr:nth-of-type(2) {
    display: none;
  }

  footer {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
  }

  footer hr:nth-of-type(1) {
    grid-column: span 2 / span 2;
    width: 100%;
    order: 3;
  }

  footer .copyright {
    order: 2;
    margin-top: 0;
  }

  footer .social-media-links {
    order: 5;
    justify-content: center;
  }

  footer .bottom-part {
    order: 4;
    display: flex;
    align-items: center;
    margin-top: 0;
    gap: 1rem;
  }

  footer .address-container {
    margin-top: 0;
  }
}

@media(min-width:1200px)
{

  header.bg-white .very-large-action {
    background-color: #2aabe2;
    color: white !important;
  }

  header {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
    padding-bottom:0;
  }

  header .contact-us {
    display: inline-block;
  }

  header .sitemap {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  header .contact-us,
  header .sitemap {
    padding: 0 0.75rem;
  }

  header .action {
    gap: 0.5rem;
    display: none;
  }

  header .search-btn,
  header .aside-toggler {
    display: none;
  }

  header .header-logo {
    height: 3rem;
    margin-left: 2rem;
    max-width: 5rem;
    display:block;
  }

  header .nav-container {
    display: block;
    color: #2aabe2;
    text-transform: uppercase;
    font-weight: bold;
  }

  header .nav-list {
    display: flex;
    align-items: center;
    color: var(--sky-500);
    line-height: initial;
    margin:0.5rem;
  }

  header .nav-\&-action-container {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
  }

  header .dropdown {
    display: none;
  }

  header .dropdown-container {
    position: relative;
  }

  header .dropdown-title {
    cursor: pointer;
    padding: 1rem 1.75rem 1rem 0.5rem;
    position: relative;
    font-size:0.95rem;
  }

  header li {
    color: var(--sky-500);
  }

  header .dropdown-container > .dropdown-title::after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-60%);
  }

  header .dropdown-container > .dropdown-title:hover::after {
    content: "\f0d8";
  }

  header .dropdown-container.right > .dropdown-title::after {
    content: "\f0da";
  }

  header .dropdown-container.left > .dropdown-title::after {
    right: initial;
    left: 10px;
    content: "\f0d9";
  }

  header .dropdown {
    padding: 0.5rem;
    position: absolute;
    top: 40px;
    width: 250px;
    left: 50%;
    transform: translateX(-50%);
  }

  header .dropdown-list {
    background-color: white;
    border-radius: 5px;
    border: 1px solid var(--gray-300);
  }

  header .dropdown-container:hover > .dropdown {
    display: block;
  }

  header .nav-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1rem;
  }

  header .nav-search-btn {
    font-size: 2rem;
    color: #2aabe2;
  }

  header .dropdown-list .dropdown-title {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    width: 100%;
    display: inline-block;
    font-weight: normal;
  }

  header .dropdown-list .dropdown-title:hover {
    color: black;
  }

  header .dropdown-container.right > .dropdown {
    top: 0;
    right: 0;
    padding: 0.5rem;
    transform: translateX(47%);
  }

  header .dropdown-container.left > .dropdown {
    left: 0;
    padding: 0.5rem;
    transform: translateX(-100%);
    top: 0;
  }

  header .max-600 {
    max-height: 500px;
    overflow-y: auto;
  }

  header .max-600::-webkit-scrollbar {
    width: 4px;
  }

  header .max-600::-webkit-scrollbar-thumb {
    background-color: #2aabe2;
  }

  header .very-large-action {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem;
    color: #2aabe2;
  }

  header .lang-list {
    z-index: 2;
  }

}

@media (min-width: 1440px) {
  #hero .description h1 {
    font-size: 4rem;
    margin-top: 6rem;
  }

  #latest-information .megazine-title {
    font-size:2.5rem;
    line-height:2.5rem;
  }
  #latest-information .megazine-date {
    font-size:1.5rem;
  }

  #latest-information .action {
    height:4rem;
    width:4rem;
  }
  #latest-information .action span {
    font-size:2rem;
  }
}

/* Newsroom Fixed Section */

#newsroom-fixed {
  color: white;
  background-color: var(--primary);
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 0.75rem;
  max-width: 50px;
  transition-property: max-width;
  transition-duration: 0.2s;
  font-weight: bold;
}

#newsroom-fixed a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#newsroom-fixed:hover {
  max-width: 140px;
}

/* section: looking for something */
#looking-for-something {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  padding: 3rem 1rem;
  margin-top: 0;
  z-index: 1001;
  display: none;
  max-width: none;
}

#looking-for-something.show {
  display: block !important;
}

#looking-for-something .close-container {
  position: relative;
}

#looking-for-something .close {
  position: absolute;
  right: 0;
  top: 0;
}

#looking-for-something .title {
  text-align: center;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 2.6rem;
}

#looking-for-something .search-container {
  position: relative;
  padding: 0 2.5rem;
  margin-top: 1rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

#looking-for-something input[type="search"] {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 10px;
  border-color: var(--border-light);
  outline: none;
  border-style: solid;
  padding-left: 3rem;
  font-size: 1.2rem;
}

#looking-for-something input[type="search"]::placeholder {
  font-size: 1.2rem;
}

#looking-for-something .search-container span {
  position: absolute;
  left: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
}

#looking-for-something .suggestion-title {
  text-align: center;
  font-weight: normal;
  margin: 1rem 0;
}

#looking-for-something .suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

#looking-for-something .suggestion {
  border-width: 1px;
  border-style: solid;
  border-color: black;
  padding: 0.5rem;
  display: inline-block;
  border-radius: 5px;
}

@media (min-width: 768px) {
  #looking-for-something .suggestions {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (min-width: 1024px) {
  #looking-for-something .suggestions {
    justify-content: center;
  }
}

@media (min-width: 1440px) {
  #looking-for-something {
    margin-top: 3rem;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

/* Section: Project Header */

#project-header {
  margin-top: 4rem;
}

#project-header .back-btn {
  border-width: 1px;
  border-color: var(--primary);
  border-radius: 50%;
  border-style: solid;
  height: 2rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  color: var(--primary);
  background-color: transparent;
}

#project-header .back-btn:hover {
  background-color: var(--primary);
  color: white;
}

#project-header .project-location {
  color: var(--disabled-slate);
  font-weight: normal;
  margin-top: 1rem;
}

#project-header .project-title {
  font-size: 2.2rem;
  margin-top: 1.5rem;
  color: var(--text-dark);
}

#project-header hr {
  width: 60%;
  margin-inline-start: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#project-header .project-description {
  font-size: 1.25rem;
  line-height: 2rem;
}

#project-header .project-img {
  width: 100%;
  margin-top: 2rem;
  border-radius: 5px;
}

@media (min-width: 768px) {
  #project-header .project {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  #project-header {
    padding: 2rem;
  }

  #project-header .project {
    gap: 3rem;
  }
  #project-header .project-title {
    font-size: 3.25rem;
  }
}

@media (min-width: 1440px) {
  #project-header .project-description-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #project-header {
    margin-top: 8rem;
  }
}

/* Section: Project Detail */
#project-detail {
  background-color: var(--gray-100);
  max-width: initial;
  margin-left: 0;
  margin-right: 0;
}

#project-detail .project-detail-container {
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

#project-detail .section-title {
  color: var(--gray-300);
  font-size: 4.2rem;
  text-align: center;
  font-weight: bolder;
  margin: 2rem 0;
}

#project-detail .project-information-title {
  font-weight: normal;
  font-size: 1.9rem;
  margin-bottom: 2rem;
}

#project-detail .spesification-title {
  margin-top: 2rem;
  font-size: 2rem;
}

#project-detail .spesification {
  margin-left: 5rem;
  margin-bottom: 5rem;
}

#project-detail .developed-by-img {
  width: 100%;
  max-width: 20rem;
}

#project-detail .absolute-border {
  display: none;
}

@media (min-width: 768px) {
  #project-detail {
    padding-right: 2rem;
    padding-left: 2rem;
    position: relative;
  }

  #project-detail .project-detail-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  #project-detail .project-detail-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  #project-detail .project-detail-content > * + * {
    border-left-width: 4px;
    border-right-width: 0;
    border-bottom-width: 0;
    border-top-width: 0;
    border-color: var(--gray-300);
    border-style: solid;
  }

  #project-detail .spesification-title {
    margin-top: 0;
  }

  #project-detail .absolute-border {
    display: block;
    position: absolute;
    top: 0;
    height: 25rem;
  }

  #project-detail .absolute-border.right {
    right: 0rem;
  }

  #project-detail .absolute-border.left {
    left: 0rem;
  }

  #project-detail .spesification-container {
    padding: 1rem;
    padding-left: 2rem;
  }
}

/* Section: Photo Gallery */

#photo-gallery .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
#photo-gallery .img-container {
  padding: 1rem;
}

#photo-gallery .gallery-arrows {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

#photo-gallery .arrow {
  border-width: 1px;
  border-color: var(--primary);
  border-radius: 50%;
  border-style: solid;
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  color: var(--primary);
}

#photo-gallery .arrow span {
  font-size: 2.5rem;
}

#photo-gallery .arrow:hover {
  background-color: var(--primary);
  color: white;
}

/* Section: business page header */
#business-page-header {
  background-image: url("/assets/img/business-header-bg.jpg");
  max-width: initial;
  position: relative;
  background-size: cover;
  background-position: center;
}

#business-page-header::before {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(252, 252, 252, 1) 20%,
    rgba(255, 255, 255, 0) 70%
  );
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#business-page-header .header-p {
  color: black;
  margin-top: 3rem;
  font-size: 1.2rem;
}

#business-page-header .business-page-header-container {
  max-width: 85rem;
  margin: 0 auto;
  z-index: 1;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

#business-page-header .section-title {
  font-size: 2.2rem;
}

@media (min-width: 768px) {
  #business-page-header .header-p {
    font-size: 1.4rem;
    width: 35rem;
    line-height: 2rem;
  }

  #business-page-header .section-title {
    font-size: 3rem;
  }
}

/* Section: category-selector */
#category-selector {
  position: relative;
  margin-top: 0;
  padding: 0 1rem;
  width: 100%;
}

#category-selector .absolute-container {
  border: 1px solid var(--gray-300);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: flex;
  overflow-x: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  top: -2rem;
  background-color: white;
}

#category-selector .absolute-container > * {
  flex-shrink: 0;
}

#category-selector .category-link {
  padding: 1.25rem 1.5rem;
  font-size: 1.25rem;
  color: var(--gray-400);
  border-width: 0 0 5px 0;
  border-color: transparent;
  border-style: solid;
  transition-property: color, border-color, font-weight;
  transition-duration: 0.2s;
}

#category-selector .category-link:hover {
  color: var(--primary);
}

#category-selector .category-link.active {
  color: var(--primary);
  border-color: var(--primary);
  font-weight: bold;
}

#category-selector .absolute-container::-webkit-scrollbar {
  height: 10px;
  background-color: var(--gray-200);
}

#category-selector .absolute-container::-webkit-scrollbar-thumb {
  background-color: white;
  border: 2px solid var(--gray-300);
}

/* Section: category-detail */

#category-detail .section-title {
  font-size: 2rem;
  margin: 2rem 0;
}

#category-detail .category-img {
  margin: 2rem 0;
}

@media (min-width: 768px) {
  #category-detail {
    display: grid;
    grid-template-columns: 40% 60%;
  }

  #category-detail .category-description {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}

@media (min-width: 1024px) {
  #category-detail {
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    padding: 0 2rem;
  }
}

/* Section: list-project */

#list-project {
  background-color: var(--gray-100);
  max-width: initial;
}

#list-project .section-title {
  text-align: center;
  margin: 3rem 0;
  font-weight: normal;
  font-size: 2rem;
}

#list-project .project-img {
  border-radius: 10px;
}

#list-project .project-title {
  margin: 1rem 0;
}

#list-project .project-description {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#list-project .list-container {
  border-width: 0 0 1px 0;
  border-color: var(--gray-300);
  border-style: solid;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

#list-project .see-more {
  color: var(--primary);
  gap: 0.25rem;
  font-weight: bold;
}

#list-project .see-more span {
  display: inline;
  vertical-align: middle;
  font-weight: bold;
}

#list-project .see-more:hover {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

@media (min-width: 768px) {
  #list-project .list-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
    max-width: 50rem;
    margin: 0 auto;
    margin-bottom: 1rem;
  }

  #list-project .project-detail-container {
    grid-column: span 2;
  }
}

/* Section: award-certification */

#award-certification .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 2rem 0;
}

#award-certification .award-title {
  text-align: center;
  color: var(--text-gray);
  margin: 1rem 0;
}

#award-certification .award-date {
  text-align: center;
  display: block;
  font-size: 1.5rem;
  color: var(--gray-400);
}

#award-certification .award-description {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.search-container {
  position: relative;
}

.search-container span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
}

.search {
  padding: 1rem 1rem;
  padding-left: 3rem;
  width: 100%;
  outline: none;
  border: 1px solid var(--gray-400);
  border-radius: 5px;
  font-size: 1rem;
  transition-property: border-color;
  transition-duration: 0.2s;
}

.search:focus {
  border-color: var(--primary);
}

#award-certification .award-list-container .award-list:first-child {
  border-radius: 5px 5px 0 0;
  margin-top: 2rem;
}
#award-certification .award-list-container .award-list:last-child {
  border-radius: 0 0 5px 5px;
}

#award-certificaiton .custom-select {
  margin-top: 1rem;
}

#award-certification .award-list-detail .award-description {
  display: none;
}

#award-certification .award-list {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  gap: 1rem;
  cursor: pointer;
}

#award-certification .award-list:hover {
  background-color: var(--primary);
  color: white;
}

#award-certification .award-list.selected {
  background-color: var(--primary);
  color: white;
}

#award-certification .award-list-img {
  max-width: 4rem;
}

#award-certification .award-list-title {
  font-size: 1.2rem;
}

#award-certification .award-list-date {
  margin-top: 1rem;
  display: block;
}

#award-certification .filtering-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  #award-certification .filtering-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  #award-certification .custom-select {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  #award-certification .content-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
    align-items: flex-start;
    grid-template-rows: 52px 630px auto;
  }

  #award-certification .filtering-container {
    order: 1;
  }

  #award-certification .award {
    grid-column-start: 2;
    grid-row: span 3;
    order: 2;
  }

  #award-certification .award-list-container {
    order: 3;
  }

  #award-certification .pagination-container {
    order: 4;
    align-self: flex-start;
  }

  #award-certification .award-list.selected {
    position: relative;
  }

  #award-certification .award-list.selected::after {
    font-family: "Material Symbols Outlined";
    content: "arrow_right";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -2.8rem;
    color: var(--primary);
    font-size: 5rem;
    z-index: 3;
  }
}

/* Section: sustainability-strategy */
#sustainability-strategy {
  margin-top: 6rem;
}

#sustainability-strategy .section-title {
  font-size: 2.5rem;
  color: var(--text-gray);
}

#sustainability-strategy p {
  font-size: 1.3rem;
  line-height: 2rem;
}

#sustainability-strategy img {
  margin-top: 2rem;
  border-radius: 10px;
}

@media (min-width: 1024px) {
  #sustainability-strategy .section-title {
    font-size: 3.6rem;
  }
  #sustainability-strategy .content-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
  }

  #sustainability-strategy .description-container {
    grid-column: span 3;
  }

  #sustainability-strategy img {
    height: 35rem;
    object-fit: cover;
    grid-column: span 2;
  }
}

@media (min-width: 1440px) {
  #sustainability-strategy .content-container {
    gap: 10rem;
  }
}

/* Section: corporate-social-responsibility */

#corporate-social-responsibility {
  margin-top: 4rem;
}

#corporate-social-responsibility .section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--text-gray);
}

#corporate-social-responsibility p {
  text-align: center;
}

#corporate-social-responsibility .section-title + p {
  margin-top: 2rem;
}

#corporate-social-responsibility .social-responsibility-img {
  width: 5rem;
  margin: 0 auto;
  display: block;
}

#corporate-social-responsibility .social-responsibility-container {
  margin-top: 3rem;
}

#corporate-social-responsibility .score-container {
  margin: 1rem auto;
  border-width: 1rem;
  border-style: solid;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0px 3rem 4px var(--gray-300);
  max-width: 20rem;
}
#corporate-social-responsibility .score-container p {
  font-size: 1.2rem;
}

#corporate-social-responsibility h2 {
  color: var(--primary);
  font-size: 3rem;
}

#corporate-social-responsibility h3 {
  margin-top: 1rem;
  font-size: 1.4rem;
}

#corporate-social-responsibility img {
  border-radius: 10px;
}

#corporate-social-responsibility .corporate-social-img {
  margin-top: 5rem;
}

#corporate-social-responsibility .corporate-social-img + * {
  text-align: start;
}

@media (min-width: 768px) {
  #corporate-social-responsibility .header-description {
    font-size: 1.25rem;
  }

  #corporate-social-responsibility .section-title {
    font-size: 2.5rem;
  }

  #corporate-social-responsibility .social-responsibility-container {
    display: grid;
    justify-content: center;
    gap: 1.5rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  #corporate-social-responsibility .social-responsibility-img {
    height: 7rem;
    width: auto;
  }
  #corporate-social-responsibility .scores {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
  }

  #corporate-social-responsibility .score-container {
    flex-shrink: 0;
    width: 100%;
  }

  #corporate-social-responsibility .bottom-part {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-top: 6rem;
  }

  #corporate-social-responsibility .corporate-social-img {
    margin-top: 0;
    width: 12rem;
    height: 20rem;
    object-fit: cover;
  }
}

@media (min-width: 1024px) {
  #corporate-social-responsibility .corporate-social-img {
    height: auto;
    width: 30%;
  }

  #corporate-social-responsibility .corporate-social-img + * {
    font-size: 1.2rem;
  }
}

/* Section: wika-csr-pillar */
#wika-csr-pillar .section-title {
  font-size: 2rem;
}

#wika-csr-pillar .pillar-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 10rem 1rem;
}

#wika-csr-pillar .pillar {
  position: relative;
}

#wika-csr-pillar .pillar.section-4-1 .pillar-detail,
#wika-csr-pillar .pillar.section-4-2 .pillar-detail {
  position: absolute;
  top: 0;
  transform: translateY(-130%);
  padding: 0 0.5rem;
}
#wika-csr-pillar .pillar.section-4-3 .pillar-detail,
#wika-csr-pillar .pillar.section-4-4 .pillar-detail {
  position: absolute;
  top: bottom;
  transform: translateY(250%);
  padding: 0 0.5rem;
}

#wika-csr-pillar .pillar.section-4-3 .pillar-detail,
#wika-csr-pillar .pillar.section-4-1 .pillar-detail {
  left: 0;
}
#wika-csr-pillar .pillar.section-4-4 .pillar-detail,
#wika-csr-pillar .pillar.section-4-2 .pillar-detail {
  right: 0;
}

#wika-csr-pillar img {
  width: 8rem;
}

#wika-csr-pillar .img-container {
  display: flex;
}

#wika-csr-pillar .pillar.section-4-3 .img-container,
#wika-csr-pillar .pillar.section-4-1 .img-container {
  justify-content: flex-end;
}
#wika-csr-pillar .pillar.section-4-4 .img-container,
#wika-csr-pillar .pillar.section-4-2 .img-container {
  justify-content: flex-start;
}

#wika-csr-pillar .pillar-detail:hover,
#wika-csr-pillar .pillar-detail:hover p {
  color: var(--primary);
}
#wika-csr-pillar .pillar img {
  transition-property: transform;
  transition-duration: 0.2s;
  display: block;
}

#wika-csr-pillar .pillar.section-4-1 .pillar-detail:hover + .img-container img {
  transform: scale(1.1) translate(-10px, -10px);
}

#wika-csr-pillar .pillar.section-4-2 .pillar-detail:hover + .img-container img {
  transform: scale(1.1) translate(10px, -10px);
}
#wika-csr-pillar .pillar.section-4-3 .pillar-detail:hover + .img-container img {
  transform: scale(1.1) translate(-10px, 10px);
}
#wika-csr-pillar .pillar.section-4-4 .pillar-detail:hover + .img-container img {
  transform: scale(1.1) translate(10px, 10px);
}

@media (min-width: 768px) {
  #wika-csr-pillar .pillar.section-4-4 .pillar-detail,
  #wika-csr-pillar .pillar.section-4-2 .pillar-detail,
  #wika-csr-pillar .pillar.section-4-3 .pillar-detail,
  #wika-csr-pillar .pillar.section-4-1 .pillar-detail {
    transform: translateY(0);
  }

  #wika-csr-pillar .pillar-categories {
    padding: 2rem 1rem;
  }

  #wika-csr-pillar .pillar-title {
    font-size: 1.3rem;
  }

  #wika-csr-pillar .pillar-description {
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  #wika-csr-pillar .pillar-detail {
    width: 15rem;
  }
}

/* Section: who-we-are-p */
#who-we-are-p {
  margin-top: 6rem;
}

#who-we-are-p img {
  max-width: 13rem;
  display: block;
  border-radius: 10px;
}

#who-we-are-p .img-1 {
  max-width: 18rem;
  margin-left: auto;
}

#who-we-are-p .business-lines {
  list-style: decimal;
  list-style-position: inside;
  padding-left: 3rem;
  color: #475569;
}

#who-we-are-p .business-lines li {
  margin-bottom: 0.5rem;
  line-height: 2rem;
}

@media (min-width: 768px) {
  #who-we-are-p article {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  #who-we-are-p article:nth-of-type(2) .description {
    order: 2;
  }

  #who-we-are-p img {
    height: 20rem;
    object-fit: cover;
    max-width: 15rem;
  }
}

@media (min-width: 1024px) {
  #who-we-are-p img {
    max-width: 25rem;
    height: 28rem;
  }

  #who-we-are-p .img-1 {
    height: 20rem;
    max-width: 26rem;
  }

  #who-we-are-p article:nth-of-type(2) {
    margin-top: 2rem;
  }
}

/* Section: business-lines */
#business-lines .section-title {
  font-size: 1.75rem;
}

#business-lines .see-more-container {
  position: relative;
}

#business-lines .business-line hr {
  border-width: 1px;
  border-style: solid;
  border-color: var(--gray-200);
  transition-property: border-color;
  transition-duration: 0.2s;
}

#business-lines .see-more-arrow {
  border: 1px solid black;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  background-color: var(--gray-100);
  top: -0.7rem;
  right: 0;
  transition-property: transform, border-color;
  transition-duration: 0.2s;
}

#business-lines .see-more-arrow:hover {
  transform: scale(1.2);
  border-color: var(--primary);
}

#business-lines .see-more-arrow:hover + hr {
  border-color: var(--gray-400);
}

#business-lines .see-more-arrow:hover span {
  color: var(--primary);
}

#business-lines .see-more-arrow span {
  font-size: 1.25rem;
  transition-property: color;
  transition-duration: 0.2s;
}

#business-lines .business-line + .business-line {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  #business-lines .business-line-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
  }

  #business-lines .business-line + .business-line {
    margin-top: 0;
  }

  #business-lines .business-line-title {
    height: 84px;
  }
}

/* Section: company-profile */
#company-profile .section-title {
  font-size: 1.75rem;
}
#company-profile .company-profile-link {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

#company-profile .company-profile-link span {
  font-size: 2rem;
}

#company-profile iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

@media (min-width: 768px) {
  #company-profile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

/* Section: news-page */
#news-page {
  padding: 0;
}

@media (min-width: 1024px) {
  #news-page {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: flex-end;
  }
}

/* Section: news */
#news {
  margin-top: 0;
}

#news ol {
  list-style: decimal;
  list-style-position: inside;
  margin-left: 1rem;
}

@media (min-width: 1024px) {
  #news {
    grid-column: span 3;
  }
}

/* Section: news-recomendation */

#news-recomendation .card {
  border: 1px solid var(--gray-200);
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px 1px var(--gray-200);
  padding: 1rem;
  color: var(--gray-700);
}

#news-recomendation .card > h1 {
  font-size: 1.5rem;
}

#news-recomendation .new {
  padding: 2rem 0;
}

#news-recomendation .new + .new {
  border-width: 1px 0 0 0;
  border-color: var(--gray-200);
  border-style: solid;
}

@media (min-width: 768px) {
  #news-recomendation .new > a {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  #news-recomendation .new img {
    max-width: 8rem;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  #news-recomendation .new p {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  #news-recomendation {
    grid-column: span 2;
    padding: 1rem;
    position: sticky;
    bottom: -10rem;
  }

  #news-recomendation .new {
    padding: 1rem 0;
  }
}

@media (min-width: 1440px) {
  #news-recomendation {
    bottom: 0;
  }
}

/* Section: news-list */
#news-list .post-categories {
  display: flex;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 4rem;
}

#news-list .post-categories > a.active {
  font-weight: bold;
  color: var(--primary);
}

#news-list .post-categories > a {
  padding: 0 1rem;
}

#news-list .post-categories > a:hover {
  color: var(--primary);
}

#news-list .post-categories > * + * {
  border-width: 0 0 0 1px;
  border-style: solid;
  border-color: var(--gray-300);
}

#news-list .section-title {
  margin-bottom: 2rem;
}

#news-list .filtering-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

#news-list .new {
  border: 1px solid var(--gray-300);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

#news-list .new-detail {
  padding: 1rem;
}

#news-list .new-title {
  color:var(--gray-700);
}

#news-list .new-img {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

#news-list .article-container {
  display:grid ;
  grid-template-columns:repeat(1,minmax(0,1fr));
  gap:1rem;
}

@media (min-width: 768px) {
  #news-list .post-categories {
    justify-content:center;
  }

  #news-list .top-part {
    display:flex;
    justify-content:space-between;
  }

  #news-list .filtering-container {
    flex-direction:row;
  }

  #news-list .custom-select {
    max-width: 200px;        
  }

  #news-list .search-container {
    order:2;
  }
  #news-list .article-container {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap:2rem;
  }
}

@media (min-width: 1024px)
{
  #news-list .article-container {
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}
/* Animateion Frame */

.animate-fade-down {
  animation-name: slifadedfadee-down;
  animation-duration: 0.3s;
}

.animate-fade-up {
  animation-name: fade-up;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.slide-right {
  animation-name: slide-right;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}

.slide-left {
  animation-name: slide-left;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.fade-appear {
  animation-name: fade-appear;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}

.fade-disappear {
  animation-name: fade-disappear;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}

@keyframes fade-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-disappear {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes slide-right {
  from {
    left: -100%;
  }
  to {
    left: 0;
  }
}
@keyframes slide-left {
  from {
    left: 0;
  }

  to {
    left: -100%;
  }
}
