/*! THIS IS AUTO GENERATED, DO NOT EDIT */
:root {
  --bs-primary: red;
}

.color-test {
  display: block;
  background: yellow;
  color: var(--bs-primary);
  width: var(--color-test-width);
}

.js-fxm-custom-modal .modal-dialog .modal-content {
  border-radius: 0;
  box-shadow: none;
  border: none;
}
.js-fxm-custom-modal .modal-dialog .modal-content .modal-header {
  border-bottom: none;
  height: 40px;
}
.js-fxm-custom-modal .modal-dialog .modal-content .modal-header .close {
  font-size: 36px;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .js-fxm-custom-modal.modal-large .modal-dialog {
    width: 675px;
  }
  .js-fxm-custom-modal.modal-medium .modal-dialog {
    width: 480px;
  }
  .js-fxm-custom-modal.modal-small .modal-dialog {
    width: 340px;
  }
}
@media (min-width: 992px) {
  .js-fxm-custom-modal.modal-large .modal-dialog {
    width: 810px;
  }
  .js-fxm-custom-modal.modal-medium .modal-dialog {
    width: 540px;
  }
  .js-fxm-custom-modal.modal-small .modal-dialog {
    width: 360px;
  }
}
@media (min-width: 1200px) {
  .js-fxm-custom-modal.modal-large .modal-dialog {
    width: 900px;
  }
  .js-fxm-custom-modal.modal-medium .modal-dialog {
    width: 600px;
  }
  .js-fxm-custom-modal.modal-small .modal-dialog {
    width: 400px;
  }
}

.is-mobile,
.is-tablet,
.is-desktop {
  float: left;
}

@media only screen and (min-width: 992px) {
  .is-desktop {
    display: block;
  }
  .is-mobile,
  .is-tablet {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .is-tablet {
    display: block;
  }
  .is-mobile,
  .is-desktop {
    display: none;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .is-mobile {
    display: block;
  }
  .is-tablet,
  .is-desktop {
    display: none;
  }
}
body {
  transition: 0.4s;
  font-size: 16px;
  background-color: #F9F9F9;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  padding: 20px 0px;
  z-index: 2;
}
.navbar__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199.5px) {
  .navbar__info {
    width: 100%;
  }
}
.navbar__logo {
  background-color: #F9F9F9;
  gap: 30px;
  padding: 10px 20px;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar__logo img {
  width: 80px;
}
.navbar__link {
  height: -moz-fit-content;
  height: fit-content;
  width: 100vw;
  max-width: 100%;
  position: absolute;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #F9F9F9;
  transform: translateY(-150%);
  opacity: 0;
  z-index: 3;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.19);
  padding: 10px;
  display: none;
}
@media (max-width: 1199.5px) {
  .navbar__link {
    display: flex;
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-150%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-150%);
    opacity: 0;
  }
}
.navbar__link.enter {
  animation: slideDown 0.5s ease forwards;
}
.navbar__link.exit {
  animation: slideUp 0.5s ease forwards;
}
.navbar__link li {
  padding: 8px 10px;
  list-style-type: none;
}
.navbar__link a {
  text-decoration: none;
  color: #172715;
}
.navbar__link a:hover {
  text-decoration: underline;
}
.navbar__link .navbar__lang {
  background-color: #323F59;
  border: none;
  opacity: 100%;
  color: #F9F9F9;
  border-radius: 25px;
  padding: 2px 20px;
}
.navbar__link .navbar__lang:hover {
  background-color: #989EAB;
  color: #F9F9F9;
}
.navbar__link .navbar__contact {
  background-color: #61A483;
  color: #F9F9F9;
  border: none;
  border-radius: 25px;
  padding: 2px 20px;
}
.navbar__link .navbar__contact:hover {
  background-color: #457b60;
}
.navbar .menu-icon {
  width: 30px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin-top: 5px;
  margin-right: 10px;
}
@media (max-width: 1199.5px) {
  .navbar .menu-icon {
    display: flex;
  }
}
.navbar .menu-icon span {
  background-color: #32421E;
  height: 3px;
  border-radius: 2px;
  width: 100%;
  transition: all 0.3s ease;
}
.navbar .menu-icon.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.navbar .menu-icon.open span:nth-child(2) {
  opacity: 0;
}
.navbar .menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.navbar__menu {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  text-decoration: none;
  background-color: #F9F9F9;
  padding: 10px 30px;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199.5px) {
  .navbar__menu {
    display: none;
  }
}
.navbar__menu li {
  text-decoration: none;
  color: #172715;
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 10px;
  transition: background-color 0.3s;
}
.navbar__menu li:hover, .navbar__menu li.active {
  background-color: #61A483;
  color: #F9F9F9;
}
.navbar__menu li:hover a, .navbar__menu li.active a {
  color: #F9F9F9;
}
.navbar__menu li:hover i, .navbar__menu li.active i {
  color: #F9F9F9;
}
.navbar__menu li a {
  text-decoration: none;
  color: #172715;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 4px 10px;
  margin: -4px -10px;
}
@media only screen and (min-width: 1440px) {
  .navbar__menu li {
    padding: 5px 20px;
  }
  .navbar__menu li a {
    padding: 5px 20px;
    margin: -5px -20px;
  }
}
.navbar__controls {
  display: flex;
}
@media (max-width: 1199.5px) {
  .navbar__controls {
    display: none;
  }
}
.navbar__controls button {
  background-color: transparent;
  border: 2px solid #F7F7F7;
  border-radius: 25px;
  padding: 5px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.navbar__controls button:hover {
  background-color: #61A483;
  color: #F9F9F9;
}
.navbar__controls .navbar__sub-control {
  display: flex;
  padding: 5px;
  align-content: center;
  justify-items: center;
  background-color: #F9F9F9;
  border-radius: 40px;
}
.navbar__controls .navbar__lang {
  background-color: #323F59;
  opacity: 50%;
  color: #F9F9F9;
}
.navbar__controls .navbar__lang:hover {
  background-color: rgb(72, 71, 71);
  color: #F9F9F9;
}
.navbar__controls .navbar__contact {
  background-color: #61A483;
  color: #F9F9F9;
  border: none;
}
.navbar__controls .navbar__contact:hover {
  background-color: #457b60;
}

.theme-btn {
  position: relative;
  width: 100%;
}
.theme-btn .btn-dark-mode {
  position: absolute;
  right: 1.5%;
  z-index: 2;
}
.theme-btn .label {
  width: 100px;
  height: 45px;
  position: relative;
  border-radius: 25px;
  background: #F4D606;
  cursor: pointer;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.theme-btn .label:active .circle {
  width: 60px;
}
@media (max-width: 767.5px) {
  .theme-btn .label {
    width: 60px;
    height: 30px;
  }
  .theme-btn .label:active .circle {
    width: 30px;
  }
}
.theme-btn .day {
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: white;
  opacity: 1;
  transition: 0.4s;
}
@media (max-width: 767.5px) {
  .theme-btn .day {
    display: none;
  }
}
.theme-btn .night {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  color: #F9F9F9;
  transition: 0.4s;
}
@media (max-width: 767.5px) {
  .theme-btn .night {
    display: none;
  }
}
.theme-btn .circle {
  width: 35px;
  height: 35px;
  border-radius: 30px;
  background: #F9F9F9;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05), -10px -10px 30px rgba(0, 0, 0, 0.05) inset;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(-10%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  overflow: hidden;
}
@media (max-width: 767.5px) {
  .theme-btn .circle {
    width: 25px;
    height: 25px;
  }
}
.theme-btn svg {
  width: 25px;
  position: absolute;
}
@media (max-width: 767.5px) {
  .theme-btn svg {
    width: 20px;
    height: 20px;
  }
}
.theme-btn .sun {
  color: #F4D606;
  margin-top: 0%;
  transition: 0.4s;
  opacity: 1;
}
.theme-btn .moon {
  margin-top: -160%;
  color: #5B4592;
  transition: 0.4s;
  opacity: 0;
}
.theme-btn .input {
  width: 0;
  height: 0;
  visibility: hidden;
}
.theme-btn .input:checked + .label {
  background-color: #5B4592;
}
.theme-btn .input:checked + .label .circle {
  transition: 0.4s;
  right: 100%;
  transform: translate(110%, -50%);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05), -10px -10px 30px rgba(0, 0, 0, 0.05) inset;
}
.theme-btn .input:checked + .label .circle .sun {
  transition: 0.4s;
  margin-top: 160%;
  opacity: 0;
}
.theme-btn .input:checked + .label .circle .moon {
  transition: 0.4s;
  margin-top: 0%;
  opacity: 1;
}
.theme-btn .input:checked + .label .day {
  opacity: 0;
  transition: 0.4s;
}
.theme-btn .input:checked + .label .night {
  opacity: 1;
  transition: 0.4s;
}

.hero {
  justify-content: center;
  align-items: center;
}
.hero .content {
  padding: 0 32px;
}
.hero .img-fluid {
  height: auto;
  width: 100%;
}
@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  .hero {
    height: 80vh;
  }
  .hero .content {
    margin-top: -50px;
  }
  .hero .title-paragraph {
    width: 400px;
    flex-wrap: wrap;
  }
  .hero .img-fluid {
    width: 100%;
    position: absolute;
    top: 20%;
    left: 0;
  }
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .hero {
    height: 100vh;
  }
  .hero .title-paragraph {
    width: 400px;
    flex-wrap: wrap;
  }
  .hero .img-fluid {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .hero {
    padding: 5rem;
    height: 100vh;
  }
  .hero .title-paragraph {
    width: 400px;
    flex-wrap: wrap;
  }
  .hero .img-fluid {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
@media only screen and (min-width: 1440px) {
  .hero {
    height: 100vh;
  }
  .hero .title-paragraph {
    width: 400px;
    flex-wrap: wrap;
  }
  .hero .img-fluid {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}

.lamp img {
  height: 80px;
  padding: 0;
}

.content {
  text-align: start;
}
.content .title-content span {
  color: #407680;
}
@media (max-width: 767.5px) {
  .content {
    text-align: center;
  }
}
.content button {
  background-color: #61A483;
  border-radius: 25px;
  padding: 5px 25px;
}
.content button:hover {
  background-color: #457b60;
}

.opening {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 32px;
}
.opening .opening-text {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.opening .opening-text div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .opening {
    flex-direction: row;
    padding: 0px;
  }
  .opening .opening-text {
    flex-direction: column;
    text-align: start;
  }
}
@media only screen and (min-width: 1440px) {
  .opening {
    flex-direction: row;
    padding: 0px;
  }
  .opening .opening-text {
    flex-direction: column;
    text-align: start;
  }
}

.embla {
  width: 100%;
  margin: auto;
  --slide-height: 19rem;
  --slide-spacing: 1rem;
  --slide-size: 100%;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .embla {
    --slide-size: 55%;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .embla {
    width: 130rem;
    --slide-size: 55%;
  }
}
@media only screen and (min-width: 1440px) {
  .embla {
    width: 130rem;
    --slide-size: 55%;
  }
}

.embla__viewport {
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
}

.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  gap: 30px;
  width: 100%;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .embla__container {
    width: auto;
  }
}
@media only screen and (min-width: 1440px) {
  .embla__container {
    width: auto;
  }
}
@media only screen and (min-width: 1440px) {
  .embla__container {
    width: auto;
  }
}

.embla__slide {
  flex: 0 0 var(--slide-size);
  min-width: 0;
  width: 100%;
  height: 300px;
  border-radius: 20px 20px 45px 20px;
  background: #6392A7;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: var(--slide-height);
  color: #F9F9F9;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .embla__slide {
    width: 100px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .embla__slide {
    width: 100px;
  }
}
@media only screen and (min-width: 1440px) {
  .embla__slide {
    width: 100px;
  }
}
.embla__slide.__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.embla__slide .title {
  padding-top: 1rem;
  font-size: medium;
  font-weight: bold;
}
.embla__slide .sub-title {
  font-size: small;
}
.embla__slide .embla-arrow {
  background-color: #F9F9F9;
  color: #61A483;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 5%;
  right: 10%;
}

.embla__slide__img {
  width: 100px;
  height: 100%;
  object-fit: cover;
}

.embla__slide__content {
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.embla__slide__content p {
  margin: 0.5rem 0;
}

.embla__slide.active {
  background-color: #417780;
  color: #F9F9F9;
  transition: all 0.3s ease;
}

.embla__controls {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.embla__controls .embla__button__svg {
  background-color: #61A483;
  width: 60px;
  height: 30px;
  color: #F9F9F9;
  border-radius: 25px;
}
.embla__controls .embla__button__svg:hover {
  background-color: #457b60;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .embla__controls {
    position: absolute;
    display: flex;
    bottom: 10%;
    left: 0%;
  }
}
@media only screen and (min-width: 1440px) {
  .embla__controls {
    position: absolute;
    display: flex;
    bottom: 10%;
    left: 0%;
  }
}

.embla__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  align-items: center;
}

.embla__button {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 3.6rem;
  height: 3.6rem;
  z-index: 1;
  border-radius: 50%;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
}

.embla__button:disabled {
  color: var(--detail-high-contrast);
}

.embla__button__svg {
  width: 35%;
  height: 35%;
}

.embla__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-right: -0.6rem;
}

.embla__dot {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.embla__dot:after {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  content: "";
}

.embla__dot--selected:after {
  box-shadow: inset 0 0 0 0.2rem var(--text-body);
}

.embla__slide {
  transition: opacity 0.2s ease-in-out;
}

.embla__slide:not(.is-snapped) {
  background-color: #D6F1F1;
  border: 1px solid #6392A7;
  height: 260px;
  color: #172715;
}
.embla__slide:not(.is-snapped) .embla__slide__img {
  display: none;
}
.embla__slide:not(.is-snapped) .embla-arrow {
  display: none;
}

.section-vision {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  padding: 0px 32px;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .section-vision {
    padding: 0px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-vision {
    padding: 0px;
  }
}
@media only screen and (min-width: 1440px) {
  .section-vision {
    padding: 0px;
  }
}
.section-vision .vision-bubble-image {
  display: flex;
  gap: 10px;
  height: 100px;
}
.section-vision .vision-bubble-image .circle {
  border-radius: 50%;
  overflow: hidden;
}
.section-vision .vision-bubble-image .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-vision .vision-bubble-image .bubbleleft-circle-left {
  width: 44px;
  height: 44px;
}
.section-vision .vision-bubble-image .bubbleleft-circle-right {
  width: 75px;
  height: 75px;
  bottom: 0;
  align-self: flex-end;
}
.section-vision .vision-bubble-image .bubbleright-circle-left {
  width: 44px;
  height: 44px;
  bottom: 0;
  align-self: flex-end;
}
.section-vision .vision-bubble-image .bubbleright-circle-right {
  width: 75px;
  height: 75px;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-vision .vision-bubble-image {
    position: absolute;
  }
}
@media only screen and (min-width: 1440px) {
  .section-vision .vision-bubble-image {
    position: absolute;
  }
}
.section-vision .bubble-left {
  left: 5%;
  top: 15%;
}
@media only screen and (min-width: 1440px) {
  .section-vision .bubble-left {
    left: 5%;
    top: 8%;
  }
}
.section-vision .bubble-right {
  right: 5%;
  top: 10%;
}
@media only screen and (min-width: 1440px) {
  .section-vision .bubble-right {
    right: 5%;
    top: 8%;
  }
}
.section-vision .vision-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 25px;
}
.section-vision .vision-title span {
  color: #407680;
}
.section-vision .vision-title p {
  color: #32421E;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-vision .vision-title {
    margin: 0 150px;
  }
  .section-vision .vision-title p {
    padding: 0 50px;
    color: #32421E;
  }
}
@media only screen and (min-width: 1440px) {
  .section-vision .vision-title p {
    padding: 0 200px;
  }
}
.section-vision .vision-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-vision .vision-content .vision-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: #D6F1F1;
  color: #32421E;
  padding: 15px 10px;
  border-radius: 10px;
  border: 1px solid #61A483;
  cursor: pointer;
}
.section-vision .vision-content .vision-card .vision-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
.section-vision .vision-content .vision-card .vision-item .vision-number {
  border: 1px solid black;
  font-size: xx-small;
  border-radius: 20px;
  padding: 5px 15px;
}
.section-vision .vision-content .vision-card .vision-arrow {
  border: 1px solid #32421E;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
}
.section-vision .vision-content .vision-card.active {
  background-color: #6392A7;
  color: #F9F9F9;
}
.section-vision .vision-content .vision-card.active .vision-number {
  background-color: #61A483;
  color: #F9F9F9;
  border: none;
}
.section-vision .vision-content .vision-card.active .card-active {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 200px;
  z-index: 10;
  box-shadow: -8px 6px #61A483;
  border-radius: 25px;
}
.section-vision .vision-content .vision-card.active .vision-arrow {
  background-color: #61A483;
  border: none;
}
.section-vision .vision-content .vision-card.active .vision-arrow .bi-arrow-right {
  transform: rotate(0);
  color: #F9F9F9;
}
.section-vision .vision-content .vision-card .card-active {
  display: none;
}
.section-vision .vision-content .vision-card:hover {
  background-color: #6392A7;
  color: #F9F9F9;
}
.section-vision .vision-content .vision-card:hover .vision-arrow {
  background-color: #61A483;
  border: none;
}
.section-vision .vision-content .vision-card:hover .vision-number {
  background-color: #61A483;
  border: none;
}

@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .city-section {
    padding: 5rem;
  }
}

.section-report {
  padding: 0 32px;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .section-report {
    padding: 0;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-report {
    padding: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .section-report {
    padding: 0;
  }
}
.section-report .report-card {
  display: flex;
  gap: 70px;
  text-align: start;
  flex-direction: column;
}
.section-report .report-card .report-title {
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-report .report-card .report-title {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1440px) {
  .section-report .report-card .report-title {
    flex-direction: row;
    justify-content: space-between;
  }
}
.section-report .report-card .report-title .report-btn {
  background-color: #61A483;
  color: #F9F9F9;
  height: 44px;
  border-radius: 30px;
}
.section-report .report-card .report-title .report-btn:hover {
  background-color: #457b60;
}
.section-report .report-content {
  display: flex;
  gap: 25px;
  flex-direction: column;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-report .report-content {
    flex-direction: row;
  }
  .section-report .report-content .report-number {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1440px) {
  .section-report .report-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
.section-report .report-content .report-home {
  display: flex;
  justify-content: center;
}
.section-report .report-content .report-home .report-home-content {
  width: 350px;
  display: block;
  align-content: flex-end;
}
.section-report .report-content .report-home .report-home-content .report-button {
  display: flex;
  align-items: center;
  font-size: small;
  gap: 10px;
  background-color: #61A483;
  color: #F9F9F9;
  border-radius: 10px;
  padding: 5px 10px;
  margin-top: 10px;
}
.section-report .report-content .report-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media only screen and (min-width: 1440px) {
  .section-report .report-content .report-number {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
}
.section-report .report-content .report-number .number-card {
  display: flex;
  align-items: flex-end;
  width: 250px;
  height: 350px;
  background-color: #6392A7;
  border-radius: 15px 15px 50px 15px;
}
.section-report .report-content .report-number .number-card .number-card-arrow {
  display: flex;
  position: absolute;
  bottom: 5%;
  right: 15%;
  padding: 5px;
  border-radius: 100%;
}
.section-report .report-content .report-number .number-card .number-card-arrow-first {
  background-color: #61A483;
  color: #F9F9F9;
}
.section-report .report-content .report-number .number-card .number-card-arrow-second {
  border: 1px solid #172715;
  color: #172715;
}
.section-report .report-content .report-number .number-card .number-card-second h1 {
  font-size: 60px;
  color: white;
  padding: 0 20px;
}
.section-report .report-content .report-number .number-card .sub-card {
  background-color: #D6F1F1;
  width: 100%;
  height: 90%;
  border-radius: 0 0 50px 15px;
  border: 1px solid #6392A7;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #32421E;
}
.section-report .report-content .report-number .number-card .sub-card-third {
  background-color: transparent;
  color: white;
}
.section-report .report-content .report-number .number-card .sub-card-icon {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: xx-small;
}
.section-report .report-content .report-number .number-card .sub-card-icon img {
  height: 25px;
  width: 25px;
}
.section-report .report-content .report-number .number-card .sub-card h1 {
  font-size: 60px;
}
.section-report .report-content .report-number .number-card .sub-card p {
  font-size: small;
}

@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .section-field .background-image {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-field .background-image {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .section-field .background-image {
    width: 100%;
    height: 100%;
  }
}
.section-field .content-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.section-field .content-field div {
  text-align: center;
}
.section-field .content-field div span {
  color: #407680;
}
.section-field .content-field .button-explore {
  border-radius: 20px;
  background-color: #61A483;
  padding: 10px 20px;
}
.section-field .content-field .button-explore:hover {
  background-color: #457b60;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .section-field .content-field {
    padding: 0px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-field .content-field {
    padding: 0px;
  }
}
@media only screen and (min-width: 1440px) {
  .section-field .content-field {
    padding: 0px;
  }
}

.footer {
  background-color: #417780;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 50px;
  color: #F9F9F9;
  justify-content: center;
}
.footer .footer-brand {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer .footer-brand .footer-logo {
  height: 40px;
}
.footer .footer-brand .footer-socmed {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.footer .footer-brand .footer-socmed .icon-sosmed {
  width: 50px;
  height: 50px;
  font-size: 22px;
  border-radius: 50%;
  padding: 5px;
  background-color: #22545D;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.footer .footer-brand .footer-socmed .icon-sosmed:hover {
  background-color: #1b434a;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .footer .footer-brand .footer-socmed {
    justify-content: start;
    margin-top: 4rem;
  }
  .footer .footer-brand .footer-socmed .icon-sosmed {
    width: 30px;
    height: 30px;
    font-size: medium;
  }
}
@media only screen and (min-width: 1440px) {
  .footer .footer-brand .footer-socmed {
    justify-content: start;
    margin-top: 4rem;
  }
  .footer .footer-brand .footer-socmed .icon-sosmed {
    width: 30px;
    height: 30px;
    font-size: medium;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .footer .footer-brand {
    justify-content: space-between;
    height: 150px;
  }
}
.footer .footer-tab {
  display: flex;
  flex-direction: column;
  gap: 50px;
  font-size: small;
}
.footer .footer-tab .tab-bold {
  font-weight: bold;
  padding: 0 5px;
}
.footer .footer-tab .tab-point {
  cursor: pointer;
  padding: 0 5px;
}
.footer .footer-tab .tab-point:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .footer .footer-tab {
    display: flex;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1440px) {
  .footer .footer-tab {
    display: flex;
    flex-direction: row;
    gap: 8rem;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .footer {
    display: flex;
    flex-direction: row;
    align-items: start;
    text-align: start;
  }
}
@media only screen and (min-width: 1440px) {
  .footer {
    display: flex;
    flex-direction: row;
    align-items: start;
    text-align: start;
  }
}

.about-top {
  width: 100%;
  text-align: center;
  padding: 0 32px;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .about-top {
    padding: 0px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .about-top {
    padding: 0px;
  }
}
@media only screen and (min-width: 1440px) {
  .about-top {
    padding: 0px;
  }
}

.office-description {
  gap: 10rem;
}
.office-description .company-overview {
  z-index: 10;
  height: 80px;
  background-color: transparent;
  display: flex;
  padding: 15px 15px;
  margin-top: 10px;
  background-color: white;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}
.office-description .company-overview .sub-overview {
  padding: 5px;
}
.office-description .company-overview .sub-overview h1 {
  font-size: medium;
  font-weight: bold;
}
.office-description .company-overview .sub-overview p {
  font-size: smaller;
}
.office-description .company-overview:hover {
  background-color: white;
  box-shadow: black;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}
.office-description .company-overview:hover .sub-overview {
  opacity: 100;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .office-description {
    position: relative;
    color: #32421E;
  }
  .office-description .company-overview {
    position: absolute;
    z-index: 10;
    height: 80px;
    background-color: transparent;
    display: flex;
    box-shadow: none;
    padding: 10px 15px;
  }
  .office-description .company-overview .sub-overview {
    padding: 5px;
    opacity: 0;
  }
  .office-description .company-overview .sub-overview h1 {
    font-size: medium;
    font-weight: bold;
  }
  .office-description .company-overview .sub-overview p {
    font-size: smaller;
  }
  .office-description .company-overview:hover {
    background-color: white;
    box-shadow: black;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
  }
  .office-description .company-overview:hover .sub-overview {
    opacity: 100;
  }
  .office-description .headquarter {
    top: 20%;
    right: 30%;
  }
  .office-description .office-branch {
    top: 40%;
    left: 35%;
  }
  .office-description .employee {
    bottom: 30%;
    left: 17%;
  }
  .office-description .specialization {
    bottom: 30%;
    right: -9%;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .office-description {
    position: relative;
    color: #32421E;
  }
  .office-description .company-overview {
    position: absolute;
    z-index: 10;
    height: 80px;
    background-color: transparent;
    display: flex;
    box-shadow: none;
    padding: 10px 15px;
  }
  .office-description .company-overview .sub-overview {
    padding: 5px;
    opacity: 0;
  }
  .office-description .company-overview .sub-overview h1 {
    font-size: medium;
    font-weight: bold;
  }
  .office-description .company-overview .sub-overview p {
    font-size: smaller;
  }
  .office-description .company-overview:hover {
    background-color: white;
    box-shadow: black;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
  }
  .office-description .company-overview:hover .sub-overview {
    opacity: 100;
  }
  .office-description .headquarter {
    top: 20%;
    right: 33%;
  }
  .office-description .office-branch {
    top: 40%;
    left: 37%;
  }
  .office-description .employee {
    bottom: 30%;
    left: 19%;
  }
  .office-description .specialization {
    bottom: 30%;
    right: 0%;
  }
}
@media only screen and (min-width: 1440px) {
  .office-description {
    position: relative;
    color: #32421E;
  }
  .office-description .company-overview {
    position: absolute;
    z-index: 10;
    height: 80px;
    background-color: transparent;
    display: flex;
    padding: 10px 15px;
    box-shadow: none;
  }
  .office-description .company-overview .sub-overview {
    opacity: 0;
  }
  .office-description .company-overview:hover {
    background-color: white;
    box-shadow: black;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
  }
  .office-description .company-overview:hover .sub-overview {
    padding: 5px;
    opacity: 1;
  }
  .office-description .company-overview:hover .sub-overview h1 {
    font-size: medium;
    font-weight: bold;
  }
  .office-description .company-overview:hover .sub-overview p {
    font-size: smaller;
  }
  .office-description .headquarter {
    top: 20%;
    right: 33%;
  }
  .office-description .office-branch {
    top: 40%;
    left: 37%;
  }
  .office-description .employee {
    bottom: 30%;
    left: 19%;
  }
  .office-description .specialization {
    bottom: 30%;
    right: 0%;
  }
}

.value-chain {
  color: #32421E;
  padding: 0 32px;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .value-chain {
    padding: 0px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .value-chain {
    padding: 0px;
  }
}
@media only screen and (min-width: 1440px) {
  .value-chain {
    padding: 0px;
  }
}
.value-chain .value-chain-text {
  text-align: center;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .value-chain .value-chain-text {
    text-align: start;
  }
}
@media only screen and (min-width: 1440px) {
  .value-chain .value-chain-text {
    text-align: start;
    margin-bottom: 1.5rem;
  }
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
  padding: 0 10px;
}
.image-container img {
  border-radius: 25px;
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .image-container img {
    height: 100%;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .image-container img {
    height: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .image-container img {
    height: 100%;
  }
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: justify;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}
.text-overlay .read-link {
  display: flex;
  justify-content: center;
  width: 100%;
}
.text-overlay .read-link a {
  display: flex;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  background-color: #61A483;
  color: #F9F9F9;
  border-radius: 30px;
  padding: 10px 50px;
}
.text-overlay .read-link a:hover {
  background-color: #457b60;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .text-overlay .read-link a {
    width: 25%;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .text-overlay .read-link a {
    width: 25%;
  }
}
@media only screen and (min-width: 1440px) {
  .text-overlay .read-link a {
    width: 25%;
  }
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 100%;
    padding: 0 150px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 100%;
    padding: 0 150px;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
}
@media only screen and (min-width: 1440px) {
  .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 100%;
    padding: 0 150px;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #32421E;
}
.accordion .card .btn-noclick {
  background-color: #ffffff;
}
.accordion .card .btn-noclick:hover {
  background-color: #D6F1F1;
}
.accordion .card .btn-click {
  background-color: #D6F1F1;
}
.accordion .card .btn-click .btn-title .btn-number {
  padding: 0 15px;
  border: 1px solid black;
  border-radius: 15px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: small;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .accordion .card .btn-click .btn-title .btn-number {
    height: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .accordion .card .btn-click .btn-title .btn-number {
    height: 20px;
  }
}
.accordion .card .btn-accordion {
  box-shadow: none;
  display: flex;
  flex-direction: column;
  text-align: start;
}
.accordion .card .btn-accordion .btn-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion .card .btn-accordion .btn-box i {
  color: #1d2313;
}
.accordion .card .btn-accordion .btn-title {
  display: flex;
  padding: 5px 0;
  gap: 20px;
  align-items: center;
}
.accordion .card .btn-accordion .btn-title .btn-number {
  padding: 0 15px;
  border: 1px solid black;
  border-radius: 15px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: small;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .accordion .card .btn-accordion .btn-title .btn-number {
    height: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .accordion .card .btn-accordion .btn-title .btn-number {
    height: 20px;
  }
}
.accordion .card .btn-accordion .btn-title-text {
  font-weight: 500;
}
.accordion .card .btn-accordion .card-body {
  text-align: start;
  font-size: small;
  gap: 10px;
  margin-left: 2rem;
}
.accordion .accordion-body {
  padding: 20px 50px;
}

.tab-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: center;
  color: #32421E;
  padding: 0 32px;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .tab-section {
    text-align: start;
    padding: 0px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .tab-section {
    text-align: start;
    padding: 0px;
  }
}
@media only screen and (min-width: 1440px) {
  .tab-section {
    text-align: start;
    padding: 0px;
  }
}

.custom-tab {
  border-top: 1px solid #323F59;
  border-bottom: 1px solid #323F59;
  padding: 50px 0;
}
.custom-tab .nav-tabs {
  border-bottom: none;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  text-align: start;
  font-weight: 500;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .custom-tab .nav-tabs {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .custom-tab .nav-tabs {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .custom-tab .nav-tabs {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.custom-tab .nav-tabs .tab-link {
  border: none;
  color: #32421E;
}
.custom-tab .nav-tabs .tab-link .nav-item {
  display: flex;
  align-items: center;
  background-color: white;
  gap: 15px;
  border: 1px solid #32421E;
  border-radius: 20px;
  margin: 0 10px;
  padding: 20px 20px;
  height: 70px;
  font-size: small;
  color: #32421E;
  text-decoration: none;
  cursor: pointer;
}
.custom-tab .nav-tabs .tab-link .nav-item:hover {
  background-color: #6392A7;
  color: white;
  border: 1px solid #32421E;
}
.custom-tab .nav-tabs .tab-link .nav-item img {
  width: 45px;
  height: 45px;
}
.custom-tab .nav-tabs .tab-link .active {
  background-color: #6392A7;
  color: white;
}
.custom-tab .tab-content .tab-pane {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  gap: 50px;
  text-align: justify;
}
.custom-tab .tab-content .tab-pane img {
  height: 250px;
}
@media (max-width: 991.5px) {
  .custom-tab .tab-content .tab-pane img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991.5px) {
  .custom-tab .tab-content .tab-pane .tab-text {
    padding-top: 1rem;
  }
}
.custom-tab .tab-content .tab-pane p:last-child {
  margin-bottom: 0px;
}
.custom-tab .tab-content .tab-pane:not(.active) {
  display: none;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .custom-tab .tab-content .tab-pane {
    display: flex;
    text-align: start;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .custom-tab .tab-content .tab-pane {
    display: flex;
    text-align: start;
  }
}
@media only screen and (min-width: 1440px) {
  .custom-tab .tab-content .tab-pane {
    display: flex;
    text-align: start;
  }
}

.section-message {
  color: #32421E;
  display: flex;
  padding: 2rem;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .section-message {
    padding: 3rem;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-message {
    padding: 3rem;
  }
}
@media only screen and (min-width: 1440px) {
  .section-message {
    padding: 3rem;
  }
}
.section-message .message-component {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.section-message .message-component .message-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 4rem;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .section-message .message-component .message-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-message .message-component .message-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (min-width: 1440px) {
  .section-message .message-component .message-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.section-message .message-component .message-content img {
  width: 100%;
  max-width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .section-message .message-component .message-content img {
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: auto;
    height: 300px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-message .message-component .message-content img {
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: auto;
    height: 300px;
  }
}
@media only screen and (min-width: 1440px) {
  .section-message .message-component .message-content img {
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: auto;
    height: 300px;
  }
}
.section-message .message-component .message-content .message-text {
  text-align: start;
}

.section-carousel-1 {
  position: relative;
  padding: 2rem;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-carousel-1 {
    padding: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .section-carousel-1 {
    padding: 0;
  }
}
.section-carousel-1 .ceo-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.section-carousel-1 .ceo-slider .card {
  position: relative;
  display: flex;
  background-color: #D6F1F1;
  border-radius: 20px;
  margin: 5px;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  .section-carousel-1 .ceo-slider .card {
    height: 450px;
    margin: 10px;
    max-width: 230px;
    max-height: 450px;
  }
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .section-carousel-1 .ceo-slider .card {
    height: 450px;
    margin: 10px;
    max-width: 230px;
    max-height: 450px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-carousel-1 .ceo-slider .card {
    height: 450px;
    margin: 10px;
    max-width: 230px;
    max-height: 450px;
  }
}
@media only screen and (min-width: 1440px) {
  .section-carousel-1 .ceo-slider .card {
    height: 450px;
    margin: 10px;
    max-width: 230px;
    max-height: 450px;
  }
}
.section-carousel-1 .ceo-slider .card .card-body {
  height: 100%;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-carousel-1 .ceo-slider .card .card-title {
  font-size: 22px;
  font-weight: 500;
  order: 3;
}
.section-carousel-1 .ceo-slider .card .card-text {
  order: 2;
  display: none;
  margin-top: 1rem;
  line-height: 1.6;
}
.section-carousel-1 .ceo-slider .card .card-text-list {
  display: none;
}
.section-carousel-1 .ceo-slider .card .card-text-bold {
  font-weight: bold;
}
.section-carousel-1 .ceo-slider .card .card-number {
  font-size: 7rem;
  align-self: center;
  margin-top: -2rem;
  order: 1;
  opacity: 15%;
  margin-bottom: 120%;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-carousel-1 .ceo-slider .card .card-number {
    margin-bottom: 120%;
  }
}
@media only screen and (min-width: 1440px) {
  .section-carousel-1 .ceo-slider .card .card-number {
    margin-bottom: 120%;
  }
}
.section-carousel-1 .ceo-slider .slick-active {
  max-width: 650px;
  background-color: #6392A7;
  color: #F9F9F9;
  opacity: 1;
  width: 100%;
  transition: max-width 0.35s ease-in-out;
  transition-delay: 0.35s;
}
.section-carousel-1 .ceo-slider .slick-active .card-text {
  display: flex;
}
.section-carousel-1 .ceo-slider .slick-active .card-text-list {
  display: flex;
  order: 2;
}
@media only screen and (min-width: 1440px) {
  .section-carousel-1 .ceo-slider .slick-active .card-text-list ul {
    margin-top: -6rem;
  }
}
.section-carousel-1 .ceo-slider .slick-active .card-title {
  order: 1;
}
.section-carousel-1 .ceo-slider .slick-active .card-number {
  order: 3;
  align-self: flex-end;
  margin-bottom: 0%;
}
.section-carousel-1 .slider-button {
  position: absolute;
  justify-content: center;
  display: flex;
  left: 25%;
  width: 50%;
  z-index: 10;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .section-carousel-1 .slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-carousel-1 .slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (min-width: 1440px) {
  .section-carousel-1 .slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.section-carousel-1 .slider-button .slider-next, .section-carousel-1 .slider-button .slider-prev {
  background-color: #61A483;
  margin: 5px;
  width: 4rem;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  border: none;
  border-radius: 50px;
}
.section-carousel-1 .slider-button .slider-next:hover, .section-carousel-1 .slider-button .slider-prev:hover {
  background-color: #457b60;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-carousel-1 .slider-button .slider-next, .section-carousel-1 .slider-button .slider-prev {
    left: 20px;
    margin-left: 20px;
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    left: 4rem;
    top: 80%;
    border-radius: 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .section-carousel-1 .slider-button .slider-next, .section-carousel-1 .slider-button .slider-prev {
    left: 20px;
    margin-left: 20px;
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    left: 4rem;
    top: 80%;
    border-radius: 50px;
  }
}
.section-carousel-1 .left-arrow-slider, .section-carousel-1 .right-arrow-slider {
  width: 30px;
  height: 30px;
}

.section-carousel-2 {
  position: relative;
  padding: 2rem;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-carousel-2 {
    padding: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .section-carousel-2 {
    padding: 0;
  }
}
.section-carousel-2 .cso-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.section-carousel-2 .cso-slider .card {
  position: relative;
  display: flex;
  background-color: #D6F1F1;
  border-radius: 20px;
  margin: 5px;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  .section-carousel-2 .cso-slider .card {
    height: 450px;
    margin: 10px;
    max-width: 230px;
    max-height: 450px;
  }
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .section-carousel-2 .cso-slider .card {
    height: 450px;
    margin: 10px;
    max-width: 230px;
    max-height: 450px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-carousel-2 .cso-slider .card {
    height: 450px;
    margin: 10px;
    max-width: 230px;
    max-height: 450px;
  }
}
@media only screen and (min-width: 1440px) {
  .section-carousel-2 .cso-slider .card {
    height: 450px;
    margin: 10px;
    max-width: 230px;
    max-height: 450px;
  }
}
.section-carousel-2 .cso-slider .card .card-body {
  height: 100%;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-carousel-2 .cso-slider .card .card-title {
  font-size: 22px;
  font-weight: 500;
  order: 3;
}
.section-carousel-2 .cso-slider .card .card-text {
  order: 2;
  display: none;
  margin-top: 1rem;
  line-height: 1.6;
}
.section-carousel-2 .cso-slider .card .card-text-list {
  display: none;
}
.section-carousel-2 .cso-slider .card .card-text-bold {
  font-weight: bold;
}
.section-carousel-2 .cso-slider .card .card-number {
  font-size: 7rem;
  align-self: center;
  margin-top: -2rem;
  order: 1;
  opacity: 15%;
  margin-bottom: 120%;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-carousel-2 .cso-slider .card .card-number {
    margin-bottom: 120%;
  }
}
@media only screen and (min-width: 1440px) {
  .section-carousel-2 .cso-slider .card .card-number {
    margin-bottom: 120%;
  }
}
.section-carousel-2 .cso-slider .slick-active {
  max-width: 650px;
  background-color: #6392A7;
  color: #F9F9F9;
  opacity: 1;
  width: 100%;
  transition: max-width 0.35s ease-in-out;
  transition-delay: 0.35s;
}
.section-carousel-2 .cso-slider .slick-active .card-text {
  display: flex;
}
.section-carousel-2 .cso-slider .slick-active .card-text-list {
  display: block;
  order: 2;
}
@media only screen and (min-width: 1440px) {
  .section-carousel-2 .cso-slider .slick-active .card-text-list {
    margin-top: -2rem;
  }
}
.section-carousel-2 .cso-slider .slick-active .card-title {
  order: 1;
}
.section-carousel-2 .cso-slider .slick-active .card-number {
  order: 3;
  align-self: flex-end;
  margin-bottom: 0%;
}
.section-carousel-2 .slider-button {
  position: absolute;
  justify-content: center;
  display: flex;
  left: 25%;
  width: 50%;
  z-index: 10;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .section-carousel-2 .slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-carousel-2 .slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (min-width: 1440px) {
  .section-carousel-2 .slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.section-carousel-2 .slider-button .cso-next, .section-carousel-2 .slider-button .cso-prev {
  background-color: #61A483;
  margin: 5px;
  width: 4rem;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  border: none;
  border-radius: 50px;
}
.section-carousel-2 .slider-button .cso-next:hover, .section-carousel-2 .slider-button .cso-prev:hover {
  background-color: #457b60;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-carousel-2 .slider-button .cso-next, .section-carousel-2 .slider-button .cso-prev {
    left: 20px;
    margin-left: 20px;
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    left: 4rem;
    top: 80%;
    border-radius: 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .section-carousel-2 .slider-button .cso-next, .section-carousel-2 .slider-button .cso-prev {
    left: 20px;
    margin-left: 20px;
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    left: 4rem;
    top: 80%;
    border-radius: 50px;
  }
}
.section-carousel-2 .left-arrow-slider, .section-carousel-2 .right-arrow-slider {
  width: 30px;
  height: 30px;
}

.sustain-section-1 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 32px;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .sustain-section-1 {
    padding: 0px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .sustain-section-1 {
    padding: 0px;
  }
}
@media only screen and (min-width: 1440px) {
  .sustain-section-1 {
    padding: 0px;
  }
}
.sustain-section-1 .section-1-title {
  color: #32421E;
}
.sustain-section-1 .section-1-subcontent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5rem;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .sustain-section-1 .section-1-subcontent {
    flex-direction: row;
    gap: 5rem;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .sustain-section-1 .section-1-subcontent {
    flex-direction: row;
    gap: 10rem;
  }
}
@media only screen and (min-width: 1440px) {
  .sustain-section-1 .section-1-subcontent {
    flex-direction: row;
    gap: 10rem;
  }
}
.sustain-section-1 .section-1-subcontent .card {
  max-width: 15rem;
  border: none;
  text-align: center;
}
.sustain-section-1 .section-1-subcontent .card img {
  height: 15rem;
}
.sustain-section-1 .section-1-subcontent .card .card-body {
  width: 100%;
}

.materiality-assessment {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .materiality-assessment {
    padding: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .materiality-assessment {
    padding: 0;
  }
}
.materiality-assessment-component {
  background-color: #D6F1F1;
  color: #F9F9F9;
  display: flex;
  width: 100%;
  padding: 3rem 2rem;
  border-radius: 25px 25px 25px 25px;
  flex-direction: column;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .materiality-assessment-component {
    flex-direction: row;
    border-radius: 25px 25px 0 25px;
  }
}
@media only screen and (min-width: 1440px) {
  .materiality-assessment-component {
    flex-direction: row;
    border-radius: 25px 25px 0 25px;
  }
}
.materiality-assessment-text {
  color: #32421E;
  max-width: 600px;
}
.materiality-assessment-image {
  max-width: 771px;
}
.materiality-assessment-tab {
  flex: 4;
  background-color: #D6F1F1;
  color: #F9F9F9;
  max-width: 100%;
  border-radius: 25px 25px 25px 25px;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .materiality-assessment-tab {
    max-width: 72%;
    border-radius: 0 0 25px 25px;
  }
}
@media only screen and (min-width: 1440px) {
  .materiality-assessment-tab {
    max-width: 72%;
    border-radius: 0 0 25px 25px;
  }
}
.materiality-assessment-subtab {
  margin: 3px;
}

.menu-materiality {
  display: flex;
  align-items: start;
  flex-direction: column;
  width: 100%;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .menu-materiality {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1440px) {
  .menu-materiality {
    flex-direction: row;
  }
}
.menu-materiality-left {
  padding-top: 3rem;
  align-self: flex-start;
  width: 100%;
  flex: 1;
  padding-bottom: 3rem;
}
.menu-materiality-left .choose-menu {
  display: flex;
  flex-direction: column;
}
.menu-materiality-left .cloud-image {
  display: none;
  padding: 0;
  margin-left: -66px;
  margin-top: 50px;
  z-index: 1;
  padding: 0;
  max-width: 80%;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .menu-materiality-left .cloud-image {
    display: block;
  }
}
@media only screen and (min-width: 1440px) {
  .menu-materiality-left .cloud-image {
    display: block;
  }
}
.menu-materiality-left .cloud-lamp {
  display: none;
  margin-top: -20%;
  margin-left: -50%;
  height: 30%;
  padding: 0;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .menu-materiality-left .cloud-lamp {
    display: block;
  }
}
@media only screen and (min-width: 1440px) {
  .menu-materiality-left .cloud-lamp {
    display: block;
  }
}
.menu-materiality .cloud-gif {
  display: none;
  margin-left: 50%;
  width: 80%;
  z-index: 100;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .menu-materiality .cloud-gif {
    display: flex;
  }
}
@media only screen and (min-width: 1440px) {
  .menu-materiality .cloud-gif {
    display: flex;
  }
}
.menu-materiality-bottom {
  display: block;
  padding-top: 3rem;
  align-self: flex-start;
  width: 100%;
  flex: 1;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .menu-materiality-bottom {
    width: 60%;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .menu-materiality-bottom {
    display: none;
  }
}
@media only screen and (min-width: 1440px) {
  .menu-materiality-bottom {
    display: none;
  }
}
.menu-materiality-bottom .cloud-image {
  padding: 0;
  margin-left: -66px;
  margin-top: 50px;
  z-index: 1;
  padding: 0;
  max-width: 80%;
}
.menu-materiality-bottom .cloud-lamp {
  margin-top: -20%;
  margin-left: -50%;
  height: 30%;
  padding: 0;
}
.menu-materiality-bottom .cloud-gif {
  margin-left: 50%;
  display: flex;
  width: 80%;
  z-index: 100;
}
.menu-materiality .btn-keyfindings {
  text-decoration: none;
  padding: 8px 115px 8px 30px;
  max-width: 350px;
  color: #172715;
  background-color: #F9F9F9;
  border: 1px solid #172715;
  transition: all 0.25s linear;
  font-weight: 500;
  font-size: 15px;
  border-radius: 12px;
  text-align: start;
}
.menu-materiality .btn-keyfindings:hover, .menu-materiality .btn-keyfindings:active {
  color: #F9F9F9;
  background-color: #61A483;
  border-color: #61A483;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .menu-materiality .btn-keyfindings {
    font-weight: 600;
    font-size: 22px;
  }
}
@media only screen and (min-width: 1440px) {
  .menu-materiality .btn-keyfindings {
    font-weight: 600;
    font-size: 25px;
  }
}
.menu-materiality .btn-keyfindings.active {
  color: #F9F9F9;
  background-color: #61A483;
  border-color: #61A483;
}
.menu-materiality .btn-materiality {
  text-decoration: none;
  margin-top: 1rem;
  padding: 8px 80px 8px 30px;
  max-width: 350px;
  color: #172715;
  background-color: #F9F9F9;
  border: 1px solid #172715;
  transition: all 0.25s linear;
  font-weight: 500;
  font-size: 15px;
  border-radius: 12px;
  text-align: start;
}
.menu-materiality .btn-materiality:hover, .menu-materiality .btn-materiality:active {
  color: #F9F9F9;
  background-color: #61A483;
  border-color: #61A483;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .menu-materiality .btn-materiality {
    margin-top: 3rem;
    font-weight: 600;
    font-size: 22px;
  }
}
@media only screen and (min-width: 1440px) {
  .menu-materiality .btn-materiality {
    margin-top: 3rem;
    font-weight: 600;
    font-size: 25px;
  }
}
.menu-materiality .btn-materiality.active {
  color: #F9F9F9;
  background-color: #61A483;
  border-color: #61A483;
}

.keyfindings-slider .card {
  background: #6392A7;
  display: flex;
  align-items: center;
  margin: 3%;
  border: none;
  max-width: 1000px;
  height: 100%;
  border-radius: 20px;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .keyfindings-slider .card {
    max-height: 609px;
  }
}
@media only screen and (min-width: 1440px) {
  .keyfindings-slider .card {
    max-height: 609px;
  }
}
.keyfindings-slider .card-text {
  font-size: 15px;
}
.keyfindings-slider .carousel-control-prev,
.keyfindings-slider .carousel-control-next {
  background-color: #61A483;
  height: 2em;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  opacity: 1;
  border-radius: 50px;
}
.keyfindings-slider .carousel-control-prev:hover,
.keyfindings-slider .carousel-control-next:hover {
  background-color: #457b60;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .keyfindings-slider .carousel-control-prev,
  .keyfindings-slider .carousel-control-next {
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    left: 4rem;
    top: 80%;
    border-radius: 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .keyfindings-slider .carousel-control-prev,
  .keyfindings-slider .carousel-control-next {
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    left: 4rem;
    top: 80%;
    border-radius: 50px;
  }
}
.keyfindings-slider .carousel-control-prev {
  left: -1rem;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .keyfindings-slider .carousel-control-prev {
    left: 4rem;
  }
}
@media only screen and (min-width: 1440px) {
  .keyfindings-slider .carousel-control-prev {
    left: 4rem;
  }
}
.keyfindings-slider .carousel-control-next {
  right: -1rem;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .keyfindings-slider .carousel-control-next {
    left: 8.5em;
  }
}
@media only screen and (min-width: 1440px) {
  .keyfindings-slider .carousel-control-next {
    left: 8.5em;
  }
}
.keyfindings-slider .left-arrow-carousel,
.keyfindings-slider .right-arrow-carousel {
  width: 30px;
  height: 30px;
}
.keyfindings-slider .card-number {
  color: #F9F9F9;
  font-size: 45px;
  font-weight: bold;
}

.materiality-slider .card {
  background: #6392A7;
  display: flex;
  align-items: center;
  margin: 3%;
  border: none;
  max-width: 1000px;
  height: 100%;
  border-radius: 20px;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .materiality-slider .card {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media only screen and (min-width: 1440px) {
  .materiality-slider .card {
    max-height: 470px;
  }
}
@media only screen and (min-width: 1440px) {
  .materiality-slider .card-body {
    margin-bottom: 15rem;
  }
}
.materiality-slider .card-text {
  font-size: 15px;
}
.materiality-slider .card-list {
  font-weight: 500;
  margin-left: 1rem;
}
.materiality-slider .card-paragraph {
  margin-top: 5px;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .materiality-slider .card-paragraph {
    margin-top: 5px;
    margin-left: 2.1rem;
    margin-right: 3rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 1440px) {
  .materiality-slider .card-paragraph {
    margin-top: 5px;
    margin-left: 2.1rem;
    margin-right: 3rem;
    margin-bottom: 3rem;
  }
}
.materiality-slider .carousel-control-prev,
.materiality-slider .carousel-control-next {
  background-color: #61A483;
  height: 2em;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  opacity: 1;
  border-radius: 50px;
}
.materiality-slider .carousel-control-prev:hover,
.materiality-slider .carousel-control-next:hover {
  background-color: #457b60;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .materiality-slider .carousel-control-prev,
  .materiality-slider .carousel-control-next {
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    left: 4rem;
    top: 80%;
    border-radius: 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .materiality-slider .carousel-control-prev,
  .materiality-slider .carousel-control-next {
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    left: 4rem;
    top: 80%;
    border-radius: 50px;
  }
}
.materiality-slider .carousel-control-prev {
  left: -1rem;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .materiality-slider .carousel-control-prev {
    left: 4rem;
  }
}
@media only screen and (min-width: 1440px) {
  .materiality-slider .carousel-control-prev {
    left: 4rem;
  }
}
.materiality-slider .carousel-control-next {
  right: -1rem;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .materiality-slider .carousel-control-next {
    left: 8.5em;
  }
}
@media only screen and (min-width: 1440px) {
  .materiality-slider .carousel-control-next {
    left: 8.5em;
  }
}
.materiality-slider .left-arrow-carousel,
.materiality-slider .right-arrow-carousel {
  width: 30px;
  height: 30px;
}
.materiality-slider .card-number {
  color: #F9F9F9;
}

.environtment-component {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .environtment-component {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1440px) {
  .environtment-component {
    flex-direction: row;
  }
}

.environment {
  padding: 0 32px;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .environment {
    padding: 0;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .environment {
    padding: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .environment {
    padding: 0;
  }
}

.environmental-carousel {
  position: relative;
  padding: 0 32px;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .environmental-carousel {
    padding: 0;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .environmental-carousel {
    padding: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .environmental-carousel {
    padding: 0;
  }
}
.environmental-carousel-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.environmental-carousel-slider .card {
  position: relative;
  display: flex;
  background-color: #D6F1F1;
  border-radius: 20px;
  margin: 5px;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  .environmental-carousel-slider .card {
    height: 450px;
    margin: 10px;
    max-width: 230px;
    max-height: 450px;
  }
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .environmental-carousel-slider .card {
    height: 450px;
    margin: 10px;
    max-width: 230px;
    max-height: 450px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .environmental-carousel-slider .card {
    height: 450px;
    margin: 10px;
    max-width: 230px;
    max-height: 450px;
  }
}
@media only screen and (min-width: 1440px) {
  .environmental-carousel-slider .card {
    height: 450px;
    margin: 10px;
    max-width: 230px;
    max-height: 450px;
  }
}
.environmental-carousel-slider .card-body {
  height: 100%;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.environmental-carousel-slider .card-title {
  font-size: 22px;
  font-weight: 500;
  order: 3;
}
.environmental-carousel-slider .card-text {
  order: 2;
  display: none;
  margin-top: 1rem;
  line-height: 1.6;
}
.environmental-carousel-slider .card-text-list {
  display: none;
}
.environmental-carousel-slider .card-text-bold {
  font-weight: bold;
}
.environmental-carousel-slider .card-number {
  font-size: 7rem;
  align-self: center;
  margin-top: -2rem;
  order: 1;
  opacity: 15%;
  margin-bottom: 120%;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .environmental-carousel-slider .card-number {
    margin-bottom: 120%;
  }
}
@media only screen and (min-width: 1440px) {
  .environmental-carousel-slider .card-number {
    margin-bottom: 120%;
  }
}
.environmental-carousel-slider .slick-slide {
  filter: alpha(opacity=90);
  transition: width 1s ease-in-out;
  width: 90%;
  transition: width 0.5s ease-in-out;
}
.environmental-carousel-slider .slick-active {
  max-width: 650px;
  background-color: #6392A7;
  color: #F9F9F9;
  filter: alpha(opacity=100);
  opacity: 1;
  transition: width 1s ease-in-out;
  width: 100%;
  transition: max-width 0.35s ease-in-out;
  transition-delay: 0.35s;
}
.environmental-carousel-slider .slick-active .card-text {
  display: flex;
}
.environmental-carousel-slider .slick-active .card-text-list {
  display: flex;
  order: 2;
}
@media only screen and (min-width: 1440px) {
  .environmental-carousel-slider .slick-active .card-text-list ul {
    margin-top: -6rem;
  }
}
.environmental-carousel-slider .slick-active .card-title {
  order: 1;
}
.environmental-carousel-slider .slick-active .card-number {
  order: 3;
  align-self: flex-end;
  margin-bottom: 0%;
}
.environmental-carousel .slider-button {
  position: absolute;
  justify-content: center;
  display: flex;
  left: 25%;
  width: 50%;
  z-index: 10;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .environmental-carousel .slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .environmental-carousel .slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 1440px) {
  .environmental-carousel .slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }
}
.environmental-carousel .slider-button .slider-next, .environmental-carousel .slider-button .slider-prev {
  background-color: #61A483;
  margin: 5px;
  width: 4rem;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  border: none;
  border-radius: 50px;
}
.environmental-carousel .slider-button .slider-next:hover, .environmental-carousel .slider-button .slider-prev:hover {
  background-color: #457b60;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .environmental-carousel .slider-button .slider-next, .environmental-carousel .slider-button .slider-prev {
    left: 20px;
    margin-left: 20px;
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    left: 4rem;
    top: 80%;
    border-radius: 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .environmental-carousel .slider-button .slider-next, .environmental-carousel .slider-button .slider-prev {
    left: 20px;
    margin-left: 20px;
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    left: 4rem;
    top: 80%;
    border-radius: 50px;
  }
}

.left-arrow-slider, .right-arrow-slider {
  width: 30px;
  height: 30px;
}

.social-wrapper {
  margin-top: 10rem;
  background-color: #D6F1F1;
}

.social-carousel {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  padding: 0 20px;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .social-carousel {
    padding: 1rem 0rem;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .social-carousel {
    padding: 1rem 0rem;
  }
}
@media only screen and (min-width: 1440px) {
  .social-carousel {
    padding: 1rem 0rem;
  }
}
.social-carousel .social-carousel-data {
  position: relative;
}
.social-carousel-title {
  background-color: #D6F1F1;
  max-width: 600px;
  font-size: xx-large;
  font-weight: bold;
  margin-top: -6rem;
  padding-top: 26px;
  padding-left: 6px;
  padding-right: 6px;
  text-align: center;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .social-carousel-title {
    border-radius: 0 25px 0 0;
    padding-top: 34px;
    padding-left: 48px;
    padding-right: 0px;
    text-align: start;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .social-carousel-title {
    border-radius: 0 25px 0 0;
    padding-top: 34px;
    padding-left: 48px;
    padding-right: 0px;
    text-align: start;
  }
}
@media only screen and (min-width: 1440px) {
  .social-carousel-title {
    border-radius: 25px 25px 0 0;
    padding-top: 34px;
    padding-left: 48px;
    padding-right: 0px;
    text-align: start;
  }
}
.social-carousel-text {
  background-color: #D6F1F1;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .social-carousel-text {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .social-carousel-text {
    padding: 0 3rem;
  }
}
@media only screen and (min-width: 1440px) {
  .social-carousel-text {
    padding: 0 3rem;
  }
}
.social-carousel-main {
  background-color: #D6F1F1;
  font-weight: bold;
}
@media only screen and (min-width: 1440px) {
  .social-carousel-main {
    padding: 0 3rem;
  }
}
.social-carousel-button {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .social-carousel-button {
    position: absolute;
    left: 3%;
    bottom: 6%;
  }
}
@media only screen and (min-width: 1440px) {
  .social-carousel-button {
    position: absolute;
    left: 3%;
    bottom: 6%;
  }
}
.social-carousel-button .social-next, .social-carousel-button .social-prev {
  background-color: #61A483;
  width: 4rem;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  border: none;
  margin: 1rem;
  border-radius: 50px;
}
.social-carousel-button .social-next:hover, .social-carousel-button .social-prev:hover {
  background-color: #457b60;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .social-carousel-button .social-next, .social-carousel-button .social-prev {
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .social-carousel-button .social-next, .social-carousel-button .social-prev {
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 50px;
  }
}
.social-carousel-button .left-arrow-slider, .social-carousel-button .right-arrow-slider {
  width: 30px;
  height: 30px;
}
.social-carousel .slide-title {
  display: flex;
  gap: 1rem;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.social-carousel .slide-title-number {
  font-size: 4rem;
}
.social-carousel .slide-title-text {
  font-size: 2rem;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .social-carousel .slide-title {
    flex-direction: row;
    gap: 2rem;
    padding-right: 2rem;
    margin-bottom: 2rem;
    text-align: start;
  }
  .social-carousel .slide-title-text {
    margin-right: 100px;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .social-carousel .slide-title {
    flex-direction: row;
    gap: 2rem;
    padding-right: 2rem;
    margin-bottom: 2rem;
    text-align: start;
  }
  .social-carousel .slide-title-text {
    margin-right: 100px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1440px) {
  .social-carousel .slide-title {
    flex-direction: row;
    gap: 2rem;
    padding-right: 2rem;
    margin-bottom: 2rem;
    text-align: start;
  }
  .social-carousel .slide-title-text {
    margin-right: 100px;
    font-size: 2rem;
  }
}
.social-carousel .slide-desc {
  font-weight: lighter;
  margin-bottom: 3rem;
}
.social-carousel .report-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
@media only screen and (min-width: 1440px) {
  .social-carousel .report-number {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
}
.social-carousel .report-number .number-card {
  display: flex;
  align-items: flex-end;
  width: 270px;
  height: 350px;
  background-color: #F9F9F9;
  border-radius: 15px 15px 50px 15px;
}
.social-carousel .report-number .number-card .number-card-second {
  width: 270px;
}
.social-carousel .report-number .number-card .number-card-second h1 {
  font-size: 60px;
  color: #6392A7;
  padding: 0 20px;
}
.social-carousel .report-number .number-card .number-card-second .img-feedback {
  margin: 20px 25px;
  width: 50px;
  height: 50px;
}
.social-carousel .report-number .number-card .number-card-second span {
  font-weight: lighter;
  color: #6392A7;
  margin: 20px 20px;
}
.social-carousel .report-number .number-card .sub-card {
  background-color: #6392A7;
  width: 100%;
  height: 90%;
  border-radius: 0 0 50px 15px;
  border: 1px solid #6392A7;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #F9F9F9;
  font-weight: lighter;
}
.social-carousel .report-number .number-card .sub-card-second {
  margin-top: 1rem;
  padding-top: 7rem;
}
.social-carousel .report-number .number-card .sub-card-third {
  height: 95%;
}
.social-carousel .report-number .number-card .sub-card-fourth {
  margin-top: 1.7rem;
  padding-top: 7.5rem;
}
.social-carousel .report-number .number-card .sub-card-fifth {
  height: 92%;
}
.social-carousel .report-number .number-card .sub-card-sixth {
  margin-top: 2rem;
  padding-top: 6.5rem;
}
.social-carousel .report-number .number-card .sub-card-icon {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #F9F9F9;
}
.social-carousel .report-number .number-card .sub-card-icon .sub-card-image {
  margin-left: 6px;
  background-color: #61A483;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.social-carousel .report-number .number-card .sub-card-icon .sub-card-text p {
  margin: 0;
  font-size: 12px;
}
.social-carousel .report-number .number-card .sub-card-icon img {
  height: 25px;
  width: 25px;
}
.social-carousel .report-number .number-card .sub-card h1 {
  font-size: 60px;
}
.social-carousel .report-number .number-card .sub-card p {
  font-size: medium;
}

.city-sustain-image {
  width: 100%;
}

.section-1-title {
  width: 100%;
  text-align: center;
  padding: 0 32px;
  color: #32421E;
}
.section-1-title-text {
  margin-top: 2%;
  margin-left: 2%;
  margin-right: 2%;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .section-1-title {
    padding: 16px 100px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .section-1-title {
    padding: 16px 100px;
  }
}
@media only screen and (min-width: 1440px) {
  .section-1-title {
    padding: 16px 100px;
  }
}

.report-title {
  text-align: center;
  padding: 0 2rem;
}
.report-title p {
  margin-top: 1rem;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .report-title {
    padding: 0 6rem;
  }
  .report-title p {
    margin-top: 2.5rem;
  }
}
@media only screen and (min-width: 1440px) {
  .report-title {
    padding: 0 6rem;
  }
  .report-title p {
    margin-top: 2.5rem;
  }
}

.reports {
  overflow: hidden;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .reports {
    overflow: visible;
  }
}
@media only screen and (min-width: 1440px) {
  .reports {
    overflow: visible;
  }
}
.reports .container {
  position: relative;
  z-index: 0;
}
.reports .report-slider .owl-item {
  height: 0;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .reports .report-slider .owl-item {
    height: auto;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .reports .report-slider .owl-item {
    height: auto;
  }
}
@media only screen and (min-width: 1440px) {
  .reports .report-slider .owl-item {
    height: auto;
  }
}
.reports .report-slider .owl-item.active {
  height: auto;
  transition: height 5s ease-in-out;
}
.reports .report-slider .owl-stage-outer {
  overflow: hidden;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .reports .report-slider .owl-stage-outer {
    overflow: visible;
  }
}
@media only screen and (min-width: 1440px) {
  .reports .report-slider .owl-stage-outer {
    overflow: visible;
  }
}
.reports .report-slider .owl-dots {
  text-align: center;
}
.reports .report-slider .owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #989EAB;
  margin-left: 3px;
  margin-right: 3px;
  outline: none;
}
.reports .report-slider .owl-dots .owl-dot.active {
  background: #417780;
}
.reports .report-slider .card {
  background-color: #D6F1F1;
  border-color: #32421E;
  border-radius: 25px;
  padding: 14px;
  margin: 16px;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .reports .report-slider .card {
    margin: 0;
    width: 550px;
  }
}
@media only screen and (min-width: 1440px) {
  .reports .report-slider .card {
    margin: 0;
    width: 650px;
  }
}
.reports .report-slider .card-topic {
  background-color: #61A483;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
}
.reports .report-slider .card-topic p {
  font-size: 14px;
  padding: 2px 12px;
  font-weight: bold;
  color: #F9F9F9;
}
.reports .report-slider .card-title {
  margin-top: 10px;
  margin-bottom: 26px;
  font-size: 30px;
}
.reports .btn-noclick {
  background-color: #F9F9F9;
  border-color: #32421E;
}
.reports .btn-noclick .btn-arrow {
  background-color: #19587F;
  color: #F9F9F9;
  border-radius: 5px;
}
.reports .btn-noclick .btn-arrow .arrow {
  padding: 4px 6px;
}
.reports .btn-noclick .collapse-card {
  background-color: #F9F9F9;
  opacity: 0;
}
.reports .btn-noclick:hover {
  background-color: #6392A7;
  color: #F9F9F9;
  border-color: #32421E;
}
.reports .btn-noclick:hover .btn-arrow {
  background-color: #F9F9F9;
  color: #19587F;
}
.reports .btn-noclick:hover .collapse-card {
  transition: opacity 1s ease-in-out;
  background-color: #6392A7;
}
.reports .btn-report {
  box-shadow: none;
  display: flex;
  flex-direction: column;
  text-align: start;
  border-radius: 16px;
  margin: 1rem 0;
}
.reports .btn-report .btn-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
}
.reports .btn-report .btn-title {
  display: flex;
  padding: 5px 0;
  align-items: center;
}
.reports .btn-report .btn-title .btn-title-text {
  font-size: 18px;
  font-weight: 500;
}
.reports .btn-clicked {
  background-color: #6392A7;
  border-color: #32421E;
  color: #F9F9F9;
}
.reports .btn-clicked .btn-arrow {
  background-color: #F9F9F9;
  color: #19587F;
  border-radius: 5px;
}
.reports .btn-clicked .btn-arrow .arrow {
  padding: 4px 6px;
}
.reports .btn-clicked:hover .btn-arrow {
  background-color: #6392A7;
  color: #F9F9F9;
}
.reports .card-text {
  color: #172715;
  padding: 10px 5px 2px 5px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.reports .card-text p {
  display: flex;
  align-items: center;
}
.reports .collapse-card {
  opacity: 100;
  text-align: start;
  font-size: small;
  background-color: #6392A7;
  margin: 5px 6px;
}
.reports .report-menu {
  display: flex;
  justify-content: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px 0;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .reports .report-menu {
    position: absolute;
    right: -20px;
    bottom: 100px;
    align-items: center;
    max-width: 650px;
    width: 48%;
    z-index: 10;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .reports .report-menu {
    position: absolute;
    right: -20px;
    bottom: 70px;
    align-items: center;
    max-width: 650px;
    width: 48%;
    z-index: 10;
  }
}
@media only screen and (min-width: 1440px) {
  .reports .report-menu {
    position: absolute;
    right: -20px;
    bottom: 70px;
    align-items: center;
    max-width: 650px;
    width: 48%;
    z-index: 10;
  }
}
.reports .report-menu-top {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .reports .report-menu-top {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .reports .report-menu-top {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .reports .report-menu-top {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    max-width: 100%;
  }
}
.reports .report-menu-number {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 16px;
  order: 2;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .reports .report-menu-number {
    order: 1;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .reports .report-menu-number {
    display: flex;
    order: 1;
    margin-left: 0;
    margin-right: auto; /* Pushes number to the left */
    flex-shrink: 1; /* Prevents number from growing beyond its natural size */
    max-width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  .reports .report-menu-number {
    display: flex;
    order: 1;
    margin-left: 0;
    margin-right: auto; /* Pushes number to the left */
    flex-shrink: 1; /* Prevents number from growing beyond its natural size */
    max-width: 50%;
  }
}
.reports .report-menu-number .report-menu-bignumber {
  font-size: 50px;
}
.reports .report-menu-number .report-menu-smallnumber {
  margin: 8px;
  font-weight: 500;
  color: #989EAB;
  font-size: 18px;
}
.reports .report-carousel-button {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .reports .report-carousel-button {
    justify-content: end;
    order: 2;
    margin-left: auto; /* Pushes buttons to the right */
    flex-shrink: 0; /* Prevents buttons from shrinking */
    max-width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  .reports .report-carousel-button {
    justify-content: end;
    order: 2;
    margin-left: auto; /* Pushes buttons to the right */
    flex-shrink: 0; /* Prevents buttons from shrinking */
    max-width: 50%;
  }
}
.reports .report-carousel-button .report-next, .reports .report-carousel-button .report-prev {
  background-color: #61A483;
  width: 4rem;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  border: none;
  margin: 0.5rem;
  border-radius: 50px;
  cursor: pointer;
}
.reports .report-carousel-button .report-next:hover, .reports .report-carousel-button .report-prev:hover {
  background-color: #457b60;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .reports .report-carousel-button .report-next, .reports .report-carousel-button .report-prev {
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .reports .report-carousel-button .report-next, .reports .report-carousel-button .report-prev {
    left: 10px;
    width: 4rem;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 50px;
  }
}
.reports .report-carousel-button .left-arrow-slider, .reports .report-carousel-button .right-arrow-slider {
  width: 30px;
  height: 30px;
}
.reports .image-lamp {
  display: flex;
  margin-right: -20rem;
}
.reports .image-lamp img {
  height: auto;
  width: 60%;
  transform: translateX(35%);
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .reports .image-lamp {
    position: absolute;
    right: -80%;
    top: 100%;
    margin-right: 0;
  }
  .reports .image-lamp img {
    height: auto;
    width: 70%;
    transform: translateX(0);
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .reports .image-lamp {
    position: absolute;
    right: -55%;
    top: 100%;
    margin-right: 0;
  }
  .reports .image-lamp img {
    height: auto;
    width: 70%;
    transform: translateX(0);
  }
}
@media only screen and (min-width: 1440px) {
  .reports .image-lamp {
    position: absolute;
    right: -55%;
    top: 150%;
    margin-right: 0;
  }
  .reports .image-lamp img {
    height: auto;
    width: 70%;
    transform: translateX(0);
  }
}

.home-section {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  margin: 3rem 20px;
  z-index: 10;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .home-section {
    flex-direction: row;
    gap: 10;
    margin: 3rem 0;
  }
}
@media only screen and (min-width: 1440px) {
  .home-section {
    flex-direction: row;
    gap: 10;
    margin: 3rem 0;
  }
}
.home-section .home {
  display: flex;
  width: 90%;
  height: 90%;
  margin: 0 16px;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .home-section .home {
    width: 45%;
    height: 45%;
    margin: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .home-section .home {
    width: 45%;
    height: 45%;
    margin: 0;
  }
}
.home-section p {
  display: flex;
  font-size: 16px;
  text-align: center;
  margin: 16px 16px;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .home-section p {
    font-size: 18px;
    align-items: flex-end;
    padding-left: 5rem;
    text-align: start;
    margin: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .home-section p {
    font-size: 18px;
    align-items: flex-end;
    padding-left: 5rem;
    text-align: start;
    margin: 0;
  }
}

.goals .goals-header {
  text-align: center;
  padding: 1rem 20px;
}
.goals .goals-header p {
  margin-top: 1rem;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals .goals-header {
    padding: 1rem 5rem;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals .goals-header {
    padding: 0 6rem;
  }
  .goals .goals-header p {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1440px) {
  .goals .goals-header {
    padding: 1rem;
  }
  .goals .goals-header p {
    padding: 0 18rem;
    margin-top: 2rem;
  }
}

.goals-collapses {
  padding-bottom: 5rem;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.goals-collapses .btn-noclick {
  background-color: #F9F9F9;
  border-color: #32421E;
}
.goals-collapses .btn-noclick .btn-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #32421E;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .btn-noclick .btn-arrow {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .btn-noclick .btn-arrow {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .btn-noclick .btn-arrow {
    width: 48px;
    height: 48px;
  }
}
.goals-collapses .btn-noclick .collapse-card {
  background-color: #D6F1F1;
}
.goals-collapses .btn-noclick .collapse-card .collapse-card-text {
  opacity: 0;
}
.goals-collapses .btn-noclick:hover {
  background-color: #6392A7;
  color: #F9F9F9;
  border-color: #F9F9F9;
}
.goals-collapses .btn-noclick:hover .btn-arrow {
  color: #F9F9F9;
  border-color: #F9F9F9;
}
.goals-collapses .btn-noclick:hover .btn-number {
  border-color: #F9F9F9;
}
.goals-collapses .btn-noclick:hover .collapse-card {
  transition: opacity 1s ease-in-out;
  background-color: #6392A7;
  color: #F9F9F9;
}
.goals-collapses .btn-goal {
  box-shadow: none;
  display: flex;
  flex-direction: column;
  text-align: start;
  border-radius: 16px;
  border: none;
  margin: 1rem 0;
  background-color: #D6F1F1;
  color: #32421E;
  cursor: pointer;
}
.goals-collapses .btn-goal .btn-left {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .btn-goal .btn-left {
    gap: 70px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .btn-goal .btn-left {
    gap: 70px;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .btn-goal .btn-left {
    gap: 70px;
  }
}
.goals-collapses .btn-goal .btn-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 2px;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .btn-goal .btn-box {
    padding: 14px 16px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .btn-goal .btn-box {
    padding: 14px 16px;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .btn-goal .btn-box {
    padding: 14px 16px;
  }
}
.goals-collapses .btn-goal .btn-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #32421E;
  display: flex;
  justify-content: center;
  align-items: center;
}
.goals-collapses .btn-goal .btn-number p {
  margin: 0;
  height: -moz-fit-content;
  height: fit-content;
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .btn-goal .btn-number {
    width: 48px;
    height: 48px;
  }
  .goals-collapses .btn-goal .btn-number p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .btn-goal .btn-number {
    width: 48px;
    height: 48px;
  }
  .goals-collapses .btn-goal .btn-number p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .btn-goal .btn-number {
    width: 48px;
    height: 48px;
  }
  .goals-collapses .btn-goal .btn-number p {
    font-size: 20px;
  }
}
.goals-collapses .btn-goal .btn-title {
  display: flex;
  padding: 5px 0;
  align-items: center;
  justify-items: start;
}
.goals-collapses .btn-goal .btn-title .btn-title-text {
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .btn-goal .btn-title .btn-title-text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .btn-goal .btn-title .btn-title-text {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .btn-goal .btn-title .btn-title-text {
    font-size: 22px;
  }
}
.goals-collapses .btn-clicked {
  background-color: #6392A7;
  border-color: #32421E;
  color: #F9F9F9;
}
.goals-collapses .btn-clicked .btn-arrow {
  border: 2px solid #F9F9F9;
  color: #F9F9F9;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .btn-clicked .btn-arrow {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .btn-clicked .btn-arrow {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .btn-clicked .btn-arrow {
    width: 48px;
    height: 48px;
  }
}
.goals-collapses .btn-clicked .btn-number {
  border-color: #F9F9F9;
}
.goals-collapses .btn-clicked:active {
  background-color: #6392A7;
  border-color: #32421E;
  color: #F9F9F9;
}
.goals-collapses .collapse-card {
  opacity: 100;
  text-align: start;
  font-size: 14px;
  background-color: #6392A7;
  padding: 1rem;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .collapse-card {
    padding: 6px 20rem 6px 134px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .collapse-card {
    padding: 6px 20rem 6px 134px;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .collapse-card {
    padding: 6px 20rem 6px 134px;
  }
}
.goals-collapses .collapse-card .collapse-card-text {
  line-height: 1.9;
}
.goals-collapses .collapse-card li {
  line-height: 1.9;
}
.goals-collapses .card-graph {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .card-graph {
    justify-content: start;
    text-align: start;
    flex-direction: row;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .card-graph {
    flex-direction: row;
    justify-content: start;
    text-align: center;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .card-graph {
    justify-content: start;
    text-align: start;
    flex-direction: row;
  }
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .card-graph-content {
    padding: 1rem 0;
    max-width: 50%;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .card-graph-content {
    padding: 1rem 0;
    max-width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .card-graph-content {
    padding: 1rem 0;
    max-width: 50%;
  }
}
.goals-collapses .card-graph-content .graph-img {
  width: 70%;
}
.goals-collapses .card-graph-content .percentage-img {
  width: 24%;
}
.goals-collapses .card-graph-content p {
  font-size: 14px;
  font-weight: bold;
  padding-top: 1rem;
  line-height: 1.9;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .card-graph-content p {
    padding-right: 6rem;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .card-graph-content p {
    padding-right: 6rem;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .card-graph-content p {
    padding-right: 6rem;
  }
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .card-graph-content-second {
    padding: 1rem 0;
    max-width: 50%;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .card-graph-content-second {
    padding: 1rem 0;
    max-width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .card-graph-content-second {
    padding: 1rem 0;
    max-width: 50%;
  }
}
.goals-collapses .card-graph-content-second .graph-img {
  width: 70%;
}
.goals-collapses .card-graph-content-second .percentage-img {
  margin-left: 10%;
  width: 35%;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .card-graph-content-second .percentage-img {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .card-graph-content-second .percentage-img {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .card-graph-content-second .percentage-img {
    margin-left: 0;
  }
}
.goals-collapses .card-graph-content-second p {
  font-size: 14px;
  font-weight: bold;
  padding-top: 1rem;
  line-height: 1.9;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .goals-collapses .card-graph-content-second p {
    padding-right: 7rem;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-collapses .card-graph-content-second p {
    padding-right: 7rem;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-collapses .card-graph-content-second p {
    padding-right: 7rem;
  }
}

.goals-bottom {
  padding: 3rem 20px 5rem 20px;
  display: flex;
  flex-direction: column;
  text-align: justify;
  gap: 40px;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-bottom {
    padding: 3rem 0 5rem 0;
    text-align: start;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-bottom {
    padding: 3rem 0 5rem 0;
    text-align: start;
    flex-direction: row;
  }
}
.goals-bottom .goals-bottom-img {
  width: 100%;
  display: flex;
  justify-content: center;
}
.goals-bottom .goals-bottom-img img {
  width: 70%;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-bottom .goals-bottom-img {
    align-items: end;
    padding: 2rem;
  }
  .goals-bottom .goals-bottom-img img {
    width: 450px;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-bottom .goals-bottom-img {
    align-items: end;
    padding-left: 2rem;
  }
  .goals-bottom .goals-bottom-img img {
    width: 450px;
  }
}
.goals-bottom .goals-bottom-text {
  align-items: start;
}
.goals-bottom .goals-bottom-text p {
  padding: 1rem;
}
.goals-bottom .goals-bottom-text h5 {
  text-align: center;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .goals-bottom .goals-bottom-text p {
    padding: 10px 40px 10px 10px;
  }
  .goals-bottom .goals-bottom-text h5 {
    text-align: start;
    padding: 0 10px;
  }
}
@media only screen and (min-width: 1440px) {
  .goals-bottom .goals-bottom-text p {
    padding: 10px 40px 10px 10px;
  }
  .goals-bottom .goals-bottom-text h5 {
    text-align: start;
    padding: 0 10px;
  }
}

.dark-mode {
  transition: 0.4s;
  background-color: #1B222B;
  color: #F9F9F9;
}
.dark-mode .navbar .navbar__logo {
  background-color: #2D373F;
}
.dark-mode .navbar .navbar__logo .img__logo {
  content: url("../images/dark-mode/logo_white.png");
}
.dark-mode .navbar .menu-icon span {
  background-color: #F9F9F9;
}
.dark-mode .navbar .navbar__menu {
  background-color: #2D373F;
  color: #F9F9F9;
}
.dark-mode .navbar .navbar__menu li a {
  color: #F9F9F9;
}
.dark-mode .navbar .navbar__sub-control {
  background-color: #2D373F;
}
.dark-mode .navbar .navbar__sub-control .navbar__lang {
  background-color: #989EAB;
  border: none;
  opacity: 100%;
  color: #F9F9F9;
}
.dark-mode .navbar__link {
  background-color: #1B222B;
}
.dark-mode .navbar__link a {
  color: #F9F9F9;
}
.dark-mode .hero img {
  content: url("../images/dark-mode/singapore-view__dark.png");
}
.dark-mode .lamp img {
  content: url("../images/dark-mode/lamp__dark.gif");
  height: 50%;
  width: 25%;
}
@media (max-width: 991.5px) {
  .dark-mode .lamp img {
    height: 100%;
    width: 80%;
  }
}
.dark-mode .content .title-content span {
  color: #5EB5C5;
}
.dark-mode .embla__slide:not(.is-snapped) {
  border: none;
  background-color: #2D373F;
  color: #F9F9F9;
}
.dark-mode .embla__slide {
  background-color: #6392A7;
  color: #F9F9F9;
}
.dark-mode .vision-title span {
  color: #5EB4C2;
}
.dark-mode .vision-title p {
  color: #F9F9F9;
}
.dark-mode .vision-content .vision-card {
  background-color: #323F59;
  color: #F9F9F9;
  border: none;
}
.dark-mode .vision-content .vision-card .vision-item .vision-number {
  border: 1px solid #F9F9F9;
}
.dark-mode .vision-content .vision-card .vision-arrow {
  border: 1px solid #F9F9F9;
}
.dark-mode .vision-content .vision-card.active .vision-arrow {
  background-color: #F9F9F9;
}
.dark-mode .vision-content .vision-card.active .vision-arrow .bi-arrow-right {
  color: #61A483;
}
.dark-mode .city-section img {
  content: url("../images/dark-mode/city__dark.png");
}
.dark-mode .section-report .report-content .report-number .sub-card {
  background-color: #2D373F;
  color: #F9F9F9;
}
.dark-mode .section-report .report-content .report-number .sub-card-third {
  background-color: transparent;
}
.dark-mode .section-field {
  background-color: #1B222B;
}
.dark-mode .section-field .background-image {
  content: url("../images/dark-mode/field__dark.png");
}
.dark-mode .section-field .content-field div span {
  color: #5EB5C5;
}
.dark-mode .about-top {
  color: #F9F9F9;
}
.dark-mode .office-description {
  color: #32421E;
}
.dark-mode .office-description .company-overview:hover {
  background-color: #6392A7;
  color: #F9F9F9;
}
.dark-mode .office-description .img-city {
  content: url("../images/dark-mode/city-2__dark.png");
}
.dark-mode .value-chain {
  color: #F9F9F9;
}
.dark-mode .accordion {
  color: #F9F9F9;
}
.dark-mode .accordion .btn-noclick {
  background-color: #1B222B;
  border: 1px solid #6392A7;
  color: #F9F9F9;
}
.dark-mode .accordion .btn-noclick:hover, .dark-mode .accordion .btn-noclick:active {
  background-color: #6392A7;
  color: #F9F9F9;
}
.dark-mode .accordion .btn-click {
  background-color: #6392A7;
  color: #F9F9F9;
}
.dark-mode .accordion .btn-click .btn-title .btn-number {
  background-color: #E8E8E8;
}
.dark-mode .accordion .btn-accordion .btn-box {
  color: #F9F9F9;
}
.dark-mode .accordion .btn-accordion .btn-box i {
  color: #F9F9F9;
}
.dark-mode .accordion .btn-accordion .btn-title .btn-number {
  border: 1px solid #F9F9F9;
  background-color: transparent;
}
.dark-mode .tab-section {
  color: #F9F9F9;
}
.dark-mode .custom-tab .nav-tabs .tab-link {
  color: #F9F9F9;
}
.dark-mode .custom-tab .nav-tabs .tab-link .nav-item {
  border: 1px solid #6392A7;
  background-color: transparent;
  color: #F9F9F9;
}
.dark-mode .custom-tab .nav-tabs .tab-link .nav-item:hover {
  background-color: #6392A7;
  color: white;
}
.dark-mode .custom-tab .nav-tabs .tab-link .nav-item.active {
  background-color: #6392A7;
  color: white;
}
.dark-mode .custom-tab .tab-content .tab-pane {
  background-color: transparent;
}
.dark-mode .section-message {
  color: #F9F9F9;
}
.dark-mode .section-carousel-1 .ceo-slider .card {
  background-color: #2D373F;
}
.dark-mode .section-carousel-1 .ceo-slider .card .card-number {
  color: #43748A;
  opacity: 30%;
}
.dark-mode .section-carousel-1 .ceo-slider .slick-active {
  background-color: #6392A7;
}
.dark-mode .section-carousel-1 .ceo-slider .slick-active .card-number {
  color: #F9F9F9;
}
.dark-mode .section-carousel-2 .cso-slider .card {
  background-color: #2D373F;
}
.dark-mode .section-carousel-2 .cso-slider .card .card-number {
  color: #43748A;
  opacity: 30%;
}
.dark-mode .section-carousel-2 .cso-slider .slick-active {
  background-color: #6392A7;
}
.dark-mode .section-carousel-2 .cso-slider .slick-active .card-number {
  color: #F9F9F9;
}
.dark-mode .sustain-section-1 .section-1-title {
  color: #F9F9F9;
}
.dark-mode .section-1-subcontent .card {
  background-color: #1B222B;
}
.dark-mode .section-1-subcontent .card-1 img {
  content: url("../images/dark-mode/vision-1.gif");
}
.dark-mode .section-1-subcontent .card-2 img {
  content: url("../images/dark-mode/vision-2.gif");
}
.dark-mode .section-1-subcontent .card-3 img {
  content: url("../images/dark-mode/vision-3.gif");
}
.dark-mode .materiality-assessment .materiality-assessment-component {
  background-color: #2D373F;
  color: #F9F9F9;
}
.dark-mode .materiality-assessment .materiality-assessment-text {
  color: #F9F9F9;
}
.dark-mode .materiality-assessment .materiality-assessment-tab {
  background-color: #2D373F;
}
.dark-mode .menu-materiality .menu-materiality-left .choose-menu .cloud-lamp {
  content: url("../images/dark-mode/lamp__dark.gif");
}
.dark-mode .menu-materiality .menu-materiality-bottom .cloud-lamp {
  content: url("../images/dark-mode/lamp__dark.gif");
}
.dark-mode .menu-materiality .btn-keyfindings {
  background-color: #2D373F;
  color: #F9F9F9;
}
.dark-mode .menu-materiality .btn-keyfindings:hover, .dark-mode .menu-materiality .btn-keyfindings:active {
  background-color: #6392A7;
  border-color: #6392A7;
}
.dark-mode .menu-materiality .btn-keyfindings.active {
  color: #F9F9F9;
  background-color: #6392A7;
  border-color: #6392A7;
}
.dark-mode .menu-materiality .btn-materiality {
  background-color: #2D373F;
  color: #F9F9F9;
}
.dark-mode .menu-materiality .btn-materiality:hover, .dark-mode .menu-materiality .btn-materiality:active {
  background-color: #6392A7;
  border-color: #6392A7;
}
.dark-mode .menu-materiality .btn-materiality.active {
  color: #F9F9F9;
  background-color: #6392A7;
  border-color: #6392A7;
}
.dark-mode .environmental-carousel .environmental-carousel-slider .card {
  color: #32421E;
}
.dark-mode .environmental-carousel .environmental-carousel-slider .slick-active {
  color: #F9F9F9;
}
.dark-mode .social-wrapper {
  background-color: #2D373F;
}
.dark-mode .social-carousel .social-carousel-title {
  background-color: #2D373F;
}
.dark-mode .social-carousel .social-carousel-text {
  background-color: #2D373F;
}
.dark-mode .social-carousel .social-carousel-main {
  background-color: #2D373F;
}
.dark-mode .section-1-title {
  color: #F9F9F9;
}
.dark-mode .city-sustain-image {
  content: url("../images/dark-mode/city__sustain-dark.png");
}
.dark-mode .reports .report-slider .card {
  background-color: #2D373F;
}
.dark-mode .reports .report-slider .card .card-text {
  color: #F9F9F9;
}
.dark-mode .reports .btn-noclick {
  background-color: transparent;
  border-color: #6392A7;
  color: #F9F9F9;
}
.dark-mode .goals-collapses .btn-noclick {
  background-color: #2D373F;
  color: #F9F9F9;
}
.dark-mode .goals-collapses .btn-noclick .btn-arrow {
  border-color: #F9F9F9;
}
.dark-mode .goals-collapses .btn-noclick .collapse-card {
  background-color: #2D373F;
}
.dark-mode .goals-collapses .btn-goal .btn-number {
  border-color: #F9F9F9;
}

.v-desktop-large-inline {
  display: none;
}
.v-desktop-large-inline-inline {
  display: none;
}
@media only screen and (min-width: 1440px) {
  .v-desktop-large-inline {
    display: block !important;
  }
  .v-desktop-large-inline-inline {
    display: inline !important;
  }
}

.v-desktop {
  display: none;
}
.v-desktop-inline {
  display: none;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .v-desktop {
    display: block !important;
  }
  .v-desktop-inline {
    display: inline !important;
  }
}

.v-tablet {
  display: none;
}
.v-tablet-inline {
  display: none;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .v-tablet {
    display: block !important;
  }
  .v-tablet-inline {
    display: inline !important;
  }
}

.v-tablet-portrait {
  display: none;
}
.v-tablet-portrait-inline {
  display: none;
}
@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  .v-tablet-portrait {
    display: block !important;
  }
  .v-tablet-portrait-inline {
    display: inline !important;
  }
}

.v-mobile {
  display: none;
}
.v-mobile-inline {
  display: none;
}
@media only screen and (max-width: 767.98px) and (min-width: 480px) {
  .v-mobile {
    display: block !important;
  }
  .v-mobile-inline {
    display: inline !important;
  }
}

.v-mobile-portrait {
  display: none;
}
.v-mobile-portrait-inline {
  display: none;
}
@media only screen and (max-width: 479.98px) and (min-width: 320px) {
  .v-mobile-portrait {
    display: block !important;
  }
  .v-mobile-portrait-inline {
    display: inline !important;
  }
}

.viewport-state {
  position: fixed;
  top: 15px;
  right: 0;
  transform: translateX(78%);
  background: #172715;
  color: #F9F9F9;
  padding: 7px 7px 7px 25px;
  font-size: 12px;
  opacity: 0.25;
  z-index: 1002;
  box-shadow: 0 0 3px #ff0;
  transition: all linear 0.15s;
}
.viewport-state:hover, .viewport-state.viewport-state--active {
  transform: translateX(0);
  opacity: 1;
}
.viewport-state input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  left: 7px;
  width: auto;
}

.owl-carousel .owl-item {
  -webkit-backface-visibility: visible;
}
.owl-carousel .owl-item img {
  transform-style: flat;
}