@charset "utf-8";
/* CSS Document */

/* @font-face {
	font-family: 'Cormorant Garamond';
	src: url('CormorantGaramond-BoldItalic.woff') format('woff');
	font-weight: bold;
	font-style: italic;
	font-display: swap;
} */

/* @font-face {
	font-family: 'Cormorant Garamond';
	src: url('CormorantGaramond-Italic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
	font-display: swap;
} */
@font-face {
	font-family: 'Cormorant Garamond';
	src: url('./fonts/CormorantGaramond-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}


@font-face {
	font-family: 'Cormorant Garamond';
	src: url('./fonts/CormorantGaramond-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* 
@font-face {
	font-family: 'Cormorant Garamond';
	src: url('CormorantGaramond-LightItalic.woff') format('woff');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
} */

/* @font-face {
	font-family: 'Cormorant Garamond';
	src: url('CormorantGaramond-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
} */

/* @font-face {
	font-family: 'Cormorant Garamond';
	src: url('./fonts/CormorantGaramond-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
} */

/* @font-face {
	font-family: 'Cormorant Garamond';
	src: url('CormorantGaramond-MediumItalic.woff') format('woff');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
} */



/* @font-face {
	font-family: 'Cormorant Garamond';
	src: url('./fonts/CormorantGaramond-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
} */

/* @font-face {
	font-family: 'Cormorant Garamond';
	src: url('CormorantGaramond-SemiBoldItalic.woff') format('woff');
	font-weight: 600;
	font-style: italic;
	font-display: swap;
} */

*:focus {
	outline: 0;
}

img {
	border: none;
	padding: 0;
	margin: 0;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	display: inline-block;
}

a {
	text-decoration: none;
	color: inherit;

	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

a:focus {
	-moz-outline-style: none;
}

a:hover {
	text-decoration: none;
}

.clear {
	clear: both;
}

.container:before,
.container:after,
.clear:before,
.clear:after {
	display: table;
	content: " ";
	clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-weight: bold;
	letter-spacing: 2px;
	margin-bottom: 0.2em;
	line-height: 1.2;
}

h1 {
	font-size: 52px;
	line-height: 1.1;
	max-width: 700px;
	margin: auto;
}

h2 {
	font-size: 36px;
	margin-bottom: 0.4em;
	text-transform: uppercase;
}

h3 {
	font-size: 28px;
	text-transform: uppercase;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 14px;
}

p {
	margin: 0 0 1em 0;
}

.form input[type="text"],
.form textarea {
	display: block;
	border: none;
	font-family: inherit;
	font-size: 16px;
	width: 100%;
	padding: 0 12px;
	box-sizing: border-box;
	height: 42px;
	line-height: 42px;
	border: 1px transparent solid;
}

.form input:focus,
.form textarea:focus {
	border-color: #52caf5;
	outline: 0;
	border: 1px rgba(82, 202, 245, 1) solid;
	box-shadow: 0px 0px 4px rgba(82, 202, 245, 0.6);
}

.form input {}

.form textarea {
	height: 200px;
	resize: none;
	overflow: auto;
}

.form input.error,
.form textarea.error {
	border: 1px #ff9999 solid;
}

.form .formRow {
	padding: 6px 0;
	clear: both;
	overflow: hidden;
}

.form .label {
	font-size: 16px;
}

.form .btnWrap {
	text-align: center;
}



.btn {
	display: inline-block;
	white-space: nowrap;
	text-align: center;
	cursor: pointer;
	transition: all .3s cubic-bezier(.645, .045, .355, 1);
	user-select: none;
	touch-action: manipulation;
	height: 50px;
	line-height: 50px;

	padding: 0 20px;
	font-size: 18px;
	min-width: 140px;

	color: #fff;
	background-color: #D43329;
	margin-top: 30px;
	font-weight: bold;
}

.btn:hover {
	background-color: #FF2826;
}

.btnBorder {
	display: inline-block;
	white-space: nowrap;
	text-align: center;
	cursor: pointer;
	transition: all .3s cubic-bezier(.645, .045, .355, 1);
	user-select: none;
	touch-action: manipulation;
	height: 50px;
	line-height: 50px;

	padding: 0 20px;
	font-size: 18px;
	min-width: 140px;

	color: #fff;
	border: 1px #fff solid;
	margin-top: 30px;
	font-weight: bold;
}

.btnBorder:hover {
	background-color: #fff;
	color: #000;
}