header {
	width: 100%;
	padding: 0;
	height: 76px;
	top: 0;
	left: 0;
	background-color: #fff;
	box-shadow: 0 5px 10px 1px rgb(56 59 71 / 20%);
}


#logo {
	overflow: hidden;
	padding: 24px 25px 0 0;
	float: left;
}

#logo img {
	height: 33px;
	width: 140px
}

* {
	border: 0 solid;
	box-sizing: border-box;
}

body {
	background-color: rgb(5, 15, 52);
	color: white;
	font-family: "Roboto", sans-serif;
	margin: 0px; 
	padding: 0px; 
}

section {
	background: linear-gradient(#005b94, #00aeef);
	min-height: calc(100vh - 125px); 
}

.content {
	max-width: 1240px;
	min-width: 320px;
	margin: 0 auto;
}

.row {
	padding: 0 1.25rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	display: flex;
}

.col-1 {
	width: 50%;
}

.col-1 	img {
    height: auto;
    width: 100%;
}

.col-2 {
	padding: 1.25rem;
	width: 50%;
}

h1 {
	font-size: 3.2rem;
	line-height: 1.05em;
	margin-bottom: 2rem;
	font-weight: 300;
	color: white;
}

p {
	margin-bottom: 1rem;
}

.button {
	padding-bottom: 1rem;
	padding-top: 1rem;
}

.button a {
    transition-duration: .3s;
    text-transform: uppercase;
    font-size: 1.375rem;
    line-height: 1.05em;
    padding: .5rem 1.5rem;
    background-color: rgb(245, 156, 0);
    color: white;
    border-radius: 9999px;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.button a:hover {
    background-color: #dc8c00;
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
}

footer {
	text-align: left;
	font-size: .875rem;
	line-height: 1.05rem;
}

.legal {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.social {
	text-align: right;
}

.social a {
    fill: white;
    width: 24px;
    margin-left: 12px;
    vertical-align: middle;
    display: inline-block;
}

.social a svg {
    display: block;
}

.row-footer {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	justify-content: space-between;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	display: flex;
}

@media screen and (max-width: 599px) {
	header {
		height: 65px;
	}
	#logo {
		padding-top: 17px;
	}
	.phone-hidden {
		display: none;
	}
	.col-1 {
		width: 100%;
	}

    .col-2 {
        width: 100%;
        padding: 0 0 1.25rem 0;
    } 
}

@media only screen and (min-width: 600px) {
	.desktop-hidden {
		display: none;
	}
}

@media only screen and (max-width: 999px) {
	h1 {
		font-size: 1.8em;
		;
	}
}

@media only screen and (max-width: 1199px) {
	#logo {
		padding-left: 20px;
	}
}