html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

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

:focus, :active {
  outline: none;
}

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

nav, footer, header, aside {
  display: block;
}

a {
  display: inline-block;
  color: inherit;
}

input, button, textarea {
  font-family: inherit;
  background-color: transparent;
}

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

button {
  cursor: pointer;
  outline: none;
  border: none;
}

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

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

@font-face {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  src: url("../fonts/Montserrat-Regular.ttf");
}
@font-face {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  src: url("../fonts/Montserrat-Medium.ttf");
}
@font-face {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  src: url("../fonts/Montserrat-SemiBold.ttf");
}
@font-face {
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  src: url("../fonts/Montserrat-Bold.ttf");
}
* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html,
body {
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  display: block;
  width: 100vw;
  height: auto;
  min-height: 100vh;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  color: #434342;
  background: url("/assets/images/bg-desktop2.png") no-repeat center center;
  background-size: cover;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    background: url("/assets/images/bg-mobile2.png") no-repeat center center;
    background-size: cover;
  }
}

main {
  position: relative;
  padding-bottom: 55px;
}

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

a:hover {
  color: inherit;
}

.custom-container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}
@media (max-width: 767px) {
  .custom-container {
    padding: 0 18px;
  }
}

.h1 {
  color: #434342;
  font-size: 75px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .h1 {
    font-size: 32px;
  }
}

.services {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 767px) {
  .services {
    gap: 5px;
    justify-content: center;
  }
}
.services .services__item {
  display: inline-flex;
  padding: 8px 15px;
  justify-content: center;
  align-items: center;
  color: #434342;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  border-radius: 6px;
  background: #fff;
}
@media (max-width: 767px) {
  .services .services__item {
    padding: 7px 10px;
    font-size: 12px;
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 208px;
  width: 100%;
  padding: 16px 32px;
  border-radius: 10px;
  background: #D33223;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 204%;
  text-transform: uppercase;
  text-align: center;
}
.button:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .button {
    max-width: 229px;
    font-size: 12px;
  }
}

.modal-button {
  background: #D33223;
  color: #fff !important;
  border: none;
  cursor: pointer;
}
.modal-button:hover {
  background: #D33223;
  color: #fff !important;
}

.header {
  width: 100%;
  height: auto;
  padding: 63px 0 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .header {
    padding: 24px 0 32px;
  }
}
.header .header__flex {
  display: flex;
  gap: 35px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .header .header__flex {
    gap: 10px;
  }
}
.header .header__logo {
  color: #434342;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .header .header__logo {
    font-size: 12px;
    margin-bottom: auto;
    margin-top: 10px;
  }
}
.header .header__info-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px 35px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .header .header__info-wrap {
    flex-direction: column-reverse;
    gap: 2px;
    align-items: flex-end;
  }
}
.header .header__info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  color: #434342;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 767px) {
  .header .header__info {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .header .header__info_address {
    order: 2;
  }
}
.header .header__info_phone {
  font-weight: 700;
}
@media (max-width: 767px) {
  .header .header__info_phone {
    font-size: 12px;
    order: 3;
  }
}
.header .header__info_time {
  display: block;
  text-align: right;
  font-weight: 400;
  width: 100%;
}
@media (max-width: 767px) {
  .header .header__info_time {
    order: 1;
  }
}
.header .header__info-icon {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .header .header__info-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
  }
}
.main-content {
  padding-bottom: 125px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .main-content {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .main-content .main-content__title {
    text-align: center;
  }
}
.main-content .main-content__services {
  margin-top: 50px;
  max-width: 400px;
}
@media (max-width: 767px) {
  .main-content .main-content__services {
    margin-top: 20px;
    max-width: none;
  }
}
.main-content .main-content__text {
  margin-top: 25px;
  color: #434342;
  font-weight: 500;
  max-width: 400px;
}
@media (max-width: 767px) {
  .main-content .main-content__text br {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-content .main-content__text {
    margin-top: 15px;
    text-align: center;
    max-width: none;
  }
}
.main-content .main-content__button {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .main-content .main-content__button {
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-content .main-content__left {
  max-width: 585px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .main-content .main-content__left {
    max-width: none;
  }
}
.main-content .main-content__right {
  width: 100%;
  max-width: 1032px;
  position: absolute;
  z-index: 1;
  top: 20px;
  right: -350px;
}
@media (max-width: 1199px) {
  .main-content .main-content__right {
    position: static;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .main-content .main-content__right {
    margin-top: 25px;
    max-width: 335px;
  }
}
.main-content .main-content__red-text {
  margin-left: auto;
  margin-right: auto;
  width: auto;
  height: auto;
  position: relative;
  left: -60px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .main-content .main-content__red-text {
    left: 0;
  }
}
.main-content .main-content__circle {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  height: auto;
  position: relative;
  z-index: 0;
}
@media (max-width: 1199px) {
  .main-content .main-content__circle {
    margin-top: -20px;
  }
}
@media (max-width: 767px) {
  .main-content .main-content__circle {
    margin-top: 40px;
    transform: scale(1.5);
  }
}

.map {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 1199px) {
  .map {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.map .map__left {
  width: 100%;
  height: 386px;
  border-radius: 10px;
  border: 5px solid #fff;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .map .map__left {
    height: 295px;
  }
}
.map .map__left iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.map .map__right {
  flex: 0 0 321px;
}
.map .map__info-title {
  color: #434342;
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .map .map__info-title {
    text-align: center;
  }
}
.map .map__info {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  color: #434342;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 767px) {
  .map .map__info {
    justify-content: center;
  }
}
.map .map__info_phone {
  font-weight: 700;
}
.map .map__info-icon {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.map .map__button {
  width: 100%;
  max-width: 288px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .map .map__button {
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
  }
}

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