.bg-blue{
    background-color: #1C0D42;
}

.text-blue{
    color: #1C0D42;
}

.bg-green{
    background-color: #02C39A;
}

.text-green{
    color: #02C39A;
}

.bg-dark{
    background-color: #0E0A06;
}

.text-dark{
    color:#0E0A06;
}

.bg-grey{
    background-color: #F0F3F5 !important;
}

body{
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.lexend-bold{
    font-weight: 300;
}

p{
    margin-bottom: 15px !important;
}

.button{
    background-color: #02C39A;
    color:#1C0D42;
    padding:8px 12px;
    margin:10px 0;
    font-weight: 300;
    display: inline-block;
    transition: all 0.3s;
}

.button:hover{
    background-color: #1C0D42;
    color:#02C39A;
}

#news-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

#news-slider {
    display: flex;
    gap: 16px;
    transform: translateX(0); /* Default position */
}

.news-item {
    min-width: calc(33.33% - 16px); /* Fit 3 items in the wrapper */
    flex-shrink: 0;
}

.menu{
    transition: all 1s;
}

button {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

.bg-green a{
    font-weight: 300;
    background-image: linear-gradient(#1C0D42, #1C0D42);
    background-repeat: no-repeat;
    background-size: 0% 2px;
    background-position: 0% 100%;
    padding-bottom: 3px;
    transition: background-size .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bg-dark a{
    color:#08c49c;
}

.hover, .bg-dark a, .footer a{
    background-image: linear-gradient(#08c49c, #08c49c);
    background-repeat: no-repeat;
    background-size: 0% 2px;
    background-position: 0% 100%;
    padding-bottom: 3px;
    transition: background-size .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hover:hover, .bg-green a:hover, .bg-dark a:hover, .footer a:hover {
    background-size: 100% 2px;
}


.parallax-container {
    position: relative;
    height: 400px; /* Adjust height as needed */
    width: 100%;
    overflow: hidden;
}

.parallax {
    position: absolute;
    top: 0;
    left: 0;
    height: 200%; /* Make it taller than the container for the effect */
}
em{
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
}

.download{
    display: flex;
    background-color: #F0F3F5;
    padding:10px 30px;
    font-weight: 300;
    margin-bottom: 10px;
    transition: all 0.3s;

}
.download img{
   visibility: hidden;
}
.download:hover{
    background-color: #02C39A;
    color:#1C0D42;
}
.download:hover img{
 visibility: visible;
}

.bg-gradient{
    background: rgb(2,195,154);
    background: linear-gradient(225deg, rgba(2,195,154,1) 10%, rgba(28,13,66,1) 100%);
}

.footer a{
    font-size: 16px;
}

.strapline {
    position: absolute;
    opacity: 0;
    margin-top:250px;
    transition: opacity 1s ease-in-out;
}

.strapline.visible {
    opacity: 1;
}
.left-float{
    float:left;
    width:23.3%;
    margin-right: 10%;
}

.right-float{
    float:left;
    width:66%;
}

.news-nav{

}

/* mobile styles */
@media only screen and (max-width: 600px) {
    .left-float{
        float:none;
        width: 100%;
        padding:20px;
    }

    .right-float{
        float:none;
        width: 100%;
        padding:20px;
    }


    .parallax-container {
        position: relative;
        height: 200px; /* Adjust height as needed */
        width: 100%;
        overflow: hidden;
    }

    .parallax {
        position: absolute;
        top: 0;
        left: 0;
        height: 250%; /* Make it taller than the container for the effect */
    }
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-out {
    opacity: 0;
    transform: translateY(20px); /* Adjust as needed */
}

.image-container {
    width: auto; /* Adjust width if needed */
    height: 150px; /* Maximum height */
    overflow: hidden; /* Hide the overflowing part of the image */
    position: relative; /* Enables positioning child elements */
}

.image-container img {
    position: absolute; /* Allows precise control of positioning */
    top: 50%; /* Move the image down to the center */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Align the center of the image with the container */
    height: auto; /* Keep the aspect ratio */
    width: 100%; /* Make sure the image fills the container's width */
    max-height: none; /* Ensure height isn't restricted by default CSS */
}

table{
    width:100%;
    padding:3px;
    border: 2px solid #666;
    margin-bottom: 20px;
    margin-top: 20px;
}

table td{
    padding:3px;
    border: 2px solid #666;
}
