@import url(https://fonts.googleapis.com/css?family=Jost:regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=DM+Serif+Display:regular,italic);

* {
    padding: 0;
    margin: 0;
    border: 0;
  }
  
  *, *:before, *:after {
    -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%;
  
  }
  body._lock{
    overflow: hidden;
  }
  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;
    
  }
  
  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;
  }







  /*--------------------*/
  

  body{
  
    background-color: white;
    font-family: "Jost";
    font-family: "DM Serif Display";
  font-weight: 500;
  color: #fff;
   overflow-x: hidden;
   margin: 0px;
      padding: 0px;
      min-width: 320px;
      position: relative;
  
  }
  
  .wrapper{
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: clip;
   
  }
  
  [class*="__container"]{
    max-width: 1200px;
     margin: 0 auto;
    padding: 0px 15px;
  }
  .main{
    flex: 1 1  auto;
  
  }


 
  /*Header*/

.header {
  background: #fff;
  font-family: "Jost";
  position: fixed;
  width: 100%;
 top: 0;
 left: 0;
  z-index: 10;
}
.header__container {
  display: flex;
  column-gap: 35px;
  align-items: center;
  min-height: 70px;
  padding-top: 5px;
  padding-bottom: 5px;

}
.header__logo {
 

}
.header__menu {
  display: flex;
  flex: 1 1 auto;
  top: -100;
  left: 0%;
  justify-content: flex-end;
}
.menu {
}
.menu__list {
 

}
.menu__item {
}
  .menu-sub__list {
    position: absolute;
  top: 100%;
  right: 0;
  padding: 15px;
  min-width: 200px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease 0.3s;
  }

  .menu__list{
    display: flex;
    padding-top:12px;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 3px;
    column-gap: 35px;
  }
  .menu__list > li{
    padding: 10px 0;
  }

.menu-sub__list{

}
.menu__link {
  font-size: 19px;
  color: #000;
  transition: all 0.2s ease 0.2s;
}
.menu__link_gold {
  color: #CDA274;
}
.menu__link:hover{
  font-size: 16px;
  text-decoration: underline;
}

.menu__icon{
  display: none;
}

.menu-sub__list li{
  margin: 0px 0px 10px 0px;
}
.menu-sub__list li:last-child{
  margin: 0;
}
.menu__sub-link {
  color: #000;
}
.menu__sub-link:hover {
  text-decoration: underline;
 
}

/*========================================*/
body._pc .menu__list > li:hover .menu__sub-list {
  opacity: 1;
  visibility:  visible;
  transform:  translate(0px, 0px);
  pointer-events: all;

}


/*==========================================*/
 @media(min-width: 767px){

}

@media(max-width: 767px){
  .menu__list{
    display: flex;
   flex-direction: column; 
  }
  .menu__link{
    font-size: 30px;
  }
  .menu__icon{
    z-index: 5;
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
  }
  .menu__icon span,
  .menu__icon::before,
  .menu__icon::after{
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0.3s;
    background: #000;
  }
  .menu__icon::before,
  .menu__icon::after{
    content: "";
  }
  .menu__icon::before{
    top: 0;
  }
  .menu__icon::after{
    bottom: 0;
  }
  .menu__icon span{
    top: 50%;
    transform: scale(1)  translate(0px, -50%);
  }
  .menu__icon._active span{
    transform: scale(0)  translate(0px, -50%);
  }
  .menu__icon._active::before{
   top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon._active::after{
    bottom: 50%;
     transform: rotate(45deg) translate(0px, 50%);
   }
  .menu__body{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(0px, -100%);
    background: #fff;
    padding: 100px 30px 30px 30px;
    transition: all 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body._active{
    transform: translate(0px, 0px);
  }
  .menu__list > li{
    margin: 0px 0p 30px 0px;
  }
  .menu__list > li:last-child{
    margin-bottom: 0;
  }

}


/*Main*/
.main__container{



}
.page__main{
 position: relative;

}

.main__fon {
  margin: 0px 0px 50% 0px;
position: absolute;
  width: 100%;
  height: 100%;
 top: 0;
 left: 0;
}
.main__fon img{
  position: absolute;

  width: 100%;
  height: 100%;

  left: 0;
  object-fit: cover;
 
}

.main__content{
  color: #000;
  position: relative;
  z-index: 2;
padding: 210px 0px 300px 0px;
}
.main__title {
font-size: 80px;
max-width: 595px;
margin-bottom: 25px;

transform: translate(0px, 120%);
opacity: 0;
transition: all 0.8s ease 0s;
}
.main__title.show{
  transform: translate(0px, 0px);
  opacity: 1;
}

.main__text {
  font-family: "Jost";
  color: #4D5053;
  line-height: 20px;
  margin-bottom: 40px; 
  max-width: 400px;
  font-size: 15px;
 
}

.main__button {
 
  
}

.button {
}
.button__link {
  font-family: "Jost";
  border-radius: 10px;
  font-weight: 400;
  right: 0;
  padding: 14px 20px;
  background: #292F36;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s ease 0.2s;


}



.button__link:hover{
  background: #4a4c4f;
  box-shadow: 0 20px 40px 0 rgb(24, 25, 26, 0.3);
  font-size: 15px;
  right: 10px;
  padding: 12px 17px;
  margin-bottom: 10px;
}
.button__link svg{

  color: #CDA274;
  transform: scale(2, 2);
  padding: 7px 0px  0px 0px;
  margin-left: 10px;
}




.button__link span{

}
.page__main{


}

@media(max-width: 621px){
  .main__title{
    
    font-size: 60px;
  }
}
@media(max-width: 350px){
  .main__title{
    
    font-size: 50px;
  }
}

/*Info*/
.page__info {
  padding-top: 130px;
  padding-bottom: 100px;
}
.info {
}
.info__container {
}
.info__items {

  display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 100px;
}
.info__item {
text-align: center;
text-align: center;


}


.item {
}
.item__title {
  color: #000;
  font-size: 25px;
  margin-bottom: 20px;
 transform: translate(0px, 50%);
  transition: all 0.9s ease 0s;
}
.item__text {
  font-family: "Jost";
  font-weight: 400;
  color: #4D5053;
  line-height: 30px;
  font-size: 20px;
  width: 300px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translate(0px , 50%);
  transition: all 0.3s ease 0s;
}

 .info__item.visible .item__title{
  transform: scale(1);
 }

 .info__item.visible .item__text{
transform: translate(0px , 0px);
opacity: 1;
transition: all 0.8s ease 0s;
 }



.item__button {
}
.item__link{
  font-family: "Jost";
  font-size: 18px;
  color: #4D5053;
  transition: all 0.2s ease 0.2s;
}
.item__link svg{
  color: #CDA274;
  transform: scale(2, 2);
  padding: 7px 0px  0px 0px;
  margin-left: 10px;
}
.item__link:hover{
  font-size: 13px;
}

/*Challenging*/
.page__challenging {
  
  padding-top: 180px;
  padding-bottom: 80px;
}
@media(max-width: 820px){
  .page__challenging{
    padding-top: 100px;
  }
}
.challenging {
}
.challenging__container {

}
.challenging__items {
  display: flex;

  gap: 75px;
 
}
.challenging__item1 {
 padding-top: 50px;
}
.item1 {
}
.item1__title {
  font-size: 45px;
  max-width: 450px;
  color: #000;
  margin-bottom: 50px;
  transform: translate(0px, 50%);
  transition: all 0.9s ease 0s;
}
.item1__text {
  font-family: "Jost";
  color: #4D5053;
  font-weight: 300;
  max-width: 500px;
  line-height: 30px;
  font-size: 22px;
  margin-bottom: 40px;
   opacity: 0;
  transform: translate(0px , 50%);
  transition: all 0.3s ease 0s;
}





 .challenging__item1.visible .item1__title{
  transform: translate(0px, 0px);
  transform: scale(1);
  transition: all 0.5s ease 0s;
 }

 .challenging__item1.visible .item1__text{
transform: translate(0px , 0px);
opacity: 1;
transition: all 0.8s ease 0s;
 }

.item1__contact {
display: flex;
}
.item1__contact{
  opacity: 0;
  transform: translate(0px , 10%);
  transition: all 0.8s ease 0s;
}
.item1__contact.visible{
  opacity: 1;
  transform: translate(0px, 0px);
  transition: all 0.8s ease 0.1s;
}

.contact {
}
.contact__call{
  margin: 15px 0px 0px 20px;
}
.contact__number {
  font-family: "Jost";
  font-weight: 400;
  font-size: 22px;
  color: #4D5053;
}
.contact__number:hover{
  text-decoration: underline;
}
.contact__us {
  color: #4D5053;
  font-size: 22px;
  font-weight: 400;
  margin-top: 15px;
  font-family: "Jost";
}
.contact__button {
  margin-top: 50px;
}
.button-contact {
}
.button-contact__link {
 
  font-family: "Jost";
  border-radius: 10px;
  font-weight: 400;
  right: 0;
  padding: 20px 45px;
  background: #292F36;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease 0.2s;
}
.button-contact__link:hover{
  background: #4a4c4f;
  box-shadow: 0 20px 40px 0 rgb(24, 25, 26, 0.3);
  font-size: 15px;
  right: 10px;
  padding: 12px 17px;
  margin-bottom: 10px;
}
.button-contact__link svg{

  color: #CDA274;
  transform: scale(2, 2);
  padding: 7px 0px  0px 0px;
  margin-left: 10px;
}
.challenging__item2 {
}
.item2 {
}
.item2__image {
  position: relative;
 opacity: 0;
 transform: translate(0px, 20%);
 transition: all 0.8s ease 0s;
}
.item2__image.visible{
  opacity: 1;
  transform: translate(0px ,0px);
  transition: all 0.8s ease 0s;
}

.item2__image img{
   border-radius: 0% 55% 0%  20%;
  position: relative;
  max-width: 100%;
}
@media(max-width: 955px){
  .challenging__items{
    display: flex;
    flex-wrap: wrap;
  }
}

/*Interno*/

.page__interno {
  padding-top: 90px;
  padding-bottom: 70px;
}
.interno {
}
.interno__container {
  background: #F4F0EC;
  border-radius: 50px;

}
.interno__title {
  padding-top: 100px;
  padding-bottom: 60px;
  text-align: center; 
  font-size: 45px;
  color: #000;
}
.interno__items {
 
 
  padding-bottom: 120px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.items-interno {
}
.items-interno__item {
  padding: 50px 50px;
  border-radius: 20px;
  max-width: 355px;
  background: #fff;
  opacity: 0;
  transform: translate(0px, 50%);
  transition: all 0.2s ease 0s;
}

.items-interno__item1.visible {
  opacity: 1;
  transform: translate(0px, 0px);
  transition: all 0.4s ease 0.3s;
}
.items-interno__item2.visible {
  opacity: 1;
  transform: translate(0px, 0px);
  transition: all 0.6s ease 0.5s;
}
.items-interno__item3.visible {
  opacity: 1;
  transform: translate(0px, 0px);
  transition: all 0.8s ease 0.7s;
}


.item-interno {
}
.item-interno__contact {
  display: flex;
}
.item-interno__image {
}
.item-interno__info {
  margin: 10px 0px 0px 20px;
}
.item-interno__name {
  color: #000;
  font-size: 25px;
 
}
.item-interno__name:hover {
text-decoration: underline;
}
.item-interno__location {
  color: #4D5053;
  font-family: "Jost";
  margin-top: 10px;
  font-size: 18px;
}
.item-interno__maininfo {
  margin-top: 20px;
  color: #4D5053;
  line-height: 30px;
  font-family: "Jost";
  font-weight: 200;
  font-size: 20px;
  max-width: 250px;
}
/*Brand*/
.page__brand {
  padding-top: 70px;
  padding-bottom: 55px
}
.brand {
}
.brand__container {
}
.brand__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 126px;
  justify-content: center;
}
.brand__item {
}
.item-brand {
}

/*Projects*/

.page__projects {
  padding-top: 60px;
  padding-bottom: 146px;

}
.projects {
}
.projects__container {

}
.projects__title {
  color: #000;
  font-size: 47px;
    text-align: center;
    margin-bottom: 20px;
    
}

.projects__text{
  text-align: center;
  color: #4D5053;
  font-family: "Jost";
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 70px;
}

.projects__items {
  display: flex;
  gap: 40px;
  word-break: break-all;
  flex-wrap: wrap;
justify-content: center;
}

.project__item {
max-width: 600px;
opacity: 0;
transform: translate(0px, 30%);
transition: all 0.8s ease 0s;
}





.project__item1.visible{
opacity: 1;
transform: translate(0px, 0px);
transition: all 0.3s ease 0.2s;
}
.project__item2.visible{
  opacity: 1;
  transform: translate(0px, 0px);
  transition: all 0.6s ease 0.2s;
 }
  .project__item3.visible{
    opacity: 1;
    transform: translate(0px, 0px);
    transition: all 0.7s ease 0.3s;
}
    .project__item4.visible{
      opacity: 1;
      transform: translate(0px, 0px);
      transition: all 0.9s ease 0.3s;
 }
.item-projects {
}
.item-projects__image {
 max-width: 560px;
 margin-bottom: 30px;
 }
 .item-projects__image img{
  border-radius: 0% 20% 0% 0%;
 max-width: 100%;
 }
 .item-projects__body {
   display: flex;
 }
.item-projects__info {
  max-width: 300px;
}
.item-projects__title {
  font-size: 23px;
  max-width: 300px;
  margin-bottom: 20px;
  color: #000;
}
.item-projects__text {
  color: #4D5053;
  font-family: "Jost";
  font-size: 22px;
 
  font-weight: 400;
}
.item-projects__arrow {
 align-items: center;
  background: #F4F0EC;
  border-radius: 50%;
  position: absolute;
  padding: 30px;
    transition: all 0.2s ease 0.2s;
}
.item-projects__link{
  position: relative;
  display: flex;
  justify-content: flex-end;
  
  margin-left: 250px;

}



.item-projects__arrow:hover {
  background-color: #dbd6d1;
  padding: 20px;
 }
 @media(max-width: 600px){
  .item-projects__link{
   
    margin-left: 100px;
  }
  .item-projects__title{
    font-size: 18px;
  }
  .item-projects__text{
    font-size: 18px;
  }
 }

 /*Number*/

 .page__number {
  padding-top: 130px;
  padding-bottom: 130px;
  background: #F4F0EC;
}
.number {
}
.number__container {
}
.number__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
.number__item {
  text-align: center;
}

.item-number {
}
.item-number__info {
  color: #CDA274;
  font-size: 85px;
  margin-bottom: 20px;
}
.item-number__text {
  font-family: "Jost";
  font-size: 22px;
  font-weight: 400;
color: #4D5053;
}
.number__decor{
  background: #CDA274;
  width: 1px;
}
@media(max-width: 510px){
  .number__decor{
    display: none;
  }
}
/*Blogs*/
.page__blogs {
  padding-top: 145px;
  padding-bottom: 130px;

}
.blogs {
}
.blogs__container {

}
.blogs__first {
  text-align: center;
  color: #000;
  padding-bottom: 70px;
}
.blogs__title {
  font-size: 48px;
  margin-bottom: 20px;
}
.blogs__text {
  color: #4D5053;
  font-family: "Jost";
  line-height: 30px;
  font-size: 22px;
}
.blogs__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;

}
.blogs__item {
color: #4D5053;
max-width:350px;
padding: 20px;
  border: 0.1px solid  #c1c6cb;
  border-radius: 50px/46px 50px  50px 50px;
  opacity: 0;
  transform: translate(100px, 0px);
  transition: all 0.6s ease 0s;
}
.blogs__item.visible{
  opacity: 1;
  transform: translate(0px, 0px);
  transition: all 0.6s ease 0s;
}

.blogs__item:hover {
  padding: 30px 30px;
  font-size: 20px;
  background: rgba(90, 39, 39, 0.1);
  }
.item-blogs {
}
.item-blogs__body{
  position: relative;

}
.aitem-project__image{
  position: relative;
  display: block;
}
.aitem-project__image img{
  max-width: 100%;
 border-radius: 15% 15% 0% 0%;
}
.item-blogs__text {
  position: absolute;
  bottom: 24px;
  font-family: "Jost";
  left: 24px;
  background: #fff; 
 border-radius: 10px;
  color: #77797c;
  font-size: 16px;
  padding: 15px 10px;
  line-height: 1.57;
}
.item-blogs__text2{
  color: #4D5053;
  font-size: 16px;

  font-family: "Jost";
  margin-bottom: 40px;
}
.item-blogs__info {

}
.item-blogs__info2{
 
}
.item-blogs__title {
  
  color: #000;
  max-width: 300px;
  font-size: 22px;
  line-height: 35px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.item-blogs__arrow {
display: flex;

}
.arrow-item-blogs{

}
.arrow-item-blogs__link{
  margin: -20px 0px 0px 110px;
 border-radius: 50%/ 60%;
}

.item-blogs__arrow {
 
}

/*Connect*/
.page__connect {
  
  
}
.connect {
}
.connect__container {
  padding-top: 112px;
  padding-bottom: 112px;

  text-align: center;
  display: flex;
    background: #292F36;
    border-radius: 70px;
  justify-content: center;
}
.connect__info {
}
.connect__title {
  font-size: 50px;
  margin-bottom: 30px;
}
.connect__text {
  font-size: 22px;
  margin-bottom: 55px;
  font-family: "Jost";
  font-weight: 300;
}
.connect__button {
  color: #fff;
  padding: 20px 35px;
    font-family: "Jost";
    font-size: 18px;
  background: #CDA274;
  border-radius: 15px;
  
  transition: all 0.3s ease 0.3s;
}
.connect__button svg{

  transform: scale(2, 2);
  padding: 7px 0px  0px 0px;
  margin-left: 10px;
}
.connect__button:hover{
  background: #b18455;
  box-shadow: 0 20px 40px 0 rgb(177, 132, 85, 0.1);
  font-size: 15px;
  padding: 15px 20px;
  margin-bottom: 10px;
}
/*Footer*/
.footer {
  padding-top: 129px;

}
.footer__container {
color: #000;
}
.footer__info {
}
.info-footer {
  display: flex;
  flex-wrap: wrap;
gap: 90px;
  padding-bottom: 120px;
}
.info-footer__item1 {
}
.item1-info-footer {
}
.item1-info-footer__logo {
  max-width: 100%;
margin-bottom: 20px;
}
.item1-info-footer__text {
line-height: 33px;
font-size: 22px;
font-family: "Jost";
color: #4D5053;
max-width: 326px;
margin-bottom: 20px;
}
.item1-info-footer__links {
  display: flex;
  gap: 30px;
}
.item1__link {
}
.info-footer__item2 {

}
.item2-info-footer {
}
.item2-info-footer__title {
  font-size: 25px;
}
.link-item2-info-footer{
  color: #4D5053;
  margin-top: 20px;
  font-family: "Jost";
  line-height: 33px;
  font-size: 22px;
  max-width: 321px;
}
.item2-info-footer__link {
  display: flex;
  color: #4D5053;
  font-family: "Jost";
  font-size: 22px;
  margin-top: 20px;
}
.item2-info-footer__link:hover {
  text-decoration: underline;
}

.link-item2-info-footer {
}
.footer__last {
  border-top: 1px  solid #9ea2a7;
}
.last-footer {
}
.last-footer__container {
}
.las-footer__info {
  text-align: center;
  font-size: 22px;
  color: #4D5053;
  font-family: "Jost";
  word-spacing: 5px;
  font-weight: 400;
  padding: 36px 0px 36px 0px;
}
.las-footer__info a{
  color: #CDA274;
}
.las-footer__info a:hover{
 text-decoration: underline;
}