@import url(https://fonts.googleapis.com/css?family=Montserrat);
@import url(https://fonts.googleapis.com/css?family=Lato:700,300);

/* ==========================================================================
   Gobal Styles
   ========================================================================== */
/* ==========================================================================
   Google Font Loader
   ========================================================================== */
/* ==========================================================================
   Common Styles
   ========================================================================== */
body,
html {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    overflow-x: hidden;
    background-color: #fbfff9;
    /* fixing the overflow duting animation */

    /* background:url(../images/home-bg.png) fixed center;*/
    /*background-size: cover;*/
    overflow-y: scroll;

    height: 100%;
    width: 100%;
    margin-top: 0;
    padding: 0;

}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.mySlides {
    display: none;
}

.button-slide {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.button-slide-color {
    background-color: black;
}

/* Black */

ul {
    list-style-image: url('/assets/images/2025-images/small-flag.png');
    /* Always provide a fallback just in case the image fails to load */
    list-style-type: disc;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

.masthead {
    background-size: cover;
    min-height: 40vh;
    min-width: 100vw;
    position: relative;
    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
    background-position: center;
}

.color-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
}

.d-flex {
    display: flex !important;
}


.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.justify-content-left {
    justify-content: left !important;
}

.align-items-center {
    align-items: center !important;
}


.header {
    /*height: 5%;*/

    /* background: none; */
    z-index: 5;
    /*background: url(../images/2025-images/header-bg.png) fixed center;*/
    background-color: rgba(0, 0, 0, 0.9);

    margin-top: 0;
    padding: 0;
    position: sticky;
    top: 0;
    width: 100%;

}

.header-text-nav {
    width: 100%;
    padding: 0;
    z-index: 1;
    opacity: 200%;
    margin: 0;
    padding: 0;
}

.footer {
    height: 200px;
    width: 100%;
    /* background: none; */
    z-index: 10;
    background: url(../images/2025-images/footer-bg.png) fixed;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    /*background-color: rgb(66, 66, 66, 0.7);*/

    margin: 0;
    padding: 0;
}

.box {
    width: 100%;
    height: auto;
    background-color: rgb(66, 66, 66, 0.6);
}

.main-nav {
    height: 35%;
    text-align: start;
    z-index: 1;
}


.img-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    align-items: center;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Lato', sans-serif;

}

h1 {
    font-size: 6em;
}

h2 {
    color: white;
    font-size: 3em;
}

h3 {
    font-size: 4em;
    line-height: .8em;
    color: rgb(29, 24, 2);
}

h4 {
    font-size: 2em;
    color: rgb(29, 24, 2);
}

h5 {
    font-size: 5em;
    line-height: .8em;
    color: #16bf22;
}


p {
    font-size: 2em;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 24px;
    font-weight: 400;
    color: rgb(29, 24, 2);
}



a {
    text-decoration: none;
    color: rgb(29, 24, 2);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #3e2a08;
}

.heading {
    color: green;
}

.text-white {
    color: white;
}

.text-black {
    color: black;
}

/*Stylize the dropdown buttons */

.dropbtn {
    background-color: green;
    color: white;
    padding: 15px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Position container div */

.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown content (hidden by default) */

.dropdown-content {
    display: none;
    /*hides the menu initially*/
    position: absolute;
    /*positions the content over other elements */
    background-color: white;
    min-width: 400px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    /*ensures dropdown appears over other elements */
    padding: 5%;
    left: -50%;
    width: 50%;
    max-width: 100vw;
    /* Ensures it doesn't exceed the viewport width */
    overflow: hidden;
    /* Hides any overflowing content */
    box-sizing: border-box;
    /* Ensures padding/border are included in the max-width calculation */
    /* other styles (position, display, etc.) */
}

.dropdown-content-left {
    display: none;
    /*hides the menu initially*/
    position: absolute;
    /*positions the content over other elements */
    background-color: white;
    min-width: 400px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    /*ensures dropdown appears over other elements */
    padding: 5%;
    left: -50%;
    width: 50%;
}

/*Links inside the dropdowns */

.dropdown-content a {
    color: black;
    padding: 4px 6px;
    text-decoration: none;
    display: block;
}

/*CHange color of drop links on hover */

.dropdown-content a:hover {
    background-color: lightgreen;
}

/*Show the dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/*Change the color of the dropdown button when the dropdown content is shown */

.dropdown:hover .dropbtn {
    background-color: lightgreen;
    color: #3e2a08;
}

.main-container {
    width: 100%;
    height: auto;
    margin-top: 160px;
}

.overlay-text {
    /* Position the text absolutely within the container */
    position: absolute;
    /* Example: Center the text */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* A modern way to perfectly center an element */
    /* Add styling for visibility and appearance */
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    /* Optional: semi-transparent background for readability */
    padding: 10px;
    text-align: center;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    height: 100%;
    align-items: center;
    justify-content: center;

}

.overlay-text-clean {
    /* Position the text absolutely within the container */
    position: absolute;
    /* Example: Center the text */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* A modern way to perfectly center an element */
    /* Add styling for visibility and appearance */
    color: white;

    /* Optional: semi-transparent background for readability */
    padding: 10px;
    text-align: center;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    height: 100%;
    align-items: center;
    justify-content: center;


}


/*
@media only screen and (max-width: 1300px) {
    body {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 24px;
        overflow-x: hidden;
        background-color: black;
        /* fixing the overflow duting animation * /

        background: url(../images/image06.png) fixed center;
        background-size: cover;
        overflow-y: scroll;
        z-index: -3;
        height: 100%;
        width: 100%;

    }
}




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

    body {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 24px;
        overflow-x: hidden;
        background-color: black;
        /* fixing the overflow duting animation * /

        background: url(../images/image06.png) fixed center;
        background-size: cover;
        overflow-y: scroll;
        z-index: -3;
        height: 100%;
        width: 100%;

    }

    .main-nav {

        text-align: center;
        z-index: 1;

        height: 100%;
        top: 0px;
        bottom: 0px;


    }

    img {
        width: 100%;
        height: auto;
    }

    .img-fit {
        width: 350px;
        height: 350px;
    }
}
*/
@media only screen and (max-width: 300px) {

    body {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 24px;
        overflow-x: hidden;
        background-color: white;

        /* background: url(../images/image06.png) fixed center;*/
        background-size: cover;
        overflow-y: scroll;
        z-index: -3;
        height: 100%;
        width: 100%;
        padding: 0%;

        position: relative;
    }

    .header {
        height: 200px;
        width: 100%;
        /* background: none; */
        z-index: 10;
        background: url(../images/2025-images/header-bg.png) fixed center;
        /*background-color: rgb(66, 66, 66, 0.7);*/

        margin: 0;
        padding: 0;
        z-index: 5;
        position: fixed;
    }
}

/*
    .main-nav {

        text-align: center;
        z-index: 1;

        height: 100%;
        top: 0px;
        bottom: 0px;


    }

    img {
        width: 100%;
        height: auto;
    }

    .img-fit {
        object-fit: contain;
    }
}
*/
@media only screen and (max-width: 500px) {

    body {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 24px;
        overflow-x: hidden;
        background-color: white;

        /* background: url(../images/image06.png) fixed center;*/
        background-size: cover;
        overflow-y: scroll;
        z-index: -3;
        height: 100%;
        width: 100%;
        padding: 0%;

        position: relative;
    }

    .header {
        height: auto;
        width: 100%;
        /* background: none; */
        z-index: 10;
        background: url(../images/2025-images/header-bg.png) fixed center;
        /*background-color: rgb(66, 66, 66, 0.7);*/

        margin: 0;
        padding: 0;
        z-index: 5;
        position: fixed;
    }

    .main-container {
        width: 100%;
        height: auto;
        margin-top: 95%;
        padding-left: 2%;
        padding-right: 2%;
    }
}

/*
.main-nav {

    text-align: center;
    z-index: 1;

    height: 100%;
    top: 0px;
    bottom: 0px;


}

img {
    width: 100%;
    height: auto;
}

.img-fit {
    object-fit: contain;
}
}
*/