@charset "UTF-8";
/* CSS Document */

html {
	scroll-behavior: smooth;
}

body {
    margin: 0;
	font-family: raleway, sans-serif;
    line-height: 1.5;
	
}
h1, h2, h3, h4, h5, h6{font-family: latino-urw, serif;    font-weight: 300;margin-top:0;}
p, ul, ol {font-family: raleway, sans-serif; font-size: 18px;}
h2 {
    font-size: 37px;
    line-height: 1.1;
}
h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #f4c413;
    display: block;
    margin: 15px 0;
}
h3 {
    font-size: 23px;
    line-height: 30px;
    margin: 0;
}
a{transition:0.6s all;text-decoration: none;}
a.btn, div.btn {
    background-color: #f3c413;
    padding: 20px 40px;
    border-radius: 10px;
    display: inline-block;
    margin: 20px 0 0;
	color:#000;
	text-transform: uppercase;
}
div#load-more {
	width: 95px;
}
img{width:100%;height:auto;}

header {
    background-image: url(images/main-header.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 980px;
	position: relative;
}
.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-menu ul li {
    display: inline-flex;
    margin-left: 20px;
    padding-left: 20px;
	position: relative;
}
.main-menu ul li:before {
    display: inline-flex;
    width: 9px;
    height: 9px;
    content: "";
    background-color: #f3c413;
    align-items: center;
    position: absolute;
    left: -6px;
    top: 7px;
}
.main-menu ul li:first-child:before {
    display: none;
}
.main-menu ul li:first-child {
    margin-left: 0;
    padding: 0;
}
.main-menu ul li a{
	text-transform:uppercase;
	text-decoration: none;
	color:#000;
	font-family: latino-urw, serif;
}
.main-menu ul li a:hover{
	color: #f3c413;
}
.container {
    width: 1000px;
    margin: 0 auto;
}
section.about{
	background-image: url("images/faded-main-header.jpg");
	 background-size: cover;
    background-position: center;
    width: 100%;
    padding: 200px 0 0;
}
.intro-block {
    background-color: #002539;
    width: 1000px;
    padding: 50px;
    border-radius: 20px;
    bottom: -100px;
    position: absolute;
    left: calc((100% - 1100px) / 2);
    display: inline-flex;
    align-items: center;
}
.logo {
    position: absolute;
    top: 40px;
    left: 5%;
	    width: 400px;
}
.main-menu {
    position: absolute;
    right: 5%;
    top: 60px;
}
.intro-block .col-1-2 {
    width: 33%;
    margin-right: 3%;
	text-align:center;
}
.intro-block .col-2-2 {
    width: 63%;
}
.intro-block .col-1-2 img {
    width: 250px;
    height: auto;
}
.intro-block h2, .intro-block p {
    color: #fff;
}
.intro-block h2{
	margin:0;
}
.intro-block p {
	margin-bottom:0;	
}
section#services {
    background-color: #002539;
    padding: 100px 0;
    margin-top: -7px;
}

section#services .container {
    text-align: center;
    margin-left: calc((100% - 1000px) / 2);
    max-width: 1000px;
}

.card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    padding: 40px 30px 20px;
    text-align: center;
    border-radius: 20px;
    background-color: #545759; /* default color */
    color: #fff;
}

.card-1 {
    background-color: #545759;
}

.card-2 {
    background-color: #002f56;
}

.card-3 {
    background-color: #003b71;
}

.card-4 {
    background-color: #545759; /* Adjust color for consistency */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	grid-column: 2 / span 1; /* Center it under Card 2 */
}

.card-4 img {
    max-width: 100px;
    margin-bottom: 10px;
}

.card-4 a {
    color: #fff;
    text-decoration: none;
	font-weight: bold;
}

.card p {
    font-size: 16px;
    margin-top: 15px;
}

/* Responsive Tweaks */
@media screen and (max-width: 768px) {
    .card-wrapper {
        grid-template-columns: 1fr; /* Stack all cards */
    }
    .card-4 {
        grid-column: auto; /* Ensure card 4 stacks normally */
    }
}

section#services h2, section#services h3, section#services h4, section#services h5, section#services p, section#services ol, section#services ul {
	color: #fff;
}
section#services h3 {
	margin-bottom: 10px;
}
section#services h2:after, section#contact h2:after {
	    margin: 15px auto;
}
.about-block {
    display: flex;
}

.about-block.jared {
    margin: 50px 0;
}

.about-block .col-1-2{
    margin-right: 10%;
}
img.joe, 
img.jared {
    width: 250px;
    height: auto;
}


.name-title-bio {
    text-align: center;
}

.name-title-bio span {
	color: #f4c413;
}

.about-block.jared {
    margin-bottom: 50px;
}

section#news{
	padding: 100px 0;
	margin-top: 50px;
}

#news h2{
	text-align: center;
	padding-top: 50px;
}

#news h2:after{
	margin: 15px auto;
}

.news-container{
	display: none;
	align-items: center;
	margin: 15px;
	padding: 30px 0;
	border-bottom: 2px solid #545759;
}

.news-container:last-of-type{
	border-bottom: none;
}

h3.article{
	color: #000;
}

h3.article:hover{
	color: #003b71;
	transition: .5s;
}

.date{
	font-size: 18px;
}

.news-info{
	padding-left: 45px;
}

.news-image{
	width: 150px;
}

section#contact {
    padding: 200px 0;
    background-image: url(images/contact-bg.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
}
footer{
	padding: 200px 0;
    background-image: url(images/footer-bg.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
}
footer.footer a {
    color: #fff;
}
footer.footer a:hover {
    color: #f3c413;
}
img.footer-logo {
    width: 150px;
}
.information-block {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.announcement-block {
    width: 350px;
    background-color: #002539;
    text-align: center;
    padding: 15px;
    border-radius: 20px;
    max-height: 325px;
	color: #fff;
	position: relative;
}
.announcement-block h2 {
	position: absolute;
	top: 100px;
	padding: 15px;
}
.video-block {
    text-align: center;
    margin: 0 0 85px;
	background-color: #002539;
	padding: 15px;
	border-radius: 20px;
}

#load-more {
    display: block;
    margin: 20px auto;
	cursor: pointer;
}
.article-container {
	display: flex;
}
@media only screen and (max-width: 1200px) {
.intro-block {
    width: 780px;
    padding: 40px;
    border-radius: 20px;
    bottom: -150px;
    left: calc((100% - 880px) / 2);
}
.information-block {
	flex-direction: column;
	align-items: center;
	margin-bottom: 60px;
}	
	p, ul, ol {
    font-size: 16px;
}
section#services .container {
    margin-left: calc((100% - 800px) / 2);
	width: 800px;
}
.card {
    margin: 0 15px 0 0;
    padding: 40px 20px 20px;
    width: 207px;
    min-height: 385px;
}
.container {
    width: 800px;
    margin: 0 auto;
}
	.announcement-block {
	position: initial;
}
.announcement-block h2 {
	position: initial;
}
	.announcement-block h2:after {
		display: none;
	}
}
@media only screen and (max-width: 979px) {
	.intro-block {
    width: 90%;
    padding: 40px 20px;
    border-radius: 20px;
    bottom: -150px;
    left: calc(5% - 20px);
}
	h2 {
    font-size: 30px;
    line-height: 1.1;
}
img.joe {
    width: 225px;
    height: auto;
}
section#services .container {
    margin-left: 5%;
    width: 90%;
}
section.about {
    padding: 250px 0 0;
}
.logo {
    top: 40px;
    left: 5%;
    width: 300px;
}
.intro-block .col-1-2, .intro-block .col-2-2 {
    width: 100%;
    margin-right: 0;

}
.intro-block .col-1-2 img {
    width: 90%;
    height: auto;
	    max-width: 250px;
}
	.about-block .col-1-2 {
    margin-right: 5%;
}
.card {
    margin: 0 0 30px 0;
    padding: 40px 20px 20px;
    width: calc(100% - 40px);
    min-height: 0;
}
.container {
    width: 90%;
}
}
@media only screen and (max-width: 767px) {
.intro-block {
    display: block;
}
p, ul, ol {
    font-size: 15px;
}
.intro-block .col-1-2 img {
    width: 200px;
    height: auto;
	margin-bottom:30px;
}
.intro-block .col-1-2, .intro-block .col-2-2 {
    width: 100%;
    margin-right: 0;
    text-align: center;
}
h2:after{
	    margin: 15px auto;
}
.main-menu ul li {
    display: inline-flex;
    margin-left: 15px;
    padding-left: 15px;
    position: relative;
}
.logo {
    top: inherit;
    left: inherit;
    width: 300px;
    position: relative;
    text-align: center;
    padding: 20px 0;
    margin: 0 auto;
}
.main-menu {
    position: relative;
    right: inherit;
    top: inherit;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}
.about-block {
    display: block;
}
.about-block .col-1-2, .about-block .col-2-2  {
    margin: 0 0 30px 0;
    width: 100%;
    text-align: center;
}
.intro-block {
    width: 80%;
    padding: 40px 20px;
    border-radius: 20px;
    bottom: -150px;
    left: calc(10% - 20px);
}
}

@media only screen and (max-width: 500px) {

	.news-container{
		flex-direction: column;
		justify-content: left;
	}
	
	.news-info{
		padding: 30px 0 0 0;
	}
	
.logo {
    display: none;
}
.main-menu {
   padding: 20px 0 0;
}
img.joe {
    width: 165px;
    height: auto;
}
}