.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 8px;
  padding-block: 16px;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.header__logo {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header__logo-image {
  width: 40px;
  height: 40px;
}
@media only screen and (min-width: 1024px) {
  .header__logo-image {
    width: 56px;
    height: 56px;
  }
}
.header__logo-text {
  font-size: 12px;
  font-weight: bold;
  line-height: 120%;
  color: #0d314b;
}
@media only screen and (min-width: 1024px) {
  .header__logo-text {
    font-size: 18px;
  }
}
.header__logo-text-highlight {
  display: block;
}
.header__nav {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  gap: 16px;
  list-style: none;
}
.header__nav-item {
  font-size: 20px;
  font-weight: bold;
  line-height: 120%;
  color: #2a2f33;
}
.header__nav-item a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__contact-icon {
  width: 24px;
  height: 24px;
}
@media only screen and (min-width: 1024px) {
  .header__contact-icon {
    width: 40px;
    height: 40px;
  }
}
.header__contact-info {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
}
.header__contact-info-label {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  color: #2a2f33;
}
@media only screen and (min-width: 1024px) {
  .header__contact-info-label {
    font-size: 14px;
  }
}
.header__contact-info-phone {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: #1a1e21;
}
@media only screen and (min-width: 1024px) {
  .header__contact-info-phone {
    font-size: 20px;
  }
}

.hero-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .hero-contact-wrapper {
    flex-direction: row-reverse;
  }
}
.hero-contact-wrapper .hero {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url("../images/hero-image.jpg") no-repeat center center/cover;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .hero-contact-wrapper .hero {
    width: 60%;
    height: 478px;
  }
}
.hero-contact-wrapper .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3803921569);
  z-index: 1;
}
.hero-contact-wrapper .hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}
.hero-contact-wrapper .hero__content .hero__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1024px) {
  .hero-contact-wrapper .hero__content .hero__title {
    font-size: 61px;
  }
}
.hero-contact-wrapper .hero__content .hero__subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1024px) {
  .hero-contact-wrapper .hero__content .hero__subtitle {
    font-size: 40px;
  }
}
.hero-contact-wrapper .contact {
  background: #0043dc;
  padding: 16px 16px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 1024px) {
  .hero-contact-wrapper .contact {
    width: 40%;
    gap: 32px;
    padding: 32px 32px 40px;
  }
}
.hero-contact-wrapper .contact__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
@media only screen and (min-width: 1024px) {
  .hero-contact-wrapper .contact__title {
    font-size: 32px;
  }
}
.hero-contact-wrapper .contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-contact-wrapper .contact__form input,
.hero-contact-wrapper .contact__form textarea {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  line-height: 120%;
  border: none;
  outline: none;
}
@media only screen and (min-width: 1024px) {
  .hero-contact-wrapper .contact__form input,
  .hero-contact-wrapper .contact__form textarea {
    padding: 20px 16px;
  }
}
.hero-contact-wrapper .contact__form button {
  font-weight: 700;
  background-color: #ffc300;
  color: #1a1e21;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 138px;
  height: 40px;
  margin-right: auto;
  margin-top: 4px;
}
@media only screen and (min-width: 1024px) {
  .hero-contact-wrapper .contact__form button {
    height: 56px;
  }
}

.services {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.services__title {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .services__title {
    font-size: 40px;
  }
}
.services__cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.services__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (min-width: 1024px) {
  .services__card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .services__card:nth-child(odd) {
    flex-direction: row;
  }
}
.services__card-image-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .services__card-image-wrapper {
    width: 60%;
    height: 500px;
  }
}
.services__card-image-wrapper img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1024px) {
  .services__card-image-wrapper img {
    object-fit: cover;
  }
}
.services__card-content {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
}
@media only screen and (min-width: 1024px) {
  .services__card-content {
    width: 40%;
    padding: 16px;
  }
}
.services__card-content .services__card-title {
  font-weight: 700;
  font-size: 20px;
}
@media only screen and (min-width: 1024px) {
  .services__card-content .services__card-title {
    font-size: 28px;
  }
}
.services__card-content .services__card-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: justify;
}
@media only screen and (min-width: 1024px) {
  .services__card-content .services__card-text {
    font-size: 20px;
  }
}

.instagram {
  background: linear-gradient(96deg, #9eccea 0.59%, #c4e1f4 99.33%);
  display: flex;
  flex-direction: column;
  padding: 32px 16px;
  gap: 32px;
  border-radius: 16px;
}
@media only screen and (min-width: 1024px) {
  .instagram {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-inline: 64px;
  }
}
.instagram__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.instagram__header .instagram__subtitle {
  font-weight: 700;
  font-size: 16px;
}
@media only screen and (min-width: 1024px) {
  .instagram__header .instagram__subtitle {
    font-size: 32px;
    font-weight: 500;
  }
}
.instagram__header .instagram__title {
  font-weight: 700;
  font-size: 24px;
}
@media only screen and (min-width: 1024px) {
  .instagram__header .instagram__title {
    font-size: 48px;
  }
}
.instagram__account {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.instagram__account .instagram__qr {
  width: 200px;
  height: 200px;
}
.instagram__account .instagram__handle {
  font-size: 20px;
  font-weight: 500;
}

.why-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 16px;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .why-us {
    flex-direction: row;
    height: 100%;
  }
}
.why-us__image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-us__image-section .why-us__image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.why-us__content {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 12px;
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 1024px) {
  .why-us__content {
    height: -webkit-fill-available;
  }
}
.why-us__content .why-us__title {
  font-size: 28px;
  font-weight: 700;
}
@media only screen and (min-width: 1024px) {
  .why-us__content .why-us__title {
    font-size: 48px;
  }
}
.why-us__content .why-us__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 48px;
  background: #0d314b;
  color: #ffffff;
  padding: 16px;
  padding-top: 48px;
  border-radius: 16px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .footer {
    padding: 48px 48px 16px;
  }
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  gap: 48px;
}
@media only screen and (min-width: 1024px) {
  .footer__container {
    flex-direction: row;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.footer__brand-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__brand-name {
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (min-width: 1024px) {
  .footer__brand-name {
    font-size: 32px;
  }
}
.footer__brand-slogan {
  font-size: 10px;
  font-weight: 700;
}
@media only screen and (min-width: 1024px) {
  .footer__brand-slogan {
    font-size: 16px;
  }
}
.footer__logo {
  width: 57px;
  height: 57px;
}
@media only screen and (min-width: 1024px) {
  .footer__logo {
    width: 72px;
    height: 72px;
  }
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__contact-title {
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (min-width: 1024px) {
  .footer__contact-title {
    font-size: 20px;
  }
}
.footer__contact-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__contact-icon {
  width: 24px;
  height: 24px;
}
.footer__contact-text {
  font-size: 16px;
}
@media only screen and (min-width: 1024px) {
  .footer__contact-text {
    font-size: 20px;
  }
}
.footer__copyright {
  text-align: center;
}

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

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 8px;
  background: #f6f6f6;
  gap: 16px;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media only screen and (min-width: 1024px) {
  body {
    margin-inline: 64px;
  }
}

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