@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');

a {
    text-decoration: none !important;
}


.cm-heading h1 {
    font-size: 28px;
    color: #E36955;
}
.sep_div1 {
    background-color: #00a551;
    height: 4px;
    width: 12%;
    margin: 0.6% auto;
}

*:not(fa):not(i) {
    font-family: 'Roboto', sans-serif;
}

.btn-close {
    box-shadow: none;
    border: none;
    outline: none;
}

.modal-body .icons {
    margin: 15px 0px 20px 0px;
}

.modal-body .icons a {
    text-decoration: none;
    border: 1px solid transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.modal-body .icons a:nth-child(1) {
    color: #1877F2;
    border-color: #B7D4FB;
}

.modal-body .icons a:nth-child(1):hover {
    background-color: #1877F2;
    color: #fff;
}

.modal-body .icons a:nth-child(2) {
    color: #46C1F6;
    border-color: #b6e7fc;
}

.modal-body .icons a:nth-child(2):hover {
    background-color: #46C1F6;
    color: #fff;
}

.modal-body .icons a:nth-child(3) {
    color: #e1306c;
    border-color: #f5bccf;
}

.modal-body .icons a:nth-child(3):hover {
    background-color: #e1306c;
    color: #fff;
}

.modal-body .icons a:nth-child(4) {
    color: #25d366;
    border-color: #bef4d2;
}

.modal-body .icons a:nth-child(4):hover {
    background-color: #25d366;
    color: #fff;
}


.modal-body .icons a:nth-child(5) {
    color: #0088cc;
    border-color: #b3e6ff;
}

.modal-body .icons a:nth-child(5):hover {
    background-color: #0088cc;
    color: #fff;
}

.modal-body .icons a:hover {
    border-color: transparent;
}

.modal-body .icons a span {
    transition: all 0.09s ease-in-out;
}

.modal-body .icons a:hover span {
    transform: scaleX(1.1);
}

.modal-body .shareField {
    margin: 15px 0px -5px 0px;
    height: 45px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    padding: 0 5px;
}

.modal-body .shareField.active {
    border-color: #7d2ae8;
}

.shareField span {
    width: 50px;
    font-size: 1.1rem;
}

.shareField.active span {
    color: #7d2ae8;
}

.shareField input {
    border: none;
    outline: none;
    font-size: 0.89rem;
    width: 100%;
    height: 100%;
}

.shareField button {
    padding: 5px 16px;
    color: #fff;
    background: #7d2ae8;
    border: 2px solid transparent;
    border-radius: 5px;
    font-weight: 500;
}

@media (max-width: 330px) {
    .modal-body .icons a {
        margin-right: 15px;
        width: 35px;
        height: 35px;
    }
}

@media only screen and (max-width: 600px) {
    .news {
        padding: 0 10px;
    }

    .news-single {
        padding: 5px 0;
    }

    .navigation_ticker {
        margin-top: 20px;
        flex-direction: row-reverse;
        /* Reverse direction for mobile view */
    }

    .fa-chevron-left,
    .fa-chevron-right {
        font-size: 20px;
    }
}

@media (max-width: 550px) {
    .carousel-item img {
        height: 230px !important;
    }
    
    #sidebar{
        top: 5%;
        left: -130px;
    }
    
    #mySideBarMenu a{
        width: 140px;
    }
}

@media (max-width: 768px) {
    .news-container {
        font-size: 14px;
        height: 65px;
        /* Adjust font size for smaller screens */
    }

    .navigation_ticker {
        display: none;
    }
}

.em-box:hover:hover a {
    color: white !important;
}

.new_initiatives_title {
    font-size: 14px;
    margin: 20px 0;
}

.carousel-item img {
    max-height: 480px;
}

.news-container {
    font-size: 16px;
    /* background: #052963; */
    background: #0f7b53;

    color: #73c2fb;
    padding: 10px 32px;
    display: flex;
    box-shadow: 0 4px 40px -8px rgb(0, 51, 98);
    overflow: hidden;
    width: 100%;
    /* Set container width to 100% */
}

.news-container .news-heading {
    font-weight: bold;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #fff;
}

.news-container .news {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.news-container .news-single {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-8px);
    transition: all 400ms ease;
    pointer-events: none;
}

.news-container .news-single.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


.navigation_ticker {
    display: flex;
    gap: 20px;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

.page-footer {
    position: fixed;
    right: 0;
    bottom: 50px;
    display: flex;
    align-items: center;
    padding: 5px;
    z-index: 1;
}

.page-footer a {
    display: flex;
    margin-left: 4px;
}

footer a {
    text-decoration: none;
    color: #fff;
}

.icon-bar {
    position: fixed;
    float: right;
    right: -120px;
    z-index: 9999;
    top: 50%;
    transform: rotate(90deg);
}

.bg-light {
    background-color: #f8f9fa !important;
}

.foo-top {
    padding: 40px 0;
}

.foo-btm {
    background-color: #323232;
    border-top: 3px solid #f1c153;
}

.widget-navigation.ft1 {
    border-radius: 20px;
}

.foo-top a {
    color: #f0f0f0;
}

.addres {
    margin-top: 15px;
    padding: 0px;
}

.addres h5 {
    color: #3a3186;
    font-size: 15px;
    font-weight: 700;
}

.addrsb {
    color: #151515 !important;
    font-weight: 700;
}

.addres li {
    list-style: none;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 400;
    color: #151515;
}

.widget i {
    color: #3a3186;
}

.widget .widget-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 35px;
}

.footer .widget .widget-title {
    margin-bottom: 25px;
    margin-top: 25px;
}

.footer .foo-top .widget-title {
    color: #151515;
    font-weight: 700;
    margin-top: 25px;
}

.widget-navigation ul {
    list-style: none;
}

.widget-navigation li a {
    color: #151515;
    display: block;
    font-weight: 400;
    margin-bottom: 5px;
    font-size: 14px;
}

.footer .copyrightText {
    color: #f0f0f0;
    font-size: 14px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 0;
    padding: 15px 0;
}

.social ul {
    padding: 0px;
    margin: 0px;
}

.social ul li {
    list-style: none;
    display: inline-block;
    margin-left: 6px;
    width: 40px;
    height: 40px;
    line-height: 43px;
    background-color: #666;
    border-radius: 6px;
}

.social ul li:first-child {
    background-color: #3b5998;
}

.social ul li:nth-child(2) {
    background-color: #00acee;
}

.social ul li:nth-child(3) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social ul li a {
    font-size: 20px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
