/* CSS Variables */
:root{
	--var-color:#000;
	--red: #D3222B;
	--dark-red: #CD2027;
	--yellow: #FDE807;
	--light-yellow: #F8EE74;
}
html, body, div, main, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup,
main, nav, section, summary {
    display: block;
}
section {
	position: relative;
}
audio,canvas, video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* General styling */
*, :before, :after {
  -webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:root {
  -webkit-tap-highlight-color: transparent; /* no more color over a link when tapped, usually iOS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; /* antialiasing, Mozilla only */
  -webkit-font-smooth: always; /* text has no sharp edges, Safari only */
}
html, body {
    overflow-x: hidden;
}
html {
	-ms-overflow-style: scrollbar; /* scrollbar in case of overflow for IE */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	min-height: 100vh;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-justify-content: space-between;
	justify-content: space-between;
	font: 16px/1.6 'bebas-neue-pro', sans-serif;
  font-weight:400;
  color: #000;
	background: var(--yellow);
}
h1, h2, h3, h4, h5, h6,
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a,
article h1 a, article h2 a, article h3 a, article h4 a, article h5 a, article h6 a  {
	margin-bottom: 20px;
  text-rendering: optimizeLegibility;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	text-decoration:none;
}
p {
	font-size: 32px;
}
.content-area p {
	font-size: 18px;
}
@media only screen and (max-width: 769px) {
	p {
		font-size: 15px;
	}
}
article ul li,
article ol li,
article p {
	list-style:none;
	word-break: break-word;
}
article table tr:first-child{
	background:#d5d5d5!important;
}
article table tr:nth-child(odd){
	background:#f9f7f6;
}
article table tr:nth-child(even){
	background:#fff;
}
span {
  display: inline;
}
a {
	color: inherit;
  cursor: pointer;
	text-decoration: none;
	transition:.4s;
}
a:not([class]):focus {
  outline: none;
	box-shadow: none;
}
img, iframe {
	max-width: 100%;
	height: auto;
}
img.size-portrait-thumbnail {
	width:auto;
	max-width:unset;
}
i:not([class]), em, cite, dfn {
	font-style: italic;
}
ul, ol {
  margin: 0 0 25px 20px;
}
ol {
	list-style: decimal;
	list-style-position:inside;
}
ul {
	list-style: disc;
	list-style-position:inside;
}
nav ul, nav ol {
  margin: 0;
  list-style: none;
}
b, strong, th, legend {
	font-weight: 600;
}
small {
	font-size: 75%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
  vertical-align: baseline;
}
sub {
	bottom: -.25em;
}
sup {
	top: -.5em;
}
abbr[title] {
  text-decoration: underline dotted;
}
abbr[data-original-title], abbr[title] {
  cursor: help;
}
del {
  text-decoration: line-through;
}
table {
	margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
	border-collapse: collapse;
	border-spacing: 0;
}
th, td {
	border: 1px solid #eceeef;
	padding: 10px;
}
caption {
	font-size: 15px;
  padding: 10px 0;
  caption-side: bottom;
}
figcaption {
  font-size:15px;
}
legend {
	margin-bottom: 5px;
}
label {
	display: block;
	cursor: pointer;
}
button, input, textarea {
	font-family: inherit;
	line-height: normal;
	margin: 0;
}
textarea {
	min-height: 80px;
	resize: vertical;
}
[type="submit"], [type="reset"], [type="button"],
[type="text"], [type="email"], [type="tel"], [type="search"],
button {
	border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
	appearance: none;
}
button, [type="submit"], [type="reset"], [type="button"] {
   cursor: pointer;
}
textarea:focus, button:focus,
div[contenteditable="true"]:focus, [class~="btn"]:focus,
[type="text"]:focus, [type="tel"]:focus, [type="email"]:focus, [type="password"]:focus, [type="submit"]:focus {
  outline: 0;
}
[hidden] {
	display: none;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
p + h2, p + h3, p + h4,
ul + h2, ul + h3, ul + h4,
ol + h2, ol + h3, ol + h4,
code + h2, code + h3, code + h4,
table + h2, table + h3, table + h4,
blockquote + h1, blockquote + h2, blockquote + h3, blockquote + h4 {
    margin-top: 35px;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}
input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}
/* WordPress Core */
.alignnone {
  margin: 5px 20px 5px 0;
}
.aligncenter,
div.aligncenter  {
  display: block;
  margin: 30px auto 40px auto;
}
div.aligncenter{
	width: 90%!important;
	margin: 0 auto;
	padding:10px;
	border:1px solid #41ee6e;
}
div.aligncenter img{
	width: 100%;
}
.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  max-width: 100%; /* Image does not overflow the content area */
  text-align: left;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
	margin-bottom: 10px;
}
.wp-caption p.wp-caption-text,
.wp-block-image figcaption{
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
	text-align: center;
	font-style: italic;
	margin:0px;
}
.full-width {
	width:100%;
	overflow:hidden;
}
.has__gallery .gallery{
	margin: auto -6px;
	padding: 6px 0;
	line-height: 1;
	overflow-x: hidden;
}
.has__gallery .gallery .gallery-item {
	float: left;
	margin: 0;
	text-align: center;
	padding: 6px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.has__gallery .gallery .gallery-caption,
.has__gallery .gallery .gallery-icon {
	margin: 0;
}
.has__gallery .gallery .gallery-caption {
	font-size: 13px;
	margin: 4px 0;
}
.has__gallery .gallery-columns-1 .gallery-item {
	width: 100%;
}
.has__gallery .gallery-columns-2 .gallery-item {
	width: 50%;
}
.has__gallery .gallery-columns-3 .gallery-item {
	width: 33.333%;
}
.ie8 .has__gallery .gallery-columns-3 .gallery-item,
.ie7 .has__gallery .gallery-columns-3 .gallery-item {
	width: 33%;
}
.has__gallery .gallery-columns-4 .gallery-item {
	width: 25%;
}
.has__gallery .gallery-columns-5 .gallery-item {
	width: 20%;
}
.has__gallery .gallery-columns-6 .gallery-item {
	width: 16.665%;
}
.has__gallery .gallery-columns-7 .gallery-item {
	width: 14.285%;
}
.has__gallery .gallery-columns-8 .gallery-item {
	width: 12.5%;
}
.has__gallery .gallery-columns-9 .gallery-item {
	width: 11.111%;
}
.has__gallery .gallery img {
	max-width: 100%;
	height: auto;
	border: none;
	padding: 0;
	border-radius:15px;
}
@media(max-width:1200px){
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width:33%;
	}
}
@media(max-width:767px){
	.has__gallery.gallery-columns-2 .gallery-item,
	.has__gallery .gallery-columns-3 .gallery-item,
	.ie8 .has__gallery .gallery-columns-3 .gallery-item,
	.ie7 .has__gallery .gallery-columns-3 .gallery-item,
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width: 100%;
	}
}
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
    white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}
#wpadminbar {
    /* display: none !important; */
}
html.js, html.no-js, html {
    margin-top: 0 !important;
}

/* End of WordPress Core */
/* General Theme Style */
.h-align{
  text-align:center;
}
.clear:after,
.clear:before,
.row:after,
.row:before{
	clear:both;
	display:block;
	width:100%;
	content:'';
}
.container{
	width:100%;
	max-width:1420px;
	padding:0px 15px;
	margin:0 auto;
	display:block;
	position:relative;
}
.container:before,
.container:after{
	content:"";
	display:block;
	clear:both;
}
.img-abs{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top:0;
	left: 0;
}
/* Row */
.row{
	display: block;
	width: 100%;
}
.row > .item{
	display: inline-block;
	padding: 30px;
	vertical-align: top;
	width: 49.9%;
}
.row > .item:nth-child(odd) {
	padding-left: 0;
}
.row > .item:nth-child(even) {
	padding-right: 0;
}
.row > .item.item19{
	width: 19%;
}
.row > .item.item24{
	width: 24%;
}
.row > .item.item32{
	width: 32%;
}
.row > .item.item49{
	width: 49%;
}
.row > .item.item50{
	width: 50%;
	float: left;
}
.row > .item.item65{
	width: 65%;
	float: left;
}
.row > .item.item35{
	width: 35%;
	float: left;
}
.row > .item.full-item{
	width: 100%;
}
/* Flex */
.flex-row, .flex-row.reverse, .flex-column, .flex-column.reverse{
	display: flex;
}
.flex-row{
	flex-direction: row;
}
.flex-column{
	flex-direction: column;
}
.flex-row.reverse{
	flex-direction: row-reverse;
}
.flex-column.reverse{
	flex-direction: column-reverse;
}
.flex-item{
	padding: 0 10px;
	position: relative;
}
.flex-item.item10{
	flex: 1 1 10%;
}
.flex-item.item20{
	flex: 1 1 20%;
}
.flex-item.item30{
	flex: 1 1 30%;
}
.flex-item.item40{
	flex: 1 1 40%;
}
.flex-item.item50{
	flex: 1 1 50%;
}
.flex-item.item50:first-of-type{
	padding-left: 0;
}
.flex-item.item50:last-of-type{
	padding-right: 0;
}
.flex-item.item60:first-of-type{
	padding-left: 0;
}
.flex-item.item40:last-of-type{
	padding-right: 0;
}
.flex-item.item60{
	flex: 1 1 60%;
}
.flex-item.item70{
	flex: 1 1 70%;
}
.flex-item.item80{
	flex: 1 1 80%;
}
.flex-item.item90{
	flex: 1 1 90%;
}
/*form adds */
 span.wpcf7-list-item{
  margin: 0;
}
.wpcf7-not-valid-tip{
	position: relative;
	top: 10px;
	font-size: 24px;
	color: #FFC107;
  line-height: 16px;
	text-shadow: 1px 0 var(--dark-red), -1px 0 var(--dark-red), 0 1px var(--dark-red), 0 -1px var(--dark-red),
	             1px 1px var(--dark-red), -1px -1px var(--dark-red), 1px -1px var(--dark-red), -1px 1px var(--dark-red);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output{
  border: none;
	font-size: 20px;
  padding: 0;
  margin:5px 0;
  line-height: 18px;
}
 .wpcf7 form.invalid .wpcf7-response-output{
	color:var(--red);
	background-color: var(--yellow);
	margin: 0;
	text-align: center;
	font-size: 24px;
}
.wpcf7 form.sent .wpcf7-response-output {
	color:#32D213;
	background-color: var(--yellow);
	margin: 0;
	text-align: center;
	font-size: 24px;
}
.wpcf7-form input[type=checkbox] {
  position: relative;
  visibility: hidden;
	width: auto;
	display: inline-block;
	padding: 0;
	line-height: 0;
}
.wpcf7-form input[type=checkbox]+span:before {
  display: block;
  position: absolute;
  content: '';
	height: 24px;
	width: 24px;
	top: 7px;
	background-color: var(--light-yellow);
  left: 0;
	border-radius:100%;
}
.wpcf7-form input[type=checkbox]+span:after {
  display: block;
  position: absolute;
	height: 16px;
	width: 16px;
	top: 11px;
	left: 4px;
  visibility: hidden;
	background-color: var(--red);
	border-radius: 50%;
}
.wpcf7-form input[type=checkbox]:checked+span:before {
	/* background: transparent; */
}
.wpcf7-form input[type=checkbox]:checked+span:after {
	visibility: visible;
}
.wpcf7 input {
	display: inline-block;
	width: 100%;
	font-size: 30px;
	line-height: 1.2;
	color: #000;
	background-color: var(--light-yellow);
	border-radius: 50px;
	border: none;
	padding: 20px;
	transition: all .4s ease-in-out;
}
.wpcf7 input::placeholder {
	color: #000;
}
.wpcf7 input:hover,
.wpcf7 input:focus {
	background-color: var(--yellow);
}
.wpcf7 .terms-item .wpcf7-list-item-label {
	font-size: 30px;
	color: #fff;
	padding-left: 20px;
}
.wpcf7 .terms-item .wpcf7-list-item-label a {
	text-decoration: underline;
	transition: all .4s ease-in-out;
}
.wpcf7 .terms-item .wpcf7-list-item-label a:hover {
	color: var(--yellow);
}
.wpcf7 .row.last-row {
	padding: 60px 0 90px;
}
.wpcf7 .second {
	background-color: var(--yellow);
	padding-top: 50px;
}

.wpcf7 .submit p {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.wpcf7 .submit input {
	font-family: 'Nutmeg Extra';
	font-size: 50px;
	line-height: 1.2;
	text-transform: uppercase;
	width: fit-content;
	padding: 20px 50px;
	background-color: var(--red);
	border: 2px solid var(--red);
	color: var(--yellow);
	transition: all .4s ease-in-out;
}
.wpcf7 .submit input:hover {
	background-color: var(--yellow);
	color: var(--red);
}
.form-footer {
	background-color: var(--yellow);
	padding:40px 0 100px;
}
@media only screen and (max-width: 1025px) {
	.row > .item {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.wpcf7 .wpcf7-list-item label {
		display: inline-flex;
		align-items: center;
	}
	.wpcf7 form.invalid .wpcf7-response-output,
	.wpcf7 form.sent .wpcf7-response-output,
	.wpcf7-not-valid-tip {
		font-size: 16px;
	}
}
@media only screen and (max-width: 769px) {
	.row > .item {
		width: 100%;
		padding: 10px 0;
	}
	.row > .item p {
		display: flex;
	}
	.row > .item p span {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.wpcf7 input {
		width: 90%;
		margin: 0 auto;
		font-size: 16px;
		padding: 10px;
	}
	.wpcf7 .row.last-row {
		padding: 0;
	}
	.wpcf7 .first {
		padding: 20px 0;
	}
	.wpcf7 .terms-item .wpcf7-list-item-label {
		font-size: 16px;
		line-height: 1.3;
		margin-bottom: 10px;
	}
	.wpcf7-form input[type=checkbox]+span:before {
		width: 18px;
		height: 18px;
		top: -7px;
	}
	.wpcf7-form input[type=checkbox]+span:after {
		top: -4px;
		left: 3px;
		width: 12px;
		height: 12px;
	}
	.wpcf7 .second {
		padding-top: 30px;
	}
	.wpcf7 .submit input {
		font-size: 20px;
		padding: 10px 30px;
	}
	.form-footer {
		padding: 30px 0;
	}
}
@media only screen and (max-width: 600px) {
	.wpcf7 input {
		width: 100%;
	}
}
