/* Common Styles Start */

:root {
	/* Reset REM value for easy calculations */
	font-size: 10px;

	/* Colors */
	--theme_color_maroon: #79232e;
	--theme_color_peach: #f1896e;
	--theme_color_light_grey: #dfeed8;

	--color_white: #ffffff;
	--color_black: #000000;

	/* Font Family */
	--saira_regular: "Saira Regular", sans-serif;
	--saira_bold: "Saira Bold", sans-serif;
	--saira_xbold: "Saira ExtraCondensed", sans-serif;
}

/* Reset CSS Start */

/* Custom Fonts Start */

@font-face {
	font-family: "Saira Regular";
	src: url("../fonts/saira/Saira-Regular.eot");
	src: url("../fonts/saira/Saira-Regular.eot?#iefix")
			format("embedded-opentype"),
		url("../fonts/saira/Saira-Regular.woff2") format("woff2"),
		url("../fonts/saira/Saira-Regular.woff") format("woff"),
		url("../fonts/saira/Saira-Regular.ttf") format("truetype"),
		url("../fonts/saira/Saira-Regular.svg#Saira-Regular") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Saira Bold";
	src: url("../fonts/saira/Saira-Bold.eot");
	src: url("../fonts/saira/Saira-Bold.eot?#iefix") format("embedded-opentype"),
		url("../fonts/saira/Saira-Bold.woff2") format("woff2"),
		url("../fonts/saira/Saira-Bold.woff") format("woff"),
		url("../fonts/saira/Saira-Bold.ttf") format("truetype"),
		url("../fonts/saira/Saira-Bold.svg#Saira-Bold") format("svg");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Saira ExtraCondensed";
	src: url("../fonts/saira/SairaExtraCondensed-Bold.eot");
	src: url("../fonts/saira/SairaExtraCondensed-Bold.eot?#iefix")
			format("embedded-opentype"),
		url("../fonts/saira/SairaExtraCondensed-Bold.woff2") format("woff2"),
		url("../fonts/saira/SairaExtraCondensed-Bold.woff") format("woff"),
		url("../fonts/saira/SairaExtraCondensed-Bold.ttf") format("truetype"),
		url("../fonts/saira/SairaExtraCondensed-Bold.svg#SairaExtraCondensed-Bold")
			format("svg");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

/* Custom Fonts End */

*,
*:before,
*:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-size: 1.6rem;
	line-height: 1.5;
	font-family: var(--saira_regular);
	background-color: var(--theme_color_light_grey);
}
.content-wrapper {
	overflow-x: hidden;
}
ol,
ul,
li {
	list-style: none;
}
a {
	text-decoration: none;
	color: inherit;
	transition: 0.3s;
}
textarea {
	overflow: auto;
	resize: vertical;
	min-height: 5rem;
}
/* Default autofill style */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	box-shadow: 0 0 0 40px #fff inset !important;
	-webkit-box-shadow: 0 0 0 40px #fff inset !important;
}

/* Reset CSS End */

/* Cstm Grid Start */

.cstm-container {
	width: 100%;
	max-width: calc(135rem + 30px);
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.cstm-container-fluid {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.cstm-container--flex {
	display: flex;
	justify-content: space-between;
}

.cstm-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
.cstm-col,
.cstm-col-auto,
.cstm-col-1,
.cstm-col-2,
.cstm-col-3,
.cstm-col-4,
.cstm-col-5,
.cstm-col-6,
.cstm-col-7,
.cstm-col-8,
.cstm-col-9,
.cstm-col-10,
.cstm-col-11,
.cstm-col-12 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}
.cstm-col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}
.cstm-col-auto {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
}
.cstm-col-1 {
	-ms-flex: 0 0 8.333333%;
	flex: 0 0 8.333333%;
	max-width: 8.333333%;
}
.cstm-col-2 {
	-ms-flex: 0 0 16.666667%;
	flex: 0 0 16.666667%;
	max-width: 16.666667%;
}
.cstm-col-3 {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}
.cstm-col-4 {
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}
.cstm-col-5 {
	-ms-flex: 0 0 41.666667%;
	flex: 0 0 41.666667%;
	max-width: 41.666667%;
}
.cstm-col-6 {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
.cstm-col-7 {
	-ms-flex: 0 0 58.333333%;
	flex: 0 0 58.333333%;
	max-width: 58.333333%;
}
.cstm-col-8 {
	-ms-flex: 0 0 66.666667%;
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
}
.cstm-col-9 {
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
}
.cstm-col-10 {
	-ms-flex: 0 0 83.333333%;
	flex: 0 0 83.333333%;
	max-width: 83.333333%;
}
.cstm-col-11 {
	-ms-flex: 0 0 91.666667%;
	flex: 0 0 91.666667%;
	max-width: 91.666667%;
}
.cstm-col-12 {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

/* Cstm Grid End */

/* Cstm Utility Classes Start */

/* Display Classes Start */

.cstm-d-none {
	display: none;
}
.cstm-d-inline {
	display: inline;
}
.cstm-d-inline-block {
	display: inline-block;
}
.cstm-d-block {
	display: block;
}
.cstm-d-flex {
	display: -ms-flexbox;
	display: flex;
}
.cstm-d-inline-flex {
	display: -ms-inline-flexbox;
	display: inline-flex;
}

/* Display Classes End */

/* Flex Classes Start */

.cstm-flex-row {
	-ms-flex-direction: row;
	flex-direction: row;
}
.cstm-flex-row-reverse {
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.cstm-flex-column {
	-ms-flex-direction: column;
	flex-direction: column;
}
.cstm-flex-column-reverse {
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}
.cstm-align-items-center {
	align-items: center;
}

/* Flex Classes End */

/* Margin Classes Start */

.cstm-ml-auto {
	margin-left: auto;
}
.cstm-mr-auto {
	margin-right: auto;
}
.cstm-mt-auto {
	margin-top: auto;
}
.cstm-mb-auto {
	margin-bottom: auto;
}
.cstm-m-auto {
	margin: auto;
}

/* Margin Classes End */

/* Position Classes Start */

.position-static {
	position: static;
}
.position-relative {
	position: relative;
}
.position-absolute {
	position: absolute;
}
.position-fixed {
	position: fixed;
}

/* Position Classes End */

/* Text Classes Start */

.cstm-text-center {
	text-align: center;
}
.cstm-text-left {
	text-align: left;
}
.cstm-text-right {
	text-align: right;
}
.cstm-text-lowercase {
	text-transform: lowercase;
}
.cstm-text-uppercase {
	text-transform: uppercase;
}
.cstm-text-capitalize {
	text-transform: capitalize;
}

/* Text Classes End */

/* Width Classes Start */

.max-width-100 {
	max-width: 100%;
}
.width-100 {
	width: 100%;
}

/* Width Classes End */

/* Cstm Badge Start */

.cstm-badge {
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.05em;
	font-family: var(--saira_bold);
	background: #5d8bf4;
	color: #fff;
	border-radius: 14.5px;
	padding: 0.7rem 1.3rem;
	text-align: center;
	display: inline-block;
	text-transform: uppercase;
}
.cstm-badge.default {
	background-color: var(--color_pink);
	color: #32325d;
}
.cstm-badge.outlined {
	background-color: transparent;
	border: 1px solid #fff;
	color: var(--color_white);
}
.cstm-badge.orange {
	background-color: #f2b265;
	color: var(--theme_color_blue);
}
.cstm-badge.danger {
	background-color: var(--color_red);
	color: var(--color_white);
}

/* Cstm Badge End */

/* Cstm Utility Classes End */

/* Cstm Button Styles Start */

.cstm-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	line-height: 1.5;
	font-family: var(--saira_bold);
	padding: 1.6rem 3rem;
	text-transform: uppercase;
	border-radius: 10px;
	min-width: 15rem;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.3s;
}
.cstm-btn:hover {
	/* background-color: var(--theme_color_peach);
	color: var(--color_white); */
	transition: background-color 0.3s;
}
.cstm-btn-default {
	background-color: var(--color_white);
	color: var(--theme_color_maroon);
}
.cstm-btn-default:hover {
	background-color: var(--theme_color_maroon);
	color: var(--color_white);
}
.cstm-btn-default:hover .cstm-btn-icon {
	filter: brightness(100);
}
.cstm-btn-maroon {
	background-color: var(--theme_color_maroon);
	color: var(--color_white);
}
.cstm-btn-maroon:hover {
	background-color: var(--theme_color_peach);
	color: var(--color_white);
}
.cstm-btn-maroon:hover span{
    color: var(--color_white);
}
.cstm-buttons-group .cstm-btn + .cstm-btn {
	margin-left: 3.5rem;
}

.cstm-btn-home {
	min-width: auto;
	padding: 1.6rem;
}
.cstm-btn-icon-hat {
    transform: translate(-8px, -1px);
}
.cstm-btn-icon-forkknife {
    transform: translate(-8px, -1px);
}

.cstm-btn-home .cstm-btn-icon {
	margin: 0!important;
}

.cstm-buttons-group .cstm-buttons-wrapper {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.cstm-buttons-group .cstm-buttons-wrapper .tel {
	color: white;
	font-size: 1.6rem;
	text-decoration: underline;
	margin-top: -10px;
}

.cstm-buttons-group .cstm-buttons-wrapper .tel:hover {
	color: var(--theme_color_peach);
	text-decoration: none;
}

.cstm-buttons-wrapper + .cstm-btn {
	margin-left: 3.5rem;
}

.cstm-btn i[class^="fa-"] {
	margin-right: 1rem;
}
.cstm-btn .cstm-btn-icon {
	margin-right: 1rem;
}

/* Cstm Button Styles End */

/* Cstm List Start */

.cstm-list-unstyled {
	padding-left: 0;
	list-style: none;
}
.cstm-list-inline {
	padding-left: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.cstm-list-inline > li {
	display: inline-block;
}
.cstm-list-inline > li:not(:last-child) {
	margin-right: 0.5rem;
}

/* Cstm List End */

/* Cstm Form Start */

.form-field-wrapper {
	position: relative;
}
.form-field-wrapper {
	margin-bottom: 0rem;
	padding-top: 3rem;
}
.form-field-wrapper label:not(.error) {
	display: inline-block;
	margin-bottom: 0;
	color: #000;
	font-size: 2.5rem;
	line-height: 1;
	letter-spacing: -0.02em;
	position: absolute;
	top: 5rem;
	left: 0;
	transition: 0.3s;
}
.form-field {
	display: block;
	width: 100%;
	height: auto;
	padding: 2rem 0;
	font-size: 2rem;
	line-height: 1.25;
	font-family: var(--saira_regular);
	font-weight: 300;
	color: #000;
	background-color: #fff;
	background-clip: padding-box;
	border: none;
	border-bottom: 0.3rem solid #000;
	border-radius: 0;
	transition: 0.3s;
}
.form-field:not(:placeholder-shown) ~ label:not(.error) {
	top: 2rem;
	font-size: 2rem;
	color: var(--theme_color_blue);
	transition: 0.3s;
}
.form-field:focus {
	outline: none;
	border-color: var(--theme_color_blue);
	transition: 0.3s;
}
.form-field:focus ~ label:not(.error) {
	top: 2rem;
	font-size: 2rem;
	color: var(--theme_color_blue);
	transition: 0.3s;
}
.form-field::placeholder {
	color: var(--theme_color_grey);
}
.form-field-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.form-field-icon > img {
	display: block;
}
.form-field-wrapper .form-field.error {
	border-color: #ff6060;
}
.form-field-wrapper label.error {
	color: #ff6060;
	font-size: 12px;
}
.cstm-checkbox-wrapper label.error {
	color: #ff6060;
	display: block;
	position: absolute;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0px;
	font-family: var(--saira_regular);
}

/* Cstm Form End */

/* Cstm Checkbox Start */

.cstm-checkbox-wrapper {
	margin-bottom: 5rem;
	padding-top: 3rem;
}
.control {
	font-family: var(--saira_regular);
	display: block;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	font-size: 2rem;
	color: #262626;
}
.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.control_indicator {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	height: 20px;
	width: 20px;
	background: #e6e6e6;
	border: 0px solid #000000;
	border-radius: 0px;
}
.control:hover input ~ .control_indicator {
	background: #cccccc;
}

.control input:checked ~ .control_indicator {
	background: #fdae55;
}
/* .control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
	background: #cccccc;
} */
.control input:disabled ~ .control_indicator {
	background: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
}
.control_indicator:after {
	box-sizing: unset;
	content: "";
	position: absolute;
	display: none;
}
.control input:checked ~ .control_indicator:after {
	display: block;
}
.control-checkbox .control_indicator:after {
	left: 7px;
	top: 3px;
	width: 3px;
	height: 8px;
	border: solid #ffffff;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
	border-color: #7b7b7b;
}

/* Cstm Checkbox End */

/* Cstm Dropdown Start */

.cstm-dropdown {
	position: relative;
	max-width: 240px;
}
.cstm-dropdown .dropdown-toggle {
	color: #333;
	background-color: transparent;
	font-size: 14px;
	line-height: 1;
	padding: 10px 15px;
	border-radius: 4px;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	transition: all 0.3s;
}
.cstm-dropdown .dropdown-toggle label {
	cursor: pointer;
	width: 100%;
}
.cstm-dropdown .dropdown-toggle:hover,
.cstm-dropdown .dropdown-toggle:active,
.cstm-dropdown .dropdown-toggle:focus {
	background-color: #222222;
	color: #ffffff;
}
.cstm-dropdown .dropdown-menu {
	width: 180px;
	border-radius: 4px 0 4px 4px;
	margin-top: -1px;
	padding: 4px 0;
	position: absolute;
	right: 0;
	top: 100%;
	display: none;
	background-color: #222;
	z-index: 10;
}
.cstm-dropdown .dropdown-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	border-radius: 4px;
	z-index: 10;
}
.cstm-dropdown .dropdown-menu a {
	text-decoration: none;
	display: block;
	color: #fff;
	font-size: 16px;
	padding: 6px 15px;
	font-weight: 500;
	transition: all 0.3s;
}
.cstm-dropdown .dropdown-menu a:hover,
.cstm-dropdown .dropdown-menu a:active,
.cstm-dropdown .dropdown-menu a:focus {
	background-color: #222222;
	color: #ffffff;
}

.dropdown-menu,
.dropdown-toggle {
	position: relative;
}
.dropdown-menu::before,
.dropdown-toggle::before {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	border: 5px solid;
	border-top-color: rgba(0, 0, 0, 0);
	border-left-color: rgba(0, 0, 0, 0);
	margin-top: -2.5px;
	background-color: rgba(0, 0, 0, 0);
	transition: all 0.2s;
}

.dropdown-menu {
	z-index: 10;
	position: relative;
}
.dropdown-menu::before {
	z-index: -1;
	transform: rotate(-135deg);
	top: -4px;
	border-color: #ffffff;
	box-shadow: 1px 1px 4px -2px rgba(0, 0, 0, 0.4);
}

.dropdown-open .dropdown-menu.dropdown-active {
	display: block;
}

.cstm-dropdown.dropdown-open .dropdown-toggle {
	background-color: #222222;
	color: #ffffff;
	border-radius: 4px 4px 0 0;
}
.cstm-dropdown.dropdown-open .dropdown-toggle:before {
	transform: rotate(-135deg);
}

/* Cstm Dropdown End */

/* Cstm Scrollbar Start */

/* *::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: transparent;
}
*::-webkit-scrollbar {
	width: 5px;
}
*::-webkit-scrollbar-thumb {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #c1c1c1;
} */

/* Cstm Scrollbar End */

/* Cstm Standard Padding/Margin Start */

.standard-padding-y {
	padding-top: 10rem;
	padding-bottom: 10rem;
}
.standard-padding-top {
	padding-top: 10rem;
}
.standard-padding-bottom {
	padding-bottom: 10rem;
}
.standard-padding-y-more {
	padding-top: 15rem;
	padding-bottom: 15rem;
}
.standard-padding-top-more {
	padding-top: 15rem;
}
.standard-padding-bottom-more {
	padding-bottom: 15rem;
}
.standard-padding-y-less {
	padding-top: 7rem;
	padding-bottom: 7rem;
}
.standard-padding-top-less {
	padding-top: 7rem;
}
.standard-padding-bottom-less {
	padding-bottom: 7rem;
}
.standard-padding-y-half {
	padding-top: 5rem;
	padding-bottom: 5rem;
}
.standard-padding-top-half {
	padding-top: 5rem;
}
.standard-padding-bottom-half {
	padding-bottom: 5rem;
}

/* Cstm Standard Padding/Margin End */

/* Cstm Pagination Start */

.cstm-pagination {
	display: flex;
	justify-content: center;
	padding-left: 0;
	list-style: none;
	gap: 2rem;
}

.cstm-pagination .cstm-page-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5rem;
	height: 5rem;
	font-size: 2rem;
	line-height: 1;
	padding: 0.5em;
	border: 1px solid var(--theme_color_teal);
	border-radius: 0.5rem;
}
.cstm-pagination .cstm-page-link:hover {
	background-color: #2a2623;
	color: #fff;
	border-color: #2a2623;
}
.cstm-pagination .cstm-page-item.active .cstm-page-link {
	background-color: #2a2623;
	color: #fff;
	border-color: #2a2623;
}
.cstm-pagination-navigation-icon {
	display: block;
	max-width: 100%;
}

/* Cstm Pagination End */

/* Cstm Popup Start */

.cstm-popup-container {
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px);
	display: flex;
	align-items: center;
}
/* .cstm-popup-container:target {
	visibility: visible;
	opacity: 1;
	transition: 0.5s;
} */
.cstm-popup-container.popup-hidden {
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
}
.cstm-popup-container.popup-shown {
	visibility: visible;
	opacity: 1;
	transition: 0.5s;
}
.popup-overlay {
	height: 100vh;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-transition: background 0.15s linear;
	-o-transition: background 0.15s linear;
	transition: background 0.15s linear;
}
.popup-content-inner::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #dedede;
}
.popup-content-inner::-webkit-scrollbar {
	width: 5px;
}
.popup-content-inner::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #999;
}
.popup-content {
	border-radius: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}
.popup-content-inner {
	margin: auto;
}
.popup-content-inner .text-wrapper h3 {
	font-size: 3.2rem;
	letter-spacing: 0;
}
.popup-content-inner .text-wrapper p {
	font-size: 2rem;
	color: #5c616b;
}
.close-popup {
	position: absolute;
	top: 5rem;
	right: 5rem;
	width: 2.5rem;
	height: 2.5rem;
	display: block;
	text-align: center;
}
.close-popup > img {
	width: 100%;
}

/* Cstm Popup End */

/* Body Overlay Start */

.body-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #00000099;
	backdrop-filter: blur(13.5px);
	-webkit-backdrop-filter: blur(13.5px);
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
}
.body-overlay.visible {
	opacity: 1;
	visibility: visible;
	transition: 0.5s;
}

/* Body Overlay End */

/* Cstm Breadcrumbs Start */

.cstm-breadcrumbs-ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	font: 12px / 2 var(--saira_bold);
	color: var(--theme_color_light_grey);
	text-transform: uppercase;
}
.cstm-breadcrumbs-ul li.active {
	color: var(--color_white);
}
.cstm-breadcrumbs-ul li + li {
	padding-left: 1rem;
}
.cstm-breadcrumb-item + .cstm-breadcrumb-item::before {
	content: "•";
	display: inline-block;
	padding-right: 1rem;
}

/* Cstm Breadcrumbs End */

/* Common Styles End */

/* -------------------------------- */

/* Header Start */

.header-section {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.6);
	border-bottom: 1px solid #eef1f7;
	backdrop-filter: blur(20px);
	z-index: 999;
	height: 10rem;
	display: flex;
	align-items: center;
}
.main-navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: 1 1 100%;
	max-width: 95%;
	margin: auto;
}
.header-left {
	flex: 1 1 33.3333%;
}
.header-logo-wrapper a {
	display: block;
	width: 20rem;
}
.header-logo-wrapper a img {
	width: 100%;
	display: block;
}

.header-center {
	flex: 1 1 33.3333%;
	text-align: center;
}

.header-right {
	flex: 1 1 33.3333%;
}
.header-right {
	display: flex;
	justify-content: flex-end;
}
.header-right > ul > li:not(:last-child) {
	margin-right: 4.5rem;
}
.header-right > ul > li > a {
	display: block;
}
.header-right > ul > li > a > img {
	display: block;
}

/* Header End */

/* -------------------------------- */

/* Main Content Start */

/* Global Text & Image Styles Start */

.image-wrapper > img {
	width: 100%;
	display: block;
}
.text-wrapper h1 {
	font: 8.2rem / 1 var(--saira_xbold);
	color: var(--color_white);
	text-transform: uppercase;
	margin-bottom: 2.5rem;
}
.heading-with-peach-subtext span {
	display: inline-block;
	color: var(--theme_color_peach);
}
.heading-with-maroon-subtext span {
	display: inline-block;
	color: var(--theme_color_maroon);
}
.text-wrapper h2 {
	font: 6rem / 1 var(--saira_xbold);
	color: var(--theme_color_maroon);
	text-transform: uppercase;
	margin-bottom: 2.5rem;
}
.text-wrapper h3 {
	font: 4.8rem / 1.2 var(--saira_bold);
	color: var(--theme_color_maroon);
	margin-bottom: 1.7rem;
}
.text-wrapper h4 {
	font: 2.4rem / 1.2 var(--saira_bold);
	letter-spacing: -0.02em;
	color: var(--theme_color_maroon);
	margin-bottom: 1.5rem;
}
.text-wrapper p {
	font: 1.8rem / 1.5 var(--saira_regular);
	color: var(--theme_color_maroon);
	margin-bottom: 2.5rem;
}
.text-wrapper p:last-child {
	margin-bottom: 0;
}
.text-wrapper ul:not(:last-child) {
	margin-bottom: 2.5rem;
}
.text-wrapper ol:not(:last-child) {
	margin-bottom: 2.5rem;
}
.text-wrapper ul,
.text-wrapper ol {
	padding-left: 2rem;
}
.text-wrapper ul li,
.text-wrapper ol li {
	font: 1.8rem / 1.5 var(--saira_regular);
	color: var(--theme_color_maroon);
	margin-bottom: 1.5rem;
}
.text-wrapper ul li:last-child,
.text-wrapper ol li:last-child {
	margin-bottom: 0;
}
.text-wrapper ol li {
	list-style: decimal;
}

.text-wrapper.textcol h3{
    font-size: 1.8rem;
    margin-bottom: 0;
}

.section-centered-heading {
	text-align: center;
	max-width: 100rem;
	margin: auto;
	margin-bottom: 6rem;
}
.section-centered-heading p {
	line-height: 2;
}

/* Global Text & Image Styles End */

/* Main Content Start */

.main-content-section {
	min-height: 58rem;
	padding: 5rem 0;
}
.peach-colored-bg-content-wrapper {
	border-radius: 10px;
	padding: 3rem 2.25rem;
	background: url(../images/hollands-section-image.png) no-repeat
		var(--theme_color_peach);
	background-position: 100% 110%;
	background-size: 50%;
	margin-bottom: 3.5rem;
}
.peach-colored-bg-content-wrapper.text-wrapper h2 {
	color: var(--color_white);
}
.peach-colored-bg-content-wrapper.text-wrapper p {
	color: var(--color_white);
}
.white-colored-bg-content-wrapper {
	border-radius: 10px;
	padding: 4rem 4rem 5rem;
	background-color: var(--color_white);
	margin-bottom: 3.5rem;
	position: relative;
}
.white-colored-bg-content-wrapper.text-wrapper h2 {
	margin-bottom: 2.5rem;
}
.white-colored-bg-content-wrapper.text-wrapper p {
	max-width: 90%;
	position: relative;
	margin-bottom: 2.5rem;
}
.white-colored-bg-content-wrapper .menu-preview {
	position: absolute;
	top: calc(100% + 25px);
	right: -10%;
}
.resengo-widget-col {
	margin: auto;
}
.resengo-widget {
	min-height: 630px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.resengo-widget > p {
	margin: auto !important;
}

/* Main Content End */

/* Page Banner Start */

.banner-section {
	position: relative;
	height: 45rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner-section::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.1);
}
.homepage-banner-section.banner-section::before {
	background-color: rgba(0, 0, 0, 0.4);
}
.banner-section > .cstm-container {
	position: relative;
	height: 100%;
	display: flex;
}
.banner-content {
	max-width: 87.5rem;
	margin: auto;
	position: relative;
}
.banner-content-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5rem;
}
.banner-content-row .logo-wrapper {
	max-width: 25rem;
}
.banner-content-row .text-wrapper {
	width: 63%;
}

.back-home-and-breadcrumbs {
	position: absolute;
	top: 20px;
	left: 0;
	margin-left: 15px;
	display: flex;
	align-items: center;
}
.cstm-breadcrumbs {
	padding: 1rem 2rem;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 0 10px 10px 0;
}

/* Page Banner End */

/* Grid Start */

.four-col-grid .grid-item {
	height: 100%;
	position: relative;
	display: block;
	padding: 1.6rem 1.6rem 2rem;
	background: rgba(232, 238, 237, 0.5);
	border: 2px solid #e7ebea;
	backdrop-filter: blur(20px);
	border-radius: 20px;
	cursor: default;
}
.four-col-grid .item-image {
	width: 100%;
	margin-bottom: 1.5rem;
}
.four-col-grid .item-image > img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 17px;
}
.four-col-grid .text-wrapper {
	min-height: 6rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.four-col-grid .text-wrapper h4 {
	margin-bottom: 0.4rem;
}

/* Grid End */

/* Terms Start */

.policy-pages-content {
	padding: 6.5rem 0 10rem;
}
.policy-pages-content .text-wrapper {
	text-align: justify;
}
/* .policy-pages-content .text-wrapper h4 + p {
	margin-bottom: 3rem;
} */
.policy-pages-content .text-wrapper p + p {
	margin-top: 3rem;
}
.policy-pages-content .text-wrapper h4 ~ h4 {
	margin-top: 6rem;
}
.policy-pages-content .text-wrapper blockquote {
	padding-left: 4rem;
	margin-top: 4rem;
}
.policy-pages-content .text-wrapper blockquote h4 ~ h4 {
	margin-top: 4rem;
}
.policy-pages-content .text-wrapper ul,
.policy-pages-content .text-wrapper ol {
	padding-left: 2rem;
}
.policy-pages-content .text-wrapper ul:not(:last-child) {
	margin-bottom: 2rem;
}
.policy-pages-content .text-wrapper ol:not(:last-child) {
	margin-bottom: 2rem;
}
.policy-pages-content .text-wrapper ul li {
	list-style: initial;
}
.policy-pages-content .text-wrapper ol li {
	list-style: decimal;
}

/* Terms End */

/* c-modal Start */

.c-overlay {
	background: rgba(42, 42, 42, 0.85);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	transition: all .275s ease-in-out;
}

.c-overlay--active {
	opacity: 1;
	z-index: 2147483001;
	visibility: visible
}

.c-modal {
	background: white;
	border-radius: 10px;
	width: calc(100% - 2rem);
	max-width: 660px;
	padding: 40px;
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%) scale(.9);
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	transition: all .275s ease-in-out;
}

.c-modal--active {
	opacity: 1;
	z-index: 2147483002;
	visibility: visible;
	transform: translateX(-50%) scale(1);
}

.c-modal__header {

}

.c-modal__close {
	background: none;
	border: 0;
	cursor: pointer;
	height: 40px;
	width: 40px;
	position: absolute;
    top: 10px;
    right: 8px;
}

.c-modal__item {
	color: var(--theme_color_maroon);
	font-family: var(--saira_regular);
	font-size: 1.8rem;
	margin-bottom: 2.2rem;
}

.c-modal__item:last-child {
	margin-bottom: 0;
}

.c-modal__item-heading {
	color: var(--theme_color_maroon);
	font-family: var(--saira_bold);
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.c-modal .cstm-btn {
	margin-right: 1.8rem;
}

/* c-modal End */

/* c-lang Start */

.c-lang {
	border-radius: 10px;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 2.7rem;
	right: 1.6rem;
}

.c-lang a {
	color: white;
	font: 12px / 2 var(--saira_bold);
}

.c-lang a:hover {
	color: var(--theme_color_peach);
}

.c-lang a.active {
	color: var(--theme_color_peach);
	font: 12px / 2 var(--saira_bold);
}

.c-lang a:not(:last-child):after {
	color: white;
	content: "•";
    display: inline-block;
    padding-right: 1rem;
	margin-left: 1rem;
}

/* c-lang End */

/* Main Content End */

/* -------------------------------- */

/* Footer Start */

.footer-section {
	padding: 13px 0;
	text-align: center;
	background: var(--theme_color_maroon);
	color: var(--color_white);
}
.footer-section p {
	font: 1.6rem / 1.5 var(--saira_regular);
	color: var(--color_white);
}
.footer-section a {
	display: inline-block;
	text-decoration: underline;
}
.footer-section a:hover {
	color: var(--theme_color_peach);
}

/* Footer End */


.nl .banner-content-row .text-wrapper {
	width: 80%
}
