html,
body {
	height: 100%;
	font-family: "Montserrat", sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 27px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-weight: 400;
	line-height: 27px;
	margin: 0 0 10px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

.fw-800 {
	font-weight: 800;
}

.section-title {
	margin-bottom: 45px;
}

.section-title h4 {
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}

.section-title h4:after {
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 2px;
	width: 70px;
	background: #ca1515;
	content: "";
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

.text-primary {
	color: #ca1515 !important;
}

/* buttons */
.primary-btn {
	display: inline-block;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 12px 30px 10px;
	color: #ffffff;
	background: #ca1515;
}

.site-btn {
	font-size: 14px;
	color: #ffffff;
	background: #ca1515;
	font-weight: 600;
	border: none;
	text-transform: uppercase;
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
}

/* background img */
.bg-img {
	background: no-repeat center center scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position: relative;
}

/* Ratio */
.ratio-1-1,
.ratio-4-3,
.ratio-3-2,
.ratio-8-5,
.ratio-16-9 {
	width: 100%;
	position: relative;
}

.ratio-1-1 {
	padding-top: 100%;
}

.ratio-4-3 {
	padding-top: 75%;
}

.ratio-3-2 {
	padding-top: 66.66%;
}

.ratio-8-5 {
	padding-top: 62.5%;
}

.ratio-16-9 {
	padding-top: 56.25%;
}

/* Error */
.error-alert span {
	position: absolute;
	top: -9px;
	right: 0;
	color: var(--red);
	font-size: 12px;
	background: #ffdcdc;
	padding: 0 9px;
	border-radius: 5px;
	border: 1px solid var(--red);
}

.error-input {
	border-color: var(--red) !important;
}

/* Preloder */
#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #ffffff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

/* Animation */
@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@keyframes rocket {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate(-5px, -5px) rotate(-5deg);
		transform: translate(-5px, -5px) rotate(-5deg);
	}

	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate(5px, 5px) rotate(5deg);
		transform: translate(5px, 5px) rotate(5deg);
	}

	100% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}

/*---------------------
  Header
-----------------------*/

.header {
	background: #ffffff;
	background: linear-gradient(0deg, rgba(212, 32, 39, 0) 0%, rgba(212, 32, 39, 0.1) 100%);
}

.header.fixed {
	background-color: #fff;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 98;
	-webkit-animation-duration: .8s;
	-moz-animation-duration: .8s;
	-o-animation-duration: .8s;
	animation-duration: .8s;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, .15);
}

.header__logo {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}

.header__menu {
	padding: 18px 0;
}

.header__menu ul {
	display: flex;
	justify-content: center;

}

.header__menu ul li {
	list-style: none;
	margin-left: 15px;
	margin-right: 15px;
}

.header__menu ul li:hover .dropdown {
	top: 27px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 56px;
	width: 150px;
	background: #111111;
	text-align: left;
	padding: 2px 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__menu ul li .dropdown li {
	display: block;
	margin-right: 0;
}

.header__menu ul li .dropdown li a {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	padding: 8px 20px;
	text-transform: capitalize;
}

.header__menu ul li .dropdown li a:after {
	display: none;
}

.header__menu ul li a {
	font-size: 15px;
	color: #111111;
	font-weight: 600;
	display: block;
	position: relative;
	letter-spacing: -0.6px;
}

.header__menu ul li:hover a {
	color: #ca1515;
}

.header__right {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}

.header__right .btn-advise {
	font-size: 13px;
	padding: 10px 20px;
	text-decoration: none;
}

.header__right .btn-advise:hover {
	color: #ffffff;
}

.offcanvas-menu-wrapper {
	display: none;
}

.canvas__open {
	display: none;
}

/*---------------------
  Home Banner
-----------------------*/
.home-banner {
	padding-top: 120px;
	padding-bottom: 120px;
}

.home-banner__content {
	font-size: 17px;
	font-style: italic;
}

.home-banner__content p {
	font-weight: 500;
}

.home-banner__quote {
	animation: rocket 15s cubic-bezier(.36, .07, .19, .97) infinite
}

/*---------------------
  Home Why
-----------------------*/
.home-why {
	margin-top: 120px;
}

.home-why__item {
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0px 4px 35px 0px rgba(212, 32, 39, 0.3);
	padding: 40px 10px;
}

.home-why__item:hover {
	box-shadow: 0px 4px 25px 0px rgba(212, 32, 39, 0.8);
}

.home-why__item__icon {
	width: 100px;
	height: 100px;
	background: #ca1515;
	border-radius: 999px;
	overflow: hidden;
	padding: 28px;
	margin-bottom: 30px;
}

.home-why__item h3 {
	line-height: 1.5;
}

/*---------------------
  Home Price
-----------------------*/
.home-price {
	margin-top: 130px;
}

.home-price__item {
	border-radius: 20px;
	background: #FFF;
	box-shadow: 0px 4px 25px 0px rgba(212, 32, 39, 0.25);
	overflow: hidden;
	transition: all 0.3s;
}

.home-price__item:hover {
	box-shadow: 0px 4px 25px 0px rgba(212, 32, 39, 0.8);
}

.home-price__item .item__box {
	padding: 40px 25px;
	position: relative;
}

.home-price__item .item__box::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 150px;
	height: 35px;
	background: url('/assets/img/badge.png') no-repeat top left / contain;
}

.home-price__item .box__header .header__title {
	padding-top: 10px;
	padding-bottom: 10px;
	position: relative;
	font-weight: 800;
	line-height: normal;
	background: linear-gradient(89deg, #000 0.96%, #ca1515 28.53%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	border: none;
	width: 100%;
	order: -2;
	margin-bottom: 20px;
}

.home-price__item .box__header .header__title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60%;
	height: 3px;
	background-color: #ca1515;
}

.home-price__item .box__header .header__sub {
	font-size: 14px;
	letter-spacing: -0.6px;
}

.home-price__item .box__header .header__price {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.6px;
}

.home-price__item .box__content {
	margin-top: 30px;
}

.home-price__item .box__content .content__item {
	padding: 0 0 0 24px;
	margin-bottom: 10px;
	position: relative;
	letter-spacing: -0.3px;
}

.home-price__item .box__content .content__item::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	width: 18px;
	height: 18px;
	background: url('/assets/img/check.png') no-repeat center / contain;
}

.home-price__item .box__content .content__item:has(>.no-use)::before {
	opacity: 0.3;
	filter: grayscale(100%);
}

.home-price__item .box__content .content__item .more-info-icon {
	content: '?';
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: #999999;
	color: #ffffff;
	text-align: center;
	line-height: 18px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	margin-left: 5px;
}

.home-price__item .box__content .content__item .more-info-text {
	visibility: hidden;
	background-color: #111111;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	position: absolute;
	z-index: 1;
	font-size: 13px;
	left: 50%;
	width: auto;
	top: -105%;
	padding: 0 10px;
	transform: translateX(-50%);
	text-wrap: nowrap;
}

.home-price__item .box__content .content__item .more-info-icon:hover {
	background-color: #ca1515;
}

.home-price__item .box__content .content__item .more-info-icon:hover~.more-info-text {
	visibility: visible;
}

.home-price__item .box__content .content__item .no-use {
	opacity: .4;
	text-decoration: line-through;
}

/*---------------------
  Home service
-----------------------*/

.home-service {
	margin-top: 120px;
}

.home-service__item {
	background-color: #feeff0;
	padding: 30px 15px;
	transition: all 0.7s;
	cursor: pointer;
	border-radius: 3px;
}

.home-service__item:hover {
	background-color: #ca1515;
	transform: translate(0, -5px);
}

.home-service__item:hover .item__title,
.home-service__item:hover .item__intro {
	color: #ffffff;
}

/*---------------------
  Home step
-----------------------*/
.home-step {
	margin-top: 150px;
	padding-bottom: 90px;
	background-color: rgba(255, 255, 255, 0);
	background: linear-gradient(0deg, rgba(212, 32, 39, 0.3) 0%, rgba(212, 32, 39, 0) 100%);
}

.home-step .item__index {
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #999999;
}

/*---------------------
  Home quote
-----------------------*/

.home-quote {
	padding-top: 80px;
	padding-bottom: 80px;
	position: relative;
}

.home-quote::before {
	content: '';
	position: absolute;
	background-color: rgba(255, 255, 255, 0.8);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.home-quote__form {
	box-shadow: 0px 1px 20px 0px rgba(212, 32, 39, 0.5);
	padding: 50px 30px;
	border-radius: 15px;
}

.home-quote__form h5 {
	color: #111111;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.home-quote__form form input {
	height: 50px;
	width: 100%;
	padding-left: 20px;
	font-size: 14px;
	color: #111111;
	border: 1px solid #e1e1e1;
	border-radius: 10px;
	margin-bottom: 20px;
}

.home-quote__form form input::-webkit-input-placeholder {
	color: #111111;
}

.home-quote__form form input::-moz-placeholder {
	color: #111111;
}

.home-quote__form form input:-ms-input-placeholder {
	color: #111111;
}

.home-quote__form form input::-ms-input-placeholder {
	color: #111111;
}

.home-quote__form form input::placeholder {
	color: #111111;
}

.home-quote__form form textarea {
	height: 130px;
	width: 100%;
	padding-left: 20px;
	padding-top: 12px;
	font-size: 14px;
	color: #111111;
	border: 1px solid #e1e1e1;
	border-radius: 10px;
	margin-bottom: 14px;
	resize: none;
}

.home-quote__form form textarea::-webkit-input-placeholder {
	color: #111111;
}

.home-quote__form form textarea::-moz-placeholder {
	color: #111111;
}

.home-quote__form form textarea:-ms-input-placeholder {
	color: #111111;
}

.home-quote__form form textarea::-ms-input-placeholder {
	color: #111111;
}

.home-quote__form form textarea::placeholder {
	color: #111111;
}

/*---------------------
  Home QA
-----------------------*/
.home-qa {
	padding-top: 80px;
	padding-bottom: 100px;
}

.home-qa .card {
	border: 1px solid #111111;
	overflow: hidden;
}

.home-qa .card .card-header {
	background-color: #ffffff;
	border-bottom: unset;
	color: #ca1515;
	padding: .75rem 1rem;
	cursor: pointer;
}

.home-qa__body {
	border-top: 1px solid #111111;
	padding: .75rem 1rem;
	font-size: 15px;
}

/*---------------------
  Footer
-----------------------*/

.footer {
	padding-top: 55px;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	background-color: rgba(0, 0, 0, 0.7);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}

.footer__about {
	margin-bottom: 30px;
}

.footer__about p {
	margin-bottom: 20px;
}

.footer__newslatter {
	margin-bottom: 30px;
}

.footer__newslatter form {
	position: relative;
	margin-bottom: 30px;
}

.footer__newslatter form input {
	height: 52px;
	width: 100%;
	border: 1px solid #e1e1e1;
	border-radius: 50px;
	padding-left: 30px;
	font-size: 14px;
	color: #666666;
}

.footer__newslatter form input::-webkit-input-placeholder {
	color: #666666;
}

.footer__newslatter form input::-moz-placeholder {
	color: #666666;
}

.footer__newslatter form input:-ms-input-placeholder {
	color: #666666;
}

.footer__newslatter form input::-ms-input-placeholder {
	color: #666666;
}

.footer__newslatter form input::placeholder {
	color: #666666;
}

.footer__newslatter form button {
	position: absolute;
	right: 3px;
	top: 50%;
	transform: translateY(-50%);
	padding: 10px 30px;
}

.footer__social {
	display: flex;
}

.footer__social a {
	display: inline-block;
	height: 40px;
	width: 40px;
	background: #e1e1e1;
	font-size: 15px;
	color: #111111;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	margin-right: 10px;
	margin-bottom: 5px;
}

.footer__social a:last-child {
	margin-right: 0;
}

.footer__copyright__text {
	border-top: 1px solid #e1e1e1;
	padding: 18px 0 25px;
	text-align: center;
	margin-top: 35px;
	z-index: 1;
	position: relative;
}

.footer__copyright__text p,
.footer__copyright__text a,
.footer__copyright__text a:hover {
	margin-bottom: 0;
	color: #ffffff;
}

.footer__copyright__text i {
	color: #ca1515;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/
@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {
	.header__menu ul li {
		margin-left: 7px;
		margin-right: 7px;
	}

	.header__menu ul li a {
		font-size: 14px;
	}
}

@media (max-width: 991.98px) {

	.header__logo {
		position: relative;
		left: unset;
		top: unset;
		transform: unset;
		padding: 10px 0;
	}

	.header__logo img {
		width: 80px !important;
	}

	.header__menu {
		display: none;
	}

	.header__right {
		right: 60px;
	}

	.header__right .btn-advise {
		padding: 7px 18px;
	}

	.canvas__open {
		display: block;
		font-size: 32px;
		color: #ffffff;
		height: 32px;
		width: 32px;
		line-height: 28px;
		text-align: center;
		border-radius: 2px;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
		/* background: #ca1515; */
	}

	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		z-index: 98;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		visibility: hidden;
	}

	.offcanvas-menu-overlay.active {
		visibility: visible;
	}

	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		width: 300px;
		height: 100%;
		background: #ffffff;
		padding: 70px 10px 0px 15px;
		display: block;
		z-index: 99;
		overflow-y: auto;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		opacity: 0;
	}

	.offcanvas-menu-wrapper.active {
		opacity: 1;
		left: 0;
	}

	.offcanvas__close {
		position: absolute;
		width: 36px;
		height: 36px;
		right: 10px;
		top: 10px;
		border: 1px solid #ddd;
		border-radius: 50%;
		font-size: 26px;
		text-align: center;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		cursor: pointer;
		line-height: 34px;
	}

	.offcanvas__menu {
		display: none;
	}

	.slicknav_btn {
		display: none;
	}

	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 20px;
	}

	.slicknav_nav ul {
		margin: 0;
	}

	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 7px 0;
		margin: 0;
		color: #111111;
		font-weight: 600;
	}

	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #111111;
	}

	.slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #111111;
	}

	.slicknav_nav {
		display: block !important;
	}

	.offcanvas__logo {
		position: absolute;
		top: 15px;
		left: 15px;
	}
}

@media (max-width: 767.98px) {}

@media (max-width: 575.98px) {}