@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400,300,600);
/*--Font's--------------------------------*/
 @font-face {
    font-family: OpenSans-Light;
    src: url('../fonts/OpenSans-Light.eot'); /* IE9 Compat Modes */
    src: url('../fonts/OpenSans-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/OpenSans-Light.woff') format('woff'), /* Pretty Modern Browsers */
         url('../fonts/OpenSans-Light.ttf')  format('truetype') /* Safari, Android, iOS */
}
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Open Sans',OpenSans-Light,Segoe Ui,Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1c1c1c;
}

header {
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative; /* Position for the accent stripes */
}
header, nav, main, footer {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    
}
main{
    background: linear-gradient(to bottom, #f1f1f1, #dfdfdf); /* Gradient from white to light grey */
}
header, footer {
    color: white;
    background-color: #002336;
}
.header-content {
    flex-grow: 1;
    margin-left: 20px;
    margin-right: 20px;
    
}
.accent-stripes-left, .accent-stripes-right {
    display: flex; /* Flex container for the accent stripes */
    position: absolute;
    top: 0;
    height: 100%;
    width: 20px;
}
.accent-stripes-left {
    left: 0;
}
.accent-stripes-right {
    right: 0;
}
.accent-stripe {
    width: 10px;
    height: 100%;
}
.accent-stripe {
    width: 10px;
    height: 100%;
}
.accent-stripe1 {
    background-color: #00a3e0; /* First accent color */
}
.accent-stripe2 {
    background-color: #bdc600; /* Second accent color */
}

.container {
    display: flex;
    justify-content: space-between; /* Space between the divs */
}
.box {
    flex:auto;
    margin: 5px; /* Margin between the boxes */
    padding: 5px;
    text-align: Left;
}
.divcontainer {
    display: flex;
    justify-content: space-between; /* Space between the divs */
}
.divbox {
    flex:auto;
    margin: 5px; /* Margin between the boxes */
    padding: 15px;
    text-align: Left;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.divbox1{
    flex: 0 0 60%; /* 60% width */
}
.divbox2{
    flex: 0 0 33%; /* 40% width */
}
.wrapped-image {
    float: left; /* Makes the text wrap around the image */
    margin-right: 15px; /* Adds space between the image and the text */
    height: auto; /* Keeps the aspect ratio */
}
/* Responsive layout */
@media (max-width: 600px) {
    .divcontainer {
        flex-direction: column;
    }
    .wrapped-image {
        
        display: block;
        
    }
    .divbox1, .divbox2 {
        flex: 0 0 100%; /* Full width */
    }

}

.shadow {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.twentypercentcolumn {width: 24%}
.fortypercentcolumn{width:37%}
.thirthythreepercentcolumn{width:31%}
.threequarterscolumn{width:73%}
.sixtypercentcolumn{width:60%}
.ninetypercentcolumn{width:auto}
.halfhalfcolumn{width:48%}
.farrightcolumn{width:24%}
.onehundred{max-width:100%}


nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #01334e;
}
nav ul li {
    position: relative;
}
nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: background-color 0.3s ease;
}
nav ul li a:hover{
    background-color: #00a3e0;
    font-weight: 400;
}
nav ul li a:focus {
    background-color: #bdc600;
    font-weight: 400;
    color:#01334e;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444;
    min-width: 160px;
    z-index: 1;
    top: 100%;
    left: 0;
}
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}
.dropdown-content a:hover, .dropdown-content a:focus {
    background-color: #bdc600;
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
    display: block;
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100;
}
.skip-link:focus {
    top: 0;
}
.menu-toggle {
    display: none;
    
    background: linear-gradient(to left, #00a3e0, #bdc600);
    color: white;
    padding: 0.5rem;
    border: none;
    cursor: pointer;
}
@media (max-width: 600px) {
    .menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    nav ul.expanded {
        display: flex;
    }
    nav ul li {
        width: 100%;
    }
    nav ul li a {
        padding: 1rem;
    }
}
.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    text-align: center;
}

.footer-section {
    flex: 1;
    padding: 10px;
    position: relative;
    
}

.footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #bdc600; /* Accent color */
}

.footer-section:last-child::after {
    display: none;
}
/* Media Query for Small Screens */
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
    }

    .footer-section {
        border-bottom: 1px solid #bdc600;
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section::after {
        display: none;
    }
}

/* Default link style */
a {
    color: #007BFF; /* Blue color for links */
    text-decoration: none; /* No underline */
    font-weight: normal;
    transition: color 0.3s, text-decoration 0.3s, font-weight 0.3s;
}

/* Hover state */
a:hover, a:focus {
    color: #0056b3; /* Darker blue */
    text-decoration:underline /* Underline on hover */
    
}



/* Active state */
a:active {
    color: #004085; /* Even darker blue when active */
}

/* Example of a link with a different style in a specific section */
.special-section a {
    color: #28a745; /* Green color for links */
}

.special-section a:hover, .special-section a:focus {
    color: #218838; /* Darker green */
    text-decoration: underline;
    font-weight: bold;
}

/* Default image style */
img {
    transition: opacity 0.3s; /* Smooth transition */
}

/* Hover state */
img:hover {
    opacity: 0.5; /* Reduce opacity to 50% */
}

