@import "fontawesome.min.css";
@import "solid.css";
@import "brands.css";
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;700&display=swap');

/* basics */

body { 
  background-image: url("../images/splash_background_top.jpg"), url("../images/splash_background_bottom.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: top, bottom;
  background-size: 100%, 100%;
  background-color: #050508;
  text-align: center; 
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5em;
  color: #efefef;
}
a:link, a:visited { 
  color: #dfe4ea;
}
.bodyContent a:link, .bodyContent a:visited { 
  color: #0087a8;
}

/* page elements */

header {
	margin-bottom: 12vh;
}
header.blog {
	margin-bottom: 0;
}
.homeLogo {
	max-width: 40%;
	margin-top: 16vh;
	margin-bottom: 10vh;
	transition-property: max-width;
    transition-duration: 1s;
    cursor: default;
}
.blogLogo {
	max-width: 80%;
	opacity: 0.5;
}
.homeLogo:hover {
	max-width: 60%;
}

.quickLink {
    font-size:2em;
    margin:1em;
    color:#20374d;
    transition-property: color;
    transition-duration: 0.5s;
    cursor: s-resize;
}
.quickLink:hover {
    color: #ffffff;
}

section {
	background-color:rgba(87, 87, 87, 0.08);
}
.sectionHeading {
	text-align: right;
	background: rgba(5, 60, 100, 0.45);
	padding: 0.25em 1em;
	min-height: 1em;
        cursor: n-resize;
        transition-property: background;
        transition-duration: 0.5s;
}
.sectionHeading:hover {
	background: rgba(5, 60, 100, 0.75);
}
.contentContainer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	min-height: 20vh;
	margin: 0 5em 5em 5em;
}

.imgControl img {
    width: 100%;
    border-radius: 8px;
}
.mobileHide {
   display: block;
}

#blogBackground {
	color: #121212;
	background-color: #e1e1e1;
	min-height: 80vh;
	position: relative;
	top: -2em;
        width: 90vw;
        margin: auto;
        border-radius: 8px;
}

#blogBackground img {
       max-width: 100%;
       box-shadow: 0px 3px 6px rgba(0,0,0,.25);
       border: 4px solid rgba(255,255,255,0);
       transition-property: border;
       transition-duration: 0.5s;
}

#blogBackground img:hover {
        opacity: 0.8;
        border: 4px solid #0087a8;
}

.colLeft {
	text-align: left;
}
.colRight {
	text-align: right;
}
.colQtr {
	width: 24%;
}
.colThird {
	width: 32%;
}
.colHalf {
	width: 49%;
}
.colTwoThird {
	width: 65%;
}
.colThreeqtr {
	width: 74%;
}
.colFull {
	width: 100%;
}

.socialIcon {
	width: 70px;
	opacity: 0.6;
	transition-property: width;
    transition-duration: 0.5s;
}
.socialIcon:hover {
	width: 125px;
	opacity: 1;
}

footer {
	margin: 0 5em 5em 5em; 
}

/* blog tiles */

.blogListing {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.blogTile {
	width: 46%;
	min-height: 100px;
	margin: 1%;
	border: 2px solid rgba(61, 61, 61, 0.5);
}
.blogImage {
	width: 100%;
	height: 160px;
	background-size: cover;
}
.blogTitle {
	padding: 1em;
	font-weight: 700;
	line-height: 1;
        background-color:  rgba(0,0,0,0.1);
}
.blogTile a {
	text-decoration: none;
}

.blogContent {
   padding: 2em 0 !important;
}

/* general stylings */

.txtHeading {
	font-weight: 300;
	font-size: 1.75em;
	text-transform: uppercase;
}
p {
	margin-top: 0.5em;
}
.padded {
	padding: 1em;
}
.padLarge {
	padding: 2em;
}
.padSmall {
	padding: 0.25em;
}
.vertCenter {
	align-items: center;
}
.right {
  float: right;
}
.tm1 {
   margin-top: 1em;
}
.tm2 {
   margin-top: 2em;
}
.tm3 {
   margin-top: 3em;
}
.tm4 {
   margin-top: 4em;
}
.tm5 {
   margin-top: 5em;
}
.tm6 {
   margin-top: 6em;
}
.tm7 {
   margin-top: 7em;
}
.tm8 {
   margin-top: 8em;
}
.tm9 {
   margin-top: 9em;
}
.tm10 {
   margin-top: 10em;
}
.tm11 {
   margin-top: 11em;
}
.tm12 {
   margin-top: 12em;
}
.tm13 {
   margin-top: 13em;
}
.tm14 {
   margin-top: 14em;
}
.tm15 {
   margin-top: 15em;
}
.tm16 {
   margin-top: 16em;
}

.inline20 {
   width: 20% !important;
   margin: 1%;
}
.inline50 {
   width: 46% !important;
   margin: 1%;
}

.interestsThumb {
   height: 150px;
   margin: 1%;
}

.interestBlock {
   display: none;
}
.interestToggle {
   cursor: pointer;
}

/* header progerss bar items */
#scrollPos {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
.progress-container {
  width: 100%;
  height: 8px;
  background: rgba(5, 60, 100, 0.85);
}
.progress-bar {
  height: 8px;
  background: #0087a8;
  width: 0%;
}

/* buttons */

.flexButton > a:link {
	text-decoration: none;
        color: #ffffff !important;
}
.flexButton {
	background-color: #0087a8;
	border: none;
	color: #ffffff;
	font-size: .75em;
	font-weight: 700;
	padding: .75em 1.5em;
	border-radius: 2em;
	line-height: 1;
}
.btnColorBlue {
	background-color: #125775;
}
.btnIconChevron::after {
	font-family: FontAwesome;
	line-height: 1;
	font-size: 1.25em;
	display: inline-block;
	padding: 0 0 0 10px;
	vertical-align: middle;
	content: "\f054";
}
.btnIconClock::after {
	font-family: FontAwesome;
	line-height: 1;
	font-size: 1.25em;
	display: inline-block;
	padding: 0 0 0 10px;
	vertical-align: middle;
	content: "\f017";
}
.btnIconCloud::after {
	font-family: FontAwesome;
	line-height: 1;
	font-size: 1.25em;
	display: inline-block;
	padding: 0 0 0 10px;
	vertical-align: middle;
	content: "\f382";
}



/* media queries */

@media (max-width: 786px) {

	header {
		margin-bottom: 10vh;
	}
	footer {
		margin: 0 1em 1em 1em; 
	}
	.homeLogo {
		max-width: 90%;
		margin-top: 10vh;
	}
	.colQtr, .colThird, .colHalf, .colTwoThird, .colThreeqtr, .colFull {
		width: 100%;
	}
        .mobileHalf {
                width: 50%;
        }
	/* align everything left on mobile */
	.colRight {
		text-align: left;
	}
	.blogTile {
		width: 100%;
		min-height: 100px;
	}
	#blogBackground {
		top: -1em;
	}
        .contentContainer {
	       margin: 0 2em 2em 2em;
        }

        .tm2, .tm3, .tm4, .tm5, .tm6, .tm7, .tm8, .tm9, .tm10, .tm11, .tm12, .tm13, .tm14, .tm15, .tm16 {
          margin-top: 1em;
        }
        .inline20, .inline50 {
           width: 98% !important;
        }
        .quickLink {
           margin: 0.5em;
        }
        .interestsThumb {
             height: 100px;
        }
        .mobileHide {
            display: none;
        }

}
