@charset "UTF-8";
html * {
  padding: 0;
  margin: 0;
  outline: none;
  border: 0;
  background: transparent;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  box-shadow: none;
}

html {
  font-size: 10px;
}

html body {
  font-size: 0;
  line-height: 0;
}

@font-face {
  font-family: "DIN_alt";
  src: url("../fonts/DINAlternate-Bold.woff") format("woff"), url("../fonts/DINAlternate-Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "DIN";
  src: url("../fonts/DINPro-Light.woff") format("woff"), url("../fonts/DINPro-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "DIN";
  src: url("../fonts/DINPro.woff") format("woff"), url("../fonts/DINPro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "DIN";
  src: url("../fonts/DINPro-Medium.woff") format("woff"), url("../fonts/DINPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "DIN";
  src: url("../fonts/DINPro-Bold.woff") format("woff"), url("../fonts/DINPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "mr_HamiltoneG";
  src: url("../fonts/mr_HamiltoneG.woff") format("woff"), url("../fonts/mr_HamiltoneG.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
html, body {
  position: relative;
  min-height: 100vh;
  background: #fff;
}

.ol {
  border: 1px solid red;
}

.w_col_main {
  position: relative;
  z-index: 10;
  margin: auto;
  width: 1300px;
}
@media screen and (max-width: 1440px) {
  .w_col_main {
    width: 1100px;
  }
}
@media screen and (max-width: 1024px) {
  .w_col_main {
    width: 90%;
  }
}
@media screen and (max-width: 900px) {
  .w_col_main {
    width: 100%;
  }
}

.dn {
  opacity: 0;
  z-index: -1;
}

.ui_arrow {
  position: relative;
  width: 300px;
  height: 35px;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .ui_arrow {
    width: 260px;
  }
}
@media screen and (max-width: 1280px) {
  .ui_arrow {
    width: 200px;
  }
}
@media screen and (max-width: 900px) {
  .ui_arrow {
    width: 80px;
  }
}
.ui_arrow:before {
  content: "";
  position: absolute;
  top: 14px;
  width: 9px;
  height: 7px;
  background: url(../img/arr_dwn.svg) no-repeat 50% 50%;
  background-size: 9px 7px;
  transition: all 0.5s ease;
}
.ui_arrow:after {
  content: "";
  position: absolute;
  top: 17px;
  height: 1px;
  background: #bea968;
  transition: all 0.5s ease;
}
.ui_arrow span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #bea968;
  opacity: 0;
  transition: all 0.5s ease;
}
.ui_arrow.m_short {
  width: 112px;
}
.ui_arrow.m_extrashort {
  width: 46px;
}
.ui_arrow.m_extrashort span {
  display: none;
}
.ui_arrow.disable {
  opacity: 0 !important;
  cursor: default;
  z-index: -1;
}
.ui_arrow.m_left:before {
  left: 14px;
  transform: rotate(90deg);
}
.ui_arrow.m_left:after {
  left: 18px;
  right: 0;
}
.ui_arrow.m_left span {
  left: 20px;
}
.ui_arrow.m_left:hover span {
  left: 0;
  opacity: 1;
  transform: scale(1, 1);
}
.ui_arrow.m_right:before {
  right: 14px;
  transform: rotate(-90deg);
}
.ui_arrow.m_right:after {
  right: 18px;
  left: 0;
}
.ui_arrow.m_right span {
  right: 20px;
}
.ui_arrow.m_right:hover span {
  right: 0;
  opacity: 1;
  transform: scale(1, 1);
}
.ui_readmore {
  position: relative;
  display: inline-block;
  font: normal 16px/1 "DIN_alt", sans-serif;
  color: #bea968;
  text-transform: uppercase;
}
@media screen and (max-width: 900px) {
  .ui_readmore {
    font: normal 13px/1 "DIN_alt", sans-serif;
  }
}
.ui_readmore.m_arr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 160px;
}

sup {
  font-size: 0.65em;
  line-height: 0.65em;
}

.b_header {
  position: sticky;
  top: 0;
  z-index: 10000;
  height: 80px;
  background: #092737;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media screen and (max-height: 900px) {
  .b_header {
    height: 60px;
  }
  .b_header .b_header-logo {
    width: 140px;
  }
}
@media screen and (max-height: 900px) and (max-width: 900px) {
  .b_header .b_header-logo {
    padding-top: 4px;
  }
}
@media screen and (max-height: 900px) {
  .b_header .b_header-interface .b_order {
    height: 34px;
  }
}
@media screen and (max-width: 900px) {
  .b_header {
    height: 80px;
  }
}
.b_header.m_smaller {
  height: 60px;
}
@media screen and (max-width: 900px) {
  .b_header.m_smaller {
    height: 60px;
    padding-bottom: 0;
  }
}
.b_header.m_smaller .b_header-logo {
  width: 140px;
}
@media screen and (max-width: 900px) {
  .b_header.m_smaller .b_header-logo {
    padding-top: 4px;
  }
}
.b_header.m_smaller .b_header-interface .b_order {
  height: 34px;
}
.b_header-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  .b_header-row {
    justify-content: center;
  }
}
.b_header-share {
  display: none;
}
@media screen and (max-width: 900px) {
  .b_header-share {
    display: block;
    position: absolute;
    z-index: 2;
    width: 22px;
    height: 22px;
    top: 0;
    left: 20px;
    bottom: 0;
    margin: auto;
    background: url(../img/share.svg) no-repeat 50% 50%;
    background-size: 22px;
  }
}
.b_header-logo {
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
  width: 194px;
}
@media screen and (max-width: 1440px) {
  .b_header-logo {
    width: 160px;
  }
}
@media screen and (max-width: 1280px) {
  .b_header-logo {
    width: 140px;
  }
}
@media screen and (max-width: 1024px) {
  .b_header-logo {
    width: 100px;
  }
}
@media screen and (max-width: 900px) {
  .b_header-logo {
    width: 50%;
    padding-top: 34px;
  }
}
.b_header-logo img {
  display: block;
  width: 100%;
}
.b_header-interface {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  .b_header-interface {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
  }
}
.b_header-interface .b_menu {
  position: relative;
}
@media screen and (max-width: 900px) {
  .b_header-interface .b_menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
  }
  .b_header-interface .b_menu.open .b_menu-btn span {
    background: transparent;
  }
  .b_header-interface .b_menu.open .b_menu-btn span:before {
    transform: rotate(-45deg);
    right: 5px;
    top: -11px;
  }
  .b_header-interface .b_menu.open .b_menu-btn span:after {
    transform: rotate(45deg);
    right: 4px;
    bottom: -10px;
  }
  .b_header-interface .b_menu.open .b_menu-content {
    left: 0;
    opacity: 1;
    width: 100%;
  }
}
.b_header-interface .b_menu-btn {
  display: none;
}
@media screen and (max-width: 900px) {
  .b_header-interface .b_menu-btn {
    display: block;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 30px;
    height: 30px;
    margin: auto;
  }
  .b_header-interface .b_menu-btn span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #bea968;
    margin: auto;
    transition: all 0.3s ease;
  }
  .b_header-interface .b_menu-btn span:before {
    content: "";
    position: absolute;
    top: -5px;
    right: 0;
    width: 100%;
    height: 1px;
    background: #bea968;
    transform: rotate(0deg);
    transform-origin: 100% 0;
    transition: all 0.3s ease;
  }
  .b_header-interface .b_menu-btn span:after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 1px;
    background: #bea968;
    transform: rotate(0deg);
    transform-origin: 100% 0;
    transition: all 0.3s ease;
  }
}
.b_header-interface .b_menu-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .b_header-interface .b_menu-content {
    position: absolute;
    top: 60px;
    left: 100%;
    width: 0;
    height: calc(100vh - 100px);
    background: #092737;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  }
}
.b_header-interface .b_menu-content .item {
  position: relative;
  display: inline-flex;
  margin-right: 36px;
  font: 400 14px/1 "DIN", sans-serif;
  color: #bea968;
  text-transform: uppercase;
  padding: 2px 0 3px;
  cursor: pointer;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 900px) {
  .b_header-interface .b_menu-content .item {
    margin: 0 0 36px 0;
  }
}
@media screen and (max-width: 1280px) {
  .b_header-interface .b_menu-content .item {
    margin-right: 26px;
    font: 400 14px/1 "DIN", sans-serif;
  }
}
@media screen and (max-width: 1024px) {
  .b_header-interface .b_menu-content .item {
    margin-right: 20px;
    font: 400 13px/1 "DIN", sans-serif;
  }
}
.b_header-interface .b_menu-content .item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  margin: auto;
  height: 1px;
  background: #bea968;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.b_header-interface .b_menu-content .item:hover:after {
  width: 100%;
}
.b_header-interface .b_order {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bea968;
  width: 190px;
  height: 45px;
  font: 500 14px/1 "DIN", sans-serif;
  color: #092737;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-left: 10px;
}
@media screen and (max-width: 900px) {
  .b_header-interface .b_order {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    margin: 0;
  }
}
.b_header-interface .b_order span {
  position: relative;
  display: inline-flex;
  padding: 2px 0 3px;
}
.b_header-interface .b_order span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  margin: auto;
  height: 1px;
  background: #092737;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.b_header-interface .b_order span:hover:after {
  width: 100%;
}

body.m_overflow_hide .b_header:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #092737;
  top: 0;
  bottom: 0;
  left: 0;
  right: -100px;
}

.b_firstscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: -80px;
  background: url(../img/main_image2_1920.jpg) no-repeat 50% 50%;
  background-size: cover;
}
@media screen and (max-height: 900px) {
  .b_firstscreen {
    margin-top: -60px;
  }
}
@media screen and (max-width: 900px) {
  .b_firstscreen {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.b_firstscreen-title {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 475px;
  height: 290px;
  background: #fff;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .b_firstscreen-title {
    position: relative;
    width: 80%;
    height: auto;
    padding-top: 70%;
  }
}
.b_firstscreen-title .content {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 2px solid #bea968;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
@media screen and (max-width: 900px) {
  .b_firstscreen-title .content {
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}
.b_firstscreen-title .content:before, .b_firstscreen-title .content:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 64px;
  height: 25px;
  background: url(../img/quote.svg) no-repeat 50% 50% #fff;
  background-size: auto 100%;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .b_firstscreen-title .content:before, .b_firstscreen-title .content:after {
    width: 40px;
    height: 22px;
  }
}
.b_firstscreen-title .content:before {
  top: -12px;
}
.b_firstscreen-title .content:after {
  bottom: -12px;
}
.b_firstscreen-title .content .header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  margin-bottom: 10px;
}
.b_firstscreen-title .content .header img {
  display: block;
  height: 54px;
}
@media screen and (max-width: 900px) {
  .b_firstscreen-title .content .header img {
    height: 34px;
    margin-bottom: 10px;
  }
}
.b_firstscreen-title .content .subheader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: normal 40px/1 "mr_HamiltoneG", sans-serif;
  color: #bea968;
}
@media screen and (max-width: 900px) {
  .b_firstscreen-title .content .subheader {
    font: normal 30px/1 "mr_HamiltoneG", sans-serif;
  }
}

.b_screen {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 90px;
  margin: auto;
}
@media screen and (max-height: 900px) {
  .b_screen {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .b_screen {
    overflow: hidden;
  }
}
@media screen and (max-width: 900px) {
  .b_screen {
    min-height: auto;
    padding-top: 140px !important;
  }
}
.b_screen-wrapper {
  width: 100%;
}
.b_screen-content {
  position: relative;
  display: flex;
  flex-flow: column;
}
.b_screen-title {
  position: relative;
  font: 500 36px/1.2 "DIN", sans-serif;
  color: #bea968;
  text-transform: uppercase;
  margin-bottom: 35px;
  opacity: 0;
  left: -30px;
  transition: all 1.2s ease;
}
@media screen and (max-width: 1440px) {
  .b_screen-title {
    font: 500 30px/1.2 "DIN", sans-serif;
  }
}
@media screen and (max-width: 1366px) {
  .b_screen-title {
    font: 500 26px/1.2 "DIN", sans-serif;
  }
}
@media screen and (max-width: 900px) {
  .b_screen-title {
    padding: 0 0 0 20px;
  }
}
.b_screen-partname {
  position: absolute;
  z-index: 100;
  width: 57px;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
}
@media screen and (max-width: 1440px) {
  .b_screen-partname {
    width: 47px;
  }
}
@media screen and (max-width: 1366px) {
  .b_screen-partname {
    width: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .b_screen-partname {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .b_screen-partname {
    display: none;
  }
}
.b_screen-partname.m_right {
  top: 140px;
  right: calc(((100% - 1300px) / 2 - 57px) / 2);
}
@media screen and (max-width: 1440px) {
  .b_screen-partname.m_right {
    right: calc(((100% - 1100px) / 2 - 57px) / 2);
  }
}
.b_screen-partname.m_left {
  bottom: 0px;
  left: calc(((100% - 1300px) / 2 - 57px) / 2);
}
@media screen and (max-width: 1440px) {
  .b_screen-partname.m_left {
    left: calc(((100% - 1100px) / 2 - 57px) / 2);
  }
}
.b_screen-partname img {
  display: block;
  width: 100%;
}
.b_screen.go .b_screen-title {
  opacity: 1;
  left: 0;
}
.b_screen.go .b_screen-partname.m_right {
  top: 90px;
  opacity: 1;
}
.b_screen.go .b_screen-partname.m_left {
  bottom: 30px;
  opacity: 1;
}

.b_portfolio {
  position: relative;
  display: flex;
  align-items: center;
}
.b_portfolio-content {
  width: 100%;
}
.b_portfolio.go .b_portfolio-gallery .item {
  top: 0;
  opacity: 1;
}
.b_portfolio.go .b_portfolio-arrows .ui_readmore {
  opacity: 1;
}
.b_portfolio.go .b_portfolio-arrows .ui_arrow {
  opacity: 1;
  width: 300px;
}
@media screen and (max-width: 1440px) {
  .b_portfolio.go .b_portfolio-arrows .ui_arrow {
    width: 200px;
  }
}
@media screen and (max-width: 900px) {
  .b_portfolio.go .b_portfolio-arrows .ui_arrow {
    width: 80px;
  }
}
.b_portfolio.go .b_portfolio-decor .line1 span {
  top: 0;
  opacity: 1;
}
.b_portfolio-gallery {
  position: relative;
  width: 100%;
  min-height: 640px;
}
@media screen and (max-width: 900px) {
  .b_portfolio-gallery {
    min-height: auto;
    padding-bottom: 75px;
  }
}
.b_portfolio-gallery-slider {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .b_portfolio-gallery-slider {
    height: 500px;
  }
}
@media screen and (max-width: 900px) {
  .b_portfolio-gallery-slider {
    height: auto;
  }
}
.b_portfolio-gallery-slider:before, .b_portfolio-gallery-slider:after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  width: calc((100% - 1300px) / 2);
  transition: all 0.5s ease;
}
@media screen and (max-width: 1440px) {
  .b_portfolio-gallery-slider:before, .b_portfolio-gallery-slider:after {
    width: calc((100% - 1100px) / 2);
  }
}
@media screen and (max-width: 900px) {
  .b_portfolio-gallery-slider:before, .b_portfolio-gallery-slider:after {
    width: 20px;
  }
}
.b_portfolio-gallery-slider:before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.9) 80%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 900px) {
  .b_portfolio-gallery-slider:before {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }
}
.b_portfolio-gallery-slider:after {
  right: 0;
  transition: all 0.5s ease;
  background: linear-gradient(-90deg, #fff 0%, rgba(255, 255, 255, 0.9) 80%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 900px) {
  .b_portfolio-gallery-slider:after {
    background: linear-gradient(-90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }
}
.b_portfolio-gallery-slider-arrow {
  position: absolute;
  z-index: 12;
  top: 195px;
  width: 34px;
  height: 34px;
  margin: auto;
  margin-top: -30px;
  border: 1px solid #bea968;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .b_portfolio-gallery-slider-arrow {
    top: 150px;
    margin-top: 0px;
  }
}
@media screen and (max-width: 900px) {
  .b_portfolio-gallery-slider-arrow {
    display: none;
  }
}
.b_portfolio-gallery-slider-arrow.left {
  left: calc((100% - 1300px) / 4);
}
@media screen and (max-width: 1440px) {
  .b_portfolio-gallery-slider-arrow.left {
    left: calc((100% - 1100px) / 4);
  }
}
.b_portfolio-gallery-slider-arrow.right {
  right: calc((100% - 1300px) / 4);
  transform: rotate(180deg);
}
@media screen and (max-width: 1440px) {
  .b_portfolio-gallery-slider-arrow.right {
    right: calc((100% - 1100px) / 4);
  }
}
.b_portfolio-gallery-slider-arrow:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
  background: url(../img/arr_yellow.svg) no-repeat 50% 50%;
  background-size: 100% auto;
  transition: all 0.5s ease;
}
.b_portfolio-gallery-slider-arrow:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  background: url(../img/arr_white.svg) no-repeat 50% 50%;
  background-size: 100% auto;
  transition: all 0.5s ease;
}
.b_portfolio-gallery-slider-arrow:hover {
  background: #bea968;
}
.b_portfolio-gallery-slider-arrow:hover:before {
  opacity: 0;
}
.b_portfolio-gallery-slider-arrow:hover:after {
  opacity: 1;
}
.b_portfolio-gallery-slider-arrow.disable {
  opacity: 0;
  cursor: default;
}
.b_portfolio-gallery .wrapper {
  position: relative;
  width: auto;
  padding-left: calc((100% - 1300px) / 2);
  padding-right: calc((100% - 1300px) / 2);
  height: 600px;
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-flow: row nowrap;
}
@media screen and (max-width: 1440px) {
  .b_portfolio-gallery .wrapper {
    height: 520px;
    padding-left: calc((100% - 1100px) / 2);
    padding-right: calc((100% - 1100px) / 2);
  }
}
@media screen and (max-width: 900px) {
  .b_portfolio-gallery .wrapper {
    height: auto;
  }
}
.b_portfolio-gallery .wrapper .item {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  flex-flow: column;
  width: 30%;
  margin-left: 5%;
  cursor: pointer;
  padding-bottom: 60px;
  opacity: 0;
  top: 60px;
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.b_portfolio-gallery .wrapper .item:first-child {
  margin-left: 0;
}
.b_portfolio-gallery .wrapper .item:nth-child(2) {
  transition-delay: 0.3s;
}
.b_portfolio-gallery .wrapper .item:nth-child(3) {
  transition-delay: 0.6s;
}
.b_portfolio-gallery .wrapper .item:nth-child(4) {
  transition-delay: 0.9s;
}
@media screen and (max-width: 1440px) {
  .b_portfolio-gallery .wrapper .item {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 900px) {
  .b_portfolio-gallery .wrapper .item {
    width: 90%;
    margin: 0 0 30px 0;
    padding: 0 20px 20px;
  }
}
.b_portfolio-gallery .wrapper .item:first-child {
  margin-left: 0;
}
.b_portfolio-gallery .wrapper .item:hover .item-image img {
  transform: scale(1.05, 1.05);
}
.b_portfolio-gallery .wrapper .item:hover .item-title:before {
  width: 15%;
}
.b_portfolio-gallery .wrapper .item-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.b_portfolio-gallery .wrapper .item-image img {
  position: absolute;
  top: 0;
  width: auto;
  height: 100%;
  display: block;
  transform: scale(1, 1);
  transition: all 1.2s ease;
}
.b_portfolio-gallery .wrapper .item-title {
  position: relative;
  padding-top: 30px;
  font: 700 24px/1.35 "DIN", sans-serif;
  color: #59686C;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .b_portfolio-gallery .wrapper .item-title {
    font: 700 20px/1.35 "DIN", sans-serif;
  }
}
@media screen and (max-width: 1366px) {
  .b_portfolio-gallery .wrapper .item-title {
    font: 700 18px/1.35 "DIN", sans-serif;
  }
}
@media screen and (max-width: 900px) {
  .b_portfolio-gallery .wrapper .item-title {
    padding-top: 16px;
    margin-bottom: 14px;
  }
}
.b_portfolio-gallery .wrapper .item-title:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 2px;
  width: 0;
  background: #59686C;
  transition: all 0.7s ease;
}
.b_portfolio-gallery .wrapper .item-location {
  position: absolute;
  left: 0;
  bottom: 40px;
  font: 400 16px/1 "DIN", sans-serif;
  color: #59686C;
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  .b_portfolio-gallery .wrapper .item-location {
    font: 400 14px/1 "DIN", sans-serif;
  }
}
@media screen and (max-width: 1366px) {
  .b_portfolio-gallery .wrapper .item-location {
    font: 400 13px/1 "DIN", sans-serif;
  }
}
@media screen and (max-width: 900px) {
  .b_portfolio-gallery .wrapper .item-location {
    position: relative;
    bottom: 0;
  }
}
.b_portfolio-arrows {
  position: relative;
  display: flex;
  margin: 20px auto;
  width: 960px;
  align-items: center;
  justify-content: center;
}
.b_portfolio-arrows .ui_readmore {
  margin: 0 80px;
  opacity: 0;
  transition: all 0.85s ease 1s;
}
@media screen and (max-width: 900px) {
  .b_portfolio-arrows .ui_readmore {
    margin: 0 30px;
    text-align: center;
  }
}
.b_portfolio-arrows .ui_arrow {
  width: 0;
  opacity: 0;
  transition: all 0.5s ease 1.2s;
}
@media screen and (max-width: 1440px) {
  .b_portfolio-arrows {
    width: 820px;
  }
}
@media screen and (max-width: 1366px) {
  .b_portfolio-arrows {
    width: 780px;
  }
}
@media screen and (max-width: 900px) {
  .b_portfolio-arrows {
    width: 100%;
  }
}
.b_portfolio-decor {
  position: absolute;
  right: calc((100% - 960px - 40px) / 2 / 2);
  bottom: 0;
  width: 40px;
  height: 140px;
}
@media screen and (max-width: 900px) {
  .b_portfolio-decor {
    display: none;
  }
}
.b_portfolio-decor .line1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 140px;
  overflow: hidden;
  transform: skew(-22deg, 0);
}
.b_portfolio-decor .line1 span {
  position: absolute;
  top: 100%;
  width: 40px;
  height: 100%;
  background: #bea968;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 1.2s;
}

.b_stages {
  position: relative;
}
.b_stages.go .b_stages-content .wrapper .item {
  top: 0;
  opacity: 1;
}
.b_stages.go .b_stages-decor .line1 span {
  top: 0;
  opacity: 1;
}
.b_stages.go .b_stages-decor .line2 span {
  bottom: 0;
  opacity: 1;
}
.b_stages-content {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 520px;
  background: #092737;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 90px;
  padding: 60px 0;
}
@media screen and (min-width: 1601px) {
  .b_stages-content {
    min-height: 620px;
  }
}
@media screen and (max-width: 900px) {
  .b_stages-content {
    margin-bottom: 0;
  }
}
.b_stages-content .wrapper {
  position: relative;
  z-index: 10;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .b_stages-content .wrapper {
    flex-flow: column;
    padding: 40px 0;
  }
}
.b_stages-content .wrapper .item {
  position: relative;
  display: inline-flex;
  flex-flow: column;
  align-items: center;
  padding: 20px 20px;
  width: 22%;
  flex-shrink: 0;
  cursor: default;
  opacity: 0;
  top: 60px;
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.b_stages-content .wrapper .item:nth-child(2) {
  transition-delay: 0.2s;
}
.b_stages-content .wrapper .item:nth-child(3) {
  transition-delay: 0.4s;
}
.b_stages-content .wrapper .item:nth-child(4) {
  transition-delay: 0.6s;
}
@media screen and (max-width: 900px) {
  .b_stages-content .wrapper .item {
    width: 100%;
    flex-flow: row;
    align-items: flex-start;
  }
}
.b_stages-content .wrapper .item:hover .item-title, .b_stages-content .wrapper .item:hover .item-info {
  color: #bea968;
}
.b_stages-content .wrapper .item:hover .ui_readmore .ui_arrow {
  transform: translate(10px, 0);
}
.b_stages-content .wrapper .item:first-child {
  margin-left: 0;
}
.b_stages-content .wrapper .item-num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  border: 2px solid #bea968;
  margin-bottom: 50px;
}
@media screen and (max-width: 1440px) {
  .b_stages-content .wrapper .item-num {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 900px) {
  .b_stages-content .wrapper .item-num {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 20px;
  }
}
.b_stages-content .wrapper .item-num img {
  display: block;
  height: 57px;
}
@media screen and (max-width: 1440px) {
  .b_stages-content .wrapper .item-num img {
    height: 46px;
  }
}
@media screen and (max-width: 900px) {
  .b_stages-content .wrapper .item-num img {
    height: 34px;
  }
}
.b_stages-content .wrapper .item-title {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  font: 700 26px/1.25 "DIN", sans-serif;
  color: #cccccc;
  min-height: 66px;
  margin-bottom: 25px;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1440px) {
  .b_stages-content .wrapper .item-title {
    font: 700 22px/1.35 "DIN", sans-serif;
  }
}
@media screen and (max-width: 1366px) {
  .b_stages-content .wrapper .item-title {
    font: 700 20px/1.35 "DIN", sans-serif;
  }
}
@media screen and (max-width: 900px) {
  .b_stages-content .wrapper .item-title {
    min-height: auto;
    margin-bottom: 15px;
  }
}
.b_stages-content .wrapper .item-info {
  position: relative;
  display: block;
  width: 100%;
  font: 400 16px/1.3 "DIN", sans-serif;
  color: #cccccc;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1440px) {
  .b_stages-content .wrapper .item-info {
    font: 400 14px/1.3 "DIN", sans-serif;
  }
}
.b_stages-content .wrapper .item-info p + p {
  margin-top: 10px;
}
.b_stages-content .wrapper .item .ui_readmore {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.b_stages-content .wrapper .item .ui_readmore .ui_arrow {
  transform: translate(0, 0);
  transition: all 0.5s ease;
}
.b_stages-decor {
  position: absolute;
  z-index: 9;
  width: 140px;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .b_stages-decor {
    display: none;
  }
}
.b_stages-decor .line1 {
  position: absolute;
  top: 0;
  left: 90px;
  width: 15px;
  height: 50%;
  transform: skew(22deg, 0);
}
.b_stages-decor .line1 span {
  position: absolute;
  top: -100%;
  width: 15px;
  height: 100%;
  opacity: 0;
  background: #bea968;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 1s;
}
.b_stages-decor .line2 {
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 45px;
  height: 50%;
  transform-origin: 0 100%;
  transform: skew(-22deg, 0);
}
.b_stages-decor .line2 span {
  position: absolute;
  bottom: -100%;
  width: 45px;
  height: 100%;
  background: #bea968;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 1.3s;
}

.b_service {
  position: relative;
}
.b_service.go .b_service-content .wrapper .item {
  top: 0;
  opacity: 1;
}
.b_service-content {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 90px;
}
.b_service-content .wrapper {
  position: relative;
  z-index: 10;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .b_service-content .wrapper {
    flex-flow: column;
  }
}
.b_service-content .wrapper .item {
  position: relative;
  display: inline-flex;
  flex-flow: column;
  align-items: center;
  padding: 20px 20px 80px;
  width: 30%;
  flex-shrink: 0;
  cursor: default;
  opacity: 0;
  top: 60px;
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.b_service-content .wrapper .item:nth-child(2) {
  transition-delay: 0.2s;
}
.b_service-content .wrapper .item:nth-child(3) {
  transition-delay: 0.4s;
}
.b_service-content .wrapper .item:nth-child(4) {
  transition-delay: 0.6s;
}
@media screen and (max-width: 900px) {
  .b_service-content .wrapper .item {
    width: 100%;
    flex-flow: row;
    align-items: flex-start;
  }
}
.b_service-content .wrapper .item:hover .item-icon:before {
  opacity: 0;
}
.b_service-content .wrapper .item:hover .item-icon span {
  opacity: 0;
}
.b_service-content .wrapper .item:hover .item-icon span:before {
  height: 0;
  opacity: 0;
}
.b_service-content .wrapper .item:hover .item-icon span:after {
  width: 0;
  opacity: 0;
}
.b_service-content .wrapper .item:hover .item-title, .b_service-content .wrapper .item:hover .item-info {
  color: #154A68;
}
.b_service-content .wrapper .item:hover .ui_readmore .ui_arrow {
  transform: translate(10px, 0);
}
.b_service-content .wrapper .item:first-child {
  margin-left: 0;
}
.b_service-content .wrapper .item-icon {
  position: relative;
  width: 100%;
  padding-top: 100%;
  margin-bottom: 50px;
  background: transparent;
  transform: translate(0, 0);
  overflow: hidden;
  transition: all 0.8s ease;
}
@media screen and (max-width: 900px) {
  .b_service-content .wrapper .item-icon {
    margin-bottom: 0;
    width: 100px;
    padding: 0;
    height: 100px;
    flex-shrink: 0;
    margin-right: 20px;
  }
}
.b_service-content .wrapper .item-icon span {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  opacity: 1;
  transform: rotate(0deg);
  transition: all 1.5s ease;
}
.b_service-content .wrapper .item-icon span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  margin: auto;
  opacity: 1;
  background: #bea968;
  transition: all 0.8s ease;
}
.b_service-content .wrapper .item-icon span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  opacity: 1;
  background: #bea968;
  transition: all 0.8s ease;
}
.b_service-content .wrapper .item-icon span:first-child {
  transform: rotate(45deg);
}
.b_service-content .wrapper .item-icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid #bea968;
  opacity: 1;
  transition: all 0.8s ease;
}
.b_service-content .wrapper .item-icon img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
}
.b_service-content .wrapper .item-title {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  font: 700 26px/1.25 "DIN", sans-serif;
  color: #59686C;
  min-height: 66px;
  margin-bottom: 25px;
  text-transform: uppercase;
  transition: all 0.8s ease;
}
@media screen and (max-width: 1440px) {
  .b_service-content .wrapper .item-title {
    font: 700 22px/1.35 "DIN", sans-serif;
  }
}
@media screen and (max-width: 1366px) {
  .b_service-content .wrapper .item-title {
    font: 700 20px/1.35 "DIN", sans-serif;
  }
}
@media screen and (max-width: 900px) {
  .b_service-content .wrapper .item-title {
    min-height: auto;
    margin-bottom: 15px;
  }
}
.b_service-content .wrapper .item-info {
  position: relative;
  display: block;
  width: 100%;
  font: 400 16px/1.3 "DIN", sans-serif;
  color: #59686C;
  transition: all 0.8s ease;
}
.b_service-content .wrapper .item-info p + p {
  margin-top: 10px;
}
.b_service-content .wrapper .item .ui_readmore {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.b_service-content .wrapper .item .ui_readmore .ui_arrow {
  transform: translate(0, 0);
  transition: all 0.5s ease;
}
.b_service-decor {
  position: absolute;
  z-index: 9;
  width: 140px;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.b_service-decor .line1 {
  position: absolute;
  top: 0;
  left: 90px;
  width: 15px;
  height: 50%;
  background: #bea968;
  transform: skew(22deg, 0);
}
.b_service-decor .line2 {
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 45px;
  height: 50%;
  background: #bea968;
  transform-origin: 0 100%;
  transform: skew(-22deg, 0);
}

.b_about {
  position: relative;
  padding-bottom: 165px;
}
@media screen and (max-width: 900px) {
  .b_about {
    padding-bottom: 0;
  }
}
.b_about.go .b_about-content .wrapper .textblock p, .b_about.go .b_about-content .wrapper .textblock .sign, .b_about.go .b_about-content .wrapper .photo {
  top: 0;
  opacity: 1;
}
.b_about.go .b_about-decor .line1 span {
  top: 0;
}
@media screen and (max-width: 900px) {
  .b_about.go .b_about-content .wrapper .photo {
    top: -45px;
  }
}
.b_about-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 520px;
  background: #092737;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 1440px) {
  .b_about-content {
    height: 420px;
  }
}
@media screen and (max-width: 900px) {
  .b_about-content {
    height: auto;
    margin-top: 70px;
    margin-bottom: 0;
  }
}
.b_about-content .wrapper {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .b_about-content .wrapper {
    flex-flow: column-reverse;
    align-items: center;
    justify-content: flex-start;
  }
}
.b_about-content .wrapper .textblock {
  position: relative;
  width: 48%;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  padding-left: 20px;
}
@media screen and (max-width: 900px) {
  .b_about-content .wrapper .textblock {
    width: 100%;
    padding: 0 20px 80px;
    align-items: center;
  }
  .b_about-content .wrapper .textblock:before {
    content: "";
    position: absolute;
    top: -20px;
    width: 84px;
    height: 1px;
    background: #bea968;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.b_about-content .wrapper .textblock p {
  position: relative;
  max-width: 70%;
  font: 400 16px/1.3 "DIN", sans-serif;
  color: #cccccc;
  top: 40px;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 1440px) {
  .b_about-content .wrapper .textblock p {
    font: 400 15px/1.3 "DIN", sans-serif;
  }
}
@media screen and (max-width: 900px) {
  .b_about-content .wrapper .textblock p {
    text-align: center;
    margin: auto;
  }
}
.b_about-content .wrapper .textblock p + p {
  margin-top: 5px;
}
.b_about-content .wrapper .textblock .sign {
  position: relative;
  margin: 50px 0 0 200px;
  font: normal 40px/1.25 "mr_HamiltoneG", sans-serif;
  color: #bea968;
  top: 40px;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.5s;
}
@media screen and (max-width: 1440px) {
  .b_about-content .wrapper .textblock .sign {
    font: normal 34px/1.25 "mr_HamiltoneG", sans-serif;
  }
}
@media screen and (max-width: 900px) {
  .b_about-content .wrapper .textblock .sign {
    margin-left: 0;
    font: normal 24px/1.25 "mr_HamiltoneG", sans-serif;
  }
}
.b_about-content .wrapper .photo {
  position: relative;
  width: 48%;
  flex-shrink: 0;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.b_about-content .wrapper .photo img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .b_about-content .wrapper .photo {
    width: 178px;
    height: 252px;
    top: -45px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .b_about-content .wrapper .photo img {
    width: auto;
    height: 100%;
  }
}
.b_about-decor {
  position: absolute;
  z-index: 9;
  width: 140px;
  height: 100%;
  top: 0;
  bottom: 0;
  left: -40px;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .b_about-decor {
    left: -60px;
  }
}
@media screen and (max-width: 900px) {
  .b_about-decor {
    display: none;
  }
}
.b_about-decor .line1 {
  position: absolute;
  top: 0;
  left: 90px;
  width: 50px;
  height: 50%;
  transform-origin: 100% 0;
  transform: skew(-22deg, 0);
}
.b_about-decor .line1 span {
  position: absolute;
  top: -100%;
  left: 0;
  width: 50px;
  height: 100%;
  background: #bea968;
  transition: all 1.2s cubic-bezier(0.33, 1, 0.68, 1) 1s;
}
.b_about .b_screen-partname.m_left {
  bottom: 150px;
}
.b_about.go .b_screen-partname.m_left {
  bottom: 110px;
}

.b_contact {
  position: relative;
  z-index: 1;
  background: #092737;
  overflow: hidden;
  padding: 90px 0 100px;
}
@media screen and (max-width: 900px) {
  .b_contact {
    padding: 50px 0 0;
  }
}
.b_contact-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b_contact-content .wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .b_contact-content .wrapper {
    flex-flow: column;
  }
}
.b_contact-content .wrapper .textblock {
  display: flex;
  align-items: center;
  width: 500px;
  flex-shrink: 0;
  padding: 0 0 150px 20px;
}
@media screen and (max-width: 1440px) {
  .b_contact-content .wrapper .textblock {
    width: 400px;
  }
}
@media screen and (max-width: 900px) {
  .b_contact-content .wrapper .textblock {
    width: 100%;
    padding: 0 20px 80px 20px;
  }
}
.b_contact-content .wrapper .textblock-title {
  position: relative;
  font: 400 34px/1.35 "DIN", sans-serif;
  color: #cccccc;
  top: 40px;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 1440px) {
  .b_contact-content .wrapper .textblock-title {
    font: 400 24px/1.35 "DIN", sans-serif;
  }
}
@media screen and (max-width: 900px) {
  .b_contact-content .wrapper .textblock-title {
    text-align: center;
    font: 400 20px/1.35 "DIN", sans-serif;
  }
}
.b_contact-content .wrapper .textblock-title:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 156px;
  height: 2px;
  background: #bea968;
}
@media screen and (max-width: 900px) {
  .b_contact-content .wrapper .textblock-title:before {
    top: auto;
    bottom: -25px;
    right: 0;
    margin: auto;
    width: 84px;
  }
}
.b_contact-content .wrapper .textblock-nums {
  position: absolute;
  left: 20px;
  bottom: 60px;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.5s;
}
@media screen and (max-width: 900px) {
  .b_contact-content .wrapper .textblock-nums {
    display: none;
  }
}
.b_contact-content .wrapper .textblock-nums .item {
  font: normal 14px/1 "DIN_alt", sans-serif;
  color: #cccccc;
  margin-bottom: 20px;
}
.b_contact-content .wrapper .textblock-nums .item span {
  display: inline-block;
  width: 60px;
  margin-right: 10px;
}
.b_contact-content .wrapper .textblock-nums .item a {
  display: inline-block;
}
.b_contact-content .wrapper .textblock-nums .item.m_mail {
  color: #bea968;
  margin-bottom: 0;
}
.b_contact .b_order {
  position: relative;
  width: 630px;
  height: 700px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 1440px) {
  .b_contact .b_order {
    height: 630px;
  }
}
@media screen and (max-width: 900px) {
  .b_contact .b_order {
    width: 100%;
    height: auto;
    padding: 50px 0 60px;
  }
}
.b_contact .b_order-logo {
  display: block;
  width: 240px;
  margin-bottom: 20px;
}
.b_contact .b_order-logo img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .b_contact .b_order-logo {
    display: none;
  }
}
.b_contact .b_order-form {
  position: relative;
  display: flex;
  flex-flow: column;
}
.b_contact .b_order-form .item {
  position: relative;
  width: 400px;
  height: 40px;
  margin-bottom: 20px;
}
.b_contact .b_order-form .item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #bea968;
}
.b_contact .b_order-form .item input[type=text] {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  font: 500 16px/40px "DIN", sans-serif;
  color: #59686C;
  text-align: center;
  transition: all 0.5s ease;
}
.b_contact .b_order-form .item input[type=text].m_notfilled {
  background: rgba(213, 25, 25, 0.5);
}
.b_contact .b_order-form .item input[type=text]:focus + label, .b_contact .b_order-form .item input[type=text].filled + label {
  opacity: 0;
  bottom: 100%;
}
.b_contact .b_order-form .item label {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  font: 400 14px/40px "DIN", sans-serif;
  color: #bea968;
  text-align: center;
  opacity: 1;
  transition: all 0.3s ease;
}
.b_contact .b_order-form .submit {
  position: relative;
  margin: 40px auto 0;
  width: 190px;
  height: 45px;
  background: #bea968;
}
.b_contact .b_order-form .submit input[type=submit] {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  font: normal 16px/40px "DIN_alt", sans-serif;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.b_contact .b_order-hint {
  position: relative;
  padding: 40px 20px 20px;
  font: 400 20px/1.25 "DIN", sans-serif;
  color: #d51919;
  text-align: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.b_contact .b_order-hint.show {
  opacity: 1;
}
.b_contact-decor {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0;
  bottom: 0;
  right: calc((100% - 1300px) / 2);
}
@media screen and (max-width: 900px) {
  .b_contact-decor {
    display: none;
  }
}
.b_contact-decor .line1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 190px;
  width: 32px;
  transform-origin: 50% 50%;
  transform: skew(22deg, 0);
}
@media screen and (min-height: 1000px) {
  .b_contact-decor .line1 {
    height: 260px;
  }
}
@media screen and (min-height: 1200px) {
  .b_contact-decor .line1 {
    height: 360px;
  }
}
.b_contact-decor .line1 span {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #bea968;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0.8s;
}
.b_contact-decor .line2 {
  position: absolute;
  bottom: 0;
  right: 15px;
  height: 370px;
  width: 66px;
  transform-origin: 50% 50%;
  transform: skew(-22deg, 0);
}
@media screen and (min-height: 1000px) {
  .b_contact-decor .line2 {
    height: 460px;
  }
}
.b_contact-decor .line2 span {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #bea968;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 1s;
}
.b_contact .b_screen-partname.m_left {
  bottom: 160px;
}
.b_contact.go .b_screen-partname.m_left {
  bottom: 120px;
}
.b_contact.go .b_contact-content .wrapper .textblock-title {
  opacity: 1;
  top: 0;
}
.b_contact.go .b_contact-content .wrapper .textblock-nums {
  bottom: 100px;
  opacity: 1;
}
.b_contact.go .b_contact-content .b_order {
  opacity: 1;
}
.b_contact.go .b_contact-decor .line1 span {
  top: 0;
  opacity: 1;
}
.b_contact.go .b_contact-decor .line2 span {
  bottom: 0;
  opacity: 1;
}

.b_thanks {
  position: fixed;
  z-index: -10000;
  background: rgba(10, 39, 55, 0.9);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.b_thanks.m_error {
  background: rgba(55, 10, 10, 0.9);
}
.b_thanks.show {
  z-index: 10000;
  opacity: 1;
}
.b_thanks-closebtn {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 40px;
  height: 40px;
  margin-left: 260px;
  margin-bottom: 160px;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .b_thanks-closebtn {
    margin-left: -20px;
    margin-bottom: -240px;
  }
}
.b_thanks-closebtn:hover:before {
  transform: rotate(-45deg);
}
.b_thanks-closebtn:hover:after {
  transform: rotate(45deg);
}
.b_thanks-closebtn:before, .b_thanks-closebtn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: #bea968;
  transform-origin: 50% 50%;
  transition: all 0.3s ease;
}
.b_thanks-closebtn:before {
  transform: rotate(45deg);
}
.b_thanks-closebtn:after {
  transform: rotate(-45deg);
}
.b_thanks-title {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 475px;
  height: 290px;
  background: #fff;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .b_thanks-title {
    position: relative;
    width: 80%;
    height: auto;
    padding-top: 70%;
  }
}
.b_thanks-title .content {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 2px solid #bea968;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
@media screen and (max-width: 900px) {
  .b_thanks-title .content {
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}
.b_thanks-title .content:before, .b_thanks-title .content:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 64px;
  height: 25px;
  background: url(../img/quote.svg) no-repeat 50% 50% #fff;
  background-size: auto 100%;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .b_thanks-title .content:before, .b_thanks-title .content:after {
    width: 40px;
    height: 22px;
  }
}
.b_thanks-title .content:before {
  top: -12px;
}
.b_thanks-title .content:after {
  bottom: -12px;
}
.b_thanks-title .content .header {
  padding: 20px 20px 0;
  text-align: center;
  font: 500 32px/1.25 "DIN", sans-serif;
  color: #bea968;
}
@media screen and (max-width: 900px) {
  .b_thanks-title .content .header {
    font: 500 26px/1.25 "DIN", sans-serif;
  }
}
.b_thanks-title .content .subheader {
  padding: 20px;
  text-align: center;
  font: 400 24px/1.25 "DIN", sans-serif;
  color: #bea968;
}
@media screen and (max-width: 900px) {
  .b_thanks-title .content .subheader {
    font: 400 20px/1.25 "DIN", sans-serif;
  }
}

.b_footer {
  position: relative;
  z-index: 1;
  padding: 45px 0 80px;
}
@media screen and (max-width: 900px) {
  .b_footer {
    background: #092737;
    min-height: 100vh;
  }
}
.b_footer-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .b_footer-row {
    align-items: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 900px) {
  .b_footer-row {
    flex-flow: column;
    align-items: center;
  }
}
.b_footer-logo {
  width: 194px;
}
@media screen and (max-width: 1440px) {
  .b_footer-logo {
    width: 160px;
  }
}
@media screen and (max-width: 1280px) {
  .b_footer-logo {
    width: 140px;
  }
}
@media screen and (max-width: 1024px) {
  .b_footer-logo {
    width: 100px;
  }
}
.b_footer-logo img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .b_footer-logo {
    display: none;
  }
}
.b_footer-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
@media screen and (max-width: 1280px) {
  .b_footer-menu {
    padding-top: 0;
  }
}
@media screen and (max-width: 900px) {
  .b_footer-menu {
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 0;
  }
}
.b_footer-menu .item {
  position: relative;
  display: inline-flex;
  margin-right: 36px;
  font: 400 14px/1 "DIN", sans-serif;
  color: #bea968;
  text-transform: uppercase;
  padding: 2px 0 3px;
  cursor: pointer;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 900px) {
  .b_footer-menu .item {
    margin: 0 0 36px 0;
  }
}
.b_footer-menu .item:last-child {
  margin-right: 0;
}
.b_footer-menu .item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  margin: auto;
  height: 1px;
  background: #bea968;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.b_footer-menu .item:hover:after {
  width: 100%;
}
.b_footer-social {
  position: relative;
  width: 194px;
  text-align: right;
}
@media screen and (max-width: 1440px) {
  .b_footer-social {
    width: 160px;
  }
}
@media screen and (max-width: 1280px) {
  .b_footer-social {
    width: 140px;
  }
}
@media screen and (max-width: 1024px) {
  .b_footer-social {
    width: 100px;
  }
}
@media screen and (max-width: 900px) {
  .b_footer-social {
    margin-bottom: 80px;
    width: 70%;
    text-align: center;
  }
  .b_footer-social:before {
    content: "Социальные сети:";
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    text-align: center;
    font: 400 13px/1 "DIN", sans-serif;
    color: #bea968;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
}
.b_footer-social .item {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin-left: 30px;
}
.b_footer-social .item:first-child {
  margin-left: 0;
}
.b_footer-basement {
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .b_footer-basement {
    width: 60%;
    margin: auto;
    text-align: center;
  }
  .b_footer-basement:before {
    content: "Контакты:";
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    text-align: center;
    font: 400 13px/1 "DIN", sans-serif;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
}
.b_footer-basement .item {
  position: relative;
  margin-left: 4px;
  font: 400 13px/1.25 "DIN", sans-serif;
  color: #bea968;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 900px) {
  .b_footer-basement .item {
    margin: 0 0 15px 0;
    width: 100%;
  }
}
.b_footer-basement .item span {
  display: inline-block;
  margin-right: 2px;
}
@media screen and (max-width: 900px) {
  .b_footer-basement .item span {
    display: inline-block;
    width: 60px;
    text-align: left;
  }
}
.b_footer-basement .item:first-child {
  margin-left: 0;
}
@media screen and (max-width: 900px) {
  .b_footer-basement .item:first-child {
    color: #cccccc;
  }
}
.b_footer-basement .item:last-child {
  margin-left: 10px;
}
@media screen and (max-width: 900px) {
  .b_footer-basement .item:last-child {
    margin: 40px 0 0 0;
    text-align: center;
    font-size: 14px;
  }
}

#_id_portfolio_main {
  position: relative;
  z-index: 3;
  justify-content: center;
  min-height: calc(100vh - 90px);
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main {
    padding-top: 0 !important;
    min-height: auto;
  }
}
#_id_portfolio_main .b_allproj {
  position: relative;
}
#_id_portfolio_main .b_allproj-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 100%;
  z-index: 10000;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  width: calc(100% + 20px);
  overflow-y: scroll;
}
#_id_portfolio_main .b_allproj-wrapper:before {
  content: "";
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  width: 1340px;
  margin: auto;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 1440px) {
  #_id_portfolio_main .b_allproj-wrapper:before {
    width: 1140px;
  }
}
#_id_portfolio_main .b_allproj-wrapper.open {
  top: 90px;
  opacity: 1;
}
#_id_portfolio_main .b_allproj-wrapper.open:before {
  top: 0;
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_allproj-wrapper.open {
    top: 80px;
  }
}
@media screen and (max-width: 1440px) {
  #_id_portfolio_main .b_allproj-wrapper {
    width: 1100px;
  }
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_allproj-wrapper {
    width: 100vw;
  }
}
#_id_portfolio_main .b_allproj-content {
  position: relative;
  width: 1300px;
  padding: 60px 20px 160px;
  display: flex;
  margin: auto;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-around;
}
@media screen and (max-height: 900px) {
  #_id_portfolio_main .b_allproj-content {
    padding-top: 0;
  }
}
@media screen and (max-width: 1440px) {
  #_id_portfolio_main .b_allproj-content {
    width: 1100px;
  }
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_allproj-content {
    padding-top: 0;
    width: 100%;
  }
}
#_id_portfolio_main .b_allproj-content .item {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  flex-flow: column;
  width: 27%;
  cursor: pointer;
  padding-bottom: 60px;
  top: 60px;
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 1440px) {
  #_id_portfolio_main .b_allproj-content .item {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_allproj-content .item {
    width: 100%;
    margin: 0 0 30px 0;
    padding: 0 20px 20px;
  }
}
#_id_portfolio_main .b_allproj-content .item:hover .item-image img {
  transform: scale(1.05, 1.05);
}
#_id_portfolio_main .b_allproj-content .item:hover .item-title:before {
  width: 15%;
}
#_id_portfolio_main .b_allproj-content .item-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#_id_portfolio_main .b_allproj-content .item-image img {
  position: absolute;
  top: 0;
  display: block;
  height: 100%;
  transform: scale(1, 1);
  transition: all 1.2s ease;
}
#_id_portfolio_main .b_allproj-content .item-title {
  position: relative;
  padding-top: 15px;
  font: 700 20px/1.35 "DIN", sans-serif;
  color: #59686C;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  #_id_portfolio_main .b_allproj-content .item-title {
    font: 700 18px/1.35 "DIN", sans-serif;
  }
}
@media screen and (max-width: 1366px) {
  #_id_portfolio_main .b_allproj-content .item-title {
    font: 700 16px/1.35 "DIN", sans-serif;
  }
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_allproj-content .item-title {
    padding-top: 10px;
    margin-bottom: 14px;
  }
}
#_id_portfolio_main .b_allproj-content .item-title:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 0;
  background: #59686C;
  transition: all 0.7s ease;
}
#_id_portfolio_main .b_allproj-content .item-location {
  position: relative;
  font: 400 16px/1 "DIN", sans-serif;
  color: #59686C;
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  #_id_portfolio_main .b_allproj-content .item-location {
    font: 400 14px/1 "DIN", sans-serif;
  }
}
@media screen and (max-width: 1366px) {
  #_id_portfolio_main .b_allproj-content .item-location {
    font: 400 13px/1 "DIN", sans-serif;
  }
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_allproj-content .item-location {
    position: relative;
    bottom: 0;
  }
}
#_id_portfolio_main .b_allproj-showall {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0;
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_allproj-showall {
    padding-top: 30px;
  }
}
#_id_portfolio_main .b_allproj-showall .btn {
  position: relative;
  display: inline-block;
  padding: 2px 0 3px;
  cursor: pointer;
  letter-spacing: 0.02em;
}
#_id_portfolio_main .b_allproj-showall .btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  margin: auto;
  height: 1px;
  background: #bea968;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#_id_portfolio_main .b_allproj-showall .btn:hover:after {
  width: 100%;
}
#_id_portfolio_main .b_mainslider {
  position: relative;
  width: 1300px;
  height: 600px;
}
@media screen and (max-width: 1440px) {
  #_id_portfolio_main .b_mainslider {
    width: 1100px;
    height: 500px;
  }
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_mainslider {
    width: 100vw;
    height: auto;
  }
}
#_id_portfolio_main .b_mainslider-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
#_id_portfolio_main .b_mainslider-content {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  height: 100%;
  overflow: hidden;
}
#_id_portfolio_main .b_mainslider-nextbtn, #_id_portfolio_main .b_mainslider-prevbtn {
  position: absolute;
  z-index: 10;
  top: calc(100% + 20px);
  width: 345px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
  transition: all 0.5s ease;
  display: none;
}
#_id_portfolio_main .b_mainslider-nextbtn.disable, #_id_portfolio_main .b_mainslider-prevbtn.disable {
  opacity: 0;
  cursor: default;
}
#_id_portfolio_main .b_mainslider-nextbtn.disable .ui_arrow, #_id_portfolio_main .b_mainslider-prevbtn.disable .ui_arrow {
  cursor: default;
}
@media screen and (max-width: 1440px) {
  #_id_portfolio_main .b_mainslider-nextbtn, #_id_portfolio_main .b_mainslider-prevbtn {
    width: 300px;
  }
}
#_id_portfolio_main .b_mainslider-nextbtn .ui_readmore, #_id_portfolio_main .b_mainslider-prevbtn .ui_readmore {
  font-size: 14px;
}
#_id_portfolio_main .b_mainslider-nextbtn .ui_arrow, #_id_portfolio_main .b_mainslider-prevbtn .ui_arrow {
  width: 120px;
}
@media screen and (max-width: 1440px) {
  #_id_portfolio_main .b_mainslider-nextbtn .ui_arrow, #_id_portfolio_main .b_mainslider-prevbtn .ui_arrow {
    width: 90px;
  }
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_mainslider-nextbtn, #_id_portfolio_main .b_mainslider-prevbtn {
    width: 40%;
    padding: 0 10px;
    flex-shrink: 0;
  }
  #_id_portfolio_main .b_mainslider-nextbtn .ui_readmore, #_id_portfolio_main .b_mainslider-prevbtn .ui_readmore {
    font-size: 10px;
  }
}
#_id_portfolio_main .b_mainslider-nextbtn {
  right: 0;
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_mainslider-nextbtn .ui_readmore {
    text-align: right;
    padding-right: 10px;
  }
}
#_id_portfolio_main .b_mainslider-prevbtn {
  left: 0;
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_mainslider-prevbtn .ui_readmore {
    text-align: left;
    padding-left: 10px;
  }
}
#_id_portfolio_main .b_mainslider-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_mainslider-item {
    flex-flow: column-reverse;
  }
}
#_id_portfolio_main .b_mainslider-item .b_gallery {
  position: relative;
  width: 960px;
  height: 600px;
}
@media screen and (max-width: 1440px) {
  #_id_portfolio_main .b_mainslider-item .b_gallery {
    width: 800px;
    height: 500px;
  }
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_mainslider-item .b_gallery {
    width: 100vw;
    height: 50vh;
  }
}
@media screen and (max-width: 900px) and (orientation: landscape) {
  #_id_portfolio_main .b_mainslider-item .b_gallery {
    height: 100vh;
  }
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_mainslider-item .b_gallery:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 24px;
    margin: auto;
    z-index: 10;
    background: url(../img/swipe.svg) no-repeat 50% 50%;
    opacity: 1;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_mainslider-item .b_gallery.m_swipped:after {
    opacity: 0;
  }
}
#_id_portfolio_main .b_mainslider-item .b_gallery.m_fullscreen {
  width: 100vw;
  height: 100vh;
}
#_id_portfolio_main .b_mainslider-item .b_gallery.m_fullscreen .b_gallery-item {
  width: 100vw;
  height: 100vh;
}
#_id_portfolio_main .b_mainslider-item .b_gallery.m_fullscreen .b_gallery-item img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
}
#_id_portfolio_main .b_mainslider-item .b_gallery.m_fullscreen .b_gallery-fullscreenbtn {
  top: 40px;
  right: 40px;
}
#_id_portfolio_main .b_mainslider-item .b_gallery.m_fullscreen .b_gallery-arrow.left {
  left: 40px;
}
#_id_portfolio_main .b_mainslider-item .b_gallery.m_fullscreen .b_gallery-arrow.right {
  right: 40px;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  height: 100%;
  overflow: hidden;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 960px;
  height: 600px;
  flex-shrink: 0;
}
@media screen and (max-width: 1440px) {
  #_id_portfolio_main .b_mainslider-item .b_gallery-item {
    width: 800px;
    height: 500px;
  }
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_mainslider-item .b_gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #292929;
  }
}
#_id_portfolio_main .b_mainslider-item .b_gallery-item-wrapper {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-item img {
  display: block;
  height: 100%;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-arrow {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
  margin: auto;
  border: 1px solid #bea968;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_mainslider-item .b_gallery-arrow {
    display: none;
  }
}
#_id_portfolio_main .b_mainslider-item .b_gallery-arrow.left {
  left: 0;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-arrow.right {
  right: 0;
  transform: rotate(180deg);
}
#_id_portfolio_main .b_mainslider-item .b_gallery-arrow:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
  background: url(../img/arr_yellow.svg) no-repeat 50% 50%;
  background-size: 100% auto;
  transition: all 0.5s ease;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-arrow:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  background: url(../img/arr_white.svg) no-repeat 50% 50%;
  background-size: 100% auto;
  transition: all 0.5s ease;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-arrow:hover {
  background: #bea968;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-arrow:hover:before {
  opacity: 0;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-arrow:hover:after {
  opacity: 1;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-arrow.disable {
  opacity: 0;
  cursor: default;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-fullscreenbtn {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_mainslider-item .b_gallery-fullscreenbtn {
    display: none;
  }
}
#_id_portfolio_main .b_mainslider-item .b_gallery-fullscreenbtn span {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #bea968;
  cursor: pointer;
  transition: all 0.5s ease;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-fullscreenbtn span:before, #_id_portfolio_main .b_mainslider-item .b_gallery-fullscreenbtn span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  margin: auto;
  opacity: 0;
  transition: all 0.5s ease;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-fullscreenbtn span:before {
  opacity: 1;
  background: url(../img/zoom_y.svg) no-repeat 50% 50%;
  background-size: 32px;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-fullscreenbtn span:after {
  opacity: 0;
  background: url(../img/zoom_w.svg) no-repeat 50% 50%;
  background-size: 32px;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-fullscreenbtn:hover span {
  background: #bea968;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-fullscreenbtn:hover span:before {
  opacity: 0;
}
#_id_portfolio_main .b_mainslider-item .b_gallery-fullscreenbtn:hover span:after {
  opacity: 1;
}
#_id_portfolio_main .b_mainslider-item .b_info {
  position: relative;
  width: 345px;
  padding: 0 20px 60px 20px;
  color: #59686C;
}
@media screen and (max-width: 1440px) {
  #_id_portfolio_main .b_mainslider-item .b_info {
    width: 300px;
  }
}
@media screen and (max-width: 900px) {
  #_id_portfolio_main .b_mainslider-item .b_info {
    width: 100%;
    padding: 20px 40px;
    text-align: center;
  }
  #_id_portfolio_main .b_mainslider-item .b_info .b_info-title {
    padding-top: 0;
    font: 700 17px/1.2 "DIN", sans-serif;
    margin-bottom: 10px;
    min-height: 42px;
  }
  #_id_portfolio_main .b_mainslider-item .b_info .b_info-title:before {
    content: "";
    position: absolute;
    top: 5px;
    left: -11px;
    width: 4px;
    height: 16px;
    background: #bea968;
  }
  #_id_portfolio_main .b_mainslider-item .b_info .b_info-location {
    font: 400 13px/1.3 "DIN", sans-serif;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  #_id_portfolio_main .b_mainslider-item .b_info .b_info-area {
    font: 700 17px/1 "DIN", sans-serif;
  }
  #_id_portfolio_main .b_mainslider-item .b_info .b_info-area sup {
    font-size: 13px;
  }
  #_id_portfolio_main .b_mainslider-item .b_info .b_info-description {
    padding: 10px 0;
    font: 400 13px/1.3 "DIN", sans-serif;
  }
  #_id_portfolio_main .b_mainslider-item .b_info .b_info-description:empty {
    padding: 0;
  }
}
#_id_portfolio_main .b_mainslider-item .b_info-title {
  position: relative;
  padding-top: 25px;
  font: 700 26px/1.2 "DIN", sans-serif;
  text-transform: uppercase;
  margin-bottom: 60px;
}
#_id_portfolio_main .b_mainslider-item .b_info-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 2px;
  background: #bea968;
}
#_id_portfolio_main .b_mainslider-item .b_info-location {
  position: relative;
  font: 400 16px/1.3 "DIN", sans-serif;
  text-transform: uppercase;
  margin-bottom: 5px;
}
#_id_portfolio_main .b_mainslider-item .b_info-area {
  display: block;
  font: 700 28px/1.3 "DIN", sans-serif;
}
#_id_portfolio_main .b_mainslider-item .b_info-area sup {
  font-size: 16px;
}
#_id_portfolio_main .b_mainslider-item .b_info-description {
  padding: 20px 0;
  font: 400 16px/1.3 "DIN", sans-serif;
}

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