
/* GLOBAL RESET */
*{
box-sizing:border-box;
}

html,body{
margin:0;
padding:0;
overflow-x:hidden;
font-family:Arial,sans-serif;
background:#fff;
}

img{
max-width:100%;
height:auto;
display:block;
}

.container{
width:90%;
max-width:1200px;
margin:0 auto;
}

/* HEADER */
.main-header{
background:#132347;
padding:20px 0;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.logo img{
max-height:90px;
}

.main-nav{
display:flex;
flex-wrap:wrap;
gap:25px;
}

.main-nav a{
color:#ffd700;
font-weight:bold;
text-decoration:none;
}

/* PAGE CONTENT */
.page-wrapper,
.content-wrapper,
.main-content,
.page-content{
width:100%;
display:block;
clear:both;
}

.left,
.right,
.sidebar,
.content,
.col,
.column{
float:none !important;
width:100% !important;
margin:0 !important;
}

/* REMOVE ARCHIVE FLOATS */
[style*="float:left"],
[style*="float: left"],
[style*="float:right"],
[style*="float: right"]{
float:none !important;
}

/* FOOTER */
footer{
background:#132347;
padding:40px 0;
margin-top:40px;
color:#fff;
text-align:center;
clear:both;
width:100%;
}

footer .main-nav{
justify-content:center;
margin-bottom:20px;
}

/* MOBILE */
@media(max-width:768px){

.header-inner{
justify-content:center;
text-align:center;
}

.main-nav{
justify-content:center;
}

}
