

/* GLOBAL CSS */
*{
    font-family: 'Rowdies', sans-serif;
    box-sizing:border-box;
}
@media (min-width: 1200px) {
    /* bootstrap container on xl */
    .container {
        max-width: 1820px !important;
    }}
html {
    scroll-behavior: smooth;
    
  }

a:hover{
    cursor: pointer;
}
body{
    margin: 0 !important;
    width: 100%;
    max-width: 1920px;
    overflow-x: hidden;
}
/* END OF GLOBAL CSS */


/* START OF INTRODUCTION SECTION CSS */
.scroll-navbar{
    transition: 1s all;
    position:sticky !important;
    top: 0;
}
.scrolled {
    transition: max-height 100ms ease-in;
    transition: background-color 100ms linear;
    background-color: rgba(255,255,255,0.95) !important;
    max-height: 140px !important;
  }

.navbar{
    transition: 1s all;
    width: 100vw;
    max-width: 1920px;
    z-index: 1;
    background-color: rgba(255,255,255,0.7);
    max-height: 180px;
    
}
.navbar-brand{
    font-size: 96px !important;
    padding: 0 !important;
    color: #fff !important;
    transition: 0.5s all;
}
.navbar-brand:hover{
    transform: scale(1.1);
}
.nav li{
    font-size: 36px;
    margin-left: 40px;
    margin-right: 40px;
    font-weight: 400;
    line-height: 100px;
    transition: 0.5s all;
    color:#000000;
}
.a_underline {
    text-decoration: none;
    position: relative;
  }
.a_underline:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: -7px;
    left: 0;
    background-image: -moz-linear-gradient( 0deg, #2A741C 0%, #2A741C 100%);
    background-image: -webkit-linear-gradient( 0deg, #2A741C 0%, #2A741C 100%);
    background-image: -ms-linear-gradient( 0deg, #2A741C 0%, #2A741C 100%);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.5s cubic-bezier(1, 0.25, 0, 0.75) 0s;
    transition: all 0.5s cubic-bezier(1, 0.25, 0, 0.75) 0s;
}
.a_underline:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.slide-left{
    transition: all 0.5s;
}
.slide-left:hover{
    transform: scale(1.2);
    cursor: pointer;
}
.bi-caret-left-square-fill ,.bi-caret-right-square-fill {
    color:rgba(255, 255, 255, 0.8);
}
.intro-sentence{
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 30px;
    color: #81FF7E;
    text-shadow: 0px 1px 8px #000000;
}
.h-intro{
    font-style: normal;
    font-weight: normal;
    font-size: 59px;
    line-height: 79px;
    text-align: center;
    color: #FFFFFF; 
    text-shadow: 0px 1px 8px rgba(0, 0, 0, 0.75);
}
button.intro-button{
    width: 300px;
    height: 60px;
    color:#fff;
    font-size: 30px;
    line-height: 45px;
    border: none;
    text-transform: uppercase;
    filter: drop-shadow(-3px 5px 13px rgba(0, 0, 0, 0.4));
    background-color: #30741c ;
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0% 100%);
    transition: 0.5s all;
}
button.intro-button:hover{
    width: 350px;
    cursor: pointer;
    letter-spacing: 0.1em;
}
#start{
    max-height: 1080px; 
}
.img-one{
    background: url("../img/ogrod1.webp") no-repeat center center; 
    background-color: #cccccc;
    height: 100vh;
    width: 100%;
    max-height: 1080px;
}
.img-two{
    background: url("../img/realizacja-4.webp") no-repeat center center;
    background-size: cover;
    background-color: #cccccc;
    height: 100vh;
    width: 100%;
    max-height: 1080px;
}
.img-three{
    background: url("../img/baner-3.webp") no-repeat center center; 
    background-color: #cccccc;
    height: 100vh;
    width: 100%;
    max-height: 1080px;
}
.slideshow-container {
    
    max-width: 1920px;
    
    position: relative;
    top:0;
  }
  .mySlides {
    display: none;
    opacity: 1 !important;
  }
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.2);
  }
  .text {
    padding-left:10%;
    padding-right:10%;
    position: absolute;
    width: 100%;
    text-align: center;
  }
  .rd-part{
    bottom: 10%;
  }
  .nd-part{
    top: 41%;
  }
  .st-part{
    top: 32%;
  }
  .animation-one {
     
    -webkit-animation-name: animation1;
    -webkit-animation-duration: 2s;
    animation-name: animation1;
    animation-duration: 2s;
  }
  .animation-two {
     
    -webkit-animation-name: animation2;
    -webkit-animation-duration: 3s;
    animation-name: animation2;
    animation-duration: 3s;
  }
  
  @keyframes animation1 {
    0%   {
        transform: scale(1.2);
    
    }
    100% { transform: scale(1);
        }
  }
  
  @keyframes animation2 {
    0%   {
        transform: scale(0.7);
        opacity: 0.8;
    
    }
    100% { transform: scale(1);
        opacity: 1;}
  }


  
/* END OF INTRODUCTION SECTION CSS */
/* START OF OFFER SECTION CSS */
#offer-images-container{
    margin-top: 10rem;
}
.offer-img-middle{
    width: 400px;
    border-radius: 50%;
    height: 400px;
    border: 3px solid #2A741C;
    transition: 0.5s all;
}
.offer-img-small{
    height: 200px;
    border-radius: 50%;
    width: 200px;
    position: absolute;
    top:120px;
    left:15%;
        border: 3px solid #2A741C;
    transition: 0.8s all;
}
.offer-img-small:hover{
    transform: scale(1.5);
    cursor: pointer;
}
.offer-img-middle:hover{

    transform: scale(0.8);
    cursor: pointer;
}

#offer-section-bg{
    background: url("../img/offer-bg.webp");
    opacity: 0.08;
    filter: blur(8px);
    z-index: 0;
    width: 100%;
    max-width: 1920px;
    min-height: 100vh;
    position: absolute;
    
}
#offer-section{
    z-index: 1;
}
.offer-list-heading{
    font-size: 28px;
    font-weight: 400;
    line-height: 50px;
    vertical-align: center;
    letter-spacing: 0em;
}
.offer-list-heading svg{
    fill: #2A741C;
    height: 45px;
    width: 45px;
    transform: translateY(12px);
    margin-right: 10px;

}
.offer-subtitle{
    font-size: 36px;
    font-weight: 300;
    line-height: 45px;
    letter-spacing: 0em;
    
}
.offer-right p{
    padding-left:68px
}
.offer-subtitle-green{

    font-size: 36px;
    font-weight: 300;
    line-height: 45px;
    letter-spacing: 0em;
    transform: translateY(-10px);

    color: #2A741C;

}
.p-title{
    display: block;
    font-size: 30px;
    color:#2A741C;
    font-weight: 300;
}
.offer-left p{
    font-size: 26px;
    font-weight: 300;
}
/* END OF OFFER SECTION CSS */


/* START OF WHOAMI SECTION CSS */
#whoami-section{
    margin-top: 15rem;
    margin-bottom: 15rem;
}
.whoami-img{

    width: 300px;
    height: 400px;
}
.portrait-container{
    max-width: 300px;
    height: 400px;
}
.whoami-contact-card{
    text-align: center;
    transition: 0.5s all;
}
.whoami-contact-card svg{
    width: 56px;
    color:#2A741C;



}
.whoami-contact-card:hover{
    transform: translateY(-20px);
    cursor: pointer;
    
}

.rectangle-large{
    position: absolute;
    width: 115px;
    height: 115px;
    z-index: -1;
    background: #2A741C;
    bottom:-40px;
    left:-40px;
}
.rectangle-small{
    position: absolute;
    width: 50px;
    height: 50px;
    top:-20px;
    background: #2A741C;
    right: -20px;

}
.whoami-blured-img{
    position: absolute;
    background-image: url("../img/ogrod1.webp");
    width: 192px;
    height: 266px;
    bottom: -50px;
    z-index: -1;
    right: -60px;
    opacity: 0.6;
    filter: blur(6px);

}
/* END OF WHOAMI SECTION CSS */
/* Start of chosen productions section */
/* END of chosen productions section */


/* START OF OPINIONS SECTION CSS */
#opinions{
    margin-bottom: 15rem;
}

#opinions-container{
    max-width: 1440px !important;
}
.opinion-box{
    position: relative;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;

    padding:1rem;
    min-height: 400px;
    box-shadow: 0px 4px 8px 8px rgba(42, 116, 28,0.25);
    max-width: 400px;
    transition: 0.5s all;
}
.opinion-box:hover{
    cursor: pointer;
    transform: scale(1.1);
}

.opinion-stars{
}
.opinion-stars svg{
    color: #382009;
    display: inline-block;
    width: 25px;
    height: 25px;
}
.opinion-user{
    position: absolute;
    bottom:5px;
    right: 28%;
    color: #2A741C;
}
.opinion-user svg{
    color: #382009;
    height: 60px;
    width: 60px;
}
.opinion-user span{
    display: inline-block;
    transform: translateY(-20px);
}
.opinion-text svg{
    color:#448538;
    display: inline-block;
    width: 25px;
    height: 25px;
}


/* END OF OPINIONS SECTION CSS */



/* Start of contact section css */
#contact-contact-form{
    margin-bottom: 15rem;
}

.section-title{
font-size: 48px;
font-style: normal;
font-weight: 400;
line-height: 60px;
letter-spacing: 0em;
color: #2A741C;

}
.contact-form-wrapper{
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 4px 15px 15px rgba(0, 0, 0, 0.25);
}
.contact-form-btn{
    background: #2A741C !important;
}

/* End of contact section css */


/* START OF OPINIONS SECTION CSS */



/* END OF OPINIONS SECTION CSS */



@media(max-width:1327px){
      .nd-part{
        top: 36%;
      }
      .st-part{
        top: 33%;
      }
    
}
@media(max-width:1200px){
    .h-intro{
        font-size:45px;
    }
    .nd-part{
        top: 33%;
      }
      .st-part{
        top: 30%;
      }

    .rd-part{
        bottom: 3%;
      }
   .slide-arrow{
    height: 50px;
    width: 50px;
   }
    

    .opinions-content-wrapper{
        flex-direction: column;
        align-items: center;
    }
    .opinion-box{
        max-width: 600px;
        margin-bottom: 50px;
    }


}

@media(max-width:992px){
    .h-intro{
        font-size:30px;
    }
    .nd-part{
        top: 33%;
      }
      .st-part{
        top: 30%;
      }
    .rd-part{
        bottom: 4%;
      }
    .prev,.next{
        display: none;
    }
    .offer-right p{
        padding-left: unset;
    }
    .offer-img-small{

        position: unset;

    }
    
}
@media (max-width:768px){
    .img-one{
        height: 100vh;
        min-height: 500px;
    }
    .img-two{
        height: 100vh;
        min-height: 500px;


    }
    .img-three{

        height: 100vh;
        min-height: 500px;
    }
    .offer-img-small:hover{
        transform: scale(1.1);
    }
    .offer-img-middle:hover{
    
        transform: scale(1.1);

    }
    
    .h-intro{
        font-size:30px;
    }
    .nd-part{
        top: 33%;
      }
      .st-part{
        top: 30%;
      }
    .offer-img-middle{
        width: 400px;
        height: 400px;
    }
    .offer-img-small{

        width: 400px;
        height: 400px;
    }
    #offer-images-container{
        text-align: center !important;
    }

}
@media (max-width:576px){
    .st-part{
        top:24%;
    }
    .rd-part{
        bottom: 8%;
      }
      .nd-part{
        top: 35%;
      }
    .h-intro{
        font-size:22px;
        line-height: unset;
    }
    
    .whoami-cotact-icons-container{
        flex-direction: column;
    }
    .whoami-contact-card{

        height: 200px;
        font-size: larger;
    }
    .whoami-contact-card svg{
        width: 100px;
        color:#2A741C;
    
    
    }

    button.intro-button{
        width: 200px;
        height: 50px;
        font-size: 20px;
    }
    button.intro-button:hover{
        width: 240px;
        cursor: pointer;
        letter-spacing: 0.1em;
    }

    
}
@media (max-width:420px){
    .offer-list-heading svg{
        display: block;
        height: 45px;
        width: 45px;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 3rem;
    
    }
    .opinion-box{
        height: 420px;
        font-size: 20px;
    }
    .offer-img-middle{
        width: 250px;
        height: 250px;
    }
    .offer-img-small{
        display: none;
    }
    .rectangle-small{
        display: none;
    
    }
    .whoami-blured-img{
        display: none;
    
    }
    .section-title{
        font-size: 36px;
    }
    
}
@media screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
    .slideshow-container {
    
        height: 200vh;
        
        position: relative;
        top:0;
        margin-bottom:50px;
      }
      .img-one{
        height: 200vh;
        width: 100%;
        max-height: 1080px;
    }
    .img-two{
        height: 220vh;
        width: 100%;
        max-height: 1080px;
    }
    .img-three{
        height: 200vh;
        width: 100%;
        max-height: 1080px;
    }
    nav{
        position: relative !important;
    }
  }