@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Tenor+Sans&display=swap');

/* ОБНУЛЕНИЕ */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* ul li {
  list-style: none;
} */

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* ********************************* */





.wrapper {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;

}


/* ХЭДЕР__________________________________ */


.header__logo{
  flex: 0 0 150px;
  position: relative;
  z-index: 3;
}
.header__logo img{
  margin-left: 25px;
  max-width: 100%;
  display: block;
}
.header__body {
 display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  width: 100%;
  max-width: 1920px;
  position: absolute;
  /* z-index: 49;  */
  /* position: fixed; */
  z-index:2;
  background: rgba(255, 255, 255, 0.39);
  
  
}
.header__list{
  display: flex;
}
.header__list li{
  list-style: none;
  margin: 0px 25px 0px 0px;
}

.header__link {
  color: #000;
  font-family: 'Tenor Sans', sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}
.header__link:hover {
  color: #93877B;
}
.header__burger{
  display: none;
}
/* ***************************** MAX-WIDTH-767 PX*/
@media (max-width: 767px){
  .header__body{
    height: 60px;
  }
  .header__logo{
    flex: 0 0 120px;
  }
  .header__burger{
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 5;
    margin-right: 25px;
  }
  .header__burger span{
    position: absolute;
    background-color: #000;
    left: 0;
    width: 100%;
    height: 2px;
    top: 9px;
    transition: all 0.3s ease 0s;
  }
  .header__burger:before,
  .header__burger:after{
    content: '';
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
  }
  .header__burger:before{
    top: 0;
  }
  .header__burger:after{
    bottom: 0;
  }
  .header__burger.burger_active span{
    transform: scale(0);
  }
  .header__burger.burger_active:before{
    transform:rotate(45deg);
    top: 9px;
  }
  .header__burger.burger_active:after{
    transform:rotate(-45deg);
    bottom: 9px;

  }
  .header__menu {
    position: fixed;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: all 0.3s ease 0s;
   padding: 200px 10px 20px 10px;
   background-color: rgba(147, 135, 123, 0.9);
  }
  .header__menu.burger_active{
    top: 0;
  }
  .header__list{
    display: block;
    
  }
  .header__list li{
    margin: 0px 0px 30px 0px;
  }
  body.lock{
    overflow: hidden;
  }
  .header__link {
    color: #000;
    font-family: 'Tenor Sans', sans-serif;
    font-weight: bold;
    font-size: 20px;
    
  }
}
/* *********************************************** */


/* СЛАЙДЕР */


.slideshow-container {

  position: relative;
  height: auto;
  margin-bottom: -10px;
}



.mySlides {
  display: none;
}






.dot {

  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  transform: translate(0%, -300%);
}

.point {
  display: inline block;
  display: flex;
  justify-content: center;
  /* position: absolute; */


}

.active,
.dot:hover {
  background-color: #717171;
}

/* О студии */
.section-about {
  background: url(../IMG/bg/bgsectionabout.jpg) right 0 no-repeat #fff;
  background-size: cover;
  padding-top: 39px;



}

.title-abouth1 {
  background: #fff;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
  padding: 19px 0 11px 0;




}

.title-abouth1 .h1 {
  margin-left: auto;
  margin-right: auto;
  font-family: 'Tenor Sans';
  font-size: 39px;
  font-weight: 600;

  max-width: 1140px;
  text-align: center;
  justify-content: center;

  text-transform: uppercase;

  color: #93877B;
}

.container-about_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* position: relative; */
  padding-bottom: 70px
}

.about-left {
  width: 100%;
  max-width: 550px;
}

.about-right {
  width: 100%;
  max-width: 550px;
  margin-left: 0;
  margin-top: 2em
}

.sign-about {
  padding: 120px 0px 0px 30px;
  font-family: 'Tenor Sans';
  font-weight: 600;
  font-size: 16px;
  color: #93877B;
  /* background: url(../IMG/PNG/Line1.png) 30px 205px no-repeat; */

}

.photo-about {
  padding-top: 30px;
  padding-left: 30px;
}
.photo-about img{
  width: 100%;
  max-width: 405px;
}

.title-article1 {
  padding-top: 25px;
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 900;
  font-size: 46px;
  color: #C3BAA9;
}

.title-article2 {
  font-family: 'Tenor Sans';
  font-weight: 600;
  font-size: 44px;
  color: #000000;
  padding-top: 35px;
}

article {
  padding-top: 30px;
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 200%;
  color: #666666;
}

article p {
  margin-top: 1em;
  text-align: justify;
}

/* Портфолио */
.title {

  background: url(../IMG/bg/bgtitle.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 1920px;
  height: 180px;
  margin: 0, auto;



}

.sign-portfolio {
 

  font-family: 'Tenor Sans';
  font-weight: 600;
  font-size: 16px;
  color: #93877B;
  padding-left: 390px;
  padding-top: 50px;
  text-transform: uppercase;
  /* background: url(../IMG/PNG/Line1.png) 435px 55px no-repeat; */
}

.text {
  font-family: 'Tenor Sans';
  font-weight: 500;
  font-size: 40px;
  /* line-height: 122.5%;
  letter-spacing: -0.015em; */
  text-align: center;
  color: #666666;
}

.content-portfolio {
  max-width: 1920px;
  background: url(../IMG/bg/bgsectionportfolio.jpg) no-repeat;
  background-size: cover;
 padding-bottom: 100px;
 padding-top: 100px;
}

.cont {
  max-width: 1575px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.flex-container {
  display: flex;
  width: 100%;
  flex-wrap:wrap;
  /* justify-content:space-between; */
  padding: 94px 0px 0px 90px;
}




/* 
.portfolio_img1,
.portfolio_img2,
.portfolio_img3{
  flex: 0, 1, auto;
  position: relative;
} */
.portfolio_img1 img,
.portfolio_img2 img,
.portfolio_img3 img,
.portfolio_img4 img,
.portfolio_img5 img{
  max-width: 450px;
  max-height: 529px;
  margin: 5px;
  /* width: 100%; */

  display: block;
}


/* .porfolio-left img {

  margin-right: 85px;
  
}
.porfolio-left a:hover{
  opacity: 5;
}

.portfolio-right img {
  margin-bottom: 23px;
} */


/* КНОПКА - ОСТАВИТЬ ЗАЯВКУ */
.btn {
  flex: 0, 1, 340px;
  height: 69px;
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 122.5%;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #000000;
  background: #D9D9D9;
  border: 1px solid #000000;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.09);
  
  cursor: pointer;
  margin: 25px 0px 0px 60%;
  padding: 0 10px;

}

.btn:hover {
  background: #B0A393;
  color: #D9D9D9;
  transition: .3s linear;
} 

/* Преимущества */
.title-advhead {
  background: url(../IMG/bg/bgadvtitile.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 1920px;

  height: 100%;
  margin: 0, auto;
}

.sign-adv {

  font-family: 'Tenor Sans';
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  padding-left: 360px;
  padding-top: 60px;
  text-transform: uppercase;
  
}

.title-adv {
  padding-bottom: 60px;
  
}

.title-adv p {
  font-family: 'Tenor Sans';
  font-weight: 500;
  font-size: 40px;
  /* line-height: 122.5%;
  letter-spacing: -0.015em; */
  text-align: center;
  color: #EEEEEE;

}

.title-adv p:last-child {

  color: #666666;
}

.content-adv {
  max-width: 1920px;
  background: url(../IMG/bg/bgadv.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 246px;
}

.cont-adv {
  max-width: 702px;
  /* height: 650px; */
  margin: 0 auto;

}

.container-adv-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 0 1 auto;


  padding-top: 184px;


}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 326px;
  max-height: 300px;

  background: #F8F8F7;
  box-shadow: 0px 0px 44px rgba(150, 143, 133, 0.6);
  border-radius: 10px;
  width: 100%;
  height: 300px;
  padding-top: 50px;


}


.p1 {
  font-family: 'Tenor Sans';
  font-weight: 600;
  font-size: 22px;
  line-height: 122.5%;
  padding-top: 20px;


  display: flex;
  align-items: center;
  letter-spacing: -0.015em;

  color: #666666;

}

.p2 {
  padding-top: 20px;
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 122.5%;


  display: flex;

  text-align: center;
  letter-spacing: -0.015em;

  color: #666666;
}

.p2.p {
  max-width: 238px;
}

.dd {
  margin-top: 50px;
}


/* ПОДВАЛ */
footer {
  background: url(../IMG/bg/bgfooter.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 30px;

}

.fot {
  max-width: 1170px;

  margin: 0 auto;
}

.footer-cont {
  max-width: 1170px;
  display: flex;

  flex-wrap: wrap;
  justify-content: space-evenly;

}

.box1 {
  display: block;
  direction: column;
  max-width: 248px;
  flex-wrap: wrap;
  padding: 42px 0px 0px 46px;
}

.box2 {
  display: block;
  max-width: 340px;
  flex-wrap: wrap;
  padding-top: 101px;
}

.box3 {
  display: block;
  max-width: 168px;
  padding-top: 120px;
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;

  flex-wrap: wrap;


  color: #FFFFFF;
}

.box3 p {

  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.rek-info {
  visibility: hidden;
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  padding-top: 33.5px;

  color: #CDC9BE;
}

.social {
  padding-top: 33px;

}

.social a:not(:last-child) {
  padding-right: 15px;
}

.copy {
  padding-top: 20px;
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;

}

.btncall {

  color: #000000;
  background: #F5F5F5;
  border: 1px solid #000000;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.09);
  /* min-width: 340px; */

  padding: 18px;
  font-family: 'Tenor Sans';
  text-transform: uppercase;
  font-size: 24px;
  line-height: 122.5%;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.015em;

}

.btncall:hover {
  background: #B0A393;
  color: #D9D9D9;
  transition: .3s linear;
}

.connect {
  padding-top: 38.5px;
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000000;


}

.connect p {
  font-family: 'Tenor Sans';

  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;

  color: #FFFFFF;

}
.connect p:hover{
  color: #666666;
}

.connect p:not(:last-child) {
  padding-top: 15.8px;
}

.menu-footer {
  padding-top: 10px;
  line-height: 1.5;
}

.menu-footer a:hover {
  color: #666666;

}

/* КОНТАКТЫ */
.contacts-wrap {
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
  overflow: hidden;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  margin: 0 auto;

}

.dip {
  max-width: 1170px;

  display: flex;
  height: 100%;
  flex-direction: column;
  margin: 0 auto;
 
}

.section-contacts {

  height: 1080px;
  min-height: 100%;

  position: relative;
  background: url(../IMG/bg/bgcontacts.jpg) no-repeat;
  background-size: cover;
}

.content-form {
  max-width: 1170px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 75px 0px 120px 69px;
  
  
  
}

.sign-form {
  padding-left: 55px;
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 60.5%;
  letter-spacing: -0.005em;
  color: #666666;
  text-transform: uppercase;
 

}


.title-form {
  padding-top: 72px;
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 60.5%;
  letter-spacing: -0.005em;
  color: #000000;
}

.title-form span {
  color: #ADA090;
}


.text-form {
  padding-top: 29px;
  font-family: 'Tenor Sans';
  font-weight: 400;
  font-size: 17px;
  line-height: 155.5%;
  letter-spacing: 0.115em;
  color: #000000;

}

/* ФОРМА */

.contacts__form {
  
  display: flex;
  flex-direction: column;
  
  max-width: 800px;
  width: 100%;
  border: 2px solid rgba(102, 102, 102, 1);
  padding: 30px;
  margin: 100px;
}

.form-row {
  display: flex;
  margin: 0 -10px;
}

.form__row1 {
  display: flex;
  direction: row;
  flex-wrap: wrap;
}


.form__group {
  flex: 1;
  padding: 0 20px;
  position: relative;
  margin-bottom: 30px;
  width: 100%;
}

.contacts__form {
 margin: 0 auto;

}

.input {
  padding: 10px 0px 5px 0px;
  /* outline: 0;
  border: 0; */
  color: #000;
  border-bottom: 1px solid #000;
  font-family: 'Tenor Sans';
  font-size: 15px;
  width: 100%;

}

.input:focus+.label {
  transform: translateY(-15px);
  font-size: 12px;
}

.input:not(:placeholder-shown)+.label {
  transform: translateY(-15px);
  font-size: 12px;
}

.label {
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 60.5%;
  letter-spacing: -0.005em;
  color: #666666;
  position: absolute;
  left: 20px;
  top: 15px;
  pointer-events: none;
  transition: all.2s ease;
}

.textarea {
  resize: vertical;
  min-height: 130px;
  max-height: 200px;
  padding: 10px 0px 5px 0px;
  /* outline: 0;
  border: 0; */
  color: #000;
  border-bottom: 1px solid #000;
  font-family: 'Tenor Sans';
  font-size: 15px;
  min-height: 100px;
  width: 100%;
}

.textarea:focus+.label {
  transform: translateY(-15px);
  font-size: 12px;
}

.textarea:not(:placeholder-shown)+.label {
  transform: translateY(-15px);
  font-size: 12px;
}

.send {

 margin-left: 20px;
  min-width: 200px;
  height: 50px;
  font-family: 'Tenor Sans';
  font-weight: 600;
  font-size: 19px;
  line-height: 20px;
  padding: 0 15px;
  color: #000;
  background-color: rgba(215, 208, 201, 0.74);
   text-transform: uppercase;
}

.send:hover {

  color: rgb(255, 255, 255);
  background-color: #93877b7c;
  transition: background-color .2s ease;
}
.error {
  float: right;
  font-size: 1em;
  font-family: 'Tenor Sans';
  color: red;
  margin-bottom: 15px;
}

.check {
  font-family: 'Tenor Sans';
  font-size: 18px;
  margin: 0 auto;
  padding: 25px 0px 170px 0px;
}

.piccheck {
  max-width: 206px;
  margin: 0 auto;
}
.mar  {
margin-bottom:260px;
margin-top: 60px;
}

/* _________________________________________ */
.head_port{
    
  max-width: 1920px;
 height: 90px;
  position: relative;
   background-color: #fff;
  margin: 0 auto; 
}
.card{
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
  overflow: hidden;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.container_port{
  max-width: 1200px;
  width: 100%;
  display: flex;
  height: 100%;
  flex-direction: column;
  margin: 0 auto;
}

.sign_card{
padding: 50px 0px 0px 50px;  
font-family: 'Tenor Sans';
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 60.5%;
letter-spacing: -0.005em;
color: #666666;
text-transform: uppercase;

}
.title_page{
  display: block;
  height: 120px;
  padding-top: 72px;
font-family: 'Tenor Sans';
font-style: normal;
font-weight: 600;
font-size: 40px;
line-height: 60.5%;
letter-spacing: -0.005em;
color: #000000;
}
.title_page span {
  color: #ADA090;
}
.card__lists{
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
h1{
font-weight: 900;
font-size: 70px;
font-family: 'Tenor Sans';
color: red;
text-align: center;
}

.card__item{
  max-width: 390px;
  max-height: 270px;
  height: 100%;
  width: 100%;
}
.card__item img{
  max-width: 390px;
  max-height: 260.13px;
  height: 100%;
  width: 100%;
  margin: 3px;
}
.card__item0{
  max-width: 300px;
  max-height: 270px;
  height: 100%;
  width: 100%;
}
.card__item0 img{
  max-width: 300px;
  max-height: 260.13px;
  height: 100%;
  width: 100%;
  margin: 3px;
}
.card__item111{
  max-width: 1000px;
  max-height: 500px;
  height: 100%;
  width: 100%;
}
.card__item111 img{
  max-width: 1000px;
  max-height: 500px;
  height: 100%;
  width: 100%;
  margin: 3px;
}
.card__item_i{
  max-width: 190px;
  max-height: 500px;
  height: 100%;
  width: 100%;
}
.card__item1{
    max-width: 190px;
  /* max-height: 270px; */
  height: 100%;
  width: 100%;
}
.card__item1 img{
  max-width: 190px;
  max-height: 222px;
  height: 100%;
  width: 100%;
  margin: 3px;
}
.card__item11{
  max-width: 390px;
/* max-height: 270px; */
height: 100%;
width: 100%;
}
.card__item11 img{
  max-width: 390px;
  max-height: 222px;
  height: 100%;
  width: 100%;
  margin: 3px;
}
.card__item22{
  max-width: 280px;
/* max-height: 270px; */
height: 100%;
width: 100%;
}
.card__item22 img{
  max-width: 280px;
  max-height: 222px;
  height: 100%;
  width: 100%;
  margin: 3px;
}

.card__item_i img{
  max-width: 190px;
  max-height: 260.13px;
  height: 100%;
  width: 100%;
  margin: 3px;
}
.card__item_ii{
  max-width: 215px;
  max-height: 270px;
  height: 100%;
  width: 100%;
}
.card__item_ii img{
  max-width: 215px;
  max-height: 260.13px;
  height: 100%;
  width: 100%;
  margin: 3px;
}
.unstyled_card__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 50px;
  
 }
 .first img{
  max-height: 260.13px;
  height: 100%;
 }

