@import url(https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap);
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
.toggle{
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgb(0, 0, 0) url(images/menu.png);
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1000;
}
.logo{
    text-align: right;
}
.toggle.active{
    background: #000 url(images/close.png);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
}

section{
    padding: 100px;
    min-height: 100vh;
}
.banner{
    position: relative;
    width: 100%;
}
.banner .imgSidebar{
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 100%;
}
.banner .imgSidebar img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .contentBx, .sidebar{
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 500px);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
}
.logoText{
    position: absolute;
    top: 40px;
    left: 100px;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #333;
    color: #fff;
    padding:0 5px ;
}
.banner .contentBx h4{
    font-size: 1.5em;
    color: #333;
    font-weight: 300;
}

.banner .contentBx h4 span{
    color:#00bcd4 ;
    font-size: 1.5em;
    font-weight: 700;
}
.banner .contentBx h2{
    font-size: 3em;
    color: #08680d;
    line-height: 1em;
}
p{
    font-size: 1.1em;
    margin:20px 0 ;
    font-weight: 300;
}
.btn{
    background:#00bcd4;
    color: #fff;
    padding: 10px 30px;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
}
.btn1{
    transform: translate(-50%, -50%);
    position:fixed;
    padding-bottom: 20px;
 
}
button{
    background: none;
    color:#08680d;
    width:100px;
    height: 50px;
    border-radius:10px;
    border:1px solid #08680d;
    font-size: 18px;
    transition: .6s;
    overflow: hidden;
}









.sidebar{
    position: fixed;
    background: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: 0.5s;
    padding: 40px;
    z-index: 100;
    right: -100%;
}
.sidebar.active{
    right: 0;
}
.sidebar ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sidebar ul li{
    list-style: none;
}
.sidebar ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    margin: 10px 0;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.sidebar ul li a:hover{
    color: #08680d;
}
.sci{
    position: absolute;
    left: 100px;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
li{
    padding-right: 15px;
}
.sci li{
    margin-right: 10px;
    list-style: none;
}
.sci li img{
    transform: scale(0.8);
    opacity:1;
}
.sci li img:hover{
    transform: scale(1.5);
    opacity:1;
}

.title{
    width: 100%;
    text-align: center;
}
.title h2{
    position: relative;
    color:#08680d;
    font-size: 1.8em;
    font-weight:700 ;
    letter-spacing: 1px;
}
.title p{
    max-width: 700px;
    display: inline-block;
}
.title h2::before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: #000;
}
.title.white h2,
.title.white p
{
color: #08680d;
}
.title.white h2::before{
    background: #fff;
}
.about{
    background: rgb(0, 0, 0);
}
.about .content{
    display:flex ;
    justify-content: space-between;
    margin-top: 40px;
    
}
.about .content .textBx{
    min-width: 49%;
    width: 49%;
}
.about .content .textBx p{
    color:#fff
}
.about .content .imgBx{
    margin-left: 40px;
}
.about .content .imgBx img{
    max-width: 600px;
    padding-top: 25px;
    padding-right: 50px;
  
  
    
}
.services .content{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 100px;
   
    
    
}
.services .content .servicesBx{
    padding: 40px 20px;
    width: 300px;
    margin: 20px;
    transition: 0.5s;
    text-align: center;
    background: #f5f5f5;
}
.services .content .servicesBx:hover{
    background: #000;
}
.services .content .servicesBx img{
max-width: 80px;
transition: 0.5;
}

.services .content .servicesBx:hover img{
filter: invert(1);
}
.services .content .servicesBx h2{
    margin-top: 20px;
    margin-bottom:10px;
    font-size: 20px;
    font-weight: 600;
    transition: 0.5s;
}
.services .content .servicesBx:hover h2{
    color: #fff;
}
.services .content .servicesBx p{
    margin: 0;
    transition:0.5s;
}
.services .content .servicesBx:hover p{
    color: #fff;
}
.work .content{
    display:flex ;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 100px;
}
.work .content .workBx{
    position: relative;
    width: 265px;
    height: 265px;
    margin: 10px;
    transition: 0.5s;
    text-align: center;
}
.work .content .workBx .imgBx,
.work .content .workBx .textBx{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work .content .workBx .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work .content .workBx .textBx{
    background: #000;
    opacity: 0;
    transition: 0.5s;
}

.work .content .workBx:hover .textBx{
opacity: 1;
}
.work .content .workBx:hover .textBx h3{
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1em;
}

.contact{
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column ;

}
.contact .contactForm{
    position: relative;
    width: 700px;
    margin-top: 20px;
}

.contact .contactForm .row{
    width: 100%;
    display: flex;
}
.contact .contactForm .row .col150{
    width: 50%;
    margin: 10px;
}
.contact .contactForm .row .col100{
    width: 100%;
    margin: 10px;
    text-align: center;
}

.contact .contactForm .row input,
.contact .contactForm .row textarea{
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    background: #ffffff;
    color: rgb(0, 0, 0);
    font-size: 16px;
    resize: none;
    border-radius: 10px;
}
.contact .contactForm .row textarea{
    height: 100px;
}
.contact .contactForm .row input[type="submit"]{
    background:#034e06 ;
    color:#fff;
    padding: 10px 30px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    max-width: 150px;
}
.form{
    color: #fff;
  padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}
.contact-info{
    display: flex;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.card{
    background: #000000;
    padding:0 20px;
    margin: 0 10px;
    width: calc(33% - 20px);
    
    display: flex;
    flex-direction:column ;
    justify-content: center;
    align-items: center;
    color: #08680d;
    padding-top: 35px;
}
.card-icon{
    font-size: 25px;
    background: #ffffff;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px !important;
    border-radius: 50%;
    transition: 0.3s linear;
}
.card:hover .card-icon{
    background:none;
    color: #fff;
    transform: scale(1.6);
}
.card p{
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    max-height: 0px;
    opacity: ;
    transition: 0.3s linear;
    color: #fff;
}
.card:hover p{
    max-height: 40px;
    opacity: 1;
}

.paragraf{
    text-align: justify
}
.tooltipcustom {
    position: relative; 
    display: inline-block;
  }
  .tooltipcustom .tooltiptext {
    visibility: hidden;
  
    width: 150px;
    background-color: #08680d;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
  }
  .tooltipcustom:hover .tooltiptext {
    visibility: visible;
  }
  .card a {
    text-decoration: none;
    color: #fff;
  }   
a{
    text-decoration: none;
}







@media(max-width: 991px)
{
    .banner .imgSidebar
    {
        display: none;
    }

.banner .contentBx, .sidebar
{
    width: 100%;
    padding:40px
}
.logoText{
    left:40px;
}
.toggle{
    right: 40px;
}
.sci{
    left: 40px;
}
section{
    padding: 40px;
}
.about .content{
flex-direction: column;
}
.about .content .textBx{
    min-width: 100%;
    width: 100%;
}

.about .content{

    margin-top: 0;
}
.about .content .imgBx{
    margin-left: auto;
    margin-right: auto;
}
.services .content .serviceBx{
    padding: 30px 20px;
    max-width: 340px;
    margin: 10px;
}
.contactForm {
    width: 100% !important;
}
.contactForm .row{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.contact .contactForm .row .col150{
    width: 100%;
    margin: 10px;
}
.sidebar ul li a{
    font-size: 1.5em;
}
.contact-info{
    flex-direction: column;
}
.card{
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
}
.about .content .imgBx img{
    max-width: 400px;
}

@media(max-width:500px)
{
    .services .content .servicesBx,
    .work .content .workBx{
        max-width: 100%;
        width: 100%;
        margin: 10px 0;
    }
    .about .content .imgBx img{
        max-width: 350px;
    }
    .services .content .servicesBx {
        padding: 40px 20px;
        width: 300px;
    }
}







