@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	border: none;
	outline: none;
	text-decoration: none;
	transition: all .2s linear;
}

::selection{
  color: #fff;
  background: #007bff;
}

html{
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
	scroll-padding-top: 6rem;
}

html ::-webkit-scrollbar{
	width: 1rem;
}

html ::-webkit-scrollbar-track{
	background: #fff;
}

html ::-webkit-scrollbar-thumb{
	background: #999;
}

.myPopUp{
	background: #fff;
	width: 600px;
	padding: 30px 20px;
	position: fixed;
	transform: translate(-50%, -65%);
	top: 65%;
	left: 50%;
	border-radius: 10px;
	z-index: 1000;
	text-align: center;
	display: none;
}

.myPopUp button{
	display: block;
	margin: 0 0 5px auto;
	background: #000;
	font-size: 2rem;
	color: #c5c5c5;
	border: none;
	outline: none;
	cursor: pointer;
	border-radius: 10px;
	padding: 0.1rem 1rem;
}

.myPopUp h1{
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: bolder;
	text-align: left;
}

.myPopUp p{
	font-size: 1.5rem;
	margin-bottom: 2rem;
	text-align: justify;
	text-align-last: center;
}

.myPopUp h5{
	text-align: center;
	font-size: 2rem;
	font-weight: bolder;
	margin-bottom: 3rem;
}

.myPopUp a{
	padding: 1rem 2rem;
	font-size: 2rem;
	background: #000;
	border-radius: 10px;
	text-decoration: none;
	color: #fff;
}

.header .contact-info{
	padding: 2rem 10%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #000;
	color: #fff;
	font-size: 1.5rem;
}

.header .contact-info .fa-solid{
	margin-right: 6px;
}

.header .contact-info .fa-brands{
	margin-right: 24px;
	font-size: 2rem;
	color: #fff;
}

.header .navbar{
	padding: 2rem 2.5%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	color: #777;
	font-size: 1.5rem;
	position: relative;
	z-index: 1000;
}

.header .navbar.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

.header .navbar .logo{
	color: #777;
	font-weight: bolder;
	font-size: 2rem;
}

.header .navbar .links a{
	margin-left: 2rem;
	color: #333;
}

.header .navbar .links a:hover{
	text-decoration: underline;
}

.header .navbar #menu-btn{
	font-size: 3rem;
	cursor: pointer;
	color: #777;
	display: none;
}

.home-bg, .footer-bg{
	padding: 0;
	position: relative;
}

.home-bg .slider, .footer-bg .slider{
	background-size: cover !important;
	background-position: center !important;
	height: 45rem;
}

.home-bg .slider .overlay, .footer-bg .slider .overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	text-align: center;
	color: #fff;
}

.home-bg .slider .overlay h1{
	font-size: 3rem;
	margin-top: 15rem;
}

.home-bg .slider .overlay h3{
	font-size: 5rem;
	margin-top: 1rem;
}

.home-bg .slider .overlay h4{
	font-size: 4rem;
	margin-top: 2rem;
	font-weight: bolder;
}

.about, .snow{
	padding: 5rem 2.5rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 3rem;
}

.about .image, .snow .image{
	flex: 1 1 40rem;
}

.about .image img, .snow .image img{
	width: 100%;
}

.about .content, .snow .content{
	flex: 1 1 40rem;
}

.about .content .about-title, .snow .content .snow-title{
	font-size: 3rem;
}

.about .content p, .snow .content p{
	font-size: 1.5rem;
	padding: 1rem 0;
	text-align: justify;
}

.about .content p span{
	font-weight: bolder;
}

.service{
	background: #f2f2f2;
	padding: 5rem 2.5rem;
}

.service .heading, .reviews .heading, .faq .heading{
	font-size: 3.5rem;
	text-align: center;
	font-weight: bolder;
}

.service hr, .reviews hr, .faq hr{
	width: 5rem;
	margin: 2rem auto 5rem;
	height: 0.5rem;
	background: #000;
}

.service .box-container{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 2rem;
}

.service .box-container .box{
	text-align: center;
	background: #fff;
	cursor: pointer;
	box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.8);
}

.service .box-container .box.hide{
	display: none;
}

.service .box-container .box .image{
	height: 25rem;
	overflow: hidden;
	position: relative;
}

.service .box-container .box .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service .box-container .box:hover .image img{
	transform: scale(1.1);
}

.service .box-container .box .image h3{
	font-size: 1.5rem;
	position: absolute;
	top: 1rem;
	left: 1rem;
	padding: 0.5rem 1.5rem;
	background: #fff;
}

.service .box-container .box .content{
	padding: 2rem;
	text-align: center;
}

.service .box-container .box .content h3{
	font-size: 2rem;
}

.service .box-container .box .content p{
	padding: 1rem 0;
	font-size: 1.6rem;
	text-align: justify;
}

.btn{
	display: inline-block;
	margin-top: 1rem;
	padding: 1rem 3rem;
	font-size: 1.8rem;
	border: 0.2rem solid #000;
	background: #000;
	color: #fff;
	cursor: pointer;
}

.btn:hover{
	background: transparent;
	color: #000;
}

.service .load-more{
	margin-top: 2rem;
	text-align: center;
}

.reviews{
	padding: 5rem 2.5rem;
}

.reviews .slide{
	text-align: center;
}

.reviews .slide p{
	font-size: 1.5rem;
	position: relative;
	background: #262626;
	color: #fff;
	border: 0.3rem solid #777;
	text-align: justify;
	text-align-last: center;
	margin-bottom: 3rem;
	padding: 2rem;
	box-shadow: 1.5rem 0.5rem 1rem rgba(0, 0, 0, 0.8);
}

.reviews .slide p a{
	text-decoration: underline;
	color: #fff;
}

.reviews .slide p::before{
	content: '';
	position: absolute;
	bottom: -1.2rem;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	background: #262626;
	border-bottom: 0.3rem solid #777;
	border-right: 0.1rem solid #000;
	height: 2rem;
	width: 2rem;
}

.reviews .slide img{
	height: 7rem;
	width: 7rem;
	border-radius: 50%;
}

.reviews .slide h3{
	font-size: 2.2rem;
	padding: 0.5rem 0;
}

.reviews .slide .stars{
	font-size: 1.2rem;
	color: #E4A11B;
}

.support-container{
	background: #f2f2f2;
	padding: 5rem 2.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	gap: 2.5rem;
}

.support-container .support-icon{
	text-align: center;
	padding: 2rem 0;
	border: 3px solid #000;
}

.support-container .support-icon img{
	width: 5rem;
	height: 5rem;
}

.support-container .support-icon .content h3{
	font-size: 2rem;
	color: #000;
	font-weight: bolder;
}

.support-container .support-icon .content p{
	font-size: 1.5rem;
	color: #666;
}

.faq{
	padding: 5rem 2.5rem;
}

.faq .accordion-container{
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: flex-start;
}

.faq .accordion-container .accordion{
	flex: 1 1 45rem;
	border: 2px solid #999;
}

.faq .accordion-container .accordion.active .accordion-heading{
	background: #333;
}

.faq .accordion-container .accordion.active .accordion-heading h3{
	color: #fff;
}

.faq .accordion-container .accordion.active .accordion-heading i{
	color: #fff;
	transform: rotate(180deg);
}

.faq .accordion-container .accordion.active .accordion-content{
	display: block;
}

.faq .accordion-container .accordion .accordion-heading{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	cursor: pointer;
	padding: 1rem;
}

.faq .accordion-container .accordion .accordion-heading h3{
	font-size: 1.7rem;
	text-transform: capitalize;
}

.faq .accordion-container .accordion .accordion-heading i{
	font-size: 1.7rem;
	color: #333;
}

.faq .accordion-container .accordion .accordion-content{
	padding: 1rem;
	font-size: 1.2rem;
	text-align: justify;
	border-top: 2px solid #999;
	display: none;
}

.footer-bg{
	padding: 0;
	position: relative;
}

.footer-bg .slider{
	background-size: cover !important;
	background-position: center !important;
	height: 25rem;
}

.footer-bg .slider .overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	text-align: center;
	color: #fff;
}

.footer-bg .slider .overlay h1{
	font-size: 3rem;
	margin-top: 8.6rem;
}

.footer-bg .slider .overlay .btn{
	background: transparent;
	border: 0.2rem solid #fff;
	font-weight: bolder;
}

.footer-bg .slider .overlay .btn:hover{
	background: #fff;
	color: #000;
}

.footer{
	background: #f2f2f2;
	padding: 5rem 2.5rem 1rem;
}

.footer .box-container{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
	gap: 2.5rem;
}

.footer .box-container .box h3{
	font-size: 2.2rem;
	padding: 1rem 0;
}

.footer .box-container .box p{
	font-size: 1.5rem;
	padding: 0 0 1.5rem;
	text-align: justify;
	color: #777;
}

.footer .box-container .box p span{
	font-weight: bolder;
	color: #000;
}

.footer .box-container .box .share{
	margin-top: 1rem;
}

.footer .box-container .box .share a{
	height: 4.5rem;
	width: 4.5rem;
	line-height: 4.5rem;
	font-size: 1.7rem;
	background: #000;
	color: #fff;
	margin-right: 0.3rem;
	border: 1px solid #000;
	text-align: center;
}

.footer .box-container .box .share a:hover{
	background: transparent;
	color: #000;
}

.footer .box-container .box .link{
	font-size: 1.7rem;
	padding: 0 0 1rem;
	display: block;
	color: #999;
	text-transform: capitalize;
}

.footer .box-container .box .link:hover{
	color: #000;
	text-decoration: underline;
}

.footer .box-container .box form .input{
	width: 100%;
	padding: 1.2rem 1.4rem;
	font-size: 1.6rem;
	margin: 0 0 1rem;
	border: 2px solid #999;
}

.footer .box-container .box form textarea{
	resize: none;
}

.footer .copyright{
	text-align: center;
	color: #999;
	font-size: 1.5rem;
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 2px solid #777;
}

.footer .copyright span:nth-child(2){
	color: #000;
}

.scroll-top{
	position: fixed;
	bottom: 2.5rem;
	right: 2.5rem;
	z-index: 1000;
	font-size: 2rem;
	background: #000;
	border-radius: 0.5rem;
	color: #fff;
	padding: 1rem;
	display: none;
}

.top-heading-section{
	background: #f2f2f2;
	padding: 5rem 2.5rem;
	text-align: center;
}

.top-heading-section h3{
	color: #333;
	font-size: 3.5rem;
	font-weight: bolder;
}

.top-heading-section p{
	color: #999;
	font-size: 1.5rem;
	margin-top: 0.5rem;
}

.top-heading-section p a{
	color: #999;
}

.snow .content ul{
	font-size: 1.5rem;
	margin-left: 2rem;
}

.snow .content ul li{
	margin: 0.5rem 0;
}

.removal{
	padding: 5rem 2.5rem;
}

.removal h3{
	font-size: 3.5rem;
	text-align: center;
	font-weight: bolder;
}

.removal p{
	font-size: 1.5rem;
	text-align: justify;
	color: #999;
	margin-top: 2rem;
	text-align-last: center;
}

.removal img{
	margin: 2.5rem 0;
	width: 100%;
}

/* Media Queries */

@media (max-width: 1200px){
	.header .contact-info{
		padding: 2rem 5%;
	}
}

@media (max-width: 1000px){
	.gallery .g-image{
    	width: calc(100% / 2);
  	}
}

@media (max-width: 991px){
	html{
		font-size: 55%;
	}
	.header .contact-info{
		padding: 2rem;
	}
}

@media (max-width: 900px){
	.header .navbar #menu-btn{
		display: inline-block;
	}
	.header .navbar #menu-btn.fa-times{
		transform: rotate(180deg);
	}	
	.header .navbar .links{
		position: absolute;
		top: 99%;
		left: 0;
		right: 0;
		background: #fff;
		border-top: 1rem solid #999;
		border-bottom: 1rem solid #999;
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}
	.header .navbar .links.active{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
	.header .navbar .links a{
		display: block;
		margin: 2.5rem 2rem;
		font-size: 1.5rem;
	}
}

@media (max-width: 768px){
	.header .contact-info{
		display: none;
	}
	.header .navbar{
		background: #000;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
	}
	.header .navbar .logo{
		color: #fff;
	}
	.home-bg .slider .overlay h1{
		font-size: 2rem;
		margin-top: 17rem;
	}

	.footer-bg .slider .overlay h1{
		font-size: 2rem;
		margin-top: 6rem;
	}

	.home-bg .slider .overlay h3{
		font-size: 4rem;
		margin-top: 1rem;
	}

	.home-bg .slider .overlay h4{
		font-size: 2rem;
		margin-top: 2rem;
		font-weight: bolder;
	}
	.top-heading-section{
		margin-top: 7rem;
	}
}

@media (max-width: 600px){
	.gallery .g-image{
    	width: 100%;
    	padding: 4px;
  	}
  	.myPopUp{
  		width: 300px;
  	}
}

@media (max-width: 450px){
	html{
		font-size: 50%;
	}
}