@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* ОБЩИЕ СТИЛИ */

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

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.button {
  box-sizing: border-box;

  border-radius: 16px;
  padding: 16px 32px;
  width: 190px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #f50;

  text-align: center;

  border: none;
  color: #fff;
  cursor: pointer;
  font: inherit;

  font-weight: 700;
}

/* ШАПКА САЙТА */

.header {
  padding: 24px 0;
  background-image: url("./images/Menu\ background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header_link {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.burger-menu {
  display: none;
}

/* ПРИВЕТСТВЕННАЯ СЕКЦИЯ */

.main {
}
.welcome {
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100svh;
  max-height: 900px;

  background-image: url("./images/background-map.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.welcome__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.welcome .container {
  position: relative;
  padding: 80px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 170px;
  row-gap: 80px;
  flex-wrap: wrap;
}
.welcome_desc {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  max-width: 490px;
}
.welcome_title {
  font-weight: 700;
  font-size: 64px;
  letter-spacing: 0.25em;
  text-align: center;
}
.welcome_subtitle {
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.22em;
  text-align: center;
}
.welcome_text {
  text-align: center;
}

.welcome_img {
}

/* СЕКЦИЯ ВИДОВ УСЛУГ */

.services {
  padding: 120px 0;
}
.services .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.services_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.services_title {
  font-weight: 800;
  font-size: 32px;
  color: #f50;
}
.services_text {
  width: 400px;
}
.cards_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}
.service_card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 320px;
  height: 500px;
  border-radius: 16px;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #f4f4f4;
  padding: 8px;
}
.service_card_img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}
.service_card_description {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.service_card_title {
  font-weight: 700;
  font-size: 24px;
  color: #f50;
}
.service_card_text {
  width: 250px;
}

/* СЕКЦИЯ ФОРМЫ ОБРАТНОЙ СВЯЗИ */

.feedback {
  min-height: 100svh;
  background-image: url("./images/pngwing.com\ 1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.feedback .container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback_title {
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  color: #fff;
}
.feedback_form {
  box-sizing: border-box;
  width: 400px;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #4999d4;
  border-radius: 32px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.input_fields {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
}
.contact_form_input {
  border-radius: 16px;
  padding: 10px;

  border: none;
  background: white;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
}

.contact_form_textarea {
  border-radius: 16px;
  padding: 10px;
  border: none;
  background: white;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  resize: none;
}

.input_fields::placeholder,
.contact_form_input::placeholder,
.contact_form_textarea::placeholder {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
}

.button {
}
.contact_form_status {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  color: white;
}

/* ФУТЕР */

.footer {
  padding: 24px 0;
  background-image: url("./images/Menu\ background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_copyright {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: white;
}
.footer_socials {
  display: flex;
  gap: 24px;
}
.footer_social_icon {
}
.footer_return {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}

@media (max-width: 1028px) {
  .burger-menu {
    display: block;
    background-color: transparent;
    padding: 0;
    border: none;

    position: absolute;
    top: 20px;
    right: 10px;
  }

  .burger-menu__icon {
    object-fit: contain;
    object-position: center;
  }

  .header--mobile .header_nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .header--mobile .container {
    flex-direction: column;
    gap: 16px;
  }

  .logo {
    align-self: flex-start;
  }

  .header_nav {
    display: none;
  }
}

@media (max-width: 1028px) {
  .footer .container {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 550px) {
  .welcome_title {
    font-size: 48px;
  }
  .welcome_subtitle {
    font-size: 24px;
  }
  .welcome_text {
    font-size: 16px;
  }

  .welcome_img {
    width: 250px;
  }

  .services {
    padding: 80px 0;
  }

  .services_title {
    font-size: 24px;
  }

  .services_text {
    font-size: 16px;
    width: 300px;
  }

  .service_card_text {
    font-size: 16px;
  }

  .feedback_form {
    width: 300px;
  }

  .feedback_title {
    font-size: 24px;
  }
  .input_fields {
    font-size: 16px;
  }
  .contact_form_input {
    font-size: 16px;
  }

  .contact_form_textarea {
    font-size: 16px;
  }

  .input_fields::placeholder,
  .contact_form_input::placeholder,
  .contact_form_textarea::placeholder {
    font-size: 16px;
  }

  .button {
  }
  .contact_form_status {
    font-size: 16px;
  }
}
