*{
	margin:0;
	padding:0;
	border:0;
	font-size: 100%;
	outline: 0;
	vertical-align: baseline;
	}
	

:root{
	--white:#FFFFFF;
	--black:#292929;
	--red:#BC2024;
	--dkgray:#535F70;
	--steel:#87919F;
	--blue:#5597F2;
	--brown:#603620;
	}


html{
	font-family: 'Roboto', sans-serif;
	}

body{
	-webkit-text-size-adjust: 100%;
	color:var(--black);
	font-weight: 400;
	}

ul{
	list-style: none;
	margin:0;
	padding:0;
	}
	
a{
	text-decoration: none;
	color:var(--dkgray);
	}




	
	
::-webkit-input-placeholder {color:#ccc;}
::-moz-placeholder {color:#ccc;}
:-ms-input-placeholder {color:#ccc;}
:-moz-placeholder {color:#ccc;}






header{
	display:flex;
	background-color: var(--brown);
	line-height: 44px;
	}

.header__left{
	flex:1 1 auto;
	color:var(--white);
	padding-left: 20px;
	font-size: 24px;
	font-weight: 500;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	}
	
.header__right{
	flex:0 0 200px;
	color:var(--white);
	padding-right: 20px;
	font-size: 24px;
	font-weight: 500;
	text-align: right;
	}


main{
	margin:0 auto 60px auto;
	max-width: 1228px;
	padding:0 10px;
	}


.nav__group{
	text-align: center;
	margin:30px 0 24px 0;
	}

.nav__btn{
	font-size: 21px;
	font-weight: 500;
	color:var(--steel);
	line-height: 30px;
	padding:0 14px;
	}
	
.nav__selected{
	font-size: 21px;
	font-weight: 500;
	color:var(--black);
	line-height: 30px;
	padding:0 14px;
	}

.nav__btn:hover{
	color:var(--red);
	}


.title__h1{
	font-size: 60px;
	font-weight: 500;
	color:var(--dkgray);
	text-align: center;
	margin-bottom: 40px;
	}

.cta__btn{
	display:block;
	margin:0 auto 40px auto;
	width:300px;
	background-color: var(--dkgray);
	color:var(--white);
	text-align: center;
	line-height: 44px;
	border-radius: 10px;
	font-size: 24px;
	font-weight: 500;
	cursor:pointer;
	transition: 0.3s;
	}
.cta__btn:hover{
	background-color: var(--red);
	}


.feature__group{
	display:block
	}

.feature__box{
	margin-bottom: 20px;
	}

.feature__h3{
	color:var(--red);
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 5px;
	}

.copy{
	font-size: 18px;
	line-height: 29px;
	color:var(--steel);
	}

.link__blue{
	color:var(--blue);
	text-decoration: underline;
	}
	
.hero__img{
	margin:0 auto;
	max-width: 441px;
	margin-bottom: 20px;
	}



.sellnow{
	display:block;
	}

.sellnow__left{
	padding-right: 0;
	}
	
.sellnow__right{
	text-align: left;
	}
	
.sellnow__copy{
	font-size: 18px;
	line-height: 29px;
	color:var(--dkgray);
	margin-bottom: 30px;
	}


.body__copy{
	font-size: 18px;
	line-height: 29px;
	color:var(--dkgray);
	margin-bottom: 30px;
	}
.copyred{
	color:var(--red);
	}


@media only screen and (min-width: 768px){
.feature__group{
	display:flex;
	}

.feature__box{
	flex:1 1 auto;
	padding:0 20px;
	}

.feature__h3{
	color:var(--brown);
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 5px;
	}


.sellnow{
	display:flex;
	}

.sellnow__left{
	flex:1 1 auto;
	padding-right: 20px;
	}
	
.sellnow__right{
	flex:0 0 331px;	
	text-align: right;
	}

}