/*styles go here*/
.sticky-branding{
    z-index:10;
}
.color-1{
    color:#006889;
}
.background-color-1{
    background-color:#006889;
}
.left-margin{
    margin-left:30px
}
.right-margin{
    margin-right:30px
}

#top-branding > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 9;
}
#top-socials-grid {
    justify-self: end;
}
.socials-top img {
    max-width: 30px;
}
#top-socials-grid {
    justify-self: end;
    display: grid;
    grid-template-columns: 30px 30px 30px;
    grid-gap: 10px;
    align-content: center;
}
#desktop-nav {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    justify-content: center;
    justify-items: center;
    grid-gap: 30px;
}
#side-nav-burger{
    margin-top: -68px;
    margin-bottom: 22px;
}
#hero img {
    width: 100%;
}
#hero h2 {
    color: #fff;
}

/*about*/
#about-grid {
    display: grid;
    grid-template-columns: 50px 1fr 1fr;
    justify-items: center;
    grid-gap: 30px;
}
#about-side h2 {
    transform: rotate(-90deg);
    color: #006889;
}
span.hyphen-line {
    letter-spacing: -3px;
    color: #006889;
}
#about-text p {
    color: #006889;
}
#about-pic img {
    max-width: 100%;
}

/*services*/
#services-1 h2 {
    text-align: center;
    font-size: 40px;
    color: #006889;
    margin-bottom: 10px;
}
.heading-underline{
    border-bottom: 2px solid #006889;
    width:100px;
    margin:auto;
}
#services-1 p {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-top: 30px;
    color: #006889;
    font-size: 20px;
}

#services-2 {
    background: url(../../inc/img/background-image.jpg);
    background-size: cover;
    padding: 30px;
    color: #fff;
    margin-top:30px;
}
#services-2 h2 {
    font-size: 40px;
    font-weight: 900;
    max-width: 780px;
    margin: auto;
}
#services-2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

h2.with-ticks::before {
    content: "\2713";
    margin-right: 10px;
}
h2.with-ticks {
    font-size:30px!important;
}
a.btn-brand {
    background: #fff;
    color: #006889;
    padding: 10px 30px;
    border-radius: 15px;
    margin-top: 20px;
    display: block;
    width: fit-content;
    cursor: pointer;
}

/*read more info boxes*/
.show-info {
    display: block!important;
    /* padding: 30px; */
    height: auto!important;
    /* background: #f00; */
    transition: height 0.4s;
    /* margin-top: 30px; */
}

/*team*/
#our-team h2 {
    text-align: center;
    font-size: 40px;
    color: #006889;
    margin-bottom: 10px;
}
#team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
    justify-items: center;
    grid-gap: 30px;
}
#team-pic img {
    max-width: 350px;
    /*margin-top: -88px;*/
}
#team-text p, #team-text ul li {
    font-size: 18px;
    color: #006889;
}
#team-text ul li,#services-2 ul li, .show-info ul li {
    list-style: circle!important;
    list-style-position: inside!important;
}

/*contact*/
#contact-header {
    padding: 30px;
    background: url(../../inc/img/contact-us-background.jpg);
    background-size: cover;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}
#contact-grid {
    display: grid;
}


/*form colors*/
/* label color */
.input-field label {
    color: #006889!important;
}
/* label focus color */
.input-field input[type=text]:focus + label {
    color: #006889!important;
}
/* label underline focus color */
.input-field input[type=text]:focus {
    border-bottom: 1px solid #006889!important;
    box-shadow: 0 1px 0 0 #000;
}
/* valid color */
.input-field input[type=text].valid {
    border-bottom: 1px solid #006889!important;
    box-shadow: 0 1px 0 0 #000;
}
/* invalid color */
.input-field input[type=text].invalid {
    border-bottom: 1px solid #006889!important;
    box-shadow: 0 1px 0 0 #000;
}
/* icon prefix focus color */
.input-field .prefix.active {
    color: #006889!important;
}
/*placeholder*/
input::placeholder,textarea::placeholder {
    color: #006889;
}

/*error*/
#error-form {
    text-align: center;
    background: red;
    padding: 30px;
    font-size: 18px;
    width: 300px;
    margin: auto;
    margin-bottom: 20px;
    display: none;
}

/*footer*/
footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    color: #006889;
}
#socials-grid-bottom {
    justify-self: end;
    display: grid;
    grid-template-columns: 30px 30px 30px;
    grid-gap: 10px;
    align-content: center;
}
.sgb-item img {
    max-width: 30px;
}
#links a {
    color: #006889;
}


@media only screen and (max-width:600px) {
    img {
	max-width: calc(100vw - 60px);
    }
    #logo-top {
	margin: 0;
    }
    #nav-bar {
	margin-top: 18px;
    } 
    #hero {
	margin-top: -5px;
    }
    #hero h2 span {
	font-size: 40px;
    }
    #hero h2 {
	font-size: 18px;
    }
    #hero img {
	min-width: 100%!important;
    }
    #side-nav-burger {
	margin-top: -40px;
	margin-bottom: 22px;
	margin-left: 22px;
    }
    #side-nav-burger i.material-icons {
	color: #fff;
    }
    #desktop-nav a {
	display: none;
    }
    #hero h2 {
	margin-top: -114px;
	margin-bottom: 63px;
	line-height:40px;
    }
    #contact-header h2 {
	
    }
    #contact-grid,#about-grid,#services-2-grid,#team-grid {
	grid-template-columns: 1fr;
    }
    #about-side h2 {
	transform: unset;
    }
    span.hyphen-line {
	display: none;
    }
    #team-pic img {
	margin-top: 0;
    }
    footer {
	grid-template-columns: 1fr;
	justify-content: center;
	justify-items: center;
    }
    #socials-grid-bottom {
	justify-self: center;
    }
    #about-side h2 {
	margin-bottom: -30px;
    }
    #logo-top img {
	width: 175px;
	margin-top: 20px;
	margin-left:30px;
    }
    #top-socials-grid {
	margin-top: 27px;
    }

    .sticky-nav {
    position: fixed;
	top: 100;
	z-index:10;
}
    .sticky-branding {
	position: fixed;
	top: 0;
	background: #fff;
	border-bottom: 30px solid #fff;
    }
    .sticky-burger {
	position: fixed;
	top: 156px;
	z-index:99;
    }

}
@media only screen and (min-width:601px) {
    #side-nav-burger {
	display: none;
    }
    section#nav-bar {
	margin-bottom: -22px;
    }
    #hero {
	margin-top: 22px;
    }
    #hero h2 {
	margin-top: -50vh;
	margin-bottom: 45vh;
	font-size: 38px;
	font-weight: 400;
	line-height: 63px;
    }
    #hero h2 span {
	font-size: 80px;
	font-weight: 900;
    }
    #about-side h2 {
	font-size: 40px;
	width: 470px;
    }
    #about-text p {
	font-size: 14px;
    }
    #contact-header h2 {
	font-size: 60px;
	font-weight: 900;
    }
    #contact-grid {
	grid-template-columns: 1fr 1fr;
    }

    .sticky-nav {
	position: fixed;
	top: 115;
    }
    .sticky-branding {
	position: fixed;
	top: 0;
	background: #fff;
	width: 100%;
    }
}


/**Thank you page**/
#thank-you {
    text-align: center;
    margin: 60px 20px;
}
