@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

:root {
  --wht: #ffffff;
  --drck: #000000;
  --gr: #ffffff59;


  --text-color-1: #937010;
  --text-color-2: #ee8505;
  --text-color-3: #d53c16;
  --text-color-4: #5d6cab;
  --text-color-5: #4daa50;

}


body{
background-color: #000000;

direction: ltr;
font-family: 'Barlow Condensed', sans-serif !important;
font-size: 1em;
line-height: 1.4;
margin: 0;
padding: 0px;
    
}
li {
list-style: none;
}
ul {
padding-left: 0;
padding-right: 0;
}
a {
text-decoration: none;
}

h2 {
  color: var(--text-color-3);
  font-size: 28px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper {
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
}
.padded-content {
  padding: 64px 0;
}
.privacy-wrap {
  overflow: hidden;
  word-break: break-all;
  padding:24px;
}
.privacy-wrap {
  color: white;
}
.privacy-wrap a p li ul {
  color: white;
}
.content{
  overflow: hidden;
 }
 .content-box {

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px;
  gap: 24px;

 }
 .content-box div {
  color: white;
 }
 .content-image {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-section {
  background-image: 
    linear-gradient(to right, rgb(0 0 0), rgba(0, 0, 0, 0.5)),
    url('view/icons_header_667d90e24a1699.86360638.jpg'); 
  background-size: cover; 
  background-position: center; 
  color: white; 
}
.header-head{
  background-color: #ffffffad;
  padding: 10px 0;
}

.header-logo{
  display: flex;
  align-items: center;
  flex-direction: row;
}
.header-title{
  color: var(--text-color-3);
    font-size: 30px;
    margin: 0 10px;
}

.header-menu{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-item{
  margin: 0 10px;
}
.header-item-link{
  color: white;
  text-transform: uppercase;
}
.header-item-link:hover{
  color: var(--text-color-3);
}

.header-items .header-item .menu-title{
  position: absolute;
  float: left;
   width: 300px;
   background: white;
   display: none;
 }
 .header-items .header-item:hover .menu-title{
   display: initial;
   z-index: 3;
 }
 .head-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
 }
 .head-title div p{
  font-size: 34px; 
  text-transform: uppercase;
  padding: 0 40px;
  background-image: linear-gradient(to right, #ffffffbd, rgb(0 0 0 / 0%));
 }
 .head-button{
display: flex;
flex: 1;
justify-content: center;
padding: 29px;
margin: 13px;
 }
 .head-button-link{
  display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    white-space: normal;
  width: 100%;
  margin: 0 13px;
 }
 .menu-link {
   display: block;
   width: 100%;
   color: rgb(9, 8, 8);
 }
 .menu-link:hover{
   color: var(--text-color-3);
 }
 .menu-item{
   color-scheme: var(--white);
   white-space: normal;
   padding: 10px;
   
 }
 .menu-item:hover {
  border-right: 3px solid  var(--text-color-3);
 }
 .work-title-text h2{
  padding:  0 10px;
  text-align: center;
 }
 .work-cards-wrap{
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
   }
 
 .work-cards {
  perspective: 500px;
}

.work-card {
  width: 300px;
  height: 250px;
  margin: 10px 0;
  background: #16161d;
  border: 2px solid #555555;
  border-radius: 4px;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .5s;
}

.work-card:hover {
  border: 3px solid var(--text-color-3);
  transform: translateZ(10px) rotateX(20deg) rotateY(20deg);
}

.work-card_title {
  color: #fff;
  position: absolute;
  padding: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .5s;
  text-shadow: -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}

.work-card:hover .work-card_title {
  transform: translateZ(50px);
}
.about-section{
  border-top: 3px dotted var(--text-color-3);
  border-spacing: 0.5em;
}

 .about-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 13px;
}
.about-wrap h1{
  color: var(--text-color-3);
  display: flex;
  align-items: center;
  text-align: center;
}

.about-item-image{
  text-align: center;
    flex: 1;
}
.about-item-image > img{
  width: 450px;
  height: 300px;
  object-fit: cover;
  overflow: hidden;
}

.about-item-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.about-text{
  color: white;
  padding: 10px;
  margin: 30px 0;
}

.about-button{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50%;
}
.main-img {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-text {
  
  padding: 29px;
  text-align: left;
 }
 .main-text p li ul a {
  color: white;
 }
 .header-item-link {
  color: white;
 }
 .head-title div p {
  color: white;
 }


 .price-wrap{
  padding: 29px;
  background-image: linear-gradient(to right, #ffffffbd, rgb(0 0 0 / 0%));
 }

.main-section {
  background-image: 
  linear-gradient(to right, rgb(0 0 0 / 80%), rgb(0 0 0 / 80%)),
    url('view/pictures_header_667d90e484c4f7.51729871.jpg'); 
  background-size: cover; 
  background-position: center; 
  color: white; 
}
.service-text{
  display: flex;
  justify-content: center;
}

 
.service-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 44px;
  
}
.service-img-card{
  flex: 1;
  width: 100%;
  height: 100%;
  text-align: center;
}
.service-img-card a img{
width: 90%;
    height: 400px;
    object-fit: cover;
    box-shadow: rgba(245, 240, 243, 0.4) -5px 5px, rgba(247, 241, 244, 0.3) -10px 10px;
}

.service-title-card {
 position: relative;
 flex: 1;
 top: -70px;
  flex-direction: column;
  padding: 15px;
  box-sizing: border-box;
  width: 700px;
  background: rgba(217, 217, 217, 0.58);
  border: 1px solid white;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 17px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-weight: bolder;
  color: black;
}

.service-title-card:hover {
  border: 3px solid var(--text-color-3);;
  transform: scale(1.05);
}

.service-title-card:active {
  transform: scale(0.95) rotateZ(1.7deg);
}
.service-title{
  color: var(--text-color-3);
}
.service-title:hover{
  color: white;
}
 
 
.articles-wrapper{
  background-image: 
  linear-gradient(to right, rgb(0 0 0 / 80%), rgb(0 0 0 / 80%)),
    url('view/visuals_header_667d90e6b1aa80.79625788.jpg'); 
  background-size: cover; 
  background-position: center; 
}
.articles-block{
  display: flex;
  flex-direction: row;
  gap: 70px;
  justify-content: space-around;
  flex-wrap: wrap;
}

 .articles-item{
  width: 400px;
  padding: 30px;
  background-color: var(--text-color-3);
 }
 .articles-item div h3 a{
  font-size: 28px;
 }
 .articles-img-link  {
 
  display: flex;
  justify-content: center;
  align-items: center;
 }
 
 .articles-title{
  margin: 0 0 80px;
  color: black
 }
 .articles-btn{
  display: flex;
    align-items: center;
    justify-content: center;
 }
 .articles-img{
  width: 100%;
  object-fit: cover;
 }
 .articles-img:hover{
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
 }

 .team-section{
  border-top: 3px dotted var(--text-color-3);
  border-spacing: 0.5em;
}
.team-title-text{
  display: flex;
    justify-content: center;
  margin: 0 0 70px;
}
.title-text-team{
  display: flex;
  justify-content: center;
  margin: 0 0 70px;
}
.team-wrap{
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 70px;
 
}
 
 .cardContainer {
  width: 300px;
  height: 350px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition-duration: .5s;
  cursor: pointer;
}

.profileDiv {
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(24, 24, 24);
  transition-duration: .5s;
  color: rgb(155, 155, 155);
  font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.profileDiv img{
  width: 300px;
  height: 350px;
  object-fit: cover;
}

.cardContainer:hover .profileDiv {
  transform: translateX(-25%) translateY(-20%);
  transition-duration: .5s;
}

.infoDiv {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-color-3);
  z-index: 1;
}

.nameDiv {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-color: var(--text-color-3);
  gap: 2px;
}

.name {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: black;
}

.role {
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: rgb(48, 48, 48);
  margin-bottom: 5px;
}

.socialDiv {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgb(14, 14, 14);
  gap: 25px;
}

.infoDiv a {
  width: 50%;
}

.socials {
  width: 100%;
  fill: rgb(14, 14, 14);
}



.contact-wrap {
  background-color: #2f2f2f;
  border-radius: 8px;
  box-shadow: rgb(31 31 31 / 17%) 0px -23px 25px 0px inset,
    rgb(108 108 108 / 23%) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  padding: 40px;
  margin: 0 auto;
}
.content-width{
  width: 100%;
}

.login-form {
  color: white;
  display: flex;
  flex-direction: column;
}

.heading {
  color: var(--text-color-3);
  font-weight: 500;
  font-size: 40px;
  text-align: center;
}

.input-group {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

.input-group input {
  background: none;
  border: 1px solid #353535;
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  color: #979797;
  width: 100%;
  box-shadow: rgb(136 136 136 / 17%) 0px -23px 25px 0px inset,
    rgb(81 81 81 / 23%) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.input-group input:focus {
  border-color: var(--text-color-3);
  outline: none;
}
.input-group-textarea{
  display: flex;
}
.input-group-textarea textarea{
  background: none;
  border: 1px solid #353535;
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  margin: 10px 0;
  color: #979797;
  width: 100%;
  box-shadow: rgb(136 136 136 / 17%) 0px -23px 25px 0px inset,
    rgb(81 81 81 / 23%) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.input-q5545144 {
  background: none;
  border: 1px solid #353535;
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  margin: 10px 0;
  color: #979797;
  box-shadow: rgb(136 136 136 / 17%) 0px -23px 25px 0px inset,
    rgb(81 81 81 / 23%) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.textarea-q5545144{
  background: none;
  border: 1px solid #353535;
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  margin: 10px 0;
  color: #979797;
  box-shadow: rgb(136 136 136 / 17%) 0px -23px 25px 0px inset,
    rgb(81 81 81 / 23%) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.block-adres-item{
  display: flex;
    flex-direction: column;
    align-items: center;
  line-height: 2;
  margin: 20px 0;
}
.block-adres-item a{
  color: white;
  display: flex;
    flex-direction: row;
    align-items: center;
    word-break: break-word;
    text-align: center;
}
.check-wrap {
  padding: 20px;
}
.check-wrap a{
  color: var(--text-color-3);
}
.adres-maps-wrap{
  display: flex;
  flex-direction: column;
}
.footer-contacts{
  display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to right, rgb(0 0 0), rgba(0, 0, 0, 0.5)), url('view/pictures_header_667d90e8d98563.80503255.jpg');
    background-size: cover;
    background-position: center;
  
}
.block-adres-items{
  padding: 0 40px;
  margin: 0;
    background-image: linear-gradient(to right, #ffffffbd, rgb(0 0 0 / 0%));
    flex: 1;
}
.maps{
  flex: 1;
}
.foot-section{
  border-top: 3px dotted var(--text-color-3);
}
.footer-logo-title{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.footer-menu{
  display: flex;
    justify-content: space-around;
    align-items: center;
}
.footer-contacts-page{
  display: flex;
    align-items: center;
    justify-content: center;
}
.about-wrap {
  color: white;
}
.menu-link-foot{
  color: white;
}
.nav-wrap-foot{
  display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 10px;
}
.nav-list-footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 2;
  text-align: center;
}
   .footer-contact-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    text-align: center;
   } 
   .footer-contact-box svg{
    color: var(--text-color-3);
   }
.footer-contact-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 2;
}
.footer-contact-title li a{
  word-break: break-word;
  text-align: center;
  color: var(--text-color-3);
}
.footer-priv {
  display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.section-privacy{
  border-top: 3px dotted var(--text-color-3);
  padding: 15px 0;
}
   .privacy {
     color: var(--text-color-3);
    }

    .about-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
@media screen and (min-width: 480px) {
    .wrapper {
      max-width: 480px;
    }
  }
  @media screen and (min-width: 768px) {
    .wrapper {
      max-width: 768px;
    }
  }
  @media screen and (min-width: 1200px) {
    .wrapper {
      max-width: 1200px;
    }
  }


  @media (max-width: 1199px) {
    .header-menu{
      flex-direction: column !important;
    }
.about-wrap{
  flex-direction: column !important;
}
.service-title-card{
  width: 500px;
}
  }

  @media (max-width: 900px) {
.work-title-text h2,
.articles-title h2,
.team-title-text h2,
.service-text h2,
.about-title{
  flex-direction: column;
}
  }

  
  
  @media (max-width: 768px) {
    .head-title div p{
      font-size: 19px;
    }
    .header-items{
      flex-direction: column;
    }
    .header-items .header-item .menu-title{
      width: 250px;
    }
    .service-title-card{
      width: 300px;
    }
    .footer-menu,
    .footer-priv {
      flex-direction: column !important;
    
  }
  .footer-priv {
    flex-direction: column !important;
    text-align: center;
}
 
}
@media (max-width: 600px){
  .service-img-card a img {
    width: 100%;
  }
  .header-item{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
}

  @media (max-width: 450px) {
    .about-item-image > img{
      width: 320px;
    }
    .articles-img {
      width: 250px !important;
    }
    .articles-page a {
      width: 250px !important;
    }
    
    
  }


  @media (max-width: 405px){
    .contact-wrap{
      padding: 10px !important;
    }
  }

  .button-1 {
    border: 2px solid rgb(216, 147, 17);
    border-radius: 15px;
    transition: all 0.3s;
    cursor: pointer;
    padding: 10px;
    background: white;
    font-size: 1.2em;
    font-weight: 550;
    font-family: 'Montserrat', sans-serif;
  }
  
  .button-1:hover {
    background:rgb(216, 147, 17);
    color: white;
    font-size: 1.5em;
  }
  
  .button-2 {
    color: var(--text-color-3);
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid grey;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
  }
  
  .button-2:hover {
    color: white;
  }
  
  .button-2::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: grey;
    z-index: -1;
    transition: all 1s;
  }
  
  .button-2:hover::before {
    width: 160%;
  }
  
  .button-3 {
    background: var(--text-color-3);
    font-family: inherit;
    padding: 0.6em 1.3em;
    font-weight: 900;
    font-size: 18px;
    border: 3px solid black;
    border-radius: 0.4em;
    box-shadow: 0.1em 0.1em;
    cursor: pointer;
  }
  
  .button-3:hover {
    transform: translate(-0.05em, -0.05em);
    box-shadow: 0.15em 0.15em;
  }
  
  .button-3:active {
    transform: translate(0.05em, 0.05em);
    box-shadow: 0.05em 0.05em;
  }
  
  
  .button-4 {
    appearance: button;
    background-color: var(--text-color-3);
    border: solid transparent;
    border-radius: 10px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 13px 19px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
   }
   
   .button-4:after {
    background-clip: padding-box;
    background-color: #eac316;
    border: solid transparent;
    border-radius: 10px;
    border-width: 0 0 4px;
    bottom: -4px;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
   }
   
   .button-4:main, .button-4:focus {
    user-select: auto;
   }
   
   .button-4:hover:not(:disabled) {
    filter: brightness(1.1);
   }
   
   .button-4:disabled {
    cursor: auto;
   }
   
   .button-4:active:after {
    border-width: 0 0 0px;
   }
   
   .button-4:active {
    padding-bottom: 10px;
   }
  
  .button-5{
    color: #090909;
    padding: 0.7em 1.7em;
    font-size: 18px;
    background: #e8e8e8;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
  }
  
  .button-5:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
  }
   
   
   