/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  /*outline: none;*/
}

a:focus,
a:active {
  /* outline: none;*/
}

/* Links */
a,
a:link,
a:visited {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

.footer_content, .main_direction--column, .help-detail--items, .about_organization-items, .header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__button, .button__section, .nav__buttons .nav__button, .main_direction--columns, .hero_content, .bg-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-control input, textarea, .input-control, .location-card-container {
  display: flex;
  flex-direction: column;
}

.hero {
  background: rgb(136, 141, 117);
}

.bg-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/project-plan/project-plan3.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.loading-spinner {
  position: absolute;
  top: 46%;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left: 4px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.header__nav {
  width: 100%;
  height: 130px;
  position: fixed;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: 100%;
  padding: 0 30px;
  transition: all 0.4s ease;
}

.header__nav.dark {
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.4s ease;
  height: 80px;
}
.header__nav.dark .logo img {
  width: 70px;
  height: 70px;
  transition: all 0.3s ease;
}

.logo img {
  width: 110px;
  height: 110px;
  margin-left: 10px;
  transition: all 0.4s ease;
}

.hero {
  position: relative;
}

.hero_content {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 70px;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero_text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__dark {
  position: absolute;
  margin-top: 380px;
  height: 0px;
}

.hero_text {
  text-align: center;
}

.hero_title {
  font-family: "Open Sans";
  font-size: 70px;
  font-weight: 700;
  color: #fefefe;
}

.hero_subtitle {
  font-family: "Inter";
  font-size: 20px;
  color: #fefefe;
  margin-left: 20px;
}

@media (max-width: 920px) {
  .header__nav {
    padding: 0 10px;
  }
  .hero_content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 715px) {
  .hero_title {
    font-size: 50px;
  }
  .hero_subtitle {
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .hero_title {
    font-size: 40px;
  }
  .header__dark {
    margin-top: 350px;
  }
}
.about_organization {
  margin-top: 100px;
}

.break-word {
  display: none;
}

.about_organization-img {
  max-width: 350px;
}

.empty-space {
  height: 1em;
  display: block;
  content: " ";
}

.about_organization-items {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1100px;
  gap: 30px;
}

.about_organization-text-item {
  max-width: 600px;
}
.about_organization-text-item span {
  font-size: 24px;
}

.about_organization-text {
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .about_organization {
    margin-top: 80px;
  }
  .about_organization-img {
    margin: 0 auto;
  }
  .about_organization-items {
    flex-wrap: wrap;
    gap: 50px;
  }
  .about_organization-text {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 650px) {
  .about_organization-text-item {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .about_organization-img {
    max-width: 90%;
  }
  .about_organization-text-item {
    font-size: 18px;
    word-spacing: 0ch;
  }
  .about_organization-text-item span {
    font-size: 20px;
  }
  .break-word {
    display: inline;
  }
  .empty-space {
    height: 0.8em;
    display: block;
    content: " ";
  }
}
.nav-position {
  position: static;
}

.help {
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 50px;
}

.section-help-title {
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  margin: 0px 50px 40px;
}

.currency {
  text-align: center;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: bold;
}

.help-img {
  width: 30px;
}

.copy-icon {
  width: 20px;
  opacity: 0.6;
  cursor: pointer;
}
.copy-icon:hover {
  opacity: 1;
}

.help-detail {
  margin: 0 auto;
  max-width: 717px;
  min-height: 60px;
  border: 1px solid gray;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  -webkit-box-shadow: 5px 5px 5px -4px rgba(0, 0, 0, 0.58);
  -moz-box-shadow: 5px 5px 5px -4px rgba(0, 0, 0, 0.58);
  box-shadow: 5px 5px 5px -4px rgba(0, 0, 0, 0.58);
}

.help-detail--items {
  width: 85%;
}

.help-detail--item {
  text-align: center;
}

.help-detail--items-en {
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

@media (max-width: 700px) {
  .help-img {
    width: 20px;
  }
  .help-key {
    font-size: 15px;
  }
  .help-value {
    font-size: 15px;
  }
  .section-help-title {
    font-size: 30px;
    margin: 20px 50px;
  }
}
@media (max-width: 530px) {
  .help-img {
    width: 20px;
  }
  .help-key {
    font-size: 10px;
  }
  .help-value {
    font-size: 10px;
  }
  .section-help-title {
    font-size: 20px;
    margin: 20px 10px;
  }
}
.main_directions {
  min-height: 750px;
  padding-top: 120px;
}

.main_direction--columns {
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 35px;
  flex-wrap: wrap;
  gap: 35px;
  padding-bottom: 40px;
}

.main_direction--column {
  max-width: 350px;
  height: 450px;
  flex-direction: column;
  padding: 25px 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.85);
}

.main_direction--title {
  height: 60px;
  text-align: center;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 800;
  color: rgb(49, 49, 49);
}

.main_direction--subtitle {
  display: flex;
  align-items: center;
  text-align: center;
  font-family: "Inter";
  font-size: 18px;
  font-weight: 500;
  height: 80px;
}

.main_direction--column {
  background: rgba(119, 134, 81, 0.9960784314);
}
.main_direction--column .main_direction--title {
  color: rgb(248, 248, 248);
}
.main_direction--column .main_direction--subtitle {
  color: rgb(248, 248, 248);
}

.main_direction--img img {
  max-width: 160px;
  max-height: 160px;
}

.buttons__main-direction {
  display: flex;
  max-width: 500px;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
}

@media (max-width: 500px) {
  .section_title {
    font-size: 30px;
    padding: 0;
  }
  .main_directions {
    padding-top: 80px;
  }
  .main_direction--column {
    max-width: 380px;
  }
  .main_direction--columns {
    padding-top: 20px;
  }
}
.project_plans {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 20px;
  padding-top: 70px;
  padding: 15px;
  margin-top: 90px;
}

.container_projects-plans {
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
  max-width: 1100px;
  padding-bottom: 50px;
  padding-top: 40px;
}

.section_title {
  padding-bottom: 30px;
}

.section_subtitle {
  margin: 0 auto;
  padding-bottom: 30px;
  text-align: center;
  font-family: "Inter";
  font-size: 22px;
  font-weight: 400;
  max-width: 900px;
}

.carousel-indicators button.thumbnail {
  width: 15%;
  margin-bottom: 100px;
}

.carousel-control-prev {
  height: 74%;
}

.carousel-control-next {
  height: 74%;
}

.carousel-indicators {
  position: static;
  margin-bottom: 0;
  padding-bottom: 20px;
  width: 85%;
  margin: 0 auto;
}

.carousel-item {
  transition-duration: 0.3s;
}

.carousel-item img {
  margin: 0 auto;
  width: 85%;
  height: 450px;
  object-fit: cover;
  border-radius: 5px;
}

.indicator-size {
  height: 70px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .container_projects-plans {
    margin: 0 10px;
  }
  .indicator-size {
    height: 70px;
    object-fit: cover;
  }
  .carousel-indicators {
    width: 100%;
  }
  .carousel-indicators button.thumbnail {
    width: 70%;
    margin-bottom: 70px;
  }
  .carousel-item img {
    width: 100%;
    height: 320px;
  }
  .indicator-size {
    height: 70px;
    object-fit: cover;
  }
}
@media (max-width: 500px) {
  .indicator-size {
    height: 50px;
    object-fit: cover;
  }
  .carousel-indicators {
    width: 100%;
  }
  .carousel-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }
  .carousel-indicators button.thumbnail {
    width: 60%;
    margin-bottom: 50px;
  }
  .container_projects-plans {
    padding-top: 40px;
  }
  .section_subtitle {
    font-size: 20px;
  }
}
.work_process {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 20px;
  padding-top: 70px;
  padding: 15px;
  margin-top: 70px;
}

.button__section-margin {
  margin-top: 30px;
}

.container_work-process {
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
  max-width: 1100px;
  padding: 0 20px;
  padding-bottom: 50px;
  padding-top: 40px;
}

.carousel-item-work-process img {
  height: 550px;
}

#swiper2 {
  margin-top: 20px;
}

#swiper3 {
  margin-top: 20px;
}

.swiper-wrapper {
  padding-bottom: 50px;
}

.swiper-slide {
  text-align: center;
}

.img-work-process {
  height: 400px;
  width: 500px;
  object-fit: cover;
}

@media (max-width: 500px) {
  .container_work-process {
    padding: 30px 10px;
  }
}
.section_creation-story {
  min-height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 15px;
}

.mySwiper {
  padding-bottom: 40px;
}

.swiper-pagination {
  position: absolute;
  top: 50px;
  max-width: 100%;
}

.container_creation-story {
  padding-top: 30px;
  border-radius: 10px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
}

.section_title {
  text-align: center;
  font-family: "Open Sans";
  font-size: 36px;
  font-weight: 700;
  color: #2e2e2e;
}

.swiper {
  position: relative;
  max-width: 100%;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  max-width: 700px;
}

.swiper_image {
  width: 700px;
  height: 500px;
  object-fit: cover;
}

.swiper_image--description {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  width: 66%;
  padding: 10px;
  color: white;
  font-size: 15px;
  text-align: center;
  animation: appier 2s;
}

.next {
  top: 250px;
  color: rgb(133, 133, 133);
}

.prev {
  top: 250px;
  color: rgb(133, 133, 133);
}

.text_button-more {
  padding: 0 20px;
  text-align: justify;
  font-weight: 600;
}
.text_button-more p {
  margin-bottom: 10px;
}

.btn_container {
  text-align: right;
  margin-bottom: 30px;
  padding: 0 20px;
}

#more {
  display: none;
}

@keyframes appier {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 690px) {
  .swiper_image--description {
    font-size: 12px;
    width: 80%;
  }
  .text_button-more {
    padding: 0 5px;
  }
}
@media (max-width: 500px) {
  .section_title {
    font-size: 25px;
  }
  .container_creation-story {
    padding-top: 30px;
  }
  .mySwiper {
    padding-bottom: 50px;
  }
  .btn_container {
    padding: 0 0px;
  }
}
.location-card {
  padding: 0 15px;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.location-card-container {
  margin: 0 auto;
  background-color: #ffffff;
  align-items: center;
  border-radius: 10px;
  padding: 40px 0;
  -webkit-box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
}

.card-text {
  padding: 0 10px;
}

.image-width {
  width: 90%;
  border-radius: 5px;
  height: 500px;
  object-fit: cover;
  margin-bottom: 50px;
  margin-top: 20px;
}

.card-text {
  font-size: 18px;
}

.section_title-map {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

.map-item {
  border-radius: 10px;
}

@media (max-width: 700px) {
  .image-width {
    width: 95%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
  }
  .map-item {
    width: 95%;
    height: 400px;
    border-radius: 0;
  }
  .card-text {
    padding: 0px 20px;
  }
}
.footer {
  display: flex;
  align-items: center;
  min-height: 300px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/project-plan/project-plan3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer_logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer_logo img {
  width: 200px;
  height: 200px;
}

.footer_title {
  font-family: "Open Sans";
  font-size: 50px;
  font-weight: 700;
  color: white;
}

.footer_subtitle {
  font-family: "Inter";
  font-size: 20px;
  color: #FFFFFF;
  margin-left: 20px;
}

.socials {
  margin: 0 auto;
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 7px;
  margin-top: 40px;
}

@media (max-width: 800px) {
  .footer_logo {
    flex-direction: column;
  }
  .footer_logo img {
    width: 100px;
    height: 100px;
  }
  .footer_title {
    font-size: 30px;
  }
  .footer_subtitle {
    font-size: 15px;
    text-align: center;
    margin: 0;
  }
}
@media (max-width: 500px) {
  .footer_logo {
    gap: 5px;
  }
  .footer_content {
    padding: 15px 0;
    flex-direction: column;
    gap: 15px;
  }
  .footer-buttons {
    margin-top: 15px;
    gap: 9px;
  }
}
.form-title {
  font-size: 26px;
}

.form-title-en {
  font-size: 26px;
}

.form {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.form-label {
  margin-bottom: 0;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 700;
}

.input-control {
  align-items: center;
  margin-bottom: 0;
}

.input-control input, textarea {
  width: 90%;
  height: 40px;
  margin-bottom: 0px;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid black;
  resize: none;
}

.input-control input, textarea:focus {
  outline: none;
}

.input-control.error input {
  border-color: rgb(213, 53, 53);
}

.input-control.error textarea {
  border-color: rgb(213, 53, 53);
}

.input-control .error {
  color: rgb(213, 53, 53);
  font-size: 12px;
  border-color: rgb(213, 53, 53);
}

.popup .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  display: none;
}

.popup .content {
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  width: 450px;
  min-height: 400px;
  border-radius: 10px;
  z-index: 2;
  text-align: center;
  padding: 50px 20px;
  position: fixed;
}

.popup .close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: #222;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}

.popup.active .overlay {
  display: block;
}

.popup.active .content {
  transition: all 300ms ease-in;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 500px) {
  .popup .content {
    width: 90%;
    z-index: 100;
  }
  .input-control input,
  textarea {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
    border-radius: 5px;
    padding: 5px;
    border: 1px solid black;
  }
}
@media (max-height: 450px) {
  .form {
    margin: 0;
  }
  .popup .close-btn {
    top: 25px;
  }
  .popup .content {
    top: 50%;
    overflow-y: scroll;
    height: 95%;
    z-index: 100;
    min-height: 200px;
    padding: 40px 0;
  }
}
.nav__buttons {
  max-width: 380px;
  display: flex;
  justify-content: end;
  gap: 10px;
  flex-wrap: wrap;
  margin-right: 20px;
}
.nav__buttons .nav__button {
  width: 160px;
  height: 45px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1ch;
  color: rgb(253, 253, 253);
  border: 3px solid #f0f06f;
  border-radius: 10px;
  cursor: pointer;
}
@media (hover: hover) {
  .nav__buttons .nav__button:hover {
    border: 4px solid rgb(59, 59, 255);
    border-radius: 10px;
    transition: border 0.1s linear;
  }
}

@media (max-width: 920px) {
  .nav__buttons {
    flex-direction: column;
  }
  .nav__buttons .nav__button {
    width: 120px;
    height: 30px;
    font-size: 13px;
  }
}
.button__section {
  margin: 0 auto;
  width: 225px;
  height: 43px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1ch;
  color: rgb(14, 14, 14);
  border: 3px solid #f0f06f;
  border-radius: 10px;
  cursor: pointer;
  -webkit-box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.75);
}
@media (hover: hover) {
  .button__section:hover {
    background-color: #f0f06f;
    border-radius: 10px;
    transition: background-color 0.2s ease-in;
    color: rgb(14, 14, 14);
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.6);
  }
}

.footer__button {
  width: 190px;
  height: 35px;
  padding: 0 5px;
  text-transform: uppercase;
  color: rgb(253, 253, 253);
  border: 3px solid #f0f06f;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}
@media (hover: hover) {
  .footer__button:hover {
    border: 4px solid rgb(59, 59, 255);
    border-radius: 10px;
    transition: border 0.1s linear;
    color: rgb(253, 253, 253);
  }
}

@media (max-width: 500px) {
  .footer__button {
    width: 170px;
    height: 40px;
    font-size: 12px;
  }
}
body {
  font-family: "Inter", sans-serif;
  font-family: "Open Sans", sans-serif;
  background: linear-gradient(90deg, rgb(248, 255, 224) 32%, rgb(247, 252, 234) 100%);
}

.popup-no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
}

.hidden {
  opacity: 0;
  transition: all 1.2s;
}

.show {
  opacity: 1;
}