@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700,900');

* {
	box-sizing: border-box;
	transition: all ease-in-out 250ms;
}

img {
	max-width: 100%;
	height: auto;
}

body {
	margin: 0;
	font-family: 'Raleway', sans-serif;
	text-align: center;
}



/* header
=======================*/
header {
    width: 100%;
    padding: 0;
    position: fixed;
    background-color: #1c2e4a;
    z-index: 100;
    top: 0;
}

.logo{
    padding-bottom: 0;
}
nav ul {
	margin: 0;
    margin-top: 1.5em;
	padding: 0;
	list-style: none;
	background-color: #1c2e4a;
    width: auto;
}

nav li {
	display: inline-block;
	margin: 1em;
}

nav a {
	font-weight: 600;
	text-decoration: none;
	padding: .1em;
	text-transform: uppercase;
	color: white;
	font-size: .8rem;
}

@media (min-width:60rem) {
	.logo {
		float: left;
        max-height: 100%;
        max-width: 40%;
	}

	nav {
		float: right;
	}
}

.contact-button{
    display: inline-block;
    border-width: 2px;
	border-style: solid;
    border-color: #ffffff;
    padding: .3em .7em;
}
.contact-button:hover,
.contact-button:focus{
    background: #ffffff;
    color: #1c2e4a
}

/* home-main
=======================*/

.home-main {
	background-image: url(../content/header-background.jpg);
    padding-bottom: 0;
	text-align: left;
    height: 100%;
    background-size: cover;
	
}
.container{
    max-width: 1170px;
    margin:  0 auto;
    padding: 0 20px;
}
@media (min-width: 60rem) {
    .home-main{
        padding-top: 5em;
    }
}

.main{
    display: flex;
        flex-wrap: wrap;
   width: 100%;
   align-items: center;
   gap: 60px;
}



.column-text{
    background-color: rgba(28,46,74,0.7);
    font-size: 16px;
    
    text-align: justify;
    color: white;
    font-weight:400;
    width:calc(65% - 65px);
    padding: 15px;


    
    
}




.column h1{
    color: #f1b82d;
    font-weight: 800;
    text-decoration: underline;
    margin-top:-1vh;
    margin-bottom: -1vh;
    font-size:3vw;
}
.jim-column{
    width: 35%;
    margin: auto;
   
}
.jim-column img{
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    
}



.disclaimer{
    color: #f1b82d;
}
.disclaimer-text{
    padding-top:20px;
    font-size: 11px;
    padding-bottom: 20px;
    color: #f1b82d;
}


.button{
	display: inline-block;
	font-size: 1.15rem;
	text-decoration: none;
	text-transform: uppercase;
	border-width: 2px;
	border-style: solid;
	padding: .5em 1.75em;
    padding-right: 2.5em;
}

.button-accent {
	color: #f1b82d;
	border-color: #f1b82d;
}

.button-accent:hover,
.button-accent:focus {
	background: #f1b82d;
	color: #1c2e4a;
}

@media (min-width: 60rem) {
    .button{
        font-size: 1.8rem;
    }
}

/* Experience
=======================*/
.home-experience{
     background-color: #1c2e4a;
     padding: 0 2em;
}
.home-experience h1{
    color:#ffffff;    
    margin: 0;
    padding-top: 1em;
    padding-bottom: 0;
    
}

.swirl{
    max-width: 20%;
    padding: .5em;
    padding-top: 2em;
}
.experience{
    background-color: #ffffff;
    display:flex;
}
.experience img{
    opacity: .4;
    padding: 0;
    margin: auto;
    height: auto;
    width: 100%;
    max-width: 100%;
    z-index: 0;
}
.experience-column{
    display: flex;
    max-width: 50%;
    position: relative;

}

.experience-button{
    display: flex;
    color: #1c2e4a;
    border-color: #f1b82d;
    font-weight: 500;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
}
.experience-button:hover,
.experience-button:focus{
    background-color: #1c2e4a;
    color:#f1b82d;
}
@media (min-width: 60rem) {
    .home-experience h1{
    font-size: 2rem;
    
    }
}

/* Contact
=======================*/
.extra{
    background-image: url(../content/bg-image.jpg);
    background-position: 37% 55%;
    margin-top: 1.5em;
    padding: 6em;
}
.extra-button{
    font-size: 2rem;
    color:white;
}
/* Footer
=======================*/
footer{
    background-color: black;
    color: #f1b82d;
    padding: 1em;
    text-align: center;
    line-height: 2em;
    font-weight: 500;
    text-indent: 0;
}
footer .p{
    text-indent: 0;
}
footer a:link{
    color:#f1b82d;
}
footer a:visited{
    color:#f1b82d;
}
footer a:hover{
    color:white;
}

@media (max-width: 960px){
    .column-text{
        width: 100%;
        margin-top: 50px;
    }
    .jim-column{
        width: 100%;
        max-width: 400px;
    }
}
