/* ------------ *Default ------------- */
@charset "UTF-8";
/* Flex Class */
.fx-column {display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;}
.flex-center {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;}
.fx-between {-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;}
.align-start {-webkit-box-align: start;-ms-flex-align: start;align-items: flex-start;}
.align-center {-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
.fx-center {-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;}
.fx {display: -webkit-box;display: -ms-flexbox;display: flex;}
.fx-wrap {-ms-flex-wrap: wrap;flex-wrap: wrap;}
/* Flex Class End */

/* Reserved Class */
.text-center {text-align: center;}
/* Reserved Class End*/

/* Style Default*/
a, a:hover,button, button:hover, .speed {-webkit-transition: all .3s;-o-transition: all .3s;transition: all .3s;}
* {-webkit-box-sizing: border-box;box-sizing: border-box;}
button {border: 0;padding: 0;cursor: pointer;}
* {outline: none;}
/* Style Default End */

body {
  color: #000;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Montserrat';
}

.wrapper {
  overflow: hidden;
}

.btn {
  padding: 14px;
  display: inline-block;
}

.btn__black {
  color: #fff;
  background: #302e2c;
}

.btn__black:hover {
  background: #5f5953;
}

/* ------------ *Header ------------- */

.header {
  z-index: 9;
  padding: 20px 0;
  position: absolute;
  top: 0;left: 0;right: 0;
}

.header .container {
  min-height: 75px;
}

.logo {
  margin: 0 auto;
  position: absolute;
  width: 204px;height: 75px;
  top: 20px;left: 0;right: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.nav,
.nav__list {
  width: 100%;
}

.nav__item:nth-child(1),
.nav__item:nth-child(2) {
  margin-right: 55px;
}

.nav__item:nth-child(4) {
  padding-left: 290px;
}

.nav__link {
  color: #fff;
  display: block;
  padding: 6px 15px;
  border: 1px solid transparent;
}

.nav__link:hover {
  border-color: #fff;
}

.tel__link {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.tel__link:hover {
  text-decoration: underline;
}

/* Toggle */

.navbar-toggle {
  z-index: 60;
  display: none;
  background: none;
}

.navbar-toggle span {
  display: block;
  position: relative;
  background: #ebecec;
  width: 27px;height: 3px;
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 5px;
}

.navbar-toggle.active span {
  background: #2f2d2b;
}

.navbar-toggle.active span:first-child {
  top: 8px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:last-child {
  top: -8px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* Toggle End */

/* ------------- *Intro ------------- */

.intro {
  color: #fff;
  position: relative;
  padding: 270px 0 200px;
  background: url(../img/bg/intro.jpg) center 0/cover no-repeat;
}

.intro h1 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro__subtitle {
  font-size: 27px;
  font-weight: 600;
  margin-top: 10px;
}

.intro__txt p {
  font-size: 24px;
  margin-top: 25px;
}

.intro__order {
  margin-top: 45px;
}

.intro__order span {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro__tel {
  font-size: 24px;
  margin-top: 25px;
  font-weight: 500;
}

.intro__tel a {
  color: #fff;
  font-weight: 800;
}

.intro__tel a:hover {
  text-decoration: underline;
}

.intro__subtext {
  font-size: 18px;
  margin-top: 12px;
}

.intro__btn {
  color: #000;
  margin-top: 30px;
  padding: 13px 76px;
  background: #dcceb2;
}

.intro__btn:hover {
  background: #ccbd9f;
}

.intro__down {
  z-index: 1;
  margin: 0 auto;
  position: absolute;
  width: 42px;height: 64px;
  left: 0;right: 0;bottom: 45px;
}

i.i-down {
  top: 0;left: 0;
  position: absolute;
  width: inherit;height: inherit;
  background: url(../img/icons/i-down.png) center no-repeat;
  -webkit-animation: mouse 1s linear infinite;
          animation: mouse 1s linear infinite;
}

@-webkit-keyframes mouse {
  0% {
    top: 0;opacity: 0;
  }
  30% {
    top: 15%;opacity: 1;
  }
  100% {
    top: 30%;opacity: 0;
  }
}

@keyframes mouse {
  0% {
    top: 0;opacity: 0;
  }
  30% {
    top: 15%;opacity: 1;
  }
  100% {
    top: 30%;opacity: 0;
  }
}

/* ----------- *Services ------------- */

.services {
  padding: 60px 0 80px;
}

.ecru {
  color: #cfbb90;
}

.title__h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: bold;
  text-transform: uppercase;
}

.services .row {
  margin-top: 40px;
}

.services__item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.services__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.services__img img {
  display: inherit;
}

.services__txt {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.services__txt h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
}

.services__txt p {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  line-height: 1.5;
  margin-top: 20px;
}

/* ------------- *Seek ------------- */

.seek {
  color: #fff;
  background: #cfbb90;
}

.seek .container {
  position: relative;
  padding-top: 65px;
  padding-bottom: 70px;
}

.seek .container:after {
  right: -35px;bottom: 0;
  width: 539px;height: 408px;
  background: url(../img/other/bouquet.png) center no-repeat;
}

.seek .title__h2 {
  line-height: 1.4;
}

.seek .box {
  max-width: 720px;width: 100%;
}

.seek p {
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.35;
  max-width: 94%;width: 100%;
}

.seek__btn {
  margin-top: 30px;
  padding: 14px 44px;
}

/* ------------ *Affair ------------- */

.affair {
  padding: 70px 0;
  position: relative;
}

/* Sl */

.affair .box {
  width: 48%;
  position: absolute;
  top: 0;left: 0;bottom: 0;
}

.affair__sl,
.affair__sl__item,
.affair__sl__link,
.affair__sl__img,
.affair__sl .slick-list,
.affair__sl .slick-track {
  width: 100%;height: 100%;
}

.affair__sl__link {
  display: block;
}

.slick-arrow {
  z-index: 1;
  opacity: .5;
  width: 32px;height: 32px;
  background: url(../img/icons/sl-controls-dark.png) 0 0 no-repeat !important;
}

.slick-arrow:hover {
  opacity: 1;
}

.slick-arrow:before {
  content: none;
}

.slick-prev {
  left: 35px;
}

.slick-next {
  right: 35px;
  background-position: 0 100% !important;
}

/* Sl END */

.affair__list {
  margin-top: 35px;
  padding-left: 17px;
}

.affair__list li:not(:last-child) {
  margin-bottom: 10px;
}

.affair__list li {
  color: #204987;
  line-height: 1.5;
  list-style: disc;
}

.affair__list li span {
  color: #000;
}

.affair__list li strong {
  font-weight: 600;
}

.affair__btn {
  margin-top: 50px;
  padding: 14px 75px;
}

/* ---------- *Attendance ------------- */

.attendance {
  color: #fff;
  background: #9b9896;
  padding: 80px 0 60px;
}

.attendance .row {
  margin-top: 70px;
}

.attendance__item {
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

i.attendance__icon {
  width: 64px;height: 64px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

i.i-photo {
  background: url(../img/icons/i-photo.png) 0 center no-repeat;
}

i.i-car {
  background: url(../img/icons/i-car.png) 0 center no-repeat;
}

i.i-audio {
  background: url(../img/icons/i-audio.png) 0 center no-repeat;
}

i.i-program {
  background: url(../img/icons/i-program.png) 0 center no-repeat;
}

i.i-personal {
  background: url(../img/icons/i-personal.png) 0 center no-repeat;
}

i.i-animation {
  background: url(../img/icons/i-animation.png) 0 center no-repeat;
}

.attendance__txt {
  font-size: 18px;
  line-height: 1.5;
  margin-left: 30px;
}

/* ------------- *Help ------------- */

.help .container {
  position: relative;
  padding-top: 110px;
  padding-bottom: 115px;
}

.help .container:after {
  z-index: -1;
  right: -15px;bottom: 0;
  width: 500px;height: 423px;
  background: url(../img/other/girls-1.png) center no-repeat;
}

.help .box {
  max-width: 730px;width: 100%;
}

.help .title {
  color: #9b9896;
}

.help__txt {
  font-size: 18px;
  margin-top: 25px;
  line-height: 1.4;
}

.help__btn {
  margin-top: 35px;
  padding: 14px 45px;
}

/* ------------- *keys ------------- */

.keys {
  color: #fff;
  background: #cfbb90;
  padding: 65px 0 50px;
}

.title p {
  font-size: 18px;
  margin-top: 15px;
  font-weight: 300;
}

.tabs {
  margin-top: 45px;
}

.tabs__name {
  width: 25%;
  padding: 12px;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  border: 1px solid #fff;
  text-transform: uppercase;
}

.tabs__name:not(:last-child) {
  margin-right: 30px;
}

.name__mob span {
  display: none;
}

.tabs__name:hover,
.tabs__name.active {
  color: #bc9a51;
  background: #fff;
}

.tabs__content {
  margin-top: 35px;
}

.keys__item {
  display: block;
}

.keys__item:not(:last-child) {
  margin-bottom: 25px;
}

.keys__item img {
  display: inherit;
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.more {
  margin-top: 50px;
}

.more .btn {
  color: #fff;
  font-size: 18px;
  padding: 13px 61px;
  border: 1px solid #fff;
  text-transform: uppercase;
}

.more .btn:hover {
  color: #cfbb90;
  background: #fff;
}

/* ------------- *Order ------------- */

.order .container {
  position: relative;
  padding-top: 130px;
  padding-bottom: 130px;
}

.order .container:after {
  right: 100px;bottom: 0;
  width: 391px;height: 468px;
  background: url(../img/other/girls-2.png) center/contain no-repeat;
}

.order .box {
  max-width: 610px;width: 100%;
}

.order .title {
  color: #9b9896;
}

.order__text {
  margin-top: 30px;
}

.order__text__tel {
  font-size: 24px;
  font-weight: 500;
}

.order__text__tel a {
  color: #000;
  font-weight: bold;
}

.order__text__tel a:hover {
  text-decoration: underline;
}

.order__text__box {
  line-height: 2;
  font-size: 18px;
  margin-top: 10px;
}

.order__form {
  margin-top: 20px;
}

.form__field,
.order__form .btn {
  width: 287px;
}

.form__field input,
.order__form .btn {
  height: 45px;
}

.form__field input {
  width: 100%;
  color: #000;
  font-size: 16px;
  padding: 0 15px;
  text-align: center;
  font-weight: normal;
  font-family: 'Montserrat';
}

.form__field input::-webkit-input-placeholder {color: #c8c8c8;}
.form__field input::-moz-placeholder          {color: #c8c8c8;}/* Firefox 19+ */
.form__field input:-moz-placeholder           {color: #c8c8c8;}/* Firefox 18- */
.form__field input:-ms-input-placeholder      {color: #c8c8c8;}

.order__form .btn {
  margin-left: 20px;
}

/* ------------ *Vantage ------------- */

.vantage {
  color: #fff;
  background: #9b9896;
  padding: 80px 0 70px;
}

.vantage .title {
  color: #fff;
}

.vantage .row {
  margin-top: 70px;
}

.vantage__item {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

i.vantage__icon {
  margin-right: 25px;
  width: 64px;height: 64px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

i.i-production {
  background: url(../img/icons/i-production.png) 0 0 no-repeat;
}

i.i-security {
  background: url(../img/icons/i-security.png) 0 0 no-repeat;
}

i.i-realization {
  background: url(../img/icons/i-realization.png) 0 0 no-repeat;
}

i.i-pay {
  background: url(../img/icons/i-pay.png) 0 0 no-repeat;
}

.vantage__txt h4 {
  font-weight: bold;
}

.vantage__txt p {
  margin-top: 5px;
  line-height: 1.5;
}

.vantage__txt i {
  display: block;
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.4;
  font-weight: bold;
  font-style: italic;
}

/* ------------ *Slider ------------- */

.slider__img {
  display: block;
  background: #000;
}

.slider__img img {
  opacity: .6;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.slider__item.slick-center .slider__img img {
  opacity: 1;
}

/* Controls */

.slider__sl .slick-arrow {
  background: url(../img/icons/sl-controls-white.png) 0 0 no-repeat !important;
}

.slider__sl .slick-prev {

}

.slider__sl .slick-next {
  background-position: 0 100% !important;
}

/* Controls END */

/* ----------- *Contacts ------------ */

.contacts {
  padding: 55px 0 35px;
}

.contacts__studio {
  margin-top: 25px;
}

.contacts__name {
  font-weight: bold;
}

.contacts .row {
  margin-top: 10px;
}

.contacts__txt {
  margin-top: 10px;
}

.contacts__txt a {
  color: #000;
}

.contacts__txt a:hover {
  text-decoration: underline;
}

.social {
  margin-top: 7px;
}

.social__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;height: 32px;
}

.social__item:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.social__item:not(:last-child) {
  margin-right: 8px;
}

a.i-in {
  background: url(../img/icons/i-in.png) center no-repeat;
}

a.i-vk {
  background: url(../img/icons/i-vk.png) center no-repeat;
}

/* ------------ *Footer ------------- */

.footer .box {
  color: #cfbb90;
  font-size: 14px;
  padding: 25px 0 30px;
  border-top: 1px solid rgba(155, 152, 150, 0.2);
}

.dev a {
  color: #cfbb90;
}

.dev a:hover {
  text-decoration: underline;
}

/* ------------ *Default ------------- */
/* ------------ *Default ------------- */
/* --------- *Before::After ---------- */
.seek .container:after,
.help .container:after,
.order .container:after {
  content: " ";
  position: absolute;
}