﻿body {
    font-family: poppins, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black !important;
    width: calc(100vw - 1rem);
    color: white;
    width: 100vw;
    overflow-x: hidden;
}

.main-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.feature-image {
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

    .feature-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
    }

.feature-description {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
}

.content {
    padding: 2rem 0;
    color: white;
}

.content-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: white;
}


.news-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
    user-select: none;
}

.newletters-section {
    color: white;
    padding: 60px 20px;
}

.news-card img {
    border-radius: 10px;
    width: 100%;
/*    height: 100%;*/
    object-fit: cover;
}

.news-card {
    border: 1px solid #00ffff20;
    border-radius: 12px;
    padding: 15px;
    background-color: #121212;
    transition: all 0.3s ease;
}

    .news-card:hover {
        border-color: #00ffff;
        transform: translateY(-5px);
    }

.newsletters-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-read {
    background: linear-gradient(92.51deg, #03A6BB 0.48%, #1B4041 99.77%);
    border: none;
    color: white;
    border: none;
    transition: 0.3s;
    padding: 10px 25px;
    border-radius: 6px;
}

    .btn-read:hover {
        background-color: #00ffff;
        color: #000;
    }

.meta span {
    margin-right: 15px;
    color: #aaa;
}

.meta img {
    color: #00ffff;
    margin-right: 5px;
}

.meta-box {
    background: rgba(26, 26, 26, 1);
    padding: 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.grey-text {
    color: #aaa;
}

.newsletters-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .newsletters-card-footer .meta img {
        width: 16px;
        height: 16px;
    }

    .newsletters-card-footer .meta span {
        font-size: 0.9rem;
    }

    .newsletters-card-footer .btn-read {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

#news-dots {
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #bbb;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .dot.active {
        background: linear-gradient(92.51deg, #03A6BB 0.48%, #1B4041 99.77%);
        transform: scale(1.3);
    }

.news-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
    user-select: none;
}

.news-cards {
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
}

    .news-cards::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }


@media (max-width: 992px) {
    .newletters-section {
        padding: 40px 10px;
        width: 100%;
    }
}

.content img,iframe {
    width: 100% !important;
    height: auto !important;
}