<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #f7f8f3;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f3eb;
  padding: 0 60px;
  color: white;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.navbar img {
  width: 80px;
  height: auto;
}
.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.navbar li {
  margin-right: 37px;
}
.navbar a {
  text-decoration: none;
  color: rgba(28, 28, 28, 1);
  font-size: 15px;
  transition: color 0.3s ease;
}
.navbar a.active {
  color: #476f22;
}
.navbar a:hover {
  color: #476f22;
}
.section1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px 150px 30px 150px;
}
.section1 .section1Desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section1 .section1DescTop {
  display: flex;
  justify-content: center;
}
.section1 .section1DescTop img {
  width: 250px;
}
.section1 .section1DescMiddle {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section1 .section1DescMiddle .section1DescMiddleHeader {
  font-size: 36px;
  font-weight: 300;
}
.section1 .section1DescMiddle .section1DateMiddleHeader h3 {
  font-size: 24px;
}
.section1 .section1DescMiddle .tncHeading {
  text-align: left;
  font-size: 24px;
  padding-top: 24px;
  color: rgba(72, 111, 33, 1);
}
.section1 .section1Desc .tncDesc {
  font-size: 16px;
  text-align: left;
  color: #2c2c2c;
}
.section1 h1,
.section1 h3 {
  text-align: center;
  font-weight: 300;
  font-size: 60px;
  background: linear-gradient(
    120deg,
    rgba(72, 111, 33, 1) 50%,
    rgba(214, 174, 100, 1) 60%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section1 hr {
  color: rgba(72, 111, 33, 0.4);
  margin: 40px 0;
}

.section6 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.section6 img {
  width: 280px;
}
.section6 .moreInfo {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.section6 .moreInfo a {
  color: #2c2c2c;
}
.section6 h3 {
  font-weight: 300;
  font-size: 14px;
}
.section6 .copyrights p {
  font-size: 16px;
}
.section6 .socialMedia {
  display: flex;
  gap: 20px;
  font-size: 26px;
  color: #2c2c2c;
}
.section7 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 50px;
  margin-bottom: 80px;
}
.section7 .backToTop {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #2c2c2c;
}
.section7 .backToTop img {
  width: 30px;
}
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.bar {
  width: 30px;
  height: 2px;
  background-color: #2c2c2c;
  margin: 2px 0;
  transition: 0.4s;
}
@media screen and (max-width: 1200px) {
  .section1 {
    margin: 100px 50px 60px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .section1 .section1Right img {
    width: 380px;
  }
}
@media screen and (max-width: 960px) {
  .section1 {
    margin: 100px 50px 60px 50px;
  }
  .section1 .section1DescMiddle .section1DescMiddleHeader {
    font-size: 28px;
  }
  .section1 .section1Desc .section1DescMiddleTagline {
    font-size: 18px;
  }
  .section1 .section1Desc .section1DescMiddleDesc {
    font-size: 12px;
  }
}
@media screen and (max-width: 900px) {
  .section1 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 790px) {
  .section1 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 700px) {
  .section1 {
    margin-top: 100px;
  }
  .section1 .section1Right img {
    width: 300px;
  }
}
@media screen and (max-width: 670px) {
  .section1 {
    margin-top: 100px;
  }
  .menu-icon {
    display: flex;
  }
  .navbar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px;
    left: 0;
    background-color: rgba(228, 232, 215, 0.9);
    width: 100%;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    z-index: 1;
  }
  .navbar ul.show {
    display: flex;
  }
  .navbar li {
    margin-right: 0;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid beige;
  }
  .navbar a {
    color: #2c2c2c;
    font-size: 16px;
  }
  .menu-icon.open .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .menu-icon.open .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-icon.open .bar:nth-child(3) {
    transform: rotate(45deg) translate(1px, 1px);
  }
}
@media screen and (max-width: 600px) {
  .section1 {
    margin-top: 100px;
  }
  .section1 {
    flex-direction: column;
    margin-bottom: 20px;
    gap: 30px;
  }
  .section1 .section1Desc {
    gap: 20px;
  }
  .section1 .section1DescTop img {
    width: 200px;
  }
  .section1 .section1DescMiddle .section1DescMiddleHeader {
    font-size: 26px;
    text-align: center;
  }
  .section1 .section1Desc .section1DescMiddleTagline {
    font-size: 20px;
    text-align: center;
  }
  .section1 .section1Desc .section1DescMiddleDesc {
    font-size: 14px;
    text-align: center;
  }
  .section1 .section1Desc .section1DescBottom {
    justify-content: center;
  }
  .section1 .section1Desc .section1DescBottom i {
    font-size: 26px;
  }
  .section6 .copyrights p {
    font-size: 12px;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .section1 {
    margin-top: 100px;
  }
  .section6 img {
    width: 200px;
  }
  .section6 .copyrights p {
    font-size: 12px;
    text-align: center;
  }
  .section7 {
    align-items: center;
    margin-right: 0;
  }
}
@media screen and (max-width: 400px) {
  .navbar {
    padding: 0 30px;
  }
  .section1 {
    margin-top: 100px;
  }
  .section1 .section1Right img {
    width: 250px;
  }
}
</pre></body></html>