/*==========  Desktop First Method  ==========*/
/*Мобильное меню*/
	.d-flex {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
	}
	.nav-trigger {
	  width: 36px;
	  height: 36px;
	  position: absolute;
	  background: none;
	  border: none;
	  vertical-align: middle;
	  margin: 0;
	  padding: 9px 3px;
	  cursor: pointer;
	  left: 15px;
	}

	.nav-trigger:focus {
	  outline: 0;
	}

	.nav-trigger:hover span,
	.nav-trigger:hover span:before,
	.nav-trigger:hover span:after {
	  background: #fff;
	}

	.nav-trigger:before {
	  content: '';
	  opacity: 0;
	  width: 0;
	  height: 0;
	  border-radius: 50%;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  background: transparent;
	  -webkit-transform: translate(-50%, -50%);
	  transform: translate(-50%, -50%);
	  -webkit-transition: all .4s ease;
	  transition: all .4s ease;
	}

	.nav-trigger span {
	  display: block;
	  position: relative;
	}

	.nav-trigger span:before,
	.nav-trigger span:after {
	  content: '';
	  position: absolute;
	  left: 0;
	}

	.nav-trigger span:before {
	  top: -7px;
	}

	.nav-trigger span:after {
	  bottom: -7px;
	}

	.nav-trigger span,
	.nav-trigger span:before,
	.nav-trigger span:after {
	  width: 100%;
	  height: 3px;
	  background: #fff;
	  -webkit-transition: all .4s ease;
	  transition: all .4s ease;
	}

	.show-menu .nav-trigger:before {
	  opacity: 1;
	  width: 50px;
	  height: 50px;
	}

	.show-menu .nav-trigger span {
	  background: transparent;
	}

	.show-menu .nav-trigger span:before {
	  top: 0;
	  -webkit-transform: rotate(225deg);
	  transform: rotate(225deg);
	}

	.show-menu .nav-trigger span:after {
	  bottom: 0;
	  -webkit-transform: rotate(-225deg);
	  transform: rotate(-225deg);
	}

	.headerMobile {
	  position: fixed;
	  top: 0;
	  z-index: 1050;
	  width: 100%;
	  height: 60px;
	  -webkit-transition: all .4s ease;
	  transition: all .4s ease;
	  background: #13110C;
	  box-shadow: 0 0 9px rgba(84, 84, 84, .32);
	}

	.headerMobile__top {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
	  height: 60px;
	  padding: .5rem 15px .5rem 60px;
	  width: 100%;
	  justify-content: space-between;
	  align-items: center;
	  background: #13110C;
	}

	.logoMobile,
	.logoMobile img {
	  height: 100%;
	  display: block;
	  object-fit: contain;
	}

	.headerMobile__search form {
	  position: relative;
	}

	.headerMobile__search .searchInput {
	  width: 100%;
	}

	.searchSubmit {
	  position: absolute;
	  right: 5px;
	  border: none;
	  background: transparent url(../img/search.png) center no-repeat;
	  -webkit-background-size: 22px;
	  background-size: 22px;
	}

	.btn--icon {
	  background: transparent;
	  border: 1px solid rgba(0, 0, 0, .14);
	  border-radius: 50%;
	  height: 36px;
	  width: 36px;
	  color: #d6b981;
	  padding: 0 !important;
	  font-weight: bold;
	}

	.btn--icon svg {
	  width: 19px;
	  margin: auto;
	  fill: #d6b981;
	}

	.edit--icon {
	  background: #d6b981;
	  position: absolute;
	  bottom: 25px;
	  right: 20px;
	  border-radius: 50%;
	  width: 35px;
	  height: 35px;
	  padding: 4px 8px;
	  opacity: .5;
	  -webkit-transition: all .3s ease;
	  transition: all .3s ease;
	}

	.ourSpecialist .edit--icon {
	  padding: 8px;
	}

	.edit--icon:hover {
	  opacity: 1;
	}

	.edit--icon__top {
	  bottom: auto;
	  top: 0;
	}

	/*Мобильное меню*/
	.nav-wrapper {
	  position: relative;
	  width: 80%;
	  height: calc(100vh - 60px);
	  -webkit-transition: -webkit-transform .3s;
	  transition: -webkit-transform .3s;
	  transition: transform .3s;
	  transition: transform .3s, -webkit-transform .3s;
	  -webkit-transform: translateX(-100%);
	  transform: translateX(-100%);
	  max-width: 420px;
	  min-width: 320px;
	  z-index: 1000;
	  font-size: 14px;
	}

	.show-menu .nav-wrapper {
	  -webkit-transform: none;
	  transform: none;
	}

	.overlay {
	  position: fixed;
	  top: 60px;
	  bottom: 0;
	  width: 100%;
	  height: 100%;
	  background: rgba(0, 0, 0, .0);
	  z-index: 999;
	  display: none;
	}

	.show-menu .overlay {
	  background: rgba(0, 0, 0, .3);
	  display: block;
	}

	nav {
	  position: absolute;
	  left: 0;
	  top: 0;
	  height: 100%;
	  width: 100%;
	  overflow-x: hidden;
	  overflow-y: auto;
	  background-color: #fefefe;
	}
	@media only screen and (max-width : 992px) {
    	nav {
    	  background-color: #12110c;
    	}
	}
	nav .nav-toggle {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  padding: 12px 20px;
	  color: rgba(255, 255, 255, .4);
	  border-bottom: 1px solid #333;
	  z-index: 100;
	  cursor: pointer;
	  -webkit-transition: backgroun-color .3s;
	  transition: backgroun-color .3s;
	  height: 50px;
	  font-size: 16px;
	  text-align: center;
	}

	nav .nav-toggle:hover {
	  background-color: #acacac;
	}

	nav .nav-toggle.back-visible .nav-back {
	  opacity: 1;
	}
	.nav-back .mobileMenu__icon img{
		-webkit-filter: invert(1);
		-o-filter: invert(1);
		filter: invert(1);
	}
	nav .nav-toggle.back-visible .nav-title {
	  -webkit-transform: translateX(40px);
	  transform: translateX(40px);
	}

	nav .nav-title {
	  text-transform: uppercase;
	  -webkit-transition: -webkit-transform .3s;
	  transition: -webkit-transform .3s;
	  transition: transform .3s;
	  transition: transform .3s, -webkit-transform .3s;
	}

	nav .nav-back {
	  position: absolute;
	  width: 34px;
	  height: 34px;
	  z-index: 1;
	  opacity: 0;
	  -webkit-transition: opacity .2s;
	  transition: opacity .2s;
	  -webkit-transform: rotate(-270deg);
	  transform: rotate(-270deg);
	  left: 20px;
	  top: 8px;
	}

	nav .nav-back svg {
	  width: 20px;
	  height: 20px;
	  margin: auto;
	}

	nav ul {
	  list-style: none;
	  padding: 50px 0 0;
	  -webkit-transition: -webkit-transform .3s;
	  transition: -webkit-transform .3s;
	  transition: transform .3s;
	  transition: transform .3s, -webkit-transform .3s;
	  background-color: #13110C;
	  position: absolute;
	  left: 0;
	  top: 0;
	  /* height: 100%; */
	  width: 100%;
	}

	nav ul ul {
	  display: none;
	  left: 100%;
	}

	nav li.has-dropdown>a:after {
	  content: '';
	  position: absolute;
	  top: 50%;
	  right: 1em;
	  width: 9px;
	  height: 9px;
	  border: 1px solid rgba(255, 255, 255, .6);
	  border-left-color: transparent;
	  border-top-color: transparent;
	  -webkit-transform: translateY(-90%) rotateZ(-45deg);
	  transform: translateY(-90%) rotateZ(-45deg);
	  -webkit-transition: -webkit-transform .3s;
	  transition: -webkit-transform .3s;
	  transition: transform .3s;
	  transition: transform .3s, -webkit-transform .3s;
	  -webkit-transform-origin: 100%;
	  transform-origin: 100%;
	}

	nav li.nav-dropdown-open ul {
	  display: block;
	}

	.mobileMenu__icon {
	  width: 17px;
	  height: 17px;
	  fill: #d6b981;
	  margin-right: 10px;
	  position: relative;
	  top: 1px;
	}

	.mobileMenu__item a {
	  display: block;
	  position: relative;
	  padding: 15px 20px;
	  border-bottom: 1px solid #333;
	  line-height: 19px;
	  color: #fff;
	  text-decoration: none;
	  -webkit-transition: color .15s, background-color .15s;
	  transition: color .15s, background-color .15s;
	}
	.mobileMenu__item .social__link {
		border: none;
	}
	.mobileMenu__item a:hover {
	  color: #000;
	  background-color: #d6b981;
	  text-decoration: none;
	}

	.mobileMenu__item .mobileMenu__icon {
	  width: 22px;
	  height: 22px;
	}

	.mobileMenu__item--3 {
	  background: #d6b981;
	  height: 50px;
	  align-items: center;
	  padding: 0 20px;
	}

	.mobileMenu__item--3 a {
	  color: #fefefe;
	  border-color: #fefefe;
	  text-align: center;
	  padding: 8px 0 !important;
	  width: 38px;
	  height: 38px;
	}

	.mobileMenu__item--3 a:first-child {
	  margin-right: 15px;
	}
	.mobileMenu__item--4 .mobileMenu__icon {
	  width: 30px;
	  height: 30px;
	}

	.mobileMenu__item a span,
	.mobileMenu__item>span span {
	  display: inline-block;
	  vertical-align: top;
	  white-space: normal;
	  width: 80%;
	}

	.mobileSearch {
	  position: absolute;
	  top: 60px;
	  height: 50px;
	  width: 100%;
	  z-index: 1000;
	  padding: 5px 15px;
	  background: #d6b981;
	  border: none;
	  display: none;
	}

	.mobileSearch.menuSearch__focused {
	  display: block;
	}

	.mobileSearch__input {
	  width: 100%;
	  opacity: 1;
	  border-color: #d6b981;
	}

	.mobileSearch__submit {
	  padding: 0;
	  position: absolute;
	  right: 25px;
	  top: 12px;
	  width: 27px;
	  border: 0;
	  border-radius: 50%;
	  background: transparent url(../img/search.png) center no-repeat;
	  background-size: 20px;
	}

/*Мобильное меню*/
	.headerMobile {
		display: none;
	}
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1440px) {
	.h-wrapper {
		padding: 0 30px;
	}
	.h-logo {
		left: 30px;
	}
	.h-top {
		padding: 0 30px;
	}

}
@media only screen and (max-width : 1200px) {
	.h-top,
	.h-wrapper {
		padding: 0 30px;
	}
	.h-logo {
		left: 40px;
	}
	.about-slider__list .swiper-slide {
		max-width: 760px;
	}
	.about-slider__list::before {
		width: calc(50% - 400px);
	}
	.about-slider__list::after {
		width: calc(50% - 400px);
	}
}

@media only screen and (max-width : 1024px) {
    .h-top__phone {
        margin-left: 14px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	body {
		padding-top: 60px;
	}
	header {
		display: none;
	}
	.headerMobile {
		display: block;
	}
	.banner__content {
		padding-left: 15px;
		padding-right: 15px;
	}
		.hello__right {
		display: none;
	}
	.hello__left {
		width: 100%;
    flex-basis: 100%;
    padding-right: 25px;
    padding-left: 25px;
	}
	.services__column {
		width: 100%;
	}
	.order {
		padding: 0;
		min-height: auto;
		background: none;
	}
	.order__wrapper {
		position: relative;
	}
	.order__form {
		margin: 0;
		padding: 60px 25px 120px;
	}
	#order-form {
		flex-wrap: wrap;
	}
	.order__politics {
    max-width: 925px;
    font-size: 14px;
    line-height: 1.35;
    color: #9E9377;
    padding-left: 15px;
    padding: 15px 15px;
    position: absolute;
    bottom: 0;
    font-size: 12px;
    color: #000;
	}
	footer {
	    padding: 80px 0 25px;
	}
	.f-wrapper {
		flex-wrap: wrap;
	}
	.f-column {
		width: 50%;
		margin-bottom: 60px;
	}
	body.not-front {
		padding-top: 60px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.banner__title {
		font-size: 20px;
    letter-spacing: 1px;
	}
	.banner__subtitle {
		font-size: 14px;
	}
	.hello {
		background: none;
		min-height: auto;

	}
	.hello__title {
		font-size: 20px;
	}
	.hello__text {
		font-size: 15px;
		line-height: 2;
	}
	.instagram {
		background: none;
	}
	.i-list {
		flex-wrap: wrap;
		margin-left: -8px;
		margin-right: -8px;
	}
	.i-item {
		width: 50%;
		padding-left: 8px;
		padding-right: 8px;
		margin: 0 0 20px!important;
		border: none;
	}
	.i-item img {
    border: 1px solid #d6ba82;
	}
	.offer {
		height: auto;
		flex-direction: column;
	}
	.offer__left,
	.offer__right {
		width: 100%;
		padding: 30px 8%;
	}
	.offer__left {
		justify-content: center;
		padding: 100px 21%;
	}
	.offer__text {
		font-size: 36px;
	}
	#order-form {
		flex-direction: column;
		align-items: center;
	}
	#order-form .form__item {
		max-width: 100%;
		width: 100%;
		margin-bottom: 25px;
		margin-right: 0;
	}
	#order-form .form__actions {
		margin-top: 25px;
	}
	.order__title {
		font-size: 26px;
	}
	.order__subtitle {
		font-size: 16px;
		max-width: 320px;
	}
	.about {
		padding: 0;
		min-height: auto;
	}
	.about__wrapper {
		padding-bottom: 60px;
	}
	.about__headline {
		margin-bottom: 45px;
	}
	.about__title {
		font-size: 26px;
	}
	.about__text {
		font-size: 13px;
		font-weight: 300;
	}
	.about-pagination {
		width: 100%;
		bottom: 45px;
	}
	.maps-contacts {
		left: 20px;
		right: 20px;
	}
	.headline {
		font-size: 30px;
	}
	.inner-head {
		min-height: 150px;
		height: auto;
	}
	.about-slider-prev, .about-slider-next {
		background: #fff;
		top: 20%;
	}
	.about-slider-nav {
		top: 30%;
	}
	.about-slider-next {
		right: 15px;
		width: 35px;
		height: 35px;
	}
	.about-slider-prev {
		left: 15px;
		width: 35px;
		height: 35px;
	}
	.about-slider__text {
		font-size: 16px;
		padding: 0 15px;
	}
	.about-slider__img {
		height: auto;
	}
	.shares {
		min-height: auto;
		padding: 60px 15px;
	}
	.shares__container {
		min-height: 560px;
		padding: 40px 15px;
	}
	.shares__title {
		font-size: 26px;
	}
	.shares__subtitle {
		font-size: 18px;
		line-height: 1.35;
	}
	.detail__text {
		font-size: 16px;
	}
	.services__title {
		font-size: 26px;
	}
	.detail__item {
		flex-wrap: wrap;
	}
	.item__img {
		width: 100%;
		height: auto;
		margin-bottom: 25px;
	}
	.item__title {
		font-size: 26px;
	}
	.item__desc {
		font-size: 14px;
	}
	.item__price {
		margin-bottom: 25px;
	}
	.hello__gears {
		margin-bottom: 1rem;
	}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 576px) {
	.banner__links {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.banner__links a {
		margin-bottom: 20px;
		width: auto;
	}
	.order__form {
		padding: 60px 25px 120px;
	}
	.about__wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}
	.about-slider-nav {
		top: 135px;
	}
	.about-slider__img {
		height: 240px;
	}
	.f-column {
		width: 100%;
	}
	.f-column:nth-child(3),
	.f-column:nth-child(4) {
		display: none;
	}
	.item__btn {
		width: 100%;
	}
	.item__btn .btn {
		width: 100%;
		justify-content: center;
		text-align: center;
	}
	.order__title {
		font-size: 18px;
	}
	.offer__link a:not(:last-child) {
		margin-right: 16px;
		margin-bottom: 25px;
	}
	/* .table-uslugi thead {
	    display: none;
	}
	.table-uslugi tr {
	    display: block;
	    margin-bottom: 16px;
	}
	.table-uslugi thead {
	    display: none;
	}
	.table-uslugi td {
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    flex: 0 0 50%;
	    max-width: 100%;
	    padding: 6px 8px;
	    font-size: 14px;
	    text-align:right
	   }
	.table-uslugi td::before {
	    content: attr(data-label);
	    font-weight: bold;
	    margin-right: 20px;
	    flex: 0 0 50%;
	    max-width: 100%;
	    text-align: left;
	   }
	   .table-uslugi tr td:last-child {
	   display: flex;
	   justify-content: center;
	   border: 0;
	   width: 100%!important;
	   }
	   .table-uslugi tr td:last-child::before {
	   display: none;
	   } */
	   .table-uslugi {
	       font-size: 12px;
	   }
	   .table-uslugi  .btn {
	       font-size: 10px;
	   }
	   .table-uslugi tr td:last-child {
            width: 140px !important;
        }
        .table-uslugi tr td:first-child {
            width: 145px;
        }
        .deposit__list {
            flex-wrap: wrap;
            width: 100%;
            overflow: hidden;
            padding-bottom: 10px;
            justify-content: flex-start;
        }
        .deposit__list li {
            width: 100%;
            flex-wrap: nowrap;
        }
        .deposit__list li:not(:last-child) {
            margin-bottom: 20px;
        }
        .deposit__list span {
            white-space: normal;
        }
        .deposit__list span br {
            display: none;
        }
}

@media only screen and (max-width : 425px) {
    .table-uslugi td {
        text-align: center;
        padding: 10px 5px;
    }
    .table-uslugi tr td:nth-child(2) {
        word-break: break-all;
    }
    .table-uslugi tr td:first-child {
        width: 125px;
    }
    .table-uslugi .btn {
        font-size: 8px;
    }
    .table-uslugi tr td:last-child {
        width: 90px !important;
    }
    .table-uslugi .btn--primary {
        padding: 5px 0;
    }  
    .table-uslugi thead td {
        text-align: center;
    }
    .pk_time {
        display: none;
    }
    .tel_time {
        display: block;
    }
    .table-uslugi tr td:nth-child(3) {
        width: 90px;
    }
    td .tel_time {
        display: inline;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 400px) {
	.shares {
		padding-left: 0;
		padding-right: 0;
	}
	.table-uslugi {
        font-size: 11px;
    }
    .table-uslugi tr td:first-child {
        width: 115px;
    }
    .table-uslugi tr td:nth-child(3) {
        width: 79px;
    }
}
@media only screen and (max-width : 320px) {
	.shares__title {
		font-size: 20px;
	}
	.shares {
		padding-left: 0;
		padding-right: 0;
	}
	.shares__container {
        min-height: 500px;
        padding: 0;
    }
    .shares__subtitle {
        font-size: 14px;
    }
    .table-uslugi tr td:first-child {
        width: 100px;
    }
    .table-uslugi .btn {
        font-size: 6px;
    }
    .table-uslugi tr td:last-child {
        width: 70px !important;
    }
    .table-uslugi {
        font-size: 10px;
    }
    .table-uslugi tr td:nth-child(3) {
        width: 70px;
    }
}

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 380px) {
    .maps__address {
        font-size:18px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}

.headerMobile nav {
    background-color:#12110c;
}