*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.body{
    height: 100%;
    font-family: 'Open Sans';
}
.wrapper{
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.main{
    flex: 1 1 auto ;
}
a{
    text-decoration: none;
    color: #fff;
}
[class*="container"]{
    max-width: 1530px;
    margin: 0 auto;
    padding: 0 15px;
}
/* /*------------------------------------------------------------------------------------/ */

.header{
    min-height: 70px;
    z-index: 3;
}
.logo{
    padding-top: 11px;
}
.text-logo{
    font-weight: 400;
    font-size: 35px;
    line-height: 42px;
    color: #28A745;
}
.span{
    color: #fff;
    font-weight: 400;
    font-size: 35px;
    line-height: 42px;
}
.header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navigation{
    display: flex;
    gap: 38px;
}
.header-link{
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}
.header-link:hover{
    text-decoration: underline;
    color: #28A745;
}
.burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: none;
  }
  
  .burger input {
    display: none;
  }
  
  .burger span {
    display: none;
    position: absolute;
    height: 4px;
    width: 100%;
    background: rgb(255, 255, 255);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  
  .burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
  }
  
  .burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
  }
  
  .burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
  }
  
  .burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
  }
  
  .burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }
  
  .burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
  }
.one{
    width: 22px;
  
    margin-top: 7px;
    border: 1px solid white;
}


@media(max-width:743px){
    .header-content{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .big-foto{
        height: 100vh;
    }
    .logo{
        padding-top: 0;
      
    }
    .menu-nav{
        padding-top: 10px;
    }
   
}
@media(max-width:484px){
    .contetnt-towers:nth-child(2){
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .burger span{
        display: block;
    }
    .burger{
        display: block;
    }
    .navigation{
        display: none;
    }
    .header-content{
        padding-top: 10px;
        display: flex;
        justify-content: space-between;
     }
     .navigation{
       
        gap: 0;
    }
     .navigation.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: green;
        opacity: 0.8;
        z-index: 1;
        text-align: center;
        height: 40vh;
        
    }
    .navigation.active li{
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
        display: block;
       
    }
    .navigation.active li:hover{
        width: 100%;
        background-color: #fff;
        color: #28A745;
    }
    .header-link{
        padding-top: 0px;
        display: block;
    }
    .header-link:hover{
        text-decoration: none;
    }
}
@media(max-width:416px){
    .menu-nav{
        display: flex;
        gap: 20px;
        padding-right: 5px;
    }
    
    .big-foto{
        margin-top: -212px;
        min-height: 110vh;
    }
}

/* /*------------------------------------------------------------------------------------/ */
.foto4ka{
    width: 100%;
    height: 100%;
}
.big-foto{
  
   margin-top: -90px;
   width: 100%;
   background-image: url(image/sity.png);
   background-repeat: no-repeat;
   background-size: cover;
   min-height: 105vh;
}
.mains{
  text-align: center;
  padding-top: 309px;
}
.main-title{
    color: #fff;
    font-weight: 300;
    font-size: 55px;
    line-height: 66px;
}
.menu-paragraph{
    padding-top: 25px;
    padding-bottom: 29px;
    font-weight: 400;
    font-size: 22px;
    line-height: 37px;
    color: #E9E9E9
}
.link-button  { 
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 0.7em 2em;
    border: 3px solid #28A745;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color:white; 
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
  } 
  
  .link-button:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color:  #28A745;
    z-index: -1;
  }
  
  button:hover, button:focus {
    color: white;
  }
  
  .link-button:hover:before, .link-button:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
  }
  
  .link-button:active {
    transform: scale(0.9);
  }


.tawers{
    padding-bottom: 19px;
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}
.green-foto{
    width: 67px;
    height: 67px;
    background-color: #28A745;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
   transition: transform 0.5s ease;
}
.green-foto-two{
    transform: rotate(360deg);
 
}
.contetnt-towers{
    flex: 33.3333333%;
    text-align: -webkit-center;
    padding-left: 67px;
    padding-right: 67px;
}

.towers-title{
    font-weight: 400;
    font-size: 20px;
    line-height: 33px;
    padding-top: 15px;
    color: #333333;
}
.tawers-paragraph{
    padding-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
}
.foto-and-green{
    display: flex;
    color: #fff;
   
}
.foto-text{
    flex: 50%;
}
.foto-text-two{
    flex: 50%;
    background-color: #28A745;
   
}

.foto-text-three{
    flex: 50%;
    background-color: #0284D0;
}

.text-green{
    max-width: 606px;
    padding: 84px 0px 0px 30px;

}
.title-green{
    font-weight: 400;
    font-size: 20px;
    line-height: 33px;
    padding-bottom: 5px;
   
}
.big-title-green{
    font-weight: 300;
    font-size: 38px;
    line-height: 48px;
    padding-bottom: 26px;
    
}
.paragraph-green{
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 17px;
    
}
.two-foto4ka{
    width: 100%;
    height: 100%;
}
.green-button{
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    padding: 12px 27px 12px 42px;
    background-color: #28A745;
    border: 3px solid  #044311;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: white;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
  }
  
  .green-button:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: #044311;
    z-index: -1;
  }
  
  .green-button:hover, button:focus {
    color: white;
  }
  
  .green-button:hover:before, button:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
  }
  
  .green-button:active {
    transform: scale(0.9);
  }
.two{
    background-color:  #0284D0;
}
.two::before{
    background-color: #034063;
}


.two-title-text{
    text-align: center;
    padding-top: 50px;
    color: #333333;

}
.two-title-paragraph{
    font-weight: 400;
    font-size: 20px;
    line-height: 33px;
    
    padding-bottom: 15px;
}
.two-title{
    font-weight: 300;
    font-size: 38px;
    line-height: 48px;
    padding-bottom: 34px;
}
.last-title-paragraph{
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}
.many-foto{
    min-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 5px 48px 5px;
    
}
.next-foto {
    padding-left: 8px;
    padding-bottom: 7px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .next-foto:hover:not(.lorem) .fofof {
    filter: brightness(30%);
    transform: scale(1.1);
    transition: transform 0.5s ease;
  }
  
  .next-foto .lorem {
    opacity: 0;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 45%;
    padding: 0 7px;
    color: #fff;
    pointer-events: none;
  }
  
  .next-foto:hover .lorem {
    opacity: 1;
    filter: brightness(90%);
    display: block;
  }

.next-foto:first-child{
    padding-left: 0;
}
.next-foto:nth-child(5){
    padding-left: 0;
}
@media(max-width:1301px){
    .next-foto:nth-child(3){
        padding-left: 0px;
    }
    .next-foto:nth-child(5){
        padding-left: 7px;
    }
}
@media(max-width:977px){
    .next-foto:nth-child(3){
        padding-left: 7px;
    }
    .next-foto:first-child{
        padding-left: 7px;
    }
}
.foto-and-green:nth-child(6){
    display: flex;
    flex-direction: row-reverse;
}
.foto-and-green:last-child.foto-text-two{
    background-color: #333333;
}
@media(max-width:603px){
    .text-green{
        padding: 30px;
        
    }
    .green-button-two{
        margin-bottom: 0;
    }
    .green-button{
        margin-bottom: 0;
    }
}
@media(max-width:1043px){
    .foto-and-green{
        flex-direction: column;
    }
    .foto-and-green:nth-child(6){
        flex-direction: column;
    }
 
    .foto-text-two{
        flex: 100%;
        background-color: #28A745;
    }
    .foto-text{
        flex: 100%;
    }
    .foto-text-three{
        flex: 100%;
    }
    .foto-and-green{
        
        flex-direction: column;
    }
    .foto-and-green:last-child{
        display: flex;
        flex-direction: column;
    }
}
.three-foto{
display: flex;
padding-top: 22px;
padding-bottom: 60px;
max-width: 1520px;
margin: 0 auto;

}
.one-with-three-foto{
    flex: 33.333333%;
     margin-right: 12px;
    position: relative;
  

}

.text-on-foto{
position: absolute;
width: 100%;
text-align: center;
top: 35%;
display: none;
}
.link-foto{
    padding-left: 25px;
    transition: all 0.3s ease;
}
.one-with-three-foto:hover .text-on-foto{
    display: block;
   
}
.text-on-foto:hover .three-foto4ka{
    filter: brightness(40%);
}
.threes-text{
    display: flex;
    text-align: center;
}
.text-under-foto{
    text-align: center;
    padding-top: 13px;
    color: #333333;

}
.name-of-human{
    font-weight: 400;
    font-size: 25px;
    line-height: 32px;
   
}
.paragraph-of-human{
    padding-top: 12px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}
@media(max-width:1030px){
    .three-foto {
        display: flex;
        flex-wrap: wrap;
        padding-top: 40px;
        
    }
    .one-with-three-foto{

        flex: 100%;
    }
    .text-under-foto{
        padding-bottom: 15px;
    }
    .two-title{
        padding-bottom: 15px;
    }
}


.three-foto4ka{
    width: 100%;
    box-shadow: 2px 2px 12px 2px rgba(0, 0, 0, 0.4);
    transition: filter 0.2s ease;
}
.three-foto4ka:hover{
    filter: brightness(40%);
}
.input{
    display: block;
    width: 100%;
    padding: 6px 5px 6px;
    font-weight: 400;
     font-size: 18px;
    line-height: 28px;
    color:#808080; 
    border: none;
    outline: 0;
}
.parent-input{
    margin-bottom: 36px;
}
.text-green-two{
   
    padding: 84px 30px 0px 30px;
}
.last-title{
    font-weight: 300;
    font-size: 38px;
    line-height: 48px;
    padding-bottom: 40px;
    color: #333333;
}
.foto-text-last{
    flex: 50%;
    background-color:#F4F4F4;;
}
.last-button{
    width: 100%;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #28A745;
    border-radius: 5px;
    border: none;
    color: #fff;
    margin-bottom: 40px;
}
.last-button:hover{
    background-color: #157e2e;
}
.footer{
    background-color: #333333;
    max-height: 110px;
}
.text-on-foto-footer{
    padding-top: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.footer-link {
    text-align: center;
     font-weight: 400;
     font-size: 18px;
     line-height: 28px;
     padding-top:10px;
     padding-bottom: 16px;
     color: #fff;
}
.link-foto:hover{
    transform: scale(1.5);
}

.paragraph-top{
    padding: 5px 0;
    text-transform: uppercase;
    color: white;
    font-weight: 700;
}
.arrow{
    background-color: #28A745;
    width: 100px;
    border: 2px solid greenyellow;
    box-shadow: 2px 3px 2px 3px rgb(95, 89, 85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 40px;
    bottom: 20px;
    border-radius: 32%;
    transition: all 0.5s ease;
    display: none;


   }
   .arrow:hover{
    transform: scale(1.1);
   }

   @media(max-width:400px){
    .arrow{
        width: 50px;
        right: 20px;
        bottom: 20px;
    }
   }

   @media(max-width:430px){
    .relative{
        margin: 0 20px;
    }
   }
   .reclama{
    position: fixed;
    justify-content: center;
    align-items: center;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
   }
   .relative{
    position: relative;
   }
   
  
.absolute{
    position: absolute;
    top: 2%;
    right: 1%;
}
.rozetka{
    width: 100%;
}

.remove{
    width: 100%;
}
.show{
    display: flex;
}

.hide{
    display: none;
}

.error{
    box-shadow: 0px 0px 9px 5px rgb(225, 10, 10);
}
.errorText{
    display: block;
    color: red;
    font-size: 18px;
    font-weight: 700;
    margin-top: 18px;
}
::-webkit-scrollbar{
    width: 15px;  
}

::-webkit-scrollbar-thumb{
    background-color: #157e2e;
    border-radius: 6px;
}

::-webkit-scrollbar-track{
    border: 3px solid #157e2e;
}
::-webkit-scrollbar-thumb:hover{
    background-color: #106123;
}