/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwXjeu.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwaPGR_p.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "bootstrap-icons";
    src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
        url("../fonts/bootstrap-icons.woff") format("woff");
    font-display: swap;
}

[class^="bi-"]::before,
[class*=" bi-"]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bi-facebook::before {
    content: "\f344";
    color: #3b5998;
}

.bi-twitter::before {
    content: "\f5ef";
    color: #0d6efd;
}

.bi-youtube::before {
    content: "\f62b";
    color: #dc3545;
}

.bg-orange {
    background-color: #058c4f !important;
}

.bg-blue {
    background-color: #517dae !important;
}
.bg-dark-red{
    background-color:#058c4f;
}

.text-orange {
    color: #058c4f !important;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    margin: 0;
    background-color: rgb(236, 240, 244);
}

h1 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
}

h2 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

h4,
h5,
h6 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}


/***
=================================================
Header
=================================================
***/
/* Style for the unordered list */
ul.social-icons {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Style for list items */
ul.social-icons li {
    display: inline-block;
    margin-right: 10px;
    /* Add spacing between list items if needed */
}

a {
    text-decoration: none;
    color: #000;
}

/* body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
} */

main {
    flex-grow: 1;
}

footer {
    flex-shrink: 0;
}

.ticker-container {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.ticker-text {
    color: #fff;
    font-weight: bold;
    display: inline-block;
    animation: ticker 20s linear infinite;
    /* Adjust the duration as needed */
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
        /* Start off screen from the right */
    }

    100% {
        transform: translateX(-100%);
        /* Move to the left to reveal the text */
    }
}

.categories {
    border: none;

}

.categories ul {
    list-style: none;

}

.categories li {
    padding: 10px 0;
    border-bottom: 1px solid #058c4f;
}

.categories ul a li:hover {
    color: #058c4f !important;
}

footer {
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #fdfdfd 60%, #ededed 96%, #dedede 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(60%, #fdfdfd), color-stop(96%, #ededed), color-stop(100%, #dedede));
    background: -webkit-linear-gradient(top, #ffffff 0%, #fdfdfd 60%, #ededed 96%, #dedede 100%);
    background: -o-linear-gradient(top, #ffffff 0%, #fdfdfd 60%, #ededed 96%, #dedede 100%);
    background: -ms-linear-gradient(top, #ffffff 0%, #fdfdfd 60%, #ededed 96%, #dedede 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #fdfdfd 60%, #ededed 96%, #dedede 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dedede', GradientType=0);
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}


/***
=================================================
Responsive
=================================================
***/

@media screen and (min-width: 768px) {

    h1 {
        font-size: 36px;
        line-height: 40px;
    }

    h2 {
        font-size: 26px;
        line-height: 32px;
    }

    h3 {
        font-size: 24px;
        line-height: 30px;
    }

    h4 {
        font-size: 22px;
        line-height: 28px;
    }

}

@media screen and (min-width: 992px) {

    h1 {
        font-size: 40px;
        line-height: 46px;
    }

    h2 {
        font-size: 32px;
        line-height: 38px;
    }

    h3 {
        font-size: 28px;
        line-height: 34px;
    }
});
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}


/***
=================================================
Responsive
=================================================
***/

@media screen and (min-width: 768px) {

    h1 {
        font-size: 36px;
        line-height: 40px;
    }

    h2 {
        font-size: 26px;
        line-height: 32px;
    }

    h3 {
        font-size: 24px;
        line-height: 30px;
    }

    h4 {
        font-size: 22px;
        line-height: 28px;
    }

}

@media screen and (min-width: 992px) {

    h1 {
        font-size: 40px;
        line-height: 46px;
    }

    h2 {
        font-size: 32px;
        line-height: 38px;
    }

    h3 {
        font-size: 28px;
        line-height: 34px;
    }
}
