﻿/*===================== 
	Color information
	
	-
	- red #fc0808
	- grey #e2e2e2
	-
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
	}

body {
	font-family: "Outfit", sans-serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
        font-size: 30px;
        font-weight: 700;
}
	h2 {
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-size: 24px;
        font-weight: 700;
}
	h4 {
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}
.red-text {
	color:#fc0808!important;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #000; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  
.text-link-red {
	color:#fc0808!important;
	transition: .2s ease-in;
}
.text-link-red:hover {
	opacity: 0.7;
}


/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	}

header {
	margin: 0 auto;
	width:100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:20px;
	}
.head-logo-1 {
	padding: 10px 0 10px calc(50% - 780px);
}
.head-logo-1 img {
	width:100%;
	max-width: 225px;
	height: auto;
	display: block;
}
.head-right {
	position: relative;
	border-bottom: 2px solid #e2e2e2;
	display: flex;
	align-items: center;
	padding: 20px calc(50% - 780px) 20px 10px;
	width:auto;
	justify-content: space-between;
	gap:5vw;
}
.head-right:after {
	content:"";
	width:40%;
	border-bottom:2px solid #e2e2e2;
	position: absolute;
	bottom:-10px;
	display: block;
	right:0;
}
.head-links {
	padding:0;
	margin:0;
	display: flex;
	gap:10px;
}
.head-links li {
	padding:0;
	margin:0;
	list-style: none;
}
.head-links li a {
	font-size:20px;
	color:#000;
	transition: .2s ease-in;
}
.head-links li a:hover {
	color:#fc0808;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile, .mobile-nav-cont-1 { display:none;}



nav.primary {
	padding:0;
	display:block;
	margin:0;
	position:relative;
	}
	nav.primary ul {
		margin: 0 auto;
		padding: 0;
		}
	nav.primary >ul {
		display: flex;
		align-items: center;
		gap: 0 1vw;
		}
		nav.primary ul li {
			display:block;
			margin:0;
			list-style-type:none; 
			transition: .2s ease-in;
			}
			nav.primary ul li a {
				color: #000;
				font-size: 18px;
				text-decoration: none;
				padding: 10px;
				display: block;
				margin: 0;
				text-align: center;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				font-family: "Outfit", sans-serif;
				font-weight: 500;
				white-space: nowrap;
				}	
			nav.primary ul li a i {
				font-size: 20px;
			} 
			nav.primary ul li a:hover {
				color: #fc0808;
				}
			nav.primary ul li:hover a {
				color: #fc0808;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #fc0808;
				display: block;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
				background: #000;
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 100;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 230px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
	width:100%;
	padding:60px 0;
}
.wrap-hero .container-1 {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.hero-left {
	width:calc(47% - 20px);
	position: relative;
	display: flex;
	flex-direction: column;
}
.hero-info {
	width:100%;
	position: relative;
	border-top-left-radius:30px;
	overflow: hidden;
	height: 100%;
}
.hero-info img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero-info h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding:20px;
	box-sizing: border-box;
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height: 100%;
	background:rgba(0,0,0,0.5);
	color:#fff;
	font-size: 26px;
	text-align: center;
	font-weight: 500;
	text-shadow: 0 0 10px rgba(0,0,0,0.7);
}
.hero-info h1 span {
	text-transform: uppercase;
}
.hero-cta {
	position: relative;
	width:calc(100% + 100px);
	border-top-right-radius:50px;
	border-bottom-left-radius:50px;
	border:20px solid #fff;
	background:#fc0808;
	z-index: 2;
	padding:30px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	left:-20px;
	gap:5px;
}
.hero-cta a {
	display: flex;
	gap:15px;
	align-items: center;
	justify-content: center;
}
.hero-cta a img {
	width:100%;
	max-width:75px;
	height: 100%;
	max-height: 52px;
	display: block;
	object-fit: contain;
	object-position: center;
	transition: .2s ease-in;
}
.hero-cta a span {
	font-size:18px;
	font-weight: 500;
	color:#fff;
	white-space: nowrap;
	transition: .2s ease-in;
}
.hero-cta a:hover img {
	transform: translatex(2px);
	filter: brightness(0) saturate(100%);
}
.hero-cta a:hover span {
	color:#000;
	transform: translatex(-2px);
}
	
.hero-slider {
	width:53%;
}
.hero-slider img {
	width:100%;
	display: block;
}
.hero-slider .slick-dots {
	padding:20px 0 20px 60px;
	margin:0;
	display: flex;
	gap:15px;
}
.hero-slider .slick-dots li {
	height: 15px;
	width: 25px;
	background:#e2e2e2;
	list-style: none;
	cursor: pointer;
	transition: .2s ease-in;
}
.hero-slider .slick-dots li.slick-active {
	width:100%;
}
.hero-slider .slick-dots button {
	display: none;
}
.wrap-upcoming-auctions {
	width:100%;
	background:#e2e2e2;
	position: relative;
}
.wrap-upcoming-auctions:before {
	content: "";
	width: 70%;
	border-bottom: 2px solid #e2e2e2;
	position: absolute;
	bottom: -10px;
	display: block;
	left: 0;
}
.wrap-upcoming-auctions:after {
  content: "";
  width: 40%;
  border-bottom: 2px solid #e2e2e2;
  position: absolute;
  bottom: -20px;
  display: block;
  left: 0;
}
.wrap-upcoming-auctions .container-1 {
	padding:80px 20px;
	display: flex;
	flex-wrap: wrap;
	gap:30px;
}
.wrap-upcoming-auctions .container-1 h2 {
	display: block;
	width:100%;
	text-align: center;
}
.u-a-col-1 {
	width:calc(50% - 20px);
	border-top-right-radius:30px;
	border-bottom-left-radius:30px;
	background:#fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:20px 0;
	padding:30px;
	box-sizing: border-box;
	flex-grow: 1;
}
.u-a-col-img-1 {
	width:200px;
}
.u-a-col-img-1 img {
	width:100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	border-top-right-radius:30px;
	border-bottom-left-radius:30px;
}
.u-a-col-info-1 {
	width:calc(100% - 220px);
	display: flex;
	flex-direction: column;
	gap:5px;
}
.u-a-col-info-1 h3 {
	font-size:24px;	
}
.u-a-col-info-1 h4 {
	font-size:18px;	
}
.u-a-col-info-1 h4 i {
	color:#fc0808;
}
.u-a-col-info-1 p {
	padding:15px 0;
}
.wrap-home-banner {
	width:100%;
	padding:120px 0;
}
.home-banner-cont{
	width:100%;
	display: flex;
	flex-wrap: wrap;
}
.home-banner-left {
	width:calc(100% - 250px);
	position: relative;
}
.home-banner-left img {
	position: absolute;
	z-index: 1;
	width:100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}
.home-banner-info {
	position: relative;
	z-index: 2;
	width:100%;
	height: 400px;
	background:rgba(0,0,0,0.6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:30px;
	padding:20px 100px 20px 60px;
	box-sizing: border-box;
}
.home-banner-info h2 {
	text-align: center;
	color:#fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.9);
	font-weight:700;
	font-size:32px;
}
.home-banner-info p {
	text-align: center;
	color:#fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.9);
	font-weight:500;
	font-size:22px;
}
.home-banner-right {
	width:250px;
	position: relative;
}
.home-banner-btn {
	height: 100%;
	height: calc(100% + 20px);
	width:calc(100% + 40px);
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-left: 20px solid #fff;
	border-bottom: 20px solid #fff;
	background: #fc0808;
	position: relative;
	z-index: 3;
	right:40px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	color:#fff!important;
	font-size:24px;
	transition: .2s ease-in;
}
.home-banner-btn:hover {
	background: #000;
	border-top-right-radius: 40px;
	border-bottom-left-radius: 40px;
}
.wrap-home-about {
	width:100%;
	background-image: url("../siteart/foot-img-1.jpg");
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center bottom;
	padding:20px 0 calc(20vw + 100px) 0;
	box-sizing: border-box;
} 
.wrap-home-about .container-1 {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}
.home-about-cont {
	background:#fff;
	width:100%;
	max-width: 520px;
	padding:40px;
	box-sizing: border-box;
	border-radius: 30px;
	border:2px solid #e2e2e2;
}
.home-about-cont h2 {
	font-size:30px;
	font-weight:600;
	text-align: center;
	color:#fc0808;
}
.home-about-cont p {
	font-size: 16px;
	color:#000;
	padding:40px 0;
}

.wrap-content {
	width:100%;
	margin:0;
	padding:40px 0;
}
.wrap-content .container-1 {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	position: relative;
	z-index: 3;
}
.content-col-1 {
	width: 45%;
	background: #fff;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	padding: 40px;
	box-sizing: border-box;
	border: 2px solid #e2e2e2;
}
.content-col-1 h1 {
	padding-bottom:5px;
	margin-bottom: 30px;
	border-bottom: 2px solid #e2e2e2;
	display: block;
	position: relative;
}
.content-col-1 h1::after {
  content: "";
  width: 40%;
  border-bottom: 2px solid #e2e2e2;
  position: absolute;
  bottom: -10px;
  display: block;
  left: 0;
}
.content-col-1 ul {
	padding:0;
	margin:0;
}
.content-col-1 ul li {
	padding:8px 0;
	margin:0;
	list-style: none;
	font-size: 20px;
}
.content-col-1 ul li a {
	font-weight: 600;
}


.content-col-2 {
	width:54%;
}
.content-col-2 iframe {
	width:100%;
	height: 100%;
	min-height: 375px;
}
.content-col-2 img {
	width:100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	min-height: auto
}
.wrap-form {
	width:100%;
	padding:50px 20px 0 20px;
	box-sizing: border-box;
}
.wrap-form .container-2 {
	background: #e2e2e2;
	padding: 40px;
	box-sizing: border-box;
	border-radius: 30px;
	position: relative;
	z-index: 2;
	
}
.foot-image {
	width: 100%;
	display: block;
	margin:-15vw 0 0 0;
	height: 35vw;
	object-fit: cover;
	object-position: center top;
	position: relative;
	z-index: 1;
	min-height: 225px;
}


/*===================== 
	Form styles 
=======================*/

/* Containers */



.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	width:100%;
	box-sizing: border-box;
	padding:30px 10% 10% 10%;
	margin-top:0;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}

.form-info-cont input, .form-info-cont date {
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    outline:none;
    border:1px solid #000;
    color:#000;
	border-radius: 10px;
	transition: .2s ease-in;
}

.select-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:0px!important;
    width:100%;
    background:#fff;
    box-sizing: border-box;
    position: relative;
	border-radius: 5px;
	transition: .2s ease-in;
	border:1px solid #000;
}
.select-cont  select {
    -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
    width:100%;
    background-color:transparent;
    border:0px!important;
    outline:none!important;
    font-size: 17px!important;
    font-weight: 400!important;
    padding:15px!important;
    box-sizing: border-box;
    color:#000; 
    position: relative;
    z-index: 2;
    cursor: pointer;
	transition: .2s ease-in;
}
.select-cont i {
    position: absolute;
    z-index: 1;
    right:0px;
}
.form-info-cont p {
	font-weight: bold;
	font-size: 20px;
	padding:10px 0;
	color:#fc0808;
}
.form-info-cont input:focus, .form-info-cont date:focus, .form-info-cont textarea:focus  {
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border:1px solid #fc0808;
}
.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: "Outfit", sans-serif;
    outline:none;
	border-radius: 10px;
	border:1px solid #000;
}


.CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 

.form-button {
	
}
.form-button button {
	height: auto;
	width: 100%;
	max-width: 300px;
	margin:0 auto;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	background: #fc0808;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff !important;
	font-size: 24px;
	transition: .2s ease-in;
	border:0px;
	outline:none;
	padding:20px;
	cursor: pointer;
	font-family: "Outfit", sans-serif;
}
.form-button button:hover {
	background: #000;
	border-top-right-radius: 40px;
	border-bottom-left-radius: 40px;
}


/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	width:100%;
	max-width: 1600px;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
	}
.container-2 {
	width:100%;
	max-width: 1100px;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
	}
.container-inv {
	padding:30px 0 60px 0;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	background:#fc0808;
	position: relative;
  	z-index: 2;
	}
footer .container-1 {
	display: flex;
	justify-content: space-between;
	padding:0 20px;
	gap:0 20px;
}	
.foot-logo-1 {
	position: relative;	
	width:40%;
	max-width: 200px;
}
.foot-logo-1 a {
	position: absolute;
	bottom:0;
	left:0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:40px 20px;
	background:#fff;
	border-top-left-radius: 30px;
	width:100%;
	box-sizing: border-box;
}
.inv-page-1 .foot-logo-1 a  {
	border:1px solid #e2e2e2;
}
.foot-logo-1 a img {
	width:100%;
	max-width: 190px;
	display: block;
	margin:0 auto;
}
.foot-links {
	padding:40px 0;
	margin:0;
	display: flex;
	gap:10px;
}
.foot-links li {
	padding:0;
	margin:0;
	list-style: none;
}
.foot-links li a {
	font-size:20px;
	color:#fff;
	transition: .2s ease-in;
}
.foot-links li a:hover {
	color:#000;
}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1620px)  {
	.head-logo-1 {
		padding: 10px 0 10px 20px;
	}
	.head-right {
		padding: 20px 20px 20px 10px;
		width: auto;
    	gap: 30px;
	}
}
@media screen and (max-width: 1300px)  {
	nav.primary ul li a {
  		font-size: 1.25vw;
	}
	nav.primary > ul {
	  gap: 0;
	}
}
@media screen and (max-width: 1100px)  {
	.u-a-col-1 {
		width:100%;
	}
}
@media screen and (max-width: 990px)  {
	.col-1-2 {
		width:100%;
	}

	.head-right {
		width:85%;
		justify-content: flex-end;
	}
	
	/*==============================
		Mobile Nav Styles			
	================================*/	
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;} /* New class to help control screen width visability */
    
	#menu-button{ 
		display: block;
		position: relative;
        box-sizing: border-box;
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
        text-align: center;
	}
	
    .menu-toggle {
        display: flex;
        gap:13px;
        align-items: center;
		cursor: pointer;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:35px;
        height: 27px;
        position: relative;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#fc0808;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#fc0808;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#fc0808;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }

    .clickopen .menu-hamburger-bar-2 {
        display: none;
    }
    .clickopen .menu-hamburger-bar-1 {
        position: absolute;
        top:10px;
        transform: rotate(45deg);
        width:25px;
    }
    .clickopen .menu-hamburger-bar-3 {
        position: absolute;
        top:10px;
        transform: rotate(-45deg);
        width:25px;
    }
    
	nav.mobile { /* this section is new updated position width and positioning*/
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background: #fc0808;
		z-index: 500; 
		overflow:auto;
	}

	nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
		color: #fff;
	}

	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:20px;
		padding: 10px;
		color: #fff;
		text-decoration: none;
		text-align: center;
	}
	nav.mobile ul li a:hover {
		background:#000;
		color: #fff; 
	}
	.hero-left {
		width:100%;
		overflow: hidden;
	}
	.hero-cta {
		width: calc(100% + 40px);
		top: -20px;
	}
	
	.hero-slider {
		width: 100%;
		margin-top:-30px;
	}
	.hero-slider .slick-dots {
		padding: 20px 0;
	}
	.wrap-home-about .container-1 {
	  justify-content: center;
	}
	.content-col-1 {
		width:100%;
		border-bottom-left-radius: 0px;
	}
	.content-col-2 {
		width:100%;
	}
}

@media screen and (max-width: 700px)  {
	.hero-cta {
		flex-wrap: wrap;
		padding:0px 20px;
	}
	.hero-cta a {
		padding:20px 0;
		width:100%;
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
		border-bottom: 1px solid #fff;
	}
	.hero-cta a:last-of-type {
		border-bottom: 0px;
	}
	.hero-cta a span {
		flex-grow: 1;
		text-align: center;
	}
	.hero-info img {
		min-height: 300px;
	}
	.home-banner-cont {
		overflow: hidden;
	}
	.home-banner-left {
		width:100%;
	}
	.home-banner-info {
		height: auto;
		padding:100px 20px 140px 20px;
	}
	.home-banner-right {
		width:100%;
	}
	.home-banner-btn {
		height: auto;
		left: -20px;
		border-top: 20px solid #fff;
		border-right: 20px solid #fff;
		width: calc(100% + 20px);
		padding: 40px 20px;
		top: -40px;	
	}
	.wrap-home-banner {
		padding:50px 0;
	}

	
}
	
@media screen and (max-width: 480px)  {
	.u-a-col-img-1, .u-a-col-info-1 {
		width:100%;
	}
	.foot-links {
  		padding:20px 0;
	}
	.content-col-1, .wrap-form .container-2, .home-about-cont {
		padding:40px 10px;
	}
	
	h1 {
		font-size: 25px;
	}
	h2 {
		font-size: 22px;
	}
	h3 {
		font-size: 20px;
	}
	h4 {
		font-size: 18px;
	}
	h5 {
		font-size: 16px;
	}
	p {
		font-size: 16px;
	}
	.form-button button {
		font-size: 18px;
	}
	
}