:root {
    --primary-bg-color: #081441;
    --logo-green: #388e3c;
    --text-color: #ffffff;
    --light-text-color: #c0c0c0;
}

h1 {
    font-size: 32px!important;
}
h2 {
    font-size: 26px!important;
}
p {
    font-size: 18px!important;
    line-height: 1.5!important;
}
.blue-text {
    color: #0037FF!important;
}
.main-header {
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    font-family: GothamBook, sans-serif;
    padding: 10px 0;
}
.header-actions {
    display: flex; 
    
    align-items: center; 
    
    gap: 10px;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.update-times {
    text-align: center;
    margin-bottom: 20px;
}
.menu-toggle,
.update-time {
    display: flex;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-color);
    position: relative;
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-color);
    position: absolute;
    transition: transform 0.3s;
}
.menu-icon::before { top: -8px; }
.menu-icon::after { top: 8px; }

.update-time {
    font-size: 0.8rem;
    color: var(--light-text-color);
    margin-left: 15px;
}

.logo-text {
    background-color: var(--logo-green);
    color: var(--text-color);
    padding-right: 5px;
}
.logo-7 {
    background-color: transparent;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 300;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--text-color);
}

.search-icon {
    width: 20px;
    height: 20px;
}

.sub-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 5px;
    margin-top: 10px;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
  .social-icons {
        display: none;
    }
.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 5px 0;
    transition: color 0.2s;
}

.nav-list a:hover {
    color: var(--light-text-color);
}

   @media (max-width: 748px) {
    .logo img {
        width: 200px;
    }
    .update-time {
        display: none;
    }
   }




:root {
    --footer-bg-white: #ffffff;
    --footer-bg-light-grey: #b8c2d3; 
    --text-dark: #333333;
    --text-grey: #666666;
    --logo-green: #388e3c;
    --footer-width: 1200px;
}

.main-footer {
    font-family: GothamBook, sans-serif;
    color: var(--text-dark);
}

.footer-top-section {
    background-color: var(--footer-bg-white);
    padding: 40px 20px 60px;
    max-width: var(--footer-width);
    margin: 0 auto;
    display: grid;
    grid-template-areas:
        "logo links"
        "social links";
    /* grid-template-columns: 300px 1fr; */
    gap: 20px;
}

.footer-logo {
    font-weight: bold;
    display: flex;
    align-items: center;
}
.logo-text-tg {
    background-color: var(--logo-green);
    color: white;
    padding: 0 5px 0 10px;
    line-height: 1;
}
.logo-text-la7 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
}

.footer-grid {
    grid-area: links;
    display: flex;
    justify-content: space-around; 
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
    width: 250px; 
}

.footer-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px; 
    text-transform: uppercase;
    white-space: nowrap;
}

.link-divider {
    border: none;
    border-top: 1px solid #eeeeee; 
    margin: 3px 0 15px 0;
    width: 100%;
}

.social-icons {
    gap: 15px;
    color: var(--text-dark);
}
.social-icons a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-custom-section {
     background-color: var(--footer-bg-light-grey);
    color: var(--text-dark);
    line-height: 1.5;
}
.footer-bottom-section {
    background-color: var(--footer-bg-light-grey);
    padding: 20px;
    color: var(--text-dark);
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-copyright-content {
    max-width: var(--footer-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.sia-logo {
    width: 30px;
    height: 30px;
    background-color: #f0f0f0; 
    border: 1px solid var(--text-grey);
    border-radius: 3px;
    margin-right: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    font-size: 0.6rem;
}

.footer-copyright-content p {
    margin: 0;
}
@media (min-width: 768px) {
.update-times {
    display: none;
}
}
@media (max-width: 768px) {
    .footer-top-section {
        grid-template-areas:
            "logo logo"
            "links links";
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }
     .social-icons {
        display: block;
    }
    .footer-grid {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-nav-col {
        margin-right: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .social-icons {
        position: static;
        margin-top: 20px;
        justify-content: flex-start;
    }

    .header-content {
    padding: 0 10px;
}
.mob-l {
    display: none;
}
.sub-nav {
    border-top: none;
}
.nav-list {
    gap: 10px;
}
.nav-list a {
    font-size: 14x;
}
}



.share-info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-text {
    font-size: 1.1rem;
    font-weight: 600; 
    color: #081441;
}

.share-date {
    font-size: 1rem;
    color: #90939a; 
    font-weight: 400; 
}


.shares-info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: left;
    max-width: 1200px;
    margin-bottom: 20px;
    padding: 10px 0;
    font-family: 'GothamBook', sans-serif;
}

.shares-text {
    font-size: 1.1rem;
    font-weight: 600; 
    color: rgb(0, 0, 0); 
}

.shares-date {
    font-size: 1rem;
    color: #90939a; 
    font-weight: 400;
}

.green-block {
    border-right: 12px solid rgb(4, 80, 32);
    padding-left: 10px;
}

.yellow-block {
    border-right: 12px solid #dbdb2f;
    padding-left: 10px;
}

.red-block {
    border-right: 12px solid red;
    padding-left: 10px;
}

.green-custom {
    color: rgb(4, 80, 32);
}

.default-custom {
   color: rgb(0, 0, 0);
}

.def {
    color: rgb(4, 80, 32);
    font-weight: 600;
}






.condividi-button {
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    background-color: #ffffff;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #000000;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s;
}

.condividi-button span {
    color: #006400;
    font-size: 38px;
    font-weight: normal;
    margin-left: 10px;
}

.condividi-button:hover {
    background-color: #f0f0f0;
}