/* sourceMappingURL=style.css.map */

@font-face {
  font-family: "Pacifico";
  src: url("../../fonts/Pacifico-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat-Regular.ttf") format("truetype"), url("../../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}


*, body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
  background: #d2d2d2;
}

main{
  min-height: 70vh;
  padding-top: 60px;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}

ul {
  padding-left: 0;
}

li {
  padding-left: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1240px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

.slider__btn {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  background-color: #0e1e3d;
  border-radius: 50%;
  cursor: pointer;
}
.slider__btn:hover {
  opacity: 0.7;
}
.slider__btn--prev {
  left: -25px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 2;
}
.slider__btn--prev::before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  top: 35%;
  left: 60%;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
  transform: rotate(-45deg) translate(-50%, -50%);
}
.slider__btn--next {
  right: -25px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 2;
}
.slider__btn--next::before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 55%;
  left: 35%;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
}

.slider__btn.swiper-button-disabled {
  background-color: #9e9e9e;
  pointer-events: none;
}


.form__input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 12px;
  background-color: #fff;
  border: none;
  border-radius: 10px;
  height: 48px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  outline: none;
}
.form__input:focus::-webkit-input-placeholder {
  opacity: 0;
  display: none;
}
.form__input:focus::-moz-placeholder {
  opacity: 0;
  display: none;
}
.form__input:focus:-ms-input-placeholder {
  opacity: 0;
  display: none;
}
.form__input:focus::-ms-input-placeholder {
  opacity: 0;
  display: none;
}
.form__input:focus::placeholder {
  opacity: 0;
  display: none;
}

.form__textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  max-height: 164px;
  font-family: "Montserrat", sans-serif;
  outline: none;
}
.form__textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  display: none;
}
.form__textarea:focus::-moz-placeholder {
  opacity: 0;
  display: none;
}
.form__textarea:focus:-ms-input-placeholder {
  opacity: 0;
  display: none;
}
.form__textarea:focus::-ms-input-placeholder {
  opacity: 0;
  display: none;
}
.form__textarea:focus::placeholder {
  opacity: 0;
  display: none;
}

.form__file{margin:5px 0 0 0;}

.fileNote {
  color:#fff;
  font-size:13px;
}

.form__file-input {
  color:#fff;
  cursor: pointer;
  display: inline;
}

.form__controls {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px; */

}
.form__controls .btn {
  display: block;
}

.feedback {
  padding: 112px 0 100px;
  position: relative;
  background-color: #000;
}
.feedback .container {
  max-width: 1343px;
}

.feedback__title {
  margin-bottom: 42px;
  text-align: center;
  margin-bottom: 48px;
  font-family: "Pacifico";
  font-size: 48px;
  line-height: 1.3;
  text-align: center;
  color: #fff;
}

.feedback__desc {
  max-width: 838px;
  text-align: left;
  margin: 0 auto 70px;
  line-height: 1.4;
  color: #afafaf;
}

.feedback__img {
  position: absolute;
  left: 0;
  bottom: 30px;
  pointer-events: none;
}

.feedback__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 28px;
}

.feedback__form-left {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 31px 28px;
}

.feedback__form-right {
  width: 40%;
}

.feedback__form .form__textarea{
  height: 84px;
}

.btn {
  display: inline-block;
  width: auto;
  border-radius: 40px;
  padding: 20px 24px;
  background-color: #e30428;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.8;
}

.header {
  padding-top: 60px;
}
.header .container {
  max-width: 1560px;
  width: 100%;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: block;
  margin-right: 20px;
  margin-left:-20px;
}

.header__logo img{
  display: block;
}

.header-socials {
  line-height: 1;
}

.header-socials-2{
  display: none;
}

.header-socials__item {
  display: block;
  float: left;
  cursor: pointer;
}
.header-socials__item:first-child {
  margin-right: 24px;
}

.header-socials__item img{
  height: 48px;
}


.header-socials__item:hover {
  opacity: 0.7;
}

.menu_big li{
  float:left;
  display: block;
}

.menu_big li:first-child{
  margin-right: 36px;
}

.big_item{
  display: none;
}

@media (max-width: 1280px) {
  .menu_big{
    display: none;
  }
  .big_item{
    display: block;
  }
}


.header-nav {
  position: absolute;
  z-index: 10;
  top: 215px;
  padding: 24px;
  width: 100%;
  left: 0;
  right: 0;
  background-color: #bbbaba;
  display: none;
}
.header-nav.active {
  display: block;
}







.header-nav__list {

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.header-nav__item {
  border-radius: 40px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  background-color: #e30428;
  white-space: nowrap;
}
.header-nav__item a {
  color: #fff;
  padding: 20px 40px;
  display: block;
}



.header-phone {
  margin:0 30px 0 30px;
  text-align: right;

}

.header-phone .phone{
  color:#171714;
  font-size:32px;
  font-family: "Pacifico";
  white-space: nowrap;
}

.header-second-nav li{

}

.header-second-nav a{
  color:#e30428;
}
.header-second-nav a:hover{
  text-decoration: underline;
}

.header__burge_wrap{
  display: inline-block;
  margin-left: 10px;
  padding: 16px 12px 4px 12px;
  border:0px solid #fff;
  border-radius: 50%;
  background-color: #e30428;
  cursor: pointer;
}
.header__burger {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;

}
.header__burger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__burger span:nth-of-type(1) {
  top: 0;
}
.header__burger span:nth-of-type(2) {
  top: 8px;
}
.header__burger span:nth-of-type(3) {
  top: 16px;
}
.header__burger.active span:nth-of-type(1) {
  opacity: 0;
}
.header__burger.active span:nth-of-type(2) {
  opacity: 1;
  top: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header__burger.active span:nth-of-type(3) {
  opacity: 1;
  top: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.footer {
  padding: 32px 0 56px;
  background-color: #000;
}
.footer .container {
  max-width: 1560px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__copy {
  width: 100%;
  color: #757575;
  text-align: center;
}

.footer-nav {
  width: 100%;
}

.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-nav__item {
  width: auto;
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}
.footer-nav__item a {
  color: #757575;
}
.footer-nav__item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #757575;
  right: 0;
  top: 0;
  bottom: 0;
}
.footer-nav__item:last-of-type {
  margin-right: 0;
  padding-right: 0;
}
.footer-nav__item:last-of-type::before {
  display: none;
}

.hero {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-top: 64px;
  padding-left: 80px;
  margin-bottom: 80px;
}

.hero__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero__title {
  max-width: 623px;
  font-family: "Pacifico";
  font-size: 60px;
  line-height: 72px;
  margin-bottom: 126px;
  text-align: center;
}

.hero__point {
  margin-bottom: 46px;
}

.hero__map {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero__btn {
  padding: 24px;
  font-size: 18px;
  text-align: center;
  width: auto;
  display: inline-block;
  background-color: rgb(29, 29, 27);
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
}

.about {
  padding: 30px 0 172px;
}

.about__subtitle {
  font-size: 18px;
  text-transform: lowercase;
  color: #e30428;
  margin-bottom: 62px;
  text-align: center;
  letter-spacing: 5px;
}

.about__title {
  font-size: 72px;
  line-height: 1.4;
  margin-bottom: 62px;
  font-family: "Pacifico";
  text-align: center;
  color: #e30428;
}

.about__desc {
  line-height: 1.4;
  text-align: left;
  margin: 0 auto;
  max-width: 838px;
}
.about__desc p + p {
  margin-top: 30px;
}

.advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  color: #434343;
}
.advantages__item span {
  font-family: "Pacifico";
  display: block;
  margin-bottom: 28px;
  font-size: 36px;
  color: #000;
}

.modal__container {
  max-width: 800px;
  width: calc(100% - 40px);
  background-color: #000;
  padding: 48px;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-font-smoothing: subpixel-antialiased;
  border-radius: 30px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  image-rendering: pixelated;
  
}
.modal__container::-webkit-scrollbar {
  display: none;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 20;
  display: none;
}
.modal.active {
  display: block;
}

.modal-wrapper {
  width: 100%;
  height: 100%;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal__close {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
}
.modal__close::before {
  position: absolute;
  content: "";
  top: 12px;
  width: 35px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal__close::after {
  position: absolute;
  content: "";
  top: 12px;
  width: 35px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal__title {
  font-size: 36px;
  font-family: "Pacifico";
  margin: 22px 0 48px;
  color: #fff;
  text-align: center;
}

.object-form {
  display: grid;
  gap: 28px;
}

.find-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}
.find-form .form__controls {
  grid-template-columns: 1fr;
}

.find-form__left {
  width: 100%;
  display: grid;
  gap: 16px;
}

.find-form__right {
  width: 100%;
}

.catalog {
  background-color: #fff;
  padding: 112px 0 102px;
}
.catalog .container {
  max-width: 1568px;
}

.catalog__title {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 72px;
  text-align: center;
  font-family: "Pacifico";
}

.catalog__subtitle {
  font-size: 18px;
  margin-bottom: 28px;
  text-align: center;
  color: #434343;
}

.catalog__desc {
  max-width: 838px;
  margin: 0 auto 80px;
  text-align: left;
  line-height: 1.4;
  color: #434343;
}

.catalog__desc p{margin-bottom:2em;}

.catalog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top:40px;
}

.catalog__item {
  max-width: 475px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px 10px 30px 10px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 8px 6px rgba(34, 60, 80, 0.06);
  box-shadow: 0px 0px 8px 6px rgba(34, 60, 80, 0.06);
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  color:#000;
  
}

.catalog__list_mainpage .catalog__item{
border:1px solid #ccc;
}
/* .catalog__item:hover {
  background-color: #d2d2d2;
  -webkit-box-shadow: none;
  box-shadow: none;
} */
.catalog__item:hover .catalog__item-btn {
  background-color: #e30428;
  color: #fff;
}

.catalog__item-img {
  margin-bottom: 32px;
  margin: 0 auto 32px;
  overflow: hidden;
  width: 100%;
  min-height: 334px;
  border-radius: 20px;
  position: relative;
}
.catalog__item-img img {
  display: block;
  height: 334px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.catalog__item-img:hover .slider__btn {
  opacity: 1;
}
.catalog__item-img .slider__btn {
  width: 20px;
  height: 20px;
  top: 50%;
  opacity: 0;
}
.catalog__item-img .slider__btn--prev {
  left: 10px;
}
.catalog__item-img .slider__btn--prev::before {
  width: 4px;
  height: 4px;
  top: 36%;
  left: 60%;
}
.catalog__item-img .slider__btn--next {
  right: 10px;
}
.catalog__item-img .slider__btn--next::before {
  width: 4px;
  height: 4px;
  left: 30%;
}

.catalog__item-info {
  padding: 0 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.catalog__item-name {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.catalog__item-adress {
  font-size: 16px;
  line-height: 1.3;
  color: #434343;
  margin-bottom: 14px;
}

.catalog__item-bottom {
  margin: auto 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catalog__item-btn {
  padding: 10px 14px;
  font-weight: 700;
  color: #e30428;
  border: 1px solid #e30428;
  border-radius: 30px;
}

.team {
  padding: 112px 0 212px;
}
.team .container {
  max-width: 1560px;
  width: 100%;
}

.team__title {
  text-align: center;
  margin-bottom: 52px;
  font-family: "Pacifico";
  font-size: 48px;
  line-height: 1.3;
  text-align: center;
  font-family: "Pacifico";
}

.team__desc {
  max-width: 838px;
  text-align: left;
  margin: 0 auto;
  margin-bottom: 128px;
  line-height: 1.4;
  /* color: #7e7e7e; */
}

.team__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  gap: 75px;
}

.team__item {
  max-width: 272px;
  width: 100%;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.team__item-post{white-space: nowrap;}

.team__item img {
  width: 100%;
  display: block;
}
.team__item:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.team__item:hover .team__item-info {
  display: block;
}

.team__item-img {
  margin: 0 auto 52px;
}

.team__item-info {
  /* display: none; */
  position: absolute;
  top: 95%;
}

.team__item-person {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  color: #e30428;
}

.team__item-post {
  font-size: 16px;
  line-height: 1.4;
}

.company {
  padding-top:112px;

  background-color: #fff;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #000;
}

.company .container{
  max-width: 1360px;
}

.company_title {
  padding-bottom: 62px;
  font-size: 48px;
  line-height: 1.3;
  text-align: center;
  font-family: "Pacifico";
  color:#fff;
}

.company__slider {
  overflow: hidden;
  position: relative;
}
.company__slider .slider__btn--prev {
  left: 20px;
  top: 30%;
}
.company__slider .slider__btn--next {
  right: 20px;
  top: 30%;
}

.company-banner img {
  width:100%;
  border-radius: 10px;
}

.company__info {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 45px;
  background-color: #000;
  color:#fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  z-index: 2;
}

.company__info-subtitle {
  margin-top:32px;
  margin-bottom: 72px;
  font-size: 22px;
  font-weight: 700;
}

.company__info-desc {
  max-width: 820px;
  margin: 0 auto ;
}

.company__info-text {
  font-size: 22px;
  line-height: 1.4;
  text-align: left;
}
.company__info-text + .company__info-text {
  margin-top: 24px;
}

.company__info-text p{
  margin-bottom:20px;
}

.company__info-text--hidden {
  display: none;
}
.company__info-text--hidden.show {
  display: block;
}

.company__info-btn {
  max-width: 224px;
  padding: 22px 36px;
  background-color: #e30428;
  color: #fff;
  text-align: center;
  font-weight: 700;
  border-radius: 40px;
}

.services {
  padding: 64px 0 112px;
  background-color: #fefefe;
}

.services__list {
  max-width: 1130px;
  margin: 0 auto;
  position: relative;
}

.services__slider {
  overflow: hidden;
  padding-top: 85px;
}

.services__subtitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 4px;
  color: #e30428;
  text-transform: lowercase;
}

.services__title {
  text-align: center;
  margin-bottom: 48px;
  font-family: "Pacifico";
  font-size: 48px;
  line-height: 1.3;
  text-align: center;
  font-family: "Pacifico";
}

.services__item {
  padding: 120px 40px 53px;
  background-color: #d2d2d2;
  position: relative;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.services__item-img {
  position: absolute;
  top: -164px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.services__item-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
}

.services__item-desc {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: left;
  line-height: 1.4;
}


.services__item-desc p{
  margin-bottom:20px;
}

.services__item-desc  ul li{
  list-style-type: disc;
  margin-bottom:20px;
}


.services__item-btn {
  max-width: 224px;
  padding: 20px 36px;
  background-color: #e30428;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size:18px;
  border-radius: 40px;
  margin: 0 auto;
  cursor: pointer;
}

.map img {
  display: block;
  width: 100%;
}



/* One location page */

.container_base_one{
  max-width: 1540px;
  padding: 0 20px;
  
}

.backlink{
  color:#000;
  text-decoration: underline;
}


.one{padding-bottom: 40px;}

.one::after{
  content: ' ';
  clear: both;
  display: block;
}

.one h1{
  margin:20px 0 40px;
}

.one .leftside{
  width:61.3%;
  float:left;
}

.one .rightside{
  width:38.7%;
  float:right;
  padding:0 0 0 20px;
}

.revers .leftside{
  float:right;
}

.revers .rightside{
  float:left;
  padding:0 20px 0 0;
}

.one_photos{
  /* display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center */

}

.one_photos a{
  width:32.66%;
  display: block;
  float:left;
  margin-bottom:1%;
}

.one_photos a:nth-child(3n + 2){
  margin-left:1%;
  margin-right:1%;
  
}

.one_photos a img{
  display: block;
  width:100%;
  border-radius: 10px;
}

.one_text{
  width:100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.one_text p{
  margin-bottom: 0.6em;
}

#map_wrap_one{
  width:100%;
  padding-top: 100%;
  position: relative;
  margin-top:20px;
}

#map_wrap_one #map{
  position: absolute;
  top:0;
  left: 0;
  width:100%;
  height:100%;
  overflow: hidden;
  border-radius: 20px !important;
}


#form_one{
  width:100%;
  background-color: #000;
  color:#fff;
  margin:20px auto;
  padding: 20px;
  border-radius: 20px;
  
}

#form_one .form__item{
  margin-bottom: 20px;
}

#form_one label{
  padding-left: 7px;
  padding-bottom: 4px;
  font-size:16px;
  display: block;
}



#form_one textarea{
  height: 100px;
  font-size:16px;
}

.btn_green{
  display: inline-block;
  width: auto;
  border:none;
  border-radius: 10px;
  padding: 10px 12px;
  background-color: #04e35d;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
}

.btn_gray{
  display: inline-block;
  width: auto;
  border:none;
  border-radius: 10px;
  padding: 10px 12px;
  background-color: #333;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
}






@media (max-width: 1919px) {
  .header {
    padding-top: 64px;
  }
  
}

@media (max-width: 1600px) {

  .hero__title {
    font-size: 52px;
    line-height: 67px;
  }


  .header__logo {
    max-width: 160px;
    margin-right: 32px;
  }
  .header-nav__item {
    font-size: 16px;
  }
  .hero__img {
    max-width: 600px;
  }
  .hero__map {
    max-width: 1200px;
  }
  .about {
    padding: 80px 0 120px;
  }
  .about__title {
    margin-bottom: 64px;
  }
  .about__desc {
    margin-bottom: 80px;
  }
  .about__desc p + p {
    margin-top: 48px;
  }
  .catalog__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header-nav {
    top: 180px;
  }

}

@media (max-width: 1400px) {
  .feedback__img {
    display: none;
  }
}

@media (max-width: 1280px) {

  .footer-nav {
    display: none;
  }
  .feedback__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .feedback__form-left {
    width: 100%;
  }
  .feedback__form-right {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  /* .slider__btn {
    width: 40px;
    height: 40px;
  } */
  .slider__btn--prev {
    left: -15px;
  }
  .slider__btn--next {
    right: -15px;
  }
  .header-socials__item img {
    width: 32px;
  }
  .header-nav__list {
    gap: 24px;
  }
  .hero__img {
    max-width: 450px;
  }
  .hero__title {
    font-size: 48px;
    line-height: 50px;
    margin-bottom: 64px;
  }
}

@media (max-width: 1080px) {

  main{
    padding-top: 40px;
  }

  .container {
    padding: 0 10px;
  }

  .one .leftside{
    width:50%;
  }
  
  .one .rightside{
    width:50%;
  }

  .feedback {
    padding: 100px 0;
  }
  .header {
    padding: 20px 0;
    background-color: #e30428;
  }
  .header .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header__logo {
    max-width: 80px;
  }

  
  .footer {
    padding: 24px 0 32px;
  }
  .footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer-nav__list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 24px;
  }
  .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hero {
    padding: 64px 40px 100px;
  }
  .hero__img {
    max-width: 400px;
    margin-bottom: 64px;
  }
  .hero__map {
    width: 1024px;
  }
  .hero__map img {
    width: 1024px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  .about {
    padding: 64px 0 80px;
  }
  .about__title {
    font-size: 48px;
    margin-bottom: 48px;
  }
  .about__desc {
    margin-bottom: 64px;
  }
  .about__desc p + p {
    margin-top: 24px;
  }
  .team__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .team__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
  }
  .team__item-info {
    display: block;
    position: static;
  }
  .services__slider {
    padding-top: 80px;
  }
  .services__item {
    padding: 80px 32px 36px;
  }
  .services__item-img {
    max-width: 130px;
    top: -100px;
  }
  .services__item-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .services__item-desc {
    margin-bottom: 24px;
  }
  .header-nav {
    top: 90px;
  }
}

@media (max-width: 767px) {

  .one h1{
    margin:10px 0 20px;
  }

  .form__controls {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }
  .feedback {
    padding: 64px 0;
  }
  .feedback__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .feedback__form-left {
    grid-template-columns: 1fr;
  }
  .btn {
    padding: 16px;
    font-size: 16px;
    line-height: 1;
  }

  .footer-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer-nav__item {
    margin-right: 0;
    padding-right: 0;
  }
  .footer-nav__item::before {
    display: none;
  }
  .hero {
    margin-bottom: 48px;
  }
  .hero__img {
    max-width: 240px;
    margin-bottom: 40px;
  }
  .hero__title {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
  .hero__point {
    max-width: 100px;
  }
  .hero__btn {
    padding: 12px 14px;
  }
  .about {
    padding: 48px 0 64px;
  }
  .about__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .advantages__item {
    font-size: 16px;
  }
  .advantages__item span {
    margin-bottom: 18px;
  }
  .modal__container {
    padding: 32px 24px;
  }
  .modal__close {
    width: 24px;
    height: 24px;
    top: 20px;
    right: 20px;
  }
  .modal__close::before {
    width: 24px;
  }
  .modal__close::after {
    width: 24px;
  }
  .modal__title {
    font-size: 24px;
    line-height: 1.4;
  }
  .object-form {
    gap: 16px;
  }
  .find-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .catalog {
    padding: 64px 0;
  }
  .catalog__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .catalog__subtitle {
    font-size: 16px;
  }
  .catalog__desc {
    margin-bottom: 48px;
  }
  .catalog__item-info {
    padding: 0 16px;
  }
  .catalog__item-bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .catalog__item-btn {
    text-align: center;
    width: 100%;
    margin-top: 12px;
  }
  .team {
    padding: 64px 0;
  }
  .team__title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .team__desc {
    margin-bottom: 78px;
  }

  .team__list {
    grid-template-columns: 1fr;
    gap:30px;
  }
  .team__item-img {
    max-width: 190px;
    margin-bottom: 24px;
  }



  .company-banner img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .company__slider .slider__btn--prev { 
    top: 200px;
  }
  .company__slider .slider__btn--next {
    top: 200px;
  }

  .company__info-text {
    font-size: 18px;
  }

  .company__info {
    padding: 0;
  }
  .company__info-subtitle {
    margin-bottom: 40px;
  }
  .company__info-desc {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .company__info-btn {
    padding: 12px 18px;
    font-size: 16px;
  }
  .services__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .services__item-btn {
    padding: 12px 18px;
    font-size: 16px;
  }


  .form__input, .form__textarea, .form__item label {
    font-size: 16px;
  }

}

@media (max-width: 600px) {

  main{
    padding-top: 20px;
  }

  .catalog__item {
    max-width: 100%;
  }

  .header__logo{
    margin-right: 0;
  }

  .header-phone{
    margin:0 0 0 5px;
  }
  .header-phone .phone{
    font-size: 22px;
  }
  .header-socials{
    margin:0 10px;
  }
  .header-socials__item:first-child {
    margin-right: 10px;
  }

  .header-nav__item a{
    font-size: 14px;
    padding: 10px 20px;
  }
  .header-nav__list {
    gap: 12px;
  }


  .one .leftside{
    width:100%;
  }
 
  .one .rightside{
    width:100%;
    padding: 0;
    margin-top:20px;
  }

  /* .one_photos a{
    width:150px;
    display: block;
    float:left;
    margin:0 5px 5px 0;
  }
  
  .one_photos a:nth-child(3n + 2){
    margin:0 5px 5px 0;
  } */

}

@media (max-width: 495px) {
  .about__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .advantages {
    grid-template-columns: 1fr;
  }

  .header-socials__item img {
    width: 22px;
  }

}

@media (max-width: 470px) {

  .header{
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header .container {
    padding: 0 10px 0 30px;
  }    

  .header-socials{
    display: none;
  }
  .header-socials-2{
    display: inline-block;
    margin:0 30px;
    height: 24px;
    text-align: center;
  }

  .header-socials-2 a{
    display: inline-block;
  }

  .header-socials-2 a img{
    width:20px;
    display: block;
  }

  .header-phone{
    text-align: center;
  }
  .header-phone .phone{
    display: block;
    height: 30px;
    text-align: center;
  }
  
  .header__burge_wrap{
    padding: 0;
  }

  .header-nav {
    top: 75px;
  }

  .form__input, .form__textarea, .form__item label { 
    font-size: 14px;
  }
}


.btn_style{
  font-size:18px;
  letter-spacing: 1px;
  cursor: pointer;
}


.lh14{
  line-height: 1.4;
}

.font-size-1{
   font-size: 28px;
}

.font-size-2{
  font-size: 24px;
}

.font-size-3{
  font-size: 16px;
}

@media (max-width: 1080px) {
  .font-size-1{
    font-size: 24px;
  }
 .font-size-2{
  font-size: 20px;
  }
  .font-size-3{
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .font-size-1{
    font-size: 18px;
 }
 .font-size-2{
  font-size: 16px;
}
}


/* HELPERS */
.clear{clear: both;}

.clear_after::after{
  content: ' ';
  display: block;
  clear: both;
}

.hide{display: none;}
.hide_temp{display: none;}
.mrg10T{margin-top:10px !important;}
.mrg15T{margin-top:15px !important;}
.mrg20T{margin-top:20px !important;}
.mrg20B{margin-bottom:20px !important;}
.mrg40T{margin-top:40px !important;}
.mrg80T{margin-top:80px !important;}
.mrg20T{margin-top:20px !important;}
.mrg22T{margin-top:22px !important;}

.pad20T{padding-top:20px !important;}

.mrg10R{margin-right: 10px;}

.text-center{text-align: center !important;}


/* Base */

.container-baselist{
  max-width: 1568px;
  padding-bottom: 60px;
}


/* filters */

.modal__container_filters{
  max-width: 1568px;
  background-color: #fff;
  padding: 20px;
}




.modal__title_filter{
  color:#000;
  margin:0;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  display: none;
}

.modal__close_filter{
  position: fixed;
}

.modal__close_filter::after, .modal__close_filter::before{
  background-color: #000;
}

.but2{
  padding: 10px 20px;
  color:#e30428;
  background-color: #fff;
  border:1px solid #e30428;
  font-size:18px;
  cursor: pointer;
  display: inline-block;
  border-radius: 10px;
  
}

.filter_wrap{

}

#filters_form{

}

.filter_block{
  float:left;
}

.fblock_title{
  width: 100%;
  float: left;
  font-size: 13px;
  font-weight: bold;
}

.filter_section{
  width:33%;
  float:left;
  /* display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 285px; */
}

.filter_section_buts{
  width: 100%;
  float:left;
  text-align: center;
}

.filter_section .disabled{
  display: none;
}

.f_line{
  width: 50%;
  float:left;
  font-size: 13px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  /* white-space: nowrap;
  overflow: hidden; */
  height: 13px;
  line-height: 13px;


}

.f_line input{
  display: inline-block;
  line-height: 13px;
  cursor: pointer;
  vertical-align: middle;
}

.f_line label{
  display: inline-block;
  line-height: 13px;
  cursor: pointer;
  vertical-align: middle;
}

.filter_but{

  font-size: 18px;
  background-color: #e30428;
  border:1px solid #e30428;
  color:#fff;
  padding: 8px 20px;
  border-radius: 10px;
  cursor: pointer;
  margin-top:10px;
}

.filter_clear{
  background-color: #fff;
  color: #e30428;
}

@media (max-width: 1300px) {
  .filter_section{
    width: 100%;
  }
  .f_line{
    width:180px;
  }
  .fblock_title:nth-child(n+2){
    margin-top: 20px;
  }

}


.pagination{
  margin: 20px auto 0;
  text-align: center;
}

.pagination ul{
  cursor: default;
}

.pagination li{
  
  display: inline-block;
  font-size: 18px;
  margin:0 5px;
  color: #000;
  width:15px;
  cursor: default;
}

.pagination li span{
  cursor: default;
}

.pagination li a{
  color: #000;
  padding:  2px 5px;
  border: 0px solid #777;
  border-radius: 7px;
}

.pagination li.active{
  font-weight: bold;
}

.pagination li.disabled{
 color:#777;
}


/* Карта в поиске */

#map_place{
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
#loading_gif{
  background: url("/images/loading.gif") no-repeat center;
  height:100%;
} 

#idetzagruzka{
  margin-top:20px;
  text-align: center;
}

.modal__container_map{
  width:calc(100% - 60px);
  max-width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: visible;
  padding:0px;
  image-rendering: pixelated;
}

.modal__close_map{
  z-index: 1;
  right:-20px;
  top:-20px;
}
.modal__close_map::after, .modal__close_map::before{
  background-color: #000;
  border:1px solid #fff;
}

#map_container{height: 100%;}
#map{height: 100%;}