@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html, body {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

body {
  background: #EEEFF2;
  font-size: 14px;
}

a {
  color: #000;
  text-decoration: none;
}

@media (max-width: 1024px) {
  img {
    max-width: 100%;
  }
}

.container {
  width: 1285px;
  max-width: 100%;
  margin: 0 auto;
}
.container_mini {
  width: 1170px;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 10px;
    box-sizing: border-box;
  }
}

.header {
  margin: 23px 0;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .header__wrapper {
    flex-direction: column;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 9px;
}
@media (max-width: 1024px) {
  .header__right {
    justify-content: center;
    margin-top: 18px;
  }
}
.header__right img {
  width: 39px;
}
.header__actions {
  display: flex;
  flex-direction: column;
  margin-left: 18px;
}
@media (max-width: 1024px) {
  .header__actions {
    justify-content: center;
    align-items: center;
  }
}
.header__phone {
  font-size: 19px;
  line-height: 25px;
  font-weight: 500;
  margin-bottom: 6px;
}
.header__btn {
  color: #FF7000;
  font-size: 11px;
  line-height: 17px;
  font-weight: 600;
  padding: 7px 18px;
  border: 1px solid #FF7000;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .header__btn {
    display: none;
  }
}

.logo {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .logo {
    flex-direction: column;
  }
}
.logo__wrapper {
  display: flex;
  flex-direction: column;
}
.logo__title {
  color: #FF7000;
  font-size: 30px;
  font-weight: 300;
}
.logo__subtitle {
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 300;
}
.logo__caption {
  margin-left: 25px;
  padding-left: 25px;
  border-left: 1px solid #FF7000;
  font-size: 14px;
  color: #575757;
  font-style: italic;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .logo__caption {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
    text-align: center;
    margin-top: 5px;
  }
}

.hero {
  padding: 110px 0 70px;
  overflow: hidden;
  margin-top: -40px;
}
@media (max-width: 1024px) {
  .hero {
    margin-top: 0;
    padding-top: 10px;
  }
}
.hero__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 37px;
}
.hero-item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  line-height: 19px;
  text-align: left;
}
.hero-item__img {
  width: 41px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .hero-item__img {
    width: 48px;
  }
}
.hero-item__img img {
  width: 100%;
}
.hero__img {
  position: relative;
}
.hero__img img {
  position: absolute;
  left: -40px;
  top: -140px;
  z-index: -1;
}
@media (max-width: 1024px) {
  .hero__img img {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
  }
}
.hero__content {
  width: 55%;
}
@media (max-width: 1024px) {
  .hero__content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.hero__wrapper {
  display: flex;
}
@media (max-width: 1024px) {
  .hero__wrapper {
    flex-direction: column-reverse;
  }
}
.hero__title {
  font-size: 38px;
  color: #000;
  line-height: 49px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 24px;
    line-height: 31px;
  }
}
.hero__subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .hero__subtitle {
    font-size: 17px;
  }
}

.btn {
  font-size: 14px;
  font-weight: 600;
  padding: 17px 110px;
  width: fit-content;
  max-width: 100%;
  color: #fff;
  text-transform: uppercase;
  background: #FF7000;
  display: flex;
  border-radius: 10px;
  border: 1px solid #FF7000;
}
.btn.btn-inverse {
  background: transparent;
  border: 1px solid #FF7000;
  color: #FF7000;
}

.wblock {
  background: #fff;
  border-radius: 15px;
  padding: 27px;
  margin-bottom: 27px;
}

.sticky {
  padding-top: 87px;
  padding-bottom: 46px;
}
.sticky__img {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.sticky__img img {
  position: sticky;
  top: 0;
  right: 0;
}
@media (max-width: 1024px) {
  .sticky__img img {
    position: relative;
  }
}
.sticky__wrapper {
  display: grid;
  grid-template-columns: 1fr 457px;
  gap: 34px;
}
@media (max-width: 1024px) {
  .sticky__wrapper {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .sticky .wblock {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.sticky .wblock img {
  width: 49px;
  display: block;
  margin-bottom: 15px;
}
.sticky .wblock strong {
  margin-bottom: 7px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  display: block;
}
.sticky .wblock__text {
  font-size: 16px;
  font-weight: 300;
}

.articles {
  padding: 50px 0;
}
.articles__title {
  font-size: 35px;
  line-height: 46px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}
.articles__wrapper {
  background: #fff;
  border-radius: 15px;
  padding: 27px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: flex-start;
  gap: 50px;
  margin-top: 130px;
}
@media (max-width: 1024px) {
  .articles__wrapper {
    display: flex;
    flex-direction: column;
    gap: 170px;
  }
}
.articles .article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -130px;
}
.article img {
  width: 169px;
}
.articles .article strong {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.articles .article strong:after {
  display: block;
  width: 38px;
  height: 3px;
  background: #FF7000;
  content: "";
  border-radius: 55px;
}
.articles .article__text {
  font-weight: 300;
  font-size: 15px;
  line-height: 21px;
}
.articles .article img {
  border-radius: 50%;
  border-bottom: 5px solid #FF7000;
  margin-bottom: 13px;
  display: block;
}

.offer {
  padding-bottom: 50px;
}
.offer__wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .offer__wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.offer__img {
  margin-right: 34px;
  position: relative;
}
@media (max-width: 1024px) {
  .offer__img {
    margin-right: 0;
    margin-bottom: 22px;
  }
}
.offer__img img {
  margin-bottom: 15px;
  max-width: 105px;
}
.offer__img:before {
  width: 107px;
  height: 107px;
  background: #FF7000;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
}
.offer__title {
  font-size: 25px;
  line-height: 34px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .offer__title {
    font-size: 20px;
  }
}
.offer__actions {
  margin-left: 140px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media (max-width: 1024px) {
  .offer__actions {
    margin-left: 0;
    margin-top: 22px;
  }
}
.offer__actions .btn {
  padding: 18px;
  width: 360px;
  justify-content: center;
}

.places .wblock {
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .places .wblock {
    padding-bottom: 25px;
  }
}
.places__wrapper {
  display: grid;
  grid-template-columns: 1fr 492px;
  gap: 26px;
}
@media (max-width: 1024px) {
  .places__wrapper {
    display: block;
  }
}
.places__title {
  font-size: 30px;
  line-height: 39px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .places__title {
    text-align: center;
    font-size: 25px;
  }
}
.places__img {
  padding-top: 20px;
}
.places__img img {
  margin-bottom: 15px;
}
.places__list {
  margin: 0;
  padding: 0;
  column-count: 3;
  column-gap: 35px;
  row-gap: 25px;
}
@media (max-width: 1024px) {
  .places__list {
    column-count: 1;
    row-gap: 8px;
    column-gap: 8px;
  }
}
.places__list li {
  list-style-type: none;
  display: flex;
  gap: 7px;
  margin-bottom: 33px;
  align-items: center;
}
@media (max-width: 1024px) {
  .places__list li {
    margin-bottom: 8px;
  }
}
.places__list li:before {
  content: "";
  box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.1);
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  border: 7px solid #FF7000;
  display: block;
  flex-shrink: 0;
}
.places__list-another li:before {
  box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.1);
  border: 7px solid #fff;
  background: #FF7000;
}
.places .btn {
  padding-left: 0;
  padding-right: 0;
  width: 80%;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
}

.facts {
  padding: 50px 0;
}
.facts__title {
  font-size: 35px;
  line-height: 46px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 45px;
}
@media (max-width: 1024px) {
  .facts__title {
    font-size: 25px;
  }
}
.facts__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 100px;
  row-gap: 50px;
}
@media (max-width: 1024px) {
  .facts__wrapper {
    display: flex;
    flex-direction: column;
  }
}
.facts__wrapper .fact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.facts__wrapper .fact strong {
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
.facts__wrapper .fact img {
  margin-bottom: 40px;
  display: block;
  width: 70px;
}
.facts__wrapper .fact__text {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

.footer {
  padding: 35px 0;
  background: #fff;
}
.footer .copy {
  font-size: 16px;
}
@media (max-width: 1024px) {
  .footer .copy {
    text-align: center;
  }
}
.footer .copy2 {
  font-size: 14px;
}
@media (max-width: 1024px) {
  .footer .copy2 {
    text-align: center;
  }
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer__wrapper {
    flex-direction: column;
  }
}
.footer__contacts {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1024px) {
  .footer__right {
    flex-direction: column;
  }
}
.footer__right img {
  width: 39px;
}
.footer__right .email {
  margin-right: 30px;
  display: flex;
  gap: 7px;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer__right .email {
    margin-right: 0;
    font-size: 16px;
  }
}
.footer__right .email:before {
  content: "@";
  color: #ff7000;
  font-size: 33px;
  line-height: 51px;
  display: inline-block;
}
@media (max-width: 1024px) {
  .footer__phone {
    font-size: 20px;
  }
}

.offer2__wrapper {
  display: flex;
  align-items: center;
  gap: 27px;
  justify-content: center;
  margin: 48px 0;
}
@media (max-width: 1024px) {
  .offer2__wrapper {
    flex-direction: column;
    text-align: center;
    margin: 20px 0;
  }
}
.offer2__title {
  font-size: 23px;
  line-height: 31px;
  text-transform: uppercase;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .offer2__title {
    font-size: 15px;
    line-height: 20px;
  }
}

.prefooter__list {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.prefooter__list li {
  list-style-type: none;
  display: flex;
  gap: 11px;
  align-items: center;
  font-weight: 300;
}
.prefooter__list li:before {
  content: "";
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  border: 7px solid #FF7000;
  display: block;
  flex-shrink: 0;
  box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.1);
}
.prefooter__img {
  position: absolute;
  left: 26px;
}
@media (max-width: 1024px) {
  .prefooter__img {
    top: -160px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.prefooter__img:before {
  width: 139px;
  height: 139px;
  background: #FF7000;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  z-index: 1;
  box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.1);
}
.prefooter__img img {
  margin-left: 0;
  position: relative;
  top: -20px;
  z-index: 2;
  width: 136px;
}
.prefooter__wrapper {
  display: flex;
  align-items: center;
  border: 2px solid #DEDEDE;
  border-radius: 15px;
  padding: 25px;
  position: relative;
  padding-left: 192px;
}
@media (max-width: 1024px) {
  .prefooter__wrapper {
    flex-direction: column;
    padding: 30px;
    padding-top: 50px;
  }
}
.prefooter__title {
  font-size: 25px;
  line-height: 34px;
  text-transform: uppercase;
  font-weight: 300;
  margin-right: 75px;
}
@media (max-width: 1024px) {
  .prefooter__title {
    margin-right: 0;
    margin-bottom: 14px;
    text-align: center;
  }
}
.focus {
  margin-top: 110px;
}
@media (max-width: 1024px) {
  .focus {
    margin-top: 250px;
    margin-bottom: 200px;
  }
}
.focus .mobile {
  display: none;
}
@media (max-width: 1024px) {
  .focus .mobile {
    display: flex;
    margin-top: 20px;
  }
  .focus .mobile .focus__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .focus .mobile img {
    width: 68px !important;
    position: static !important;
  }
}
.focus__wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .focus__wrapper {
    flex-direction: column;
  }
  .focus__wrapper.first {
    display: none;
  }
}
.focus__title {
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  line-height: 39px;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .focus__title {
    font-size: 25px;
  }
}
.focus__title img {
  width: 68px;
}
.focus__left {
  width: 50%;
  flex-shrink: 0;
}
.places .mobile {
  display: none;
}
.focus__text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
}
.focus .wblock {
  position: relative;
}
.focus .wblock img {
  position: absolute;
  width: 673px;
  left: -47px;
  top: -230px;
}
@media (max-width: 1024px) {
  .focus .wblock img {
    width: 100%;
    left: 0;
    top: -280px;
  }
  .places .mobile {
    display: block;
    margin: 20px 0 35px;
  }
  .places .full {
    display: none;
  }
  .focus__text {
    text-align: center;
  }
}
.focus__caption {
  margin-top: 60px;
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: center;
}

.white-popup {
  padding: 40px 45px;
  background: #fff;
  width: 560px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.wpcf7-tel {
  background: url('../img/flag.png') left 10px center no-repeat;
  background-size: 25px;
  padding-left: 40px;
}

input {
  color: #000000;
  border: 1px solid #c9c9c9;
  border-radius: 10px;
  font-size: 16px;
  height: 60px;
  line-height: 1.33;
  margin: 0;
  outline: none;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 25px;
}

textarea {
  color: #000000;
  border: 1px solid #c9c9c9;
  border-radius: 10px;
  font-size: 16px;
  height: 60px;
  line-height: 1.33;
  margin: 0;
  outline: none;
  padding: 15px 20px;
  width: 100%;
  margin-bottom: 25px;
  box-sizing: border-box;
}

.white-popup .btn {
  width: 100%;
  justify-content: center;
}

.white-popup__title {
  font-size: 36px;
  line-height: 1.23;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.mfp-close-btn-in .mfp-close {
  color: #fff !important;
}

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