/*
 font-family: 'Krona one', sans-serif;
 font-family: 'Kumbh Sans', sans-serif;
*/
html {
    box-sizing: border-box;
    -webkit-text-size-adjust : 100%;
    text-size-adjust         : 100%
}

#content {
    display: none; /* Изначально скрыть контент */
  }
  
  /* Стили для прелоадера */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid darkgreen;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


a {
    text-emphasis: none;
    text-decoration: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
    -webkit-appearance : none;
    -moz-appearance    : none;
    -ms-appearance     : none;
    appearance         : none;
    outline            : 0;
    box-shadow         : none;
}

*, *::before, ::after{
    box-sizing: inherit;
}

:root{
    --text-color: #232323;
}
body {
    margin: 0;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 400;
    
}
p, h3, h2, h1{
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}
.logo{

    cursor: pointer;
}

.st0 {
    transition: opacity 1s ease-in-out;
}
.st0::before{
    opacity: 0;
}

.st0::after{
    opacity: 1;
}




.header__title {
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
   
    flex-wrap: wrap;
}

.header__text {
    margin: auto 0;
}
.h4 {
    font-family: 'Krona one', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-inline: 22px;
    text-transform: uppercase;
    display: inline;
}

.nav {
    text-transform: uppercase;
    text-align: right;
    font-weight: 400;
  }
  
  .nav * {
    box-sizing: border-box;
    transition: all .35s ease;
  }
  
  .nav li {
    display: inline-block;
    list-style: outside none none;
    margin: .2em .1em;
    padding: 0;
  }

  .nav li:last-child{
    margin-right: 0;
  }
  
  .nav a {
    padding: .5em .8em;
    color: var(--text-color);
    position: relative;
    text-decoration: none;
    font-size: calc(10px + 6 * (100vw / 1600));
    line-height: calc(10px + 8 * (100vw / 1600));
  }
  
  .nav a::before,
  .nav a::after {
    content: '';
    height: calc(7px + 7 * (100vw / 1600));
    width: calc(7px + 7 * (100vw / 1600));
    position: absolute;
    transition: all .35s ease;
    opacity: 0;
  }
  
  .nav a::before {
    content: '';
    right: 0;
    top: 0;
    border-top: calc(1px + 2 * (100vw / 1600)) solid #3E8914;
    border-right: calc(1px + 2 * (100vw / 1600)) solid #2E640F;
    transform: translate(-100%, 50%);
  }
  
  .nav a:after {
    content: '';
    left: 0;
    bottom: 0;
    border-bottom: calc(1px + 2 * (100vw / 1600)) solid #2E640F;
    border-left: calc(1px + 2 * (100vw / 1600)) solid #3E8914;
    transform: translate(100%, -50%)
  }
  
  .nav a:hover:before,
  .nav a:hover:after{
    transform: translate(0,0);
    opacity: 1;
  }
  
  .nav a:hover {
    color: #3DA35D;
  }
.project_img {
    margin: 0 auto ;
    margin-top: 85px;
    max-width: 1920px;
}

.h2__title {
    padding-top: 3em;

}
.h3__title {
    padding-top: 4em;
    padding-left: 0.5em;
    margin: 0;
}
.h3__title h3 {
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 900;
    font-size: calc(10px + 25 * (100vw / 1600));
    line-height: calc(18px + 40 * (100vw / 1600));
    text-transform: uppercase;   
    margin-bottom: 1em;
}
.h2 {
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 400;
    text-align: center;
    font-size: calc(10px + 15 * (100vw / 1600));
    line-height: calc(20px + 30 * (100vw / 1600));
    max-width: 850px;
    margin: 0 auto;
    text-transform: uppercase; 
    
}

.h3 {
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 900;
    font-size: calc(10px + 25 * (100vw / 1600));
    line-height: calc(18px + 40 * (100vw / 1600));
    text-transform: uppercase;    
    margin-bottom: 3em;
}

.projects {
    padding: 0;
    margin: 0;
    
}
.info {
    padding-top: 20px;
}
.project__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding: 0;
}
.project__grid__2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    padding: 0;
    margin: 0;
}

.grid_img{
    width: 100%;
    transition: 1s ease;
   
}
.project__grid__item img:hover{
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    transition: 1s ease;
}
p{
    text-transform: uppercase;
    font-size: calc(6px + 14 * (100vw / 1600));
    line-height: calc(28px + 30 * (100vw / 1600));
}
.contact{
    padding-top: 100px;
}

.contact__title{
    height: calc(250px + 100 * (100vw / 1600));
    background-color: #FAF9F9;
}

.footer__title{

   padding-top: calc(20px + 20 * (100vw / 1600));
   padding-left: calc(10px + 10 * (100vw / 1600));
    display: flex;
    justify-content: left;
    align-items: normal;
    margin: 0;
}

.uls{
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-left: calc(15px + 10 * (100vw / 1600));
}

.logo__end{
    width: 100%;
}

.end__img{
    width: 291px;
    
}
.contact__ul{
    padding-left: 40px;
    font-size: calc(10px + 6 * (100vw / 1600));
}
.menu__ul{
    padding-left: 20px;
    margin-right: 20px;
    font-size: calc(10px + 6 * (100vw / 1600));
}

.menu__title{
    color:#59BB40;
    text-transform: uppercase;
    font-weight: 700;
    
}
.menu__ul li {
    list-style: outside none none;
    margin-bottom: calc(2px + 8 * (100vw / 1600));
}


.contact__ul li{
    list-style: outside none none;
    text-transform: none;
    margin-bottom: calc(5px + 5 * (100vw / 1600));
    
}
.contact__ul :first-child{
    color:#59BB40;
    text-transform: uppercase;
    font-weight: 700;
}

.menu__ul a{
    color: var(--text-color);
    text-decoration: none;
}



.anim_a {
  background-image: linear-gradient(
    to right,
    #59BB40,
    #59BB40 50%,
    #232323 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

.anim_a:before{
  content: '';
  background: #59BB40;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.anim_a:hover {
 background-position: 0;
}

.anim_a:hover::before{
  width: 100%;
}

.mouse-parallax {
    position: relative;
    overflow: hidden;
}
.mouse-parallax-bg {
    position: absolute;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 110%;
    height: 110%;
    transition: all 0.1s ease;  
}

