@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
img{max-width: 100%; height: auto;}
.banner-effect {
  position: relative;
  overflow: hidden;
  display: block;
}
.banner_video video {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.banner-effect img {
  border-radius: 10px;
}

.banner-effect:before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.banner-effect:hover:before {
  -webkit-animation: shine 1.1s;
  animation: shine 1.1s;
}

@keyframes heartbeat {
  0% {
    transform: scale(1) translate(-50%, -50%);
  }
  50% {
    transform: scale(1.1) translate(-50%, -50%);
  }
  100% {
    transform: scale(1) translate(-50%, -50%);
  }
}
.heartbeat {
  animation: heartbeat 1s infinite;
}

@font-face {
  font-family: "fw-900";
  src: url("../font/Montserrat-Black.ttf") format("truetype");
}
@font-face {
  font-family: "fw-800";
  src: url("../font/Montserrat-ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: "fw-700";
  src: url("../font/Montserrat-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "fw-600";
  src: url("../font/Montserrat-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "fw-500";
  src: url("../font/Montserrat-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "fw-400";
  src: url("../font/Montserrat-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "fw-300";
  src: url("../font/Montserrat-Light.ttf") format("truetype");
}
@font-face {
  font-family: "i-900";
  src: url("../font/Montserrat-BlackItalic.ttf") format("truetype");
}
@font-face {
  font-family: "i-800";
  src: url("../font/Montserrat-ExtraBoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "i-700";
  src: url("../font/Montserrat-BoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "i-600";
  src: url("../font/Montserrat-SemiBoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "i-500";
  src: url("../font/Montserrat-MediumItalic.ttf") format("truetype");
}
@font-face {
  font-family: "i-400";
  src: url("../font/Montserrat-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "i-300";
  src: url("../font/Montserrat-LightItalic.ttf") format("truetype");
}
*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  font-family: "fw-500";
  font-size: 14px;
  line-height: 1.3;
  scroll-behavior: smooth;
  color: #252525;
}

body {
  padding: 0;
  margin: 0;
}

.prevent-scroll {
  overflow: hidden;
}

.grid {
  width: 100%;
  display: block;
  padding: 0;
}

/* Mobile */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.col {
  padding-left: 5px;
  padding-right: 5px;
}

.row.no-gutters {
  margin-left: 0;
  margin-right: 0;
}

.row.no-gutters .col {
  padding-left: 0;
  padding-right: 0;
}

.c-0 {
  display: none;
}

.c-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.c-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.c-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.c-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.c-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.c-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.c-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.c-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.c-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.c-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.c-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.c-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.c-o-0 {
  margin-left: 0;
}

.c-o-1 {
  margin-left: 8.33333%;
}

.c-o-2 {
  margin-left: 16.66667%;
}

.c-o-3 {
  margin-left: 25%;
}

.c-o-4 {
  margin-left: 33.33333%;
}

.c-o-5 {
  margin-left: 41.66667%;
}

.c-o-6 {
  margin-left: 50%;
}

.c-o-7 {
  margin-left: 58.33333%;
}

.c-o-8 {
  margin-left: 66.66667%;
}

.c-o-9 {
  margin-left: 75%;
}

.c-o-10 {
  margin-left: 83.33333%;
}

.c-o-11 {
  margin-left: 91.66667%;
}
.section-project__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.item1 {
  grid-column: span 1;
}

.item2 {
  grid-column: span 2;
}

.item3, .item4, .item5 {
  grid-column: span 1; 
}
/* >= Tablet */
@media (min-width: 768px) {
  .row {
    margin-left: -8px;
    margin-right: -8px;
  }
  .col {
    padding-left: 8px;
    padding-right: 8px;
  }
  .m-0 {
    display: none;
  }
  .m-1,
  .m-2,
  .m-3,
  .m-4,
  .m-5,
  .m-6,
  .m-7,
  .m-8,
  .m-9,
  .m-10,
  .m-11,
  .m-12 {
    display: block;
  }
  .m-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .m-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .m-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .m-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .m-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .m-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .m-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .m-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .m-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .m-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .m-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .m-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .m-o-0 {
    margin-left: 0;
  }
  .m-o-1 {
    margin-left: 8.33333%;
  }
  .m-o-2 {
    margin-left: 16.66667%;
  }
  .m-o-3 {
    margin-left: 25%;
  }
  .m-o-4 {
    margin-left: 33.33333%;
  }
  .m-o-5 {
    margin-left: 41.66667%;
  }
  .m-o-6 {
    margin-left: 50%;
  }
  .m-o-7 {
    margin-left: 58.33333%;
  }
  .m-o-8 {
    margin-left: 66.66667%;
  }
  .m-o-9 {
    margin-left: 75%;
  }
  .m-o-10 {
    margin-left: 83.33333%;
  }
  .m-o-11 {
    margin-left: 91.66667%;
  }
}
/* PC medium resolution > */
@media (min-width: 1200px) {
  .row {
    margin-left: -12px;
    margin-right: -12px;
  }
  .col {
    padding-left: 12px;
    padding-right: 12px;
  }
  .row.sm-gutter {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row.sm-gutter .col {
    padding-left: 5px;
    padding-right: 5px;
  }
  .row.big-gutter {
    margin-left: -16px;
    margin-right: -16px;
  }
  .row.big-gutter .col {
    padding-left: 16px;
    padding-right: 16px;
  }
  .l-0 {
    display: none;
  }
  .l-1,
  .l-2,
  .l-2-4,
  .l-3,
  .l-4,
  .l-5,
  .l-6,
  .l-7,
  .l-8,
  .l-9,
  .l-10,
  .l-11,
  .l-12 {
    display: block;
  }
  .l-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .l-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .l-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .l-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .l-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .l-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .l-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .l-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .l-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .l-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .l-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .l-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .l-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .l-o-0 {
    margin-left: 0;
  }
  .l-o-1 {
    margin-left: 8.33333%;
  }
  .l-o-2 {
    margin-left: 16.66667%;
  }
  .l-o-3 {
    margin-left: 25%;
  }
  .l-o-4 {
    margin-left: 33.33333%;
  }
  .l-o-5 {
    margin-left: 41.66667%;
  }
  .l-o-6 {
    margin-left: 50%;
  }
  .l-o-7 {
    margin-left: 58.33333%;
  }
  .l-o-8 {
    margin-left: 66.66667%;
  }
  .l-o-9 {
    margin-left: 75%;
  }
  .l-o-10 {
    margin-left: 83.33333%;
  }
  .l-o-11 {
    margin-left: 91.66667%;
  }
}
.slider-dot .slick-dots {
  list-style: none;
  padding-left: 0;
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.slider-dot .slick-dots li {
  margin: 3px;
}
.slider-dot .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border: 1px solid #ffffff;
  outline: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.slider-dot .slick-dots li button:hover {
  background-color: #ffffff;
  opacity: 0.8;
}
.slider-dot .slick-dots .slick-active button {
  background-color: #ffffff;
}
.slider-dot.out .slick-dots {
  bottom: unset;
  top: 100%;
  margin: 0;
}
.slider-dot.primary .slick-dots li button {
  border: 1px solid #0a7e55;
}
.slider-dot.primary .slick-dots li button:hover {
  background-color: #0a7e55;
}
.slider-dot.primary .slick-dots .slick-active button {
  background-color: #0a7e55;
}

.wrapper {
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
}

@media (min-width: 576px) {
  .container {
    width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.home-heading {
  font-size: 24px;
  font-family: fw-700;
  text-transform: uppercase;
  line-height: 1;
  color: #252525;
  margin: auto;
  width: fit-content;
  position: relative;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .home-heading {
    font-size: 18px;
  }
}
.home-heading::after {
  content: "";
  height: 2px;
  width: 140%;
  background-color: #0a7e55;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 8px);
}

.home-description {
  font-size: 16px;
  text-align: center;
  width: 640px;
  max-width: 100%;
  margin: 0 auto 30px;
}
@media (max-width: 767px) {
  .home-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.custom-select {
  position: relative;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #ffffff;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  content: "\f106";
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
  color: #0a7e55;
  padding: 8px 12px 8px 12px;
  cursor: pointer;
  user-select: none;
}

.select-selected {
  padding: 8px 32px 8px 12px;
}

.select-items div {
  white-space: nowrap;
}

.select-selected,
.select-items {
  border: 1px solid #0a7e55;
  border-radius: 10px;
  overflow: hidden;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  min-width: 100%;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(40, 51, 115, 0.0901960784);
}

.breadcrumb {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
  font-family: fw-600;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.breadcrumb li:not(:first-child)::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  margin: 0 15px;
}
.breadcrumb li a {
  text-decoration: none;
  color: #252525;
}
.breadcrumb li a:hover {
  opacity: 0.8;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  margin: 24px 0;
  font-size: 18px;
}
.pagination li {
  margin: 0 6px;
}
.pagination li a {
  text-decoration: none;
  color: #0a7e55;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #0a7e55;
  border-radius: 10px;
  transition: all ease 0.3s;
  cursor: pointer;
}
.pagination li.active a,
.pagination li:hover a {
  background-color: #0a7e55;
  color: #ffffff;
}

.search {
  transition: all linear 0.3s;
}
.search.sticky {
  position: fixed;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .search {
    font-size: 12px;
  }
}

.to-top {
  position: fixed;
  right: -60px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  background-color: #0a7e55;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  z-index: 99;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.3s;
}
.to-top.active {
  opacity: 0.8;
  visibility: visible;
  right: 12px;
}
.to-top:hover {
  bottom: 14px;
  opacity: 1;
}

.footer {
  padding: 60px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.footer::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /* background-image: linear-gradient(93.44deg, #0a7e55 30.98%, #3d86c6 81.21%, #f99d33 102.64%); */
  opacity: 0.85;
  background: #1A1A1B;
}
.footer .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer {
    padding: 32px 0;
  }
}
.footer__logo {
  display: block;
  width: 200px;
}
@media (max-width: 767px) {
  .footer__logo {
    margin: auto;
    margin-bottom: 32px;
  }
}
.footer__logo img {
  width: 100%;
}
.footer__company {
  font-size: 18px;
  font-family: fw-700;
  color: #ffffff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer__company {
    padding-bottom: 12px;
    border-bottom: 1px solid #0a7e55;
    margin: 0 0 12px;
  }
}
.footer__info {
  font-size: 16px;
  color: #ffffff;
}
@media (max-width: 1199px) {
  .footer__info {
    margin-bottom: 32px;
  }
}
.footer__info p {
  margin: 12px 0 0;
}
.footer__info p a {
  color: #ffffff;
  text-decoration: none;
}
.footer__heading {
  font-size: 18px;
  font-family: fw-700;
  color: #ffffff;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid #ffffff;
  margin: 0 0 12px;
  text-decoration: none;
}
.footer__heading a {
  text-decoration: none;
  color: #ffffff;
}
.footer__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.footer__item {
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 12px;
  transition: all ease 0.3s;
}
.footer__item:hover {
  opacity: 0.8;
}
.footer__background {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer__form__heading {
  font-size: 24px;
  font-family: fw-700;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  color: #8B0000;
  position: relative;
  width: fit-content;
  margin: 0 auto 12px;
}
.footer__form__heading::after {
  content: "";
  display: block;
  height: 1px;
  width: 150%;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #0a7e55;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .footer__form__heading {
    font-size: 18px;
  }
  .footer__form__heading::after {
    width: 110%;
  }
}
.footer__form__description {
  font-size: 16px;
  text-align: center;
  color: #252525;
}
@media (max-width: 767px) {
  .footer__form__description {
    font-size: 14px;
  }
}
.footer__form__group {
  background-color: #ffffff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 800px;
  max-width: 100%;
  margin: auto;
  height: 56px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  margin-top: 24px;
  border: 1px solid #0a7e55;
}
.footer__form__input {
  flex: 1;
  border: 0;
  outline: 0;
  background-color: transparent;
  font-size: 16px;
  padding-left: 12px;
}
.footer__form__submit {
  background-color: #8B0000;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
  border-radius: 100px;
  height: calc(100% - 10px);
  border: 0;
  outline: 0;
  padding: 0 24px;
  margin: 5px;
  cursor: pointer;
  transition: all ease-out 0.3s;
}
.footer__form__submit:hover {
  opacity: 0.8;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header__top {
  background-color: #D4AF37;
  color: #ffffff;
}
.header__top__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  transition: all ease 0.3s;
}
.header__contact {
  display: flex;
  align-items: center;
}
.header__contact__item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  transition: all ease 0.3s;
}
.header__contact__item:hover {
  opacity: 0.8;
}
.header__contact__item:first-child {
  margin-right: 20px;
}
@media (max-width: 1199px) {
  .header__contact__item:first-child {
    margin-right: 10px;
  }
}
.header__contact__item:first-child::after {
  content: "|";
  padding-left: 20px;
}
@media (max-width: 1199px) {
  .header__contact__item:first-child::after {
    padding-left: 10px;
  }
}
.header__contact__icon {
  margin-right: 5px;
  font-size: 16px;
}
@media (max-width: 1199px) {
  .header__contact__text {
    display: none;
  }
}
.header__right {
  display: flex;
  align-items: center;
}
.header__socials {
  display: flex;
  align-items: center;
}
.header__socials__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 12px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  margin-right: 10px;
  transition: all ease 0.3s;
}
.header__socials__item:hover {
  opacity: 0.8;
}
.header__socials__item:hover i {
  position: relative;
  top: -1px;
}
.header__lang {
  display: flex;
  align-items: center;
}
.header__lang__item {
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all ease 0.3s;
  margin-right: 10px;
}
.header__lang__item:hover {
  opacity: 0.8;
}
.header__lang__item:hover img {
  width: 120%;
}
.header__lang__item img {
  width: 100%;
}
.header__search {
  background-color: #ffffff;
  border-radius: 100px;
  height: 28px;
  min-height: 28px;
  width: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
}
@media (max-width: 1199px) {
  .header__search {
    margin: 15px;
    width: calc(100% - 30px);
  }
}
.header__search__input {
  border: 0;
  outline: 0;
  width: calc(100% - 24px);
}
.header__search__submit {
  width: 24px;
  border: 0;
  padding: 0;
  outline: 0;
  background-color: transparent;
  transition: all ease 0.3s;
  cursor: pointer;
}
.header__search__submit i {
  font-size: 16px;
  color: #0a7e55;
}
.header__search__submit:hover {
  opacity: 0.8;
}
.header__bot {
  background: rgba(37, 37, 37, 0.6);
  transition: all ease-out 0.4s;
}
@media (max-width: 1199px) {
  .header__bot {
    /* background-color: #ffffff; */
    position: relative;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  }
}
.header__bot__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .header__bot__flex {
    justify-content: center;
  }
}
.header__bars {
  display: none;
}
@media (max-width: 1199px) {
  .header__bars {
    display: block;
    position: absolute;
    top: 50%;
    left: 15px;
    height: 24px;
    width: 30px;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
  }
  .header__bars::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ffffff;
    display: block;
    transition: all ease 0.3s;
  }
  .header__bars::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ffffff;
    display: block;
    transition: all ease 0.3s;
  }
}
.header__bars span {
  display: inline-block;
  height: 2px;
  width: 30px;
  background-color: #ffffff;
  transition: all ease-out 0.4s;
}
.header__bars.active span {
  scale: 0;
}
.header__bars.active::before {
  transform: translateY(-50%) rotateZ(45deg);
  top: 50%;
}
.header__bars.active::after {
  transform: translateY(50%) rotateZ(-45deg);
  bottom: 50%;
}
.header__logo {
  display: block;
}
@media (max-width: 1199px) {
  .header__logo {
  }
}
.header__logo img {
  height: 70px;
}
.header__modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.3s;
}
.header__modal.active {
  opacity: 1;
  visibility: visible;
}
.header__menu {
  display: flex;
  height: 100%;
}
@media (max-width: 1199px) {
  .header__menu {
    position: absolute;
    top: 100%;
    left: -110%;
    width: 100%;
    height: 100vh;
    background-color: #0a7e55;
    flex-direction: column;
    overflow-y: auto;
    transition: all ease-out 0.4s;
    padding-bottom: 200px;
  }
  .header__menu.active {
    left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header__menu {
    width: 50%;
  }
}
.header__parent {
  position: relative;
  margin: 0 2px;
}
@media (max-width: 1199px) {
  .header__parent {
    margin: 0;
  }
}
.header__parent:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header__link {
  display: flex;
  align-items: center;
  font-family: fw-700;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 35px 10px;
  line-height: 1;
  position: relative;
  transition: all ease 0.3s;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .header__link {
    padding: 15px;
    justify-content: space-between;
  }
}
.header__link::after {
  content: "";
  position: absolute;
  top: calc(100% - 30px);
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all ease-out 0.3s;
}
@media (max-width: 1199px) {
  .header__link::after {
    content: unset;
    position: unset;
    height: unset;
    background-color: unset;
    width: unset;
    left: unset;
  }
}
.header__link.active,
.header__link:hover {
  /* color: #0A7E55; */
}
@media (max-width: 1199px) {
  .header__link.active,
  .header__link:hover {
    color: #ffffff;
  }
}
.header__link.active::after,
.header__link:hover::after {
  width: 100%;
  /* background-color: #0A7E55; */
}
@media (max-width: 1199px) {
  .header__link.active::after,
  .header__link:hover::after {
    background-color: unset;
    width: unset;
  }
}
@media (max-width: 1199px) {
  .header__link.active {
    color: #ffffff;
    background-color: #82b440;
  }
}
@media (max-width: 1199px) {
  .header__link .arrow-mb {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    z-index: 1;
  }
  .header__link .arrow-mb.toggle::before {
    content: "\f106";
  }
}
.header__link i {
  padding: 0 10px;
}
@media (max-width: 1199px) {
  .header__link i {
    padding: 0;
  }
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 30px);
  left: 0;
  min-width: 290px;
  padding: 15px;
  background-color: #ffffff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
@media (max-width: 1199px) {
  .header__dropdown {
    position: unset;
    opacity: 1;
    visibility: visible;
    padding: 0;
    display: none;
  }
  .header__dropdown.active {
    display: block;
  }
}
.header__dropdown::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 15px;
  border-width: 10px;
  border-color: transparent transparent #ffffff transparent;
  border-style: solid;
}
@media (max-width: 1199px) {
  .header__dropdown::before {
    content: unset;
  }
}
.header__dropdown__item {
  display: block;
  padding: 10px 6px;
  border-bottom: 1px solid #ededed;
  text-decoration: none;
  color: #252525;
  text-transform: capitalize;
  font-family: fw-500;
  transition: all ease-out 0.4s;
}
@media (max-width: 1199px) {
  .header__dropdown__item {
    padding: 15px;
    font-family: fw-700;
  }
}
.header__dropdown__item.active,
.header__dropdown__item:hover {
  background-color: #D4AF37;
  color: #ffffff;
}
@media (max-width: 1199px) {
  .header__dropdown__item.active,
  .header__dropdown__item:hover {
    background-color: unset;
    color: #252525;
    background-image: linear-gradient(90deg, #efd284, transparent);
  }
}
.header__dropdown__item.active .header__dropdown__icon,
.header__dropdown__item:hover .header__dropdown__icon {
  width: 14px;
}
.header__dropdown__icon {
  font-size: 12px;
  width: 0;
  overflow: hidden;
  transition: all ease-out 0.4s;
}
.header.scroll .header__top__flex {
  height: 0;
  overflow: hidden;
}
.header.scroll .header__bot {
  background-color: rgba(37, 37, 37, 0.8);
}
@media (max-width: 1199px) {
  .header.scroll .header__bot {
    /* background-color: #ffffff; */
  }
}
.header.scroll .header__link.active,
.header.scroll .header__link:hover {
  color: #ffffff;
}
.header.scroll .header__link.active::after,
.header.scroll .header__link:hover::after {
  background-color: #ffffff;
}
@media (max-width: 1199px) {
  .header.scroll .header__link.active::after,
  .header.scroll .header__link:hover::after {
    background-color: unset;
  }
}

.side-bar {
  border: 1px solid rgba(37, 37, 37, 0.3);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-color: #ffffff;
  padding: 24px;
}
@media (max-width: 767px) {
  .side-bar {
    padding: 12px;
  }
}
.side-bar__banner {
  width: 100%;
  display: block;
  margin-bottom: 24px;
}
.side-bar__banner:hover {
  opacity: 0.8;
}
.side-bar__banner img {
  width: 100%;
  border-radius: 10px;
}
.side-bar__title {
  font-size: 18px !important;
  font-family: fw-700;
  margin: 0 0 12px;
}
.side-bar__category {
  list-style: none;
  padding-left: 0;
  margin: 0 0 24px;
  font-size: 16px;
  font-family: fw-600;
}
.side-bar__category li {
  margin-top: 12px;
  display: flex;
  align-items: center;
}
.side-bar__category li.active {
  font-family: i-600;
}
.side-bar__category li:hover a,
.side-bar__category li.active a {
  color: #0a7e55;
}
.side-bar__category li a {
  text-decoration: none;
  color: #252525;
}
.side-bar__post {
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .side-bar__post {
    display: flex;
    flex-wrap: wrap;
  }
}
.side-bar__post__item {
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.52);
  border-radius: 8px;
  overflow: hidden;
  padding: 6px;
  text-decoration: none;
  margin-top: 12px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .side-bar__post__item {
    width: calc(50% - 12px);
  }
  .side-bar__post__item:not(:nth-child(2n)) {
    margin-right: 24px;
  }
}
.side-bar__post__item:hover {
  opacity: 0.8;
}
.side-bar__post__image {
  width: 40%;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}
.side-bar__post__name {
  width: calc(60% - 12px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #252525;
  font-size: 14px;
  line-height: 18px;
  height: 54px;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .about-sidebar {
    margin-top: 36px;
    background-color: #ededed;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  }
}
.about-sidebar__item {
  text-decoration: none;
  text-transform: uppercase;
  color: #252525;
  font-size: 18px;
  font-family: fw-700;
  padding: 12px 0;
  display: flex;
  align-items: center;
  transition: all ease-out 0.4s;
}
.about-sidebar__item::before {
  content: "";
  width: 0;
  min-width: 0;
  height: 3px;
  display: block;
  background-color: #0a7e55;
  margin-right: 10px;
  transition: all ease-out 0.4s;
}
.about-sidebar__item.active,
.about-sidebar__item:hover {
  color: #0a7e55;
}
.about-sidebar__item.active::before,
.about-sidebar__item:hover::before {
  width: 18px;
  min-width: 18px;
}

.about-overview {
  padding: 40px 0 60px;
}
@media (max-width: 1199px) {
  .about-overview .grid > .row {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .about-overview {
    padding: 20px 0 40px;
  }
}
.about-overview__heading {
  font-size: 42px;
  font-family: fw-700;
  color: #0a7e55;
  margin: 0 0 40px;
  line-height: 1;
  position: relative;
  width: fit-content;
}
@media (max-width: 767px) {
  .about-overview__heading {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.about-overview__heading::after {
  content: "";
  width: 110%;
  height: 2px;
  background-color: #0a7e55;
  position: absolute;
  top: calc(100% + 10px);
  display: block;
}
.about-overview__fullwidth {
  width: 100% !important;
  height: auto !important;
}
.about-overview__title h2 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .about-overview__title h2 {
    font-size: 24px;
  }
}
.about-overview__title {
  font-size: 24px;
  color: #252525;
  font-family: fw-700;
  margin: 25px 0 15px;
  padding-left: 10px;
  border-left: 4px solid #0a7e55;
}
@media (max-width: 767px) {
  .about-overview__title {
    font-size: 24px;
  }
}
.about-overview__content strong {
  color: #0a7e55;
}
.about-overview__content ol li {
  margin-bottom: 6px;
}
.about-overview__history__item {
  display: flex;
  justify-content: center;
}
.about-overview__history__item--reverce {
  flex-direction: row-reverse;
}
.about-overview__history__item--reverce .about-overview__history__top {
  text-align: right;
}
.about-overview__history__image {
  height: 215px;
  flex: 1;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
.about-overview__history__line {
  width: 40px;
  margin: 0 56px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .about-overview__history__line {
    width: 24px;
    margin: 0 24px;
  }
}
.about-overview__history__line::before {
  content: "";
  display: block;
  width: 1px;
  height: calc(50% - 30px);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #252525;
}
.about-overview__history__line::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(50% - 30px);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #252525;
}
.about-overview__history__circle {
  width: 40px;
  height: 40px;
  background-color: #0a7e55;
  border-radius: 50%;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .about-overview__history__circle {
    width: 24px;
    height: 24px;
  }
}
.about-overview__history__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 30px;
}
.about-overview__history__top {
  font-size: 60px;
  font-family: fw-600;
  color: #252525;
}
@media (max-width: 767px) {
  .about-overview__history__top {
    font-size: 46px;
  }
}
.about-overview__personnel__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.about-overview__personnel__tab {
  text-transform: uppercase;
  color: #252525;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  margin-right: 12px;
  margin-top: 12px;
  border: 1px solid #777777;
  background-color: #ffffff;
  transition: all ease 0.3s;
  cursor: pointer;
}
.about-overview__personnel__tab.active,
.about-overview__personnel__tab:hover {
  background-color: #82b440;
  color: #ffffff;
  border-color: #82b440;
}
.about-overview__personnel__list {
  display: flex;
  flex-wrap: wrap;
}
.about-overview__personnel__item {
  width: calc(25% - 18px);
  margin-right: 24px;
  margin-top: 24px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .about-overview__personnel__item:nth-child(4n) {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about-overview__personnel__item {
    width: calc(33.3333333333% - 16px);
  }
  .about-overview__personnel__item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .about-overview__personnel__item {
    width: calc(50% - 12px);
  }
  .about-overview__personnel__item:nth-child(2n) {
    margin-right: 0;
  }
}
.about-overview__personnel__image {
  padding-top: 140%;
  border-radius: 10px;
  position: relative;
}
.about-overview__personnel__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-overview__personnel__body {
  padding: 10px;
}
.about-overview__personnel__name {
  font-size: 18px;
  font-family: fw-700;
}
.about-overview__personnel__position {
  margin-top: 3px;
}
.about-overview__personnel__description {
  height: 0;
  overflow: hidden;
}
.about-overview__personnel__modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.3s;
  z-index: 99999;
}
.about-overview__personnel__modal.active {
  opacity: 1;
  visibility: visible;
}
.about-overview__personnel__popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  padding: 24px;
  width: 720px;
  max-width: calc(100% - 24px);
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
  z-index: 99999;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .about-overview__personnel__popup {
    padding: 15px;
  }
}
.about-overview__personnel__popup.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}
.about-overview__personnel__popup .about-overview__personnel__item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
  box-shadow: unset;
  border-radius: unset;
  cursor: default;
}
.about-overview__personnel__content {
  max-height: 85vh;
  overflow: auto;
}
@media (max-width: 767px) {
  .about-overview__personnel__popup .about-overview__personnel__item {
    flex-direction: column;
    padding-top: 24px;
    align-items: flex-start;
  }
}
.about-overview__personnel__popup .about-overview__personnel__image {
  width: calc(30% - 12px);
  padding-top: 50%;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .about-overview__personnel__popup .about-overview__personnel__image {
    width: 50%;
    padding-top: 70%;
  }
}
.about-overview__personnel__popup .about-overview__personnel__image::before {
  content: unset;
}
.about-overview__personnel__popup .about-overview__personnel__body {
  width: calc(70% - 12px);
}
@media (max-width: 767px) {
  .about-overview__personnel__popup .about-overview__personnel__body {
    width: 100%;
    margin-top: 15px;
  }
}
.about-overview__personnel__popup .about-overview__personnel__description {
  height: unset;
}
.about-overview__personnel__close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 28px;
  color: #fd0000;
  cursor: pointer;
}
.about-overview__personnel__close:hover {
  opacity: 0.8;
}
.about-overview__chart {
  display: flex;
  flex-wrap: wrap;
}
.about-overview__card {
  width: calc(50% - 12px);
  margin-right: 24px;
  margin-top: 24px;
  border: 1px solid #252525;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-overview__card {
    width: 100%;
    margin-right: 0;
  }
}
.about-overview__card:nth-child(2n) {
  margin-right: 0;
}
.about-overview__card__top {
  background-color: #0a7e55;
  color: #ffffff;
  font-size: 18px;
  padding: 12px;
  font-family: fw-700;
}
.about-overview__card__body {
  padding: 24px;
}
.about-overview__card__body ul {
  padding-left: 12px;
  margin: 0;
}
.about-overview__card__body ul li {
  margin-top: 6px;
}
.about-overview__companies {
  display: flex;
  flex-wrap: wrap;
}
.about-overview__companies__item {
  width: calc(25% - 18px);
  margin-right: 24px;
  margin-bottom: 24px;
  height: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1200px) {
  .about-overview__companies__item:nth-child(4n) {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about-overview__companies__item {
    width: calc(33.3333333333% - 16px);
    margin-right: 24px;
  }
  .about-overview__companies__item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .about-overview__companies__item {
    width: calc(50% - 12px);
    margin-right: 24px;
  }
  .about-overview__companies__item:nth-child(2n) {
    margin-right: 0;
  }
}

.career-table {
  border-collapse: collapse;
  width: 100%;
}
.career-table thead {
  background-color: #0a7e55;
  color: #ffffff;
}
.career-table thead th {
  padding: 8px;
  font-size: 16px;
  font-family: fw-700;
}
.career-table tbody td {
  border: 1px solid #252525;
  text-align: left;
  padding: 8px;
  font-family: fw-600;
}
.career-table tbody td:not(:nth-child(2)) {
  text-align: center;
}
.career-table tbody td:last-child a {
  text-decoration: none;
  color: #0a7e55;
  font-family: fw-700;
  transition: all ease 0.3s;
}
.career-table tbody td:last-child a:hover {
  opacity: 0.8;
}

.why-choose__item {
  margin-bottom: 24px;
}
.why-choose__item--reverse .row {
  flex-direction: row-reverse;
}
.why-choose__image {
  width: 100% !important;
  height: auto !important;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
.why-choose__item .row .col h2 {
  font-size: 36px;
  font-family: fw-700;
  margin: 0 0 12px;
}
@media (max-width: 767px) {
  .why-choose__item .row .col h2 {
    font-size: 20px;
  }
}
.section-contact {
  padding: 40px 0 60px;
}
@media (max-width: 1199px) {
  .section-contact {
    padding: 20px 0 30px;
  }
  .section-contact .grid .row .col {
    margin-bottom: 40px;
  }
}
.section-contact__form {
  margin-top: 24px;
}
.section-contact__flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.section-contact__flex .section-contact__group {
  width: calc(50% - 12px);
}
.section-contact__flex .section-contact__group--fullwidth {
  width: 100%;
}
.section-contact__group {
  border: 1px solid #252525;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  width: 100%;
  font-size: 18px;
  outline-color: #0a7e55;
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .section-contact__group {
    padding: 6px;
  }
}
.section-contact__input {
  width: 100%;
  border: 0;
  outline: 0;
  background-color: transparent;
  height: 32px;
}
.section-contact__error {
  color: #fd0000;
  top: calc(100% + 4px);
  height: 100%;
  display: flex;
  align-items: center;
  display: none;
}
.section-contact__error.active {
  display: flex;
  align-items: center;
}
.section-contact__error--start {
  align-items: flex-start;
}
.section-contact__textarea {
  height: 160px;
  flex: 1;
  border: 0;
  outline: 0;
  background-color: transparent;
  resize: none;
}
.section-contact__code {
  border: 1px solid #252525;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  font-size: 24px;
  width: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: i-900;
  letter-spacing: 3px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
@media (max-width: 1199px) {
  .section-contact__code {
    flex: 1;
    margin: 0 24px;
  }
}
@media (max-width: 767px) {
  .section-contact__code {
    margin: 0 12px;
    padding: 0;
    font-size: 16px;
  }
}
.section-contact__change {
  color: #252525;
  border: 1px solid #252525;
  padding: 0 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  transition: all ease 0.3s;
  height: 58px;
}
.section-contact__change:hover {
  opacity: 0.8;
}
.section-contact__change i {
  font-size: 16px;
}
.section-contact__submit {
  background-color: #8B0000;
  border: 0;
  outline: 0;
  border-radius: 10px;
  color: #ffffff;
  padding: 0 12px;
  cursor: pointer;
  transition: all ease 0.3s;
  height: 58px;
}
@media (max-width: 1199px) {
  .section-contact__submit {
    width: 100%;
    margin-top: 24px;
  }
}
.section-contact__submit:hover {
  opacity: 0.8;
}
.section-contact__info {
  margin-top: 24px;
}
.section-contact__info__item {
  margin-bottom: 24px;
}
.section-contact__info__top {
  color: #8B0000;
  font-size: 18px;
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #0a7e55;
  line-height: 1;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.section-contact__info__top span {
  text-transform: uppercase;
  font-family: fw-700;
  margin-left: 8px;
}
.section-contact__info__body {
  font-size: 16px;
}
.section-contact__info__body iframe {
  width: 100%;
  height: 190px;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.banner-home {
}
@media (max-width: 1199px) {
  .banner-home {
  }
}
.banner-home__image {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
  position: relative;
}
.banner-home__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1199px) {
  .banner-home__image {
    height: 60vh;
    background-position: center top 110px;
  }
}
.banner-home__image:first-child {
  display: block;
}
.banner-home.half {
  height: 70vh;
}
@media (max-width: 1199px) {
  .banner-home.half {
    height: 40vh;
  }
}
.banner-home.half .banner-home__image {
  height: 70vh;
}
@media (max-width: 1199px) {
  .banner-home.half .banner-home__image {
    height: 40vh;
  }
}

.home-service {
  margin: 40px 0;
}
.home-service__item {
  display: block;
  padding-top: 68%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  transition: all linear 0.3s;
}
@media (max-width: 1199px) {
  .home-service__item {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .home-service__item {
    margin-bottom: 10px;
  }
}
.home-service__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.3);
  transition: all ease 0.3s;
}
@media (min-width: 1200px) {
  .home-service__item:hover {
    background-size: 110% 110%;
  }
  .home-service__item:hover::before {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .home-service__item:hover .home-service__item__body {
    top: 20px;
    transform: translate(-50%, 0);
  }
  .home-service__item:hover .home-service__item__title {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 8px;
    text-align: left;
  }
  .home-service__item:hover .home-service__item__description {
    height: auto;
    opacity: 1;
    top: 0;
  }
}
.home-service__item__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  transition: top linear 0.3s;
  width: calc(100% - 40px);
  color: #ffffff;
}
.home-service__item__title {
  font-family: fw-700;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  text-transform: uppercase;
  transition: all linear 0.3s;
  text-align: center;
}
@media (max-width: 767px) {
  .home-service__item__title {
    font-size: 16px;
    line-height: 22px;
  }
}
.home-service__item__description {
  height: 0;
  opacity: 0;
  position: relative;
  top: 30px;
  overflow: hidden;
  transition: all ease 0.3s;
  transition-delay: 0.3s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.home-about {
  margin: 40px 0;
}
.home-about__heading {
  font-size: 36px;
  color: #252525;
  text-transform: uppercase;
  font-family: fw-700;
  margin: 0;
  line-height: 1;
}
@media (max-width: 1199px) {
  .home-about__heading {
    font-size: 24px;
    line-height: 1;
    margin: auto;
    width: fit-content;
    position: relative;
    margin-bottom: 18px;
  }
  .home-about__heading br {
    display: none;
  }
  .home-about__heading::after {
    content: "";
    height: 2px;
    width: 140%;
    background-color: #0a7e55;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 8px);
  }
}
@media (max-width: 767px) {
  .home-about__heading {
    font-size: 18px;
  }
}
.home-about__description {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media (max-width: 1199px) {
  .home-about__description {
    text-align: center;
    font-size: 14px;
  }
}
.home-about__block {
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .home-about__list {
    display: flex;
    flex-wrap: wrap;
  }
}
.home-about__item {
  position: relative;
  padding-top: 52%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 24px;
  display: block;
}
@media (max-width: 1199px) {
  .home-about__item {
    width: calc(50% - 5px);
    padding-top: 30%;
    margin-bottom: 10px;
  }
  .home-about__item:not(:nth-child(2n)) {
    margin-right: 10px;
  }
}
.home-about__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .home-about__item:last-child {
    margin-bottom: 10px;
  }
}
.home-about__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.3);
}
.home-about__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  width: 80%;
  font-family: fw-500;
}
@media (max-width: 767px) {
  .home-about__content {
    width: calc(100% - 20px);
  }
}
.home-about__top {
  font-size: 18px;
}
@media (max-width: 767px) {
  .home-about__top {
    font-size: 14px;
  }
}
.home-about__top strong {
  font-size: 48px;
  margin-right: 6px;
}
@media (max-width: 767px) {
  .home-about__top strong {
    font-size: 28px;
  }
}
.home-about__video {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: all ease 0.3s;
  position: relative;
}
@media (max-width: 1199px) {
  .home-about__video {
    height: unset;
    padding-top: 56%;
  }
}
.home-about__video i {
  font-size: 72px;
  color: #0a7e55;
  opacity: 0.8;
  transition: all ease 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(1) translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .home-about__video i {
    color: #82b440;
  }
}
@media (max-width: 767px) {
  .home-about__video i {
    font-size: 54px;
  }
}
.home-about__video i:hover {
  color: #82b440;
}

.home-news {
  margin: 40px 0;
}
.home-news__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .home-news__tabs {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .home-news__tabs {
    margin-bottom: 20px;
  }
}
.home-news__tabs__item {
  font-size: 18px;
  font-family: fw-700;
  color: #252525;
  line-height: 1.5;
  padding: 0 24px;
  margin: 0 3px;
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 767px) {
  .home-news__tabs__item {
    font-size: 12px;
    padding: 0 6px;
  }
}
.home-news__tabs__item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #252525;
  transition: all ease 0.3s;
}
.home-news__tabs__item.active,
.home-news__tabs__item:hover {
  opacity: 0.8;
}
.home-news__tabs__item.active:after,
.home-news__tabs__item:hover:after {
  width: 100%;
}
.home-news__table {
  position: relative;
}
.home-news__table__item {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100px;
  left: 0;
}
.home-news__table__item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  top: 0;
  transition: all ease 0.3s;
}
.home-news__top {
  margin-bottom: 24px;
}
.home-news__top__image {
  display: block;
  padding-top: 56%;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  transition: all linear 0.3s;
}
.home-news__top__image:hover {
  background-size: 105% 105%;
  filter: brightness(110%);
}
.home-news__top__title {
  font-size: 28px;
  font-family: fw-700;
  color: #252525;
  text-decoration: none;
  transition: all ease 0.3s;
}
@media (max-width: 767px) {
  .home-news__top__title {
    margin-top: 8px;
    display: block;
    font-size: 18px;
  }
}
.home-news__top__title:hover {
  color: #0a7e55;
  opacity: 0.8;
}
.home-news__top__description {
  margin: 10px 0;
}
.home-news__top__btn {
  text-decoration: none;
  color: #252525;
  font-size: 18px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #D4AF37;
  width: fit-content;
  transition: all ease 0.3s;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .home-news__top__btn {
    font-size: 14px;
  }
}
.home-news__top__btn.right {
  margin-left: auto;
}
.home-news__top__btn i {
  font-size: 12px;
  margin-left: 8px;
  transition: all ease 0.3s;
}
.home-news__top__btn:hover {
  background-color: #D4AF37;
  color: #ffffff;
  position: relative;
  left: 2px;
}
.home-news__top__btn:hover i {
  color: #ffffff;
}
.home-news__post {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .home-news__post {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .home-news__post {
    display: flex;
    justify-content: space-between;
  }
}
.home-news__post__image {
  display: block;
  padding-top: 56%;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: all linear 0.3s;
}
@media (max-width: 767px) {
  .home-news__post__image {
    width: calc(36% - 5px);
    padding-top: 40%;
    border-radius: 10px;
  }
}
.home-news__post__image:hover {
  filter: brightness(110%);
  background-size: 105% 105%;
}
.home-news__post__body {
  padding: 10px;
}
@media (max-width: 767px) {
  .home-news__post__body {
    width: calc(64% - 5px);
  }
}
.home-news__post__title {
  font-size: 18px;
  font-family: fw-700;
  color: #252525;
  text-decoration: none;
  transition: all ease 0.3s;
  line-height: 22px;
  height: 44px;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home-news__post__title:hover {
  color: #0a7e55;
  opacity: 0.8;
}
.home-news__post__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-size: 14px;
  line-height: 18px;
  height: 72px;
}

.home-why {
  background-color: #0a7e55;
  color: #ffffff;
  padding: 60px 0;
}
.home-why__heading {
  font-size: 36px;
  text-transform: uppercase;
  font-family: fw-700;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 1199px) {
  .home-why__heading {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .home-why__heading {
    text-align: center;
    margin-bottom: 8px;
    font-size: 18px;
    position: relative;
    width: fit-content;
    margin: auto;
    margin-bottom: 24px;
  }
  .home-why__heading::after {
    content: "";
    height: 2px;
    width: 140%;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 8px);
  }
}
.home-why__description {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media (max-width: 767px) {
  .home-why__description {
    text-align: center;
  }
}
.home-why__slider {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .home-why__slider {
    margin-top: 20px;
  }
}
.home-why__slider .slick-list {
  overflow: unset !important;
}
.home-why__slider__item {
  height: 260px;
  margin: 10px 12px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-mutual {
  margin: 40px 0;
}

.home-partner {
  padding: 100px 0;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 24px;
}
.home-partner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(37, 37, 37, 0.6);
}
.home-partner .container {
  position: relative;
  z-index: 1;
}
.home-partner__heading {
  color: #ffffff;
}
@media (max-width: 767px) {
  .home-partner__heading::after {
    width: 110%;
  }
}
.home-partner__slider .slick-list {
  margin: 0 -12px;
}
.home-partner__image {
  padding-top: 120px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin: 12px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.disclosure {
  margin-top: 48px;
}
.disclosure__list {
  margin-top: 12px;
  margin-bottom: 36px;
}
.disclosure__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  padding: 12px 0;
}
.disclosure__item__name {
  font-size: 16px;
  color: #0a7e55;
  text-decoration: none;
  font-family: fw-500;
  transition: all ease 0.3s;
  display: flex;
  align-items: center;
  line-height: 1;
  margin-right: 24px;
}
@media (max-width: 767px) {
  .disclosure__item__name {
    font-size: 14px;
  }
}
.disclosure__item__name::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 8px;
  margin-right: 8px;
  color: #e6e6e6;
}
.disclosure__item__name:hover {
  opacity: 0.8;
}
.disclosure__item__body {
  display: flex;
  align-items: center;
}
.disclosure__item__body span {
  font-family: i-400;
  display: flex;
  align-items: center;
}
.disclosure__item__body span i {
  margin-right: 4px;
}
.disclosure__item__body a {
  color: #0a7e55;
  margin-left: 18px;
  transition: all ease 0.3s;
}
.disclosure__item__body a:hover {
  opacity: 0.8;
}
.disclosure__item__body a i {
  font-size: 20px;
}
@media (max-width: 767px) {
  .disclosure__item__body a i {
    font-size: 14px;
  }
}

.history-event {
  margin-top: 48px;
}
.history-event__item {
  display: flex;
  border-bottom: 2px solid #0a7e55;
  margin-top: 24px;
}
.history-event__item__top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-right: 24px;
  border-color: #e6e6e6;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  padding: 12px 24px;
}
.history-event__item__top strong {
  font-size: 50px;
  font-family: fw-700;
  color: #0a7e55;
}
.history-event__item__top span {
  font-family: i-400;
}
.history-event__item__body {
  padding: 12px 0;
}
.history-event__item__name {
  font-size: 24px;
  font-family: fw-700;
  margin: 0 0 4px 0;
}
@media (max-width: 767px) {
  .history-event__item__name {
    font-size: 18px;
  }
}
.history-event__item__name a {
  color: #0a7e55;
  text-decoration: none;
  transition: all ease 0.3s;
}
.history-event__item__name a:hover {
  opacity: 0.8;
}
.history-event__item__text {
  margin-top: 3px;
}

.investment-news__top {
  margin-bottom: 24px;
}
@media (max-width: 1199px) {
  .investment-news__top {
    margin-bottom: 0;
  }
}
@media (max-width: 1199px) {
  .investment-news__main {
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    margin-bottom: 24px;
  }
}
.investment-news__main__image {
  padding-top: 64%;
  display: block;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  transition: all linear 0.3s;
}
.investment-news__main__image:hover {
  background-size: 105% 105%;
  filter: brightness(110%);
}
.investment-news__main__body {
  padding: 12px;
}
.investment-news__main__name {
  font-size: 16px;
  font-family: fw-700;
  text-decoration: none;
  margin-bottom: 6px;
  display: block;
  color: #252525;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.investment-news__main__bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.investment-news__main__bot a {
  color: #0a7e55;
  text-decoration: none;
  transition: all ease 0.3s;
}
.investment-news__main__bot a:hover {
  opacity: 0.8;
}
.investment-news__main__date {
  font-family: i-400;
  font-size: 12px;
}
.investment-news__post {
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  margin-bottom: 12px;
}
.investment-news__post__image {
  width: 30%;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  transition: all linear 0.3s;
}
.investment-news__post__image:hover {
  background-size: 105% 105%;
  filter: brightness(110%);
}
.investment-news__post__body {
  width: 70%;
  padding: 8px;
}
.investment-news__post__name {
  font-family: fw-700;
  text-decoration: none;
  display: block;
  color: #252525;
  font-size: 14px;
  line-height: 18px;
  height: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all ease 0.3s;
  margin-bottom: 6px;
}
.investment-news__post__name:hover {
  color: #0a7e55;
}
.investment-news__post__bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.investment-news__post__bot a {
  color: #0a7e55;
  text-decoration: none;
  transition: all ease 0.3s;
}
.investment-news__post__bot a:hover {
  opacity: 0.8;
}
.investment-news__post__date {
  font-family: i-400;
  font-size: 10px;
  white-space: nowrap;
}

.section-news {
  padding: 40px 0 60px;
}
.section-news__item {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .section-news__item {
    flex-direction: column;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
}
.section-news__image {
  width: calc(40% - 12px);
  padding-top: 26%;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: all linear 0.3s;
}
@media (max-width: 767px) {
  .section-news__image {
    width: 100%;
    padding-top: 56%;
  }
}
.section-news__image:hover {
  background-size: 105% 105%;
  filter: brightness(110%);
}
.section-news__body {
  width: calc(60% - 12px);
}
@media (max-width: 767px) {
  .section-news__body {
    width: 100%;
    padding: 12px;
  }
}
.section-news__name {
  margin: 0;
}
.section-news__name a {
  color: #252525;
  font-family: fw-700;
  font-size: 24px;
  line-height: 30px;
  height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: all ease 0.3s;
}
.section-news__name a:hover {
  color: #0a7e55;
}
.section-news__date {
  margin: 8px 0;
  font-size: 12px;
  font-family: i-400;
}
.section-news__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.section-project {
  padding: 40px 0 60px;
}
.section-project__list {
  /* display: flex; */
  /* margin-top: 24px; */
  /* flex-wrap: wrap; */
}
.section-project__item {
  width: 100%;
  padding-top: calc(50% - 10%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  box-shadow: 0px 2px 2px 0px rgba(22, 75, 65, 0.25);
  transition: all ease 0.3s;
}
.section-project__item.item3, .section-project__item.item4, .section-project__item.item5{padding-top: calc(80% - 10%);}
@media (max-width: 767px) {
  .section-project__item {
    width: 100%;
    padding-top: 56%;
    margin-bottom: 24px;
  }
}
.section-project__item:hover {
  box-shadow: 12px -12px 10px 0px rgba(22, 75, 65, 0.25);
}
.section-project__item:not(:last-child) {
  /* margin-right: 24px; */
}
@media (max-width: 767px) {
  .section-project__item:not(:last-child) {
    margin-right: 0;
  }
}
.section-project__item__name {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 24px;
  margin: 0;
  font-size: 24px;
  line-height: 1;
  font-family: fw-700;
  text-transform: uppercase;
  background-image: linear-gradient(0deg, #0a7e55, transparent);
  transition: all linear 0.3s;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section-project__item__name {
    font-size: 18px;
    padding: 15px;
  }
}
.section-project__item__name p {
  margin: 0;
}
.section-project__item__name i {
  margin-left: 6px;
}
.section-project__item__name:hover {
  letter-spacing: 2px;
}

.project-posts__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .project-posts__item {
    flex-direction: column;
  }
}
.project-posts__image {
  width: calc(40% - 12px);
  padding-top: calc(40% - 12px - 10%);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  transition: all linear 0.3s;
}
@media (max-width: 767px) {
  .project-posts__image {
    width: 100%;
    padding-top: 56%;
  }
}
.project-posts__image:hover {
  background-size: 105% 105%;
  filter: brightness(110%);
}
.project-posts__body {
  width: calc(60% - 12px);
  padding-right: 24px;
}
@media (max-width: 767px) {
  .project-posts__body {
    width: 100%;
    padding: 15px;
  }
}
.project-posts__name {
  font-size: 24px;
  font-family: fw-700;
  margin: 0 0 12px;
}
.project-posts__name a {
  text-decoration: none;
  color: #252525;
  transition: all ease 0.3s;
}
.project-posts__name a:hover {
  color: #0a7e55;
}
.project-posts__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.project-posts__link {
  font-size: 16px;
  color: #0a7e55;
  text-decoration: none;
  margin-top: 18px;
  display: inline-block;
  line-height: 1;
  transition: all ease 0.3s;
}
.project-posts__link:hover {
  letter-spacing: 2px;
}

.section-report {
  margin: 40px 0 60px;
}
.section-report__heading {
  font-size: 42px;
  font-family: fw-700;
  color: #252525;
  margin: 0;
}
@media (max-width: 767px) {
  .section-report__heading {
    font-size: 32px;
  }
}
.section-report__date {
  font-size: 16px;
  font-family: i-400;
}
.section-report__top {
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-report__form {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.52);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 10px;
  background-color: #ffffff;
}
.section-report__form--search {
  flex: 1;
  margin-left: 24px;
}
.section-report__form__title {
  color: #0a7e55;
  font-family: fw-700;
}
.section-report__form__select {
  margin: 0 10px;
}
.section-report__form__input {
  border: 0;
  outline: 0;
  background-color: transparent;
}
.section-report__form__submit {
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  background-color: #0a7e55;
  outline: 0;
  border: 0;
  color: #ffffff;
  font-family: fw-700;
  cursor: pointer;
  transition: all ease 0.3s;
}
.section-report__form__submit:hover {
  opacity: 0.8;
}
.section-report__title {
  font-size: 18px;
  font-family: fw-700;
  color: #0a7e55;
  margin: 0;
}
.section-report__description {
  font-size: 12px;
  font-family: i-400;
}
.section-report__list {
  margin: 24px 0 48px;
}
.section-report__item {
  color: #252525;
  text-decoration: none;
  display: flex;
  margin-bottom: 24px;
  transition: all ease 0.3s;
}
.section-report__item:hover {
  margin-left: 5px;
}
.section-report__item__body {
  margin-right: 12px;
}
.section-report__item__name {
  color: #0a7e55;
  margin-bottom: 3px;
  font-family: fw-600;
}
.section-report__item__date {
  font-size: 12px;
  font-family: i-400;
}
.section-report__item__date i {
  font-size: 14px;
}
.section-report__item__icon {
  color: #0a7e55;
  font-size: 18px;
}

.section-sustainability {
  padding: 40px 0 60px;
}
@media (max-width: 767px) {
  .section-sustainability {
    padding: 20px 0 30px;
  }
}
.section-sustainability .about-overview__personnel__top {
  margin-top: 24px;
}
.section-sustainability__title {
  font-size: 64px;
  font-family: i-500;
  margin: 36px 0;
  border-bottom: 5px solid #82b440;
  width: fit-content;
  padding: 0 15px;
}
.section-sustainability__item {
  text-decoration: none;
  color: #252525;
  display: block;
}
.section-sustainability__image {
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.section-sustainability__image img {
  width: 100%;
}
.section-sustainability__body {
  padding: 8px;
  margin-top: 6px;
  font-size: 16px;
  font-family: fw-600;
  display: flex;
  transition: all ease 0.3s;
  justify-content: space-between;
}
.section-sustainability__body:hover {
  color: #82b440;
}
.section-sustainability__body i {
  font-size: 18px;
  margin-left: 24px;
}

.section-service {
  margin-top: 40px;
}
.section-service__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.section-service__item--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .section-service__item {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.section-service__frame {
  width: calc(40% - 12px);
  position: relative;
}
@media (max-width: 767px) {
  .section-service__frame {
    width: 100%;
    margin-bottom: 12px;
  }
}
.section-service__frame::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 12px;
  width: 100%;
  height: 100%;
  background-color: #0a7e55;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .section-service__frame::after {
    content: unset;
  }
}
.section-service__image {
  padding-top: 80%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
.section-service__body {
  width: calc(60% - 12px);
}
@media (max-width: 767px) {
  .section-service__body {
    width: 100%;
  }
  .section-service__body .home-news__top__btn {
    margin-left: auto;
  }
}
.section-service__title {
  font-size: 48px;
  font-family: fw-700;
  margin: 0 0 12px;
}
@media (max-width: 767px) {
  .section-service__title {
    font-size: 32px;
  }
}
.section-service__title:hover a {
  color: #0a7e55;
}
.section-service__title a {
  text-decoration: none;
  color: #252525;
  transition: all ease 0.3s;
}
.section-service__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.detail-service {
  padding: 40px 0 60px;
}
.detail-service__heading {
  font-size: 38px;
  font-family: fw-700;
  margin: 0;
}
@media (max-width: 767px) {
  .detail-service__heading {
    font-size: 32px;
  }
}
.detail-service__date {
  margin: 12px 0;
  font-family: i-400;
}
.detail-service__body img {
  max-width: 100%;
  margin: auto;
  display: block;
  height: auto !important;
}
@media (max-width: 1199px) {
  .detail-service__body {
    margin-bottom: 40px;
  }
}

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

.notistack {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 9999;
}
.notistack div {
  background-color: green;
  padding: 10px;
}
.notistack div i {
  font-size: 36px;
  color: white;
}
.notistack span {
  font-size: 18px;
  padding: 10px;
}

.notistack.show {
  opacity: 1;
}
.section-search {
  padding: 40px 0;
}
.section-search__heading {
  font-size: 48px;
  font-family: fw-700;
  margin: 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .section-search__heading {
    font-size: 32px;
  }
}
.section-search__description {
  margin: 20px 0;
  font-size: 16px;
}
@media (max-width: 767px) {
  .section-search__description {
    margin: 12px 0;
  }
}
.section-search__form {
  display: flex;
  height: 48px;
  width: 560px;
  max-width: 100%;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #0a7e55;
  overflow: hidden;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
.section-search__input {
  flex: 1;
  display: block;
  border: 0;
  outline: 0;
  padding: 0 12px;
  font-size: 16px;
}
.section-search__submit {
  width: 100px;
  border: 0;
  outline: 0;
  background-color: #0a7e55;
  color: #ffffff;
  font-size: 16px;
  font-family: fw-600;
  cursor: pointer;
}
.section-search__submit:hover {
  opacity: 0.8;
}
.section-search__list {
  margin: 24px 0;
}
.section-search__item {
  margin-bottom: 15px;
  border-bottom: 1px solid #0a7e55;
  padding-bottom: 15px;
}
.section-search__title {
  margin: 0 0 8px 0;
}
.section-search__title a {
  text-decoration: none;
  color: #0a7e55;
  font-size: 18px;
}

.about-overview__image {
  width: 100%;
}
.about-overview__avatar {
  width: 46% !important;
  height: auto !important;
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .about-overview__avatar {
    width: 50% !important;
  }
}
@media (max-width: 767px) {
  .about-overview__avatar {
    width: 100% !important;
    margin-right: 0;
  }
}
.about-overview__sitemap{
  width: 70% !important;
  height: auto !important;
  margin: auto;
  display: block;
}
@media (max-width: 1499px) {
  .about-overview__sitemap{
    width: 56% !important;
  }
}
@media (max-width: 1024px) {
  .about-overview__sitemap{
    width: 100% !important;
  }
}
.about-overview__body {
}

.about-overview__body h2 {
  font-size: 36px;
  margin: 0;
  font-family: fw-700;
}

.about-overview__body p {
  text-align: justify;
}
.about-overview__body table {
  width: 100%;
  background-color: #eff3f6;
  border-left: 4px solid #9ec78f;
  border-radius: 5px;
  padding: 12px;
}
.about-overview__body tr td {
  padding-bottom: 10px;
}
.about-overview__body tr td strong {
  margin-right: 3px;
}
@media (max-width: 1024px) {
  .about-overview__body {
    padding: 24px 0;
  }
}
@media (max-width: 767px) {
  .about-overview__body h2 {
    font-size: 32px;
  }
}
/* HTML: <div class="loader__item"></div> */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}

.loader.active {
  opacity: 1;
  visibility: visible;
}

.loader__spin {
  margin: auto;
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  -webkit-mask: conic-gradient(from 15deg, rgba(0, 0, 0, 0), #000);
  animation: l26 1s infinite steps(12);
}

.loader__spin,
.loader__spin:before,
.loader__spin:after {
  background: radial-gradient(closest-side at 50% 12.5%, #f03355 96%, rgba(0, 0, 0, 0)) 50% 0/20% 80% repeat-y, radial-gradient(closest-side at 12.5% 50%, #f03355 96%, rgba(0, 0, 0, 0)) 0 50%/80% 20% repeat-x;
}

.loader__spin:before,
.loader__spin:after {
  content: "";
  grid-area: 1/1;
  transform: rotate(30deg);
}

.loader__spin:after {
  transform: rotate(60deg);
}

@keyframes l26 {
  100% {
    transform: rotate(1turn);
  }
}