@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");

:root {
	--yellow: #f5bf23;
	--black: #111;
	--R-Blue: #18496a;
	--white: #fff;
	--light-color: #666;
	--light-bg: #eee;
	--box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	--border: 0.1rem solid rgba(0, 0, 0, 0.3);
}



* {
	font-family: "Poppins", sans-serif;
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
}

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

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

html::-webkit-scrollbar-track {
	background: transparent;
}

html::-webkit-scrollbar-thumb {
	background: var(--yellow);
}

section {
	padding: 5rem 5%;
}

.heading {
	margin-bottom: 3rem;
	font-size: 3rem;
	color: var(--black);
	text-transform: capitalize;
	padding-left: 1rem;
	border-left: 1rem solid var(--yellow);
}

.btn {
	display: inline-block;
	margin-top: 1rem;
	padding: 1rem 3rem;
	background: var(--black);
	color: var(--white);
	cursor: pointer;
	font-size: 1.7rem;
	text-transform: capitalize;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
}

.btn:hover {
	background: var(--yellow);
	color: var(--black);
}

@-webkit-keyframes fadeIn {
	0% {
		top: 50%;
		opacity: 0;
	}
}

@keyframes fadeIn {
	0% {
		top: 50%;
		opacity: 0;
	}
}

/* #preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #fff url(../images/loading-yellow.gif) no-repeat center center;
  background-size: 5%;
  z-index: 9999;
} */

#loaderr {
	width: 100%;
	height: 100vh;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to right, #feffd7, #dec53f);
	z-index: 99999;
}

#loaderr .circle {
	background: #ecdf83;
	width: 120px;
	height: 120px;
	border-top: 8px solid #fffc15;
	border-bottom: 8px solid #fff;
	border-left: 8px solid #fff;
	border-right: 8px solid #fff;
	border-radius: 100%;
	box-shadow: 0 0 10px #fff300b0, 0 0 10px #fff300b0, 0 0 10px #ffc60b, 0 0 10px #fff300b0, 0 0 10px #fff300b0,
    0 0 10px #ffffff, 0 0 30px #ffffff85, 0 0 80px #ffffff, 0 0 10px #ffffff, 0 0 10px #fff300b0, 0 0 10px #fff300b0;
	animation: loader 2s linear infinite;
}

@keyframes loader {
	to {
		transform: rotate(360deg);
	}
}

#loaderr .circle h2 {
	text-align: center;
	font-size: 17px;
	font-weight: 600;
	line-height: 120px;
	width: 120px;
	height: 120px;
	font-family: monospace;
	color: #000;
	position: absolute;
	animation: h2 2s linear infinite;
}

@keyframes h2 {
	to {
		transform: rotate(-360deg);
	}
}

.top-bar {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: space-around;
	align-items: center;
	background: #f5bf23;
}

.top-bar-contant {
	padding: 12px 0px;
}

.top-bar-contant a {
	padding: 0 20px;
	color: var(--111);
	font-size: 18px;
	font-weight: 600;
}

.top-bar-contant a i {
	padding: 0 10px;
}

.header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	padding: 1.5rem 5%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	z-index: 1000;
	background: var(--white);
}

.header .logo {
	font-size: 2.5rem;
	color: var(--black);
	text-transform: capitalize;
	width: 40%;
}

.header .logo span {
	color: var(--yellow);
}

nav.navbar {
	width: 60%;
	display: flex;
	justify-content: flex-end;
}

.header .navbar a {
	font-size: 2rem;
	color: var(--black);
	text-transform: capitalize;
	margin: 0 1rem;
	transition: all 0.3s ease-in-out;
}

.header .navbar a:hover {
	color: var(--yellow);
}

.header .icons div {
	height: 5rem;
	width: 5rem;
	line-height: 5rem;
	font-size: 2rem;
	background: var(--light-bg);
	color: var(--black);
	cursor: pointer;
	text-align: center;
	margin-left: 0.3rem;
}

.icons div:hover {
	background: var(--black);
	color: var(--white);
}

.top-bar .icons div {
	line-height: 17px;
	font-size: 1.6rem;
	background: var(--light-bg);
	color: var(--black);
	cursor: pointer;
	text-align: center;
	border-radius: 100%;
	margin-left: 0.3rem;
	transition: all 0.3s ease-in-out;
	padding: 10px;
}

.top-bar .icons div:hover {
	background: var(--black);
	color: var(--white);
}

.header #menu-btn {
	display: none;
}

.header .search-form {
	position: absolute;
	top: 120%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 70rem;
	background: var(--white);
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	padding: 1rem;
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1rem;
	-webkit-animation: fadeIn 0.2s linear;
	animation: fadeIn 0.2s linear;
}

.header .search-form.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header .search-form input {
	width: 100%;
	padding: 1.2rem 1.4rem;
	background: var(--light-bg);
	font-size: 1.6rem;
	color: var(--light-color);
}

.header .search-form label {
	font-size: 2.5rem;
	color: var(--black);
	cursor: pointer;
	margin: 0 1rem;
}

.header .search-form label:hover {
	color: var(--yellow);
}

.header .login-form {
	position: absolute;
	top: 120%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 40rem;
	background: var(--white);
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	padding: 2rem;
	text-align: center;
	-webkit-animation: fadeIn 0.2s linear;
	animation: fadeIn 0.2s linear;
	display: none;
}

.header .login-form.active {
	display: block;
}

.header .login-form h3 {
	font-size: 2.5rem;
	color: var(--black);
	text-transform: capitalize;
	padding-bottom: 1rem;
	text-transform: uppercase;
}

.header .login-form .box {
	width: 100%;
	padding: 1.2rem 1.4rem;
	background: var(--light-bg);
	font-size: 1.6rem;
	color: var(--light-color);
	margin: 0.7rem 0;
}

.header .login-form .flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0.5rem;
	padding-top: 1.5rem;
	padding-bottom: 1rem;
}

.header .login-form .flex label {
	font-size: 1.5rem;
	color: var(--light-color);
	cursor: pointer;
}

.header .login-form .flex a {
	font-size: 1.5rem;
	color: var(--light-color);
	margin-left: auto;
}

.header .login-form .flex a:hover {
	color: var(--yellow);
	text-decoration: underline;
}

.header .login-form .btn {
	width: 100%;
}

.header .login-form p {
	font-size: 1.5rem;
	color: var(--light-color);
	line-height: 2;
	padding-top: 1.5rem;
}

.header .login-form p a {
	color: var(--yellow);
}

.header .login-form p a:hover {
	text-decoration: underline;
}

.contact-info {
	position: fixed;
	top: 0;
	right: 0;
	width: 35rem;
	background: var(--white);
	height: 100%;
	text-align: center;
	z-index: 1100;
	padding: 0 2rem;
	padding-top: 5rem;
	display: none;
	overflow-y: scroll;
}

.contact-info.active {
	-webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
	box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
	display: block;
}

.contact-info #close-contact-info {
	position: absolute;
	top: 2rem;
	right: 2.5rem;
	cursor: pointer;
	font-size: 2rem;
	color: var(--black);
}

.contact-info #close-contact-info:hover {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.contact-info .info {
	padding: 2rem 0;
}

.contact-info .info i {
	height: 5rem;
	width: 5rem;
	line-height: 5rem;
	font-size: 2rem;
	background: var(--light-bg);
	color: var(--black);
	cursor: pointer;
	text-align: center;
	margin-bottom: 0.5rem;
}

.contact-info .info i:hover {
	background: var(--black);
	color: var(--white);
}

.contact-info .info h3 {
	font-size: 2rem;
	color: var(--black);
	text-transform: capitalize;
	padding: 1rem 0;
}

.contact-info .info p {
	font-size: 1.5rem;
	color: var(--light-color);
	line-height: 2;
}

.contact-info .share {
	padding-top: 2rem;
	border-top: var(--border);
	margin-top: 1rem;
}

.contact-info .share a {
	height: 5rem;
	width: 5rem;
	line-height: 5rem;
	font-size: 2rem;
	background: var(--light-bg);
	color: var(--black);
	cursor: pointer;
	text-align: center;
	margin: 0 0.3rem;
}

.contact-info .share a:hover {
	background: var(--black);
	color: var(--white);
}

.home {
	padding: 0;
	animation: animate 16s ease-in-out infinite;
	background-size: cover;
}

@keyframes animate {
	0%,
  100% {
		background-image: url(../images/img/refrigerator-repair-background-slider-1.jpg);
	}

	45% {
		background-image: url(../images/img/refrigerator-repair-background-slider-2.jpg);
	}

	50% {
		background-image: url(../images/img/refrigerator-repair-background-slider-3.jpg);
	}
}

.home .slide {
	min-height: 60rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	background-size: cover !important;
	background-position: center !important;
}

.home .slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: -webkit-gradient(linear, left top, right top, from(var(--white)), to(transparent));
	background: linear-gradient(90deg, var(--white), transparent);
	opacity: 0.7;
}

.home .slide .content {
	width: 50%;
	position: relative;
}

.home .slide .content h1 {
	font-size: 5rem;
	color: var(--black);
	text-transform: capitalize;
	text-transform: uppercase;
}

.home .slide .content p {
	font-size: 2rem;
	color: #393939;
	line-height: 2;
	padding: 1rem 0;
}

.sl-form form {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 41rem;
	flex: 1 1 41rem;
	background: var(--white);
	padding: 2rem;
}

.sl-form form h3 {
	font-size: 2.5rem !important;
	color: var(--black);
	text-transform: capitalize;
}

.sl-form form .box {
	margin: 0 0;
	width: 100%;
	padding: 1.5rem 0;
	border-bottom: var(--border);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--light-color);
}

.sl-form form .box:focus {
	border-color: var(--yellow);
}

.sl-form form textarea {
	height: 5rem;
	resize: none;
}

.home .swiper-button-next,
.home .swiper-button-prev {
	top: initial;
	bottom: 0;
	left: initial;
	right: 0;
	height: 7rem;
	width: 7rem;
	line-height: 7rem;
	background: var(--white);
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
	background: var(--yellow);
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
	font-size: 2rem;
	color: var(--black);
}

.home .swiper-button-prev {
	right: 7rem;
}

.about .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 3rem;
}

.imgInside{
	float: right;
    clear: right;
    margin-right: 0;
    margin-left: 1.4em;
}

.about .row .video {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 41rem;
	flex: 1 1 41rem;
}

.about .row .video video {
	width: 100%;
}

.about .row .content {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 41rem;
	flex: 1 1 41rem;
}

.about .row .content h3 {
	font-size: 3.5rem;
	line-height: 35px;
	color: var(--black);
	text-transform: capitalize;
	margin: 0 0 1.4rem 2.0rem;
}

.about .row .content h4 {
	font-size: 2rem;
	color: #272727;
	padding-top: 1rem;
	text-transform: capitalize;
}

.about .row .content p {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--black);
	padding: 1rem 0;
	line-height: 25px;
	margin: 0 0 0 0rem;
	letter-spacing: 1px !important;
}

.about .box-container {
	margin-top: 3rem;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(16rem, 1fr)) [auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
	gap: 2rem;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.about .box-container .box {
	text-align: center;
	background: var(--light-bg);
	padding: 3rem 2rem;
}

.repairsHead{
	font-size: 24px;
}
.about .box-container .box h3 {
	font-size: 4rem;
	color: var(--black);
	text-transform: capitalize;
}

.about .box-container .box p {
	font-size: 1.5rem;
	color: var(--light-color);
	line-height: 2;
	padding-top: 0.5rem;
}

/*=================== 1st Services section start ===================*/

.services-1 {
	background: #eee;
}

.services-1 .box-container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(25rem, 1fr)) [auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(40rem, 3fr));
	gap: 2rem;
}

.services-1 .box-container .box {
	display: flex;
	align-items: center;
	padding: 3rem;
	background: #eee;
	cursor: pointer;
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.services-1 .box-container .box:hover {
	transform: translateY(-5px);
	box-shadow: 0px 5px 20px -15px;
}

.services-1 .box-container .box img {
	width: 100%;
	border-radius: 15px 5px;
	margin-bottom: 0.5rem;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
}

.services-1 .box-container .box h3 {
	font-size: 1.7rem;
	color: var(--black);
	text-transform: capitalize;
	padding: 1rem 0;
}

.services-1 .box-container .box p {
	font-size: 1.4rem;
	color: var(--black);
	text-align: justify;
}

.services-1 .box-container .box .ser-icon {
	background: var(--yellow);
	padding: 10px;
	margin-right: 20px;
	border-radius: 100%;
}

.services-1 .box-container .box .ser-icon i {
	color: #000000;
	font-size: 40px;
	transform: translate(10px, 0px);
}

/*=================== 1st Services section End ===================*/


.services {
	background: var(--light-bg);
}

.section-width {
}

.services .box-container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(25rem, 1fr)) [auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(38rem, 3fr));
	gap: 2rem;
}

.services .box-container .box {
	text-align: center;
	padding: 3rem;
	background: var(--white);
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
}

.services .box-container .box:hover img {
	-webkit-transform: translateY(-1rem);
	transform: translateY(-1rem);
}

.services .box-container .box img {
	width: 100%;
	margin-bottom: 0.5rem;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
}

.services .box-container .box h3 {
	font-size: 1.7rem;
	color: var(--black);
	text-transform: capitalize;
	padding: 1rem 0;
}

.services .box-container .box p {
	font-size: 1.4rem;
	color: var(--black);
	text-align: justify;
	line-height: 2;
}

.projects {
	background: var(--black);
}

.projects .heading {
	color: var(--white);
}

.projects .box-container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(30rem, 1fr)) [auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(40rem, 3fr));
	gap: 2rem;
}

.projects .box-container .box {
	cursor: initial;
}

.projects .box-container .box:hover .image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.projects .box-container .box .image {
	height: 40rem;
	overflow: hidden;
}

.projects .box-container .box .image img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
}

.projects .box-container .box .content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: var(--white);
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.projects .box-container .box .content .info {
	padding: 1rem 2rem;
}

.projects .box-container .box .content .info h3 {
	font-size: 1.7rem;
	color: var(--black);
	text-transform: capitalize;
}

.projects .box-container .box .content .info p {
	font-size: 1.4rem;
	color: var(--light-color);
	line-height: 2;
	font-weight: 600;
}

.projects .box-container .box .content i {
	width: 7.5rem;
	font-size: 3rem;
	background: var(--yellow);
	color: var(--white);
	cursor: pointer;
	text-align: center;
	line-height: 7.5rem;
}

.reviews .slide p {
	padding: 1.5rem;
	background: var(--light-bg);
	position: relative;
	margin-bottom: 3rem;
	font-size: 1.4rem;
	color: var(--light-color);
	line-height: 2;
}

.reviews .slide p::before {
	content: "";
	position: absolute;
	bottom: -1rem;
	left: 2rem;
	height: 2rem;
	width: 2rem;
	background: var(--light-bg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.reviews .slide .user {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1.5rem;
}

.reviews .slide .user img {
	height: 7rem;
	width: 7rem;
	border-radius: 100%;
}

.reviews .slide .user h3 {
	font-size: 2rem;
	color: var(--black);
	text-transform: capitalize;
}

.reviews .slide .user .stars {
	padding-top: 0.5rem;
}

.reviews .slide .user .stars i {
	font-size: 1.4rem;
	color: var(--yellow);
}

/*========================= Faq css starts =========================*/
.faq {
	padding-bottom: 10rem;
}

.accordion {
	position: relative;
	width: 100%;
	margin-left: 40px;
}

.title {
	margin-top: 20px;
	font-size: 2rem;
	text-align: center;
}

.content-accordion {
	margin-top: 35px;
	margin-right: 50px;
}

.question-answer {
	width: 100%;
	border-bottom: 1px solid var(--yellow);
}

.question-answer p {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--black);
	line-height: 25px;
	padding-bottom: 1rem;
}

.question-answer li {
	font-size: 15px;
	font-weight: 400;
	color: #000000;
	list-style: none;
	line-height: 25px;
	padding-bottom: 1rem !important;
	padding: 0 3rem;
}

.question-answer li i {
	color: var(--yellow);
	font-size: 16px;
	padding-right: 10px;
}

.question {
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}

.accordion-img {
	position: relative;
	width: 320px;
}

.title-question {
	margin: 1.4rem 0rem;
	font-size: 2rem;
	font-weight: 500;
	color: #000;
}

.question-btn {
	font-size: 1.5rem;
	background: transparent;
	border-color: transparent;
	cursor: pointer;
}

.up-icon {
	display: none;
	color: var(--yellow);
	font-size: 24px;
}

.question-btn span.down-icon {
	color: var(--yellow);
	font-size: 24px;
}

.answer {
	font-size: 1.2rem;
	line-height: 1.8;
	<!-- display: none; -->
}

.show-text .answer {
	display: block;
}

.show-text .up-icon {
	display: inline;
}

.show-text .down-icon {
	display: none;
}

/*========================= Faq css ends =========================*/

/*========================= Privacy Policy css starts =========================*/

.ppolicy .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

}

.ppolicy .row .content {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 41rem;
	flex: 1 1 41rem;
}

.ppolicy .row .content h3 {
	font-size: 3.5rem;
	line-height: 35px;
	color: var(--black);
	text-transform: capitalize;
	margin: 0 0 1.4rem 2.0rem;
}

.ppolicy .row .content h4 {
	font-size: 2rem;
	color: #272727;
	padding-top: 1rem;
	text-transform: capitalize;
}

.ppolicy .row .content p {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--black);
	padding: 1rem 0;
	line-height: 25px;
	margin: 0 0 0 2.0rem;
	letter-spacing: 1px !important;
}

.contact {
	background: #eee;
}

.contact .heading {
	color: var(--black);
}

.contact .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 2rem;
	box-shadow: 0px 0px 15px -10px;
}

.contact .row .content p {
	font-size: 1.4rem
}

.contact .row .map {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 41rem;
	flex: 1 1 41rem;
	width: 100%;
}

.contact .row form {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 41rem;
	flex: 1 1 41rem;
	background: var(--white);
	padding: 2rem;
}

.contact .row form h3 {
	font-size: 2.5rem;
	color: var(--black);
	text-transform: capitalize;
}

.contact .row form .box {
	margin: 0.7rem 0;
	width: 100%;
	padding: 1.5rem 0;
	border-bottom: var(--border);
	font-size: 1.6rem;
	color: var(--light-color);
}

.contact .row form .box:focus {
	border-color: var(--yellow);
}

.contact .row form textarea {
	height: 15rem;
	resize: none;
}

.contact .row1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 3rem;

}

.contact .row1 .content p {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--black);
	padding: 0rem 1.4rem 1.4rem 0rem;
	line-height: 25px;
	letter-spacing: 1px !important;
	margin: 0rem 2.8rem;
}

.g-recaptcha {
	margin: 0.7rem 0;
	width: 100%;
	padding: 1.5rem 0;
	border-bottom: var(--border);
}

.status {
	font-size: 15px;
	color: rgb(0, 197, 0);
	margin: 0.7rem 0;
	width: 100%;
	padding: 1.5rem 0;
}

.status span {
	font-size: 15px;
	color: rgb(255, 38, 0);
}

.contact-bannar {
	width: 100%;
	background: url(../images/contact-background.jpg) fixed;
	background-size: cover;
}

.contact-bannar-overly {
	background: #eee;
	padding: 10rem 4rem;
	box-shadow: 0px 0px 20px -10px;
	margin: 4rem, 4rem;
}

.contact-bannar h1 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 3rem;
	color: var(--Black);
	text-transform: capitalize;
	padding-left: 1rem;
}

.contact-bannar h1 span {
	border-bottom: 1rem solid var(--yellow);
}

.about-bannar {
	width: 100%;
	background: url(../images/about-refrigerator-repair-los-angeles.jpg) fixed;
	background-size: cover;
}

.about-bannar-overly {
	background: #eee;
	padding: 10rem 4rem;
	box-shadow: 0px 0px 20px -10px;
	margin: 4rem, 4rem;
}

.about-bannar h1 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 3rem;
	color: var(--Black);
	text-transform: capitalize;
	padding-left: 1rem;
}

.about-bannar h1 span {
	border-bottom: 1rem solid var(--yellow);
}

.repairs-bannar {
	width: 100%;
	background: url(../images/common-repairs-los-angeles-refrigerator-repair.jpg) fixed;
	background-size: cover;
}

.repairs-bannar-overly {
	background: #eee;
	padding: 10rem 4rem;
	box-shadow: 0px 0px 20px -10px;
	margin: 4rem, 4rem;
}

.repairs-bannar h1 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 3rem;
	color: var(--Black);
	text-transform: capitalize;
	padding-left: 1rem;
}

.repairs-bannar h1 span {
	border-bottom: 1rem solid var(--yellow);
}
.blogs {
	background: var(--light-bg);
}

.blogs .why-chose {
	text-align: center;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(25rem, 1fr)) [auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 2rem;
}

.blogs .why-chose-box {
	cursor: pointer;
}

.blogs .why-chose-box:hover .image img {
	transition: all 0.5s ease-in-out;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.blogs .why-chose .why-chose-box .image {
	height: 25rem;
	width: 90%;
	overflow: hidden;
	margin: 0 auto;
	margin-bottom: -3rem;
}

.blogs .why-chose .why-chose-box .image img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
}

.blogs .why-chose .why-chose-box .content {
	padding: 2rem;
	padding-top: 5rem;
	background: var(--white);
	-webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}

.blogs .why-chose .why-chose-box .content h3 {
	font-size: 2rem;
	color: var(--black);
	text-transform: capitalize;
}

.blogs .content p {
	padding: 1rem 0;
	font-size: 1.4rem;
	color: var(--black);
	line-height: 2;
	text-align: justify;
}

.logo-container {
	text-align: center;
}

.logo-container img {
	height: 10rem;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.footer {
	text-align: center;
}

.footer .links .btn {
	margin: 0.5rem;
}

.footer .credit {
	font-size: 2rem;
	color: var(--black);
	text-transform: capitalize;
	margin-top: 2rem;
	padding-top: 1rem;
}

.footer .credit span {
	color: var(--yellow);
}

#progress {
	position: fixed;
	bottom: 30px;
	right: 20px;
	height: 65px;
	width: 65px;
	display: none;
	place-items: center;
	border-radius: 50%;
	box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	cursor: pointer;
	z-index: 999;
}

#progress-value {
	display: block;
	height: calc(90% - 5px);
	width: calc(90% - 5px);
	background-color: #ffffff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 40px;
	color: #000000;
}

#progress-value i {
	font-size: 30px;
	color: var(--Black);
}


@media (max-width: 2190px) {
	.services .box-container {
		grid-template-columns: repeat(auto-fit, minmax(50rem, 3fr));
	}
}

@media (max-width: 1930px) {
	.services .box-container {
		grid-template-columns: repeat(auto-fit, minmax(40rem, 3fr));
	}
}

@media (max-width: 1730px) {
	.services .box-container {
		grid-template-columns: repeat(auto-fit, minmax(38rem, 3fr));
	}
}

@media (max-width: 1600px) {
	.services .box-container {
		grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
	}
}

@media (max-width: 1430px) {
	.header .navbar a {
		font-size: 1.8rem;
	}

	.header .logo {
		font-size: 2.5rem;
	}
}

@media (max-width: 1200px) {
	.services-1 .box-container {
		grid-template-columns: repeat(auto-fit, minmax(40rem, 2fr));
		gap: 2rem;
	}

	.home .slide .content h3 {
		font-size: 3.5rem;
	}

	.header {
		padding: 1.5rem 2rem;
	}

	section {
		padding: 3rem 5%;
	}

	.header .navbar a {
		font-size: 1.5rem;
	}

	.accordion {
		margin-left: 20px;
	}
}

@media (max-width: 1080px) {
	#progress {
		z-index: 9;
	}

	.header .navbar a {
		font-size: 1.5rem;
	}
}

@media (max-width: 991px) {
  #loaderr .circle {
    width: 110px;
    height: 110px;
  }
  #loaderr .circle h2 {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 110px;
    width: 110px;
    height: 110px;
  }
	#progress-value i {
		font-size: 24px;
	}

	#preloader {
		background-size: 15%;
	}

	.header .logo {
		width: 70%;
	}

	nav.navbar {
		width: 30%;
		display: initial;
	}

	.accordion {
		margin-left: 0px;
	}

	html {
		font-size: 55%;
	}

	section {
		padding: 3rem 2rem;
	}

	.header #menu-btn {
		display: inline-block;
	}

	.header .navbar {
		position: absolute;
		top: 99%;
		left: 0;
		right: 0;
		background: var(--white);
		border-top: var(--border);
		border-bottom: var(--border);
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		-webkit-transition: 0.2s linear;
		transition: 0.2s linear;
	}

	.header .navbar.active {
		clip-path: polygon(0 0, 104% 0, 99% 117%, 0 130%);
		width: 100%;
	}

	.header .navbar a {
		display: block;
		margin: 2rem;
	}
}

@media (max-width: 768px) {
	.about .row .video {
		padding: 2rem 0rem;
	}

	.question-answer p {
		font-size: 1.4rem;
	}

	.question-answer li {
		font-size: 1.4rem;
	}

	.title-question {
		margin: 1.4rem 0rem;
		font-size: 1.6rem;
	}

	.services-1 .box-container .box p {
		text-align: start;
	}

	.services-1 .box-container .box .ser-icon i {
		font-size: 30px;
	}

	.sl-form form .box {
		font-size: 1.4rem;
	}

	.home .slide .content p {
		color: #000000;
	}

	.heading {
		font-size: 2rem;
	}

	.about .row .content p {
		font-size: 1.5rem;
	}

		.blogs .why-chose {
		grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	}

	.top-bar-contant {
		padding: 12px 8px;
	}

	.top-bar-contant a i {
		padding: 0px 12px;
	}

	.top-bar .icons div {
		line-height: 13px;
		font-size: 1.6rem;
		margin-left: 1.3rem;
		padding: 10px;
	}

	.services-1 .box-container {
		display: inherit !important;
	}

	#progress {
		height: 45px;
		width: 45px;
		z-index: 9;
		bottom: 15px;
		right: 15px;
	}

	#progress-value {
		font-size: 25px;
	}

	.top-bar-contant a {
		padding: 0 0px;
		font-size: 14px;
	}

	.content-accordion {
		margin-top: 35px;
		margin-right: 10px;
	}

	.accordion {
		margin-left: 0px;
	}

	.header .logo {
		font-size: 2rem;
	}

	.header .search-form {
		width: 90%;
	}

	.header .login-form {
		width: 90%;
	}

	.home .slide {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		flex-wrap: wrap;
	}

	.home .slide .content {
		width: 50rem;
		position: relative;
	}

	.sl-form form {
		margin-bottom: 8rem;
		margin-top: 3rem;
	}

	.home .slide .content {
		text-align: center;
	}

	.home .slide .content h3 {
		font-size: 3rem;
	}
}

@media (max-width: 450px) {
	.top-bar {
		padding: 10px;
	}

	html {
		font-size: 50%;
	}

	.about .row .content h3 {
		font-size: 2.5rem;
	}
}

.menu-dropdown > *:hover {
	background: rgba(0,0,0,0.1);
  }
  .menu:not(:hover) > .menu-dropdown > * {
	visibility: hidden;
	height: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin: 0;
	color: rgba(25,25,25,0);
	transition:
	  0.5s 0.1s height,
	  0.5s 0.1s padding,
	  0.5s 0.1s margin,
	  0.3s color,
	  0.6s visibility;
	z-index: 99;
  }

  .menu-dropdown > * {
	overflow: hidden;
	height: auto;
	padding: 5px 10px;
	background: rgba(0,0,0,0);
	white-space: nowrap;
	transition:
	  0.5s height cubic-bezier(.73,.32,.34,1.5),
	  0.5s padding cubic-bezier(.73,.32,.34,1.5),
	  0.5s margin cubic-bezier(.73,.32,.34,1.5),
	  0.5s 0.2s color,
	  0.2s background-color;
  }

  .menu-dropdown {
	min-width: 100%;
	padding: 15px 0;
	position: absolute;
	background: #ebebeb;
	z-index: 100;
	transition:
	  0.5s padding,
	  0.5s background;
  }

  .menu-dropdown:after {
	content: "";
	display: block;
	height: 0;
	border-top: 5px solid #ebebeb;
	border-left: ($menu_WIDTH / 2) solid transparent;
	border-right: ($menu_WIDTH / 2) solid transparent;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 101;
	transition: 0.5s border-top;
  }

  .menu:not(:hover) > .menu-dropdown {
	padding: 0px 0;
	background: #dddddd;
	z-index: 99;
  }

  .menu:not(:hover) > .menu-dropdown:after {
	border-top-color: #dddddd;
  }

  .menu:not(:hover) > .menu-title:after {
	border-bottom-color: #dddddd;
  }

/*# sourceMappingURL=style.css.map */
