.main-header {
  padding: 1rem;
  background-color: #177079;
  display: flex;
  justify-content: space-between;
  border-bottom: 6px solid #19a9b1;
}
.main-header .main-nav .main-nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-header .main-nav .main-nav-list .main-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 3rem;
  color: white;
}
.main-header .main-nav .main-nav-list .main-nav-item--logo {
  width: 100%;
  height: 100%;
}
.main-header .main-nav .main-nav-list .main-nav-item--link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .main-header {
    position: fixed;
    top: auto;
    width: 100%;
    bottom: 0;
    z-index: 100;
  }
  .main-header .main-nav {
    width: 100%;
  }
  .main-header .main-nav .main-nav-list {
    gap: 1rem;
    justify-content: space-between;
    width: 100%;
  }
  .main-header .main-nav .main-nav-list .main-nav-item {
    width: auto;
    height: 2.5rem;
    width: 2.5rem;
  }
  .main-header .main-nav .main-nav-list .main-nav-item p {
    display: none;
  }
  .main-header .main-nav .main-nav-list .main-nav-item-logo {
    display: none;
  }
}
.welcome-section {
  background-color: #073c45;
  padding: 4rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  grid-template-areas: "title image" "text image" "button image";
}
.welcome-section h1 {
  grid-area: title;
}
.welcome-section--text {
  grid-area: text;
  color: #cffdf8;
}
.welcome-section .primary-button {
  grid-area: button;
  width: fit-content;
}
.welcome-section__image {
  grid-area: image;
  width: 100%;
  height: auto;
  border-radius: 40px;
  border: 10px solid #cffdf8;
  object-fit: cover;
}

@media (max-width: 768px) {
  .welcome-section {
    padding: 1rem;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 2rem;
    grid-template-areas: "title" "image" "text" "button";
  }
  .welcome-section__image {
    width: 100%;
  }
  .welcome-section .button-welcome {
    margin: 0 auto;
  }
}
.first-mission-section {
  position: relative;
  background-color: #e6e6e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem;
  border-radius: 40px 40px 0 0;
}
.first-mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #073c45;
  z-index: -1;
}
.first-mission-section p {
  color: #147076;
}

@media (max-width: 768px) {
  .first-mission-section {
    padding: 1rem;
    text-align: center;
  }
}
.store-content-section {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  position: relative;
  color: white;
  background-color: #43bdcd;
  border-radius: 40px 40px 0 0;
}
.store-content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  z-index: -1;
}
.store-content-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 80%;
  height: 40rem;
  background-size: contain;
  background: url("../assets/icons/send.svg");
  opacity: 0.5;
  background-size: cover;
  z-index: 0;
}
@media (max-width: 768px) {
  .store-content-section::after {
    left: -10%;
    width: 100%;
  }
}
.store-content-section__title {
  color: white;
  z-index: 10;
}
.store-content-section__list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 10;
}
.store-content-section__list--item {
  width: 30%;
  height: 100%;
}
.store-content-section__list--item__title, .store-content-section__list--item__text {
  color: white;
}
.store-content-section__list--item__img {
  width: 100%;
  background-color: white;
  border-radius: 40px;
}

@media (max-width: 768px) {
  .store-content-section {
    padding: 2rem 0;
    gap: 2rem;
  }
  .store-content-section__title {
    padding: 0 2rem;
    text-align: center;
  }
  .store-content-section__list {
    flex-direction: column;
    gap: 2rem;
  }
  .store-content-section__list--item {
    width: 100%;
  }
  .store-content-section__list--item-pair {
    padding-left: 2rem;
  }
  .store-content-section__list--item-pair__img {
    border-radius: 40px 0 0 40px;
  }
  .store-content-section__list--item-impair {
    padding-right: 2rem;
  }
  .store-content-section__list--item-impair__img {
    border-radius: 0 40px 40px 0;
  }
}
.card-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  border-radius: 40px 40px 0 0;
  background-color: white;
  gap: 2rem;
}
.card-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #43bdcd;
  z-index: -1;
}
.card-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 80%;
  height: 40rem;
  background-size: contain;
  background: url("../assets/icons/map.svg");
  opacity: 0.5;
  background-size: cover;
  z-index: 0;
}
@media (max-width: 768px) {
  .card-section::after {
    left: -10%;
    width: 100%;
  }
}
.card-section p {
  color: #147076;
  max-width: 600px;
  text-align: center;
}
.card-section .card-section__info-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: #147076;
  z-index: 10;
}
.card-section .card-section__cards-content {
  z-index: 10;
}
.card-section .card-section__cards-content--list {
  display: flex;
  justify-content: space-between;
}
.card-section .card-section__cards-content--list--card {
  border: 0.5rem solid white;
  padding: 1rem;
  border-radius: 1.5rem 1.5rem 1rem 1.5rem;
  background-color: #177079;
  position: relative;
  display: flex;
  gap: 1rem;
  width: 32%;
  height: 15rem;
}
.card-section .card-section__cards-content--list--card__img {
  height: 100%;
  width: 30%;
  border-radius: 1rem;
}
.card-section .card-section__cards-content--list--card__title {
  align-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 38.4px;
  color: white;
  width: 50%;
}
.card-section .card-section__cards-content--list--card__small {
  color: #147076;
  border-radius: 40px;
  padding: 0.5rem;
  background-color: white;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
.card-section .card-section__cards-content--list--card__button {
  padding: 0.5rem;
  width: 5rem;
  height: 2.5rem;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 0.8rem;
  z-index: 10;
  outline: 0.5rem solid white;
}
.card-section .card-section__cards-content--list--card__button::after, .card-section .card-section__cards-content--list--card__button::before {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  position: absolute;
}
.card-section .card-section__cards-content--list--card__button::after {
  background-color: transparent;
  top: -1.625rem;
  right: 0px;
  border-bottom-right-radius: 0.8rem;
  box-shadow: 0.375rem 0.375rem white;
}
.card-section .card-section__cards-content--list--card__button::before {
  background-color: transparent;
  bottom: 0;
  right: 5.5rem;
  border-bottom-right-radius: 0.8rem;
  box-shadow: 0.375rem 0.375rem white;
}

@media (max-width: 768px) {
  .card-section {
    padding: 1rem;
  }
  .card-section .card-section__cards-content--list {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  .card-section .card-section__cards-content--list--card {
    width: 100%;
  }
}
.project-section {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  position: relative;
  background-color: #073c45;
  border-radius: 40px 40px 0 0;
}
.project-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #43bdcd;
  z-index: -1;
}
.project-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 80%;
  height: 40rem;
  background-size: contain;
  background: url("../assets/icons/bell.svg");
  opacity: 0.5;
  background-size: cover;
  z-index: 0;
}
@media (max-width: 768px) {
  .project-section::after {
    left: -10%;
    width: 100%;
  }
}
.project-section__info-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: #cffdf8;
  z-index: 10;
}
.project-section__info-content__title {
  color: #cffdf8;
}
.project-section__info-content__text {
  color: #cffdf8;
  text-align: center;
}
.project-section__list-content {
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
.project-section__list-content-item {
  width: 30%;
  background-color: #177079;
  border: 1px solid #ffbd1d;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
  border-radius: 40px;
  align-items: center;
}
.project-section__list-content-item__title {
  color: #cffdf8;
}
.project-section__list-content-item__text {
  color: #cffdf8;
  text-align: center;
}
.project-section__list-content-item__upload-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.project-section__list-content-item__upload-form__input {
  color: #cffdf8;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  gap: 0.5rem;
  text-align: start;
  width: 100%;
  padding: 10px;
  background-color: #19a9b1;
  border: 2px dashed white;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.5s;
  transition: transform 0.5s;
}
.project-section__list-content-item__upload-form__input:hover, .project-section__list-content-item__upload-form__input:active {
  background-color: #ffbd1d;
  transform: scale(0.95);
}
.project-section__list-content-item__upload-form__input input {
  width: 100%;
  height: 1.5rem;
  display: none;
}
.project-section__list-content-item__upload-form__input .project-section__list-content-item__upload-form__file-name {
  text-align: end;
  color: #cffdf8;
  font-style: italic;
}

@media (max-width: 768px) {
  .project-section {
    padding: 1rem;
  }
  .project-section__info-content {
    text-align: center;
  }
  .project-section__list-content {
    flex-direction: column;
    gap: 2rem;
  }
  .project-section__list-content-item {
    width: 100%;
  }
}
.schedule-section {
  border-radius: 40px 40px 0 0;
  background-color: #43bdcd;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
}
.schedule-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 80%;
  height: 40rem;
  background-size: contain;
  background: url("../assets/icons/calendar.svg");
  opacity: 0.5;
  background-size: cover;
  z-index: 0;
}
@media (max-width: 768px) {
  .schedule-section::after {
    left: -10%;
    width: 100%;
  }
}
.schedule-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -1;
}
.schedule-section__title {
  color: #cffdf8;
}
.schedule-section__text {
  text-align: center;
  color: #cffdf8;
}
.schedule-section__image {
  grid-area: image;
  width: 60%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
}

.footer {
  background-color: #177079;
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  border-top: 1px solid #e6e6e6;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: #073c45;
}

h1,
h2,
h3,
h4,
p {
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

a {
  text-decoration: none;
  color: white;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 57.6px;
  color: #cffdf8;
}

h2 {
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  color: #147076;
}

h3 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 38.4px;
  color: #147076;
}

h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 28.8px;
  color: #147076;
}

p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 28px;
  color: white;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.primary-button {
  background-color: #d0fefb;
}
.primary-button:hover {
  background-color: #ffbd1d;
}

.button {
  border-radius: 40px;
  height: 2.5rem;
  max-width: 15rem;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.secondary-button {
  background-color: #ffbd1d;
}
.secondary-button:hover {
  background-color: #d0fefb;
}

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