/* * * * * * * * * * * * * * * * * * * * * * *
 * General
 * * * * * * * * * * * * * * * * * * * * * * */
@font-face {
	font-family: 'brandon_printedone';
	src: url('../fonts/brandonprinted-one-webfont.woff2') format('woff2'),
		url('../fonts/brandonprinted-one-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

html.scroll-lock {
	overflow: hidden;
}

html.scroll-lock body {
	overflow: hidden;
}

#main header.page-header {
	display: none !important;
}

.main-page-container {
	--saz-primary: #9c182f;
	--py: clamp(50px, 10%, 100px);
	--px: clamp(15px, 4%, 75px);
}

.main-page-container .color-primary {
	color: var(--saz-primary);
}

.main-page-container :where(h1, h2, h3, h4, h5, h6) {
	letter-spacing: 1px;
	text-wrap: balance;
}

.main-page-container :where(h1, h2, h3, h4, h5, h6) small {
	font-size: max(18px, 55%);
	display: block;
}

.dark-bg :where(h1, h2, h3, h4, h5, h6) {
	color: inherit !important;
}

.main-page-container h2 {
	margin-bottom: 10px;
	line-height: 1.2;
	font-size: 40px;
	color: currentColor;
	font-weight: bold;
}

@media screen and (max-width: 1200px) {
	.main-page-container h2 {
		font-size: 34px;
	}
}

@media screen and (max-width: 600px) {
	.main-page-container h2 {
		font-size: 28px;
	}
}

.main-page-container .content-contain>*:first-child {
	margin-top: 0;
}

.main-page-container .content-contain>*:last-child {
	margin-bottom: 0;
}

.main-page-container .padding-y {
	padding-top: var(--py);
	padding-bottom: var(--py);
}

.main-page-container .padding-x {
	padding-left: var(--px);
	padding-right: var(--px);
}

.main-page-container .theme-button {
	text-transform: uppercase;
}

.main-page-container .white-button {
	background: white;
	color: black;
}

.main-page-container .white-button.border {
	border: 2px solid #d1d1d1;
}

.main-page-container .white-button:hover {
	background: #d1d1d1;
	color: black;
	border-color: #d1d1d1;
}

.main-page-container .modal-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.main-page-container .modal-button img {
	flex-shrink: 0;
}

.main-page-container .btn-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 15px;
	margin-top: 30px;
}

.main-page-container .btn-wrap.no-margin {
	margin-top: 0;
}

@media screen and (max-width: 500px) {
	.main-page-container .btn-wrap {
		justify-content: center;
	}
}

.main-page-container .btn-wrap.center {
	justify-content: center;
}

.main-page-container .btn-wrap>button,
.main-page-container .btn-wrap>a {
	padding-top: 1.1em;
	margin: 0;
	max-width: 280px;
	width: 100%;
}

/* * * * * * * * * * * * * * * * * * * * * * *
 * Contact form section
 * * * * * * * * * * * * * * * * * * * * * * */
.form-section {
	text-align: center;
	position: relative;
}

.gform_wrapper.gravity-theme .gfield_required {}

.form-section .content-contain {
	position: relative;
	z-index: 9;
	line-height: 1.3;
	max-width: 100%;
	width: 1200px;
}

.form-section .content-contain p {
	margin-bottom: 10px;
	text-wrap: balance;
}

.form-section form {
	--wpex-input-padding: 15px 20px;
	max-width: 1025px;
	margin: 25px auto 0 auto;
	text-align: left;
}

.form-section form label {
	font-weight: bold;
	font-size: 20px;
}

.form-section form .column_container.contact-method {
	margin-top: 10px;
}

.form-section form .column_container.contact-method>p {
	display: flex;
	align-items: flex-start;
	gap: 5px 20px;
	flex-wrap: wrap;
}

.gchoice {
	z-index: 1;
	position: relative;
	margin: 0 0 10px 0;
	padding: 0;
	height: 70px;
	width: 100% !important;
}

input.gfield-choice-input {
	z-index: 2;
	appearance: none;
	margin: 0;
	padding: 0;
	width: 100%;
	border-radius: 5px;
	height: 100%;
	background: #ffffff;
	transition: .3s all ease-in-out;
	position: absolute;
	position: absolute;
}

input.gfield-choice-input:hover,
.gchoice label:hover {
	cursor: pointer;
}

input.gfield-choice-input:checked {}

input.gfield-choice-input:checked+label {}

.gchoice label {
	z-index: 3;
	font-weight: 700;
	color: #141c25;
	display: block;
	position: absolute;
	padding: 0 0 0 55px;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	overflow: visible;
	line-height: 1.1;
	text-wrap: balance;
}

input.gfield-choice-input+label::after {
	content: "";
	position: absolute;
	right: 0;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border: 2px solid #bebebe;
	z-index: 2;
	top: 50%;
	transition: .3s all ease-in-out;
	color: white;
	font-size: 18px;
	text-align: center;
	line-height: 1;
	font-weight: 500;
	left: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}

input[type="checkbox"].gfield-choice-input+label::after {
	border-radius: 5px;
}

input[type="radio"].gfield-choice-input+label::after {
	border-radius: 50px;
}

input.gfield-choice-input:checked+label::after {
	content: "\2714";
	border-color: var(--saz-primary);
	background-color: var(--saz-primary);
}

.form-section form input[type="submit"] {
	width: 250px !important;
	background-color: var(--saz-primary);
	color: #ffffff;
	margin-right: auto;
	margin-left: auto;
	text-transform: uppercase;
}

.form-section form input[type="submit"]:hover {
	width: 250px !important;
	background-color: #4f0114;
}

.form-section .gform_body .gform_fields .gfield select {
	background: url('../images/eventsWeddings/form-arrows-dark.png') 5px center no-repeat #ffffff;
	background-size: 30px;
	border-radius: 5px;
	appearance: none;
	font-weight: bold;
	font-size: 1.1em;
	font-family: "brandon-grotesque";
	padding: 0 0 0 40px;
	height: 70px;
}

.form-section .gform_body .gform_fields .gfield select option {
	color: black;
	background: white;
	font-family: sans-serif;
	font-weight: normal;
	font-size: 1rem;
}

.form-section form .ginput_container_textarea textarea {
  font-size: 18px;
}

/* * * * * * * * * * * * * * * * * * * * * * *
 * Video dialog
 * * * * * * * * * * * * * * * * * * * * * * */
.dialog-media {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	padding: 50px 25px 25px 25px;
	z-index: 999999;
	transition: all 0.4s ease;
}

.dialog-media.show .dialog-bg {
	opacity: 1;
}

.dialog-media.show .media-contain .media {
	transform: scale(1);
	opacity: 1;
}

.dialog-media .dialog-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	opacity: 0;
	transition: inherit;
	z-index: 1;
	cursor: pointer;
}

.dialog-media .dialog-bg:hover {
	background: rgba(0, 0, 0, 0.8);
}

.dialog-media .dialog-bg:hover .close-btn {
	transform: rotate(90deg);
}

.dialog-media .dialog-bg .close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	background: white;
	border: 4px solid #9d032a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	transition: inherit;
}

.dialog-media .dialog-bg .close-btn::before {
	content: '\2716';
	font-size: 20px;
	font-weight: 800;
	color: #9d032a;
	pointer-events: none;
}

.dialog-media .media-contain {
	position: relative;
	z-index: 9;
	margin: auto;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	transition: inherit;
}

.dialog-media .media-contain .media {
	transition: inherit;
	pointer-events: all;
	background-color: rgba(0, 0, 0, 0.9);
	margin: auto;
	height: auto;
	max-height: 100%;
	transform: scale(0.7);
	opacity: 0;
}

.dialog-media .media-contain img.media {
	max-width: 95%;
}

.dialog-media .media-contain iframe.media {
	max-width: 2000px;
	aspect-ratio: 16 / 9;
	width: 125vmin;
	min-width: unset;
}

/* * * * * * * * * * * * * * * * * * * * * * *
 * Sliders
 * * * * * * * * * * * * * * * * * * * * * * */
.main-page-container .swiper-outer-contain {
	--swiper-navigation-sides-offset: 0;
	--swiper-navigation-color: currentColor;
	--swiper-navigation-size: 36px;
	position: relative;
}
