@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
}

*:focus,
*:focus-visible {
	outline: none;
}

:root {
	--roboto-font: 'roboto', sans-serif;

	--font-awesome: 'Font Awesome 6 free';
	--bootstrap-icon: 'bootstrap-icons';

	--transition-05s: all ease-in-out 0.5s;
	--transition-08s: all ease-in-out 0.8s;

	/* --main-color: 79, 147, 149; */
	--main-color: 74, 145, 143;
	/* rgba(238, 78, 36, 1) */
	--second-color: 255, 0, 0;
	/* rgb(139, 69, 19) */


	--third-color: 139, 69, 19;
	--fourth-color: 255, 200, 52;
	/* rgba(33, 33, 33, 1) */
	--back-color: 242, 242, 242;
	--white-color: 255, 255, 255;
	--black-color: 0, 0, 0;
	--background-color: #ffffff;
	--default-color: #444444;
	--heading-color: #c3c3c3;
	--accent-color: #514942;
	--surface-color: #ffffff;
	--contrast-color: #ffffff;
	--nav-color: #5f687b;
	--nav-hover-color: #514942;
	--nav-mobile-background-color: #ffffff;
	--nav-dropdown-background-color: #ffffff;
	--nav-dropdown-color: #5f687b;
	--nav-dropdown-hover-color: #514942;
}

input:hover,
select:hover,
.btn:hover,
button:hover,
.form-control:hover,
textarea:hover,
.navbar-toggler:hover,
input:focus,
select:focus,
.btn:focus,
button:focus,
.form-control:focus,
textarea:focus,
.navbar-toggler:focus,
.btn:first-child:active,
.btn-close:focus,
button.btn:focus:not(:focus-visible),
.form-select:hover,
.form-select:focus {
	box-shadow: none;
	outline: 0px;
	border-color: inherit;
}

ol,
ul,
dl {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

a {
	display: inline-block;
	outline: none;
}

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


img,
.img-fluid {
	width: 100%;
	height: 100%;
	object-fit: cover;
	user-select: none;
	pointer-events: none;
}

body {
	font-family: var(--roboto-font);
}

.head-pt {
	/* padding-top: 260px; */
	padding-top: 60px;
}

.common-section {
	padding: 50px 0px;
	position: relative;
	overflow: hidden;
}

.common-section>*,
.banner-inner-section>*,
.footer-section>* {
	position: relative;
	z-index: 1;
}

.banner-section .row,
.common-section .row,
.footer-section .row,
.cbaha-bimg-main .row {
	gap: 24px 0px;
}

.common-box {
	/* --common-pe: 24%; */
	/* --common-pe: 108px; */
	/* margin-bottom: 24px; */
	padding-right: var(--common-pe);
}

.common-SubTitle,
.common-box>span,
.common-section .common-box>span {
	color: rgba(var(--main-color), 1);
	display: block;
	line-height: 1;
	font-weight: 500;
	letter-spacing: calc(var(--spacing) * 2);
	text-transform: uppercase;
	margin-bottom: 14px;
	font-size: 18px;
}

.common-title,
.common-box>h2,
.common-section .common-box>h2 {
	display: block;
	position: relative;
	font-family: var(--kayonest-font);
	font-size: 44px;
	margin-bottom: 20px;
	text-transform: capitalize;
	color: rgba(var(--second-color), 1);
	text-align: center;
	font-weight: 500;
}

.common-title::after,
.common-box>h2::after,
.common-section .common-box>h2::after {
	display: none;
	content: '';
	position: relative;
	display: none;
	margin: auto;
	inset: 0px;
	width: 80px;
	height: 30px;
	background: rgba(var(--second-color), 0) url(../images/title-after.png) no-repeat center center / contain;
	margin-top: 20px;
}

.common-para,
.common-box>div.common-para {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	color: rgba(var(--white-color), 0.9);
	margin: 15px 0px;
	line-height: 24px;
	font-size: 18px;
}

.common-para p,
.common-box>div.common-para p {
	margin-bottom: 12px;
}

.common-para p:last-child,
.common-box>div.common-para p:last-child {
	margin-bottom: 0px;
}

.common-para ul,
.common-box>div.common-para ul {
	display: grid;
	gap: 6px;
}

.common-para ul li,
.common-box>div.common-para ul li {
	position: relative;
	font-size: 15px;
	padding-left: 14px;
}

/* .common-para ul li::before,
.common-box>div.common-para ul li::before {
	content: '';
	position: absolute;
	inset: 0px;
	display: inline-block;
	width: var(--ehw-cul);
	height: var(--ehw-cul);
	border-radius: 50%;
	background: rgba(var(--black-color), 0.4);
	--ehw-cul: 5px;
	margin-top: 10px;
} */

/* All type btn start */

.common-borderBtn,
.common-btn {
	position: relative;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: calc(var(--spacing) * 2);
	transform: var(--transition-05s);
	text-transform: capitalize;
	border-radius: 0px;
}

.common-borderBtn,
.common-borderBtn:visited {
	--border-btn: rgba(var(--second-color), 1);
	background: rgba(var(--second-color), 0);
	border: 1px solid var(--border-btn);
	color: rgba(var(--white-color), 1);
	box-shadow: var(--ebs) var(--ebs) 0px 0px var(--border-btn);
	--ebs: 4px;
	--ebsm: -4px;
	margin: 5px;
	padding: 14px 20px;
}

.common-borderBtn:hover,
.common-borderBtn:first-child:active,
.common-borderBtn:active,
.common-borderBtn:focus,
:not(.btn-check)+.common-borderBtn:active,
.common-borderBtn:focus-visible,
button.common-borderBtn:focus:not(:focus-visible),
.common-borderBtn:first-child:hover {
	--border-btn: rgba(var(--white-color), 1);
	background: rgba(var(--second-color), 0);
	border-color: var(--border-btn);
	color: var(--border-btn);
	box-shadow: var(--ebsm) var(--ebsm) 0px 0px var(--border-btn);
}

.common-btn,
.common-btn:visited {
	--boco-btn: rgba(var(--fourth-color), 1);
	padding: 2px 4px;
	border: none;
	background: rgba(var(--second-color), 0);
	/* border: 2px solid rgba(var(--fourth-color), 0); */
	border-bottom: 2px solid var(--boco-btn);
	color: var(--boco-btn);
}

.common-btn:hover,
.common-btn:first-child:active,
.common-btn:active,
.common-btn:focus,
:not(.btn-check)+.common-btn:active,
.common-btn:focus-visible,
button.common-btn:focus:not(:focus-visible),
.common-btn:first-child:hover {
	--boco-btn: rgba(var(--second-color), 1);
	background: rgba(var(--second-color), 0);
	border-color: var(--boco-btn);
	color: var(--boco-btn);
}

/* All type btn end */

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	--ehw-nav: 50px;
	--cobtn-after: rgba(var(--white-color), 1);
	position: relative;
	top: 40%;
	line-height: 1;
	font-size: 35px;
	color: var(--cobtn-after);
	width: calc(var(--ehw-nav));
	height: calc(var(--ehw-nav));
}

.owl-carousel .owl-nav button.owl-next {
	right: 5%;
}

.owl-carousel .owl-nav button.owl-prev {
	left: 90%;
}

.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel .owl-nav button.owl-next.disabled {
	--cobtn-after: rgba(var(--white-color), 0.6);
}

.owl-carousel .owl-nav button.owl-prev::after,
.owl-carousel .owl-nav button.owl-next::after {
	--ehw-nav-after: 44px;
	--elr-navAfter: -30%;
	content: '';
	position: absolute;
	width: calc(var(--ehw-nav-after));
	height: calc(var(--ehw-nav-after));
	border: 1px solid var(--cobtn-after);
	border-radius: 50%;
	top: 20%;
	top: 4%;
	transition: var(--transition-05s);
}

.owl-carousel .owl-nav button.owl-prev::after {
	left: var(--elr-navAfter);
}

.owl-carousel .owl-nav button.owl-next::after {
	right: var(--elr-navAfter);
}

.owl-carousel .owl-nav button.owl-prev:hover::after,
.owl-carousel .owl-nav button.owl-next:hover::after {
	--ehw-nav-after: 100%;
	top: -1px;
	--elr-navAfter: 0%;
}

.owl-carousel .owl-dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 20px;
}

.owl-carousel button.owl-dot {
	--ehw-ocbd: 12px;
	width: var(--ehw-ocbd);
	height: var(--ehw-ocbd);
	background: rgba(var(--black-color), 0.5);
	border-radius: 50%;
	transition: var(--transition-05s);
}

.owl-carousel button.owl-dot.active {
	background: rgba(var(--main-color), 1);
}


.common-box.welcome-textBox,
.common-section.cbaha-top-main,
.common-section.cta-section {
	background: rgba(var(--third-color), 1);
}

.common-box.blog-mt-box,
.common-box.gallery-mt-box {
	margin-bottom: 30px;
}

.cbaha-text-box,
.welcome-textBox,
.pro-text-box,
.blog-mt-box,
.gallery-mt-box,
.testimonial-mt-box,
.test-user-dtl {
	text-align: center;
}

.cta-box .common-SubTitle,
.cta-box.common-box>span,
.common-section .cta-box.common-box>span {
	margin-bottom: 0px;
	color: rgba(var(--fourth-color), 1);
	text-transform: inherit;
	font-size: 20px;
	line-height: 1.4;
}

.cta-box .common-title,
.cta-box.common-box>h2,
.common-section .cta-box.common-box>h2 {
	margin-bottom: 14px;
	line-height: 1;
}

.cta-box .common-title::after,
.cta-box.common-box>h2::after,
.common-section .cta-box.common-box>h2::after {
	display: none;
}

.pro-slider,
.blog-slider,
.cbahaInner-section,
.ctaInner-section,
.inner-footer,
.copy-box {
	--elrp: 70px;
	padding: 0px var(--elrp);
}

/* contact start */

.form-box {
	margin-bottom: 15px;
}

.form-box:last-child {
	margin-bottom: 0px;
}

.select-box select,
.select-box select:hover,
.select-box select:focus,
.select-box select:focus-visible,
.select-box select:focus-within,
.select-box select:active,
.select-box select:target {
	padding-right: 50px;
	background: rgba(var(--black-color), 0);
	position: relative;
	z-index: 1;
	color: #848484;
}

.select-box select option,
.select-box select:hover option,
.select-box select:focus option,
.select-box select:focus-visible option,
.select-box select:focus-within option,
.select-box select:active option,
.select-box select:target option {
	color: #111;
}

.select-box::after,
.select-box::before {
	content: '';
	position: absolute;
	display: inline-block;
}

.select-box::after {
	border-right: 2px solid #333;
	border-bottom: 2px solid #333;
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	right: 20px;
	top: 40%;
}

.select-box::before {
	border-right: 1px solid #B1B1B1;
	width: 1px;
	height: 70%;
	margin-block: auto;
	right: 49px;
	top: 0;
	bottom: 0;
}

.form-control {
	border: 1px solid rgba(var(--second-color), 0.5);
	border-radius: 0px;
	padding: 12px 10px;
	font-size: 14px;
	color: rgba(var(--black-color), 1);
}

.form-control:hover,
.form-control:focus {
	border-color: rgba(var(--second-color), 0.5);
}

.form-control::placeholder {
	color: rgba(var(--second-color), 0.5);
	text-transform: capitalize;
}

.select-box,
.form-control,
.select-box:hover,
.form-control:hover,
.select-box:focus,
.form-control:focus {
	position: relative;
	background: transparent;
	color: rgba(var(--black-color), 1);
}

textarea.form-control {
	resize: none;
}
.wp-block-group__inner-container ul{
	list-style: disc;
	padding-left: unset;
	margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 1rem;
}

.wp-block-group__inner-container ul li{
	position: relative;
	font-weight: 700;
    font-size: 15px;
	color: rgba(var(--black-color), 1);
}
/* contact end */


@media (max-width: 1400px) {

	.common-para,
	.common-box>div.common-para {
		font-size: 17px;
	}

	.common-title,
	.common-box>h2,
	.common-section .common-box>h2 {
		font-size: 38px;
	}

	.common-title::after,
	.common-box>h2::after,
	.common-section .common-box>h2::after {
		width: 70px;
		height: 26px;
		margin-top: 16px;
	}
}

@media (max-width: 1199px) {

	.common-borderBtn,
	.common-btn {
		font-size: 14px;
	}

	.common-borderBtn,
	.common-borderBtn:visited {
		padding: 10px 20px;
	}

	.common-section {
		padding: 50px 0px;
	}

	.common-title,
	.common-box>h2,
	.common-section .common-box>h2 {
		font-size: 30px;
	}

	.common-para,
	.common-box>div.common-para {
		font-size: 14px;
		line-height: 1.5;
	}
}

@media (max-width: 991px) {
	.head-pt {
		padding-top: 85px;
	}
}

@media (max-width: 767px) {
	.common-section {
		padding: 60px 0px;
	}

	.owl-carousel .owl-nav button.owl-prev,
	.owl-carousel .owl-nav button.owl-next {
		--ehw-nav: 35px;
		font-size: 30px;
	}

	.owl-carousel .owl-nav button.owl-prev::after,
	.owl-carousel .owl-nav button.owl-next::after {
		--ehw-nav-after: 30px;
		top: 4%;
	}

	.common-SubTitle,
	.common-box>span,
	.common-section .common-box>span {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.common-title,
	.common-box>h2,
	.common-section .common-box>h2 {
		font-size: 35px;
	}

	.common-para,
	.common-box>div.common-para {
		line-height: 22px;
		font-size: 15px;
	}

	.common-title::after,
	.common-box>h2::after,
	.common-section .common-box>h2::after {
		width: 60px;
		height: 20px;
		margin-top: 10px;
	}

	.pro-slider,
	.blog-slider,
	.cbahaInner-section,
	.ctaInner-section,
	.inner-footer,
	.copy-box {
		--elrp: 50px;
	}
}

@media (max-width: 580px) {
	.wp-block-group__inner-container ul {
		list-style: disc;
		padding-left: 2rem !important;
	}
	
	.common-borderBtn,
	.common-borderBtn:visited {
		padding: 8px 15px;
	}

	.common-borderBtn,
	.common-btn {
		font-size: 13px;
	}

	.owl-carousel .owl-nav button.owl-prev,
	.owl-carousel .owl-nav button.owl-next {
		--ehw-nav: 30px;
		font-size: 26px;
	}

	.owl-carousel .owl-nav button.owl-prev::after,
	.owl-carousel .owl-nav button.owl-next::after {
		--ehw-nav-after: 26px;
		top: 6%;
	}

	.owl-carousel .owl-nav button.owl-prev:hover::after,
	.owl-carousel .owl-nav button.owl-next:hover::after {
		top: 0px;
	}

	.common-SubTitle,
	.common-box>span,
	.common-section .common-box>span {
		font-size: 12px;
	}

	.common-title,
	.common-box>h2,
	.common-section .common-box>h2 {
		font-size: 30px;
	}


	.common-para,
	.common-box>div.common-para {
		line-height: 20px;
		font-size: 13px;
	}

	.common-box.blog-mt-box,
	.common-box.gallery-mt-box {
		margin-bottom: 10px;
	}

	.cbahaInner-section,
	.ctaInner-section,
	.inner-footer,
	.copy-box {
		--elrp: 0px;
	}
}


body::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	cursor: pointer;
}

/* Track */
body::-webkit-scrollbar-track {
	background: #ffffff;
}

/* Handle */
body::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, rgba(var(--second-color), 1) 50%, rgba(var(--second-color), 1) 80%);
	transition: all ease-in-out 0.8s;
	border-radius: 0px;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, rgba(var(--second-color), 1) 50%, rgba(var(--second-color), 1) 80%);
	border-radius: 0px;
	transition: all ease-in-out 0.8s;
}

body::-webkit-scrollbar-button {
	background: no-repeat center center / 60%;
	height: 8px;
	width: 8px;
	/* -webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2); */
	cursor: pointer;
}

