/*font Variables*/
/*----------------------------------------------------*/
/* Google Fonts moved to HTML head for better performance */
@font-face {
	font-family: "Canela";
	src: url("../assets/fonts/CanelaText-Medium-Trial.otf") format("opentype");
	font-display: swap;
}
html {
	height: 100%;
}

a {
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	color: #000;
}
a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #316b77;
}

body {
	font-size: 16px;
	height: 100%;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	color: #000000;
}

:focus {
	outline: none;
}

.row {
	--bs-gutter-x: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-weight: 500;
	font-family: "Canela";
}

h1 a,
h2 a,
h3 > a,
h4 a,
h5 a,
h6 a {
	color: #303138;
}

p {
	color: #5d5d5d;
}

video {
	max-width: 100%;
}

table tr td p:last-child {
	margin-bottom: 0;
}

pre[class*="language-"] > code {
	border-left: 5px solid brand_color_rgba(0.8);
}

.form-check {
	position: relative;
	display: block;
}

/** === Scrollbar === **/
::-webkit-scrollbar {
	width: 10px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #fff;
}

::-webkit-scrollbar-thumb {
	background: #999999;
	border-radius: 30px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

/** === Predefined Global Classes === **/
.bold {
	font-weight: 700;
}

.medium {
	font-weight: 500;
}

.regular {
	font-weight: 400;
}

button:focus {
	outline: none;
}

/** === List style === **/
ul.list-style {
	margin-bottom: 2rem;
}

ul.list-style li {
	margin-bottom: 0.5rem;
	list-style-type: circle;
}

ul.list-style li:last-child {
	margin-bottom: 0;
}

.section-title .subtitle {
	font-family: "Poppins";
	font-weight: 500;
	font-size: 18px;
	color: #c7a14d;
	text-transform: uppercase;
}
.section-title h2 {
	font-weight: 500;
	font-size: 46px;
	color: #303138;
}
.section-title p {
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #5c5c64;
}

.border-rounded {
	border-radius: 8px;
}

.sec-padding {
	padding-top: 90px;
	padding-bottom: 90px;
}

.form-check-input {
	border-color: #000;
	cursor: pointer;
}
.form-check-input:focus {
	box-shadow: none;
	border-color: #000;
}
.form-check-input:checked[type="checkbox"] {
	background-color: transparent;
	border-color: #000;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23535A60' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-label {
	cursor: pointer;
}

.form-switch .form-check-input {
	cursor: pointer;
	width: 40px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 9 8'%3e%3ccircle r='3' fill='%236A737C'/%3e%3c/svg%3e");
	border: 3px solid #000;
	transition: background-position 0.15s ease-in-out;
	box-shadow: none;
}
.form-switch .form-check-input:checked {
	background-color: #316b77;
	border-color: #316b77;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-5 -4 9 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/*----------------------------------------*/
/*   Back To Top Button CSS
/*----------------------------------------*/
#back-to-top {
	display: inline-block;
	background: #c7a14d;
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 50%;
	position: fixed;
	bottom: 30px;
	right: 30px;
	transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}

#back-to-top::after {
	content: "2";
	font-family: eleganticons;
	font-weight: normal;
	font-style: normal;
	font-size: 2em;
	line-height: 50px;
	color: #fff;
}

#back-to-top:hover {
	cursor: pointer;
}

#back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.slick-slider {
	padding: 0;
}

.slick-arrow {
	height: 50px;
	width: 50px;
	border: 1px solid #c7a14d;
	border-radius: 50%;
	background-color: transparent;
	top: inherit;
	bottom: 0;
	transform: translate(0);
}
.slick-arrow:hover {
	background-color: #243a1f;
	border-color: #243a1f;
}
.slick-arrow::before {
	display: none;
}
.slick-arrow::after {
	content: "";
	position: absolute;
	top: 22px;
	left: 22px;
	width: 37px;
	height: 2px;
	background-color: #c7a14d;
}
.slick-arrow i {
	color: #c7a14d;
	font-size: 20px;
}

.slick-prev {
	z-index: 999;
	left: calc(40% - 73px);
}

.slick-next {
	z-index: 999;
	right: calc(58% - 73px);
}
.slick-next::after {
	left: inherit;
	right: 22px;
}

.slick-dots .slick-active button {
	background: #316b77;
}
.slick-dots li button {
	height: 12px;
	width: 12px;
	border-radius: 50%;
	background: rgba(156, 179, 184, 0.7882352941);
	transition: all 0.3s ease-in-out;
	opacity: 1;
	visibility: visible;
}
.slick-dots li button::before {
	display: none;
}

.form-check-input {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	border-color: #14315a;
	margin-right: 15px;
}
.form-check-input:checked[type="radio"] {
	background-color: transparent;
	border-color: #000;
	background-image: url(../img/edit-page/radio-bg.png);
	background-size: 12px;
	background-position: center;
}

.form-check-label {
	font-size: 16px;
	font-weight: 400;
	line-height: 20.88px;
	letter-spacing: 0.02em;
}

.form-control {
	border: 0.9px solid transparent;
	height: 64px;
	padding-left: 40px;
	font-size: 16px;
	color: #9999a5;
	background-color: #fff;
	border-radius: 50px;
	box-shadow: 0px 5px 54px 0px rgba(69, 70, 96, 0.0784313725);
}
.form-control::placeholder {
	color: #9999a5;
}
.form-control:focus {
	box-shadow: none;
	border-color: #c7a14d;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.mt-20 {
	margin-top: 20px;
}

.mt-25 {
	margin-top: 25px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-35 {
	margin-top: 35px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-45 {
	margin-top: 45px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-55 {
	margin-top: 55px;
}

.mt-60 {
	margin-top: 60px;
}

.mt-65 {
	margin-top: 65px;
}

.mt-70 {
	margin-top: 70px;
}

.mt-75 {
	margin-top: 75px;
}

.mt-80 {
	margin-top: 80px;
}

.mt-85 {
	margin-top: 85px;
}

.mt-90 {
	margin-top: 90px;
}

.mt-95 {
	margin-top: 95px;
}

.mt-100 {
	margin-top: 100px;
}

.mt-105 {
	margin-top: 105px;
}

.mt-110 {
	margin-top: 110px;
}

.mt-115 {
	margin-top: 115px;
}

.mt-120 {
	margin-top: 120px;
}

.mt-125 {
	margin-top: 125px;
}

.mt-130 {
	margin-top: 130px;
}

.mt-135 {
	margin-top: 135px;
}

.mt-140 {
	margin-top: 140px;
}

.mt-145 {
	margin-top: 145px;
}

.mt-150 {
	margin-top: 150px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-35 {
	margin-bottom: 35px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-45 {
	margin-bottom: 45px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-55 {
	margin-bottom: 55px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-65 {
	margin-bottom: 65px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-75 {
	margin-bottom: 75px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-85 {
	margin-bottom: 85px;
}

.mb-90 {
	margin-bottom: 90px;
}

.mb-95 {
	margin-bottom: 95px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mb-105 {
	margin-bottom: 105px;
}

.mb-110 {
	margin-bottom: 110px;
}

.mb-115 {
	margin-bottom: 115px;
}

.mb-120 {
	margin-bottom: 120px;
}

.mr-10 {
	margin-right: 10px;
}

.mr-15 {
	margin-right: 15px;
}

.mr-20 {
	margin-right: 20px;
}

.mr-25 {
	margin-right: 25px;
}

.mr-30 {
	margin-right: 30px;
}

.mr-35 {
	margin-right: 35px;
}

.mr-40 {
	margin-right: 40px;
}

.mr-45 {
	margin-right: 45px;
}

.mr-50 {
	margin-right: 50px;
}

.mr-55 {
	margin-right: 55px;
}

.mr-60 {
	margin-right: 60px;
}

.mr-65 {
	margin-right: 65px;
}

.mr-70 {
	margin-right: 70px;
}

.mr-75 {
	margin-right: 75px;
}

.mr-80 {
	margin-right: 80px;
}

.mr-85 {
	margin-right: 85px;
}

.mr-90 {
	margin-right: 90px;
}

.mr-95 {
	margin-right: 95px;
}

.mr-100 {
	margin-right: 100px;
}

.ml-10 {
	margin-left: 10px;
}

.ml-15 {
	margin-left: 15px;
}

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

.ml-25 {
	margin-left: 25px;
}

.ml-30 {
	margin-left: 30px;
}

.ml-35 {
	margin-left: 35px;
}

.ml-40 {
	margin-left: 40px;
}

.ml-45 {
	margin-left: 45px;
}

.ml-50 {
	margin-left: 50px;
}

.ml-55 {
	margin-left: 55px;
}

.ml-60 {
	margin-left: 60px;
}

.ml-65 {
	margin-left: 65px;
}

.ml-70 {
	margin-left: 70px;
}

.ml-75 {
	margin-left: 75px;
}

.ml-80 {
	margin-left: 80px;
}

.ml-85 {
	margin-left: 85px;
}

.ml-90 {
	margin-left: 90px;
}

.ml-95 {
	margin-left: 95px;
}

.ml-100 {
	margin-left: 100px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-25 {
	padding-top: 25px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-35 {
	padding-top: 35px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-45 {
	padding-top: 45px;
}

.pt-50 {
	padding-top: 50px;
}

.pt-55 {
	padding-top: 55px;
}

.pt-60 {
	padding-top: 60px;
}

.pt-65 {
	padding-top: 65px;
}

.pt-70 {
	padding-top: 70px;
}

.pt-75 {
	padding-top: 75px;
}

.pt-80 {
	padding-top: 80px;
}

.pt-85 {
	padding-top: 85px;
}

.pt-90 {
	padding-top: 90px;
}

.pt-95 {
	padding-top: 95px;
}

.pt-100 {
	padding-top: 100px;
}

.pt-105 {
	padding-top: 105px;
}

.pt-110 {
	padding-top: 110px;
}

.pt-115 {
	padding-top: 115px;
}

.pt-120 {
	padding-top: 120px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pb-25 {
	padding-bottom: 25px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-35 {
	padding-bottom: 35px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-45 {
	padding-bottom: 45px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-55 {
	padding-bottom: 55px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-65 {
	padding-bottom: 65px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pb-75 {
	padding-bottom: 75px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-85 {
	padding-bottom: 85px;
}

.pb-90 {
	padding-bottom: 90px;
}

.pb-95 {
	padding-bottom: 95px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pb-105 {
	padding-bottom: 105px;
}

.pb-110 {
	padding-bottom: 110px;
}

.pb-115 {
	padding-bottom: 115px;
}

.pb-120 {
	padding-bottom: 120px;
}

.pr-10 {
	padding-right: 10px;
}

.pr-15 {
	padding-right: 15px;
}

.pr-20 {
	padding-right: 20px;
}

.pr-25 {
	padding-right: 25px;
}

.pr-30 {
	padding-right: 30px;
}

.pr-35 {
	padding-right: 35px;
}

.pr-40 {
	padding-right: 40px;
}

.pr-45 {
	padding-right: 45px;
}

.pr-50 {
	padding-right: 50px;
}

.pr-55 {
	padding-right: 55px;
}

.pr-60 {
	padding-right: 60px;
}

.pr-65 {
	padding-right: 65px;
}

.pr-70 {
	padding-right: 70px;
}

.pr-75 {
	padding-right: 75px;
}

.pr-80 {
	padding-right: 80px;
}

.pr-85 {
	padding-right: 85px;
}

.pr-90 {
	padding-right: 90px;
}

.pr-95 {
	padding-right: 95px;
}

.pr-100 {
	padding-right: 100px;
}

.pl-10 {
	padding-left: 10px;
}

.pl-15 {
	padding-left: 15px;
}

.pl-20 {
	padding-left: 20px;
}

.pl-25 {
	padding-left: 25px;
}

.pl-30 {
	padding-left: 30px;
}

.pl-35 {
	padding-left: 35px;
}

.pl-40 {
	padding-left: 40px;
}

.pl-45 {
	padding-left: 45px;
}

.pl-50 {
	padding-left: 50px;
}

.pl-55 {
	padding-left: 55px;
}

.pl-60 {
	padding-left: 60px;
}

.pl-65 {
	padding-left: 65px;
}

.pl-70 {
	padding-left: 70px;
}

.pl-75 {
	padding-left: 75px;
}

.pl-80 {
	padding-left: 80px;
}

.pl-85 {
	padding-left: 85px;
}

.pl-90 {
	padding-left: 90px;
}

.pl-95 {
	padding-left: 95px;
}

.pl-100 {
	padding-left: 100px;
}

@media (min-width: 992px) {
	.mt-lg-20 {
		margin-top: 20px;
	}
	.mt-lg-25 {
		margin-top: 25px;
	}
	.mt-lg-30 {
		margin-top: 30px;
	}
	.mt-lg-35 {
		margin-top: 35px;
	}
	.mt-lg-40 {
		margin-top: 40px;
	}
	.mt-lg-45 {
		margin-top: 45px;
	}
	.mt-lg-50 {
		margin-top: 50px;
	}
	.mt-lg-55 {
		margin-top: 55px;
	}
	.mt-lg-60 {
		margin-top: 60px;
	}
	.mt-lg-65 {
		margin-top: 65px;
	}
	.mt-lg-70 {
		margin-top: 70px;
	}
	.mt-lg-75 {
		margin-top: 75px;
	}
	.mt-lg-80 {
		margin-top: 80px;
	}
	.mt-lg-85 {
		margin-top: 85px;
	}
	.mt-lg-90 {
		margin-top: 90px;
	}
	.mt-lg-95 {
		margin-top: 95px;
	}
	.mt-lg-100 {
		margin-top: 100px;
	}
	.mt-lg-105 {
		margin-top: 105px;
	}
	.mt-lg-110 {
		margin-top: 110px;
	}
	.mt-lg-115 {
		margin-top: 115px;
	}
	.mt-lg-120 {
		margin-top: 120px;
	}
	.mt-lg-125 {
		margin-top: 125px;
	}
	.mt-lg-130 {
		margin-top: 130px;
	}
	.mt-lg-135 {
		margin-top: 135px;
	}
	.mt-lg-140 {
		margin-top: 140px;
	}
	.mt-lg-145 {
		margin-top: 145px;
	}
	.mt-lg-150 {
		margin-top: 150px;
	}
	.mb-lg-20 {
		margin-bottom: 20px;
	}
	.mb-lg-25 {
		margin-bottom: 25px;
	}
	.mb-lg-30 {
		margin-bottom: 30px;
	}
	.mb-lg-35 {
		margin-bottom: 35px;
	}
	.mb-lg-40 {
		margin-bottom: 40px;
	}
	.mb-lg-45 {
		margin-bottom: 45px;
	}
	.mb-lg-50 {
		margin-bottom: 50px;
	}
	.mb-lg-55 {
		margin-bottom: 55px;
	}
	.mb-lg-60 {
		margin-bottom: 60px;
	}
	.mb-lg-65 {
		margin-bottom: 65px;
	}
	.mb-lg-70 {
		margin-bottom: 70px;
	}
	.mb-lg-75 {
		margin-bottom: 75px;
	}
	.mb-lg-80 {
		margin-bottom: 80px;
	}
	.mb-lg-85 {
		margin-bottom: 85px;
	}
	.mb-lg-90 {
		margin-bottom: 90px;
	}
	.mb-lg-95 {
		margin-bottom: 95px;
	}
	.mb-lg-100 {
		margin-bottom: 100px;
	}
	.mb-lg-105 {
		margin-bottom: 105px;
	}
	.mb-lg-110 {
		margin-bottom: 110px;
	}
	.mb-lg-115 {
		margin-bottom: 115px;
	}
	.mb-lg-120 {
		margin-bottom: 120px;
	}
	.mr-lg-10 {
		margin-right: 10px;
	}
	.mr-lg-15 {
		margin-right: 15px;
	}
	.mr-lg-20 {
		margin-right: 20px;
	}
	.mr-lg-25 {
		margin-right: 25px;
	}
	.mr-lg-30 {
		margin-right: 30px;
	}
	.mr-lg-35 {
		margin-right: 35px;
	}
	.mr-lg-40 {
		margin-right: 40px;
	}
	.mr-lg-45 {
		margin-right: 45px;
	}
	.mr-lg-50 {
		margin-right: 50px;
	}
	.mr-lg-55 {
		margin-right: 55px;
	}
	.mr-lg-60 {
		margin-right: 60px;
	}
	.mr-lg-65 {
		margin-right: 65px;
	}
	.mr-lg-70 {
		margin-right: 70px;
	}
	.mr-lg-75 {
		margin-right: 75px;
	}
	.mr-lg-80 {
		margin-right: 80px;
	}
	.mr-lg-85 {
		margin-right: 85px;
	}
	.mr-lg-90 {
		margin-right: 90px;
	}
	.mr-lg-95 {
		margin-right: 95px;
	}
	.mr-lg-100 {
		margin-right: 100px;
	}
	.ml-lg-10 {
		margin-left: 10px;
	}
	.ml-lg-15 {
		margin-left: 15px;
	}
	.ml-lg-20 {
		margin-left: 20px;
	}
	.ml-lg-25 {
		margin-left: 25px;
	}
	.ml-lg-30 {
		margin-left: 30px;
	}
	.ml-lg-35 {
		margin-left: 35px;
	}
	.ml-lg-40 {
		margin-left: 40px;
	}
	.ml-lg-45 {
		margin-left: 45px;
	}
	.ml-lg-50 {
		margin-left: 50px;
	}
	.ml-lg-55 {
		margin-left: 55px;
	}
	.ml-lg-60 {
		margin-left: 60px;
	}
	.ml-lg-65 {
		margin-left: 65px;
	}
	.ml-lg-70 {
		margin-left: 70px;
	}
	.ml-lg-75 {
		margin-left: 75px;
	}
	.ml-lg-80 {
		margin-left: 80px;
	}
	.ml-lg-85 {
		margin-left: 85px;
	}
	.ml-lg-90 {
		margin-left: 90px;
	}
	.ml-lg-95 {
		margin-left: 95px;
	}
	.ml-lg-100 {
		margin-left: 100px;
	}
	.pt-lg-20 {
		padding-top: 20px;
	}
	.pt-lg-25 {
		padding-top: 25px;
	}
	.pt-lg-30 {
		padding-top: 30px;
	}
	.pt-lg-35 {
		padding-top: 35px;
	}
	.pt-lg-40 {
		padding-top: 40px;
	}
	.pt-lg-45 {
		padding-top: 45px;
	}
	.pt-lg-50 {
		padding-top: 50px;
	}
	.pt-lg-55 {
		padding-top: 55px;
	}
	.pt-lg-60 {
		padding-top: 60px;
	}
	.pt-lg-65 {
		padding-top: 65px;
	}
	.pt-lg-70 {
		padding-top: 70px;
	}
	.pt-lg-75 {
		padding-top: 75px;
	}
	.pt-lg-80 {
		padding-top: 80px;
	}
	.pt-lg-85 {
		padding-top: 85px;
	}
	.pt-lg-90 {
		padding-top: 90px;
	}
	.pt-lg-95 {
		padding-top: 95px;
	}
	.pt-lg-100 {
		padding-top: 100px;
	}
	.pt-lg-105 {
		padding-top: 105px;
	}
	.pt-lg-110 {
		padding-top: 110px;
	}
	.pt-lg-115 {
		padding-top: 115px;
	}
	.pt-lg-120 {
		padding-top: 120px;
	}
	.pb-lg-20 {
		padding-bottom: 20px;
	}
	.pb-lg-25 {
		padding-bottom: 25px;
	}
	.pb-lg-30 {
		padding-bottom: 30px;
	}
	.pb-lg-35 {
		padding-bottom: 35px;
	}
	.pb-lg-40 {
		padding-bottom: 40px;
	}
	.pb-lg-45 {
		padding-bottom: 45px;
	}
	.pb-lg-50 {
		padding-bottom: 50px;
	}
	.pb-lg-55 {
		padding-bottom: 55px;
	}
	.pb-lg-60 {
		padding-bottom: 60px;
	}
	.pb-lg-65 {
		padding-bottom: 65px;
	}
	.pb-lg-70 {
		padding-bottom: 70px;
	}
	.pb-lg-75 {
		padding-bottom: 75px;
	}
	.pb-lg-80 {
		padding-bottom: 80px;
	}
	.pb-lg-85 {
		padding-bottom: 85px;
	}
	.pb-lg-90 {
		padding-bottom: 90px;
	}
	.pb-lg-95 {
		padding-bottom: 95px;
	}
	.pb-lg-100 {
		padding-bottom: 100px;
	}
	.pb-lg-105 {
		padding-bottom: 105px;
	}
	.pb-lg-110 {
		padding-bottom: 110px;
	}
	.pb-lg-115 {
		padding-bottom: 115px;
	}
	.pb-lg-120 {
		padding-bottom: 120px;
	}
	.pr-lg-10 {
		padding-right: 10px;
	}
	.pr-lg-15 {
		padding-right: 15px;
	}
	.pr-lg-20 {
		padding-right: 20px;
	}
	.pr-lg-25 {
		padding-right: 25px;
	}
	.pr-lg-30 {
		padding-right: 30px;
	}
	.pr-lg-35 {
		padding-right: 35px;
	}
	.pr-lg-40 {
		padding-right: 40px;
	}
	.pr-lg-45 {
		padding-right: 45px;
	}
	.pr-lg-50 {
		padding-right: 50px;
	}
	.pr-lg-55 {
		padding-right: 55px;
	}
	.pr-lg-60 {
		padding-right: 60px;
	}
	.pr-lg-65 {
		padding-right: 65px;
	}
	.pr-lg-70 {
		padding-right: 70px;
	}
	.pr-lg-75 {
		padding-right: 75px;
	}
	.pr-lg-80 {
		padding-right: 80px;
	}
	.pr-lg-85 {
		padding-right: 85px;
	}
	.pr-lg-90 {
		padding-right: 90px;
	}
	.pr-lg-95 {
		padding-right: 95px;
	}
	.pr-lg-100 {
		padding-right: 100px;
	}
	.pl-lg-10 {
		padding-left: 10px;
	}
	.pl-lg-15 {
		padding-left: 15px;
	}
	.pl-lg-20 {
		padding-left: 20px;
	}
	.pl-lg-25 {
		padding-left: 25px;
	}
	.pl-lg-30 {
		padding-left: 30px;
	}
	.pl-lg-35 {
		padding-left: 35px;
	}
	.pl-lg-40 {
		padding-left: 40px;
	}
	.pl-lg-45 {
		padding-left: 45px;
	}
	.pl-lg-50 {
		padding-left: 50px;
	}
	.pl-lg-55 {
		padding-left: 55px;
	}
	.pl-lg-60 {
		padding-left: 60px;
	}
	.pl-lg-65 {
		padding-left: 65px;
	}
	.pl-lg-70 {
		padding-left: 70px;
	}
	.pl-lg-75 {
		padding-left: 75px;
	}
	.pl-lg-80 {
		padding-left: 80px;
	}
	.pl-lg-85 {
		padding-left: 85px;
	}
	.pl-lg-90 {
		padding-left: 90px;
	}
	.pl-lg-95 {
		padding-left: 95px;
	}
	.pl-lg-100 {
		padding-left: 100px;
	}
}
/*---------------------------------------------------- */
/*----------------------------------------------------*/
.theme-btn {
	display: inline-block;
	position: relative;
	color: #fff;
	padding: 15px 30px;
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	background: #c7a14d;
	border-radius: 60px;
	z-index: 1;
	box-shadow: none;
	outline: 0;
	border: 0;
	transition: all 0.3s ease-in-out;
}
.theme-btn i {
	margin-left: 5px;
}
.theme-btn:hover {
	color: #fff;
	background: #87661e;
}
.theme-btn.btn__2 {
	background: #243a1f;
}
.theme-btn.btn__2:hover {
	background: #1a3215;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*================= header area css ===============*/
.navbar {
	border: 0;
	border-radius: 0;
	padding: 14px 0;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	position: absolute;
	background-color: transparent;
	transition: all 0.2s linear;
}
.navbar.sticky {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	top: 0;
	z-index: 999; /* por encima del contenido */
	background-color: #c7a14d; /* el color que quieras para el header al hacer scroll */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* opcional: sombra suave */
}
.navbar .theme-btn {
	display: inline-block;
	position: relative;
	color: #fff;
	padding: 15px 30px;
	background-color: transparent;
	border: 1px solid #fff;
}
.navbar .theme-btn:hover {
	background-color: #fff;
	color: #243a1f;
}
.navbar .header_btn {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
}
.navbar .header_btn .telephone-btn {
	display: inline-flex;
	font-family: "Poppins";
	gap: 12px;
	align-items: center;
	color: #fff;
}
.navbar .header_btn .telephone-btn i {
	font-size: 25px;
	transform: rotateY(180deg);
}
.navbar .header_btn .telephone-btn h4 {
	color: #fff;
	font-size: 16px;
	font-family: "Poppins";
	margin-bottom: 0;
}
.navbar .header_btn .telephone-btn span {
	color: #fff;
	font-size: 13px;
}
.menu > .nav-item {
  padding-bottom: 34px;
  padding-top: 34px;
  transition: all 0.3s linear;
}
.menu > .nav-item > .nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 0;
  position: relative;
  line-height: 20px;
  text-transform: uppercase;
}
.menu > .nav-item > .nav-link:after {
  display: none;
}
.menu > .nav-item > .nav-link::before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -6px;
  background: #fff;
  transition: width 0.2s linear;
}
@media (max-width: 991px) {
  .menu > .nav-item > .nav-link::before {
    display: none;
  }
}
.menu > .nav-item.active .nav-link {
  font-weight: 600;
}
.menu > .nav-item.active .nav-link:before {
  transform: scaleX(1);
  opacity: 1;
  width: 100%;
}
.menu > .nav-item:hover .nav-link:before {
  transform: scaleX(1);
  opacity: 1;
  width: 100%;
}
.menu > .nav-item + .nav-item {
  margin-left: 25px;
}
.menu .mobile_dropdown_icon {
  display: none;
}

.navbar-toggler {
  padding-left: 0;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger {
  height: 100%;
  width: 100%;
  display: block;
}
.hamburger span {
  width: 0%;
  height: 2px;
  position: relative;
  top: 0;
  left: 0;
  margin: 7px 0;
  display: block;
  background: #fff;
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.hamburger span:nth-child(1) {
  transition-delay: 0s;
}
.hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}
.hamburger span:nth-child(3) {
  transition-delay: 0.2s;
}

.menu_toggle {
  width: 35px;
  height: 35px;
  position: relative;
  cursor: pointer;
  display: block;
}
.menu_toggle .hamburger {
  position: absolute;
}
.menu_toggle .hamburger-cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
  display: block;
}
.menu_toggle .hamburger-cross span {
  display: block;
  background: #fff;
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.menu_toggle .hamburger-cross span:nth-child(1) {
  height: 80%;
  width: 2px;
  position: absolute;
  top: 0;
  left: 13px;
  transition-delay: 0.3s;
}
.menu_toggle .hamburger-cross span:nth-child(2) {
  width: 80%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 13px;
  transition-delay: 0.4s;
}

.collapsed .menu_toggle .hamburger span {
  width: 100%;
}
.collapsed .menu_toggle .hamburger span:nth-child(1) {
  transition-delay: 0.3s;
}
.collapsed .menu_toggle .hamburger span:nth-child(2) {
  width: 75%;
  transition-delay: 0.4s;
}
.collapsed .menu_toggle .hamburger span:nth-child(3) {
  transition-delay: 0.5s;
}
.collapsed .menu_toggle .hamburger-cross span:nth-child(1) {
  height: 0%;
  transition-delay: 0s;
}
.collapsed .menu_toggle .hamburger-cross span:nth-child(2) {
  width: 0%;
  transition-delay: 0.2s;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.footer-widget-one .footer-top {
	background-color: #f2f5fc;
	background-image: url(../img/footer/Footer-bg.png);
	background-position: bottom center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding-top: 190px;
	padding-bottom: 60px;
}
.footer-widget-one .title {
	color: #f7ca0f;
	font-size: 20px;
	font-weight: 700;
	line-height: 26.1px;
	margin-bottom: 20px;
}
.footer-widget-one .menu-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.footer-widget-one .menu-list a {
	font-size: 14px;
	font-weight: 400;
	line-height: 22.4px;
	text-align: left;
	color: #fff;
}
.footer-widget-one .menu-list a:hover {
	text-decoration: underline;
}
.footer-widget-one .theme-btn {
	color: #fff;
	padding: 7px 20px;
	font-size: 16px;
	font-weight: 400;
}
.footer-widget-one .theme-btn:hover {
	background-color: #fff;
	color: #000;
}
.footer-widget-one .theme-btn:hover img {
	filter: invert(100%);
}
.footer-widget-one .theme-btn:hover::before {
	background-color: #fff;
}
.footer-widget-one .theme-btn i {
	margin-left: 10px;
}
.footer-widget-one .theme-btn::before {
	background: #48249f;
}
.footer-widget-one .theme-btn img {
	margin-right: 5px;
}
.footer-widget-one .lang-dropdown i {
	color: #14315a;
	font-size: 13px;
	padding-right: 3px;
	vertical-align: middle;
}
.footer-widget-one .custom-select {
	color: #fff;
	background-color: transparent;
	border: none;
	padding-left: 0;
}
.footer-widget-one .custom-select .current {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.02em;
}
.footer-widget-one .custom-select .list {
	color: #14315a;
}
.footer-widget-one .custom-select::after {
	margin-left: 5px;
	font-size: 14px;
}
.footer-widget-one .footer-bottom {
	padding-top: 15px;
	padding-bottom: 20px;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 20.88px;
	letter-spacing: 0.02em;
	color: #2a2a2a;
	background-color: #fff;
}
.footer-widget-one .footer-bottom a {
	color: #2a2a2a;
	text-decoration: underline;
}

/*---------------------------------------------------- */
.banner-area {
	background-image: url(../img/Banner.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding-top: 235px;
	padding-bottom: 80px;
	color: #fff;
}
.banner-area .subtitle {
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
}
.banner-area h1 {
	font-size: 60px;
	text-align: center;
	padding-top: 11px;
	margin-bottom: 16px;
}
.banner-area h2 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 20px;
	margin-top: 20px;
}
.banner-area p {
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: #fff;
	margin-top: 20px;
	margin-bottom: 30px;
}
.banner-area .feature-report {
	font-weight: 600;
	font-size: 18px;
	display: flex;
	text-transform: uppercase;
	padding-top: 150px;
	text-align: center;
	flex-wrap: wrap;
}
.banner-area .feature-report > span {
	flex-grow: 1;
	width: 33%;
	padding: 8px 0;
}
.banner-area .feature-report > span:not(:last-child) {
	border-right: 2px solid rgba(217, 217, 217, 0.5019607843);
}

.trusted-company-area {
	font-weight: 500;
	font-size: 22px;
	padding-top: 70px;
	padding-bottom: 110px;
	background-image: url(../img/dotted-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.why-choose-area {
	background-color: #f8f8f8;
	padding: 113px 0;
}
.why-choose-area p {
	font-weight: 400;
	font-size: 22px;
	text-align: center;
	margin-bottom: 0;
}
.why-choose-area .single-feature {
	text-align: center;
}
.why-choose-area .single-feature img {
	margin-bottom: 30px;
}

.treatment-program-area {
	padding-top: 112px;
	padding-bottom: 417px;
	background-image: url(../img/dotted-bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.treatment-program-area::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 800px;
	background-image: url(../img/care-recovery-banner-01.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	z-index: -1;
}
.treatment-program-area .single-program {
	padding: 50px 30px 60px 30px;
	background-color: #fff;
	box-shadow: 0px 5px 54px 0px rgba(69, 70, 96, 0.0784313725);
	border-radius: 6px;
	height: 100%;
	transition: all 0.3s ease-in-out;
}
.treatment-program-area .single-program:hover {
	background-color: #243a1f;
}
.treatment-program-area .single-program:hover img {
	filter: brightness(1000%);
}
.treatment-program-area .single-program:hover p,
.treatment-program-area .single-program:hover h3 {
	color: #fff;
}
.treatment-program-area .single-program h3 {
	font-weight: 400;
	font-size: 26px;
	color: #303138;
	margin-top: 36px;
	margin-bottom: 12px;
	transition: all 0.3s ease-in-out;
}
.treatment-program-area .single-program p {
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #5c5c64;
	transition: all 0.3s ease-in-out;
}

.insurance-area {
	padding: 110px 0;
}
.insurance-area a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	padding: 10px;
}
.insurance-area img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto !important;
	object-fit: contain;
}

.facility-area {
	padding: 110px 0;
	padding-top: 0;
}
.facility-area p {
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #5c5c64;
}
.facility-area ul li {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 14px;
}
.facility-area ul li img {
	margin-right: 5px;
}
.facility-area .gx-3 {
	row-gap: 24px;
}
.facility-area .gx-3 .img-fluid {
	margin-top: 24px;
}

.testimonial-area {
	padding-top: 110px;
	padding-bottom: 385px;
	background-color: #f9f9fb;
	background-image: url(../img/testimonial-bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	overflow: hidden;
}
.testimonial-area .testimonial-slider {
	position: relative;
	width: 100vw;
	padding-bottom: 100px;
}
.testimonial-area .single-testimonial {
	background-color: #fff;
	border-radius: 6px;
	padding: 23px 30px 30px 25px;
	box-shadow: 0px 5px 54px 0px rgba(69, 70, 96, 0.0784313725);
	max-height: 30rem;
	min-height: 30rem;
	transition: max-height 0.3s ease;
}
.testimonial-area .single-testimonial.testimonial-expanded {
	max-height: none;
}
.testimonial-area .single-testimonial .test-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}
.testimonial-area .single-testimonial .test-header .rating {
	display: flex;
	align-items: center;
}
.testimonial-area .single-testimonial .test-header .rating i {
	color: #f9ae0e;
	margin-right: 2px;
	font-size: 12px;
}
.testimonial-area .single-testimonial p {
	color: #50505d;
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	line-clamp: 5;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}
.testimonial-area .single-testimonial .timestamp {
	font-weight: 500;
	font-size: 13px;
	color: #434449;
	margin-bottom: 22px;
}
.testimonial-area .single-testimonial .post-meta {
	display: flex;
	gap: 12px;
	padding: 0;
	align-items: center;
}
.testimonial-area .single-testimonial .post-meta img {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	object-fit: contain;
}
.testimonial-area .single-testimonial .post-meta h4 {
	font-family: "Canela";
	font-weight: 400;
	font-size: 22px;
}
.testimonial-area .single-testimonial .post-meta span {
	font-weight: 400;
	font-size: 13px;
	line-height: 30px;
}
.testimonial-area .slick-slide {
	padding: 0 15px;
}

/* Read More Button Styles */
.testimonial-text-collapsed {
	max-height: 10rem !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	position: relative;
	display: block !important;
	-webkit-line-clamp: unset !important;
	-webkit-box-orient: unset !important;
	margin-bottom: 10px !important;
}

.testimonial-text-expanded {
	max-height: none !important;
	overflow: visible !important;
	display: block !important;
	-webkit-line-clamp: unset !important;
	-webkit-box-orient: unset !important;
	margin-bottom: 30px !important;
}

.read-more-btn {
	background: transparent;
	border: none;
	color: #316b77;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
	display: block;
	transition: all 0.3s ease;
	text-decoration: underline;
}

.read-more-btn:hover {
	color: #255763;
	text-decoration: none;
}

.read-more-spacer {
	height: 14px;
	margin-bottom: 20px;
	display: block;
	visibility: hidden;
}

.verify-insurance-area {
	padding-top: 110px;
	padding-bottom: 110px;
}
.verify-insurance-area .section-title {
	padding-bottom: 50px;
}
.verify-insurance-area .feature-report {
	display: flex;
	flex-wrap: wrap;
	text-transform: uppercase;
	padding-top: 60px;
	text-align: center;
}
.verify-insurance-area .feature-report > span {
	flex-grow: 1;
	width: 33%;
	padding: 8px 0;
	color: #303138;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.verify-insurance-area .feature-report > span:not(:last-child) {
	border-right: 2px solid rgba(217, 217, 217, 0.5019607843);
}

.faq-area .accordion .accordion-collapse {
	border: 0;
}
.faq-area .accordion .accordion-item {
	background-color: #fff;
	border: 0;
	box-shadow: 0px 5px 54px 0px rgba(69, 70, 96, 0.0784313725);
	border-radius: 6px;
	background-color: #fff;
	border: 0;
	margin-bottom: 20px;
	padding: 5px;
}
.faq-area .accordion .accordion-button {
	font-family: "Canela";
	font-weight: 500;
	font-size: 19px;
	background-color: #fff;
	box-shadow: none;
	line-height: 30px;
	color: #303138;
}
.faq-area .accordion .accordion-button::after {
	height: 40px;
	width: 40px;
	line-height: 40px;
	border: 1px solid #cccccc;
	border-radius: 50%;
	text-align: center;
	color: #cccccc;
	background-position: center;
	background-size: 15px !important;
}

footer {
	background-image: url(../img/footer-img-1.png);
	background-size: cover;
	background-position: center top;
	padding-top: 230px;
	padding-bottom: 50px;
	color: #fff;
}
footer h4 {
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}
footer h2 {
	font-weight: 500;
	font-size: 46px;
	line-height: 61px;
	text-align: center;
	margin-top: 12px;
	margin-bottom: 13px;
}
footer p {
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #fff;
	text-align: center;
}
footer .button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	justify-content: center;
}
footer .button-group .telephone-btn {
	display: inline-flex;
	font-family: "Poppins";
	gap: 12px;
	padding: 12px 30px;
	align-items: center;
}
footer .button-group .telephone-btn i {
	font-size: 22px;
}
footer .button-group .telephone-btn h4 {
	font-size: 16px;
	font-family: "Poppins";
	margin-bottom: 0;
}
footer .button-group .telephone-btn span {
	font-size: 13px;
}
footer .footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 50px;
	padding-top: 30px;
	padding-top: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
footer .footer-bottom a,
footer .footer-bottom p {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 0;
	color: #fff;
}

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