* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

html {
  height: 100%;
}

body {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "GothamP", sans-serif;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fcfcfc;
}

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

p {
  margin: 0;
}

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

.hidden {
  display: none;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header {
  position: relative;
  border-bottom: 1px solid #ccc;
  z-index: 9999;
  background: #4e3b53;
  padding: 0 20px; 
}

.humWrapper {
  padding: 8px;
  background: #4e3b53;
  display: none;
  cursor: pointer;
}

.hoverItem {
  overflow: hidden;
  cursor: pointer;
}

.hoverItem:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: '';
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  -ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  z-index: 99999;
}

.hoverItem:hover:before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
  -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
  -ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
  -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}

.hum {
  width: 30px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 9999999;
}

.hum.burgerActive span:first-child {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  top: 8px;
}

.hum.burgerActive span:nth-child(2) {
  display: none;
}

.hum.burgerActive span:last-child {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  bottom: 10px;
}

.hum span {
  width: 100%;
  position: absolute;
  background: #fff;
  height: 2px;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}

.hum span:first-child {
  top: 0;
}

.hum span:nth-child(2) {
  bottom: 50%;
}

.hum span:last-child {
  bottom: 2px;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 55px;
  width: 100%;
}

.header__nav {
  position: relative;
  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;
  width: 100%;
}

.header__logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 99999;
  width: 150px;
  height: 200px;
  background: #2b6292;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
}

.header__logo img {
  display: block;
  width: 55%;
}

.header__navR {
  padding-right: 180px;
}

.header__nav-list {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
}

.header__nav-list a {
  font-size: 14px;
  color: #fff;
}

.header__link.active {
  font-weight: bold;
}

.header__link.active:before {
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  background: #A1B38B;
  left: -10px;
  top: 5px;
}

.header__nav-list:first-child a:last-child {
  margin-right: 100px;
}

.header__nav-list:last-child a:first-child {
  margin-left: 100px;
}

.contact-us-icon {
  position: fixed;
  right: 30px;
  bottom: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(86, 65, 91, 0.8);
  border-radius: 50%;
  cursor: pointer;
  -webkit-animation-name: contact-us-icon;
          animation-name: contact-us-icon;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  z-index: 5;
}

.contact-us-icon:before, .contact-us-icon:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(86, 65, 91, 0.3);
  -webkit-animation-name: circle1;
          animation-name: circle1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.contact-us-icon:after {
  background: none;
  border: 2px solid rgba(86, 65, 91, 0.3);
  -webkit-animation-name: circle2;
          animation-name: circle2;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.contact-us-icon img {
  width: 50%;
}

@-webkit-keyframes contact-us-icon {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes contact-us-icon {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@-webkit-keyframes circle1 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes circle1 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes circle2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }

  60% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes circle2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }

  60% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
}

.main__content{
  padding: 0 15px;
}

.contact-us-icon:hover {
  background: rgba(86, 65, 91, 1);
}

.header__change {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.header__change-list,
.header__change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999;
}

.search {
  width: 20px;
  height: 20px;
  display: block;
  background: url("../img/ser.png") no-repeat;
  background-size: cover;
  cursor: pointer;
}

.list-search {
  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;
  margin-bottom: 25px;
  text-align: center;
}

.list-search>div span {
  font-size: 14px;
}

.header__change-list {
  margin-left: 20px;
}

.header__change-list a {
  margin: 0 !important;
  padding: 0 5px;
  color: #ffffff;
}

.header__change-list a::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: #47354b;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.header__change-list li:last-child a::after {
  display: none;
}

/* main */

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

/* picture main */

.main__vision,
.main__inner-vision {
  height: 770px;
}

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

.main__pictureL {
  border-right: 1px solid #ccc;
}

.main__picture {
  display: inline-block;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.picture__rhom-Wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.picture__rhom-Wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rhom-block {
  position: absolute;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.big-rhomR {
  top: 18%;
  left: 13%;

  width: 37%;
}

.medium-rhomR__btm {
  top: 48%;
  left: 50%;

  width: 23%;
}

.small-rhomR__btm {
  top: 68%;
  left: 40%;

  width: 9%;
}

.mediumB-rhomR__right {
  top: 19.5%;
  left: 51%;

  width: 14%;
}

.medium-rhomR__rightRight {
  top: 20%;
  left: 73%;

  width: 14%;
}

.medium-rhomR__rightTop {
  top: 5%;
  left: 62%;

  width: 14%;
}

.small-rhomR__rightCenter {
  top: 33.9%;
  left: 64.8%;

  width: 8%;
}

.small-rhomR__centerRight {
  top: 44%;
  left: 71.8%;

  width: 8%;
}

.small-rhomR__topTop {
  top: 14%;
  left: 43%;

  -webkit-transform: rotate(45deg);

          transform: rotate(45deg);

  width: 8%;
}

/* left */

.WrappBanner {
  width: 100%;
}

.big-rhomL {
  right: 15%;
  left: auto;

  width: 37%;
}

.medium-rhomL__btm {
  right: 53%;
  left: auto;

  width: 23%;
}

.small-rhomL__centerRight {
  right: 73.8%;
  left: auto;
}

.small-rhomL__rightCenter {
  right: 67%;
  left: auto;
}

.medium-rhomL__rightRight {
  right: 75%;
  left: auto;
}

.small-rhomL__btm {
  right: 43%;
  left: auto;

  width: 9%;
}

.medium-rhomL__rightTop {
  right: 64%;
  left: auto;
}

.mediumB-rhomL__right {
  right: 53.5%;
  left: auto;


  width: 14%;
}

.small-rhomL__topTop {
  left: 46%;
}

.picture__item {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.icon-map {
  width: 90%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-filter: drop-shadow(1px 1px 1px #000);
          filter: drop-shadow(1px 1px 1px #000);

}

/* picture info */

.picture__item-info {
  position: absolute;
  bottom: -19px;
  /* background: rgba(241, 244, 233, .8); */
  width: 100%;
  padding: 20px 15px;
  text-align: center;
}

.picture__item-info span {
  display: block;
}

.picture__title {
  font-size: 18px;
  font-family: "GothamPB", sans-serif;
  margin-bottom: 10px;
}

.picture__btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.calcul__form-block {
  padding: 55px 20px 35px 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  max-width: 350px;
  width: 100%;
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#price {
  display: none;
}

.calcul__form-block .picture__btn {
  margin: 0 auto;
}

.calcul__form-block p {
  font-size: 14px;
  color: #000;
  margin-bottom: 40px;
}

.calcul__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.close-js_calc {
  position: absolute !important;
  top: 10px;
  right: 10px;
}

.calcul__form input {
  padding: 0 15px;
  height: 30px;
  border: 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-size: 14px;
  margin-bottom: 10px;
}

.calcul__form input:last-of-type {
  margin-bottom: 25px;
}

.calcul__form .btn {
  margin: 0 auto;
}

.picture__sub-title {
  margin-bottom: 20px;
  font-size: 14px;
}

.btn,
.picture__btn {
  width: 180px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #a1b38b;
  font-size: 14px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin: 0 10px;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  background: transparent;
  cursor: pointer;
}

.btn:before,
.picture__btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #a1b38b;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.btn:hover,
.picture__btn:hover {
  color: #fff;
}

.btn:hover:before,
.picture__btn:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.picture__count {
  width: 270px;
}

.picture__btn:first-child {
  margin: 0;
}

/* pop main */

.main__picture-trustBtn {
  height: 400px;
  width: 35px;
  cursor: pointer;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 999;
  background: #4e3b53;
  top: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  font-size: 14px;
}

.main__picture-trustBtn:before {
  content: '';
  background: url("../img/mainPop1.png");
  width: 20px;
  height: 20px;
  position: absolute;
  top: 40px;
}

.subMaganger-btn {
  right: 0;
}

.subTrust-btn {
  left: 0;
}

.subMaganger-btn:before {
  top: 10px;
  background: url("../img/mPop.png");
}

.popMenu {
  position: fixed;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 9999;
}

.popHead {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

.popHead span:first-child {
  font-family: "GothamPB", sans-serif;
  font-size: 20px;
}

.popTrust {
  max-width: 70%;
  width: 100%;
  margin: 0 auto;
  padding: 50px 100px 80px 100px;
  background: rgba(233, 232, 233, .9);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}

.popTrust .slick-next:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 50%;
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-right: -3px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.popTrust .slick-prev:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-left: -4px;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.fotorama img {
  display: block;
  margin: 0 auto;
}

.popTrust.activePop {
  opacity: 1;
  visibility: visible;
}

.popShow.popShowActive {
  z-index: 99;
}

.popTrus__picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popTrus__picture-vision {
  margin: 0 17px;
  margin-bottom: 15px;
}


.close {
  width: 22px;
  height: 22px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border: 1px solid #afbe9d;
  position: relative;
  display: block;
  cursor: pointer;
}

.close:before {
  content: '';
  width: 70%;
  height: 1px;
  background: #000;
  position: absolute;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  top: 9px;
  left: 3px;
}

.close:after {
  content: '';
  width: 70%;
  height: 1px;
  background: #000;
  position: absolute;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  top: 9px;
  left: 3px;
}

/* footer */

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: #4e3b53;
  padding: 8px 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
}

.footer__inner-logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
}

.footer__inner-addres li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.footer__inner-addres li:last-child {
  margin-bottom: 0;
}

.footer__inner-addres img,
.footer__inner-phone img {
  position: absolute;
  left: -25px;
  ;
}
.map {
  max-width: 1525px;
  width: 100%;
  margin: 0 auto 50px;
  height: 500px;
  padding: 0 15px;
}
.footer__inner-addres span {
  display: block;
  color: #fff;
  font-size: 14px;
}

.footer__inner-phone a {
  color: #fff;
  font-size: 14px;
}

.footer__inner-social li {
  margin-bottom: 10px;
}

.footer__inner-social li:last-child {
  margin-bottom: 0;
}

.footer__inner-social li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.footer__inner-social li a span {
  margin-left: 20px;
  display: block;
}


/* Logistic */

.main__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 130px;
  overflow: hidden;
}

.main__banner img {
  display: block;
  width: 50%;
  /* -o-object-fit: cover;
     object-fit: cover; */
}

.main__banner img.about-banner {
    width: 100%;
}

.pagintaions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 40px 0;
}

.pagintaions li {
  padding: 0 10px;
}

.pagintaions li:last-child {
  padding: 0;
}

.pagintaions li:first-child {
  padding-left: 0;
}

.pagintaions li a {
  font-size: 14px;
  color: #d3d3d3;
}

/* logistic boxes */

.work__box {
  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;
  margin-bottom: 30px;
}

.work__box-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.work__box-info {
  width: 40%;
}

.work__box-picture {
  width: 55%;
}

.work__box-picture.work__box-item.preview-img {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}


.work__box-picture.work__box-picture-widthImg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

}

.work__box-picture.work__box-picture-widthImg img {
    width: calc(50% - 8px);
}

.work__box-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 35px;
  text-align: left;
}

.work__box-text {
  font-size: 14px;
}

.work__box-picture img {
  display: block;
  width: 100%;
}

.logistic__form {
  background: #f7f7f7;
  padding: 40px 0;
}

.logistic__form-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logistic__form-item {
  width: 45%;
}

.logistic__formItem {
  width: 55%;
  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;
}


.logistic__formItem input {
  max-width: 300px;
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 0;
  outline: 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 14px;
}


.logistic__formItem input:nth-child(2),
.logistic__formItem input:nth-child(3) {
  margin-right: 7px;
}

.logistic__formItem .btn {
  margin: 0;
}


.result-calc__form {
  padding: 50px 40px 30px 40px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background: #fff;
  text-align: center;
  display: none;
}

.result-calc__form>span {
  display: block;
}

.result-calc__title {
  margin-bottom: 50px;
  font-size: 14px;
}

.result-calc__sum {
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 24px;
}

.result-calc__form .close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.result-calc__form .btn {
  margin: 0 auto;
}

/* uslugi */

.sub__banner img {
  width: 100%;
}

/* vakansii */

.jobs-item-title {
  font-size: 18px;
  display: inline-block;
  padding-right: 20px;
  cursor: pointer;
  margin-bottom: 20px;
  color: #000;
}

.arrow-hide:after {
  content: '';
  position: absolute;
  right: 0;
  top: 4px;
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #a1b38b;
  border-top: 1px solid #a1b38b;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arrow-show:after {
  content: '';
  width: 10px;
  height: 10px;
  border-left: 1px solid #a1b38b;
  border-bottom: 1px solid #a1b38b;
  position: absolute;
  display: block;
  top: 4px;
  right: 0px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.jobs-item {
  margin-bottom: 30px;
}

.jobs-info {
  display: none;
}

.jobs-info p {
  font-size: 14px;
  margin-bottom: 35px;
}

.job-box {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* product */

.product__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* product */

.title-block h3 {
  display: inline-block;
  padding-right: 40px;
}

.product__content-info {
  margin-bottom: 80px;
}

.product__whole-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product__whole-title {
  font-family: "GothamPB", sans-serif;
  margin-bottom: 20px;
  display: block;
}

.product__whole-box {
  width: 33%;
  margin-right: auto;
}

.product__whole-box:last-child {
  margin-right: 0;
}

.product__whole-box p {
  font-size: 14px;
}

.product__whole-box a {
  margin: 0;
  margin-top: 10px;
}

.product__list {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product__itemWrapper {
  width: 25%;
  margin-bottom: 40px;
}

.product__item {
  width: calc(100% - 20px);
  margin: 0 auto;
  display: block;
  height: 100%;
  padding: 15px;
  -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.2);
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  cursor: pointer;
}

.product__item:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.product__item:hover .product__item-title {
  margin-left: 20px;
}


.product__item a {
  display: inline-block;
}

.product__picture {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product__picture-first {
  position: relative;
  width: 150px;
  height: 150px;
}

.product__picture-logo {
  -webkit-transition: all ease 5s;
  transition: all ease 5s;
}

.product__picture-first img,
.product__picture-logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product__item-title {
  font-family: "GothamPB", sans-serif;
  font-size: 20px;
  transition: .3s;
  color: #636363;
  margin-bottom: 10px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}

.product__item-subTitle {
  font-size: 14px;
  margin-bottom: 25px;
  display: block;
}

.product__picture-first span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) perspective(1px) translateZ(0);
  -webkit-transform: translate(-50%, -50%) perspective(1px) translateZ(0);
  -moz-transform: translate(-50%, -50%) perspective(1px) translateZ(0);
  -ms-transform: translate(-50%, -50%) perspective(1px) translateZ(0);
  -o-transform: translate(-50%, -50%) perspective(1px) translateZ(0);
  z-index: 99;
  font-family: "GothamPB", sans-serif;
  font-size: 14px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.product__picture-first span:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}





.contact__list {
  font-style: normal;
  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;
  padding: 85px 75px;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.formShow-btn {
  position: absolute;
  left: 50%;
  top: -10px;
  max-width: 275px;
  width: 100%;
  height: 40px;
  background: #fff;
  border: 1px solid #a1b38b;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  cursor: pointer;
  display: none;
}

.contact__list-addres {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
    max-width: 400px;
    
}

.contact__form-block {
  max-width: 350px;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  padding: 55px 25px 35px 25px;
  z-index: 999;
  background: #fcfcfc;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
}

.contact__form-block .close {
  display: none;
}

.popShow {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: -1;
}

.managerMessage {
  max-width: 350px;
  width: 100%;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  padding: 55px 25px 35px 25px;
  z-index: 999;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: none;
}

.managerMessage .close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.managerMessage p {
  font-size: 14px;
  margin-bottom: 15px;
}

.contact__form-block span {
  position: absolute;
  right: 10px;
  top: 10px;
  display: none;
}

.contact__form-block.feedback-form .close {
  display: block;
}

.contact__form-block.feedback-form {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  background: #fff;
}

.managerText {
  width: 100%;
  height: 90px;
  resize: none;
  padding: 5px 15px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact__form-block p {
  font-size: 14px;
  color: #000;
  margin-bottom: 40px;
}

.contact__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.contact__list-item:last-child {
  margin-bottom: 0;
}

.contact__list-item img {
  margin-right: 10px;
}

.contact__form input {
  width: 100%;
  margin-bottom: 10px;
  height: 35px;
  padding: 0 15px;
  font-size: 14px;
  border: 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.contact__form input:last-of-type {
  margin-bottom: 20px;
}

.contact__form .btn {
  margin: 0 auto;
  margin-top: auto;
}

/*search-result*/

.search-form {
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.search-form input {
  width: 290px;
  height: 30px;
  background: rgba(211, 211, 211, .5);
  border: 2px solid #d3d3d3;
  padding: 0 15px;
  color: #ccc;
  font-size: 14px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  outline: 0;
}

.search-form button {
  border: 0;
  color: #d3d3d3;
  font-size: 14px;
  border-radius: 5px;
  background: #57415b;
  width: 80px;
  height: 30px;
  margin-left: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
}

.search_result {
  position: absolute;
  display: none;
  padding: 25px;
  padding-top: 35px;
  height: 440px;
  top: 100px;
  right: 0px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(100, 100, 100);
  z-index: 10;
  width: 300px;
}

.search_result .close {
  position: absolute;
  right: 10px;
  top: 10px;
}

.appcontent {
  height: calc(100% - 20px);
  overflow-y: auto;
}

.appcontent::-webkit-scrollbar {
  width: 2px;
}

.appcontent::-webkit-scrollbar-thumb {
  background-color: #000;
}

.appcontent tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.appcontent td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contact__block {
/*  margin: 50px 0 150px 0;*/
  margin: 113px 0 0 0;

}


@media screen and (max-width: 1599px) {
  .main__content .container {
    max-width: 1055px;
  }

  .logistic__formItem input {
    max-width: 200px;
  }

  .logistic__form-item p {
    font-size: 14px;
  }

  .logistic__formItem .btn {
    width: 110px;
    font-size: 14px;
  }

  .contact__list-addres {
    max-width: 220px;
    width: 100%;
  }
  .contact__list{
    padding: 45px 40px;
  }
}

@media screen and (max-width: 1366px) {

  /* Logo */
  .map {
  height: 260px;
  margin-bottom: 40px;
  max-width: 1366px;
  margin: 0 auto 40px;
  padding: 0;
}
  .header__logo {
    width: 110px;
    height: 150px;
  }

  .header__logo img {
    width: 50%;
  }

  .header__nav-list:last-child a:first-child {
    margin-left: 50px;
  }
  .contact__block {
/*  margin: 50px 0 150px 0;*/
  margin: 71px 0 0 0;

}

  .header__nav-list:first-child a:last-child {
    margin-right: 50px;
  }

  .main__banner {
    height: 90px;
  }

  .picture__title {
    font-size: 13px;
    display: block;
  }

  .main__picture-trustBtn {
    height: 70px;
    overflow: hidden;
  }

  .main__picture-trustBtn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #47354b;
    z-index: 20;
    display: block;
  }

  .main__picture-trustBtn:before {
    z-index: 21;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  /*my new change*/
  .main__vision, .main__inner-vision {
    height: 499px;

  }
  .picture__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;

  }
  
  .icon-map {
    width: 83%;
  }
  .big-rhomL {
    width: 33%;
    right: 15%;
    top: 18%;
    left: auto !important;
  }
  .mediumB-rhomL__right {
    width: 11% !important;
    right: 49.8%;
    top: 21.5%;
  }
  .small-rhomL__topTop {
    width: 7%;
    left: 50%;
    top: 16%;
  }
  .small-rhomL__centerRight {
    right: 66.8%;
    top: 43% !important;
    width: 8% !important;
    left: auto !important;
  }
  .medium-rhomR__rightTop {
    top: 6%;
    left: 60%;
    width: 12%;
  }
  .small-rhomL__rightCenter {
    right: 60%;
    width: 8% !important;
    top: 33.9% !important;
    left: auto !important;
  }
  .mediumB-rhomR__right {
    width: 12%;
  }
  .medium-rhomL__rightRight {
    right: 69%;
    top: 19%;
    width: 13% !important;
    left: auto !important;
  }
  .medium-rhomL__btm {
    right: 48.9%;
    left: auto !important;
    width: 17% !important;
    top: 46% !important;
  }
  .small-rhomL__btm {
    right: 41%;
    width: 7% !important;
    top: 62% !important;
    left: auto !important;
 }
 .medium-rhomL__rightTop {
    top: 9%;
    right: 59%;
    width: 11%;
    left: auto;
 }
 .big-rhomR {
    width: 33%;
    left: 16%;
 }
 .medium-rhomR__rightRight {
    top: 20%;
    left: 70%;
    width: 12%;
 }
 .small-rhomR__rightCenter {
    top: 31.9%;
    left: 62.8%;
    width: 7%;
 }
 .medium-rhomR__btm {
    top: 44%;
    left: 51%;
    width: 17%;
 }
 .small-rhomR__centerRight {
    top: 41%;
    left: 68.8%;
    width: 7%;
 }
 .small-rhomR__btm {
    top: 60%;
    left: 42%;
    width: 8%;
 }
 .main__content .container {
  max-width: 1366px;
  width: 100%;
  padding: 0 15px;
  background: transparent;  
 }
}

@media screen and (max-width: 1260px) {
  .popTrust {
    max-width: 93%;
  }
}

@media screen and (max-width: 1200px) {

  .product__item-title {
    font-size: 14px;
  }

  .product__item-subTitle {
    font-size: 12px;
  }

  .contact__list {
    padding: 85px 35px;
  }

  /*.contact__block {
    margin: 50px 0 85px 0;
  }*/

  .header__navR {
    padding-right: 135px;
  }
}

@media screen and (max-width: 1025px) {
  .logistic__form-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .logistic__formItem,
  .logistic__form-item {
    width: 70%;
  }

  .logistic__form-item {
    text-align: center;
    margin-bottom: 15px;
  }

  .logistic__formItem input {
    max-width: 220px;
  }

  .work__box-item {
    width: 49%;
  }

  .work__box-text {
    line-height: 20px;
  }

  .work__box-title {
    margin-bottom: 25px;
    font-size: 16px;
  }

  .logistic__form {
    padding: 25px 0;
  }

  .title-block h3 {
    font-size: 16px;
  }

  .header__logo {
    width: 60px;
    height: 80px;
  }

  .header__nav-list:last-child a:first-child {
    margin-left: 25px;
  }

  .header__nav-list:first-child a:last-child {
    margin-right: 25px;
  }

  .header__nav-list {
    width: 47%;
  }

  .main__banner {
    height: 80px;
  }

  .pagintaions {
    margin: 15px 0;
  }

  .main__content .container {
    max-width: 860px;
  }

  .jobs-item {
    margin-bottom: 0;
  }

  .jobs-item-title {
    font-size: 14px;
  }

  .contact__form-block {
    max-width: 320px;
    padding: 30px 25px 15px 25px;
  }

  .contact__list {
    padding: 55px 20px;
  }

  .contact__form-block p {
    margin-bottom: 15px;
  }
}


@media screen and (max-width: 970px) {

  .picture__item-info {
    background: rgba(241, 244, 233, .8);
  }

  .humWrapper {
    display: block;
  }

  .header__nav-list,
  .header__nav {
    -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;
  }

  .header__nav-list {
    width: 100%;
  }

  .header__nav {
    max-width: 200px;
    width: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    padding: 60px 40px 20px 40px;
    background: #58425d;
    z-index: 999999;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
  }

  .header__nav.active {
    left: -15px;
  }

  .header__nav-list a {
    margin-left: 0 !important;
    margin-bottom: 30px !important;
    color: #fff;
  }

  .header__navR {
    padding: 0;
  }

  .header__navR a:last-child {
    margin-bottom: 0 !important;
  }

  .footer__inner-social li a,
  .footer__inner-phone a,
  .footer__inner-addres span {
    font-size: 12px;
  }

  .header__change-list a {
    font-size: 14px;
  }

  .product__whole-box {
    width: 29%;
  }

  .product__whole-title {
    font-size: 14px;
  }

  .product__content-info {
    margin-bottom: 60px;
  }

  .work__box-title {
    margin-bottom: 20px;
  }

  .contact__list-addres a,
  .contact__list-addres span {
    font-size: 14px;
  }
}

@media screen and (max-width: 968px) {
  .main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main__picture {
    width: 100%;
    height: 50%;
  }

  .product__whole-boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .product__whole-box {
    width: 100%;
    margin: 20px auto !important;
    margin-top: 0 !important;
  }

  .product__itemWrapper {
    width: 33.333%;
  }
}

@media screen and (max-width: 800px) {

  .logistic__formItem,
  .logistic__form-item {
    width: 75%;
  }

  .contact__list-addres a,
  .contact__list-addres span {
    font-size: 12px;
  }

  .contact__list-addres {
    max-width: 150px;
  }

  .contact__form-block {
    display: block;
  }
}

@media screen and (max-width: 730px) {

  .logistic__formItem,
  .logistic__form-item {
    width: 100%;
  }

  .logistic__formItem input {
    max-width: 300px;
  }

  .work__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .work__box-item {
    width: 100%;
  }

  .work__box-text {
    margin-bottom: 10px;
  }

  .work__box-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .work__box-reverse .work__box-picture {
    margin-bottom: 20px;
  }

    .work__box-picture.work__box-picture-widthImg img:last-child {
        display: none;
    }

  .work__box-picture.work__box-picture-widthImg img {
      width: 100%;
  }

  .contact__form-block {
    display: none;
  }

  /* .contact__form-block span {
    display: block;
  } */

  .formShow-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .contact__list-addres {
    max-width: 180px;
  }
}

@media screen and (max-width: 620px) {
  .product__itemWrapper {
    width: 50%;
  }

  .popTrust {
    padding: 50px 30px 80px 30px;
  }
}

@media screen and (max-width: 570px) {
  .picture__sub-title {
    display: none !important;
  }

  .picture__title {
    margin-bottom: 0;
  }

  .picture__count,
  .picture__more {
    display: none;
  }

  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__inner-logo {
    display: none;
  }

  .footer__inner-social,
  .footer__inner-addres {
    max-width: 200px;
    width: 100%;
  }

  .footer__inner-social img {
    position: absolute;
    left: -25px;
  }

  .footer__inner-addres li:last-child li,
  .footer__inner-social li,
  .footer__inner-addres li {
    margin-bottom: 14px;
  }

  .footer__inner-addres span,
  .footer__inner-phone a {
    margin-left: 20px;
  }

  .footer {
    padding: 20px 15px;
  }

  .header__change-list {
    margin-left: 10px;
  }

  .pagintaions {
    margin-top: 30px;
  }

  .contact-us-icon {
    right: 15px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    background: rgba(151, 64, 172, 0.8);
  }

  .contact-us-icon:before, .contact-us-icon:after {
    background: rgba(182, 97, 202, 0.2);
  }

  .contact-us-icon:after {
    border-color: rgba(182, 97, 202, 0.2);
  }
}

@media screen and (max-width: 430px) {
  .product__itemWrapper {
    width: 100%;
  }

  .product__item {
    max-width: 240px;
    margin: 0 auto;
  }

  .logistic__formItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .logistic__formItem input {
    margin-bottom: 10px;
  }

  .contact__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 50px 15px 10px 15px;
  }

  .contact__list-addres {
    max-width: 170px;
    margin-bottom: 20px;
  }

  .contact__list-addres:last-child {
    margin-bottom: 0;
  }

  .contact__block {
    margin: 50px 0;
  }
}

#origautocomplete-list,
#destautocomplete-list {
  right: 0;
  position: absolute;
  left: 0;
  background: #fff;
  height: 200px;
  overflow-y: auto;
  z-index: 999;
}

#orig,
#dest {
  width: 100%;
}

.error-text {
  color: red;
  display: inline-block;
  text-align: center;
  margin-bottom: 5px;
  position: static !important;
}