* {
  box-sizing: border-box;
}

html, body {
  overflow: visible !important;
}

.title {
  font-size: 52px;
  line-height: 56px;
}

@media screen and (max-width: 1440px) {
  .title {
    font-size: 40px;
    line-height: 44px;
  }
}

@media screen and (max-width: 960px) {
  .title {
    font-size: 36px;
    line-height: 40px;
  }
}

@media screen and (max-width: 520px) {
  .title {
    font-size: 28px;
    line-height: 32px;
  }
}

body {
  font-family: "Gotham Pro", sans-serif;
  height: unset !important;
}

body.fixedPosition {
  position: fixed;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  border-left: 1px solid rgba(130, 130, 130, 0.2);
  border-right: 1px solid rgba(130, 130, 130, 0.2);
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 1300px) {
  .container {
    max-width: 90%;
  }
}

.container .center-line {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 100%;
  width: 0.5px;
  background: #828282;
  opacity: 0.2;
}

.container .left-line {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 75%;
  height: 100%;
  width: 0.5px;
  background: #828282;
  opacity: 0.2;
}

.container .right-line {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 25%;
  height: 100%;
  width: 0.5px;
  background: #828282;
  opacity: 0.2;
}

a {
  text-decoration: none;
  outline: none;
}

.main-wrapper .development .container {
  border-left: 1px solid rgba(134, 134, 134, 0.1);
  border-right: 1px solid rgba(134, 134, 134, 0.1);
}

.main-wrapper .development .container .center-line, .main-wrapper .development .container .right-line, .main-wrapper .development .container .left-line {
  background: rgba(134, 134, 134, 0.1);
  opacity: 1;
}

.main-wrapper .development .development-wrapper {
  position: relative;
  padding: 198px 0px 165px;
  display: flex;
}

@media screen and (max-width: 1440px) {
  .main-wrapper .development .development-wrapper {
    padding: 100px 0px 120px;
  }
}

@media screen and (max-width: 960px) {
  .main-wrapper .development .development-wrapper {
    padding: 60px 0px 80px;
  }
}

.main-wrapper .development .development-wrapper .square-1 {
  transform: translate(-50%, -50%);
  top: 85%;
  left: 49.6%;
}

.main-wrapper .development .development-wrapper .square-2 {
  right: -5px;
  top: 130px;
}

.main-wrapper .development .development-wrapper .square-1, .main-wrapper .development .development-wrapper .square-2, .main-wrapper .development .development-wrapper .square-3 {
  position: absolute;
  width: 10px;
  height: 40px;
  background: #000;
}

.main-wrapper .development .development-wrapper .word {
  position: absolute;
  font-size: 400px;
  line-height: 110%;
  font-family: "Gotham Pro Bold";
  color: #f7f7f7;
  line-height: 1;
  position: absolute;
  top: 12%;
  right: -10px;
  z-index: -1;
}

@media screen and (max-width: 1440px) {
  .main-wrapper .development .development-wrapper .word {
    font-size: 22vw;
    right: 3%;
    top: 6%;
  }
}

@media screen and (max-width: 768px) {
  .main-wrapper .development .development-wrapper .word {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .main-wrapper .development .development-wrapper {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 520px) {
  .main-wrapper .development .development-wrapper {
    padding: 60px 0px 70px;
  }
}

.main-wrapper .development .development-image {
  position: relative;
  width: 31.5%;
  margin-right: 135px;
}

@media screen and (max-width: 1440px) {
  .main-wrapper .development .development-image {
    width: 42%;
    margin-right: 90px;
  }
}

@media screen and (max-width: 1100px) {
  .main-wrapper .development .development-image {
    margin-right: 60px;
  }
}

@media screen and (max-width: 960px) {
  .main-wrapper .development .development-image {
    width: 100%;
  }
}

.main-wrapper .development .development-image img {
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .main-wrapper .development .development-image img {
    max-height: 746px;
    object-position: top;
  }
}

@media screen and (max-width: 520px) {
  .main-wrapper .development .development-image img {
    max-height: 415px;
  }
}

.main-wrapper .development .development__text {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  max-width: 97%;
}

@media screen and (max-width: 1440px) {
  .main-wrapper .development .development__text {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .main-wrapper .development .development__text {
    flex-direction: column;
    max-width: 100%;
    margin-top: 20px;
  }
}

.main-wrapper .development .development__questions {
  max-width: 336px;
}

@media screen and (max-width: 768px) {
  .main-wrapper .development .development__questions {
    max-width: 100%;
  }
}

.main-wrapper .development .development__questions p b,
.main-wrapper .development .development__questions .development_title {
  font-family: "Gotham Pro Bold";
  font-size: 16px;
  line-height: 180%;
  color: #171717;
}

.main-wrapper .development .development__questions p,
.main-wrapper .development .development__questions .development__answer {
  font-size: 14px;
  line-height: 18px;
  color: #747474;
  /* margin-bottom: 20px; */
}

.main-wrapper .development .development-about {
  width: 55%;
  padding: 50px 0px 0px;
}

@media screen and (max-width: 960px) {
  .main-wrapper .development .development-about {
    width: 100%;
    padding: 0px;
  }
}

.main-wrapper .development .development-about__business {
  font-family: "Gotham Pro Bold";
  font-size: 52px;
  line-height: 56px;
  color: #171717;
  margin-bottom: 16px;
}

@media screen and (max-width: 1440px) {
  .main-wrapper .development .development-about__business {
    font-size: 40px;
    line-height: 44px;
  }
}

@media screen and (max-width: 520px) {
  .main-wrapper .development .development-about__business {
    font-size: 28px;
    line-height: 32px;
  }
}

.main-wrapper .development .development-about__business span {
  font-family: "Gotham Pro Bold";
}

.main-wrapper .development .development-about__business span {
  display: block;
}

.main-wrapper .development .development-about__sub {
  font-size: 16px;
  line-height: 20px;
  color: #171717;
  position: relative;
  margin: 0px 0px 0px 30px;
  max-width: 247px;
}

@media screen and (max-width: 520px) {
  .main-wrapper .development .development-about__sub {
    font-size: 14px;
    max-width: 200px;
  }
}

.main-wrapper .development .development-about__sub::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -27px;
  width: 2px;
  height: 28px;
  background: #C6A57A;
}

.main-wrapper .development .development-about__sub span {
  font-family: "Gotham Pro Bold";
}

.main-wrapper .development .development-about__info {
  padding: 34px 0px;
  position: relative;
  max-width: 275px;
}

@media screen and (max-width: 1440px) {
  .main-wrapper .development .development-about__info {
    margin-right: 30px;
    max-width: 240px;
  }
}

@media screen and (max-width: 768px) {
  .main-wrapper .development .development-about__info {
    max-width: 100%;
    padding-bottom: 20px;
  }
}

.main-wrapper .development .development-about__info::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 3px;
  background: url(../img/development/quote.svg) no-repeat;
  background-size: 100%;
  width: 20px;
  height: 30px;
}

.main-wrapper .development .development-about__info p {
  font-size: 18px;
  line-height: 24px;
  color: #C6A57A;
}

@media screen and (max-width: 1440px) {
  .main-wrapper .development .development-about__info p {
    font-size: 16px;
    line-height: 22px;
  }
}

@media screen and (max-width: 520px) {
  .main-wrapper .development .development-about__info p {
    font-size: 14px;
    line-height: 18px;
  }
}

.main-wrapper .technology .right-line {
  z-index: -1;
}

.main-wrapper .technology .technology-wrapper {
  padding: 190px 0px 127px;
  position: relative;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1440px) {
  .main-wrapper .technology .technology-wrapper {
    padding: 100px 0px 90px;
  }
}

@media screen and (max-width: 960px) {
  .main-wrapper .technology .technology-wrapper {
    padding: 60px 0px;
  }
}

@media screen and (max-width: 768px) {
  .main-wrapper .technology .technology-wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 520px) {
  .main-wrapper .technology .technology-wrapper {
    padding: 60px 0px 40px;
  }
}

.main-wrapper .technology .technology-wrapper .square-1 {
  transform: translate(-50%, -50%);
  top: 90%;
  left: 49.6%;
}

@media screen and (max-width: 520px) {
  .main-wrapper .technology .technology-wrapper .square-1 {
    display: none;
  }
}

.main-wrapper .technology .technology-wrapper .square-1, .main-wrapper .technology .technology-wrapper .square-2, .main-wrapper .technology .technology-wrapper .square-3 {
  position: absolute;
  width: 10px;
  height: 40px;
  background: #C6A57A;
}

.main-wrapper .technology .technology-wrapper .technology-wrapper__zag {
  font-size: 52px;
  line-height: 56px;
  color: #fff;
  font-family: "Gotham Pro Bold";
  max-width: 495px;
}

@media screen and (max-width: 1440px) {
  .main-wrapper .technology .technology-wrapper .technology-wrapper__zag {
    font-size: 40px;
    line-height: 44px;
  }
}

@media screen and (max-width: 520px) {
  .main-wrapper .technology .technology-wrapper .technology-wrapper__zag {
    font-size: 28px;
    line-height: 32px;
  }
}

.main-wrapper .technology .technology-wrapper .technology-wrapper__zag span {
  color: #C6A57A;
}

.main-wrapper .technology .technology-section {
  max-width: 390px;
  padding-top: 8px;
}

@media screen and (max-width: 768px) {
  .main-wrapper .technology .technology-section {
    padding: 0px;
    margin-top: 40px;
  }
}

.main-wrapper .technology .techology-item {
  margin-bottom: 52px;
}

@media screen and (max-width: 768px) {
  .main-wrapper .technology .techology-item {
    margin-bottom: 35px;
  }
}

.main-wrapper .technology .techology-item .techology-item__title {
  font-size: 20px;
  line-height: 160%;
  color: #FFFFFF;
  font-family: "Gotham Pro Bold";
  display: flex;
  margin-bottom: 10px;
}

.main-wrapper .technology .techology-item .techology-item__title p {
  max-width: 270px;
  margin-left: 30px;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}

@media screen and (max-width: 520px) {
  .main-wrapper .technology .techology-item .techology-item__title p {
    margin-left: 30px;
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 450px) {
  .main-wrapper .technology .techology-item .techology-item__title {
    font-size: 20px !important;
  }
}

.main-wrapper .technology .techology-item span {
  font-size: 14px;
  line-height: 160%;
  color: #C6A57A;
  font-family: "Gotham Pro Bold";
  position: relative;
}

.main-wrapper .technology .techology-item span::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 7px;
  height: 3px;
  width: 22px;
  background: #b99a71;
}

.main-wrapper .technology .techology-item__about {
  font-size: 14px;
  line-height: 20px;
  color: #989898;
  max-width: 500px;
  margin-left: 46px;
}

@media screen and (max-width: 520px) {
  .main-wrapper .technology .techology-item__about {
    margin-left: 0px;
  }
}

.main-wrapper .demand__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px 0px 200px;
}

@media screen and (max-width: 1440px) {
  .main-wrapper .demand__wrap {
    padding: 0px 0px 120px;
  }
}

@media screen and (max-width: 1100px) {
  .main-wrapper .demand__wrap {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 960px) {
  .main-wrapper .demand__wrap {
    padding: 0px 0px 80px;
  }
}

@media screen and (max-width: 520px) {
  .main-wrapper .demand__wrap {
    padding: 20px 0px 70px;
  }
}

.main-wrapper .demand__photo {
  width: 43%;
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 1100px) {
  .main-wrapper .demand__photo {
    margin-top: 50px;
    width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .main-wrapper .demand__photo {
    margin-top: 30px;
  }
}

.main-wrapper .demand__photo img {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1100px) {
  .main-wrapper .demand__photo img {
    height: 560px;
    object-position: center;
  }
}

@media screen and (max-width: 768px) {
  .main-wrapper .demand__photo img {
    max-height: 380px;
    object-position: center;
  }
}

@media screen and (max-width: 520px) {
  .main-wrapper .demand__photo img {
    max-height: 315px;
    object-position: center;
  }
}

.main-wrapper .demand__info {
  width: 49%;
}

@media screen and (max-width: 1100px) {
  .main-wrapper .demand__info {
    width: 100%;
  }
}

.main-wrapper .demand__title {
  font-family: "Gotham Pro Bold";
  max-width: 400px;
}

@media screen and (max-width: 1440px) {
  .main-wrapper .demand__title {
    max-width: 385px;
  }
}

@media screen and (max-width: 960px) {
  .main-wrapper .demand__title {
    max-width: 460px;
  }
}

.main-wrapper .demand__items {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 42px;
}

@media screen and (max-width: 1100px) {
  .main-wrapper .demand__items {
    grid-template-columns: repeat(auto-fill, minmax(192px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .main-wrapper .demand__items {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-row-gap: 20px;
  }
}

@media screen and (max-width: 520px) {
  .main-wrapper .demand__items {
    margin-top: 30px;
  }
}

@media screen and (max-width: 460px) {
  .main-wrapper .demand__items {
    grid-template-columns: repeat(auto-fill, minmax(127px, 1fr));
  }
}

.main-wrapper .demand__number {
  display: inline;
  color: #C6A57A;
  font-size: 32px;
  font-family: "Gotham Pro Bold";
  position: relative;
  margin-left: -5px;
}

@media screen and (max-width: 1100px) {
  .main-wrapper .demand__number {
    margin-left: 5px;
  }
}

.main-wrapper .demand__number::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 2px;
  background-color: #C6A57A;
  bottom: 5px;
  right: -36px;
}

.main-wrapper .demand__number::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 100%;
  background-color: #fff;
  bottom: 5px;
  left: -5px;
}

.main-wrapper .demand__text {
  margin-top: 22px;
  max-width: 165px;
}

.main-wrapper .demand__ititle {
  font-family: "Gotham Pro Bold";
  font-size: 16px;
  line-height: 20px;
  color: #171717;
  margin-bottom: 10px;
}

.main-wrapper .demand__description {
  font-size: 14px;
  line-height: 18px;
  color: #747474;
}

.main-wrapper .offer .tabs-wrapper {
  width: 88%;
  margin: 45px auto 0px;
}

@media screen and (max-width: 768px) {
  .main-wrapper .offer .tabs-wrapper {
    width: 100%;
  }
}

.main-wrapper .offer .tabs-wrapper .active {
  color: #C6A57A;
}

.main-wrapper .offer .tabs {
  display: flex;
  justify-content: space-around;
  padding-bottom: 10px;
  border-bottom: 2px solid #C6A57A;
}

.main-wrapper .offer .tab {
  font-family: "Gotham Pro Bold";
  cursor: pointer;
}

@media screen and (max-width: 520px) {
  .main-wrapper .offer .tab {
    font-size: 14px;
  }
}

.main-wrapper .offer .tab_item {
  display: none;
}

.main-wrapper .offer .tab_item:first-child {
  display: block;
}

.main-wrapper .offer .tab_content {
  padding-top: 33px;
}

.main-wrapper .offer .container {
  border-left: 1px solid rgba(134, 134, 134, 0.1);
  border-right: 1px solid rgba(134, 134, 134, 0.1);
}

.main-wrapper .offer .container .center-line, .main-wrapper .offer .container .right-line, .main-wrapper .offer .container .left-line {
  background: rgba(134, 134, 134, 0.1);
  opacity: 1;
}

.main-wrapper .offer .offer-wrapper {
  padding: 100px 0px 115px;
  width: 81%;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .main-wrapper .offer .offer-wrapper {
    width: 90%;
    padding: 50px 0px 115px;
  }
}

@media screen and (max-width: 768px) {
  .main-wrapper .offer .offer-wrapper {
    width: 100%;
    padding: 40px 0px;
  }
}

.main-wrapper .offer .offer-wrapper .offer-title {
  font-size: 40px;
  line-height: 122.2%;
  color: #171717;
}

@media screen and (max-width: 768px) {
  .main-wrapper .offer .offer-wrapper .offer-title {
    font-size: 32px;
    line-height: 38px;
  }
}

.main-wrapper .offer .offer-wrapper .offer-title span {
  display: block;
  color: #C6A57A;
  font-family: "Gotham Pro Bold";
}

.main-wrapper .offer .tab_item__header {
  display: flex;
  align-items: center;
  margin-bottom: 23px;
}

.main-wrapper .offer .tab_item__header img {
  margin-right: 20px;
}

.main-wrapper .offer .tab_item__header span {
  font-size: 24px;
  line-height: 160%;
  font-family: "Gotham Pro Bold";
  color: #C6A57A;
}

@media screen and (max-width: 768px) {
  .main-wrapper .offer .tab_item__header span {
    font-size: 20px;
    line-height: 24px;
  }
}

.main-wrapper .offer .tab-item__info {
  font-size: 16px;
  line-height: 150%;
  color: #171717;
  margin-bottom: 23px;
}

@media screen and (max-width: 560px) {
  .main-wrapper .offer .tab-item__info {
    font-size: 14px;
  }
}

.main-wrapper .footer {
  color: #fff;
  background: #171717;
}

.main-wrapper .footer .container {
  border-left: 1px solid rgba(134, 134, 134, 0.1);
  border-right: 1px solid rgba(134, 134, 134, 0.1);
}

.main-wrapper .footer .footer-copywrite {
  font-size: 13px;
  line-height: 18px;
  color: #B6B6B6;
}

.main-wrapper .footer .footer-wrapper {
  padding: 52px 0px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 1100px) {
  .main-wrapper .footer .footer-wrapper {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 520px) {
  .main-wrapper .footer .footer-wrapper {
    justify-content: center;
    flex-direction: column;
  }
}

.main-wrapper .footer .footer-logo {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 520px) {
  .main-wrapper .footer .footer-logo {
    align-items: center;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .main-wrapper .footer .footer-logo {
    width: 100%;
    justify-content: center;
    text-align: center;
    order: 1;
    margin-top: 30px;
  }
}

.main-wrapper .footer .footer-logo img {
  margin-bottom: 23px;
}

.main-wrapper .footer .footer-logo svg:hover path {
  fill: #C6A57A;
  transition: all 0.2s;
}

.main-wrapper .footer .footer-social {
  display: flex;
  justify-content: space-between;
  max-width: 145px;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .main-wrapper .footer .footer-social {
    margin: 12px auto 0px;
  }
}

.main-wrapper .footer .footer-social a {
  outline: none;
}

@media screen and (max-width: 520px) {
  .main-wrapper .footer .footer-social a {
    margin: 0px 5px;
  }
}

.main-wrapper .footer .footer-social a:hover svg path {
  fill: #fff;
  transition: all 0.2s;
}

@media screen and (max-width: 768px) {
  .main-wrapper .footer .footer-contacts {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media screen and (max-width: 520px) {
  .main-wrapper .footer .footer-contacts {
    text-align: center;
  }
}

.main-wrapper .footer .footer-contacts p {
  margin-bottom: 3px;
}

@media screen and (max-width: 1100px) {
  .main-wrapper .footer .footer-contacts p {
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 768px) {
  .main-wrapper .footer .footer-contacts p {
    margin-bottom: 20px;
  }
}

.main-wrapper .footer .footer-contacts a {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

@media screen and (max-width: 560px) {
  .main-wrapper .footer .footer-contacts a {
    font-size: 14px;
  }
}

.main-wrapper .footer .footer-contacts a:hover {
  color: #C6A57A;
  transition: 0.3s;
}

.main-wrapper .footer .footer-adress {
  font-size: 14px;
  line-height: 150%;
  margin: 0px 10px;
}

.main-wrapper .footer .footer-adress span {
  display: block;
}

.main-wrapper .footer .footer-adress a {
  font-family: "Gotham Pro Medium";
  text-transform: uppercase;
  display: flex;
  margin-top: 10px;
  color: #C6A57A;
  align-items: center;
  max-width: 155px;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .main-wrapper .footer .footer-adress a {
    margin: 20px auto;
  }
}

.main-wrapper .footer .footer-adress a:hover {
  color: #c7c7c7;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .main-wrapper .footer .footer-adress {
    width: 100%;
    margin: 20px auto 0px;
    text-align: center;
  }
}

@media screen and (max-width: 1100px) {
  .main-wrapper .footer .footer-project {
    width: 100%;
    margin: 20px auto 0px;
    text-align: center;
  }
}

.main-wrapper .footer .footer-project button {
  display: inline-block;
  font-size: 12px;
  line-height: 160%;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "Gotham Pro Medium";
  border: 2px solid #FFFFFF;
  padding: 12px 25px;
  position: relative;
  background: transparent;
}

.main-wrapper .footer .footer-project button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.5s;
}

.main-wrapper .footer .footer-project button:hover {
  border: 2px solid #C6A57A;
  color: #C6A57A;
  transition: all 0.3s;
}

.main-wrapper .footer .footer-project button:hover::before {
  background: #C6A57A;
  left: 95%;
  transition: all 0.5s;
}

.main-about {
  background-color: #171717;
  position: relative;
  z-index: 1;
}

.main-about .info-container.container {
  height: calc(100vh - 43px);
}

.main-about .header .container {
  z-index: unset;
}

.main-about__bg {
  position: relative;
}

.main-about__bg .main-left {
  position: absolute;
  top: 45%;
  left: 0%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 520px) {
  .main-about__bg .main-left {
    display: none;
  }
}

.main-about__bg .main-left a {
  display: inline-block;
  font-size: 12px;
  line-height: 11px;
  text-transform: uppercase;
  color: #FFFFFF;
  transform: rotate(-90deg);
  position: relative;
  outline: none;
}

.main-about__bg .main-left a::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -32px;
  width: 21px;
  height: 2px;
  background: #fff;
}

.main-about__bg .main-left a:hover {
  color: #C6A57A;
  transition: all 0.3s;
}

.main-about__bg .main-left a:hover::before {
  background: #C6A57A;
  transition: all 0.3s;
}

.main-about__bg .main-right {
  position: absolute;
  top: 49%;
  right: 0%;
  transform: translate(0%, -50%);
  width: 42px;
}

@media screen and (max-width: 520px) {
  .main-about__bg .main-right {
    display: none;
  }
}

.main-about__bg .main-right a {
  display: inline-block;
  font-size: 12px;
  line-height: 11px;
  text-transform: uppercase;
  color: #FFFFFF;
  transform: rotate(-90deg);
  outline: none;
}

.main-about__bg .main-right a::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -32px;
  width: 21px;
  height: 2px;
  background: #fff;
}

.main-about__bg .main-right a:hover {
  color: #C6A57A;
  transition: all 0.3s;
}

.main-about__bg .main-right a:hover::after {
  background: #C6A57A;
  transition: all 0.3s;
}

.main-about__bg .info {
  padding: 136px 0px 0px;
  z-index: 2;
}

@media screen and (max-width: 1440px) {
  .main-about__bg .info {
    padding: 80px 0px 0px;
  }
}

.main-about__bg .info-header {
  width: 65%;
  display: flex;
  flex-direction: column;
  padding-right: 13px;
}

@media screen and (max-width: 1440px) {
  .main-about__bg .info-header {
    width: 58%;
  }
}

@media screen and (max-width: 1200px) {
  .main-about__bg .info-header {
    margin-left: 50px;
  }
}

@media screen and (max-width: 768px) {
  .main-about__bg .info-header {
    width: 65%;
    align-items: flex-start;
  }
}

@media screen and (max-width: 520px) {
  .main-about__bg .info-header {
    margin-left: 0px;
    width: 100%;
  }
}

.main-about__bg .info-header h1 {
  font-size: 60px;
  line-height: 64px;
  color: #FFFFFF;
  font-family: "Gotham Pro Bold";
  max-width: 590px;
  margin: 0 auto;
  z-index: 1;
}

@media screen and (max-width: 1440px) {
  .main-about__bg .info-header h1 {
    font-size: 48px;
    line-height: 54px;
    max-width: 495px;
  }
}

@media screen and (max-width: 768px) {
  .main-about__bg .info-header h1 {
    font-size: 32px;
    line-height: 40px;
    max-width: 300px;
    margin: 0px;
  }
}

.main-about__bg .info-header__sub {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 32px 24px 27px 144px;
  max-width: 285px;
  z-index: 2;
}

@media screen and (max-width: 1000px) {
  .main-about__bg .info-header__sub {
    margin: 27px 0px 27px 50px;
  }
}

@media screen and (max-width: 768px) {
  .main-about__bg .info-header__sub {
    max-width: 230px;
    font-size: 14px;
  }
}

@media screen and (max-width: 520px) {
  .main-about__bg .info-header__sub {
    margin: 25px 0px 20px 90px;
  }
}

.main-about__bg .info-header__sub::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -40px;
  width: 2px;
  height: 48px;
  background: #C6A57A;
}

@media screen and (max-width: 520px) {
  .main-about__bg .info-header__sub::before {
    left: -25px;
  }
}

.main-about__bg .gold {
  color: #C6A57A;
}

.main-about__bg .info__wrap {
  position: absolute;
  bottom: 60px;
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .main-about__bg .info__wrap {
    bottom: 40px;
  }
}

.main-about__bg .info-contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 520px) {
  .main-about__bg .info-contacts {
    padding: 60px 0px 0px;
  }
}

.main-about__bg .info-contacts__social {
  max-width: 140px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 520px) {
  .main-about__bg .info-contacts__social {
    max-width: 125px;
  }
}

.main-about__bg .info-contacts__social svg:hover path {
  fill: #C6A57A;
  transition: all 0.2s;
}

.main-about__bg .info-contacts__mouse {
  position: absolute;
  bottom: 25%;
  left: 49%;
  transform: translate(-50%, 0%);
  animation: spin 2s infinite linear;
}

@media screen and (max-width: 520px) {
  .main-about__bg .info-contacts__mouse {
    display: none;
  }
}

.main-about__bg .info-contacts__mouse svg:hover rect:first-child {
  stroke: #c7c7c7;
  transition: all 0.2s;
}

.main-about__bg .info-contacts__mouse a {
  outline: none;
}

@media screen and (max-width: 960px) {
  .main-about__bg .info-contacts__tel {
    display: none;
  }
}

.main-about__bg .info-contacts__tel p {
  font-size: 10px;
  line-height: 10px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.main-about__bg .info-contacts__tel p a {
  color: #FFFFFF;
  display: inline-block;
  padding-left: 5px;
  padding-right: 0px;
}

.main-about__bg .info-contacts__tel p a:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.main_services .main-about__black {
  background: url(../img/services/services-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.main_services .main-about__bg .info {
  padding: 73px 0px 0px;
}

@media screen and (max-width: 1440px) {
  .main_services .main-about__bg .info {
    padding: 50px 0px 0px;
  }
}

@media screen and (max-width: 520px) {
  .main_services .main-about__bg .info {
    padding: 40px 0px 0px;
  }
}

.main_services .main-about__bg .info-header {
  width: 57%;
}

@media screen and (max-width: 520px) {
  .main_services .main-about__bg .info-header {
    width: 100%;
  }
}

.main_services .main-about__bg .info-header h1 {
  max-width: 490px;
}

@media screen and (max-width: 1440px) {
  .main_services .main-about__bg .info-header h1 {
    max-width: 450px;
    max-width: 450px;
    margin: 0px 0px 0px 105px;
  }
}

@media screen and (max-width: 960px) {
  .main_services .main-about__bg .info-header h1 {
    margin: 0px 0px 0px 10px;
  }
}

@media screen and (max-width: 520px) {
  .main_services .main-about__bg .info-header h1 {
    max-width: 250px;
    margin: 0px;
  }
}

.main_services .main-about__bg .info-header__sub::before {
  height: 90%;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0px;
}

@media screen and (max-width: 840px) {
  .header-wrapper {
    padding: 12px 0px;
  }
}

.header-wrapper .header__call {
  display: none;
}

@media screen and (max-width: 460px) {
  .header-wrapper .header__call {
    display: block;
  }
}

.header-wrapper .header__phone {
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .header-wrapper .header__phone {
    font-size: 12px;
    line-height: 14px;
  }
}

@media screen and (max-width: 840px) {
  .header-wrapper .header__phone {
    margin-right: 70px;
  }
}

@media screen and (max-width: 520px) {
  .header-wrapper .header__phone {
    margin-right: 60px;
  }
}

@media screen and (max-width: 840px) {
  .header-wrapper .header__phone_desktop {
      display: none;
    color: transparent;
    background: url(../img/banner/phone.svg) no-repeat;
    width: 24px;
    height: 24px;
    background-size: contain;
  }
}

.header-wrapper .header__phone a {
  outline: none;
  color: #fff;
}

@media screen and (max-width: 840px) {
  .header-wrapper .header__phone a {
    color: transparent;
    display: none;
  }
}

.header-wrapper .header__phone a:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

@media screen and (max-width: 840px) {
  .header-wrapper .header__phone a:hover {
    color: transparent;
  }
}

.header-logo {
  margin-right: 30px;
}

.header__side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 860px;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .header__side {
    max-width: 700px;
  }
}

@media screen and (max-width: 960px) {
  .header__side {
    max-width: 600px;
  }
}

@media screen and (max-width: 840px) {
  .header__side {
    max-width: 200px;
  }
}

.header-menu {
  width: 100%;
  max-width: 550px;
}

@media screen and (max-width: 1200px) {
  .header-menu {
    max-width: 460px;
  }
}

@media screen and (max-width: 960px) {
  .header-menu {
    max-width: 430px;
  }
  .header-logo img{
      width: 130px;
  }
}

.header-menu a {
  outline: none;
}

.navigation-header #menu__toggle {
  display: none;
}

.list-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .list-navigation {
    align-items: flex-start;
  }
}

.list-navigation ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .list-navigation ul {
    align-items: flex-start;
  }
}

@media screen and (max-width: 840px) {
  .list-navigation ul {
    display: block;
  }
}

.list-navigation__item {
  border: 1px solid transparent;
}

.list-navigation__item a, .list-navigation__item p {
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
}

@media screen and (max-width: 1200px) {
  .list-navigation__item a, .list-navigation__item p {
    font-size: 12px;
    line-height: 14px;
  }
}

@media screen and (max-width: 840px) {
  .list-navigation__item a, .list-navigation__item p {
    font-size: 32px;
    line-height: 24px;
  }
}

.list-navigation__item a svg {
  margin-top: 40px;
}

@media screen and (max-width: 840px) {
  .list-navigation__item a svg {
    width: 36px;
    height: 30px;
  }
}

.list-navigation__item a:hover {
  color: #C6A57A;
  transition: all 0.3s;
}

.services {
  position: relative;
  overflow-x: hidden;
}

.services__bg {
  position: absolute;
  font-family: "Gotham Pro Bold";
  font-size: 300px;
  line-height: 110%;
  color: rgba(23, 23, 23, 0.04);
  top: 50%;
  right: 0px;
  transform: translate(6%, -50%);
}

@media screen and (max-width: 1440px) {
  .services__bg {
    font-size: 210px;
  }
}

@media screen and (max-width: 960px) {
  .services__bg {
    font-size: 24vw;
  }
}

@media screen and (max-width: 768px) {
  .services__bg {
    display: none;
  }
}

.services__wrap {
  padding: 200px 0px 0px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 88px;
}

@media screen and (max-width: 1440px) {
  .services__wrap {
    padding: 100px 0px 0px;
  }
}

@media screen and (max-width: 960px) {
  .services__wrap {
    padding: 60px 0px 0px;
  }
}

@media screen and (max-width: 768px) {
  .services__wrap {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 520px) {
  .services__wrap {
    padding: 60px 0px 0px;
    margin-bottom: 30px;
  }
}

.services__photo {
  width: 43%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .services__photo {
    width: 75%;
  }
  .services__photo::after {
    content: 'services';
    position: absolute;
    bottom: -70px;
    right: 0px;
    width: 88%;
    font-size: 22vw;
    font-family: "Gotham Pro Bold";
    line-height: 110%;
    color: rgba(23, 23, 23, 0.04);
    z-index: -1;
  }
}

@media screen and (max-width: 520px) {
  .services__photo {
    width: 100%;
  }
  .services__photo::after {
    bottom: -60px;
    width: 90%;
  }
}

.services__photo img {
  width: 100%;
  object-fit: cover;
}

.services__info {
  width: 49%;
  padding-top: 25px;
}

@media screen and (max-width: 768px) {
  .services__info {
    padding: 0px;
    margin-bottom: 30px;
    width: 80%;
  }
}

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

.services__suptitle {
  font-family: "Gotham Pro Bold";
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #C6A57A;
  margin-bottom: 15px;
}

.services__title {
  font-family: "Gotham Pro Bold";
  max-width: 420px;
  margin-bottom: 12px;
}

@media screen and (max-width: 520px) {
  .services__title {
    max-width: 230px;
    margin-bottom: 25px;
  }
}

.services__about {
  font-size: 16px;
  line-height: 20px;
  color: #171717;
  margin-left: 23px;
  position: relative;
  max-width: 320px;
}

.services__about::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 52px;
  background-color: #C6A57A;
  top: 0px;
  left: -23px;
}

.services__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 188px;
}

@media screen and (max-width: 1440px) {
  .services__items {
    padding: 0px 0px 90px;
  }
}

@media screen and (max-width: 960px) {
  .services__items {
    padding: 0px 0px 60px;
  }
}

@media screen and (max-width: 768px) {
  .services__items {
    flex-direction: column;
  }
}

@media screen and (max-width: 520px) {
  .services__items {
    padding: 0px 0px 50px;
  }
}

.services__item {
  width: 32%;
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .services__item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.services__icon {
  margin: 10px 18px 0px 0px;
}

.services__name {
  font-family: "Gotham Pro Bold";
  font-size: 16px;
  line-height: 180%;
  color: #171717;
  margin-bottom: 6px;
}

.services__description p,
.services__text {
  font-size: 14px;
  line-height: 18px;
  color: #747474;
  margin-bottom: 15px;
}

.services__description p b {
  font-family: "Gotham Pro Bold";
  color: #171717;
}

.services__description ul li {
  position: relative;
}

.services__description ul li {
  font-size: 14px;
  line-height: 18px;
  color: #747474;
  margin: 0px 0px 10px 10px;
}
.services__description ul li a {
  display: inline-block;
  outline: none;
  font-size: 14px;
  line-height: 18px;
  color: #747474;
}

.services__description ul li a:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.services__description ul li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -10px;
  width: 3px;
  height: 3px;
  background: #C6A57A;
  border-radius: 50%;
}

@keyframes spin {
  0% {
    transform: translate3d(0, -30%, 0);
  }
  50% {
    transform: translate3d(0, 30%, 0);
  }
  100% {
    transform: translate3d(0, -30%, 0);
  }
}

.menu__item.social__nav, .contacts-menu {
  display: none;
}

@media screen and (max-width: 840px) {
  .navigation-header #menu__toggle {
    display: block;
  }
  .contacts-menu {
    padding: 0px 14px;
  }
  .contacts-menu__title {
    font-family: "Gotham Pro Medium";
    font-size: 48px;
    line-height: 56px;
    color: #FFFFFF;
    margin-bottom: 22px;
  }
  .contacts-menu__item {
    margin-bottom: 20px;
  }
  .contacts-menu__suptitle {
    font-size: 16px;
    line-height: 40px;
    color: #949494;
    margin-bottom: 10px;
  }
  .contacts-menu__text {
    display: block;
    font-family: "Gotham Pro Medium";
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 5px;
  }
  .contacts-menu__text span {
    color: #C6A57A;
  }
  .contacts-menu__text_underline {
    text-decoration: underline;
    display: block;
  }
  .contacts-menu__social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 180px;
  }
  .menu__item.social__nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 270px;
  }
  #menu__toggle {
    opacity: 0;
  }
  #menu__toggle:checked~.menu__btn {
    width: 33px;
  }
  #menu__toggle:checked~.menu__btn>span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked~.menu__btn>span::before {
    top: 0;
    transform: rotate(0);
    width: 33px;
  }
  #menu__toggle:checked~.menu__btn>span::after {
    top: 0;
    transform: rotate(90deg);
    width: 33px;
  }
  #menu__toggle:checked~.menu__box {
    visibility: visible;
    left: 0;
  }
  .menu__box.next {
    visibility: visible;
    left: 0;
  }
  #menu__toggle:checked~.menu__btn {
    position: fixed;
    right: 14px;
  }
  .menu__btn {
    display: flex;
    align-items: center;
    position: absolute;
    top: 12px;
    right: 0px;
    width: 42px;
    height: 26px;
    cursor: pointer;
    z-index: 999;
  }
  .menu__btn>span, .menu__btn>span::before, .menu__btn>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition-duration: .25s;
  }
  .menu__btn>span::before {
    content: '';
    top: -7px;
    background-color: #fff;
    width: 31px;
    right: 0px;
  }
  .menu__btn>span::after {
    content: '';
    top: 7px;
    background-color: #fff;
  }
  .menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    overflow-y: scroll;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0px 0 60px;
    list-style: none;
    background-color: #292929;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
    transition-duration: .25s;
    z-index: 99;
  }
  .menu__item {
    font-family: "Gotham Pro Medium";
    display: block;
    padding: 12px 14px;
    color: #333;
    font-size: 48px;
    line-height: 46px;
    text-decoration: none;
    transition-duration: .25s;
  }
}

@media screen and (max-width: 450px) {
  .container {
    max-width: 90%;
  }
  .main-about__bg {
    background-size: 93%;
  }
}

.main-landing__bg {
  background: url(../img/header2.png) no-repeat top -17% left 12%;
  background-size: 45%;
  background-position: 22% 82%;
}

@media screen and (max-width: 960px) {
  .main-landing__bg {
    background-position: -4% 81%;
  }
}

@media screen and (max-width: 520px) {
  .main-landing__bg {
    background-position: 100% 47%;
    background-size: 65%;
  }
}

.main-landing .landing-info {
  display: flex;
}

.main-landing .info-header {
  max-width: 400px;
}

@media screen and (max-width: 1200px) {
  .main-landing .info-header {
    margin-left: 0px;
  }
}

.main-landing__info {
  width: 50%;
}

@media screen and (max-width: 960px) {
  .main-landing__info {
    width: 38%;
  }
}

@media screen and (max-width: 520px) {
  .main-landing__info {
    width: 0%;
  }
}

.main-landing .info-header__sub::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -50px;
  width: 40px;
  height: 2px;
  background: #fff;
}

.landing .questions-landing {
  background: #fff;
}

.landing .questions-landing .questions-header .questions-title, .landing .questions-landing .questions-header span, .landing .questions-landing .questions-caption p, .landing .questions-landing .questions-text {
  color: #171713 !important;
}

.landing .info-header__sub {
  margin: 27px 24px;
}

.landing .offer-landing {
  background: #171713;
}

.landing .offer-landing .offer-wrapper .offer-title {
  color: #fff;
}

.landing .offer-landing .tab, .landing .offer-landing .tab_item__header, .landing .offer-landing .tab-item__info {
  color: #fff;
}

.landing .need .container {
  border-left: 1px solid rgba(134, 134, 134, 0.1);
  border-right: 1px solid rgba(134, 134, 134, 0.1);
}

.landing .need .container .center-line, .landing .need .container .right-line, .landing .need .container .left-line {
  background: rgba(134, 134, 134, 0.1);
  opacity: 1;
}

.landing .need .need-wrapper {
  padding: 100px 0px 48px;
}

@media screen and (max-width: 768px) {
  .landing .need .need-wrapper {
    padding: 60px 0px 40px;
  }
}

@media screen and (max-width: 520px) {
  .landing .need .need-wrapper {
    padding: 40px 0px;
  }
}

.landing .need .need-wrapper .need-wrapper__zag {
  font-size: 40px;
  line-height: 122.2%;
  color: #171717;
  margin-bottom: 46px;
}

@media screen and (max-width: 768px) {
  .landing .need .need-wrapper .need-wrapper__zag {
    font-size: 32px;
    line-height: 38px;
  }
}

.landing .need .need-wrapper .need-wrapper__zag span {
  font-family: "Gotham Pro Bold";
  display: block;
}

.landing .need .need-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 94%;
}

.landing .need .need-item {
  width: 28%;
  margin-bottom: 78px;
}

@media screen and (max-width: 768px) {
  .landing .need .need-item {
    width: 45%;
    margin-bottom: 40px;
  }
}

.landing .need .need-item__number {
  display: inline-block;
  font-size: 36px;
  line-height: 160%;
  color: #171717;
  font-family: "Gotham Pro Bold";
  transform: rotate(-90deg);
}

@media screen and (max-width: 768px) {
  .landing .need .need-item__number {
    font-size: 28px;
  }
}

.landing .need .need-item__wrap {
  display: inline;
  border-bottom: 2px solid #171717;
  padding-bottom: 15px;
}

.landing .need .need-item__info {
  margin-top: 37px;
  font-size: 16px;
  line-height: 180%;
  color: #171717;
}

@media screen and (max-width: 560px) {
  .landing .need .need-item__info {
    font-size: 14px;
  }
}

.cost {
  background: #1d1d1d;
  background-size: cover;
  z-index: -1;
}

.cost .cost__bg {
  background-repeat: no-repeat;
  background-size: 58%;
  background-position: right 10% top;
}

@media screen and (max-width: 1440px) {
  .cost .cost__bg {
    background-size: 53%;
  }
}

@media screen and (max-width: 640px) {
  .cost .cost__bg {
    background-position: right 0% top;
  }
}

@media screen and (max-width: 520px) {
  .cost .cost__bg {
    background-size: 90%;
    background-position: right -20% top 3%;
  }
}

.cost .container .right-line {
  z-index: -2;
}

.cost .cost-wrapper {
  padding: 125px 0px 168px;
}

@media screen and (max-width: 1440px) {
  .cost .cost-wrapper {
    padding: 40px 0px 100px;
  }
}

@media screen and (max-width: 768px) {
  .cost .cost-wrapper {
    padding: 0px 0px 60px;
  }
}

.cost .cost-wrapper .title {
  font-family: "Gotham Pro Bold";
}

.cost .cost-wrapper .cost-wrapper__zag {
  color: #fff;
  max-width: 650px;
  padding-top: 65px;
  margin-bottom: 25px;
}

@media screen and (max-width: 1440px) {
  .cost .cost-wrapper .cost-wrapper__zag {
    max-width: 550px;
  }
}

@media screen and (max-width: 768px) {
  .cost .cost-wrapper .cost-wrapper__zag {
    max-width: 400px;
  }
}

@media screen and (max-width: 520px) {
  .cost .cost-wrapper .cost-wrapper__zag {
    max-width: 300px;
    padding-top: 60px;
  }
}

.cost .cost-wrapper .cost-wrapper__zag .cost-upper {
  text-transform: uppercase;
}

.cost .cost-wrapper .cost-wrapper__zag .gold {
  color: #C6A57A;
  font-family: "Gotham Pro Bold";
}

.cost .cost-wrapper .cost-addition {
  font-size: 16px;
  line-height: 210%;
  color: #828282;
  margin: 120px 0px 0px 64px;
  max-width: 550px;
}

@media screen and (max-width: 768px) {
  .cost .cost-wrapper .cost-addition {
    margin: 50px 0px 0px 50px;
  }
}

@media screen and (max-width: 520px) {
  .cost .cost-wrapper .cost-addition {
    font-size: 14px;
  }
}

.cost .cost-wrapper .cost-garanty {
  padding-top: 200px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1440px) {
  .cost .cost-wrapper .cost-garanty {
    padding-top: 150px;
  }
}

@media screen and (max-width: 960px) {
  .cost .cost-wrapper .cost-garanty {
    padding-top: 80px;
    flex-direction: column;
  }
}

@media screen and (max-width: 520px) {
  .cost .cost-wrapper .cost-garanty {
    padding-top: 60px;
  }
}

.cost .cost-wrapper .cost-garanty__wrapper {
  display: flex;
}

.cost .cost-wrapper .cost-garanty .cost-title {
  font-family: "Gotham Pro Bold";
  color: #FFFFFF;
  max-width: 568px;
  position: relative;
}

.cost .cost-wrapper .cost-garanty .cost-title::after {
  content: '4';
  position: absolute;
  top: 180px;
  right: 0px;
  font-size: 90vh;
  color: rgba(255, 255, 255, 0.03);
}

@media screen and (max-width: 960px) {
  .cost .cost-wrapper .cost-garanty .cost-title::after {
    font-size: 60vh;
  }
}

@media screen and (max-width: 1440px) {
  .cost .cost-wrapper .cost-garanty .cost-title {
    max-width: 420px;
  }
}

@media screen and (max-width: 960px) {
  .cost .cost-wrapper .cost-garanty .cost-title {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 520px) {
  .cost .cost-wrapper .cost-garanty .cost-title {
    margin-bottom: 25px;
  }
}

.cost .cost-wrapper .cost-garanty .cost-title span {
  color: #C6A57A;
}

.cost .cost-wrapper .garanty-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 49%;
}

@media screen and (max-width: 960px) {
  .cost .cost-wrapper .garanty-section {
    width: 100%;
    flex-wrap: wrap;
  }
}

.cost .cost-wrapper .garanty-item {
  width: 47%;
  margin-bottom: 25px;
}

@media screen and (max-width: 560px) {
  .cost .cost-wrapper .garanty-item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.cost .cost-wrapper .garanty-item__num {
  display: inline;
  font-size: 30px;
  line-height: 160%;
  color: #C6A57A;
  font-family: "Gotham Pro Bold";
  margin-bottom: 7px;
  position: relative;
  margin-left: -8px;
}

@media screen and (max-width: 768px) {
  .cost .cost-wrapper .garanty-item__num {
    font-size: 24px;
  }
}

.cost .cost-wrapper .garanty-item__num::before {
  content: '';
  position: absolute;
  background: #1d1d1d;
  width: 10px;
  height: 100%;
  top: 0px;
  left: 0px;
}

.cost .cost-wrapper .garanty-item__num::after {
  content: "";
  position: absolute;
  bottom: 7px;
  right: -50px;
  height: 2px;
  width: 33px;
  background: #C6A57A;
}

.cost .cost-wrapper .garanty-item__name {
  font-family: "Gotham Pro Bold";
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 4px 0px 9px;
  max-width: 218px;
}

@media screen and (max-width: 768px) {
  .cost .cost-wrapper .garanty-item__name {
    font-size: 14px;
    line-height: 18px;
  }
}

.cost .cost-wrapper .garanty-item__about {
  font-size: 14px;
  line-height: 20px;
  color: #989898;
  max-width: 90%;
}

.cost .cost-wrapper .cost-more {
  margin-top: 125px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .cost .cost-wrapper .cost-more {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 80px;
  }
}

@media screen and (max-width: 520px) {
  .cost .cost-wrapper .cost-more {
    margin-top: 40px;
  }
}

.cost .cost-wrapper .cost-more .cost-more__wrap {
  display: flex;
  justify-content: space-between;
  width: 49%;
  margin-top: 49px;
}

@media screen and (max-width: 960px) {
  .cost .cost-wrapper .cost-more .cost-more__wrap {
    width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .cost .cost-wrapper .cost-more .cost-more__wrap {
    flex-direction: column;
  }
}

.cost .cost-wrapper .cost-more .cost-more__wrap .cost-more__info {
  width: 47%;
}

@media screen and (max-width: 520px) {
  .cost .cost-wrapper .cost-more .cost-more__wrap .cost-more__info {
    width: 100%;
    margin-top: 30px;
  }
}

.cost .cost-wrapper .cost-more .cost-more__wrap .cost-more__info p b {
  font-family: "Gotham Pro Bold";
  font-size: 18px;
  line-height: 22px;
  color: #F2F2F2;
}

.cost .cost-wrapper .cost-more .cost-more__wrap .cost-more__info p {
  font-size: 14px;
  line-height: 20px;
  color: #989898;
   margin-bottom: 11px;
}

.cost .cost-wrapper .cost-more__img {
  width: 43%;
  position: relative;
}

@media screen and (max-width: 960px) {
  .cost .cost-wrapper .cost-more__img {
    width: 100%;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 520px) {
  .cost .cost-wrapper .cost-more__img {
    margin-bottom: 30px;
  }
}

.cost .cost-wrapper .cost-more__img img {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 960px) {
  .cost .cost-wrapper .cost-more__img img {
    max-height: 560px;
  }
}

.cost .cost-wrapper .cost-more__text {
  width: 47%;
  position: relative;
}

@media screen and (max-width: 520px) {
  .cost .cost-wrapper .cost-more__text {
    width: 100%;
  }
}

.cost .cost-wrapper .cost-more__text::before {
  content: "";
  position: absolute;
  top: -35px;
  left: -0px;
  background: url(../img/cost/quote.svg) no-repeat;
  background-size: 100%;
  width: 30px;
  height: 30px;
}

.cost .cost-wrapper .cost-more__text p {
  font-size: 18px;
  line-height: 24px;
  color: #B49061;
}

@media screen and (max-width: 520px) {
  .cost .cost-wrapper .cost-more__text p {
    font-size: 16px;
  }
}

.cost .cost-sub {
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  position: relative;
  max-width: 425px;
  margin-left: 37px;
  margin-bottom: 105px;
}

@media screen and (max-width: 960px) {
  .cost .cost-sub {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 640px) {
  .cost .cost-sub {
    margin-bottom: 40px;
    max-width: 228px;
  }
}

.cost .cost-sub span {
  color: #C6A57A;
}

.cost .cost-sub::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -37px;
  height: 55px;
  width: 2px;
  background: #C6A57A;
}

.cost .cost-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  max-width: 613px;
  width: 100%;
  margin-bottom: 33px;
}

@media screen and (max-width: 768px) {
  .cost .cost-section {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

@media screen and (max-width: 520px) {
  .cost .cost-section {
    margin-bottom: 0px;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    grid-row-gap: 25px;
    max-width: 372px;
  }
}

@media screen and (max-width: 440px) {
  .cost .cost-section {
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    grid-row-gap: 15px;
  }
}

.cost .cost-item {
  display: flex;
  flex-direction: column-reverse;
}

.cost .cost-item__price {
  margin-top: 16px;
  font-size: 16px;
  line-height: 100%;
  color: #FFFFFF;
}

@media screen and (max-width: 520px) {
  .cost .cost-item__price {
    margin-top: 30px;
  }
}

@media screen and (max-width: 440px) {
  .cost .cost-item__price {
    margin-top: 20px;
  }
}

.cost .cost-item__price sup {
  font-size: 14px;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -20px;
}

@media screen and (max-width: 520px) {
  .cost .cost-item__price sup {
    top: -10px;
  }
}

.cost .cost-item__price .num {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 180%;
  margin-left: 8px;
}

@media screen and (max-width: 768px) {
  .cost .cost-item__price .num {
    font-size: 36px;
  }
}

@media screen and (max-width: 520px) {
  .cost .cost-item__price .num {
    font-size: 24px;
  }
}

.cost .cost-item__price span {
  font-size: 18px;
  margin-left: -3px;
}

@media screen and (max-width: 420px) {
  .cost .cost-item__price span {
    font-size: 14px;
  }
}

.cost .cost-item__project {
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  position: relative;
  max-width: 130px;
}

@media screen and (max-width: 768px) {
  .cost .cost-item__project {
    font-size: 18px;
    line-height: 22px;
  }
}

@media screen and (max-width: 520px) {
  .cost .cost-item__project {
    font-size: 16px;
    line-height: 20px;
  }
}

.cost .cost-item__project::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0px;
  width: 24px;
  height: 2px;
  background: #C6A57A;
}

@media screen and (max-width: 520px) {
  .cost .cost-item__project::before {
    bottom: -10px;
  }
}

.works-breadcrumbs a, .works-breadcrumbs p {
  font-size: 14px;
  line-height: 180%;
  color: #FFFFFF;
}

@media screen and (max-width: 560px) {
  .works-breadcrumbs a, .works-breadcrumbs p {
    font-size: 12px;
  }
}

.works-breadcrumbs a:hover {
  color: #C6A57A;
  transition: 0.3s;
}

.works-breadcrumbs span {
  color: #bdbdbd;
}

.project {
  z-index: 0;
  position: relative;
}

.project .container {
  border-left: 1px solid rgba(134, 134, 134, 0.1);
  border-right: 1px solid rgba(134, 134, 134, 0.1);
}

.project .container .center-line, .project .container .right-line, .project .container .left-line {
  background: rgba(134, 134, 134, 0.1);
  opacity: 1;
}

.project .container .center-line, .project .container .right-line, .project .container .left-line {
  z-index: -3;
}

.project .information {
  background: #171717;
  width: 96%;
  margin: -30px auto 0px;
  z-index: 1;
}

@media screen and (max-width: 960px) {
  .project .information {
    margin: -5px auto 0px;
  }
}

@media screen and (max-width: 520px) {
  .project .information {
    width: 100%;
  }
}

.project .information .container {
  border: none;
}

.project .information .information-wrap {
  display: flex;
  justify-content: space-between;
  width: 64%;
  padding: 26px;
}

@media screen and (max-width: 960px) {
  .project .information .information-wrap {
    width: 75%;
  }
}

@media screen and (max-width: 768px) {
  .project .information .information-wrap {
    width: 100%;
    flex-direction: column;
  }
}

.project .information .information-wrap a, .project .information .information-wrap p {
  color: #fff;
  font-size: 14px;
  line-height: 180%;
  font-family: "Gotham Pro Bold";
}

.project .information .information-wrap a:hover {
  color: #C6A57A;
  transition: 0.3s;
}

.project .site {
  margin: 56px 0px 35px;
}

.project .site .site-zag {
  font-size: 38px;
  line-height: 122.2%;
  color: #171717;
  padding-left: 45px;
}

@media screen and (max-width: 960px) {
  .project .site .site-zag {
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .project .site .site-zag {
    font-size: 32px;
    line-height: 36px;
  }
}

@media screen and (max-width: 520px) {
  .project .site .site-zag {
    padding-left: 0px;
  }
}

.project .site .site-wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .project .site .site-wrap {
    flex-direction: column;
  }
}

.project .site .site-text {
  padding: 28px 45px;
  width: 50%;
}

@media screen and (max-width: 960px) {
  .project .site .site-text {
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .project .site .site-text {
    width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .project .site .site-text {
    padding: 0px 0px 20px;
  }
}

.project .site .site-text p {
  font-size: 15px;
  line-height: 180%;
  color: #171717;
}

@media screen and (max-width: 560px) {
  .project .site .site-text p {
    font-size: 14px;
  }
}

.project .steps .steps-item {
  margin: 0px auto 78px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project .steps .steps-item img {
  width: 93%;
  object-fit: cover;
}

.project .steps .steps-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: -20px auto 40px;
}

.project .steps .steps-nav a {
  margin: 0px 20px;
  font-size: 14px;
  line-height: 13px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #171717;
  font-family: "Gotham Pro Bold";
}

.project .steps .steps-nav a:hover {
  color: #C6A57A;
  transition: 0.3s;
}

@media screen and (max-width: 520px) {
  .project .steps .steps-nav a {
    margin: 0px 10px;
  }
}

.project .want {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

.project .want .want-link {
  display: inline-block;
  border: 2px solid #171717;
  font-family: "Gotham Pro Bold";
  text-transform: uppercase;
  color: #171717;
  font-size: 12px;
  padding: 10px 30px;
  line-height: 160%;
  position: relative;
}

.project .want .want-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 24px;
  height: 2px;
  background: #171717;
  transition: all 0.5s;
}

.project .want .want-link:hover {
  border: 2px solid #C6A57A;
  color: #C6A57A;
  transition: all 0.3s;
}

.project .want a:hover::before {
  background: #C6A57A;
  left: 95%;
  transition: all 0.5s;
}

.client {
  background: #171717 url(../img/proj.png) no-repeat;
  background-size: cover;
  background-position: 50% 0%;
}

.client .container {
  border-left: 1px solid rgba(134, 134, 134, 0.1);
  border-right: 1px solid rgba(134, 134, 134, 0.1);
}

.client .container .center-line, .client .container .right-line, .client .container .left-line {
  background: rgba(134, 134, 134, 0.1);
  opacity: 1;
}

.client .cliet-wrapper {
  padding: 37px 0px 0px;
}

.client .cliet-wrapper .client-title {
  font-size: 40px;
  line-height: 122.2%;
  color: #fff;
  max-width: 500px;
  margin-top: 172px;
}

@media screen and (max-width: 960px) {
  .client .cliet-wrapper .client-title {
    margin-top: 90px;
  }
}

@media screen and (max-width: 768px) {
  .client .cliet-wrapper .client-title {
    font-size: 32px;
    line-height: 36px;
  }
}

.client .cliet-wrapper .client-title span {
  color: #C6A57A;
  font-family: "Gotham Pro Bold";
}

.client .client-block {
  background: #fff;
  margin-top: 160px;
}

@media screen and (max-width: 960px) {
  .client .client-block {
    margin-top: 90px;
  }
}

.client .client-block .client-block__zag {
  font-size: 38px;
  line-height: 122.2%;
  color: #171717;
  padding: 48px 48px 0px 48px;
}

@media screen and (max-width: 960px) {
  .client .client-block .client-block__zag {
    padding: 20px 20px 0px 20px;
  }
}

@media screen and (max-width: 768px) {
  .client .client-block .client-block__zag {
    font-size: 32px;
    line-height: 36px;
  }
}

.client .client-block .client-block__zag span {
  font-family: "Gotham Pro Bold";
}

.client .client-block__wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .client .client-block__wrap {
    flex-direction: column;
  }
}

.client .client-block__left {
  width: 50%;
  padding: 48px;
}

@media screen and (max-width: 960px) {
  .client .client-block__left {
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .client .client-block__left {
    width: 100%;
    margin-bottom: 10px;
  }
}

.client .client-block__left p {
  font-size: 15px;
  line-height: 180%;
  color: #171717;
}

@media screen and (max-width: 560px) {
  .client .client-block__left p {
    font-size: 14px;
  }
}

.client .client-block__right {
  width: 50%;
  padding: 48px;
}

@media screen and (max-width: 960px) {
  .client .client-block__right {
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .client .client-block__right {
    width: 100%;
    margin-bottom: 10px;
  }
}

.client .client-block__right p {
  font-size: 15px;
  line-height: 180%;
  color: #171717;
}

@media screen and (max-width: 560px) {
  .client .client-block__right p {
    font-size: 14px;
  }
}

.contacts {
  position: relative;
  background: #171717;
}

.contacts .container .left-line, .contacts .container .center-line, .contacts .container .right-line {
  z-index: -4;
}

.contacts .works-breadcrumbs {
  padding: 37px 0px;
}

.contacts .contacts-title {
  font-size: 40px;
  line-height: 122.2%;
  color: #FFFFFF;
  font-family: "Gotham Pro Bold";
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .contacts .contacts-title {
    font-size: 32px;
    line-height: 36px;
  }
}

.contacts .contacts-wrapper {
  padding: 32px 0px 130px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .contacts .contacts-wrapper {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 520px) {
  .contacts .contacts-wrapper {
    padding: 10px 0px 50px;
  }
}

.contacts .contacts-map {
  width: 71%;
}

@media screen and (max-width: 1200px) {
  .contacts .contacts-map {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .contacts .contacts-map {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1200px) {
  .contacts .contacts-map iframe {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .contacts .contacts-map iframe {
    height: 300px;
  }
}

@media screen and (max-width: 520px) {
  .contacts .contacts-map iframe {
    height: 230px;
  }
}

.contacts .contacts-info {
  width: 25%;
}

@media screen and (max-width: 1200px) {
  .contacts .contacts-info {
    width: 32%;
  }
}

@media screen and (max-width: 768px) {
  .contacts .contacts-info {
    width: 100%;
  }
}

.contacts .contacts-info .info-contacts__social {
  display: flex;
  justify-content: space-between;
  max-width: 160px;
  margin-left: 5px;
}

.contacts .contacts-info .info-contacts__social svg {
  width: 25px;
  height: 25px;
}

.contacts .contacts-info .info-contacts__social svg path {
  fill: #C6A57A;
}

.contacts .contacts-info .info-contacts__social a {
  outline: none;
}

.contacts .contacts-info ul li {
  display: flex;
  align-items: center;
  margin-left: -10px;
  margin-bottom: 34px;
}

.contacts .contacts-info ul li img {
  margin-right: 20px;
}

.contacts .contacts-info ul li span, .contacts .contacts-info ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 180%;
  outline: none;
}

@media screen and (max-width: 560px) {
  .contacts .contacts-info ul li span, .contacts .contacts-info ul li a {
    font-size: 14px;
  }
}

.contacts .contacts-info ul li a:hover {
  color: #C6A57A;
  transition: 0.3s;
}

.contacts .contacts-info__phones a {
  display: block;
}

.header-big {
  padding-bottom: 25px;
}

.blog {
  position: relative;
  /* background: url(/img/blog-bg-1.png) no-repeat;
  background-size: 100%;
  background-position: 0% 0%; */
}

.blog .container{
    border:none;
}

.blog .container .center-line,
.blog .container .left-line,
.blog .container .right-line{
    background: transparent;
}

.blog__bg{
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    object-fit: cover;
    height: 570px;
}

@media screen and (max-width: 520px) {
  .blog {
    background-size: 150%;
    background-position: 50% 0%;
  }
}

.blog .center-line, .blog .left-line, .blog .right-line {
  z-index: -3;
}

.blog .blog-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.blog .blog-navigation .blog-next {
  position: absolute;
  top: 0px;
  right: 0px;
}

@media screen and (max-width: 520px) {
  .blog .blog-navigation .blog-next {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: unset;
    z-index: -1;
  }
}

.blog .blog-navigation .blog-next a {
  font-size: 14px;
  line-height: 13px;
  text-decoration-line: underline;
  color: #FFFFFF;
}

.blog .blog-navigation .blog-next a:hover {
  color: #C6A57A;
  transition: 0.3s;
}

.blog .blog-navigation__wrapper {
  display: flex;
}

.blog .blog-navigation__wrapper p {
  color: #fff;
  font-family: "Gotham Pro Light";
  font-size: 14px;
  line-height: 13px;
}

.blog .blog-navigation__pages li {
  color: #fff;
}

.blog .blog-navigation__pages .blog-nav span {
  padding: 4px 35px 4px 15px;
  border: 1px solid #E0E0E0;
  margin: 0px 15px;
  position: relative;
  cursor: pointer;
  color: #fff;
}

.blog .blog-navigation__pages .blog-nav span::after {
  content: "";
  position: absolute;
  background: url(../img/dropdown.svg) no-repeat;
  width: 15px;
  height: 9px;
  background-size: 100%;
  top: 50%;
  right: 10%;
  transform: translate(0%, -50%);
  transition: all 0.3s;
}

.blog .blog-navigation__pages .blog-nav span.open {
  position: relative;
}

.blog .blog-navigation__pages .blog-nav span.open::after {
  content: "";
  position: absolute;
  background: url(../img/dropdown.svg) no-repeat;
  width: 15px;
  height: 9px;
  background-size: 100%;
  top: 50%;
  right: 10%;
  transform: translate(0%, -50%) rotate(-180deg);
  transition: all 0.3s;
}

.blog .blog-navigation__pages .nav-child {
  visibility: hidden;
  transition: all 0.3s;
  margin-top: 20px;
}

@media screen and (max-width: 520px) {
  .blog .blog-navigation__pages .nav-child {
    z-index: 5;
    background: #171717;
  }
}

.blog .blog-navigation__pages .nav-child li {
  margin: 10px 0px;
  text-align: center;
  cursor: pointer;
}

.blog .blog-navigation__pages .nav-child li:hover {
  color: #C6A57A;
  transition: 0.3s;
}

.blog .blog-navigation__pages .nav-child.open {
  visibility: visible;
  transition: all 0.3s;
}

.blog .blog-wrapper h1 {
  font-size: 40px;
  line-height: 122.2%;
  color: #FFFFFF;
  padding: 100px 0px 0px;
}

@media screen and (max-width: 768px) {
  .blog .blog-wrapper h1 {
    font-size: 32px;
    line-height: 36px;
    padding-top: 80px;
  }
}

.blog .blog-wrapper h1 span {
  color: #C6A57A;
  font-family: "Gotham Pro Bold";
}

.blog .works-breadcrumbs {
  padding: 11px 0px;
}

.blog .blog-sub {
  font-size: 16px;
  line-height: 180%;
  color: #FFFFFF;
  margin-top: 32px;
  margin-left: 50px;
  position: relative;
  max-width: 460px;
}

@media screen and (max-width: 560px) {
  .blog .blog-sub {
    font-size: 14px;
  }
}

.blog .blog-sub::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -50px;
  width: 40px;
  height: 2px;
  background: #C6A57A;
}

.blog .blog-sub span {
  color: #C6A57A;
}

.blog .blog-tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
}

.blog .blog-tabs .blog-tabs__zag {
  font-size: 24px;
  line-height: 122.2%;
  color: #C6A57A;
  font-family: "Gotham Pro Bold";
}

.blog .tabs-wrapper-blog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.blog .tab_item {
  display: none;
}

.blog .tab_item:first-child {
  display: block;
}

.blog .tabs {
  margin: 23px 0px 0px;
  max-width: 1050px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 2px solid #C6A57A;
}

@media screen and (max-width: 1200px) {
  .blog .tabs {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .blog .tabs {
    flex-wrap: wrap;
 /*    justify-content: center; */
  }
}

.blog .tab a {
  font-size: 18px;
  line-height: 160%;
  color: #FFFFFF;
  font-family: "Gotham Pro Bold";
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .blog .tab a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .blog .tab a {
    font-size: 14px;
    margin: 0px 5px;
  }
}

.blog .tab a span {
  font-family: "Gotham Pro";
  font-size: 12px;
}

.blog .blog-search {
  width: 86%;
  text-align: right;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .blog .blog-search {
    width: 100%;
  }
}

.blog .blog-search::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translate(0%, -50%);
  background: url(../img/search.png) no-repeat;
  width: 20px;
  height: 24px;
}

.blog .blog-search input {
  width: 210px;
  border: none;
  padding: 12px 0px 3px;
  border-bottom: 1px solid #fff;
  background: transparent;
  font-size: 14px;
  line-height: 180%;
  font-family: "Gotham Pro";
  color: #fff;
}

.blog .blog-search input::placeholder {
  color: #fff;
}

.blog .blog-section {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog .active a {
  color: #C6A57A !important;
}

.blog .blog-item {
  width: 32%;
  margin-bottom: 52px;
}

@media screen and (max-width: 768px) {
  .blog .blog-item {
    width: 47%;
  }
}

@media screen and (max-width: 520px) {
  .blog .blog-item {
    width: 100%;
  }
}

.blog .blog-item__img {
  position: relative;
  overflow: hidden;
  transition: 0.8s;
}

.blog .blog-item__img img {
  width: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.blog .blog-item__img:hover img{
    transform: scale(1.1);
}

.blog .blog-item__img .blog-abs {
  position: absolute;
  bottom: 0px;
  left: 0px;
  font-size: 12px;
  line-height: 180%;
  color: #171717;
  background: #C6A57A;
  padding: 7px;
  font-family: "Gotham Pro Bold";
}

.blog .blog-item__tags {
  display: flex;
  border-bottom: 2px solid #C6A57A;
}

@media screen and (max-width: 768px) {
  .blog .blog-item__tags {
    flex-direction: column;
  }
}

@media screen and (max-width: 520px) {
  .blog .blog-item__tags {
    flex-direction: row;
  }
}

.blog .blog-item__name {
  margin-top: 20px;
}

.blog .blog-item__name a {
  font-size: 18px;
  line-height: 26px;
  color: #000;
  font-family: "Gotham Pro Bold";
  max-height: 47px;
    overflow: hidden;
    display: inline-block;
}

.blog .blog-item__name a:hover {
  color: #C6A57A;
  transition: 0.3s;
}

.blog .blog-item__info {
  margin-top: 15px;
  max-width: 352px;
}

.blog .blog-item__info p {
  font-size: 15px;
  line-height: 180%;
  color: #747474;
  max-height: 81px;
  overflow: hidden;
}

.blog .tag-blog {
  display: flex;
  align-items: center;
  margin-right: 24px;
  padding: 13px 0px;
}

@media screen and (max-width: 768px) {
  .blog .tag-blog {
    padding: 5px 0px;
  }
}

.blog .tag-blog img {
  margin-right: 12px;
}

.blog .tag-blog p {
  color: #C6A57A;
  font-family: "Gotham Pro Bold";
  font-size: 10px;
  line-height: 180%;
}

.glitch-effect {
  position: relative;
}

.glitch-effect:after, .glitch-effect:before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  color: #fff;
  background-color: transparent;
  overflow: hidden;
}

.glitch-effect.black:after, .glitch-effect.black:before {
  color: #000;
}

.glitch-effect:before {
  left: -2px;
  text-shadow: 1px 0 rgba(0, 255, 210, 0.75);
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim-2 3s infinite linear alternate-reverse;
}

.glitch-effect:after {
  left: 2px;
  text-shadow: -1px 0 rgba(224, 34, 130, 0.75);
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 2s infinite linear alternate-reverse;
}

@keyframes noise-anim {
  0% {
    clip: rect(30px, 9999px, 23px, 0);
  }
  5% {
    clip: rect(53px, 9999px, 24px, 0);
  }
  10% {
    clip: rect(26px, 9999px, 73px, 0);
  }
  15% {
    clip: rect(54px, 9999px, 19px, 0);
  }
  20% {
    clip: rect(61px, 9999px, 48px, 0);
  }
  25% {
    clip: rect(17px, 9999px, 38px, 0);
  }
  30% {
    clip: rect(21px, 9999px, 30px, 0);
  }
  35% {
    clip: rect(33px, 9999px, 84px, 0);
  }
  40% {
    clip: rect(53px, 9999px, 37px, 0);
  }
  45% {
    clip: rect(44px, 9999px, 65px, 0);
  }
  50% {
    clip: rect(23px, 9999px, 86px, 0);
  }
  55% {
    clip: rect(83px, 9999px, 9px, 0);
  }
  60% {
    clip: rect(84px, 9999px, 55px, 0);
  }
  65% {
    clip: rect(56px, 9999px, 83px, 0);
  }
  70% {
    clip: rect(24px, 9999px, 24px, 0);
  }
  75% {
    clip: rect(29px, 9999px, 1px, 0);
  }
  80% {
    clip: rect(24px, 9999px, 62px, 0);
  }
  85% {
    clip: rect(7px, 9999px, 9px, 0);
  }
  90% {
    clip: rect(37px, 9999px, 88px, 0);
  }
  95% {
    clip: rect(30px, 9999px, 11px, 0);
  }
  100% {
    clip: rect(79px, 9999px, 42px, 0);
  }
}

@keyframes noise-anim-2 {
  0% {
    clip: rect(59px, 9999px, 78px, 0);
  }
  5% {
    clip: rect(66px, 9999px, 26px, 0);
  }
  10% {
    clip: rect(60px, 9999px, 75px, 0);
  }
  15% {
    clip: rect(54px, 9999px, 33px, 0);
  }
  20% {
    clip: rect(84px, 9999px, 10px, 0);
  }
  25% {
    clip: rect(90px, 9999px, 55px, 0);
  }
  30% {
    clip: rect(34px, 9999px, 72px, 0);
  }
  35% {
    clip: rect(86px, 9999px, 75px, 0);
  }
  40% {
    clip: rect(89px, 9999px, 33px, 0);
  }
  45% {
    clip: rect(56px, 9999px, 11px, 0);
  }
  50% {
    clip: rect(9px, 9999px, 4px, 0);
  }
  55% {
    clip: rect(33px, 9999px, 2px, 0);
  }
  60% {
    clip: rect(57px, 9999px, 82px, 0);
  }
  65% {
    clip: rect(92px, 9999px, 32px, 0);
  }
  70% {
    clip: rect(25px, 9999px, 37px, 0);
  }
  75% {
    clip: rect(49px, 9999px, 35px, 0);
  }
  80% {
    clip: rect(100px, 9999px, 88px, 0);
  }
  85% {
    clip: rect(74px, 9999px, 83px, 0);
  }
  90% {
    clip: rect(72px, 9999px, 72px, 0);
  }
  95% {
    clip: rect(63px, 9999px, 28px, 0);
  }
  100% {
    clip: rect(75px, 9999px, 62px, 0);
  }
}

/* ZOOM IMG*/

.animation-img-im {
  overflow: hidden;
  display: inline-block;
}

.img-zoom img {
  transform: scale(1);
  transition: transform .9s;
}

.img-zoom:hover img {
  transform: scale(1.05);
  transition: transform .9s;
}

.menu-lst, .menu-secn, .menu-next {
  position: relative;
}

.menu-arrow {
  width: 10px;
  height: 10px;
}

.menu-haschild {
  position: relative;
}

.menu-haschild .dropdown-lst, .menu-haschild .dropdown-secn, .menu-haschild .dropdown-next {
  display: none;
  position: absolute;
  top: 0px;
  left: 190px;
  z-index: 9999;
  min-width: 250px;
  border: none;
  border-radius: 0;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .menu-haschild .dropdown-lst, .menu-haschild .dropdown-secn, .menu-haschild .dropdown-next {
    position: relative;
    top: 0px;
    text-align: center;
    left: 0px;
  }
}

.menu-haschild .dropdown-list {
  display: none;
  position: absolute;
  top: 30px;
  left: 0px;
  z-index: 9999;
  min-width: 190px;
  border: none;
  border-radius: 0;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .menu-haschild .dropdown-list {
    position: relative;
    top: 0px;
    text-align: center;
  }
}

.menu-haschild .dropdown-list li {
  margin-top: 0px;
  border-bottom: 1px solid rgba(228, 228, 228, 0.5);
}

@media screen and (max-width: 768px) {
  .menu-haschild .dropdown-list li {
    border: none;
  }
}

.menu-haschild .dropdown-list .menu__item {
  line-height: 20px;
  padding: 7px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .menu-haschild .dropdown-list .menu__item {
    justify-content: center;
    font-size: 14px;
  }
  .menu-haschild .dropdown-list .menu__item img {
    display: none;
  }
}

.article {
  background: #fff;
  padding-top: 30px;
}

.article .works-breadcrumbs a, .article .works-breadcrumbs p {
  color: #171717;
}

.article .container {
  border: none;
}

.article .article-title {
  font-size: 36px;
  line-height: 120%;
  color: #171717;
  padding: 50px 0px 0px;
  max-width: 70%;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .article .article-title {
    font-size: 32px;
    max-width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .article .article-title {
    font-size: 28px;
    max-width: 100%;
  }
}

.article .article-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0px;
}

@media screen and (max-width: 1060px) {
  .article .article-wrap {
    flex-direction: column;
  }
}

@media screen and (max-width: 520px) {
  .article .article-wrap {
    padding-bottom: 25px;
  }
}

.article .article-wrap .article-current {
  width: 71%;
}

@media screen and (max-width: 1060px) {
  .article .article-wrap .article-current {
    width: 100%;
    margin-bottom: 30px;
  }
}

.article .article-wrap .article-more {
  width: 25%;
}

@media screen and (max-width: 1060px) {
  .article .article-wrap .article-more {
    width: 100%;
  }
}

.article .article-wrap .article-more .article-popular {
  margin-bottom: 50px;
}

.article .article-wrap .article-more .article-popular__name {
  font-size: 22px;
  color: #171717;
  margin-bottom: 30px;
  padding-bottom: 13px;
  border-bottom: 3px solid #C6A57A;
}

.article .article-wrap .article-more .article-popular__item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.article .article-wrap .article-more .article-popular__item:hover span {
  color: #C6A57A;
  transition: all 0.2s;
}

.article .article-wrap .article-more .article-popular__item img {
  margin-right: 15px;
}

.article .article-wrap .article-more .article-popular__item span {
  color: #171717;
  font-size: 14px;
  line-height: 18px;
}

.article .article-results {
  display: flex;
  max-width: 450px;
  margin: 0px 0px 40px;
}

@media screen and (max-width: 520px) {
  .article .article-results {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
}

.article .article-results__item {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

@media screen and (max-width: 520px) {
  .article .article-results__item {
    width: 34%;
    margin-bottom: 15px;
  }
}

.article .article-results__item img {
  width: 20px;
  margin-right: 20px;
}

.article .article-results__item a, .article .article-results__item p {
  display: flex;
  align-items: center;
  color: #171717;
  outline: none;
  font-size: 14px;
}

.article .article-results__item p>span {
  width: 110px;
}

.article .article-results__item a:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.article .article-text {
  font-size: 15px;
  line-height: 180%;
  color: #171717;
  margin-bottom: 25px;
}

.article .article-text__gb {
  color: #C6A57A;
  font-family: "Gotham Pro Medium";
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.article .article-text__gb:hover {
  color: #e4bf90;
  border-bottom: 2px solid #e4bf90;
  transition: all 0.3s;
}

.article .article-bold {
  font-family: "Gotham Pro Medium";
}

.article .article-subtitle {
  margin: 40px 0px 30px;
  font-size: 32px;
  line-height: 122%;
  color: #171717;
  width: 90%;
}

@media screen and (max-width: 768px) {
  .article .article-subtitle {
    font-size: 28px;
    line-height: 120%;
  }
}

@media screen and (max-width: 520px) {
  .article .article-subtitle {
    font-size: 25px;
  }
}

.article .article-photo__center {
  width: 70%;
  margin: 40px auto;
}

@media screen and (max-width: 768px) {
  .article .article-photo__center {
    width: 100%;
  }
}

.article .article-photo__center img {
  width: 100%;
  object-fit: cover;
}

.article .article-italic {
  font-family: "Gotham Pro Italic";
}

.article .article-list {
  margin-bottom: 30px;
}

.article .article-list__item {
  margin-bottom: 20px;
  color: #171717;
  display: flex;
  align-items: center;
}

.article .article-list__item img {
  width: 15px;
  margin-right: 15px;
}

.article-author {
  background-color: #171717;
  text-align: center;
  padding: 50px 0px 30px;
}

.article-author__photo {
  border-radius: 50%;
  max-width: 150px;
  margin: 0 auto 30px;
}

.article-author__photo img {
  width: 100%;
  object-fit: cover;
}

.article-author__name {
  color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
}

.article-author__name span {
  font-family: "Gotham Pro Medium";
  color: #C6A57A;
}

.article-author__follow {
  color: rgba(241, 241, 241, 0.5);
  max-width: 350px;
  font-size: 14px;
  line-height: 20px;
  margin: 0 auto 40px;
}

.article-author__about {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
}

.article-author__social svg {
  margin: 0 4px;
  transition: all 0.2s;
}

.article-author__social svg:hover path {
  fill: #C6A57A;
  transition: all 0.2s;
}

.questions-landing {
  background-color: #fff !important;
}

.questions-landing .questions-header .questions-title, .questions-landing .questions-header span, .questions-landing .questions-caption p, .questions-landing .questions-text {
  color: #171713 !important;
}

.article-navigation {
  padding: 50px 0px 80px;
  background-color: #171717;
}

.article-navigation__wrap {
  display: flex;
  justify-content: space-between;
}

.article-navigation .container {
  border: none;
}

.article-navigation a {
  font-family: "Gotham Pro Medium";
  font-size: 12px;
  line-height: 18px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
}

.article-navigation a:hover {
  color: #C6A57A;
  transition: all 0.3s;
}

@media screen and (max-width: 520px) {
  .article-navigation a {
    font-size: 10px;
    line-height: 16px;
  }
}

.article-navigation__prev {
  max-width: 320px;
  text-align: left;
}

@media screen and (max-width: 520px) {
  .article-navigation__prev {
    max-width: 45%;
  }
}

.article-navigation__prev img {
  width: 25px;
  margin-right: 15px;
}

@media screen and (max-width: 520px) {
  .article-navigation__prev img {
    width: 15px;
    margin-right: 10px;
  }
}

.article-navigation__next {
  max-width: 350px;
  text-align: right;
}

@media screen and (max-width: 520px) {
  .article-navigation__next {
    max-width: 45%;
  }
}

.article-navigation__next img {
  width: 25px;
  margin-left: 15px;
}

@media screen and (max-width: 520px) {
  .article-navigation__next img {
    width: 15px;
    margin-left: 10px;
  }
}

.article-comment {
  padding: 40px 0px 70px;
}

.article-comment .container {
  border: none;
}

.article-comment .article-form {
  display: flex;
  flex-direction: column;
  width: 70%;
}

@media screen and (max-width: 520px) {
  .article-comment .article-form {
    width: 100%;
  }
}

.article-comment .article-form input {
  border: none;
  border-bottom: 1px solid #C6A57A;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 0px 2px;
  line-height: 180%;
  letter-spacing: 0.05em;
  color: #171717;
  font-family: "Gotham Pro";
}

.article-comment .article-form textarea {
  resize: none;
  border: none;
  height: 80px;
  border-bottom: 1px solid #C6A57A;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 0px 0px 2px;
  line-height: 180%;
  letter-spacing: 0.05em;
  color: #171717;
  font-family: "Gotham Pro";
}

.article-comment .article-form .article-btn {
  border: 2px solid #171717;
  padding: 14px 25px;
  font-size: 14px;
  line-height: 160%;
  text-transform: uppercase;
  color: #171717;
  font-family: "Gotham Pro Bold";
  margin-left: 13px;
  position: relative;
  outline: none;
  background: #fff;
  width: 217px;
  margin: 15px 17px 0px auto;
}

.article-comment .article-form .article-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 24px;
  height: 2px;
  background: #171717;
  transition: all 0.5s;
}

.article-comment .article-form .article-btn:hover {
  border: 2px solid #C6A57A;
  color: #C6A57A;
  transition: all 0.3s;
}

.article-comment .article-form .article-btn:hover::before {
  background: #C6A57A;
  left: 95%;
  transition: all 0.5s;
}

.article-comment__title {
  font-size: 28px;
  line-height: 122%;
  color: #171717;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .article-comment__title {
    font-size: 24px;
    line-height: 120%;
  }
}

.article-comment__title span {
  font-family: "Gotham Pro Medium";
}

.seo {
  padding: 30px 0px;
}

@media screen and (max-width: 520px) {
  .seo {
    padding-bottom: 15px;
  }
}

.seo a {
  outline: none;
}

.seo .container {
  border: none;
}

.seo .seo-section {
  padding: 30px 0px;
}

.seo .seo-section p {
  font-size: 13px;
  line-height: 170%;
  color: #171717;
  margin-bottom: 18px;
}

.seo .seo-section p a {
  outline: none;
  color: #C6A57A;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: all 0.2s;
}

.seo .seo-section p a:hover {
  border-bottom: 1px solid #C6A57A;
  transition: all 0.2s;
}

.seo .seo-section p strong {
  font-family: "Gotham Pro Medium";
}

.seo h1 {
  text-align: center;
  color: #171717;
  font-size: 32px;
  line-height: 120%;
  padding-bottom: 40px;
  position: relative;
}

.seo h1::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f0e8d9;
  height: 3px;
  width: 250px;
}

.seo h2 {
  font-size: 40px;
  line-height: 122.2%;
  margin-bottom: 25px;
  color: #171717;
}

@media screen and (max-width: 768px) {
  .seo h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

.seo .seo-before li {
  margin-left: 20px;
  position: relative;
}

.seo .seo-before li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -20px;
  background-image: url(../img/article/next.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
}

.seo .seo-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 10px;
}

@media screen and (max-width: 1100px) {
  .seo .seo-wrap {
    flex-direction: column-reverse;
  }
}

.seo .seo-wrap .seo-image {
  width: 68%;
}

@media screen and (max-width: 1100px) {
  .seo .seo-wrap .seo-image {
    width: 100%;
  }
}

.seo .seo-wrap .seo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo .seo-wrap .seo-info {
  width: 30%;
}

@media screen and (max-width: 1100px) {
  .seo .seo-wrap .seo-info {
    width: 100%;
  }
}

.seo .seo-table table {
  width: 100%;
  margin: 0 0 1.5em 0;
  border-collapse: collapse;
  border: 1px solid #ccc;
}

.seo .seo-table table td {
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  background: #fff;
}

.seo .seo-table table td a {
  color: #C6A57A;
  font-size: 13px;
  line-height: 170%;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
  outline: none;
}

.seo .seo-table table td a:hover {
  color: #b99a71;
  border-bottom: 1px solid #b99a71;
  transition: all 0.2s;
}

.seo .seo-table table .su-even td {
  background: #f7f7f7 !important;
}

.seo ul {
  margin: 20px 0px;
}

.seo ul li {
  font-size: 13px;
  line-height: 170%;
  color: #171717 !important;
  margin-bottom: 10px;
  display: flex;
}

.seo ul li img {
  width: 15px;
  margin-right: 10px;
}

@media screen and (max-width: 520px) {
  .seo ul li img {
    width: 10px;
  }
}

.seo ul li a {
  outline: none;
  color: #C6A57A;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.seo ul li a:hover {
  color: #b99a71;
  border-bottom: 1px solid #b99a71;
  transition: all 0.2s;
}

.seo ul li span {
  margin-right: 10px;
}

.error-404  {
  background: #171717;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.error-404  .error-number {
  color: #C6A57A;
  font-weight: 700;
  font-size: 200px;
  line-height: 225px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .error-404  .error-number {
    font-size: 160px;
    line-height: 170px;
  }
}

@media screen and (max-width: 520px) {
  .error-404  .error-number {
    font-size: 120px;
    line-height: 130px;
  }
}

.error-404  p,
.error-404  .error-info {
  font-size: 26px;
  line-height: 30px;
  color: #FFFFFF;
  font-weight: 500;
  max-width: 430px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .error-404  p,
  .error-404  .error-info {
    font-size: 24px;
    line-height: 28px;
  }
}

@media screen and (max-width: 520px) {
  .error-404  p,
  .error-404  .error-info {
    font-size: 20px;
    line-height: 24px;
  }
}

.error-404  p b,
.error-404  p strong,
.error-404  .error-info strong {
  font-family: "Gotham Pro Bold";
}

.error-404  a,
.error-404  .error-back {
  display: inline-block;
  font-size: 14px;
  line-height: 160%;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "Gotham Pro Bold";
  border: 2px solid #FFFFFF;
  padding: 14px 65px;
  position: relative;
  margin-top: 40px;
}

.error-404  a::before,
.error-404  .error-back::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.5s;
}

.error-404  a:hover,
.error-404  .error-back:hover {
  border: 2px solid #C6A57A;
  color: #C6A57A;
  transition: all 0.3s;
}

.error-404  a:hover::before,
.error-404  .error-back:hover::before {
  background: #C6A57A;
  left: 95%;
  transition: all 0.5s;
}

.stages {
  position: relative;
}

.stages .owl-carousel .owl-dots {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  position: absolute;
  left: -26%;
  bottom: 15px;
  height: 200px;
}

@media screen and (max-width: 520px) {
  .stages .owl-carousel .owl-dots {
    height: 170px;
  }
}

.stages .owl-carousel .owl-dots button {
  position: relative;
  padding: 0 1.5rem !important;
  font-weight: 900;
  outline: none;
  box-shadow: none;
  width: 14px !important;
  padding: 0px !important;
}

.stages .owl-carousel .owl-dots button span {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  font-size: 12px;
  position: absolute;
  top: -2px;
  right: -40px;
  color: #000;
  transition: all 0.2s;
}

.stages .owl-carousel .owl-dots button.active {
  color: #464646;
  margin-bottom: 20px;
}

@media screen and (max-width: 1440px) {
  .stages .owl-carousel .owl-dots button.active {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 520px) {
  .stages .owl-carousel .owl-dots button.active {
    margin-bottom: 0px;
  }
}

.stages .owl-carousel .owl-dots button.active span {
  font-size: 36px;
  position: relative;
  margin-left: -10px;
  transition: all 0.2s;
}

@media screen and (max-width: 1440px) {
  .stages .owl-carousel .owl-dots button.active span {
    font-size: 28px;
  }
}

@media screen and (max-width: 960px) {
  .stages .owl-carousel .owl-dots button.active span {
    font-size: 24px;
  }
}

@media screen and (max-width: 520px) {
  .stages .owl-carousel .owl-dots button.active span {
    font-size: 20px;
  }
}

.stages .owl-carousel .owl-dots button.active span:last-child::before {
  content: '';
  position: absolute;
  top: 18px;
  left: -35px;
  width: 28px;
  height: 2px;
  background: #C6A57A;
}

@media screen and (max-width: 1440px) {
  .stages .owl-carousel .owl-dots button.active span:last-child::before {
    top: 12px;
  }
}

@media screen and (max-width: 520px) {
  .stages .owl-carousel .owl-dots button.active span:last-child::before {
    top: 8px;
    width: 20px;
    left: -28px;
  }
}

.stages .owl-carousel .owl-nav {
  position: absolute;
  right: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 210px;
  bottom: -20px;
}

@media screen and (max-width: 1100px) {
  .stages .owl-carousel .owl-nav {
    right: 5%;
  }
}

@media screen and (max-width: 960px) {
  .stages .owl-carousel .owl-nav {
    right: 5%;
    bottom: unset;
    top: 0px;
    height: 165px;
  }
}

@media screen and (max-width: 768px) {
  .stages .owl-carousel .owl-nav {
    height: 110px;
    top: 0px;
  }
}

@media screen and (max-width: 520px) {
  .stages .owl-carousel .owl-nav {
    height: 125px;
  }
}

@media screen and (max-width: 400px) {
  .stages .owl-carousel .owl-nav {
    height: 160px;
  }
}

.stages .owl-carousel .owl-nav button.owl-prev {
  background-image: url(../img/stages/next-arrow.svg);
  background-size: cover;
  width: 20px;
  height: 10px;
  cursor: pointer;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .stages .owl-carousel .owl-nav button.owl-prev {
    width: 20px;
    height: 10px;
  }
}

.stages .owl-carousel .owl-nav button.owl-next {
  background-image: url(../img/stages/prev-arrow.svg);
  background-size: cover;
  width: 20px;
  height: 10px;
  cursor: pointer;
  z-index: 10;
}

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

  .stages .owl-carousel .owl-nav button.owl-next {
    width: 20px;
    height:10px;
  }
}

.stages__wrap {
  padding: 190px 0px 168px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media screen and (max-width: 1440px) {
  .stages__wrap {
    padding: 100px 0px 120px;
  }
}

@media screen and (max-width: 960px) {
  .stages__wrap {
    padding: 60px 0px 80px;
  }
}

@media screen and (max-width: 768px) {
  .stages__wrap {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 520px) {
  .stages__wrap {
    padding: 60px 0px 40px;
  }
  .stages .owl-carousel .owl-nav{
    right: 0px;
    }
}

.stages__bg {
  font-family: "Gotham Pro Bold";
  font-size: 300px;
  line-height: 110%;
  color: rgba(23, 23, 23, 0.03);
  position: absolute;
  right: 9%;
  top: 17%;
}

@media screen and (max-width: 1440px) {
  .stages__bg {
    font-size: 250px;
    right: 6%;
    top: 14%;
  }
}

@media screen and (max-width: 960px) {
  .stages__bg {
    top: 5%;
    font-size: 24vw;
  }
}

.stages__slider {
  width: 52%;
}

@media screen and (max-width: 960px){
    .stages__slider {
        width: 48%;
    }
}

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

.stages__slide {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 30px;
}

@media screen and (max-width: 960px) {
  .stages__slide {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 768px) {
  .stages__slide {
    padding-left: 5px;
  }
}


.stages__photo {
  width: 32%;
  position: relative;
}

@media screen and (max-width: 960px) {
  .stages__photo {
    margin-top: 40px;
    width: 36%;
    max-width: unset;
  }
}

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

@media screen and (max-width: 520px) {
  .stages__photo {
    margin-top: 30px;
  }
}

.stages__photo img {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 960px) {
  .stages__photo img {
    max-height: 460px;
  }
}

.stages__info {
  width: 64%;
  position: relative;
  padding-left: 40px;
}

@media screen and (max-width: 1100px) {
  .stages__info {
    width: 76%;
  }
}

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

@media screen and (max-width: 960px) {
  .stages__info {
    padding-left: 0px;
  }
}

.stages__title {
  font-family: "Gotham Pro Bold";
  max-width: 300px;
  margin-bottom: 110px;
  margin-left: 35px;
}

@media screen and (max-width: 1100px) {
  .stages__title {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .stages__title {
    margin-bottom: 40px;
    margin-left: 0px;
  }
}

@media screen and (max-width: 520px) {
  .stages__title {
    margin-bottom: 25px;
  }
}

.stages__subtitle {
  font-family: "Gotham Pro Bold";
  font-size: 20px;
  line-height: 24px;
  color: #171717;
  margin-bottom: 14px;
  max-width: 270px;
}

@media screen and (max-width: 960px) {
  .stages__subtitle {
    max-width: 100%;
    margin-left: 50px;
  }
}

@media screen and (max-width: 520px) {
  .stages__subtitle {
    max-width: 250px;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}

.stages__text {
  font-size: 14px;
  line-height: 20px;
  color: #747474;
  max-width: 400px;
  margin-left: 22px;
  position: relative;
}

@media screen and (max-width: 1300px) {
  .stages__text {
    max-width: 330px;
  }
}

@media screen and (max-width: 960px) {
  .stages__text {
    max-width: 340px;
    margin-left: 50px;
  }
}

@media screen and (max-width: 520px) {
  .stages__text {
    max-width: 300px;
  }
}

@media screen and (max-width: 400px) {
  .stages__text {
    max-width: 230px;
  }
}

.stages__text::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -20px;
  background: #171717;
  height: 32px;
  width: 2px;
}

@media screen and (max-width: 960px) {
  .stages__text::before {
    display: none;
  }
}

.stages__item {
  position: absolute;
  bottom: 57%;
  left: -50px;
  font-family: "Gotham Pro Bold";
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #C6A57A;
  transform: rotate(-90deg);
}

@media screen and (max-width: 960px) {
  .stages__item {
    left: -47px;
  }
}

@media screen and (max-width: 520px) {
  .stages__item {
    font-size: 10px;
    left: -35px;
  }
}

.creation .tabs {
  display: flex;
  /* margin-top: 35px; */
}

@media screen and (max-width: 960px) {
  .creation .tabs {
    overflow-x: scroll;
    width: auto;
    white-space: nowrap;
  }

  .creation .tabs::-webkit-scrollbar-track {
    background-color: #F5F5F5;
  }

  .creation .tabs::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #F5F5F5;
  }

  .creation .tabs::-webkit-scrollbar-thumb {
    background-color: #fff;
    height: 2px;
    border: 2px solid #C6A57A;
  }
}

@media screen and (max-width: 520px) {
  .creation .tabs {
    margin-top: 25px;
    padding-bottom: 25px;
  }
}

.creation .tab {
  font-size: 14px;
  line-height: 32px;
  color: #C6A57A;
  cursor: pointer;
  transition: all 0.2s;
  padding: 6px 20px;
}

@media screen and (max-width: 1000px) {
  .creation .tab {
    font-size: 13px;
    line-height: 24px;
    padding: 5px 16px;
  }
}

.creation .tab:hover {
  color: #000;
  transition: all 0.2s;
}

.creation .tab_content {
  width: 100%;
  padding: 60px 62px;
  background: #FBFBFB;
  margin-bottom: 40px;
}

@media screen and (max-width: 1440px) {
  .creation .tab_content {
    padding: 50px 52px;
  }
}

@media screen and (max-width: 1000px) {
  .creation .tab_content {
    padding: 40px 42px;
  }
}

@media screen and (max-width: 768px) {
  .creation .tab_content {
    padding: 30px 32px;
  }
}

@media screen and (max-width: 520px) {
  .creation .tab_content {
    padding: 20px 22px;
    margin-bottom: 25px;
  }
}

.creation .tab_item {
  display: none;
}

.creation .tab_item:first-child {
  display: block;
}

.creation .creation__wrap .active {
  color: #000000;
  background: #FBFBFB;
  position: relative;
  text-shadow: 0 0 .65px #333, 0 0 .65px #333;
  transition: all 0.2s;
}

@media screen and (max-width: 520px) {
  .creation .creation__wrap .active {
    margin-left: 10px;
  }
}

.creation__wt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .creation__wt {
    flex-direction: column;
  }
}

.creation__mar {
  width: 47%;
}

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

.creation__wrap em {
    font-style: italic;
}

.creation__wrap table,
.creation__table {
  width: 50%;
}

@media screen and (max-width: 768px) {
    .creation__wrap table,
  .creation__table {
    width: 100%;
    margin: 10px 0px 20px;
  }
}

.creation__wrap table,
.creation__tab table {
  width: 100%;
  background: #fff;
  border: 1px solid #222222;
  margin: 15px 0;
}

.creation__wrap table tr,
.creation__tab table tr {
  border-bottom: 1px dotted #222222;
}

.creation__wrap table tr td:first-child,
.creation__tab table tr td:first-child {
  border-right: 1px solid #222222;
}

.creation__wrap table tr td:last-child,
.creation__tab table tr td:last-child {
  text-align: center;
  min-width: 150px;
}

@media screen and (max-width: 960px) {
    .creation__wrap table tr td:last-child,
  .creation__tab table tr td:last-child {
    min-width: 100px;
  }
}

@media screen and (max-width: 520px) {
    .creation__wrap table tr td:last-child,
  .creation__tab table tr td:last-child {
    min-width: unset;
  }
}

.creation__wrap table td,
.creation__tab table td {
  vertical-align: middle;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  color: #747474;
}

.quality .creation__wrap table td {
  padding: 10px 10px;
}

@media screen and (max-width: 520px) {\
.creation__wrap table td,
  .creation__tab table td {
    font-size: 13px;
  }
}

.creation__wrap {
  position: relative;
  padding: 35px 0px 50px;
  z-index: 1;
}

@media screen and (max-width: 960px) {
  .creation__wrap {
    padding: 35px 0px 40px;
  }
}

@media screen and (max-width: 520px) {
  .creation__wrap {
    padding: 0px 0px 20px;
  }
}

.quality .creation__wrap {
  padding: 35px 0 0;
}

.creation__wrap .creation__title {
  font-family: "Gotham Pro Bold";
  font-size: 32px;
  line-height: 110%;
  color: #222;
  margin-bottom: 40px;
}

@media screen and (max-width: 960px) {
  .creation__wrap .creation__title {
    font-size: 28px;
    line-height: 32px;
  }
}

@media screen and (max-width: 520px) {
  .creation__wrap .creation__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 30px;
  }
}

.creation__tab {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .creation__tab {
    flex-direction: column;
  }
}

.creation__photo {
  width: 30%;
  position: relative;
}

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

.creation__photo img {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .creation__photo img {
    max-height: 400px;
  }
}

.creation__about {
  width: 68%;
}

@media screen and (max-width: 768px) {
  .creation__about {
    width: 100%;
    margin-bottom: 20px;
  }
}

.creation__about_full {
  width: 100%;
}

.creation__wrap h1 {
  font-family: "Gotham Pro Bold";
  font-size: 40px;
  line-height: 44px;
  color: #171717;
  margin-bottom: 40px;
}

.creation__wrap h2,
.creation__subtitle {
  font-family: "Gotham Pro Bold";
  font-size: 18px;
  line-height: 22px;
  color: #171717;
  margin-bottom: 21px;
}


@media screen and (max-width: 520px) {
    .creation__wrap h2,
  .creation__subtitle {
    font-size: 16px;
    line-height: 20px;
  }
}

.creation__wrp {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

@media screen and (max-width: 768px) {
  .creation__wrp {
    flex-direction: column;
  }
}

.creation__inf {
  width: 54%;
}

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

.creation__video {
  width: 44%;
}

@media screen and (max-width: 768px) {
  .creation__video {
    width: 100%;
    height: 340px;
    margin: 10px 0px 20px;
  }
}

@media screen and (max-width: 520px) {
  .creation__video {
    height: 250px;
  }
}

@media screen and (max-width: 400px) {
  .creation__video {
    height: 200px;
  }
}

.creation__video iframe {
  width: 100%;
  height: 100%;
  max-height: 312px;
}

@media screen and (max-width: 768px) {
  .creation__video iframe {
    max-height: unset;
  }
}

.creation__wrap p,
.creation__text {
  font-size: 14px;
  line-height: 20px;
  color: #747474;
  margin-bottom: 10px;
}
.creation__wrap strong {
    font-weight: 600;
}

.creation__wrap a,
.creation__text a {
  outline: none;
  color: #C6A57A;
  font-family: "Gotham Pro Medium";
  text-decoration: underline;
}

.creation__wrap a:hover,
.creation__text a:hover {
  color: #B49061;
  transition: all 0.2s;
}

.creation__wrap p b,
.creation__text span {
  font-family: "Gotham Pro Medium";
  color: #171717;
}

.creation__wrap h3,
.creation__mintitle {
  font-family: "Gotham Pro Medium";
  font-size: 14px;
  line-height: 160%;
  color: #000000;
  margin-bottom: 12px;
}

.creation__wrap ol,
.creation__wrap ul,
.creation__list {
  margin-bottom: 20px;
}


.creation__wrap ul li,
.creation__list li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #747474;
  display: flex;
  position: relative;
  /* margin-left: 10px; */
}
.creation__wrap ol li {
  margin: 12px 0px;
  font-size: 14px;
  line-height: 20px;
  color: #747474;
  position: relative;
}

.creation__wrap ul li::before,
.creation__list li::before {
     content: url(../../../img/arrow-link.png);
    /* width: 25px; */
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: "Gotham Pro Light";
    font-size: 14px;
    color: #363636;
    font-weight: bold;
    margin-right: 10px;
}

.creation__wrap ol li,
.creation__list_numberlic li {
  /* margin-left: 15px; */
  counter-increment: step-counter;
}

.creation__wrap ol li::before,
.creation__list_numberlic li::before {
  content: counter(step-counter) ".";
    color: white;
    display: inline-block;
    text-align: center;
    font-family: "Gotham Pro Medium";
    font-size: 14px;
    line-height: 20px;
    color: #222222;
    top: 0px;
    left: -15px;
    background: none !important;
    border-radius: none;
    background: #C6A57A !important;
    width: 25px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: "Gotham Pro Light";
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-right: 10px;
}

.questions {
  position: relative;
}

.questions .title {
  font-family: "Gotham Pro Bold";
  margin-bottom: 35px;
}

@media screen and (max-width: 520px) {
  .questions .title {
    margin-bottom: 25px;
  }
}

.questions__bg {
  position: absolute;
  font-family: "Gotham Pro Bold";
  font-size: 250px;
  line-height: 110%;
  color: rgba(23, 23, 23, 0.03);
  top: 260px;
  left: 57.5%;
  transform: translate(-50%, 0%) rotate(90deg);
  z-index: 1;
}

@media screen and (max-width: 1440px) {
  .questions__bg {
    font-size: 200px;
    left: 56%;
    top: 230px;
  }
}

@media screen and (max-width: 960px) {
  .questions__bg {
    left: 60%;
  }
}

@media screen and (max-width: 768px) {
  .questions__bg {
    font-size: 160px;
  }
}

@media screen and (max-width: 520px) {
  .questions__bg {
    left: 72%;
  }
}

.questions__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 130px 0px;
}

.front-page .questions__wrap {
     padding: 92px 0px 257px;
}
@media screen and (max-width: 1440px) {
  .questions__wrap {
    padding: 110px 0px;
  }
   .front-page .questions__wrap {
        padding: 80px 0px 200px;
    }
}

@media screen and (max-width: 960px) {
  .questions__wrap {
    flex-direction: column;
    padding: 80px 0px 100px;
  }
   .front-page .questions__wrap {
        padding: 30px 0px 140px;
    }
}

@media screen and (max-width: 520px) {
  .questions__wrap {
    padding: 60px 0px 80px;
  }
   .front-page .questions__wrap {
        padding: 20px 0px 80px;
    }
}

.questions__info {
  width: 49%;
  z-index: 2;
}

@media screen and (max-width: 960px) {
  .questions__info {
    width: 100%;
    margin-bottom: 40px;
  }
}

.questions__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0px;
  border-bottom: 2px solid #E2E2E2;
  cursor: pointer;
}

.questions__line span {
  font-family: "Gotham Pro Bold";
  font-size: 10px;
  line-height: 160%;
  text-transform: uppercase;
  color: #C6A57A;
}

.questions .questions__line.opened {
  border-bottom: none;
}

.questions__wrapper {
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 520px) {
  .questions__wrapper {
    align-items: flex-start;
  }
}

.questions__text {
  font-family: "Gotham Pro Bold";
  font-size: 16px;
  line-height: 120%;
  color: #171717;
  margin-left: 16px;
}

@media screen and (max-width: 520px) {
  .questions__text {
    margin-right: 10px;
  }
}

.questions__arrow {
  transition: all 0.2s;
}

.questions .questions__arrow.active {
  transform: rotate(45deg);
  transition: all 0.2s;
}

.questions__answer {
  display: none;
  padding: 0px 30px 18px;
  border-bottom: 2px solid #E2E2E2;
}

.questions__answer p,
.questions__title {
  font-size: 14px;
  line-height: 24px;
  color: #747474;
  margin-bottom: 10px;
}

@media screen and (max-width: 520px) {
  .questions__answer p,
  .questions__title {
    margin-bottom: 8px;
  }
}

.questions__answer ul,
.questions__answer ol,
.questions__list {
  margin-bottom: 10px;
}

.questions__answer li,
.questions__list li {
  font-size: 14px;
  line-height: 22px;
  color: #747474;
  margin-bottom: 3px;
  position: relative;
  margin-left: 20px;
}

@media screen and (max-width: 520px) {
  .questions__answer li,
  .questions__list li {
    margin-bottom: 0px;
  }
}

.questions__answer li::before,
.questions__list li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -15px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #C6A57A;
}

.questions__photo {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}

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

.questions__img {
  width: 80%;
}

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

.questions__img img {
  width: 100%;
  object-fit: cover;
}

.portfolio {
  background: #222222;
  background-size: cover;
}

.portfolio__all {
  position: absolute;
  bottom: -120px;
  transform: translate(-50%, -50%);
  left: 50%;
}

@media screen and (max-width: 960px) {
  .portfolio__all {
    min-width: 165px;
  }
}

@media screen and (max-width: 768px) {
  .portfolio__all {
    position: absolute;
    bottom: 60px;
    transform: translate(-50%, 0%);
    left: 50%;
    min-width: unset;
  }
}

.portfolio__all a {
  display: inline-block;
  font-size: 12px;
  line-height: 160%;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "Gotham Pro Medium";
  border: 2px solid #FFFFFF;
  padding: 9px 36px;
  position: relative;
  transition: all 0.3s;
}

.portfolio__all a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.5s;
}

.portfolio__all a:hover {
  border: 2px solid #C6A57A;
  color: #C6A57A;
  transition: all 0.3s;
}

.portfolio__all a:hover::before {
  background: #C6A57A;
  left: 95%;
  transition: all 0.5s;
}

.portfolio__wrapper {
  padding: 186px 0px 0;
  position: relative;
}

@media screen and (max-width: 1440px) {
  .portfolio__wrapper {
    padding: 100px 0px 0;
  }
}

@media screen and (max-width: 960px) {
  .portfolio__wrapper {
    padding: 60px 0px 0;
  }
}

@media screen and (max-width: 640px) {
  .portfolio__wrapper {
    padding: 60px 0px;
  }
}

.portfolio__bg {
  position: absolute;
  font-family: "Gotham Pro Bold";
  font-size: 370px;
  line-height: 269px;
  color: rgba(255, 255, 255, 0.03);
  transform: rotate(90deg) translate(0%, -50%);
  top: 265px;
  right: 50%;
  width: 32%;
}

@media screen and (max-width: 1440px) {
  .portfolio__bg {
    font-size: 280px;
    line-height: 300px;
    width: 33%;
  }
}

@media screen and (max-width: 960px) {
  .portfolio__bg {
    font-size: 24vw;
    display: none;
  }
}

.portfolio__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .portfolio__wrap {
    flex-direction: column;
    margin-bottom: 50px;
  }
}

.portfolio__wrap a {
  outline: none;
}

.portfolio__side_left {
  width: 46%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .portfolio__side_left {
    width: 100%;
    position: inherit;
  }
}

.portfolio__side_right {
  width: 45%;
  margin-top: 114px;
}

@media screen and (max-width: 768px) {
  .portfolio__side_right {
    width: 100%;
    margin-top: 0px;
  }
}

.portfolio__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 90px;
}

.portfolio__item .portfolio__photo{
    overflow: hidden;
    transition: 0.8s;
}

.portfolio__item .portfolio__photo:hover img{
    transform: scale(1.1);
}

.portfolio__item .portfolio__photo img{
     transition: 0.8s;
}

@media screen and (max-width: 768px) {
  .portfolio__item {
    margin-bottom: 50px;
  }
}

.portfolio__item_third .portfolio__photo {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .portfolio__item_third {
    margin: 0px 0px 80px;
  }
}

.portfolio__item_forth {
  margin-bottom: 0px;
}

@media screen and (max-width: 960px) {
  .portfolio__item_forth {
    margin-left: 0px;
  }
}

@media screen and (max-width: 768px) {
  .portfolio__item_forth {
    margin: 0px 0px 80px;
  }
}

.portfolio__item_forth .portfolio__photo {
  width: 100%;
}

.portfolio__item_second .portfolio__photo {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .portfolio__item_second {
    margin: 0px 0px 80px;
  }
}

.portfolio__item_second .portfolio__name {
  font-size: 32px;
  line-height: 36px;
}

@media screen and (max-width: 520px) {
  .portfolio__item_second .portfolio__name {
    font-size: 24px;
    line-height: 28px;
  }
}

.portfolio__item_first {
  margin-left: auto;
  width: 82%;
}

@media screen and (max-width: 768px) {
  .portfolio__item_first {
    margin: 0px 0px 80px;
  }
}

.portfolio__title {
  color: #fff;
  font-family: "Gotham Pro Bold";
  margin-bottom: 30px;
  max-width: 380px;
  font-size: 80px;
  line-height: 84px;
}

@media screen and (max-width: 1440px) {
  .portfolio__title {
    font-size: 52px;
    line-height: 56px;
    max-width: 300px;
  }
}

@media screen and (max-width: 768px) {
  .portfolio__title {
    font-size: 42px;
    line-height: 46px;
    margin-bottom: 25px;
    max-width: 250px;
  }
}

@media screen and (max-width: 520px) {
  .portfolio__title {
    font-size: 32px;
    line-height: 36px;
    max-width: 140px;
  }
}

.portfolio__subtitle {
  font-size: 16px;
  line-height: 20px;
  color: #D1D1D1;
  max-width: 275px;
  margin-left: 32px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .portfolio__subtitle {
    font-size: 14px;
    line-height: 18px;
  }
}

@media screen and (max-width: 520px) {
  .portfolio__subtitle {
    margin-left: 50px;
  }
}

.portfolio__subtitle::before {
  content: '';
  position: absolute;
  top: 3px;
  width: 2px;
  height: 52px;
  left: -24px;
  background: #C6A57A;
}

.portfolio__photo img {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .portfolio__photo {
    width: 86%;
    margin-left: auto;
  }
}

.portfolio__about {
  display: flex;
  flex-direction: column;
  margin: 32px 0px 0px 50px;
}

@media screen and (max-width: 520px) {
  .portfolio__about {
    margin: 30px 0px 0px 30px;
  }
}

.portfolio__info {
  font-size: 14px;
  line-height: 18px;
  color: #D1D1D1;
  margin-bottom: 15px;
  position: relative;
  max-width: 316px;
}

@media screen and (max-width: 768px) {
  .portfolio__info {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 520px) {
  .portfolio__info {
    margin-bottom: 6px;
  }
}

.portfolio__name {
  font-family: "Gotham Pro Bold";
  font-size: 48px;
  line-height: 36px;
  color: #FFFFFF;
  margin-bottom: 8px;
  position: relative;
}

.portfolio__name::before {
  content: '';
  position: absolute;
  top: -85px;
  left: 5px;
  width: 2px;
  height: 68px;
  background: #C6A57A;
}

@media screen and (max-width: 520px) {
  .portfolio__name::before {
    top: -62px;
    height: 50px;
  }
}

@media screen and (max-width: 960px) {
  .portfolio__name {
    font-size: 36px;
    line-height: 40px;
  }
}

@media screen and (max-width: 520px) {
  .portfolio__name {
    font-size: 24px;
    line-height: 28px;
  }
}

.portfolio__btn {
  font-family: "Gotham Pro Medium";
  font-size: 10px;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C6A57A;
  display: flex;
  align-items: center;
}

.portfolio__btn svg {
  margin-left: 6px;
}

.portfolio__btn:hover {
  color: #fff;
  transition: all 0.2s;
}

.portfolio__btn:hover svg path {
  stroke: #fff;
  transition: all 0.2s;
}

.reviews {
  position: relative;
}

.reviews .reviews__wrap .slider-info {
  position: absolute;
  top: 62px;
  right: 4%;
}

@media screen and (max-width: 520px) {
  .reviews .reviews__wrap .slider-info {
    top: 10px;
  }
}

.reviews .reviews__wrap .slider-info .slider-info__count {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.reviews .reviews__wrap .slider-info span {
  font-family: "Gotham Pro Bold";
  color: #C6A57A;
  font-size: 14px;
}

.reviews .reviews__wrap .slider-info p {
  font-family: "Gotham Pro Bold";
  font-size: 36px;
  line-height: 20px;
  color: #171717;
  margin-bottom: 10px;
}

@media screen and (max-width: 1440px) {
  .reviews .reviews__wrap .slider-info p {
    font-size: 32px;
  }
}

@media screen and (max-width: 520px) {
  .reviews .reviews__wrap .slider-info p {
    font-size: 28px;
    line-height: 14px;
  }
}

.reviews .reviews__wrap .owl-nav {
  position: absolute;
  right: 4%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  height: 60px;
  bottom: -0px;
}

@media screen and (max-width: 440px) {
  .reviews .reviews__wrap .owl-nav {
    display: none;
  }
}

.reviews .reviews__wrap .owl-nav button.owl-prev {
  background-image: url(../img/stages/prev-arrow.svg);
  background-size: cover;
  width: 20px;
  height: 10px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .reviews .reviews__wrap .owl-nav button.owl-prev {
    width: 15px;
    height: 8px;
  }
}

.reviews .reviews__wrap .owl-nav button.owl-next {
  background-image: url(../img/stages/next-arrow.svg);
  background-size: cover;
  width: 20px;
  height: 10px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .reviews .reviews__wrap .owl-nav button.owl-next {
    width: 15px;
    height: 8px;
  }
}

.reviews__title {
  font-family: "Gotham Pro Bold";
  max-width: 250px;
  margin-top: 50px;
}

@media screen and (max-width: 960px) {
  .reviews__title {
    margin-top: 0px;
  }
}

.reviews__title span {
  display: block;
}

.reviews__bg {
  font-family: "Gotham Pro Bold";
  font-size: 300px;
  line-height: 110%;
  color: rgba(23, 23, 23, 0.03);
  position: absolute;
  right: 16%;
  top: 37%;
}

@media screen and (max-width: 1440px) {
  .reviews__bg {
    font-size: 250px;
    right: 14%;
  }
}

@media screen and (max-width: 960px) {
  .reviews__bg {
    font-size: 24vw;
    right: 0%;
  }
}

.reviews__wrap {
  padding: 150px 0px 200px;
  display: flex;
  justify-content: space-between;
}

.reviews__wrap.reviews__wrap_min{
    padding: 192px 0px 60px;
}

@media screen and (max-width: 1440px) {
  .reviews__wrap {
    padding: 100px 0px 120px;
  }
      .reviews__wrap.reviews__wrap_min{
        padding: 100px 0px 50px;
    }
}

@media screen and (max-width: 960px) {
  .reviews__wrap {
    padding: 60px 0px;
    flex-direction: column;
  }
      .reviews__wrap.reviews__wrap_min{
        padding: 60px 0px 40px;
    }
}

@media screen and (max-width: 520px) {
  .reviews__wrap {
    padding: 60px 0px 70px;
  }
  .reviews__wrap.reviews__wrap_min{
        padding: 60px 0px 40px;
    }
}

.reviews__slider {
  width: 75%;
  position: relative;
}

@media screen and (max-width: 960px) {
  .reviews__slider {
    margin-top: 40px;
    width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .reviews__slider {
    margin-top: 30px;
  }
}

.reviews__slide {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .reviews__slide {
    flex-direction: column-reverse;
  }
}

.reviews__photo {
  width: 39%;
}

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

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

.reviews__info {
  width: 54%;
  margin-top: 0px;
}

.reviews__wrap.reviews__wrap_min .reviews__info{
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .reviews__info {
    margin: 0px 0px 30px;
    width: 100%;
  }
  .reviews__wrap.reviews__wrap_min .reviews__info{
        margin-top: 0px;
    }
}

.reviews__name {
  font-family: "Gotham Pro Bold";
  font-size: 20px;
  line-height: 20px;
  color: #171717;
  margin-bottom: 2px;
}

@media screen and (max-width: 768px) {
  .reviews__name {
    font-size: 18px;
  }
}

.reviews__state {
  font-size: 14px;
  line-height: 24px;
  color: #C6A57A;
}

.reviews__text {
  margin-top: 24px;
  font-size: 18px;
  line-height: 24px;
  color: #747474;
  margin-left: 40px;
  max-width: 320px;
  position: relative;
}

@media screen and (max-width: 1300px) {
  .reviews__text {
    max-width: 295px;
  }
}

@media screen and (max-width: 768px) {
  .reviews__text {
    max-width: 75%;
    font-size: 16px;
    line-height: 20px;
    margin-left: 45px;
  }
}

@media screen and (max-width: 520px) {
  .reviews__text {
    max-width: 95%;
    margin-top: 20px;
  }
}

.reviews__text::before {
  content: '';
  position: absolute;
  top: 0px;
  left: -43px;
  background: url(../img/reviews/quote.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: contain;
}

.order__bg {
  font-family: "Gotham Pro Bold";
  font-size: 300px;
  line-height: 110%;
  color: rgba(23, 23, 23, 0.03);
  position: absolute;
  right: 0%;
  top: 37%;
}

@media screen and (max-width: 1440px) {
  .order__bg {
    font-size: 250px;
    right: 14%;
  }
}

@media screen and (max-width: 960px) {
  .order__bg {
    font-size: 24vw;
    right: 0%;
  }
}

.order__wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px 0px 120px;
}

.front-page .order__wrapper {
  padding: 102px 0px;
}

@media screen and (max-width: 1440px) {
  .front-page .order__wrapper {
    padding: 50px 0px;
  }
  .order__wrapper {
    padding: 40px 0px 120px;
  }
}

@media screen and (max-width: 960px) {
 .order__wrapper {
      flex-direction: column-reverse;
 }
  .front-page .order__wrapper {
    flex-direction: column-reverse;
    padding: 40px 0px 80px;
  }
  .order__wrapper {
    padding: 10px 0px 80px;
  }
}

@media screen and (max-width: 520px) {
  .front-page .order__wrapper {
    padding: 40px 0px 60px;
  }
  .order__wrapper {
    padding: 10px 0px 60px;
  }
}

.order__form {
  max-width: 492px;
  width: 100%;
}

@media screen and (max-width: 1300px) {
  .order__form {
    max-width: 400px;
  }
}

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

.order__info {
  width: 49%;
  margin-top: 90px;
}

@media screen and (max-width: 960px) {
  .order__info {
    margin: 0px 0px 40px;
    width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .order__info {
    margin-bottom: 30px;
  }
}

.order__title {
  font-family: "Gotham Pro Bold";
  margin-bottom: 24px;
}

@media screen and (max-width: 1440px) {
  .order__title {
    max-width: 380px;
  }
}

@media screen and (max-width: 520px) {
  .order__title {
    margin-bottom: 20px;
  }
}

.order__text {
  font-size: 16px;
  line-height: 22px;
  color: #747474;
  margin-left: 23px;
  position: relative;
  max-width: 350px;
}

.order__text b {
  font-family: "Gotham Pro Bold";
  color: #171717;
  display: block;
}

.order__text::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: #C6A57A;
  left: -23px;
  top: 1px;
}

@media screen and (max-width: 960px) {
    .order__text {
        max-width: 100%;
    }
    .order__text::before{
        height: 100%;
        top: 0px;
    }
}

.form {
  position: relative;
  padding: 66px 71px;
  background: rgba(189, 157, 116, 0.5);
  box-shadow: 40px 40px 80px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 1300px) {
  .form {
    padding: 40px 50px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 960px) {
  .form {
    margin-right: 0px;
  }
}

@media screen and (max-width: 520px) {
  .form {
    padding: 30px;
  }
}

.form__title {
  font-family: "Gotham Pro Bold";
  font-size: 32px;
  line-height: 36px;
  color: #171717;
  max-width: 315px;
  margin-bottom: 24px;
}

@media screen and (max-width: 1440px) {
  .form__title {
    font-size: 28px;
    line-height: 32px;
  }
}

@media screen and (max-width: 960px) {
  .form__title {
    font-size: 24px;
    line-height: 28px;
  }
}

@media screen and (max-width: 520px) {
  .form__title {
    font-size: 22px;
    line-height: 24px;
  }
}

.form__title span {
  display: block;
}

.form__item {
  margin-bottom: 13px;
  display: flex;
  flex-direction: column;
}

.form__item #form-phone {
    width: 100%;
}

.form__item label {
  font-family: "Gotham Pro Medium";
  font-size: 10px;
  line-height: 160%;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #747474;
  margin-bottom: 3px;
}

@media screen and (max-width: 520px) {
  .form__item label {
    font-size: 8px;
  }
}

.form__item input, .form__item textarea {
  background: #FFFFFF;
  border: 1px solid #E3E3E3;
  padding: 10px 20px;
  font-family: "Gotham Pro";
}

.form__item textarea {
  resize: none;
  min-height: 100px;
}

.form__send {
  font-family: "Gotham Pro Medium";
  background: #222222;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
  border: none;
  font-size: 11px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 11px 19px;
  margin-top: 11px;
}

.form__send:hover {
  background: #747474;
  transition: all 0.2s;
}

.demand_services .demand__wrap {
  padding-top: 193px;
}

@media screen and (max-width: 1440px) {
  .demand_services .demand__wrap {
    padding-top: 100px;
  }
}

@media screen and (max-width: 960px) {
  .demand_services .demand__wrap {
    padding-top: 60px;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs a {
  outline: none;
}

.breadcrumbs__link {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #535352;
  cursor: pointer;
  margin-right: 15px;
  position: relative;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .breadcrumbs__link {
    font-size: 12px;
    line-height: 16px;
  }
}

.breadcrumbs__link::after {
  content: '/';
  position: absolute;
  top: 0px;
  right: -11px;
  color: #535352;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .breadcrumbs__link::after {
    font-size: 12px;
  }
}

.breadcrumbs__link:hover {
  color: #fff;
  transition: all 0.2s;
}

.breadcrumbs__link_prev::after {
  content: '/';
  position: absolute;
  top: 0px;
  right: -11px;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .breadcrumbs__link_prev::after {
    font-size: 12px;
  }
}

.breadcrumbs__link_active {
  color: #fff;
  cursor: inherit;
  margin-right: 0px;
}

.breadcrumbs__link_active::after {
  display: none;
}

.main.main_portfolio .main-about {
  background: #222222;
}

.works {
  background: #222222;
  padding-top: 5px;
}

.works__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.works__word {
  position: absolute;
  font-family: "Gotham Pro Bold";
  font-size: 22vw;
  line-height: 110%;
  color: rgba(255, 255, 255, 0.03);
  transform: rotate(90deg) translate(0%, -50%);
  top: 65px;
  left: 28%;
  width: 32%;
}

@media screen and (max-width: 1440px) {
  .works__word {
    left: 30%;
  }
}

@media screen and (max-width: 640px) {
  .works__word {
    font-size: 40vw;
    left: unset;
    right: 5%;
    top: 30px;
    transform: rotate(90deg) translate(0%, 0%);
  }
}

.works__side {
  width: 45%;
}

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

.works__side_right {
  margin-top: 82px;
}

@media screen and (max-width: 640px) {
  .works__side_right {
    margin-top: 0px;
  }
}

.works__side_right .works__info {
  margin-left: 60px;
}

@media screen and (max-width: 1440px) {
  .works__side_right .works__info {
    margin-left: 40px;
  }
}

@media screen and (max-width: 960px) {
  .works__side_right .works__info {
    margin-left: 25px;
  }
}

@media screen and (max-width: 640px) {
  .works__side_right .works__info {
    margin-left: 20px;
  }
}

.works__side a {
  outline: none;
}

.works__head {
  max-width: 450px;
  width: 100%;
  margin-left: auto;
  margin-bottom: 135px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .works__head {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 640px) {
  .works__head {
    margin-bottom: 40px;
  }
}

.works__head h1 {
  font-family: "Gotham Pro Bold";
  font-size: 60px;
  line-height: 64px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

@media screen and (max-width: 1440px) {
  .works__head h1 {
    font-size: 48px;
    line-height: 54px;
  }
}

@media screen and (max-width: 768px) {
  .works__head h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

.works__head p {
  font-size: 16px;
  line-height: 20px;
  color: #D1D1D1;
  margin-left: 40px;
  position: relative;
  max-width: 304px;
}

@media screen and (max-width: 768px) {
  .works__head p {
    font-size: 14px;
  }
}

.works__head p::before {
  content: '';
  position: absolute;
  top: 0px;
  left: -40px;
  height: 90%;
  background-color: #C6A57A;
  width: 2px;
}

.works__head p span {
  color: #C6A57A;
}

.works__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
}

.works__item.hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .works__item {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 640px) {
  .works__item {
    margin-bottom: 40px;
  }
}

.works__photo {
  display: inline-block;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  transition: 0.8s;
}

@media screen and (max-width: 640px) {
  .works__photo {
    margin-bottom: 20px;
  }
}

.works__photo img {
  width: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.works__photo:hover img{
    transform: scale(1.1);
    transition: 0.8s;
}

.works__info {
  margin-left: 100px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1440px) {
  .works__info {
    margin-left: 70px;
  }
}

@media screen and (max-width: 960px) {
  .works__info {
    margin-left: 40px;
  }
}

@media screen and (max-width: 640px) {
  .works__info {
    margin-left: 20px;
  }
}

.works__title {
  font-family: "Gotham Pro Bold";
  display: inline-block;
  font-size: 32px;
  line-height: 36px;
  color: #FFFFFF;
  margin-bottom: 2px;
  position: relative;
  transition: all 0.2s;
}

@media screen and (max-width: 1440px) {
  .works__title {
    font-size: 28px;
    line-height: 32px;
  }
}

@media screen and (max-width: 768px) {
  .works__title {
    font-size: 24px;
    line-height: 28px;
  }
}

@media screen and (max-width: 520px) {
  .works__title {
    font-size: 22px;
    line-height: 26px;
  }
}

.works__title::before {
  content: '';
  position: absolute;
  top: -85px;
  left: 7px;
  width: 2px;
  height: 68px;
  background: #C6A57A;
}

@media screen and (max-width: 768px) {
  .works__title::before {
    height: 45px;
    top: -55px;
  }
}

.works__title:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.works__btn {
  display: flex;
  justify-content: center;
  margin-top: 250px;
}

@media screen and (max-width: 640px) {
  .works__btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0px;
  }
}

@media screen and (max-width: 520px) {
  .works__btn {
    bottom: 25px;
  }
}

.works__btn span {
  display: inline-block;
  font-size: 12px;
  line-height: 160%;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "Gotham Pro Medium";
  border: 2px solid transparent;
  padding: 12px 25px;
  position: relative;
  cursor: pointer;
  background: #C6A57A;
}

.works__btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.5s;
}

.works__btn span:hover {
  border: 2px solid #C6A57A;
  color: #fff;
  transition: all 0.3s;
}

.works__btn span:hover::before {
  background: #fff;
  left: 95%;
  transition: all 0.5s;
}

.works__description {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  color: #989898;
  max-width: 305px;
  margin-bottom: 10px;
}

.works__more {
  font-family: "Gotham Pro Medium";
  display: flex;
  align-items: center;
  font-size: 10px;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C6A57A;
}

.works__more:hover {
  color: #fff;
  transition: all 0.2s;
}

.works__more svg {
  margin-left: 6px;
}

.works__more:hover svg path {
  stroke: #fff;
  transition: all 0.2s;
}

.shop {
  padding-bottom: 140px;
}

.main_services_old .shop {
  padding-bottom: 50px;
}

.shop__wrap {
  display: flex;
  justify-content: space-between;
  margin: 60px 0px;
}

@media screen and (max-width: 768px) {
  .shop__wrap {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 540px) {
  .shop__wrap {
    margin: 30px 0px 40px;
  }
}

.shop__list {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .shop__list {
    width: 100%;
    margin-top: 20px;
  }
}

.shop__list li {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}

.shop__list li span.shop__list_link {
  display: inline-block;
  color: #fff;
  outline: none;
  border-bottom: 0.5px solid #fff;
  cursor: pointer;
}

.shop__list li span.shop__list_link:hover {
  color: #C6A57A;
  border-bottom: 0.5px solid #C6A57A;
  transition: all 0.2s;
}

.shop__list li span {
  color: #949494;
}

.shop__list li.copy_alert {
    display: none;
}

.shop__list li.copy_alert span {
    color: #fff;
}

.shop__info {
  width: 75%;
}

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

.shop__wrapper {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .shop__wrapper {
    flex-direction: column;
  }
}

.shop__head {
  width: 42%;
}

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

.shop__title {
  color: #fff;
  font-family: "Gotham Pro Bold";
  margin-bottom: 15px;
}

@media screen and (max-width: 1440px) {
  .shop__title {
    max-width: 300px;
  }
}

@media screen and (max-width: 540px) {
  .shop__title {
    max-width: 228px;
  }
}

.shop__subtile {
  font-size: 16px;
  line-height: 20px;
  color: #C6A57A;
  margin-left: 34px;
  position: relative;
  max-width: 304px;
}

@media screen and (max-width: 768px) {
  .shop__subtile {
    font-size: 14px;
    max-width: 240px;
  }
}

.shop__subtile::before {
  content: '';
  position: absolute;
  top: 3px;
  left: -34px;
  width: 2px;
  height: 32px;
  background-color: #C6A57A;
}

.shop__description {
  font-size: 14px;
  line-height: 20px;
  color: #D1D1D1;
  width: 54%;
  margin-top: 15px;
}

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

.shop__description p {
  max-width: 362px;
}

@media screen and (max-width: 960px) {
  .shop__description p {
    max-width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .shop__description__right {
    width: 49%;
  }
}

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

.shop__description__right p {
  margin-left: auto;
  max-width: 386px;
}

@media screen and (max-width: 960px) {
  .shop__description__right p {
    margin-left: 0px;
    max-width: 100%;
  }
}

.case {
  margin-top: -100px;
  z-index: 1;
  position: relative;
}

.case__image {
  width: 75%;
  margin-left: auto;
  filter: drop-shadow(20px 40px 150px rgba(0, 0, 0, 0.15));
}

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

.case__image img {
  width: 100%;
  object-fit: cover;
}

.main_shop {
  position: relative;
}

.main_shop .main-about__black {
  background: #222222;
  background-image: none;
}

.main_shop .inner__bg {
  position: absolute;
  font-family: "Gotham Pro Bold";
  font-size: 21vw;
  line-height: 110%;
  color: rgba(0, 0, 0, 0.04);
  transform: rotate(90deg);
  /* top: 5%; */
  top: 315px;
  left: 13%;
  width: 32%;
  z-index: 2;
}

.main_shop .inner__bg span {
  color: rgba(255, 255, 255, 0.03);
}

@media screen and (max-width: 1600px) {
  .main_shop .inner__bg {
    left: 7%;
  }
}

@media screen and (max-width: 1440px) {
  .main_shop .inner__bg {
    left: 1%;
    font-size: 24vw;
  }
}

@media screen and (max-width: 1100px) {
  .main_shop .inner__bg {
    top: 7%;
  }
}

@media screen and (max-width: 960px) {
  .main_shop .inner__bg {
    top: 9%;
  }
}

@media screen and (max-width: 540px) {
  .main_shop .inner__bg {
    display: none;
  }
}

.main_shop .inner__bg_top {
  top: 7%;
}

@media screen and (max-width: 1100px) {
  .main_shop .inner__bg_top {
    top: 9%;
  }
}

@media screen and (max-width: 960px) {
  .main_shop .inner__bg_top {
    top: 14%;
  }
}

@media screen and (max-width: 768px) {
  .main_shop .inner__bg_top {
    top: 18%;
  }
}

.inner {
  position: relative;
  z-index: 3;
  overflow-x: hidden;
  padding-bottom: 90px;
}

@media screen and (max-width: 960px) {
  .inner {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 540px) {
  .inner {
    padding-bottom: 40px;
  }
}

.inner__wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 90px;
}

@media screen and (max-width: 960px) {
  .inner__wrap {
    padding-top: 70px;
  }
}

@media screen and (max-width: 768px) {
  .inner__wrap {
    flex-direction: column;
  }
}

@media screen and (max-width: 540px) {
  .inner__wrap {
    padding-top: 30px;
  }
}

.inner__head {
  width: 44%;
}

@media screen and (max-width: 768px) {
  .inner__head {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 540px) {
  .inner__head {
    margin-bottom: 0px;
  }
}

.inner__head_bigger {
  width: 48%;
}

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

.inner__title {
  font-family: "Gotham Pro Bold";
  font-size: 32px;
  line-height: 40px;
  color: #171717;
  position: relative;
}

@media screen and (max-width: 960px) {
  .inner__title {
    font-size: 28px;
    line-height: 34px;
  }
}

@media screen and (max-width: 768px) {
  .inner__title {
    font-size: 24px;
    line-height: 28px;
  }
}

@media screen and (max-width: 540px) {
  .inner__title {
    font-size: 22px;
    line-height: 26px;
  }
}

.inner__title::before {
  content: '';
  position: absolute;
  height: 120px;
  width: 2px;
  background-color: #C6A57A;
  top: -150px;
  left: 0px;
}

@media screen and (max-width: 540px) {
  .inner__title::before {
    display: none;
  }
}

.inner__info {
  width: 40%;
  margin-top: 20px;
}

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

.inner__info p {
  font-size: 14px;
  line-height: 18px;
  color: #747474;
  margin-bottom: 32px;
  max-width: 370px;
}

@media screen and (max-width: 768px) {
  .inner__info p {
    max-width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .inner__info p {
    margin-bottom: 15px;
  }
}

.inner__info p b {
  color: #000000;
  font-family: "Gotham Pro Medium";
}

.inner__works {
  margin-top: -85px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .inner__works {
    margin-top: 20px;
  }
}

@media screen and (max-width: 540px) {
  .inner__works {
    flex-direction: column;
  }
}

.inner__works_start {
  margin-top: 85px;
}

@media screen and (max-width: 1440px) {
  .inner__works_start {
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .inner__works_start {
    margin-top: 40px;
  }
}

@media screen and (max-width: 540px) {
  .inner__works_start {
    margin-top: 30px;
  }
}

.inner__works_start .inner__pages_overlay {
  margin-top: 0px;
}

.inner__pages {
  position: relative;
  width: 40%;
  margin-bottom: 160px;
}

@media screen and (max-width: 960px) {
  .inner__pages {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 768px) {
  .inner__pages {
    width: 45%;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 540px) {
  .inner__pages {
    width: 100%;
    margin-bottom: 30px;
  }
}

.inner__pages img {
  width: 100%;
  object-fit: cover;
}

.inner__pages.inner__pages_bg_first {
  position: relative;
}

.inner__pages.inner__pages_bg_first::before {
  content: '';
  position: absolute;
  top: -57px;
  right: -103px;
  width: 945px;
  height: 1500px;
  max-width: 965px;
  background: rgba(0, 0, 0, 0.04);
  z-index: -1;
}

@media screen and (max-width: 960px) {
  .inner__pages.inner__pages_bg_first::before  {
    height: 760px;
  }
}

@media screen and (max-width: 540px) {
  .inner__pages.inner__pages_bg_first::before  {
    display: none;
  }
}

.inner__pages.inner__pages_bg_last {
  position: relative;
}

@media screen and (max-width: 540px) {
  .inner__pages.inner__pages_bg_last {
    margin-top: -30px;
  }
}

.inner__pages.inner__pages_bg_last::before {
  content: '';
  position: absolute;
  top: -57px;
  right: -70%;
  width: 944px;
  height: 988px;
  background: rgba(0, 0, 0, 0.04);
  z-index: -1;
}

@media screen and (max-width: 1300px) {
  .inner__pages.inner__pages_bg_last::before {
    width: 844px;
    height: 760px;
  }
}

@media screen and (max-width: 768px) {
  .inner__pages.inner__pages_bg_last::before {
    width: 570px;
  }
}

@media screen and (max-width: 540px) {
  .inner__pages.inner__pages_bg_last::before {
    display: none;
  }
}

.inner__pages_overlay {
  padding: 53px;
  background: #222222;
  display: flex;
  flex-direction: column;
  margin-top: 180px;
}

@media screen and (max-width: 768px) {
  .inner__pages_overlay {
    padding: 25px 25px 10px;
    margin-top: 140px;
  }
}

@media screen and (max-width: 540px) {
  .inner__pages_overlay {
    margin-top: 0px;
  }
}

.inner__pages_overlay img {
  margin-bottom: 20px;
}

.inner__pages_bg {
  padding: 30px 51px 51px;
  background: #222222;
  width: 49%;
  margin-top: 35px;
}

@media screen and (max-width: 768px) {
  .inner__pages_bg {
    padding: 10px 25px 25px;
  }
}

@media screen and (max-width: 540px) {
  .inner__pages_bg {
    width: 100%;
    margin: 0px 0px 30px;
  }
}

.inner__pages_bg .inner__name {
  margin-bottom: 8px;
}

.inner__pages_center .inner__name {
  width: 75%;
  margin: 0 auto 26px;
}

@media screen and (max-width: 768px) {
  .inner__pages_center .inner__name {
    margin: 0px auto 10px;
  }
}

@media screen and (max-width: 540px) {
  .inner__pages_center .inner__name {
    width: 100%;
  }
}

.inner__pages_center .inner__name_top {
  margin: 22px auto 0px;
}

.inner__pages_center .inner__photo {
  width: 75%;
  margin: 0 auto;
}

@media screen and (max-width: 540px) {
  .inner__pages_center .inner__photo {
    width: 100%;
  }
}

.inner__pages_shadow .inner__photo {
  filter: drop-shadow(20px 40px 150px rgba(0, 0, 0, 0.1));
}

.inner__pages_both {
  width: 50%;
  margin-top: 100px;
}

@media screen and (max-width: 540px) {
  .inner__pages_both {
    width: 100%;
    margin-top: 0px;
  }
}

.inner__pages_both .inner__photo {
  margin-bottom: 56px;
}

@media screen and (max-width: 768px) {
  .inner__pages_both .inner__photo {
    margin-bottom: 25px;
  }
}

.inner__pages_nobg {
  margin-top: -60px;
}

@media screen and (max-width: 540px) {
  .inner__pages_nobg {
    margin-top: 0px !important;
    display: flex;
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 540px) {
  .inner__pages_nobg .inner__name {
    margin: 0px 0px 10px;
  }
}

.inner__pages_nobg::before {
  display: none;
}

.inner__name {
  font-family: "Gotham Pro Medium";
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #C6A57A;
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .inner__name {
    font-size: 10px;
    line-height: 14px;
    margin-bottom: 10px;
  }
}

.inner .inner-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 70px;
}

@media screen and (max-width: 960px) {
  .inner .inner-navigation {
    margin-top: 20px;
  }
}

.inner .inner-navigation_start {
  margin-top: 0px;
}

.inner .inner-navigation a {
  outline: none;
}

.inner .inner-navigation__link {
  display: flex;
  align-items: "Gotham Pro Medium";
  font-family: "Gotham Pro Medium";
  font-size: 10px;
  line-height: 212%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C6A57A;
}

.inner .inner-navigation__link:hover {
  color: #e9c99f;
  transition: all 0.2s;
}

.inner .inner-navigation__link:hover svg path {
  stroke: #e9c99f;
  transition: all 0.2s;
}

.inner .inner-navigation__link svg {
  margin: 0px 10px;
}

@media screen and (max-width: 768px) {
  .inner .inner-navigation__link span {
    display: none;
  }
}

.inner .inner-navigation__same {
  display: inline-block;
  font-family: "Gotham Pro Medium";
  padding: 11px 32px;
  font-size: 11px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0px 32px;
  background: #222222;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
}

.inner .inner-navigation__same:hover {
  background: #C6A57A;
  transition: all 0.2s;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
}

.popup {
  position: absolute;
  max-width: 810px;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 65px 72px;
  box-sizing: border-box;
  background: #deceb9;
  box-shadow: 60px 60px 200px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 960px) {
  .popup {
    max-width: unset;
    width: 85%;
  }
}

@media screen and (max-width: 768px) {
  .popup {
    width: 90%;
  }
}

@media screen and (max-width: 520px) {
  .popup {
    padding: 20px 30px;
  }
}

.popup__h2 {
  text-align: center;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

@media screen and (max-width: 520px) {
  .close-popup {
    width: 25px;
    height: 25px;
    right: 10px;
  }
}

.close-popup:before {
  content: '';
  background-color: #C6A57A;
  position: absolute;
  height: 1px;
  width: 40px;
  top: 30px;
  left: -4px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 520px) {
  .close-popup:before {
    width: 25px;
    top: 15px;
  }
}

.close-popup:after {
  content: '';
  background-color: #C6A57A;
  position: absolute;
  height: 1px;
  width: 40px;
  top: 30px;
  transform: rotate(45deg);
  left: -4px;
}

@media screen and (max-width: 520px) {
  .close-popup:after {
    width: 25px;
    top: 15px;
  }
}

.popup__title {
  font-family: "Gotham Pro Bold";
  font-size: 32px;
  line-height: 36px;
  color: #171717;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .popup__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 30px;
  }
}

.discuss__wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .discuss__wrap {
    flex-direction: column;
  }
}

@media screen and (max-width: 520px) {
  .discuss__wrap {
    margin-bottom: 25px;
  }
}

.discuss__side {
  width: 48%;
}

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

.discuss__side:last-child .discuss__item {
  height: 100%;
}

.discuss__side:first-child .discuss__item:last-child {
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
  .discuss__side:first-child .discuss__item:last-child {
    margin-bottom: 13px;
  }
}

.discuss__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 13px;
}

.discuss__item label {
  font-family: "Gotham Pro Medium";
  font-size: 10px;
  line-height: 160%;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #747474;
  margin-bottom: 3px;
}

.discuss__item input, .discuss__item textarea {
  font-family: "Gotham Pro";
  background: #FFFFFF;
  border: 1px solid #E3E3E3;
  padding: 10px 20px;
}

.discuss__item textarea {
  resize: none;
  height: 100%;
}

@media screen and (max-width: 786px) {
  .discuss__item textarea {
    min-height: 100px;
  }
}

.header {
  position: relative;
}

.header__dropdown {
  display: none;
  position: absolute;
  width: 100%;
  top: 75px;
  left: 0px;
  background: #292929;
  padding-bottom: 50px;
  z-index: 9;
}

@media screen and (max-width: 840px) {
  .header__dropdown {
    left: 0px;
    z-index: 99;
    position: fixed;
    overflow-y: scroll;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
}

.header.dropdown-opened {
  background: #292929;
}

.header.dropdown-opened .container {
  border-color: transparent;
}

@media screen and (max-width: 840px) {
  .header.dropdown-opened .container {
    max-width: 100%;
    padding: 10px 14px;
  }
}

.header.dropdown-opened .container .center-line, .header.dropdown-opened .container .left-line, .header.dropdown-opened .container .right-line {
  background: transparent;
}

.header.dropdown-opened .services__link {
  border-bottom: 1px solid #fff;
  transition: all 0.2s;
}

.dropdown__content {
  display: flex;
  justify-content: space-between;
  width: 74.5%;
  margin-left: auto;
}

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

@media screen and (max-width: 840px) {
  .dropdown__content {
    flex-direction: column;
  }
}

.dropdown__item {
  width: 25%;
}

@media screen and (max-width: 840px) {
  .dropdown__item {
    width: 100%;
    margin-bottom: 10px;
  }
}

.dropdown__item_big {
  width: 44%;
}

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

.dropdown__item:last-child {
  width: 21%;
}

@media screen and (max-width: 840px) {
  .dropdown__item:last-child {
    width: 100%;
  }
}

.dropdown__title > a {
  font-family: "Gotham Pro Bold";
  font-size: 18px;
  line-height: 36px;
  color: #FFFFFF;
  padding: 15px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 1200px) {
  .dropdown__title > a  {
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (max-width: 840px) {
  .dropdown__title > a  {
    padding: 0px 0px 15px;
  }
}

.dropdown__wrap {
  display: flex;
  justify-content: space-between;
}

.dropdown__wrap .dropdown__list {
  width: 48%;
}

@media screen and (max-width: 840px) {
  .dropdown__wrap {
    max-width: 450px;
  }
}

@media screen and (max-width: 520px) {
  .dropdown__wrap {
    max-width: 350px;
  }
}

.dropdown__list {
  margin-top: 23px;
}

.dropdown__list li {
  margin-bottom: 18px;
}

@media screen and (max-width: 1440px) {
  .dropdown__list li {
    margin-bottom: 14px;
  }
}

.dropdown__list li a {
  outline: none;
  font-size: 14px;
  line-height: 18px;
  color: #9F9F9F;
}

@media screen and (max-width: 1440px) {
  .dropdown__list li a {
    font-size: 14px;
    line-height: 16px;
  }
}

.dropdown__list li a:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.dropdown__list_big {
  display: flex;
  justify-content: space-between;
}

.dropdown__list_big li {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .portfolio.portfolio_services .portfolio__wrapper {
    padding-top: 0px;
  }
}

.light-theme .container {
  border-left: 1px solid rgba(134, 134, 134, 0.1);
  border-right: 1px solid rgba(134, 134, 134, 0.1);
}

.light-theme .center-line, .light-theme .right-line, .light-theme .left-line {
  background: rgba(134, 134, 134, 0.1);
  opacity: 1;
}

.mobile__logo {
  display: none;
}

@media screen and (max-width: 840px) {
  .mobile__logo {
    display: block;
    margin-bottom: 35px;
  }
}

.quality {
  padding-bottom: 150px;
}

@media screen and (max-width: 1440px) {
  .quality {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 960px) {
  .quality {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 520px) {
  .quality {
    padding-bottom: 60px;
  }
}

.quality .title {
  font-family: "Gotham Pro Bold";
  margin-bottom: 40px;
}

@media screen and (max-width: 960px) {
  .quality .title {
    max-width: 560px;
  }
}

@media screen and (max-width: 520px) {
  .quality .title {
    margin-bottom: 30px;
  }
}

.quality .title span {
  color: #C6A57A;
}

.quality__wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
}

@media screen and (max-width: 960px) {
  .quality__wrap {
    flex-direction: column;
    padding-top: 30px;
  }
}

@media screen and (max-width: 520px) {
  .quality__wrap {
    padding-top: 10px;
  }
}

.quality__info {
  width: 50%;
}

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

.quality h3,
.quality__title {
  font-family: "Gotham Pro Bold";
  font-size: 18px;
  line-height: 22px;
  color: #171717;
  margin-bottom: 20px;
  /* max-width: 316px; */
}

.quality p,
.quality__text {
  font-size: 14px;
  color: #747474;
  margin-bottom: 20px;
}

@media screen and (max-width: 520px) {
  .quality p,
  .quality__text {
    margin-bottom: 15px;
  }
}

.quality p b,
.quality__text b {
  font-family: "Gotham Pro Bold";
  color: #171717;
}

.quality ul,
.quality ol,
.quality__list {
  margin-bottom: 30px;
}

.quality ul b,
.quality ol b,
.quality__list b {
  font-family: "Gotham Pro Bold";
  color: #171717;
}

.quality__photo {
  width: 36%;
}

@media screen and (max-width: 1100px) {
  .quality__photo {
    width: 43%;
  }
}

@media screen and (max-width: 960px) {
  .quality__photo {
    width: 100%;
    margin-bottom: 30px;
  }
}

.quality__photo img {
  width: 100%;
  object-fit: cover;
}

.quality ol,
.quality ul,
.quality__items {
  margin-left: 15px;
}

.quality ol li,
.quality ul li,
.quality__items li {
  position: relative;
}

.quality ul li::before,
.quality__items li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -15px;
  width: 3px;
  height: 3px;
  background-color: #C6A57A;
  border-radius: 50%;
}

.quality li {
  font-size: 14px;
  line-height: 18px;
  color: #747474;
  margin-bottom: 12px;
  display: flex;
}

.quality ol li b,
.quality li b {
  margin-right: 3px;
}

.quality ol {
    list-style: decimal;
}
.quality ol li {
    display: list-item;
}

 .quality ol li::marker {
    margin-right: 3px;
    font-family: "Gotham Pro Bold";
    color: #171717;
} 

.main.about .main-about__black {
  background: #222222 url(../img/about/about-bg.png) no-repeat;
  background-position: top 17px center;
  background-size: 81%;
}

@media screen and (max-width: 960px) {
  .main.about .main-about__black {
    background-size: contain;
  }
}

@media screen and (max-width: 520px) {
  .main.about .main-about__black {
    background: #222222 url(../img/about/man.png) no-repeat;
    background-position: top 2% left 250%;
    background-size: 90%;
  }
}

.main.about .info-container.container {
  height: auto;
}

.about-block {
  position: relative;
}

.about-block__header {
  padding-top: 115px;
  max-width: 58%;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .about-block__header {
    max-width: 90%;
    margin-left: 0px;
  }
}

@media screen and (max-width: 520px) {
  .about-block__header {
    padding-top: 60px;
  }
}

.about-block__header .about-block__title {
  font-family: "Gotham Pro Bold";
  font-size: 60px;
  line-height: 64px;
  color: #FFFFFF;
  margin-bottom: 30px;
}

@media screen and (max-width: 1440px) {
  .about-block__header .about-block__title {
    font-size: 48px;
    line-height: 54px;
  }
}

@media screen and (max-width: 768px) {
  .about-block__header .about-block__title {
    font-size: 32px;
    line-height: 40px;
    max-width: 360px;
  }
}

@media screen and (max-width: 520px) {
  .about-block__header .about-block__title {
    max-width: 300px;
  }
}

.about-block__header h1 span {
  color: #C6A57A;
}

.about-block__sub {
  font-size: 16px;
  line-height: 20px;
  color: #D1D1D1;
  margin-left: auto;
  position: relative;
  max-width: 352px;
  margin-right: 100px;
}

@media screen and (max-width: 960px) {
  .about-block__sub {
    margin-right: 0px;
  }
}

@media screen and (max-width: 768px) {
  .about-block__sub {
    font-size: 14px;
    max-width: 280px;
    margin-left: 104px;
  }
}

@media screen and (max-width: 520px) {
  .about-block__sub {
    margin-left: 50px;
  }
}

.about-block__sub::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -34px;
  width: 2px;
  height: 88px;
  background-color: #C6A57A;
}

.about-block__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 74%;
  margin-top: 120px;
}

@media screen and (max-width: 1100px) {
  .about-block__items {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .about-block__items {
    margin-top: 90px;
  }
}

@media screen and (max-width: 520px) {
  .about-block__items {
   flex-direction: column;
    align-items: baseline;
    justify-content: left;
    text-align: left;
    margin: 40px auto 0px;
    max-width: 200px;
  }
}

.about-block__item {
  width: 32%;
}

@media screen and (max-width: 520px) {
  .about-block__item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.about-block__item:nth-child(2n) {
  margin-top: -85px;
}

@media screen and (max-width: 768px) {
  .about-block__item:nth-child(2n) {
    margin-top: -35px;
  }
}

@media screen and (max-width: 520px) {
  .about-block__item:nth-child(2n) {
    margin-top: 0px;
  }
}

@media screen and (max-width: 520px) {
  .about-block__item:nth-child(2n) br {
    display: none;
  }
}

.about-block__item:last-child span {
  display: inline-block;
  margin-left: -20px;
}

@media screen and (max-width: 960px) {
  .about-block__item:last-child span {
    margin-left: -10px;
  }
}

@media screen and (max-width: 520px) {
  .about-block__item:last-child span {
    margin-left: 0px;
  }
}

.about-block__item:last-child .about-block__text {
  margin-top: -20px;
}

@media screen and (max-width: 960px) {
  .about-block__item:last-child .about-block__text {
    margin-top: -10px;
  }
}

.about-block__number {
  font-size: 96px;
  line-height: 60px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
  .about-block__number {
    font-size: 60px;
    line-height: 40px;
  }
}

@media screen and (max-width: 768px) {
  .about-block__number {
    font-size: 42px;
    line-height: 20px;
  }
}

@media screen and (max-width: 520px) {
      .about-block__number {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 8px;
      }
    .about-block__item:nth-child(2n) .about-block__number{
        display: flex;
        flex-direction: column; 
    }
    .about-block__item:last-child .about-block__text{
        margin-top: 0px;
    }
}

.about-block__number span {
  font-family: "Gotham Pro";
  font-size: 24px;
  line-height: 58px;
}

@media screen and (max-width: 960px) {
  .about-block__number span {
    font-size: 18px;
    line-height: 20px;
  }
}
/* 
@media screen and (max-width: 768px) {
  .about-block__number span {
    font-size: 14px;
    line-height: 36px;
  }
}
 */
.about-block__text {
  font-size: 16px;
  line-height: 20px;
  color: #C6A57A;
  max-width: 240px;
}

@media screen and (max-width: 768px) {
  .about-block__text {
    font-size: 14px;
    line-height: 18px;
    max-width: 200px;
  }
}

@media screen and (max-width: 520px) {
  .about-block__text {
    max-width: 240px;
    margin: 0 auto;
  }
}

.studio__wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 150px;
}

@media screen and (max-width: 1440px) {
  .studio__wrap {
    margin-top: 100px;
  }
}

@media screen and (max-width: 768px) {
  .studio__wrap {
    flex-direction: column;
    margin-top: 30px;
  }
}

.studio__info {
  max-width: 390px;
  margin-top: 50px;
}

@media screen and (max-width: 960px) {
  .studio__info {
    max-width: 300px;
  }
}

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

@media screen and (max-width: 520px) {
  .studio__info {
    margin-top: 20px;
  }
}

.studio__info b,
.studio__info strong {
  font-family: "Gotham Pro Bold";
  font-size: 18px;
  line-height: 22px;
  color: #F2F2F2;
  /* margin-bottom: 15px; */
  max-width: 250px;
}

.studio__info p {
  font-size: 14px;
  line-height: 20px;
  color: #989898;
}

.studio__photo {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .studio__photo {
    width: 100%;
    margin-top: 20px;
  }
}

.studio__photo img {
  width: 100%;
  object-fit: cover;
}

.team {
  margin-top: 142px;
  padding-bottom: 200px;
}

@media screen and (max-width: 1440px) {
  .team {
    padding-bottom: 160px;
  }
}

@media screen and (max-width: 960px) {
  .team {
    margin-top: 100px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .team {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}

.team .title {
  color: #fff;
  font-family: "Gotham Pro Bold";
  max-width: 500px;
}

@media screen and (max-width: 1440px) {
  .team .title {
    max-width: 400px;
  }
}

.team .owl-carousel .owl-nav {
  position: absolute;
  right: 0px;
  top: -92px;
}

.team .owl-carousel .owl-nav button.owl-prev {
  background-image: url(../img/about/prev.svg);
  background-size: cover;
  width: 9px;
  height: 18px;
  background-size: contain;
  margin: 0px 40px;
}

.team .owl-carousel .owl-nav button.owl-next {
  background-image: url(../img/about/next.svg);
  background-size: cover;
  width: 9px;
  height: 18px;
  background-size: contain;
  margin: 0px;
}

@media screen and (max-width: 520px) {
  .team .owl-carousel img {
    max-height: 250px;
    height: 100%;
    object-fit: cover;
  }
}

.team__slider {
  margin-top: 60px;
}

.team__position {
  font-family: "Gotham Pro Bold";
  font-size: 10px;
  line-height: 160%;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #C6A57A;
  margin-bottom: 15px;
  text-align: right;
}

.team__photo {
  margin-bottom: 11px;
}

.team__name {
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.discuss-project.light-theme .discuss-project__wrap{
    padding: 160px 0px;
}

.discuss-project__wrap {
  padding: 100px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1440px) {
  .discuss-project__wrap {
    padding-bottom: 60px;
  }
      .discuss-project.light-theme .discuss-project__wrap{
        padding: 140px 0px;
    }
}

@media screen and (max-width: 768px) {
  .discuss-project__wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 0px 40px;
  }
  .discuss-project.light-theme .discuss-project__wrap{
        padding: 60px 0px;
    }
}

.discuss-project_bottom .discuss-project__wrap {
  padding-bottom: 160px;
}

@media screen and (max-width: 960px) {
  .discuss-project_bottom .discuss-project__wrap {
    padding-bottom: 110px;
  }
}

@media screen and (max-width: 768px) {
  .discuss-project_bottom .discuss-project__wrap {
    padding-bottom: 60px;
  }
}

.discuss-project__info {
  max-width: 266px;
}

@media screen and (max-width: 768px) {
  .discuss-project__info {
    margin-bottom: 30px;
    max-width: 100%;
  }
}

.discuss-project__title {
  font-family: "Gotham Pro Bold";
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .discuss-project__title {
    margin-bottom: 30px;
  }
}

.discuss-project__subtitle {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  color: #747474;
  margin-left: 25px;
}

@media screen and (max-width: 768px) {
  .discuss-project__subtitle {
    max-width: 250px;
  }
}

.discuss-project__subtitle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: -25px;
  background-color: #C6A57A;
  width: 2px;
  height: 28px;
}

.discuss-project__data {
  width: 65%;
}

@media screen and (max-width: 768px) {
  .discuss-project__data {
    width: 100%;
  }
}

.form-discuss__side {
  width: 48%;
}

@media screen and (max-width: 960px) {
  .form-discuss__side {
    width: 100%;
  }
}

.form-discuss__side:last-child .form__item {
  height: 100%;
}

.form-discuss__side:first-child .form__item:last-child {
  margin-bottom: 0px;
}

@media screen and (max-width: 960px) {
  .form-discuss__side:first-child .form__item:last-child {
    margin-bottom: 13px;
  }
}

.form-discuss__wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

@media screen and (max-width: 960px) {
  .form-discuss__wrap {
    flex-direction: column;
  }
}

.form__item textarea {
  height: 100%;
}

.form__send {
  margin-top: 30px;
}

.contact {
  background: #222222;
  position: relative;
}

.contact a {
  display: block;
  outline: none;
}

.contact a:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.contact a:hover svg path {
  fill: #C6A57A;
  transition: all 0.2s;
}

.contact__bg {
  position: absolute;
  font-family: "Gotham Pro Bold";
  font-size: 21vw;
  line-height: 110%;
  color: rgba(255, 255, 255, 0.03);
  top: 24%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact__content {
  padding-bottom: 145px;
}

@media screen and (max-width: 960px) {
  .contact__content {
    padding: 20px 0px 90px;
  }
}

@media screen and (max-width: 768px) {
  .contact__content {
    padding: 20px 0px 60px;
  }
}

.contact__wrap {
  width: 75%;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .contact__wrap {
    width: 100%;
    margin-left: 0px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .contact__wrap {
    flex-direction: column;
    padding-bottom: 40px;
  }
}

.contact__map {
  width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.contact__map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.contact__side {
  width: 48%;
}

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

.contact__side:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .contact__side:first-child {
    margin-bottom: 20px;
  }
}

.contact__title {
  color: #fff;
  font-family: "Gotham Pro Bold";
}

@media screen and (max-width: 768px) {
  .contact__social_desktop {
    display: none;
  }
}

.contact__social_mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .contact__social_mobile {
    display: block;
    margin: 20px 0px 0px 100px;
  }
}

.contact__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 150px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact__name {
  font-size: 14px;
  line-height: 24px;
  color: #949494;
  width: 140px;
}

@media screen and (max-width: 768px) {
  .contact__name {
    width: 100px;
  }
}

.contact__text {
  font-family: "Gotham Pro Medium";
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.contact__messagers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 150px;
  margin-left: 140px;
}

@media screen and (max-width: 768px) {
  .contact__messagers {
    margin-left: 100px;
  }
}

.inner-page__subtitle {
  font-size: 16px;
  line-height: 20px;
  color: #C6A57A;
  margin-left: 28px;
  max-width: 330px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .inner-page__subtitle {
    font-size: 14px;
  }
}

.inner-page__subtitle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: -28px;
  width: 2px;
  height: 32px;
  background-color: #C6A57A;
}

.inner-page__text {
  font-size: 14px;
  line-height: 20px;
  color: #D1D1D1;
  max-width: 285px;
  margin-right: auto;
}

.inner-page__content {
  padding: 30px 0px 0px;
}

.inner-page__title {
  max-width: 200px;
  margin-bottom: 15px;
}

.inner-page__side:last-child {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.prices__line a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  border-bottom: 1px solid #C0C0C0;
}

@media screen and (max-width: 768px) {
  .prices__line a {
    align-items: flex-start;
  }
}

@media screen and (max-width: 520px) {
  .prices__line a {
    position: relative;
  }
}

.prices__wrapper {
  display: flex;
  justify-content: space-between;
  width: 80%;
  align-items: center;
}

@media screen and (max-width: 960px) {
  .prices__wrapper {
    width: 94%;
  }
}

@media screen and (max-width: 768px) {
  .prices__wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media screen and (max-width: 520px) {
  .prices__wrapper {
    width: 100%;
    justify-content: space-between;
  }
}

.prices__number {
  font-family: "Gotham Pro Bold";
  width: 40px;
  font-size: 10px;
  line-height: 14px;
  color: #171717;
}

@media screen and (max-width: 768px) {
  .prices__number {
    width: 20px;
  }
}

.prices__name {
  font-family: "Gotham Pro Bold";
  font-size: 32px;
  line-height: 36px;
  color: #171717;
  max-width: 272px;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .prices__name {
    font-size: 24px;
    line-height: 28px;
    max-width: 200px;
    margin: 0px 20px;
  }
}

@media screen and (max-width: 768px) {
  .prices__name {
    max-width: 300px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 520px) {
  .prices__name {
    font-size: 20px;
    line-height: 20px;
    max-width: 100%;
    margin: 10px 0px;
  }
}

.prices__description {
  font-size: 14px;
  line-height: 20px;
  color: #747474;
  max-width: 218px;
}

@media screen and (max-width: 768px) {
  .prices__description {
    max-width: 65%;
    margin-left: 42px;
  }
}

@media screen and (max-width: 520px) {
  .prices__description {
    margin-left: 0px;
    max-width: 80%;
  }
}

.prices__price {
  color: #171717;
  font-family: "Gotham Pro Medium";
  font-size: 16px;
  max-width: 75px;
}

@media screen and (max-width: 960px) {
  .prices__price {
    margin-left: 20px;
  }
}

@media screen and (max-width: 520px) {
  .prices__price {
    margin-left: 0px;
    max-width: 52px;
  }
}

.prices__price span {
  font-size: 12px;
  line-height: 32px;
  color: #747474;
}

@media screen and (max-width: 520px) {
  .prices__price span {
    line-height: 18px;
    display: inline-block;
    margin-bottom: 3px;
  }
}

.prices__plus {
  cursor: pointer;
}

.prices__plus img {
  transition: all 0.2s;
}

.prices__plus img.opened {
  transform: rotate(45deg);
  transition: all 0.2s;
}

@media screen and (max-width: 520px) {
  .prices__plus {
    position: absolute;
    top: 15px;
    right: 0px;
  }
}

.prices__answer {
  display: none;
  padding: 25px 0px;
  width: 78%;
  margin: 0px auto;
}

@media screen and (max-width: 768px) {
  .prices__answer {
    width: auto;
    margin: 0px 42px;
  }
}

@media screen and (max-width: 520px) {
  .prices__answer {
    width: 100%;
    padding: 20px 0px;
    margin: 0px;
  }
}

.prices__info {
  font-size: 14px;
  line-height: 20px;
  color: #747474;
}

.prices__accordion {
  padding: 125px 0px 110px;
  width: 83%;
  margin: 0 auto;
}

@media screen and (max-width: 1440px) {
  .prices__accordion {
    padding: 90px 0px 80px;
  }
}

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

@media screen and (max-width: 768px) {
  .prices__accordion {
    padding: 60px 0px;
  }
}

@media screen and (max-width: 520px) {
  .prices__accordion {
    padding: 40px 0px 60px;
  }
}

.services-page .container {
  position: relative;
}

.services-page__wrapper {
  padding: 46px 0px 0px;
}

@media screen and (max-width: 520px) {
  .services-page__wrapper {
    padding: 40px 0px 0px;
  }
}

.services-page__header {
  display: flex;
  justify-content: space-between;
  margin-top: 21px;
  max-width: 700px;
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .services-page__header {
    max-width: 600px;
  }
}

@media screen and (max-width: 960px) {
  .services-page__header {
    max-width: 520px;
  }
}


@media screen and (max-width: 520px) {
  .services-page__header {
    flex-direction: column;
  }
}

.services-page__title {
  font-family: "Gotham Pro Bold";
  font-size: 80px;
  line-height: 84px;
  color: #161616;
}

@media screen and (max-width: 1440px) {
  .services-page__title {
    font-size: 52px;
    line-height: 58px;
    max-width: 200px;
  }
}

@media screen and (max-width: 960px) {
  .services-page__title {
    font-size: 42px;
    line-height: 48px;
  }
}

@media screen and (max-width: 520px) {
  .services-page__title {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 40px;
    max-width: 100%;
  }
}

.services-page__tabs {
  min-width: 300px;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .services-page__tabs {
    min-width: 240px;
  }
}

@media screen and (max-width: 520px) {
  .services-page__tabs {
    margin-top: 0px;
    min-width: unset;
  }
}

.services-page__tab {
  cursor: pointer;
  border-bottom: 1px solid transparent;
  margin-bottom: 10px;
}

.services-page__tab a {
  font-family: "Gotham Pro Medium";
  font-size: 16px;
  line-height: 24px;
  color: #828282;
  outline: none;
}

.services-page__tab .services-page__tab_active{
    color: #000;
}

@media screen and (max-width: 520px) {
  .services-page__tab a,
  .services-page__tab {
    display: block;
    max-width: 230px;
  }
}

.services-page__tab sup {
  font-size: 75%;
  line-height: 0px;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

.services-page__tab a:hover {
  color: #000;
  transition: all 0.2s;
}

.services-page__tab_active{
  color: #000;
  border-bottom: 1px solid #000;
  display: inline-block;
}

.services-page__tab_active a {
  color: #000;
  margin-bottom: 0;
}

.services-page__tab_active a:hover {
  color: #000;
  transition: all 0.2s;
}

.services-page__content {
  display: flex;
  justify-content: space-between;
  width: 56%;
}

@media screen and (max-width: 1100px) {
  .services-page__content {
    width: 65%;
  }
}

@media screen and (max-width: 960px) {
  .services-page__content {
    width: 100%;
    justify-content: flex-start;
  }
}

.services-page__content_end {
  justify-content: flex-end;
}

@media screen and (max-width: 960px) {
  .services-page__content_end {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .services-page__content {
    display: block;
  }
}

.services-page__wrap {
  margin-top: 82px;
}

@media screen and (max-width: 960px) {
  .services-page__wrap {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .services-page__wrap {
    margin-top: 0px;
  }
}

.services-page__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
  .services-page__item {
    flex-direction: column;
  }
}

.services-page__item:nth-child(2n) {
  margin-bottom: 50px;
}

.services-page__photo {
  margin-top: 65px;
  max-width: 340px;
}

@media screen and (max-width: 960px) {
  .services-page__photo {
    margin-right: 50px;
    margin-top: 40px;
  }
  .services-page__item:last-child{
      margin-bottom: 0px;
  }
}

@media screen and (max-width: 768px) {
  .services-page__photo {
    margin-bottom: 20px;
  }
}

.services-page__photo img {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .services-page__photo img {
    object-fit: contain;
    max-height: 300px;
    object-position: left;
  }
}

.services-page__photo_top {
  margin-top: -45px;
}

@media screen and (max-width: 960px) {
  .services-page__photo_top {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .services-page__photo_top {
    margin-top: 0px;
  }
}

.services-page__photo_up {
  margin-top: -120px;
  margin-right: 95px;
}

@media screen and (max-width: 1360px) {
  .services-page__photo_up {
    margin-right: 35px;
  }
}

@media screen and (max-width: 960px) {
  .services-page__photo_up {
    margin-top: 0px;
  }
}

.services-page__info {
  max-width: 275px;
}

@media screen and (max-width: 960px) {
  .services-page__info {
    max-width: 340px;
  }
}

.services-page__name {
  font-family: "Gotham Pro Bold";
  font-size: 32px;
  line-height: 36px;
  color: #171717;
  margin-bottom: 28px;
}

@media screen and (max-width: 960px) {
  .services-page__name {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
    max-width: 160px;
  }
}

.services-page__text {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  color: #747474;
  margin-left: 56px;
  max-width: 272px;
}

@media screen and (max-width: 768px) {
  .services-page__text {
    margin-left: 27px;
  }
}

.services-page__text::before {
  content: '';
  position: absolute;
  top: 2px;
  width: 2px;
  height: 88px;
  background: #C6A57A;
  left: -27px;
}

@media screen and (max-width: 768px) {
  .services-page__text::before {
    height: 100%;
  }
}

.services-page__text b {
  color: #171717;
  font-family: "Gotham Pro Medium";
}

.services-page__list {
  width: 30%;
}

@media screen and (max-width: 960px) {
  .services-page__list {
    margin-left: auto;
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 768px) {
  .services-page__list {
    margin-left: 0px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .services-page__list {
    margin-left: 15px;
  }
}

.services-page__list_top {
  margin-top: 30px;
}

@media screen and (max-width: 960px) {
  .services-page__list_top {
    margin-top: 0px;
  }
}

@media screen and (max-width: 768px) {
  .services-page__list_top {
    margin-top: 30px;
  }
}

.services-page__list li a {
  display: inline-block;
  position: relative;
  font-family: "Gotham Pro Medium";
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  margin-bottom: 18px;
  outline: none;
}

.services-page__list li a::before {
  content: '';
  position: absolute;
  background: url(../img/services/li.svg) no-repeat;
  background-size: cover;
  width: 6px;
  height: 6px;
  top: 4px;
  left: -15px;
}

.services-page__list li a:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.services-page__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  font-family: "Gotham Pro Bold";
  font-size: 14vw;
  line-height: 110%;
  color: rgba(0, 0, 0, 0.03);
  transform: rotate(90deg);
  width: 16%;
  z-index: -1;
}

@media screen and (max-width: 1360px) {
  .services-page__bg {
    width: 22%;
    font-size: 22vw;
  }
}

@media screen and (max-width: 520px) {
  .services-page__bg {
    width: 37%;
    font-size: 43vw;
  }
}

.breadcrumbs_black .breadcrumbs__link:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.breadcrumbs_black .breadcrumbs__link_active {
  color: #171717;
}

.breadcrumbs_black .breadcrumbs__link_active:hover {
  color: #171717;
}

.information {
  background-color: #222222;
}

.information .title {
  color: #fff;
  font-family: "Gotham Pro Bold";
  margin-bottom: 30px;
}

@media screen and (max-width: 1440px) {
  .information .title {
    max-width: 500px;
  }
}

.information .title span {
  color: #C6A57A;
  display: block;
}

.information__wrap {
  padding: 200px 0px;
  position: relative;
}

@media screen and (max-width: 1440px) {
  .information__wrap {
    padding: 120px 0px;
  }
}

@media screen and (max-width: 960px) {
  .information__wrap {
    padding: 90px 0px;
  }
}

@media screen and (max-width: 768px) {
  .information__wrap {
    padding: 60px 0px;
  }
}

.information__side {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .information__side {
    flex-direction: column;
  }
}

.information__text {
  width: 52%;
}

@media screen and (max-width: 768px) {
  .information__text {
    width: 100%;
    margin-bottom: 30px;
  }
}

.information__titles {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .information__titles {
    margin-top: 0px;
  }
}

.information__subtitle {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  margin-left: 35px;
  max-width: 356px;
}

.information__subtitle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: -35px;
  width: 2px;
  height: 100%;
  background-color: #C6A57A;
}

.information__subtitle span {
  color: #C6A57A;
}

.information__quote {
  margin-top: 144px;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .information__quote {
    margin-top: 110px;
  }
}

@media screen and (max-width: 768px) {
  .information__quote {
    margin-top: 90px;
  }
}

.information__quote p {
  font-size: 18px;
  line-height: 24px;
  color: #989898;
  max-width: 490px;
  margin-left: auto;
  margin-right: 40px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .information__quote p {
    margin-left: 0px;
    margin-right: 0px;
    max-width: 100%;
    font-size: 16px;
    line-height: 20px;
  }
}

.information__quote p::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0px;
  background: url(../img/info/quote.svg) no-repeat;
  background-size: contain;
  width: 27px;
  height: 19px;
}

.information__bg {
  position: absolute;
  top: 30px;
  left: 50%;
  font-family: "Gotham Pro Bold";
  font-size: 16vw;
  /* line-height: 300px; */
  color: rgba(255, 255, 255, 0.03);
  transform: rotate(90deg);
  width: 41%;
}

@media screen and (max-width: 1440px) {
  .information__bg {
    top: 5%;
  }
}

@media screen and (max-width: 960px) {
  .information__bg {
    font-size: 19vw;
  }
}

.information__bg span {
  display: block;
}

.information__photo {
  width: 34%;
  position: relative;
}

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

.information__photo img {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .information__photo img {
    max-height: 400px;
    object-position: center;
  }
}

@media screen and (max-width: 540px) {
  .information__photo img {
    max-height: 260px;
  }
}

.information__article {
  display: flex;
  justify-content: space-between;
  margin-top: 110px;
}

@media screen and (max-width: 960px) {
  .information__article {
    margin-top: 70px;
  }
}

@media screen and (max-width: 768px) {
  .information__article {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 540px) {
  .information__article {
    margin-top: 40px;
  }
}

.information__image {
  width: 49%;
}

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

.information__image img {
  width: 100%;
  object-fit: cover;
}

.information__about {
  width: 40%;
  margin-top: 65px;
}

@media screen and (max-width: 768px) {
  .information__about {
    width: 100%;
    margin: 0px 0px 20px;
  }
}

.information__mintitle {
  font-family: "Gotham Pro Bold";
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  margin-bottom: 18px;
  max-width: 330px;
}

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

.information__about p,
.information__artext {
  font-size: 14px;
  line-height: 20px;
  color: #989898;
  max-width: 390px;
}

@media screen and (max-width: 768px) {
    .information__about p,
  .information__artext {
    max-width: 100%;
  }
}

input.error {
    border: 1px solid #e94b35;
}

.menu_main:first-child{
    display: none;
}

.menu_main:last-child{
    display: none;
}

.first.list-navigation__item.level1.dropdown__title.rastsenki{
     width: 44%;
}

.first.list-navigation__item .dropdown__list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.first.list-navigation__item  .dropdown__list li{
    width: 48%;
}

.list-navigation__item.level1.dropdown__title.raskrutka-sajta{
    width: 25%;
}
.last.list-navigation__item.level1.dropdown__title.drugie-uslugi{
    width: 25%;
}

.dropdown__title > a{
    display: block;
}

.menu__main.menu_main-third{
    display: none;
}

@media screen and (max-width: 840px){
    .menu__main.menu_main-third{
        display: block;
    }
    .list-navigation__item a{
        font-family: "Gotham Pro Medium";
        display: block;
        padding: 12px 14px;
        text-decoration: none;
        transition-duration: .25s;
    }
    .first.list-navigation__item.level1.dropdown__title.rastsenki{
        width: 100%;
    }
    .list-navigation__item.level1.dropdown__title.raskrutka-sajta{
        width: 100%;
    }
    .last.list-navigation__item.level1.dropdown__title.drugie-uslugi{
        width: 100%;
    }
    .menu__item.social__nav a{
        padding: 0px;
    }
    .menu_main:first-child{
        display: block;
    }
     .menu_main:first-child img{
         width: 200px;
     }
     
     .header__dropdown .dropdown__list{
         margin-top: 0px;
     }
}

.blog-page.blog-article{
    padding-top: 25px;
}
.content-blog-info-bg-inst h1, .category-text-inst h1,
.content-blog-page-inst h2, .category-text-inst h2,
.content-blog-page-inst h3, .category-text-inst h3,
.sidebar-blog-inst .sidebar-titl-inst,
.content-blog-page-inst .title-autor,
.content-blog-page-inst .title-autor span{
    font-family: "Gotham Pro Bold";
}

.blog-schema-wrapper-inst .breadcrumbs,
.content-blog-page-inst .folder-inst a, .autor-inst span, .date-inst span, .view-inst span, .rating-inst, .content-blog-page-inst .reviews-inst,
.content-blog-page-inst p, .category-text-inst p,
.row-blog-popular-inst a.title-popular-inst,
.blog-article .content-blog-page-inst strong, .blog-article .content-blog-page-inst b,
.content-blog-page-inst ol li,
.content-blog-page-inst .sub-title-autor,
.content-blog-page-inst .text-autor,
.content-blog-page-inst a, .category-text-inst a, .content-blog-page-inst strong, .content-blog-page-inst b, .category-text-inst strong, .category-text-inst b{
    font-family: "Gotham Pro", sans-serif !important;
}

.row-comment-inst .form{
    box-shadow: none;
    background: transparent;
}

.content-blog-page-bg-inst .content-blog-page-inst .ec-message{
    box-shadow: none;
}

.content-blog-page-bg-inst .row-comment-inst input[type=text].form-control.form-control,
.content-blog-page-bg-inst .row-comment-inst textarea.form-control,
.content-blog-page-bg-inst .row-comment-inst .control-label,
.content-blog-page-bg-inst .btn-send{
     font-family: "Gotham Pro", sans-serif;
}

.content-blog-page-bg-inst .row-comment-inst textarea.form-control{
    resize: none;
}

.popular-im-wrap-hide a{
    display: inline-block;
}

.popular-im-wrap-hide img{
    width: 100%;
}
.clearfix {
    clear: both; 
}

.reviews-page .row-gallery-blog img{
    width: 100%;
    object-fit: cover;
}

.reviews-page .bl-breadcrumbs{
    padding-top: 20px;
}

.reviews-page .bl6-portfolio{
    padding-top: 30px;
}

.reviews-page .container{
    border: none;
}

.reviews-page .title-b h2,
.reviews-page .message-l div{
    font-family: "Gotham Pro Bold";
}

.reviews-page .row-comment-message-inst p,
.reviews-page .row-comment-inst input[type=text].form-control.form-control,
.reviews-page .row-comment-inst textarea.form-control,
.reviews-page .bl9-reviews .row-comment-inst .col-rat-l .control-label{
    font-family: "Gotham Pro", sans-serif;
}

.reviews-page .row-comment-inst textarea.form-control{
    resize: none;
}

.reviews-page .btn-send{
    font-family: "Gotham Pro Medium";
}

.reviews-page  .bl9-reviews .form{
    background-color: transparent;
    padding: 140px 0px 75px 0px;
}

.reviews-page .bl-contact{
    margin-bottom: 40px;
}

.header_black {
  background-color: #171717;
}

.article {
  padding: 25px 0px 150px;
}

@media screen and (max-width: 1200px) {
  .article {
    padding: 25px 0px 100px;
  }
}

@media screen and (max-width: 960px) {
  .article {
    padding: 20px 0px 80px;
  }
}

@media screen and (max-width: 580px) {
  .article {
    padding: 20px 0px 60px;
  }
}

.article .container {
  border: none;
}

.article h1 {
  font-size: 32px;
  line-height: 36px;
  font-family: "Gotham Pro Bold";
  max-width: 900px;
}

@media screen and (max-width: 1200px) {
  .article h1 {
    font-size: 30px;
    line-height: 34px;
  }
}

@media screen and (max-width: 580px) {
  .article h1 {
    font-size: 28px;
    line-height: 32px;
  }
}

@media screen and (max-width: 460px) {
  .article h1 {
    font-size: 24px;
    line-height: 28px;
  }
}

.article__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 960px) {
  .article__wrap {
    flex-direction: column;
  }
}

.article__info {
  width: 70%;
}

@media screen and (max-width: 1200px) {
  .article__info {
    width: 65%;
  }
}

@media screen and (max-width: 960px) {
  .article__info {
    width: 100%;
    margin-bottom: 50px;
  }
}

.article__param {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 30px 0px 25px;
  flex-wrap: wrap;
}

@media screen and (max-width: 580px) {
  .article__param {
    margin: 20px 0px 10px;
  }
}

.article__param p {
  display: flex;
  align-items: center;
  margin: 0px 25px 10px 0px;
}

@media screen and (max-width: 580px) {
  .article__param p {
    margin: 0px 30px 10px 0px;
  }
}

.article__param p, .article__param a {
  color: #363636;
  font-size: 15px;
  line-height: 16px;
}

.article__param a {
  outline: none;
}

.article__param a:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.article__param img {
  margin-right: 10px;
  width: 15px;
}

.article__photo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0px;
}

@media screen and (max-width: 1200px) {
  .article__photo {
    margin: 20px 0px;
  }
}

@media screen and (max-width: 580px) {
  .article__photo {
    margin: 15px 0px;
  }
}

.article__photo img {
  max-width: 100%;
}

@media screen and (max-width: 960px) {
  .article__photo img {
    width: 100%;
    object-fit: cover;
  }
}

.article__content em {
    font-style: italic;
}
.article__content p {
  font-size: 17px;
  line-height: 27px;
  color: #363636;
  margin: 24px 0px;
  text-align: justify;
}

@media screen and (max-width: 1200px) {
  .article__content p {
    font-size: 15px;
    line-height: 1.5;
    margin: 20px 0px;
  }
}

@media screen and (max-width: 580px) {
  .article__content p {
    margin: 15px 0px;
  }
}

.article__content p.justifyfull {
    text-align: justify;
}

.article__content a {
  outline: none;
  color: #C6A57A;
}

.article__content a:hover {
  color: #e3c399;
  transition: all 0.2s;
}

.article__content h2 {
  font-family: "Gotham Pro Bold";
  font-size: 28px;
  line-height: 32px;
  margin: 24px 0px;
}

@media screen and (max-width: 1200px) {
  .article__content h2 {
    font-size: 26px;
    line-height: 30px;
    margin: 20px 0px;
  }
}

@media screen and (max-width: 580px) {
  .article__content h2 {
    margin: 15px 0px;
  }
}

.article__content h3 {
  font-family: "Gotham Pro Bold";
  font-size: 18px;
  line-height: 20px;
  margin: 24px 0px;
}

@media screen and (max-width: 1200px) {
  .article__content h3 {
    margin: 20px 0px;
    font-size: 24px;
    line-height: 26px;
  }
}

@media screen and (max-width: 580px) {
  .article__content h3 {
    margin: 15px 0px;
    font-size: 20px;
    line-height: 22px;
  }
}

.article__content h4 {
  font-family: "Gotham Pro Bold";
  font-size: 16px;
  line-height: 20px;
  margin: 24px 0px;
}

@media screen and (max-width: 1200px) {
  .article__content h4 {
    margin: 20px 0px;
    font-size: 20px;
    line-height: 26px;
  }
}

@media screen and (max-width: 580px) {
  .article__content h4 {
    margin: 15px 0px;
    font-size: 18px;
    line-height: 22px;
  }
}

.article__content ul li,
.article__content ol li {
  font-size: 17px;
  line-height: 27px;
  color: #363636;
  padding: 7px 0px;
  display: flex;
  counter-increment: my-awesome-counter;
}

.article__content ol li {
    display: block;
}

@media screen and (max-width: 1200px) {
    .article__content ul li,
  .article__content ol li {
    font-size: 15px;
    line-height: 1.5;
    padding: 5px 0px;
  }
}

.article__content ol li strong,
.article__content ul li strong,
.article__content ul li a,
.article__content ol li a {
    display: contents;
}

.article__content ol li span {
  margin-left: 12px;
  display: inline-block;
  width: 90%;
}

.article__content ul li:before {
    content: url('../../../img/arrow-link.png');
  /* width: 25px; */
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Gotham Pro Light";
  font-size: 14px;
  color: #363636;
  font-weight: bold;
  margin-right: 10px;
  padding-top: 5px;
}
.article__content ol li:before {
  content: counter(my-awesome-counter);
  counter-increment: item;
  background: #C6A57A !important; 
  width: 25px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Gotham Pro Light";
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  margin-right: 10px;
}
.article__content img {
    max-width: 100%;
    object-fit:cover;
    height: auto;
}
@media screen and (max-width: 700px) {
.article__content img  {
    float: none !important;
    margin: 10px auto !important;
    display: block;
}
}
.article__content iframe {
    width: 100%;
    height: 485px;
}

@media screen and (max-width: 768px) {
  .article__content iframe {
    height: 300px;
  }
}

.article__content b,
.article__content strong {
    font-weight: 600;
}

.article .author {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 25px 0px 30px;
}

.article .author__person {
  max-width: 250px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .article .author__person {
    max-width: 200px;
  }
}

.article .author__person img {
  width: 100%;
  border-radius: 50%;
}

.article .author__title {
  font-size: 26px;
  line-height: 28px;
  margin: 0px;
  color: #000;
}

@media screen and (max-width: 768px) {
  .article .author__title {
    font-size: 24px;
    line-height: 26px;
  }
}

@media screen and (max-width: 460px) {
  .article .author__title {
    font-size: 20px;
    line-height: 22px;
  }
}

.article .author__title span {
  font-family: "Gotham Pro Bold";
}

.article .author__position {
  margin: 10px 0px;
}

.article .author__follow {
  margin: 0px 0px 10px;
}

.article .author__follow span {
  display: block;
}

.article .author__social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 120px;
  width: 100%;
  margin: 10px auto 0px;
}

.article .author__social svg {
  width: 32px;
  height: 30px;
  fill: #C6A57A;
}

.article .author__social svg:hover {
  fill: #000;
  transition: all 0.2s;
}

.article__navigation {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0px;
}

@media screen and (max-width: 580px) {
  .article__navigation {
    flex-direction: column;
    margin: 30px 0px 20px;
  }
}

.article__navigation a {
  outline: none;
}

.article__reviews {
  padding-top: 30px;
}

@media screen and (max-width: 580px) {
  .article__reviews {
    padding-top: 15px;
  }
}

.article__ok {
  display: inline-block;
  overflow: hidden;
  max-width: 300px;
  margin-top: 25px;
}

@media screen and (max-width: 580px) {
  .article__ok {
    margin: 15px auto 0px;
  }
}

.article__ok a {
  display: inline-block;
}

.article__ok a:hover img {
  transform: scale(1.1);
  transition: 0.8s;
}

.article__link {
  width: 48%;
  display: flex;
  flex-direction: column;
  transition: 0.8s;
}

@media screen and (max-width: 580px) {
  .article__link {
    width: 100%;
    margin-bottom: 25px;
  }
}

.article__link img {
  max-width: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.article__link:last-child {
  justify-content: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 580px) {
  .article__link:last-child {
    justify-content: center;
    align-items: center;
  }
}

.article .article__next,
.article .article__prev {
  color: #C6A57A;
  font-size: 18px;
  line-height: 22px;
}

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

  .article .article__next,
  .article .article__prev {
    font-size: 16px;
    line-height: 20px;
  }
}

.article .article__next {
  text-align: right;
}

@media screen and (max-width: 580px) {
  .article .article__next {
    text-align: center;
  }
}

.article .article__prev {
  text-align: left;
}

@media screen and (max-width: 580px) {
  .article .article__prev {
    text-align: center;
  }
}

.article .breadcrumbs {
  margin-bottom: 15px;
}

.article .breadcrumbs__link {
  color: #535352;
}

.article .breadcrumbs__link:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.article .breadcrumbs__link_active {
  color: #171717;
}

.article .breadcrumbs__link_active:hover {
  color: #171717;
  transition: all 0.2s;
}

.article__form {
  background: rgba(189, 157, 116, 0.5);
  box-shadow: 60px 60px 200px rgba(0, 0, 0, 0.1);
  color: #171717;
  padding: 60px 60px 10px;
}

@media screen and (max-width: 1360px) {
  .article__form {
    padding: 40px 40px 0;
  }
}

@media screen and (max-width: 1100px) {
  .article__form {
    padding: 30px 30px 0;
  }
}

@media screen and (max-width: 520px) {
  .article__form {
    padding: 25px 25px 0;
  }
}

.article__inp {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .article__inp {
    flex-direction: column;
  }
}

.article__inp .form__item_wrapp {
    width: 48%;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.article__inp .form__item_wrapp input,
.article__inp .form__item_wrapp textarea {
  width: 100%;
  
}

@media screen and (max-width: 768px) {
  .article__inp .form__item_wrapp {
    width: 100%;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 460px) {
  .article__inp .form__item_wrapp {
    margin-bottom: 20px;
  }
}

.article__inp .form__item_wrapp input,
.article__inp .form__item_wrapp textarea {
  font-family: "Gotham Pro Light";
  background: #FFFFFF;
  border: 1px solid #E3E3E3;
  padding: 15px 20px;
}

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

  .article__inp input,
  .article__inp textarea {
    padding: 12px 20px;
  }
}

.article__inp input::placeholder,
.article__inp textarea::placeholder {
  color: #171717;
}

.article__inp input::-moz-placeholder,
.article__inp textarea::-moz-placeholder {
  color: #171717;
}

.article__inp textarea {
  font-family: "Gotham Pro Light";
  background: #FFFFFF;
  border: 1px solid #E3E3E3;
  padding: 15px 20px;
}

.article__inp textarea::placeholder {
  color: #171717;
}

.article__inp textarea::-moz-placeholder {
  color: #171717;
}

.article__inp textarea {
  width: 48%;
  resize: none;
}

@media screen and (max-width: 768px) {
  .article__inp textarea {
    width: 100%;
    min-height: 150px;
  }
}

.article__send {
  width: 48%;
}

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

.article__inp .form__item_wrapp .article__send input {
  font-family: "Gotham Pro Medium";
  background: #222222;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  width: 100%;
  max-width: 210px;
  border: none;
  margin-top: 20px;
}

@media screen and (max-width: 580px) {
  .article__inp .form__item_wrapp .article__send input {
    font-size: 12px;
  }
}

.article__inp .form__item_wrapp .article__send input:hover {
  background: #747474;
  transition: all 0.2s;
}

.article__inp .form__item_wrapp .ec-error {
    margin-top: 5px;
}

.article__star {
  margin-bottom: 25px;
}

.article__publish {
  width: 25%;
  margin-top: 30px;
}

@media screen and (max-width: 1200px) {
  .article__publish {
    width: 30%;
  }
}

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

@media screen and (max-width: 580px) {
  .article__publish {
    margin-top: 10px;
  }
}

.article__block {
  margin-bottom: 25px;
}

.article__title {
  font-family: "Gotham Pro Bold";
  font-size: 20px;
  line-height: 24px;
  color: #363636;
  padding-bottom: 5px;
  border-bottom: 3px solid #C6A57A;
}

.article__pub {
  display: flex;
  margin-top: 20px;
}

@media screen and (max-width: 960px) {
  .article__pub {
    align-items: center;
  }
}

.article__pub a {
  outline: none;
  font-size: 16px;
  line-height: 18px;
  color: #363636;
}

.article__pub a:hover {
  color: #C6A57A;
  transition: all 0.3s;
}

.article__pub .article__hover {
  margin-right: 12px;
}

.comments {
  padding: 25px 0px 0px;
}

@media screen and (max-width: 1200px) {
  .comments {
    padding: 25px 0px 0px;
  }
}

@media screen and (max-width: 960px) {
  .comments {
    padding: 20px 0px 0px;
  }
}

@media screen and (max-width: 768px) {
  .comments {
    padding: 20px 0px 80px;
  }
}

@media screen and (max-width: 580px) {
  .comments {
    padding: 20px 0px 60px;
  }
}

.comments .container {
  border: none;
}

.comments .breadcrumbs {
  margin-bottom: 15px;
}

.comments .breadcrumbs__link {
  color: #535352;
}

.comments .breadcrumbs__link:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.comments .breadcrumbs__link_active {
  color: #171717;
}

.comments .breadcrumbs__link_active:hover {
  color: #171717;
  transition: all 0.2s;
}

.comments__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  margin-top: 30px;
}

@media screen and (max-width: 580px) {
  .comments__wrap {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media screen and (max-width: 460px) {
  .comments__wrap {
    grid-template-columns: repeat(auto-fill, minmax(133px, 1fr));
    margin-top: 20px;
  }
}

.comments .commnets__image img {
  width: 100%;
  object-fit: cover;
}

.comments__titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 50px;
}

.comments__titles h2 {
  font-family: "Gotham Pro Bold";
  margin-bottom: 20px;
}

.comments__titles a {
  outline: none;
  color: #000;
}

.comments__titles a:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.comments__blocks {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 30px 0px 50px;
}

.comments__block {
  width: 49%;
  margin-bottom: 35px;
  background: #fff;
  box-shadow: 0px 11px 31px 0px rgba(161, 152, 143, 0.4);
  padding: 56px 28px 45px 38px;
  border-radius: 4px;
}

@media screen and (max-width: 1360px) {
  .comments__block {
    padding: 30px 20px 30px 30px;
  }
}

@media screen and (max-width: 640px) {
  .comments__block {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 460px) {
  .comments__block {
    padding: 25px 20px 25px 25px;
  }
}

.comments__creator {
  font-family: "Gotham Pro Bold";
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 10px;
}

@media screen and (max-width: 460px) {
  .comments__creator {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 8px;
  }
}

.comments__text {
  line-height: 1.5;
  color: #7a7a7a;
  font-size: 17px;
}

@media screen and (max-width: 460px) {
  .comments__text {
    font-size: 15px;
  }
}

.comments__form {
  padding: 0px 0px 80px;
}

@media screen and (max-width: 960px) {
  .comments__form {
    padding: 0px 0px 60px;
  }
}

.comments__questions .questions__wrap {
  padding-bottom: 140px;
}

@media screen and (max-width: 960px) {
  .comments__questions .questions__wrap {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 768px) {
  .comments__questions .questions__wrap {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 520px) {
  .comments__questions .questions__wrap {
    padding-bottom: 60px;
  }
}

.comments-contacts a {
  outline: none;
}

.comments-contacts__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .comments-contacts__wrap {
    flex-direction: column-reverse;
  }
}

.comments-contacts__map {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .comments-contacts__map {
    width: 100%;
    margin-top: 25px;
  }
}

.comments-contacts__map iframe {
  height: 550px;
}

@media screen and (max-width: 768px) {
  .comments-contacts__map iframe {
    height: 300px;
  }
}

.comments-contacts__info {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .comments-contacts__info {
    width: 100%;
  }
}

.comments-contacts__info .title {
  font-family: "Gotham Pro Bold";
  margin-bottom: 30px;
}

.comments-contacts__phone {
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  margin-bottom: 15px;
}

.comments-contacts__phone:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.comments-contacts__social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 120px;
  width: 100%;
  margin-bottom: 20px;
}

.comments-contacts__social svg {
  width: 30px;
  height: 28px;
  fill: #C6A57A;
}

.comments-contacts__social svg:hover {
  fill: #B49061;
  transition: all 0.2s;
}

.comments-contacts__email {
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  margin-bottom: 15px;
}

.comments-contacts__email:hover {
  color: #C6A57A;
  transition: all 0.2s;
}

.comments-contacts__addition {
  margin-bottom: 40px;
}

@media screen and (max-width: 520px) {
  .comments-contacts__addition {
    margin-bottom: 20px;
  }
}

.comments-contacts__addition p {
  font-size: 16px;
  line-height: 18px;
  color: #000;
  margin-bottom: 5px;
}

.comments-contacts__dev {
  max-width: 200px;
  margin: 0px auto;
}

.comments-contacts__dev img {
  width: 100%;
  object-fit: contain;
}

.portfolio-template {
  padding: 25px 0px 100px;
}

.article__content .row-comment-message-inst {
    margin-top: 60px;
}

.article__content .row-comment-message-inst .ec-message{
    height: auto !important;
    background: #fff;
    border: 0;
    padding: 56px 28px 45px 38px;
    margin-bottom: 50px;
    -webkit-box-shadow: 0px 11px 31px 0px rgb(161 152 143 / 41%);
    -moz-box-shadow: 0px 11px 31px 0px rgb(161 152 143 / 41%);
    box-shadow: 0px 11px 31px 0px rgb(161 152 143 / 41%);
} 

.article__content .row-comment-message-inst .ec-message .message-l div {
    font-family: "Gotham Pro Bold";
    font-size: 20px;
    color: #000;
}

.article__content .row-comment-message-inst p {
    text-align: left;
    line-height: 1.5;
    color: #7a7a7a;
    font-size: 17px;
    margin: 1.5em 0;
}

.article__content  .row-comment-message-inst .ec-stars {
    background: url(../../../img/ec-stars.png) 0 -16px repeat-x;
    width: 96px;
    height: 16px;
    margin: 5px 0 10px auto;
}

.article__content  .row-comment-message-inst .ec-stars span.rating-5 {
    width: 96px;
}

.article__content  .row-comment-message-inst .ec-stars span {
    background: url(../../../img/ec-stars.png) repeat-x;
    display: block;
    height: 16px;
    width: 0;
}

.article__content  .row-comment-message-inst .ec-stars span, .article__content  .row-comment-message-inst .ec-rating-stars span.active, .article__content  .row-comment-message-inst .ec-rating-stars span.active2 {
    background: url(../../../img/ec-stars.png) 0 0 repeat-x !important;
}

@media screen and (max-width: 1200px) {
  .portfolio-template {
    padding: 25px 0px 100px;
  }
}

@media screen and (max-width: 960px) {
  .portfolio-template {
    padding: 20px 0px 90px;
  }
}

@media screen and (max-width: 768px) {
  .portfolio-template {
    padding: 20px 0px 80px;
  }
  .article__content .row-comment-message-inst {
    margin-top: 40px;
    }
    .article__content .row-comment-message-inst .ec-message{
        padding: 30px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 580px) {
  .portfolio-template {
    padding: 20px 0px 60px;
  }
}

.portfolio-template .container {
  border: none;
}

/* .portfolio-template .breadcrumbs {
  margin-bottom: 15px;
}

.portfolio-template .breadcrumbs__link {
  color: #535352;
}

.portfolio-template .breadcrumbs__link:hover {
  color: #C6A57A;
  transition: all 0.2s;
} */

/* .portfolio-template .breadcrumbs__link_active {
  color: #171717;
}

.portfolio-template .breadcrumbs__link_active:hover {
  color: #171717;
  transition: all 0.2s;
} */

.main_services_old .inner h1 {
  font-size: 32px;
  line-height: 36px;
  font-family: "Gotham Pro Bold";
}
.main_services_old .inner h2 {
  font-size: 26px;
  line-height: 36px;
  font-family: "Gotham Pro Bold";
}

@media screen and (max-width: 1200px) {
  .main_services_old .inner h1 {
    font-size: 30px;
    line-height: 34px;
  }
  .main_services_old .inner h2 {
    font-size: 24px;
    line-height: 34px;
  }
}

@media screen and (max-width: 580px) {
  .main_services_old .inner h1 {
    font-size: 28px;
    line-height: 32px;
  }
  .main_services_old .inner h2 {
    font-size: 22px;
    line-height: 32px;
  }
}

@media screen and (max-width: 460px) {
  .main_services_old .inner h1 {
    font-size: 24px;
    line-height: 28px;
  }
  .main_services_old .inner h2 {
    font-size: 20px;
    line-height: 28px;
  }
}

.main_services_old .inner p {
  font-size: 17px;
  line-height: 27px;
  color: #363636;
  margin: 24px 0px;
}

@media screen and (max-width: 1200px) {
  .main_services_old .inner p {
    font-size: 15px;
    line-height: 1.5;
    margin: 20px 0px;
  }
}

@media screen and (max-width: 580px) {
  .main_services_old .inner p {
    margin: 15px 0px;
  }
}

.main_services_old .inner p a {
  outline: none;
  color: #C6A57A;
}

.main_services_old .inner p a:hover {
  color: #171717;
  transition: all 0.2s;
}

.portfolio-template__content {
  display: flex;
  flex-direction: column;
}

.main_services_old .inner img {
    display: block;
    width: 100%;
    max-width: 100%;
    z-index: 1;
    margin-left: auto;
    height: auto;
    margin-right: auto;
}

.ec-antispam {
    display: none;
}

.ec-rating-stars {
    display: inline-block;vertical-align: middle;
}

.ec-rating-stars span {
    width: 20px;
    height: 16px;
    float: left;
    display: block;
    margin: 0;
    cursor: pointer;
    background: url(../../../images/design/ec-stars-hover.png) 0 0 no-repeat;
}

.ec-rating-stars span.active,
.ec-rating-stars span.active2 {
    background: url(../../../images/design/ec-stars.png) 0 0 repeat-x !important;
}

.img-schema {
    display: none;
}

.youtube-player > div{
    position: relative;
}

.youtube-player > div::before{
    content:'';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 80px;
    height: 80px;
    background: url(../../../img/article/photo_2021-11-23_17-33-50.jpg) no-repeat;
    background-size: contain;
    border-radius: 50%;
}

.stages__photo video{
    height: 300px;
    object-fit: cover;
}

/* .creation__about table{
    width: 100%;
    margin: 0 0 1.5em 0;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.creation__about table td{
    padding: 0.5em 1em;
    border: 1px solid #ccc;
}


.creation__about table tr:first-child td{
    background: #f7f7f7;
}

.creation__about table tr:nth-child(2n+1) td{
    background: #f7f7f7;
}

.creation__about table td a{
    font-size: 14px;
    line-height: 18px;
    color: #747474;
}

.creation__about table td a:hover{
    color:#B49061;
    transition: all 0.2s;
}

@media screen and (max-width: 540px) {
    .creation__about table {
        display: block;
        width: auto;
        position: relative;
        overflow-x: auto;
        white-space: nowrap;
    }
    .creation__about table tr{
        display: inline-block;
        vertical-align: top;
    }
     .creation__about  table td {
        display: block;
        min-height: 1.25em;
        border-bottom: none !important;
        border-right: none !important;
    }
    .creation__about table th:first-child, .creation__about table td:first-child {
        border-top: none !important;
    }
    .creation__about table tr:first-child td{
        border-left: none;
    }
    .creation__about table::-webkit-scrollbar-track
    {
        background-color: #f7f7f7;
    }
    
    .creation__about table::-webkit-scrollbar
    {
        width: 2px;
        height: 2px;
        background-color: #f7f7f7;
    }
    
    .creation__about table::-webkit-scrollbar-thumb
    {
        background-color: #B49061;
    }
}

@media screen and (max-width: 460px) {
    .creation__about table td a{
        font-size: 12px;
        line-height: 16px;
    }
} */

@media screen and (max-width: 768px) {
    .stages__photo video{
        height: auto;
        width: 100%;
    }
}

.main-about.main-about__black.services_page .info-container.container{
    height: auto;
}

.main-about.main-about__black.services_page .info{
    padding: 80px 0px 170px;
}

@media screen and (max-width: 1440px){
    .main-about.main-about__black.services_page .info{
        padding: 70px 0px 150px;
    }
}

.main-about.main-about__black.services_page .info .info-header h1 span{
    display: block;
}

.main-about.main-about__black.services_page .info .info-header h1{
    margin: 0px 0px 0px 100px;
}

@media screen and (max-width: 1000px){
   .main-about.main-about__black.services_page .info .info-header h1{
        margin: 0px 0px 0px 10px;
    } 
}

@media screen and (max-width: 768px){
   .main-about.main-about__black.services_page .info .info-header h1{
        margin: 0px;
    } 
}

.article__wrap .inner-navigation__link{
    display: flex;
    align-items: flex-start;
}

.article__wrap .inner-navigation__link span{
    display: inline-block;
    margin: 0px 10px 20px;
    text-align: right;
    line-height: 22px;
    max-width: 400px;
}

.article__navigation .link-prev,
.article__navigation .link-next{
    width: 50%;
}



.article .article__wrap .link-next .inner-navigation__link span{
    text-align: right;
}
.article .article__wrap .link-next .im-next-blog{
      text-align: right;
}
.article__wrap .inner-navigation__link svg{
        transform: translateY(5px);
}

@media screen and (max-width: 580px){
    .article__navigation .link-prev,
    .article__navigation .link-next{
        width: 100%;
    }
    .article__navigation .link-prev{
        margin-bottom: 30px;
    }
    .article .article__wrap .link-next .inner-navigation__link span,
    .article .article__wrap .link-prev .inner-navigation__link span{
        text-align: center;
    }
    .article .article__wrap .link-next .im-next-blog,
      .article .article__wrap .link-prev .im-next-blog{
          text-align: center;
    }
   
    .article__wrap .inner-navigation__link:first-child{
        margin-bottom: 0px !important;
    }
    .article .author__title{
         text-align: center !important;
    }
}

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

.article__wrap .inner-navigation__link:first-child span{
    text-align: left;
}

@media screen and (max-width: 580px) {
    .article__wrap .inner-navigation__link:first-child {
        margin-bottom: 15px;
    }
}

.portfolio .portfolio__wrapper .square-1,
.portfolio .portfolio__wrapper .square-2{
    position: absolute;
    width: 10px;
    height: 40px;
    background: #C6A57A;
}

.portfolio .portfolio__wrapper .square-1{
    top: 5%;
    left: 74.6%;
}

.portfolio .portfolio__wrapper .square-2{
    top: 88%;
    left: 24.6%;
}

@media screen and (max-width: 1000px){
    .portfolio .portfolio__wrapper .square-1,
    .portfolio .portfolio__wrapper .square-2{
        display: none;
    }
}

.whatlanding__wrap {
  position: relative;
  z-index: 1;
  padding: 130px 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media screen and (max-width: 1440px) {
  .whatlanding__wrap {
    padding: 110px 0px;
  }
}

@media screen and (max-width: 960px) {
  .whatlanding__wrap {
    padding: 60px 0px 65px;
  }
}

@media screen and (max-width: 768px) {
  .whatlanding__wrap {
    flex-direction: column-reverse;
  }
}

.whatlanding__photo {
  width: 29%;
  margin-top: 55px;
  max-width: 355px;
  max-height: 336px;
}

@media screen and (max-width: 768px) {
  .whatlanding__photo {
    width: 55%;
    margin: 0px auto;
    max-height: unset;
    max-width: unset;
  }
}

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

.whatlanding__photo img {
  width: 100%;
  object-fit: cover;
}

.whatlanding__info {
  width: 66%;
}

@media screen and (max-width: 768px) {
  .whatlanding__info {
    width: 100%;
    margin-bottom: 15px;
  }
}

.whatlanding__title {
  max-width: 482px;
  margin-bottom: 30px;
}

@media screen and (max-width: 520px) {
  .whatlanding__title {
    margin-bottom: 25px;
  }
}

.whatlanding__info p span b,
.whatlanding__title p {
  font-family: "Gotham Pro Bold";
  font-size: 32px;
  line-height: 110%;
  color: #171717;
}

@media screen and (max-width: 960px) {
   .whatlanding__info p span b,
  .whatlanding__title p {
    font-size: 28px;
    line-height: 32px;
  }
}

@media screen and (max-width: 520px) {
   .whatlanding__info p span b,
  .whatlanding__title p {
    font-size: 24px;
    line-height: 28px;
  }
}

.whatlanding__item {
  margin-bottom: 20px;
}


.whatlanding__subtitle {
  
}

.whatlanding__info p b,
.whatlanding__subtitle p {
  font-family: "Gotham Pro Bold";
  font-size: 18px;
  line-height: 22px;
  color: #171717;
}

@media screen and (max-width: 520px) {
    .whatlanding__info p b,
  .whatlanding__subtitle p {
    font-size: 16px;
    line-height: 20px;
  }
}

.whatlanding__info p,
.whatlanding__text p {
  font-size: 14px;
  line-height: 20px;
  color: #747474;
  margin-bottom: 7px;
}

.whatlanding__info p:last-child {
  margin-bottom: 0;
}

.whatlanding__info p a,
.whatlanding__text p a {
  color: #C6A57A;
  outline: none;
}

.whatlanding__info p a:hover,
.whatlanding__text p a:hover {
  color: #c7c7c7;
  transition: all 0.2s;
}

.whatlanding__info p em,
.whatlanding__text p span {
  color: #C6A57A;
}

.advlandings.advlandings_second .advlandings__content {
  padding: 195px 0px;
}

@media screen and (max-width: 1440px) {
  .advlandings.advlandings_second .advlandings__content {
    padding: 100px 0px;
  }
}

@media screen and (max-width: 960px) {
  .advlandings.advlandings_second .advlandings__content {
    padding: 60px 0px;
  }
}

.advlandings__content {
  padding: 0px 0px 195px;
}

@media screen and (max-width: 1440px) {
  .advlandings__content {
    padding: 0px 0px 100px;
  }
}

@media screen and (max-width: 960px) {
  .advlandings__content {
    padding: 0px 0px 65px;
  }
}

.advlandings__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


@media screen and (max-width: 768px) {
  .advlandings__wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

.advlandings__title {
  font-family: "Gotham Pro Bold";
  max-width: 455px;
}

.advlandings__title span {
  display: block;
}

.advlandings__photo {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .advlandings__photo {
    width: 100%;
    margin: 0px auto;
    display: none;
  }
}

.advlandings__photo img {
  width: 100%;
  object-fit: cover;
  max-width: 600px;
  max-height: 356px;
}

@media screen and (max-width: 768px) {
  .advlandings__photo img {
    max-height: 300px;
    max-width: unset;
  }
}

.advlandings__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 70px;
}

@media screen and (max-width: 1440px) {
  .advlandings__items {
    margin-top: 60px;
  }
}

@media screen and (max-width: 960px) {
  .advlandings__items {
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .advlandings__items {
    margin-top: 35px;
  }
}

.advlandings__item {
  width: 23%;
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 960px) {
  .advlandings__item {
    width: 48%;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 520px) {
  .advlandings__item {
    width: 100%;
    margin-bottom: 35px;
  }
}

.advlandings__bg {
  font-family: "Gotham Pro Bold";
  font-size: 300px;
  line-height: 110%;
  color: rgba(23, 23, 23, 0.03);
  position: absolute;
  left: -9%;
  top: 27%;
}

@media screen and (max-width: 1440px) {
  .advlandings__bg {
    font-size: 250px;
    left: -4%;
  }
}

@media screen and (max-width: 960px) {
  .advlandings__bg {
    font-size: 24vw;
  }
}

@media screen and (max-width: 768px) {
  .advlandings__bg {
    left: -5%;
    top: 19%;
  }
}

@media screen and (max-width: 520px) {
  .advlandings__bg {
    left: -5%;
    top: 30%;
  }
}

.advlandings__number {
  font-family: "Gotham Pro Bold";
  font-size: 24px;
  line-height: 24px;
  color: #C6A57A;
  margin-right: 19px;
}

@media screen and (max-width: 1440px) {
  .advlandings__number {
    font-size: 22px;
    line-height: 22px;
  }
}

@media screen and (max-width: 768px) {
  .advlandings__number {
    font-size: 20px;
    line-height: 20px;
    margin-right: 15px;
  }
}

.advlandings__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
}

@media screen and (max-width: 1440px) {
  .advlandings__btn {
    margin-top: 80px;
  }
}

@media screen and (max-width: 960px) {
  .advlandings__btn {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .advlandings__btn {
    margin-top: 30px;
  }
}

@media screen and (max-width: 520px) {
  .advlandings__btn {
    margin-top: 20px;
  }
}

.advlandings__link {
  display: inline-block;
  font-size: 12px;
  line-height: 160%;
  text-transform: uppercase;
  color: #C6A57A;
  font-family: "Gotham Pro Medium";
  border: 2px solid #C6A57A;
  padding: 9px 36px;
  position: relative;
  transition: all 0.3s;
}

.advlandings__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 24px;
  height: 2px;
  background: #C6A57A;
  transition: all 0.5s;
}

.advlandings__link:hover {
  border: 2px solid #C6A57A;
  color: #C6A57A;
  transition: all 0.3s;
}

.advlandings__link:hover::before {
  background: #C6A57A;
  left: 95%;
  transition: all 0.5s;
}

.advlandings__subtitle {
  font-family: "Gotham Pro Bold";
  font-size: 16px;
  line-height: 18px;
  color: #171717;
  margin-bottom: 8px;
}

.advlandings__text {
  font-size: 14px;
  line-height: 18px;
  color: #747474;
}

.services__team {
    padding-top: 10px;
}

.bg-gray {
    width: 100%;
    background-color: #d1d1d1;
    padding: 20px 10px;
}
.bg-gray-container {
    max-width: 90%;
    margin: 0 auto;
}

.techology-item span{
    height: 35px;
}

.creation__side {
    clear: both;
}

.article__info table tr{
    border-bottom: 1px solid #222222;
}

.article__info table{
    border: 1px solid #222222;
}

.article__info table td{
    padding: 12px;
    vertical-align: middle;
    font-size: 15px;
    line-height: 22px;
    color: #363636;
}

.article__info table tr td:first-child, .article__info table tr td:first-child {
    border-right: 1px solid #222222;
}

.quality .creation__wrap ol li::before{
    display: none;
}

@media screen and (max-width: 768px) {
    .quality .creation__wrap img{
        width: 100%;
        object-fit: cover;
    }
}

@media screen and (max-width: 520px) {
    .article__info table td{
        padding: 8px;
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (max-width: 900px) {
.creation__wrap iframe{
       width: 100%;
    }
}

@media screen and (max-width: 767px) {
.creation__wrap iframe{
        height: 300px;
    }
}

@media screen and (max-width: 520px) {
.creation__wrap iframe{
       height: 250px;
    }
}

@media screen and (max-width: 460px) {
.creation__wrap iframe{
       height: 200px;
    }
}

.portfolio__imgs_5{
    display: flex;
    position: relative;
    width: 100%;
    height: 685px;
    margin-bottom: -50px;
    overflow: hidden;
}


.main_services_old .inner .portfolio__imgs_5 img{
    width: 60px;
}

.portfolio__imgs_5 img{
    position: absolute;
}


.main_services_old .inner .portfolio__imgs_5 .portfolio__img_1 img{
    top: 50%;
    left: 50%;
    max-width: 46%;
    width: 100%;
    transform: translate(-50%, -60%) !important;
}

/* .main_services_old .inner .portfolio__imgs_5 .portfolio__img_1{
    max-width: 46%;
    width: 100%;
}
 */
.main_services_old .inner .portfolio__imgs_5  .portfolio__img_2 img{
    top: 34%;
    left: 45%;
    max-width: 47%;
    width: 100%;
}

.main_services_old .inner .portfolio__imgs_5 .portfolio__img_5 img{
    top: 51%;
    left: 84%;
    max-width: 9%;
    width: 100%;
}


.main_services_old .inner .portfolio__imgs_5 .portfolio__img_3 img{
    top: 30%;
    left: 17%;
    max-width: 21%;
    width: 100%;
}

.main_services_old .inner .portfolio__imgs_5 .portfolio__img_4 img{
    top: 54%;
    left: 4%;
    max-width: 27%;
    width: 100%;
}


.main_services_old .inner .portfolio__img_parallax img{
    width: 77%;
    margin: 0px auto;
}

.portfolio__img_parallax{
    position: relative;
    z-index: 1;
    padding: 40px 0px 80px;
}

.inner.portfolio-template{
    overflow: hidden;
}


@media screen and (max-width: 1024px){
     .portfolio__imgs_5{
        height:475px;
    }
}

@media screen and (max-width: 768px){
     .portfolio__imgs_5{
        height:400px;
         margin-bottom: -30px;
    }
}

@media screen and (max-width: 640px){
     .portfolio__imgs_5{
        height:320px;
    }
}

@media screen and (max-width: 540px){
     .portfolio__imgs_5{
        height:280px;
    }
    .main_services_old .inner .portfolio__imgs_5 .portfolio__img_1 img{
        width: 51%;
    }
}

@media screen and (max-width: 460px){
     .portfolio__imgs_5{
        height:220px;
        margin-bottom: -10px;
    }
}

@media screen and (max-width: 374px){
     .portfolio__imgs_5{
        height:180px;
    }
}

.portfolio__cols_2{
    position: relative;
    display: flex;
    align-items: center;
    height: 550px;
}

.portfolio__cols_2 .portfolio__col_1,
.portfolio__cols_2 .portfolio__col_2{
     position: relative;
     z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .portfolio__cols_2 .portfolio__col_1 img{
    transform: unset !important;
} */


.portfolio__cols_bg{
    position: absolute;
    top: 0px;
    left: 0px;
     height: 100%;
     width: 100%;
}

.main_services_old .inner .portfolio__cols_bg img{
    object-fit: cover;
    height: 100%;
}
.main_services_old .inner .portfolio__col_1 img{
    width: 65%;
}

.main_services_old .inner .portfolio__col_2  {
    flex-direction: column;
    align-items: center;
}

.main_services_old .inner .portfolio__col_2 p{
    color: #ffffff;
    font-size: 36px;
    text-shadow: none;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.portfolio__href{
    position: relative;
}

.main_services_old .inner .portfolio__href .portfolio__href_link{
    font-family: "Gotham Pro", sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    text-shadow: none;
    line-height: 1.5;
    text-transform: uppercase;
    color: #C49E68;
}

@media screen and (max-width: 1440px){
    .main_services_old .inner .portfolio__col_2 p{
        font-size: 28px;
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 1200px){
    .main_services_old .inner .portfolio__col_2 p{
        font-size: 24px;
        margin-bottom: 0px;
    }
    .main_services_old .inner .portfolio__col_2{
        width: 44%;
    }
    .main_services_old .inner .portfolio__href .portfolio__href_link{
        font-size: 20px;
    }
    .creation__about img{
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 960px){
     .main_services_old .portfolio__cols_2 .portfolio__col_1{
         width: 55%;
     }
      .main_services_old .portfolio__cols_2 .portfolio__col_2{
          width: 45%;
      }
    .main_services_old .inner .portfolio__col_2 p{
        font-size: 20px;
        margin-bottom: 0px;
    }
    .portfolio__cols_2{
        height: 390px;
    }
    .main_services_old .inner .portfolio__href .portfolio__href_link{
        font-size: 18px;
    }
}

@media screen and (max-width: 640px){
     .main_services_old .inner .portfolio__href .portfolio__href_link{
        font-size: 16px;
    }
    .portfolio__cols_2{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
     .main_services_old .portfolio__cols_2 .portfolio__col_1{
         width: 100%;
         align-items: center;
     }
      .main_services_old .portfolio__cols_2 .portfolio__col_2{
          width:100%;
          align-items: center;
          margin-bottom: 35px;
      }
      .main_services_old .inner .portfolio__col_1 img{
          width: 70%;
      }
      .portfolio__cols_2{
          height: 550px;
      }
}

@media screen and (max-width: 540px){
    .main_services_old .inner .portfolio__col_1 img{
          width: 85%;
      }
       .main_services_old .inner .portfolio__href .portfolio__href_link{
        font-size: 14px;
    }
}

.creation .creation__wrap .tabs{
    flex-wrap: wrap;
}

.creation .creation__wrap .tabs .tab{
   padding: 6px 15px;
}

.seo_audit-popup p{
    font-family: "Gotham Pro Bold";
    color: #C6A57A;
}

.seo_audit-popup p:hover{
  color: #e3c399;
  cursor: pointer;
  transition: all 0.2s;
}

.popup__audit__subtile{
    font-family: "Gotham Pro Bold";
    font-size: 16px;
    line-height: 20px;
    color: #171717;
    margin-bottom: 40px;
}

.popup__audit .popup__title{
    margin-bottom: 20px;
}

.popup.popup__audit{
    max-width: 600px;
}

.popup.popup__audit .discuss__side {
    width: 100%;
}

.overlay.overlay__audit{
    z-index: 99;
}

@media screen and (max-width: 540px){
    .popup__audit__subtile{
        margin-bottom: 30px;
    }
    .popup__audit .popup__title{
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1024px){
    .creation.light-theme .creation__wrap img{
        width: 100%;
        object-fit: cover;
    }
}

@media screen and (max-width: 1200px){
    .main-about .info-container.container{
        height: 600px;
    }
}


@media screen and (max-width: 540px){
    .main-about .info-container.container{
        height: 550px;
    }
}

.menu__main .child{
    display: none;
}

.mob_menu_arrow svg{
    width: 25px;
    height: 25px;
    margin-top: 5px;
    display: none;
}

@media screen and (max-width: 840px){
    .mob_menu_arrow svg{
        display: block;
    }
}

.list-navigation__item.list_item-services.level1.parent{
    display: flex;
    align-items: center;
}

.main .main-about.main-about__black.services_page{
    background: url(../../../img/bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.main .main-about.main-about__black.opend{
/*     position: relative; */
    z-index: 2;
}

.main-about.main-about__black.services_page.landing_page{
    background: url(../../../img/services/services-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.reviews__slide.reviews__slide_main .reviews__text{
    max-width: 100%;
}

.reviews__more{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

@media screen and (max-width: 1200px) {
    .reviews__slide.reviews__slide_main .reviews__info{
        margin-top: 0px;
    }
    .reviews__slide.reviews__slide_main .reviews__photo img{
       height: 100%; 
    }
}

@media screen and (max-width: 960px) {
    .reviews__more{
        padding-bottom: 80px;
    }
}

.reviews__link{
    margin-top: 30px;
}

.reviews__more .reviews__btn,
.reviews__link{
    display: inline-block;
    font-size: 12px;
    line-height: 160%;
    text-transform: uppercase;
    color: #171717;
    font-family: "Gotham Pro Medium";
    border: 2px solid #171717;
    padding: 12px 25px;
    position: relative;
    background: transparent;
    min-width: 200px;
    text-align: center;
}

.reviews__more .reviews__btn::before,
.reviews__link::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -13px;
    width: 24px;
    height: 2px;
    background: #171717;
    transition: all 0.5s;
}
.reviews__more .reviews__btn:hover,
.reviews__link:hover{
    border: 2px solid #C6A57A;
    color: #C6A57A;
    transition: all 0.3s;
}

.reviews__more .reviews__btn:hover::before,
.reviews__link:hover::before{
    background: #C6A57A;
    left: 95%;
    transition: all 0.5s;
}

.popup__wrapperv{
    width: 90%;
    margin: 0px auto;
}

.popup_video{
    padding: 60px 40px;
}

.blog-item__link a{
     display: inline-block;
    font-size: 12px;
    line-height: 160%;
    text-transform: uppercase;
    color: #171717;
    font-family: "Gotham Pro Medium";
    border: 2px solid #171717;
    padding: 12px 25px;
    position: relative;
    background: transparent;
    min-width: 200px;
    text-align: center;
    margin-top: 15px;
}

.blog-item__link a::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -13px;
    width: 24px;
    height: 2px;
    background: #171717;
    transition: all 0.5s;
}
.blog-item__link a:hover{
    border: 2px solid #C6A57A;
    color: #C6A57A;
    transition: all 0.3s;
}

.blog-item__link a:hover::before{
    background: #C6A57A;
    left: 95%;
    transition: all 0.5s;
}

.overlay_video{
    z-index: 999;
}

@media screen and (max-width: 768px){
   .popup_video{
        padding: 40px;
    } 
}

@media screen and (max-width: 520px) {
    .blog-item__link,
    .blog-item__link a{
        width: 100%;
    }
    .reviews__more{
        padding-bottom: 60px;
    }
    .comments .reviews__wrap{
        padding: 20px 0px 40px;
    }
    .reviews__link{
        margin-left: 12px;
    }
    
   .popup_video iframe{
       height: 200px;
   }
   .popup_video{
       padding: 30px;
   }
}

@media screen and (max-width: 400px) {
     .popup_video iframe{
       height: 170px;
   }
}

.service-dorabotka-sajta .advlandings .advlandings__content{
    padding-top: 0px !important;
    padding-bottom: 100px;
}

@media screen and (max-width: 1440px){
   .service-dorabotka-sajta .advlandings .advlandings__content{
       padding-bottom: 40px;
   } 
}

@media screen and (max-width: 960px){
   .service-dorabotka-sajta .advlandings .advlandings__content{
       padding-bottom: 0px;
   } 
   .service-dorabotka-sajta .creation__wrap{
       padding-top: 0px;
   }
}

input[name="af_action"] {
    display: none;
}

.works .works__btn{
    margin: 0px auto;
    padding-bottom: 100px;
}

.main.main_portfolio .quality .creation__wrap {
    padding: 80px 0 0;
}

@media screen and (max-width: 640px){
    .works .works__btn{
        position: relative;
        transform: unset !important;
        margin: 30px auto 0px;
        padding-bottom: 0px;
        left: unset !important;
        bottom: unset !important;
    }
    .main.main_portfolio .quality .creation__wrap {
        padding: 60px 0 0;
    }
}
/*# sourceMappingURL=style.css.map */