/* CSS Variables */
:root{
	--dark-blue:#333E47;
	--black:##000000;
	--mint:#E3F7B8;
	--green:#98C11F;
	--dark-green:#00613c;
	--peach:#EBEBEB;
	--dark-peach:#FC707D;
}
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 */
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
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: 20px/1.6 'Poppins', arial, sans-serif;
  color: #000;
  background-color: var(--peach);
}
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;
	font-weight: bold;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	text-decoration:none;
}
article ul li,
article ol li,
article p {
	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;
	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: bold;
}
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;
}
th, td {
	border-bottom: 1px solid var(--dark-peach);
	border-right: 1px solid var(--dark-peach);
	padding: 10px;
}
tr:last-of-type td{
	border-bottom: 0;
}
tr th:last-of-type, tr td:last-of-type{
	border-right:0;
}
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;
}
/* 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;
}
/* 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 */
main{
	padding: 60px 0;
}
.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:85%;
	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;
	z-index: 0;
}
.btn{
	display: inline-block;
	transition: .4s;
	text-decoration: none;
	text-transform: uppercase;
	padding: 10px 35px;
	border-radius: 40px;
	font-size: 50px;
	line-height: 52px;
	color:#fff;
	background-color: var(--dark-peach);
	border:2px solid var(--dark-peach);
}
.btn:hover{
	color:var(--dark-peach);
	background-color: #fff;
}
/*form adds */
.wpcf7 input{
	font-size: 20px;
	line-height: 22px;
	border:1px solid var(--dark-blue);
	padding: 15px 25px;
	width: 100%;
	border-radius: 20px;
	outline: none;
	display: block;
	background-color: transparent;
}
.wpcf7 input::placeholder{
	font-style: italic;
	font-size: 20px;
	line-height: 22px;
}
.wpcf7-form input[type=checkbox] {
	position: absolute;
  visibility: hidden;
	margin-left: -10px;
	display: inline-block;
	width: auto;
}
.wpcf7-form input[type=checkbox] + span:before {
  display: block;
  position: absolute;
  content: '';
  height: 14px;
  width: 14px;
  top: 0px;
  border: 1px solid var(--dark-blue);
	border-radius: 50%;
	left: 0;
}
.wpcf7-form input[type=checkbox] + span:after {
  display: block;
  position: absolute;
	height: 14px;
  width: 14px;
	top:0px;
	left: 0;
  visibility: hidden;
	background-color: var(--dark-blue);
	border-radius: 50%;
	border-radius: 50%;
}
.wpcf7-form input[type=checkbox]:checked + span:before {
  background: transparent;
}
.wpcf7-form input[type=checkbox]:checked + span:after {
  visibility: visible;
}
.wpcf7-spinner{
	position: absolute;
}
.wpcf7-form label{
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 5px;
	display: inline-block;
}
.wpcf7-form label > span{
	display: inline-block;
}
 span.wpcf7-list-item{
  margin: 0;
}
.wpcf7 span{
	display: block;
  line-height: 1;
}
.wpcf7 br{
	display: none;
}
.wpcf7-not-valid-tip{
  font-size: 12px;
  color:#ff0000;
  line-height: 16px;
}
.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: 14px;
  padding: 0;
  margin:5px 0;
  line-height: 18px;
}
 .wpcf7 form.invalid .wpcf7-response-output{
	color:#ff0000;
}
.wpcf7 form.sent .wpcf7-response-output {
	color:var(--green);
}
.wpcf7 input[type="submit"]{
	display: inline-block;
	width: auto;
	background-color: var(--dark-peach);
	border:0;
	padding: 15px 35px;
	color:#fff;
	font-weight: bold;
	font-size: 30px;
	line-height: 35px;
	transition: .4s;
	border-radius: 20px;
	cursor: pointer;
}
.wpcf7 input[type="submit"]:hover{
	background-color: var(--dark-blue);
	color:#fff;
}
/* fonts */
h1{
	font-size: 50px;
	line-height: 76px;
}
h2{
	font-size: 40px;
	line-height: 60px;
}
h3{
	font-size: 36px;
	line-height: 56px;
}
h4, h5{
	font-size: 30px;
	line-height: 40px;
}
h6{
	font-size: 26px;
	line-height: 34px;
}
p{
	margin-bottom: 20px;
}
@media(max-width:1440px), (-webkit-device-pixel-ratio:1.25){
	.btn{
		font-size: 37px;
		line-height: 42px;
	}
	h1{
		font-size: 40px;
		line-height: 66px;
	}
	h2{
		font-size: 34px;
		line-height: 40px;
	}
	h3{
		font-size: 30px;
		line-height: 40px;
	}
	h4, h5{
		font-size: 28px;
		line-height: 36px;
	}
}
@media(max-width:1367px){
	.btn{
		font-size: 29px;
		line-height: 32px;
	}
}
@media(max-width:1024px){
	.btn {
    font-size: 24px;
    line-height: 27px;
	}
	h1{
		font-size: 34px;
		line-height: 40px;
	}
	h2{
		font-size: 30px;
		line-height: 40px;
	}
}
@media(max-width:1000px){
	.container{
		max-width: 95%;
	}
}
@media(max-width:850px){
	.btn {
    font-size: 20px;
    line-height: 22px;
	}
	h1{
		font-size: 30px;
		line-height: 36px;
	}
	h2{
		font-size: 28px;
		line-height: 40px;
	}
	h3{
		font-size: 26px;
		line-height: 36px;
	}
	h4, h5{
		font-size: 24px;
		line-height: 34px;
	}
	body{
		font-size: 20px;
	}
}
@media(max-width:767px){
	.wpcf7-form label{
		font-size: 12px;
	}
	.wpcf7 input[type="submit"]{
		font-size: 16px;
		line-height: 18px;
	}
	.wpcf7 input, .wpcf7 input::placeholder{
		font-size: 16px;
		line-height: 18px;
	}
	h1, h2{
		font-size: 26px;
		line-height: 32px;
	}
}
