@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;600;700&display=swap');

:root{
    --main-color:#20bf6b;
}

*{
    font-family: 'Nunito', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform:capitalize;
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width:1rem;
}

html::-webkit-scrollbar-track{
    background: #444;
}

html::-webkit-scrollbar-thumb{
    background: var(--main-color);
    border-radius: 5rem;
}

body{
    background: rgb(255, 255, 255);
}

/* Floating widget */
.floatwhatsapp{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:rgb(0, 0, 0);
	border-radius:50px;
	text-align:center;
    font-size:30px;
	/* box-shadow: 2px 2px 3px #999; */
  z-index:100;
}

.my-float{
	margin-top:16px;
}

/* widget ends */
section{
    padding:2rem 9%;
}

.heading{
    text-align: center;
    padding-bottom: 2rem;
    color:rgb(0, 0, 0);
    text-transform: uppercase;
    font-size: 4rem;
}

.heading span{
    color: #20bf6b;
    text-transform: uppercase;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding:.8rem 3rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    background: #20bf6b;
    color:rgb(0, 0, 0);
    cursor: pointer;
    font-weight: 600;
}

.btn:hover{
    background:#666;
}
.logocontainer{
    /* position:sticky; */
    margin: 40%;
    background: rgb(255, 255, 255);
}
.header{
    position:sticky;
    top:0; left: 0; right: 0;
    z-index: 10000;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding:1.5rem 9%;
}

.header .logo{
    font-weight: bolder;
    color:rgb(0, 0, 0);
    font-size: 1rem;
    height: 100%;
    max-width: 50%;
    display: contents;
}

.headlogo{
    padding: 5px;
    max-width: 20%;
} 
.header .logo span{
    color:#20bf6b;
}

.header .navbar a{
    font-size: 2rem;
    color:rgb(0, 0, 0);
    margin-left: 2rem;
}

.header .navbar a:hover{
    color:#20bf6b;
}

#menu-bars{
    font-size: 3rem;
    color:rgb(0, 0, 0);
    cursor: pointer;
    display: none;
}

.home .content{
    text-align: center;
    padding-top: 0rem;
    margin:2rem auto;
    max-width: 70rem;
}

.home .content h3{
    color:rgb(0, 0, 0);
    font-size: 4.5rem;
    text-transform: uppercase;
}

.home .content h3 span{
    color:#20bf6b;
    text-transform: uppercase;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 350px;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
  }

  .swiper-slide1 {
    width: 450px;
    height: 350px;
    padding: 10px;
  }
/*                  Counter                        */


.project-counter-wrp ul {
    list-style-type: none;
    display: flex;
}

.project-counter-wrp li {
    width: 100%;
    height: 100%;
    padding: 30px 10px;
    text-align: center;
    transition: 0.2s linear;
}

.project-counter-wrp li span {
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;  
}

#number1, #number2, #number3{
    font-size: 40px;
    color: #20bf6b;
    font-family: cursive;
}

/*      counter ends        */

.service .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap:1.5rem;
}

.service .box-container .box{
    border-radius: .5rem;
    background:rgb(255, 255, 255);
    text-align: center;
    padding:2.5rem;
}

.service .box-container .box i{
    height: 6rem;
    width: 6rem;
    line-height: 6rem;
    border-radius: 50%;
    font-size: 2.5rem;
    background:var(--main-color);
    color:rgb(0, 0, 0);
}

.service .box-container .box h3{
    font-size: 2rem;
    color:rgb(0, 0, 0);
    padding:1rem 0;
}

.service .box-container .box p{
    font-size: 1.4rem;
    color:rgb(0, 0, 0);
    line-height: 1.8;
}

.about .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:1.5rem;
}

.about .row .image{
    flex:1 1 45rem;
    padding:1rem;
}

.about .row .image img{ 
    width: 100%;
    border-radius: .5rem;
    border:1rem solid rgb(255, 255, 255);
}

.about .row .content{
    flex:1 1 45rem;
}

.about .row .content h3{
    font-size: 3.5rem;
    color:rgb(0, 0, 0);
}

.about .row .content p{
    font-size: 2rem;
    color:rgb(0, 0, 0);
    padding:1rem 0;
    line-height: 2;
}

.gallery .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap:1.5rem;
}

.gallery .box-container .box{
    position: relative;
    border:1rem solid rgb(255, 255, 255);
    border-radius: .5rem;
    height: 25rem;
    cursor: pointer;
    overflow: hidden;
}

.gallery .box-container .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* .gallery .box-container .box:hover img{
    transform: scale(1.1);
    filter: grayscale();
} */

.gallery .box-container .box .title{
    position: absolute;
    top:-10rem; left:0; right: 0;
    background:rgb(255, 255, 255);
    color:rgb(0, 0, 0);
    text-align: center;
    padding-bottom: 1rem;
    font-size: 2rem;
}

.gallery .box-container .box:hover .title{
    top:0;
}

.gallery .box-container .box .icons{
    position: absolute;
    bottom:-10rem; left:0; right: 0;
    background:rgb(255, 255, 255);
    padding-top: 1rem;
    text-align: center;
}

.gallery .box-container .box:hover .icons{
    bottom: 0;
}

.gallery .box-container .box .icons a{
    font-size: 2rem;
    margin:.5rem 1rem;
    color:rgb(0, 0, 0);
}

.gallery .box-container .box .icons a:hover{
    color:var(--main-color);
}

.reivew .box{
    border-radius: .5rem;
    background: rgb(255, 255, 255);
    padding:2rem;
    position: relative;
	
}

.reivew .box .fa-quote-right{
    position: absolute;
    top:2rem; right: 2rem;
    color:var(--main-color);
    font-size: 5rem;
}

.reivew .box .user{
    display: flex;
    align-items: center;
    gap:1.5rem;
    padding-bottom: 1rem;
}

.reivew .box .user img{
    height:7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.reivew .box .user h3{
    font-size: 2rem;
    color:rgb(0, 0, 0);
}

.reivew .box .user span{
    font-size: 1.5rem;
    color:rgb(0, 0, 0);
}

.reivew .box p{
    line-height: 2;
    color:rgb(0, 0, 0);
    padding:.5rem 0;
    font-size: 1.6rem;
}

.contact form{
    max-width: 70rem;
    margin:1rem auto;
    text-align: center;
}

.contact form .inputBox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact form .inputBox1{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .inputBox input,
.contact form textarea{
    width: 100%;
    background:rgb(226, 224, 224);
    border-radius: .5rem;
    padding:1rem;
    margin:.7rem 0;
    font-size: 1.5rem;
    color:rgb(0, 0, 0);
    text-transform: none;
}
.contact form .inputBox1 input,
.contact form textarea{
    width: 100%;
    background:rgb(226, 224, 224);
    border-radius: .5rem;
    padding:1rem;
    margin:.7rem 0;
    font-size: 1.5rem;
    color:rgb(0, 0, 0);
    text-transform: none;
}

.contact form .inputBox input::placeholder,
.contact form textarea::placeholder{
    color:rgb(0, 0, 0);
    text-transform: capitalize;
}
.contact form .inputBox1 input::placeholder,
.contact form textarea::placeholder{
    color:rgb(0, 0, 0);
    text-transform: capitalize;
}

/* .contact form .inputBox input:focus,
.contact form textarea:focus{
    background:rgb(192, 32, 32);
}
.contact form .inputBox1 input:focus,
.contact form textarea:focus{
    background:#444;
} */

.contact form .inputBox input{
    width: 49%;
}
.contact form .inputBox1 input{
    width: 100%;
}

.contact form textarea{
    resize: none;
}

.footer{
    background:rgb(255, 255, 255);
}

.footer .box-container{
    display: flex;
    justify-content: space-around;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap:1.5rem;

}

.footer .box-container .box h3{
    font-size: 2.5rem;
    padding:1rem 0;
    color:var(--main-color);
}

.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    padding:1rem 0;
    color:rgb(0, 0, 0);
}

.footer .box-container .box a i{
    padding-right: .5rem;
    color:rgb(0, 0, 0);
}

.footer .box-container .box a:hover i{
    padding-right: 1.5rem;
    color:var(--main-color);
}

.footer .credit{
    text-align: center;
    border-top: .1rem solid rgb(255, 255, 255);
    color:rgb(0, 0, 0);
    padding:2rem;
    padding-top: 2.5rem;
    margin-top: 1rem;
    font-size: 2rem;
}

.footer .credit span{
    color:#20bf6b;
}

.footerlogo{
    width: 30%;
    margin: 0;
}
.theme-toggler{
    position: fixed;
    top:10rem; right:-20rem;
    background: rgb(255, 255, 255);
    z-index: 1000;
    width: 20rem;
    text-align: center;
}

.theme-toggler.active{
    right:0;
}

.theme-toggler h3{
    color:rgb(0, 0, 0);
    padding:1rem 0;
    font-size: 2rem;
}

.theme-toggler .buttons{
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    gap:1rem;
    padding:1rem;
}

.theme-toggler .buttons .theme-btn{
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
    cursor: pointer;
}

.theme-toggler .toggle-btn{
    position: absolute;
    top:0; left:-5.9rem;
    padding:1.3rem 1.5rem;
    background:rgb(255, 255, 255);
    cursor: pointer;
}

.theme-toggler .toggle-btn i{
    color:rgb(0, 0, 0);
    font-size: 3rem;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0%{
        transform: rotate(360deg);
    }
}


/* media queries  */

@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding: 1.5rem 2rem;
    }
    .headlogo{
        max-width:80%
    }
    section{
        padding:2rem;
    }
    .swiper-slide1 {
        width: 400px;
        height: 300px;
        padding: 10px;
      }
      .logocontainer{
        position:sticky;
        margin: 0%;
    }

}

@media (max-width:768px){

    #menu-bars{
        display: initial;
    }

    .header .navbar{
        position: absolute;
        top:100%; left:0; right:0;
        border-top: .1rem solid rgb(255, 255, 255);
        background: rgb(255, 255, 255);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .fa-times{
        transform: rotate(180deg);
    }

    .header .navbar a{
        display: flex;
        background:rgb(255, 255, 255);
        border-radius: .5rem;
        padding:3rem;
        margin:1.3rem;
        font-size: 2rem;
    
    }

    .home .content h3{
        font-size: 4rem;
    }
    .footer .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        gap:1.5rem;
    }
    .swiper-slide1 {
        width: 300px;
        height: 200px;
        padding: 10px;
      }
}

@media (max-width:450px){

    html{
        font-size: 50%;
    }

    .home .home-slider .swiper-slide{
        width: 27rem;
        width: 100%;
    }

    .contact form .inputBox input{
        width: 100%;
    }
    .swiper-slide1 {
        width: 300px;
        height: 200px;
        padding: 10px;
      }
}



/* popup form */

/* popup form */



.login-popup{
	position: fixed;
	left: 0;
	top: 0;
    margin-top: 20px;
	width: 100%;
	height: 100%;
	z-index: 1099;
	background-color:rgba(203, 197, 197, 0.6);
	visibility: hidden;
	opacity: 0;
	transition: all 1s ease;
}
.login-popup.show{
	visibility:visible;
	opacity: 1;
}
.login-popup .box{
	background-color:rgb(255, 255, 255);
	position: absolute;
	left: 50%;
	top:50%;
	transform:translate(-50%,-50%);
	display: flex;
	flex-wrap: wrap;
	opacity: 0;
	margin-left: 50px;
	transition: all 1s ease;

}
.login-popup.show .box{
	opacity: 1;
	margin-left: 0;
}


@keyframes zoomInOut{
	0%,100%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.1);
	}
}
.login-popup .box .form{
	flex:0 0 50%;
	max-width: 50%;
	padding:40px 30px;
}

.login-popup .box .form h1{
	color:#000000;
	font-size: 30px;
	margin:0 0 30px;
}
.login-popup .box .form .form-control{
	height: 45px;
	margin-bottom: 30px;
	width: 100%;
	border:none;
	border-bottom:1px solid #cccccc;
	font-size: 15px;
	color:#000000;
}
.login-popup .box .form .form-control:focus{
	outline: none;
}
.login-popup .box .form label{
	font-size: 15px;
	color:#555555;
}

.login-popup .box .form .btn:focus{
	outline: none;
}

.login-popup .box .form .close{
	position: absolute;
	right: 10px;
	top:0px;
	font-size: 30px;
	cursor: pointer;
}
.close{
    width: 20px;
    align-self:flex-end;
    color: #ffffff;
    
}
.closeContainer{
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    height: 20px;
}
.closebutton{
    background: rgb(255, 255, 255);
    color: #000000;
}
/*responsive*/
@media(max-width: 767px){
    .login-popup{
        width: 100%;
    }
	.login-popup .box{
		width: calc(100% - 30px);
	}
	.login-popup .box .img-area{
		display: none;
	}
	.login-popup .box .form{
		flex: 0 0 100%;
        max-width: 100%;
	}
}












