*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}
img{
	width: 12px;
}
a {
	color: #1f1f1f;
	text-decoration: none !important;
	outline: none !important;
}

.header_top {
	min-height: 30px;
    background-color: #3498db;
    padding: 5px 0px;
}


.header_top ul {
	list-style: none;
	margin: 10px 0;
	padding: 0;
}

.header_top ul li {
	font-size: 14px;
	color:black;
	float: left;
   
}

.header_top ul li i {
	margin: 0 2px 0 0;
}

.header_top ul li i {
	color:white;
	transition: ease all 0.2s;
	font-size: 18px;
	margin-right: 5px;
}
@media(max-width: 700px){
    .header_top {
        min-height: 50px;
        background-color: #3498db;
        padding: 5px 0px;
    }
    

    .header_top ul li {
        font-size: 14px;
        color:black;
        float: left;
    }
    
    .header_top ul li i {
        color:white;
        transition: ease all 0.2s;
        font-size: 14px;
        margin-right: 5px;
    }
    
}

.header{
	min-height: 100vh;
	width: 100%;
	background-image: none;
	background-position: center;
	background-size: cover;
	position: relative;
}
nav{
	display: flex;
	padding: 0% 2%;
	justify-content: space-between;
	align-items: center;
}
nav img{
	width: 100px;
    padding: auto;
    transition: none;
    -webkit-animation-name: none;
    animation-name: none;
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
    z-index: 100000;
}
.nav-links ul li a{
	color: black;
	text-decoration: none;
    font-weight: bold;
	font-size: 14px;
}
.nav-links ul li a:hover{
	color:black;
    border-color:black;
}
.nav-links ul li:hover::after{
	width: 100%;
}
nav .fa{
	display: none;
}

@media(max-width: 700px){
.text-box h1{
	font-size: 20px;	
}
.nav-links ul li{
	display: block;
}
.nav-links{
	position: fixed;
	background: #3498db;
	height: 100vh;
	width: 200px;
	top: 0;
	right: -200px;
	text-align: left;
	z-index: 2;
	transition: 1s;
}
#logo{
    font-size: 10px;
}
#logo-s{
    font-size: 10px;
}

nav .fa{
	display: block;
	color: black;
	margin: 10px;
	font-size: 22px;
	cursor: pointer;
}
.nav-links ul{
	padding: 30px;
}
}

.slider{
    position: relative;
    width: 100%;
    background: #ffffff;
}
.myslider{
    height: 655px;
    display: none;
    overflow: hidden;
}
.prev, .next{
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    font-size: 50px;
    padding: 15px;
    cursor: pointer;
    color:#ffff;
    transition: 0.1s;
    user-select: none;
}
.prev:hover, .next:hover{
    color: #3498db;
}
.next{
    right: 0;
}
.dotsbox{
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom:20px;
    cursor: pointer;
}
.dot{
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 3px solid whitesmoke;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}
.active, dot:hover{
    border-color: #3498db;
}


.fade{
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade{
    from{opacity: 0.8;}
    to{opacity: 1}
}
@keyframes fade{
    from{opacity: 0.8;}
    to{opacity: 1}
}

.txt{
    position: absolute;
	text-align: center;
    color: black;
    letter-spacing: 2px;
    line-height: 35px;
    top: 40%;
    left: 15%;
    -webkit-animation-name: posi;
    -webkit-animation-duration: 2s;
    animation-name: posi;
    animation-duration: 2s;
    z-index: 1;
}

.txt h1{
	text-align: center;
    color:black;
    font-weight: bold;
    margin-bottom: 20px;
}
.txt p{
    font-weight: bold;
    font-size: 20px;
}

.txt{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.txt h1{
	font-size: 40px;
}
.txt p{
	margin: 10px 0 40px;
	font-size: 20px;
	color: #fff;
}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: rgb(0, 0, 0);
	border: 1px solid black;
	padding: 12px 34px;
	font-size: 15px;
	background: transparent;
	position: relative;
	cursor: pointer;
    
}
.hero-btn:hover{
	border:1px solid #3498db;
	background: #3498db;
	transition: 1s;
}
.myslider img {
    transition: scale(1.5,1.5);
    -webkit-animation-name: zoomin;
    -webkit-animation-duration: 10s;
    animation-name: zoomin;
    animation-duration: 10s;
}
@-webkit-keyframes zoomin{
    from{transform: scale(1,1);}
    to{transform: scale(1.5,1.5);}
}
@keyframes zoomin{
    from{transform: scale(1,1);}
    to{transform: scale(1.5,1.5);}
}

@media screen and(max-width:700px){
    .myslider{
        height: 500px;
    }
    .txt{
        line-height: 50%;
        top: 50%;
        left: 50%;
        -webkit-animation-name: posi2;
        -webkit-animation-duration: 2s;
        animation-name: posi2;
        animation-duration: 2s;
    
    }
    @-webkit-keyframes posi2{
        from{top: 35%;}
        to{top: 50%;}
    }
    @keyframes posi2{
        from{top: 35%;}
        to{top: 50%;}
    }
    .txt h1{
        font-size: 40px;
    }
    .txt p{
        font-size: 13px;
    }
}

@media screen and (max-width:700px){
    .txt h1{
        font-size: 30px;
    }
    .sign{
        margin-right: 20px;
    }
    .sign a{
        font-size: 12px;
    }
    .dotsbox{
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        bottom:20px;
        cursor: pointer;
    }
    .dot{
        display: inline-block;
        width: 12px;
        height: 12px;
        border: 3px solid whitesmoke;
        border-radius: 50%;
        margin: 0 10px;
        cursor: pointer;
    }
    .active, dot:hover{
        border-color: #3498db;
    }
    .myslider img {
        transition: scale(1.5,1.5);
        -webkit-animation-name: zoomin;
        -webkit-animation-duration: 10s;
        animation-name: zoomin;
        animation-duration: 10s;
    }    
}

/*------------intro--------------*/

.intro{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}
.intro h1{
	text-align: center;
	padding-top: none;
	margin-bottom: 60px;
	font-weight: 600;
	position: relative;
}
.intro h1::after{
	content: ' ';
	background: #3498db;
	width: 100px;
	height: 5px;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}

.intro-col p{
	color: black;
	font-size: 18px;
	font-weight: 300;
	line-height: 22px;
    text-align: left;
	padding: 10px;
}
.row{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
	
}
.intro-col{
    flex-basis: 48%;
    padding: 30px 2px;
    position: relative;
}
.intro-col img{
    width: 100%;
    height:100%;
}

.intro-col ul li{
    float: left;
    width: 100%;
    margin: 5px 0;
    font-size: 18px;
    color: #333;
    font-weight: 300;
    box-sizing: border-box;
    text-align: left;
    color: black;
	line-height: 22px;
	padding: 0;
}

/*-------Intro end-------*/


/*------productss------*/
.container1{
	width: 100%;
	height: 100%;
	padding: 0 8%;
    padding-bottom: 5%;
}
.container1 h1{
	text-align: center;
	padding-top: 10%;
	margin-bottom: 60px;
	font-weight: 600;
	position: relative;
}
.container1 h1::after{
	content: ' ';
	background: #3498db;
	width: 100px;
	height: 5px;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}
p
{
	color: #777;
    text-align: center;
	font-size: 18px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}

.row{
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
	grid-gap: 30px;
}
.products-col{
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    background: whitesmoke;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
}
.products-col img{
    height: 200px;
	width: 200px;
}
.products-col h3{
    color: black;
    padding: 10px 0;
    font-size: 20px;
}
.products-col p{
    color: black;
    font-size: 14px;
    line-height: 1.6;
}
.btn{
    color:whitesmoke;
    border: none;
    outline: none;
    font-size: 17px;
    margin-top: 10px;
    padding: 8px 15px;
    background:#3498db;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
}
.products-col:hover{
    letter-spacing: 1px;
    transform: scale(1.03);
    box-shadow: 0 10px 15px rgba(0,0,0,0.7);
}
@media(max-width:700px){
    .products-col h3{
        font-size: 15px;
    }
    .btn{
        font-size: 14px;
        border-radius: 5px;
    }
    
}


/*-----Products end-------*/

/*-----service------*/
body{
    background: whitesmoke;
}
.services{
    margin: 10px auto;
    padding: 0 10%;
    padding-bottom: 5%;
    text-transform: capitalize;
}
.services h1{
	text-align: center;
	padding-top: 5%;
	margin-bottom: 60px;
	font-weight: 600;
	position: relative;
}
.services h1::after{
	content: ' ';
	background: #3498db;
	width: 100px;
	height: 5px;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}
p
{
	color: #777;
    text-align: center;
	font-size: 18px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}

.container{
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(270px,1fr));
}
.box{
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    background: whitesmoke;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
}
.box img{
    height: 200px;
	width: 200px;
}
.box h3{
    color: black;
    padding: 10px 0;
    font-size: 18px;
}
.box p{
    color: black;
    font-size: 14px;
    line-height: 1.6;
}
.btn{
    color:whitesmoke;
    border: none;
    outline: none;
    font-size: 17px;
    margin-top: 10px;
    padding: 8px 15px;
    background:#3498db;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
}
.box:hover{
    letter-spacing: 1px;
    transform: scale(1.03);
    box-shadow: 0 10px 15px rgba(0,0,0,0.7);
}
@media(max-width:700px){
	.row{
		flex-direction: column;
	}
    .box h3{
        font-size: 15px;
    }
    .btn{
        font-size: 14px;
        border-radius: 5px;
    }
    
}


/*-------services end-------*/

/*-------feedback---------*/
a{
    text-decoration: none;
}
#testimonials{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    
}
.testimonial-heading{
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testimonial-heading h1{
    font-size: 2.2rem;
    font-weight: 600;
    background-color: #3498db;
    color: black;
    padding: 10px 20px;
}
.testimonial-heading span{
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
	padding-top: none;
	margin-bottom: 60px;
	font-weight: 600;
	position: relative;
}

.testimonial-heading span::after{
	content: ' ';
	background: #3498db;
	width: 100px;
	height: 5px;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}

.testimonial-box-container{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 4%;
}
.testimonial-box{
    width: 305px;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.2);
    background-color: whitesmoke;
    padding: 40px;
    margin: 15px;
    cursor: pointer;
}
.profile-img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}
.profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.profile{
    display: flex;
    align-items: center;
}
.name-user{
    display: flex;
    flex-direction: column;
}
.name-user strong{
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.name-user span{
    color: #979797;
    font-size: 0.8rem;
}
.reviews{
    color: #f9d71c;
}
.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.client-comment p{
    font-size: 0.9rem;
    color: #4b4b4b;
}
.testimonial-box:hover{
    transform:translateY(-10px);
    transition: all ease 0.3s;
}
@media(max-width:1060px){
    .testimonial-box{
        width: 45%;
        padding:10px;
    }
}
@media(max-width:1060px){
    .testimonial-box{
        width: 100%; 
      }
      .testimonial-heading h1{
        font-size: 1.4rem;
      }
}
@media(max-width:340px){
    .box-top{
        flex-wrap:wrap;
        margin-bottom: 10px;
    }
    .reviews{
        margin-top: 10px;
    }
}
/*--------feedback end------*/
.contact{
    margin: 10px auto;
    padding: none;
    padding-bottom: 10px;
    text-transform: capitalize;
}
.contact h1{
	text-align: center;
	padding-top: 0%;
	margin-bottom: 5%;
	font-weight: 600;
	position: relative;
}
.contact h1::after{
	content: ' ';
	background: #3498db;
	width: 100px;
	height: 5px;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}

.contact{
    width:80%;
    margin: auto;
    padding: 80px 0;
}

.contact iframe{
width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
        font-size: 20px;
        color: #3498db;
        margin: 10px;
        margin-right: 30px;
}
.contact-col div p{
    padding: 0;
    text-align: left;
    font-size: medium;
}
.contact-col div h5{
    font-size: medium;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact-col input{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.contact-col textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 5px;
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;

}


.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: black;
    border-radius: 5px;
}

.contact-inputs:focus{
    border: 2px solid #ff994f;
}

.contact-inputs::placeholder{
    color: #a9a9a9;
}


@media (max-width: 700px){
    .contact-col div p{
        font-size: 15px;	
    }
    .contact-col div h5{
        font-size: 15px;
    }
    .contact-col input, .contact-col textarea{
        width: 90%;
        padding: 10px;
        margin-bottom: 17px;
        outline: none;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }
    
} 
/*-------footer-------*/

#footer {
    background: #2d2a30;
    color: #fff;
    font-size: 14px;
    text-align: center;
    height: 172px;
}

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer h3 span {
    color: #1cd9e0;
}

#footer p {
    font-size: 18px;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
}

@media (max-width: 700px){
    #footer h3 {
        font-size: 20px;
        font-weight: 500;
        color: #fff;
        position: relative;
        font-family: "Poppins", sans-serif;
        padding: 0;
        margin: 0 0 15px 0;
    }
    
    #footer h3 span {
        color: #1cd9e0;
    }
    
    #footer p {
        font-size: 14px;
        font-style: italic;
        padding: 0;
        margin: 0 0 40px 0;
    }
    
}

#footer .copyright {
    margin: 0 0 5px 0;
    padding-top: none;
}

#footer .credits {
    font-size: 12px;
}

@media screen and (max-width: 767px) {
    #header {
        height: auto;
        margin: 15px 0;
    }
    #topbar {
        height: 50px;
    }
    #topbar .contact-info i {
        line-height: inherit;
    }
}
/*-------footer end-------*/

/*-----social icon-------*/
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
  }
  
  .social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    margin: 0 10px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    font-size: 20px;
    transition: background-color 0.3s ease;
  }
  
  .social-links a:hover {
    background-color:#3498db;
  }
  
  