:root{
    --green: rgb(3, 98, 3);
    --black: black;
    --yellow: yellow;
    --white: white;
    --light-color: #666;
    --light-bg:#eee;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    --border: 1rem solid rgb(134, 132, 132);
}

*{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .2s linear;
}
/* 
 @mixin grid($val) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax($val, 1fr));
    gap: 2rem;
} */

html{
    font-size: 62.5%;
    overflow: visible;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;


}

::-webkit-scrollbar{
    width: 0;
}
::-webkit-scrollbar-track{
    background: transparent;
}
::-webkit-scrollbar-thumb{
    background: var(--green);
}

section{
    padding: 5rem 10%;

}

.heading{
    margin-bottom: 3rem;
    font-size: 3rem;
    padding-left: 1rem;
    border-left: 1rem solid var(--green);
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 1rem;
    background: var(--light-color);
    border-radius: 4px;
    text-transform: capitalize;
    font-weight: 600;
    cursor: pointer;
    width: 1 0px;
    transition:  .2s linear;
}
.btn:hover{
    background: var(--green);
    color: var(--white);
}

@keyframes fadeIn{
    0%{
        top: 50%;
       opacity: 0;
    }
}


/* .search-image-container{
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
    padding: 20px;
}
.search-image-container .content{
    position: relative;
    max-width: 800px;
}
.search-image-container #blur.active{
filter: blur(20px);
} */



.header{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--box-shadow);
    padding: 1.2rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: var(--white);
}
.logo{
    font-size: 2.2rem;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
}
.logo span{
    color: var(--green);
    font-weight: 900;
}
.navbar{
    font-size: 1.3rem;
}
.navbar a {
    margin: 0 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
}
.navbar a:hover{
    color: var(--green);
    background: #666;
    padding: 1.5rem;
    border-radius: 1.2rem;
    text-decoration: underline;
    border: none;
    

}
.icons div{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 5rem;
    font-size: 1.5rem;
    background: var(--light-color);
    color: #eee;
    cursor: pointer;
    align-items: center;
    text-align: center;
    border-radius: 5px;
}
.icons div:hover{
    background: var(--light-bg);
    color: var(--black);
}
#menu-btn{
   display: none;
}
.search-form{
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 70rem;
    background: var(--white);
    box-shadow: var(--box-shadow);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    display: none;
    animation: fadeIn .2s linear;
}
  .showSearch{
    display: flex;
}
.search-form input{
    width: 100%;
    padding: 1.2rem 1.4rem;
    background: var(--light-bg);
    font-size: 1.6rem;
    color: var(--light-color);
}
.search-form label{
font-size: 1.4rem;
color: var(--black);
cursor: pointer;
margin: 0.1rem;
}
.search-form label:hover{
    color: var(--green);
}
.login-form{
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 40rem;
    background: var(--white);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    animation: fadeIn .2s linear;
    display: none;
    z-index: 1000;
}
.showForm{
    display: block;
}
.login-form h3{
    font-size: 3rem;
    padding-bottom: 1rem;
    text-transform: uppercase;
    color: var(--green);
}
.login-form .box{
    width: 100%;
    padding: 1.2rem 1.4rem;
    background: var(--light-bg);
    font-size: 1.6rem;
    color: var(--light-color);
    margin: .7rem 0;
}
.login-form .flex{
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}
.login-form label{
    font-size: 1.5rem;
    color: var(--light-color);
    cursor: pointer;
}
.login-form a{
    font-size: 1.2rem;
    color: var(--light-color);
    margin-left: auto;
}
.login-form a:hover{
    color: var(--green);
    text-decoration: underline;
}
.btn{
    width: 100%;
}
.login-form p{
    font-size: 1.1rem;
    padding-top: 1rem;
}
.login-form p a{
    color: #666;
    font-weight: 600;
    
}

.contact-info{
    position: fixed;
    top: 0;
    right: 0;
    width: 30rem;
    height: 100%;
    background: var(--white);
    display: none;
    text-align: center;
    z-index: 1100;
    padding: 0 2rem;
    padding-top: 5rem;
}
.showContactInfo{
    box-shadow: 0 0 0 100vw rgb(200, 197, 197);
    display: block;
}
.contact-info .info{
    font-size: 1.2rem;
    margin-bottom: .5rem;
    padding: 2rem 0;

}
#close-contact-info{
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
    font-size: 4rem;
    color: var(--black);
}
#close-contact-info:hover{
    transform: rotate(90deg);
}
.contact-info .info h3{
    font-size: 2rem;
    color: var(--green);
    padding: 1rem 0;
}
.contact-info .info i{
    font-size: 1.5rem;
}

.contact-info .info p{
    font-size: 1.4rem;
}
.contact-info .share{
    padding-top: 1rem;
    border-top: var(--border);
    margin-top: 1rem;

}
.contact-info .share a{
    font-size: 3rem;
    margin: 0.8rem .5rem;
    color: var(--light-color);
}

.w .slide{
    background: url();
}

.home{
    padding: 4px;
}
.w{
    display: block;
}
 .first-slide{
    min-height: 30rem;
    display: flex;
    align-items: center;
    background: url(/images/painter\ 1.jpg);
    height: 50rem;
     background-position: center;
     background-size: cover
}

.second-slide{
    min-height: 30rem;
    display: flex;
    align-items: center;
    background: url(/images/white\ building.jpg);
    height: 50rem;
     background-position: center;
     background-size: cover;
     margin-top: 5px;
}


.third-slide{
    min-height: 30rem;
    display: flex;
    align-items: center;
    background: url(/images/roselyn-tirado-GDWmu0bFfS4-unsplash.jpg);
    height: 50rem;
     background-position: center;
     background-size: cover;
     margin-top: 5px;
}
 .first-slide::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 50%;
        width: 50%;
        background: linear-gradient(90deg, var(--white) transparent);
    }

.home .content{
    width: 50rem;
    position: relative;
    
}
.content h3{
    font-size: 5rem;
    text-transform: uppercase ;
}

.content p{
    font-size: 1.5rem;
    padding: 1rem 0;
}

.swiper-button-next,
.swiper-button-prev{
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    height: 2rem;
    width: 2rem;
    line-height: 5rem;
    font-size: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 1rem;
    background: var(--white)

}
.swiper-button-next:hover,
.swiper-button-prev:hover{
color: var(--light-bg);
background: var(--green);
border-radius: 0.5rem;
}

.swiper-button-next::after,
.swiper-button-prev::after{
font-size: 3rem;
color: var(--black);
}
.swiper-button-prev{
    right: 4rem;
}
.about .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}
.row .video{
    flex: 1 1 41rem;
}
video{
    width: 100%;
    border-radius: 10px;
    box-shadow: 2px 2px 4px  black;
}
.row .content{
    flex: 1 1 41rem;
}
.row .content h3{
    font-size: 3rem;
}
.row .content p{
    font-size: 1.5rem;
}
.row .content .btn{
    width: 10rem;
}

.box-container{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: center;
    font-size: 1rem;
}
.box-container .box{
    text-align: center;
    background: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 5px;
} 
.box-container .box:hover{
    background: var(--green);
    color: var(--white);
    transition: all 1s;
}
.box-container .box h3{
    font-size: 2rem;
}
.box-container .box p{
    font-size: 1.6rem;
    padding-top: .5px;
}

#search-result{
    width: 80%;
    margin: 10px auto 100px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    

}
/* .search-result{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    width: 80%;
    margin: 10px auto 100px;
    grid-gap: 10px;
} */
 .result-container{
    width: 100vw;
    height: 200px;
    overflow: auto;
    white-space: nowrap;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
 }

#search-result img{
    width: 100px;/* 50% */
    height: auto;/* 130px */
    object-fit: cover;
    border-radius: 5px;
    max-width: 100px;
    max-height: 100px;
    margin: 5px;
    justify-content: center;
   /*  position: absolute;
    left: 50%; */
/*     transform: translateX(-50%); */
   /*  top: 50%;
    transform: translate(-50%, -50%); */
} 


.show-more-btn{
    background: var(--green);
    color: var(--white);
    border: 0;
    outline: 0;
    padding: 5px  10px;
    border-radius: 4px;
    margin: 5px auto 100px;
    cursor: pointer;
    display: none;
}

#close-btn{
    position: fixed;
    top: 15%;
    right: 30px;
    padding: 10px 20px;
    background: var(--light-color);
    color: var(--black);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    font-size: 20px;
    display: none;
}

.services{
    background: var(--light-bg);
}
/* .spacer{
    height: 100vh;
    background: gray;
} */
.services .box-container{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: center;
    font-size: 1rem;
}
.services .box-container .box{
    text-align: center;
    padding: 3rem;
    background: var(--white);
    box-shadow: var(--box-shadow);
    border: var(--border);
    border-radius: 5px;
/*     align-items: center;
    justify-content: center;
    position: relative;
    transform: translateX(-100%);
    filter: blur(5px);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out; */
}
/* .services .box-container .box .show{
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
} */

.services .box-container .box:hover{
    background: var(--green);
    color: var(--white);
}
.services .box-container .box img{
height: 7rem;
margin-bottom: .5rem;
border: 1px solid var(--green);
border-radius: 5px;
}
.services .box-container .box:hover img{
    transform: translateY(-1rem);
}
.services .box-container .box h3{
    font-weight: 2rem;
    padding: 1rem 0;
}
.services .box-container .box p{
    font-size: 1.5rem;
}
.projects{
    background: var(--light-color);
}
.projects h1{
    color: var(--white);
}
.projects .box-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.projects .box-container .box{
    cursor: initial;
}
    .projects .box-container .box:hover{
        background: var(--green);
    }
.projects .box-container .box .project-image{
    height: 20rem;
    overflow: hidden;
}
.projects .box-container .box .project-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.projects .box-container .box:hover .project-image img{
    transform: scale(1.1);
}
.projects .box-container .content{
    display: flex;
    gap: .5rem;
    background: var(--white);
    justify-content: space-between;
}
.projects .box-container .content .info{
    padding: 2rem;
}
.projects .box-container .content .info h3{
    font-size: 1.7rem;
    color: var(--black);
}
.projects .box-container .content .info p{
    font-size: 1.5rem;
    color: var(--black);
}
.projects .box-container .info i{
    width: 5rem;
    font-size: 4rem;
    background: var(--green);
    color: var(--white);
    cursor: pointer;
    text-align: center;
    line-height: 6rem;
}

.review .slide p{
padding: 1.5rem;
background: var(--light-color);
position: relative;
margin-bottom: 3rem;
font-size: 1.6rem;
}
.review .slide p::before{
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 2rem;
    height: 2rem;
    width: 2rem;
    background: var(--light-color);
    transform: rotate(45deg);
}
.review .slide .user{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.review .slide .user img{
    height: 10rem;
    width: 10rem;
    border-radius: 50%;

}

.review .slide .user .info h3{
    font-size: 1.8rem;
}

.review .slide .user .info .stars{
    padding-top: .5rem;

}
.review .slide .user .info .stars i{
    font-size: 1.5rem;
    color: var(--green);
}
.pricing .box-container{ 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.pricing .box-container .box{
   text-align: center;
   padding: 3rem 3rem;
   border: var(--border);
   box-shadow: var(--box-shadow);
}
.pricing .box-container .box i{
    font-size: 4rem;
    color: var(--white);
    width: 5rem;
    height: 5rem;
    border-right: 10%;
    margin-bottom: 0.5rem;
    background: var(--green);
    border-radius: 20%;
    line-height: 5rem;
}
.pricing .box-container .box h3{
    font-size: 1.8rem;
    font-weight: bold;
    padding: .5rem 0;
    color: var(--green);
}

.pricing .box-container .box:hover .price{
color: var(--white);
} 


.price{
    padding: 1rem 0;
    font-size: 5rem;
    font-weight: 5rem;
}
.price span{
    font-size: 2.5rem;
    color: var(--light-color);
}
/* .price span:hover{
    color: var(--light-color);
} */
.list{
    padding: 1rem 0;
}
.list ul{
    padding: 1rem 0;
    font-size: 1.4rem;
}
.pricing .box-container .btn:hover{
    background: var(--black);
}

.contact{
    background: var(--light-color);
}
.contact .heading{
    color: var(--white);
}
.contact .row{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.contact .row .map{
    flex: 1 1 41rem;
    width: 100%;
}
.contact .row form{
    flex: 1 1 41rem;
    background: var(--light-bg);
    padding: 2rem;
}
.contact .row form h2{
    font-size: 2rem;
    padding-bottom: 1rem;
}
.contact .row form .box{
margin: .8rem 0;
width: 100%;
padding: 1.5rem 0;
font-size: 1.5rem;
color: var(--light-color);
}

.contact .row form textarea{
    height: 12rem;
    resize: none;
}
.blog-slider{

text-align: center;
}
.blog-slider .image{
    height: 25rem;
    width: 90%;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: -3rem;
}
.blog-slider .slide .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 1.5s linear;
}
.blog-slider .slide .content{
    padding: 2rem;
    padding-top: 4rem;
    background: var(--white);
    box-shadow: 0 1rem 2rem black;
}
.blog-slider .slide .content h3{
    font-size: 2rem;
}
.blog-slider .slide .content p{
    padding: 1rem 0;
    font-weight: 1.2rem;

}
.blog-slider .image:hover img{
    transform: scale(1.1);
}

.footer{
    text-align: center;
}
.footer .links{
   display: flex;

}
.footer .links .btn{
    margin: .6rem;
    width: 50%;
}
.credit{
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 1.2rem;
}
span{
    color: var(--green);
}















/* .popup{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green);
    z-index: 1100;
    justify-content: center;
    align-items: center;
} */








































/* Media querie, responsiveness */
@media (max-width:1200px){
    .header{
        padding: 1.5rem 2rem;
     /*    background: var(--black); */
    }
    
section{
    padding: 3rem 5%;

}
}

@media (max-width:991px){
html{
    font-size: 55%;
}
.header{

}

section{
    padding: 3rem 2rem;

}
#menu-btn{
    display: inline-block;
}
.navbar{
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top:   var(--border);
    border-bottom: var(--border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.navbar a{
    display: block;
    margin: 2rem;
}
.navbar a:hover{
 background: gray;
 padding: 1.2rem;
}

}

@media (max-width:768px){
/*  .header{

 } */
 .search-form{
    width: 80%;
 }
 .login-form{
    width: 80%;
 }
 .home .slide{
    justify-content: center;

 }
 .content{
    text-align: center;
 }
 .content h3{
 font-size: 1.5rem;
 }
 .btn{
   font-size: 0.9rem;
   padding: 0.4rem 0.8rem;
   width: 100%;
   max-width: 300px;
 }

 .box-container{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    align-items: center;
 }



 #search-result{
    width: 40%;
    margin: 4px auto 2px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 7px;
    

}
#search-result img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    max-width: 100px;
    max-height: 100px;
    margin: 5px;
} 

.services .box-container{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: center;
    font-size: 1rem;
}

.projects .box-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.pricing .box-container{ 
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.footer .links{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}
.result-container > div{
    width: 100%;
}

}


@media (max-width:450px){
    html{
        font-size: 50%;
        
    }
    .home .slide{
        justify-content: center;
    
     }
     .content{
        text-align: center;
     }
     .content h3{
     font-size: 2rem;
     }
     .btn{
        width: 10rem;
        
     }
     
     .services .box-container{
        margin-top: 3rem;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        align-items: center;
        font-size: 1rem;
    }

    .projects .box-container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .pricing .box-container{ 
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    
    .projects .box-container .box .project-image{
        height: 10rem;
        overflow: hidden;
    }
    .footer .links{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    .result-container > div{
        width: 100%;
    }

    }
    

