#hero {
	color: #fff;
	display: flex;
	justify-content: center;
	padding: 180px 0 90px 0;
	min-height: 80vh;
	text-align: center;
	background: rgb(43,121,203);
	background: var(--gradient);
}

#hero a{
	color: inherit;
}

#hero p {
	margin: 5px 0 30px 0;
	font-size: 22px;
	font-weight: 600;
}

#container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	max-width: 1120px;
}

#logo-holder {
	margin-left: 40px;
	border-radius: var(--default-radius);
	background-color: #fff;
	padding: 20px;
}

#logo-holder img {
	max-width: 20rem;
}

@media (max-width: 1142px) {
	#hero {
		padding: 100px 10px 80px 10px;;
	}
	#logo-holder img {
		max-width: 15rem;
	}
}



@media (max-width: 720px) {
	#hero {
		min-height: 70vh;
		padding: 40px 10px 0px 10px;
	}
	#hero p {
		font-size: 17px;
	}
	#hero h1 {
		font-size: 1.35rem;
	}
	#hero #main-title {
		font-size: 2.75rem;
		margin-bottom: 10px;
		margin-top: 5px;
	}
	#text-holder {
		border: none;
		text-align: center;
	}
	#text-holder p {
		margin-top: 10px;
		margin-bottom: 80px;
	}
	#text-holder .transp {
		font-size: .95rem;
	}
	#logo-holder {
		display:none;
	}
}