.footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.footer__column {
  width: 30%;
}
.footer__title {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.footer__text {
  font-size: 1em;
  margin-bottom: 10px;
}
.footer__list {
  list-style: none;
  padding: 0;
}
.footer__item {
  margin-bottom: 5px;
}
.footer__link {
  color: #fff;
  text-decoration: none;
}
.footer__link a {
  color: #fff;
}
.footer:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer .section__column {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .footer .section__column {
    flex: 1 1 100%;
  }
}

.header {
  background-color: white;
  color: #3498db;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__column--logo {
  justify-content: flex-start;
}
.header__column--nav {
  justify-content: center;
}
.header__column--button {
  justify-content: flex-end;
}
.header__logo-image {
  max-width: 100px;
}
.header__nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}
.header__nav-item-link {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}
.header__nav-item-link:hover {
  color: #2ecc71;
}
.header__button {
  background-color: #2ecc71;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}
.header__button:hover {
  background-color: black #2ecc71, 10%;
}

.banner__image {
  width: 100%;
  object-fit: cover;
}
.banner__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bannerinfo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #f0f0f0;
  box-sizing: border-box;
  gap: 20px;
  flex: 1;
}

.bannerinfo h2 {
  font-style: italic;
  font-size: xx-large;
  text-align: center;
  color: red;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bannerinfo p {
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 20px 0;
  padding: 10px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section__column {
  border: 1px solid blue;
  padding: 10px;
  flex: 1 1 calc(25% - 20px);
  margin: 10px;
  text-align: center;
}
.section__column:first-child {
  margin-left: 0;
}
.section__column:last-child {
  margin-right: 0;
}
.section__image {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.section__title {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.section__text {
  font-size: 1em;
}

@media (max-width: 768px) {
  .section__column {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .section__column {
    flex: 1 1 100%;
  }
}
.contact {
  border: 2px solid #000;
  padding: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.contact__form {
  display: flex;
  flex-direction: column;
}
.contact__group {
  margin-bottom: 1.5rem;
}
.contact__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.contact__input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 1rem;
}
.contact__input--textarea {
  height: 150px;
  resize: vertical;
}
.contact__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  background-color: #007bff;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact__button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .section__column {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .section__column {
    flex: 1 1 100%;
  }
}

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