|
|
|
@ -1,10 +1,16 @@
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
|
|
|
--main-bg-color: #121E2A;
|
|
|
|
|
|
|
|
--main-text-color: #fff;
|
|
|
|
|
|
|
|
--secondary-bg-color: #f4f4f4;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* General Body Styling */
|
|
|
|
/* General Body Styling */
|
|
|
|
body {
|
|
|
|
body {
|
|
|
|
font-family: 'Arial', sans-serif;
|
|
|
|
font-family: 'Arial', sans-serif;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 1581px;
|
|
|
|
max-width: 1581px;
|
|
|
|
padding: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: #f4f4f4; /* Light grey background */
|
|
|
|
background-color: var(--secondary-bg-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Container */
|
|
|
|
/* Container */
|
|
|
|
@ -16,22 +22,21 @@ body {
|
|
|
|
|
|
|
|
|
|
|
|
/* Header */
|
|
|
|
/* Header */
|
|
|
|
.header {
|
|
|
|
.header {
|
|
|
|
background: #121E2A;
|
|
|
|
background: var(--main-bg-color);
|
|
|
|
color: #fff;
|
|
|
|
color: var(--main-text-color);
|
|
|
|
padding-top: 30px;
|
|
|
|
padding-top: 30px;
|
|
|
|
min-height: 70px;
|
|
|
|
min-height: 70px;
|
|
|
|
border-bottom: #f4f4f4 3px solid;
|
|
|
|
border-bottom: var(--secondary-bg-color) 3px solid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.header a {
|
|
|
|
.header a {
|
|
|
|
color: #fff;
|
|
|
|
color: var(--main-text-color);
|
|
|
|
text-decoration: none;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 16px;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* logo */
|
|
|
|
/* logo */
|
|
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
.logo {
|
|
|
|
float: left;
|
|
|
|
float: left;
|
|
|
|
display: block;
|
|
|
|
display: block;
|
|
|
|
@ -57,10 +62,18 @@ body {
|
|
|
|
margin-left: 35px;
|
|
|
|
margin-left: 35px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.menu a:hover {
|
|
|
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.menu a.active {
|
|
|
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Banner */
|
|
|
|
/* Banner */
|
|
|
|
.banner {
|
|
|
|
.banner {
|
|
|
|
position: relative;
|
|
|
|
position: relative;
|
|
|
|
background: #121E2A no-repeat center center;
|
|
|
|
background: var(--main-bg-color) no-repeat center center;
|
|
|
|
background-size: contain;
|
|
|
|
background-size: contain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ -75,17 +88,13 @@ body {
|
|
|
|
/* Main Content */
|
|
|
|
/* Main Content */
|
|
|
|
.main {
|
|
|
|
.main {
|
|
|
|
padding: 20px;
|
|
|
|
padding: 20px;
|
|
|
|
background: #fff;
|
|
|
|
background: var(--main-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.main h1 {
|
|
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Footer */
|
|
|
|
/* Footer */
|
|
|
|
.footer {
|
|
|
|
.footer {
|
|
|
|
background: #121E2A;
|
|
|
|
background: var(--main-bg-color);
|
|
|
|
color: #fff;
|
|
|
|
color: var(--main-text-color);
|
|
|
|
text-align: center;
|
|
|
|
text-align: center;
|
|
|
|
padding: 30px 0;
|
|
|
|
padding: 30px 0;
|
|
|
|
overflow: hidden; /* Clear the float */
|
|
|
|
overflow: hidden; /* Clear the float */
|
|
|
|
@ -114,33 +123,27 @@ body {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.footer ul li a {
|
|
|
|
.footer ul li a {
|
|
|
|
color: #fff;
|
|
|
|
color: var(--main-text-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Media Queries */
|
|
|
|
/* Media Queries */
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.menu {
|
|
|
|
.menu {
|
|
|
|
|
|
|
|
float: none;
|
|
|
|
|
|
|
|
width: 120px;
|
|
|
|
|
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
padding-left: 0px;
|
|
|
|
|
|
|
|
padding-right: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
|
|
|
|
margin-top: -25px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.menu ul {
|
|
|
|
.menu ul {
|
|
|
|
padding: 0;
|
|
|
|
line-height: 1.5;
|
|
|
|
background-color: #333;
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.menu ul li {
|
|
|
|
.menu ul li {
|
|
|
|
display: block; /* Stack the menu items vertically */
|
|
|
|
margin-left: 0px;
|
|
|
|
margin: 0; /* Remove margin */
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.menu ul li a {
|
|
|
|
|
|
|
|
display: block; /* Block level links take up the full width of their container */
|
|
|
|
|
|
|
|
padding: 10px; /* Add padding for touch targets */
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.header, .footer {
|
|
|
|
.header, .footer {
|
|
|
|
@ -155,9 +158,3 @@ body {
|
|
|
|
padding-right: 0px;
|
|
|
|
padding-right: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 480px) {
|
|
|
|
|
|
|
|
.menu ul li {
|
|
|
|
|
|
|
|
padding: 5px; /* Adjust padding for smaller screens */
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|