/* @font-face {
    font-family: "SuisseIntl";
    src: url("/fonts/SuisseIntl-Light.ttf");
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: "SuisseIntl";
    src: url("/fonts/SuisseIntl-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: "SuisseIntl";
    src: url("/fonts/SuisseIntl-Medium.ttf");
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: "SuisseIntl";
    src: url("/fonts/SuisseIntl-SemiBold.ttf");
    font-weight: 600;
    font-style: normal;
  }
  
  @font-face {
    font-family: "SuisseIntl";
    src: url("/fonts/SuisseIntl-Bold.ttf");
    font-weight: 700;
    font-style: normal;
  } */
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  
  /* @font-face {
  font-family: "Kanit";
  src: url("/fonts/rewamp-fonts/Kanit-ExtraLight.ttf") format("truetype");
  font-weight: 200;
}

@font-face {
  font-family: "Kanit";
  src: url("/fonts/rewamp-fonts/Kanit-SemiBold.ttf") format("truetype");
  font-weight: 600;
} */

@font-face {
  font-family: "Roboto";
  src: url("/fonts/rewamp-fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/rewamp-fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
}

  .poppins-light {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  :root {
    --primary: #8cc540;
    --white: #ffffff;
    --black: #000000;
    --line: #d0cfcf;
    --footer-bg: #d1d3d4;
    --table: #eaeaea;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  h1,h2,h3,h4,h4,h5,h6, th {
  font-family: "Kanit", sans-serif !important;
}

  
  body {
    /* font-family: "SuisseIntl"; */
    /* font-family: "Poppins", serif;  */
    font-family: "Roboto", sans-serif;

  }
  
  a {
    text-decoration: none;
  }

  p{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  /* header */
  /* header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 9;
  }
  
  .header {
    width: 94%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    align-items: flex-end;
  }
  
  .logo-holder img {
    width: 175px;
  }
  
  .menu-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  
  .menu-holder>div {
    width: 60px;
    position: relative;
  }
  
  .menu-holder p {
    font-size: 18px;
    color: var(--black);
  }
  
  .menu-black {
    width: 37px;
    opacity: 1;
    transition: all 0.5s ease;
  }
  
  .menu-hover {
    position: absolute;
    top: 13.5px;
    left: 0;
    width: 54px;
    opacity: 0;
    transition: all 0.5s ease;
  }
  
  .menu-holder:hover .menu-black {
    opacity: 0;
  }
  
  .menu-holder:hover .menu-hover {
    opacity: 1;
  } */


  
/* header */
header {
  /* border-bottom: 1px solid var(--line); */
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background: transparent;
  transition: background 0.3s ease;
}

.header {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  align-items: flex-end;
}

.logo-black {
  display: none;
}

.logo-holder img {
  width: 172px;
}

.menu-holder {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.menu-holder>div {
  width: 40px;
  position: relative;
}

.menu-holder p {
  font-size: 18px;
  margin-bottom: 1rem;
  color: var(--black);
}

.menu-black {
  width: 37px;
  opacity: 1;
  transition: all 0.5s ease;
  filter: invert(1);
}

.menu-black path{
  fill: var(--black);
}

.menu-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 37px;
  opacity: 0;
  transition: all 0.5s ease;
}

.menu-holder:hover .menu-black {
  opacity: 0;
}

.menu-holder:hover .menu-hover {
  opacity: 1;
}

/* nav menu */
.nav-holder {
  /* background: var(--white); */
  background: #fff;
  height: 100vh;
  width: 22vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  right: -200%;
  top: 0;
  transition: right 0.3s ease-in-out;
  z-index: 100;
  overflow-y: scroll;
}

.nav-holder.show {
  right: 0;
}

.nav-menu-close {
  text-align: right;
}

.nav-menu-close img {
  cursor: pointer;
  position: absolute;
  top: 6%;
  right: 10%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  /* width: 90vw; */
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  text-decoration: none;
  color: var(--black);
  font-size: 26px;
  font-weight: 300;
}

.sub-menu {
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.sub-menu a {
  font-size: 18px;
  color: var(--black);
}


.menu-link::after {
  content: "\25BC";
  margin-left: 10px;
  display: inline-block;
  transform: rotate(0deg);
  transition: all 0.5s ease;
  font-size: 12px;
}

.menu-link.menuactive::after {
  transform: rotate(-180deg);
}



  
  /* footer */
  /* footer {
    background: var(--footer-bg);
  }
  
  .footer {
    width: 94%;
    margin: auto;
    padding: 2rem 0 3rem 0;
  }
  
  .footer-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  
  .footer-flex p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.8rem;
  }
  
  .footer-flex address {
    font-style: unset;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
  }
  
  .footer-col1 {
    width: 15%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-con a {
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
  }
  
  .footer-sm {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-col2 {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-col3 {
    width: 12%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding-left: 2rem;
  }
  
  .footer-nav {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
  }
  
  .footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-nav-list a {
    color: var(--black);
    font-size: 16px;
    font-weight: 300;
  }
  
  .footer-col4 {
    width: 20%;
    padding: 0 2rem;
  }
  
  .footer-col5 {
    width: 25%;
    padding: 0 2rem;
  }
  
  .footer-enquire {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 2rem;
  }
  
  .footer-enquire input {
    width: 100%;
    border: unset;
    background-color: unset;
    outline: unset;
    border-bottom: 1px solid #5a5a5a;
    padding-bottom: 5px;
  }
  
  .footer-enquire button {
    width: 100%;
    border: unset;
    background-color: unset;
    outline: unset;
    text-align: left;
    cursor: pointer;
  }
  
  .footer-enquire button img {
    width: 42px;
  }
  
  .footer-enquire ::placeholder {
    color: var(--black);
    font-size: 16px;
    font-weight: 300;
  }
  
  .line-footer {
    position: relative;
  }
  
  .line-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.78px;
    height: 70%;
    background: #00000099;
  }
   */



/* footer */
footer {
  background-color: #E0E0E0;
}

.footer {
  width: 90%;
  margin: auto;
  padding: 4rem 0;
}

.footer-flex,
.footer-even {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Set equal widths for the first four columns */
.footer-one,
.footer-two,
.footer-three,
.footer-four,
.footer-col3,
.footer-col4,
.footer-col5 {
  flex-basis: 20%;
  /* Equal width for all columns */
  box-sizing: border-box;
  padding: 0 0 3rem 0;
}

.footer-even .footer-one {
  padding: 0;
}

.footer-even .footer-col3 {
  padding: 0;
}

.footer-even .footer-col4 {
  padding: 0;
}

.footer-even .footer-col5 {
  padding: 0;
}

.footer-one img {
  width: 200px;
}

.office--add p {
  font-size: 20px;
  font-weight: 500;
}

.footer-flex address {
  font-style: unset;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.footer-flex a {
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
}

.footer-col3 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.footer-nav {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-list a {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
}

.footer-enquire {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.footer-enquire input {
  width: 100%;
  border: unset;
  background-color: unset;
  outline: unset;
  border-bottom: 1px solid #5a5a5a;
  padding-bottom: 5px;
  border-radius: 0;
}

.footer-enquire button {
  width: 100%;
  border: unset;
  background-color: unset;
  outline: unset;
  text-align: left;
  cursor: pointer;
}

.footer-enquire button img {
  width: 42px;
}

.footer-enquire ::placeholder {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins", serif;
}

.line-footer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  /* Allow it to adjust to content height */
}

.line-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0.78px;
  background: #00000033;
  height: 100%;
  transform: translateX(-50%);
}

.ft-call {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ft-ct-flex {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-sm a {
  display: flex;
  width: 20px;
  aspect-ratio: 1/1;
}

.ft-ct-flex a {
  font-size: 20px;
  font-weight: 500;
}

.footer-sm {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.footer-sm a img {
  width: 100%;
}

.copyrights {
  background-color: #F4F3F3;
}

.copyrights-flex {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.copyrights-flex p {
  font-size: 14px;
  margin: unset;
  color: #9B9B9B;
}

.copyrights-flex img {
  width: 104px;
}

.footer-con-img {
  display: flex;
  gap: 0.5rem;
}

.footer-con-img img {
  width: 20px;
}



/* floater */

.floaters {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 9;
}

.floaters-flex {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.8rem;
}

.floaters-flex a img {
  width: 50px;
}











  /* investor main */
  .ham-menu {
    position: relative;
  }
  
  .hamburger-menu img {
    width: 25px;
  }
  
  .close-sidebar img {
    width: 20px;
  }
  
  .hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    z-index: 9;
  }
  
  .close-sidebar {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9;
  }
  
  .main-flex {
    display: flex;
    padding: 2rem 0;
  }
  
  .investor-sidebar {
    width: 350px;
    min-height: 100vh;
    overflow-y: auto;
    border-right: 1px solid #f9f9f9;
  }
  
  .investor-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
    /* height: 100vh;
    overflow: auto; */
    scrollbar-width: none;
  }
  
  .investor-menu::-webkit-scrollbar {
    display: none;
  }
  
  .investor-sb-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: var(--black);
    /* align-items: flex-end; */
  }
  
  .investor-sb-item a>div {
    display: flex;
    /* align-items: flex-end; */
    gap: 1rem;
  }
  
  .menu-text svg {
    width: 30px;
    fill: #000;
  }
  
  .menu-text p {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
  }
  
  .arrow {
    width: 18px;
    transition: transform 0.3s ease;
  }
  
  .investor-content {
    width: calc(100vw - 350px);
  }
  
  .investor-submenu {
    display: none;
    flex-direction: column;
    height: 0%;
    overflow: hidden;
    margin-top: 1rem;
   font-family: "Roboto", sans-serif;
  }
  
  .investor-submenu a {
    padding-left: 60px;
    transition: opacity 0.3s ease;
    opacity: 0;
  }
  
  .investor-sb-item.open .investor-submenu {
    display: flex;
    height: 100%;
  }

  .investor-sb-item.hidden-submenu.open .investor-submenu {
    display: none;
  }
  
  .investor-sb-item.open .arrow {
    transform: rotate(180deg);
    fill: #000;
  }
  
  
  .investor-sb-item.open .menu-text p {
    color: var(--white);
  }
  
  .investor-submenu a.active-submenu {
    /*background-color: var(--primary);*/
    background-color: #2AAB64;
    color: var(--white);
  }
  
  .investor-sb-item a.active-menu {
    color: var(--white);
  }
  
  .investor-sb-item a.active-menu .menu-text p {
    /*color: var(--primary);*/
    color: #2AAB64;
  }
  
  
  .investor-sb-item.open .investor-submenu a {
    opacity: 1;
  }
  
  
  .investor-sb-item.open .menu-text svg {
    fill: #000;
  }
  
  
  .investor-sb-item a.active-menu .menu-text svg {
    /*fill: #8cc540;*/
    fill: #2AAB64;
  }
  
  .investor-sb-item a.active-menu .arrow {
    /*fill: #8cc540;*/
    fill: #2AAB64;
  }
  
  
  /* investor pages */
  .investor-heading {
    border-bottom: 0.7px solid #d0cfcf;
    padding: 1rem 0;
    display: flex;
  }
  
  .investor-heading h1 {
    width: 93%;
    margin: auto;
    font-size: 30px;
    font-weight: 400;
  }
  
  .in-container {
    width: 93%;
    margin: auto;
    padding: 2rem 0;
  }
  
  .in-container h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 2rem;
  }
  
  .board-directors-flex {
    display: flex;
    justify-content: space-between;
  }
  
  .board-directors-sec {
    width: 48%;
  }
  
  .board-directors-sec table {
    box-shadow: -2px 2px 1px 0px #0000000d;
    border-collapse: collapse;
    width: 100%;
  }
  
  .board-directors-sec th,
  .board-directors-sec td {
    padding: 1.2rem 1.8rem;
    border-bottom: 0.7px solid #d8d8d8;
   font-size: 15px;
    line-height: 1.4;
    width: 50%;
    
  }
  
  .board-directors-sec tbody tr:last-child td {
    border-bottom: none;
  }
  
  .board-directors-sec table thead {
    background-color: var(--table);
    text-align: left;
  }
  
  .board-directors-sec table thead th {
    font-size: 16px;
    font-weight: 400;
  }
  
  .board-directors-sec td>div:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  /* investor card style */
  .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .board {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .in-card-flex {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(177px, 1fr));
    gap: 2rem;
  }
  
  .in-card-sec {
    box-shadow: -2px 2px 1px 0px #0000000d;
    background-color: #fdfdfd;
    /* border-radius: 10px; */
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: 180px;
    justify-content: flex-start;
  }
  
  .in-card-sec img {
    width: 40px;
  }
  
  .in-card-sec p {
    font-size: 15px;
    text-align: center;
    line-height: 1.4;
    color: var(--black);
  }
  
  .in-card-sec p:first-child {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
  }
  
  /* investor contact */
  .in-contact-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
  }
  
  .in-contact-flex-sec {
    /* width: calc(36% - 2rem); */
    min-width: 600px;
  }
  
  .in-contact-flex-sec h2 {
    margin-bottom: 1.5rem;
  }
  
  .investor-contact {
    background: #fefefe;
    padding: 2rem;
    box-shadow: -2px 2px 1px 0px #0000000d;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .investor-contact p:nth-child(1) {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0.6rem;
  }
  
  .investor-contact address {
    font-style: normal;
    line-height: 1.4;
    font-weight: 300;
  }
  
  .investor-contact div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .investor-contact a {
    color: var(--black);
    font-weight: 300;
  }
  
  /* corporate action table*/
  .corporate-action {
    position: relative;
    max-height: 600px;
    overflow: auto;
    box-shadow: 0px 5px 30px 0px #f4f3f3;
  }
  
  .corporate-action table {
    border-collapse: collapse;
    width: 100%;
    background-color: var(--white);
  }
  
  .corporate-action th:nth-child(1),
  .corporate-action td:nth-child(1),
  .corporate-action th:nth-child(2),
  .corporate-action td:nth-child(2) {
    min-width: 300px;
  }
  
  .corporate-action th,
  .corporate-action td {
    padding: 2rem;
    border-bottom: 0.7px solid #d8d8d8;
    line-height: 1.4;
  }
  
  .corporate-action th {
    font-weight: 500;
    text-align: left;
  }
  
  .corporate-action tbody tr:last-child td {
    border-bottom: none;
  }
  
  .corporate-action thead {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1;
  }
  
  /* list */
  .dividend {
    max-height: 600px;
    overflow: auto;
  }
  
  .list-padding {
    padding-top: 4rem;
  }
  
  .pdf-list-flex {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    /* gap: 2rem;
    max-height: 600px;
    overflow: auto; */
  }
  
  .pdf-list-sec {
    /* width: calc(50% - 2rem); */
    width: 100%;
    background: #fdfdfd;
    padding: 1rem 2rem;
    border-bottom: 1px solid #cccccc45;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
  }
  
  
  .regclass::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: #ddd;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    z-index: -1;
  }
  
  .regclass:hover::after {
    width: 100%;
  }
  
  .pdf-list-sec:nth-child(odd) {
    border-right: 1px solid #cccccc45;
  }
  
  /* .pdf-list-sec:last-child {
    border-bottom: unset;
  }
  
  .pdf-list-sec:nth-last-child(2) {
    border-bottom: unset;
  } */
  
  .pdf-list-sec a {
    display: flex;
    /* justify-content: space-between; */
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }
  
  .pdf-list-sec a p {
    width: 80%;
    line-height: 1.4;
    color: var(--black);
  }
  
  .pdf-list-sec a img {
    /* width: 40px; */
    width: 30px;
  }
  
  
  /* dividend new css */
  
  .accordions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .accordion {
    overflow: hidden;
    transition: border-color .5s ease;
    /* border: 1px solid #ccc; */
    background: #fdfdfd;
    box-shadow: -2px 4px 1px 0px #0000000d;
    padding: 1rem 1rem;
  }
  
  /* .accordion:hover {
    border-color: #000;
  } */
  
  .accordion-header {
    cursor: pointer;
    font-weight: 500;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    position: relative;
    padding: 1rem;
    color: #666;
  }
  
  .accordion-header:after,
  .accordion-header:before {
    content: '';
    position: absolute;
    right: 1.5em;
    width: 2px;
    height: 0.75em;
    background-color: #666;
    transition: all 0.2s;
  }
  
  .accordion-header:after {
    transform: rotate(90deg);
  }
  
  .accordion:has(input:checked) .accordion-header {
    color: #000;
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .accordion-content li {
    position: relative;
    padding-left: 1rem;
    display: flex;
    gap: 0.5rem;
  }
  
  .accordion-content li a {
    color: #000;
  }
  
  .accordion-content li::before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background-color: #000;
    border-radius: 50%;
    top: 6px;
  }
  
  .accordion input {
    display: none;
  }
  
  .accordion:has(input:checked) {
    background: #fdfdfd;
    box-shadow: -2px 4px 1px 0px #0000000d;
  }
  
  .accordion input:checked~.accordion-header:before {
    transform: rotate(270deg) !important;
    background-color: #000;
  }
  
  .accordion input:checked~.accordion-header:after {
    transform: rotate(270deg) !important;
    background-color: #000;
  }
  
  .accordion input:checked~.accordion-content {
    max-height: 1000px;
  }
  
  
  
  
  
  
  /* year filter */
  .year-flex {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .year-flex select {
    outline: unset;
    border: unset;
    background: unset;
    box-shadow: unset;
    border-bottom: 1px solid #d9d9d9;
    font-size: 16px;
    padding: 0 1rem 0.2rem 0;
  }
  
  .year-content {
    display: none;
  }
  
  /* double pdf table */
  .double-pdf {
    width: 48%;
  }
  
  .double-pdf table {
    box-shadow: -2px 2px 1px 0px #0000000d;
    border-collapse: collapse;
    width: 100%;
  }
  
  .double-pdf th,
  .double-pdf td {
    padding: 1.2rem 1.8rem;
    border-bottom: 0.7px solid #d8d8d8;
    /* font-weight: 500; */
    font-size: 15px;
  }
  
  .double-pdf tbody tr:last-child td {
    border-bottom: none;
  }
  
  .double-pdf table thead {
    text-align: left;
  }
  
  .double-pdf table thead th {
    font-size: 16px;
    font-weight: 500;
  }
  
  .double-pdf td:nth-child(2) {
    text-align: center;
  }
  
  .double-pdf td:nth-child(3) {
    text-align: center;
  }
  
  .double-pdf td a {
    text-align: center;
  }
  
  .double-pdf td a img {
    width: 30px;
    text-align: center;
  }
  
  
  
  /* sample table */
  
  .sample-table {
    width: 80%;
  }
  
  .sample-table table {
    box-shadow: -2px 2px 1px 0px #0000000d;
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
  }
  
  .sample-table th,
  .sample-table td {
    padding: 1.2rem 1.8rem;
    border-bottom: 0.7px solid #d8d8d8;
    font-weight: 500;
    text-align: center;
  }
  
  .sample-table tbody tr:last-child td {
    border-bottom: none;
  }
  
  .sample-table td a img {
    display: block;
    margin: 0 auto;
    width: 60px;
  }
  
  .sample table thead th {
    text-align: center;
  }
  
  .nav-arrow img {
    transform: rotate(180deg);
    width: 64px;
  }

  
/* loader */
#loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  background-color: #000;
  z-index: 99;
  transition: all .5s ease-in-out;
}

#loading-image {
  z-index: 100;
}

a.profile-a {
    color: #2AAB64;
}

/* preloader */
.formPreloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(47, 48, 49, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  z-index: 9999;
}

.spinner {
  width: 100px;
  height: 100px;
  border: 4px solid #fff0;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
  border-radius: 50%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.response_message_div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: none;
  z-index: 2;
}

.response_message_div p {
  top: 50%;
  left: 50%;
  position: fixed;
  color: #000000;
  text-align: center;
  transform: translate(-50%, -50%);
  color: #008900;
  font-weight: 500;
  font-size: 1.4rem;
}

.response_message_div img {
  position: fixed;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -20%);
}

.error_message {
  color: red;
}


/* footer */
a.youtube {
  width: 26px !important;
}

footer {
  background-color: #eee8e2;
}

.footer {
  width: 90%;
  margin: auto;
  padding: 4rem 0 2rem 0;
}

.footer-flex,
.footer-even {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Set equal widths for the first four columns */
/* Common styles for all footer columns */
.footer-one,
.footer-two,
.footer-three,
.footer-four,
.footer-col3,
.footer-col4,
.footer-col5 {
  box-sizing: border-box;
  /* padding: 0 0 3rem 0; */
}

/* Normal columns */
.footer-one,
.footer-two,
.footer-four,
.footer-col4,
.footer-col5 {
  flex-basis: calc(21% - 2rem);
  /* slightly wider */
}

/* Third column only */
.footer-three,
.footer-col3 {
  flex-basis: calc(16% - 2rem);
  /* narrower */
}

.footer-even .footer-one {
  padding: 0;
}

.footer-even .footer-col3 {
  padding: 0;
}

.footer-even .footer-col4 {
  padding: 0;
}

.footer-even .footer-col5 {
  padding: 0;
}

.footer-one img {
  width: 200px;
}

.office--add p {
  font-size: 16px;
  font-weight: 500;
}

.footer-flex address {
  font-family: "Roboto", sans-serif;
  font-style: unset;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

.footer-flex a {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--black);
}

.footer-col3 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-list a {
  color: var(--black);
  font-size: 15px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}

.footer-enquire {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.footer-enquire input {
  width: 100%;
  border: unset;
  background-color: unset;
  outline: unset;
  border-bottom: 1px solid #5a5a5a;
  padding-bottom: 5px;
  border-radius: 0;
}

.footer-enquire button {
  width: 100%;
  border: unset;
  background-color: unset;
  outline: unset;
  text-align: left;
  cursor: pointer;
}

.footer-enquire button img {
  width: 42px;
}

.footer-enquire ::placeholder {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
}

.line-footer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
}

.line-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0.78px;
  background: #00000033;
  height: 100%;
  transform: translateX(-50%);
}

.ft-call {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ft-ct-flex {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  /*margin-top: 1rem;*/
}

.footer-sm a {
  display: flex;
  width: 20px;
  aspect-ratio: 1/1;
}

.ft-ct-flex a {
  font-size: 20px;
  font-weight: 500;
}

.footer-sm {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.6rem;
}

.footer-sm a img {
  width: 100%;
}

.copyrights {
  background-color: #f4f3f3;
}

.copyrights-flex {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.copyrights-flex p {
  font-size: 14px;
  margin: unset;
  color: #333;
}

.copyrights-flex img {
  width: 104px;
}

.footer-con-img {
  display: flex;
  gap: 0.5rem;
}

.footer-con-img img {
  width: 20px;
}