*{
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 12pt;
    font-family: 'Montserrat', sans-serif;
    border-collapse: collapse;
    line-height: 1.5;
    list-style: none;
    text-decoration: none;
}
:root {
    --primary-color: #f6f6f6;
    --text-color: #333;
    --btn-submit: #1560bd;
    --white-color-text: #fff;
    --bg-dark-section: #004e82;
 }
::-webkit-scrollbar {
    width: 1.3rem;
  }
  
  ::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: #151515;
    transition: all 0.5s ease-in-out;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #222224;
  }
  
  ::-webkit-scrollbar-track {
    background: #c6c6c6;
  }
 body{
    background-color: var(--primary-color);
 }
 a:hover, a:focus{
    text-decoration: none;
    color: rgb(255, 26, 26);
 }
 h1,h2,h3,h4,h5,h6, p{
    width: max-content;
 }
 img{
    height: 100%;
    object-fit: cover;
    object-position: center;
 }
 .header-top{
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    background-color: var(--bg-dark-section);
 }
 .responseAll{
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.88);
  }
  .responseAll img{
    width: 80px;
    height: 80px;
  }
  .responseAll p{
    color: #fff;
  }
  
 .container{
    height: 100%;
    margin: auto;
    max-width: 1140px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
 }
 .container section.RS{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
 }
 .container section.RS div{
    height: 25px;
    width: 25px;
 }
 .container section.RS div span{
    color: var(--white-color-text);
    font-size: 14pt;
 }
 .header{
    height: 80px;
    background-color: #f5f5f5;
 }
 .logo-marca{
    width: max-content;
    height: 100%;
    color: var(--text-color);
    font-size: 18pt;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 777;
    padding: 10px;
    gap: 10px;
 }
 .logo-marca div{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
 }
 .logo-marca div h1, .logo-marca div h3{
    margin: 0;
 }
 .menu-bar ul{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin: 0;
 } 
 .menu-bar button{
    display: none;
    padding: 7px;
    margin-right: 8px;
    border: none;
    background-color: transparent;
    font-size: 34pt;
 }
 .menu-bar button span{
    font-size: 26pt;
 }
 .menu-bar ul li{
    list-style: none;
    display: inline-block;
    position: relative;
    padding: 10px 0;
    margin: 0;
    width: max-content;
 }
 .menu-bar ul li:hover{
    background-color: var(--bg-dark-section);
    color: var(--white-color-text);
 }
 .menu-bar ul li a{
    text-decoration: none;
    padding: 10px;
    color: var(--text-color); 
  /* font-size: 14pt; */
 }
 .menu-bar ul li a:hover{
    color: var(--white-color-text); 
 }
 .menu-bar ul li::after{
    content: '';
    height: 3px;
    width: 0;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
 }
 .menu-bar ul li :hover::after{
    width: 100%;
 }
 
 .line-div{
    background-color: var(--btn-submit);
    height: 3px;
 }

 .carousel .container{
    max-width: 100%;
    display: flex;
    flex-direction: column;
 }
 .carousel-inner .item{
    max-height: 400px;
 }
 .destaque{
    display: flex;
    justify-content: flex-start;
    align-items: center;
 }
 .destaque h3{
    border-radius: 7px;
    background-color: var(--bg-dark-section);
    color: var(--white-color-text);
    padding: 8px;
    width: 280px;
 }
 .destaque p{
    padding: 10px;
    margin: 0;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
}
.ultimas-noticias{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    margin-top: 20px;
}
/* .ultimas-noticias a:hover{
} */
.last-news-4{
    max-width: 320px;
}

.caption{
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.341);
    padding: 10px;
    color: var(--white-color-text);
    font-weight: 900;
    border-radius: 10px;
 
}
.img-last, .img-last img{
    position: relative;
    border-radius: 10px;
}
.img-last{
    height: 400px;
}
.caption h5{
    padding: 8px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color:  var(--text-color);
    margin-bottom: 0;
}
.caption h3{
    width: 100%;
    margin-top: 0;
}
.last-news-4{
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.news-list{
    height: 90px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    transition: 0.5s;
    color: var(--text-color);
}
.news-list img{
    width: 90px;
    border-radius: 8px;
}
.news-list:hover {
    transform: translateY(-9px);
}
.text-news span{
    padding: 3px;
    background-color: var(--bg-dark-section);
    color: var(--white-color-text);
    border-radius: 5px;
}
.news-list-categ{
    padding-top: 15px;
    flex-direction: column;
}
.news-categ{
    display: flex;
    flex-direction: row;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    overflow: auto;
}
.news-categ .news-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: max-content;
}
.news-categ a{
    width: 362px;
}
.news-categ .news-list img{
    width: 100%;
    height: 230px;
}
.text-news h4{
    font-weight: 700;
    color: #000;
    width: 100%;
    margin-top: 0;
}

.text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 1.2;     /* fallback */
    /*max-height: 32px;      /* fallback */
    -webkit-line-clamp: 1; /* number of lines to show */
    -webkit-box-orient: vertical;
 }
.long-text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 1.2;     /* fallback */
    /*max-height: 32px;      /* fallback */
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
 }
.news-img-details{
    height: max-content;
}
.text-news-details{
    width: 100%;
}
.text-news-details p, .text-news-details h3{
    width: 100%;
    text-align: justify;
}
.text-news-details h3{
   font-weight: 700;
}
.last-news-4 p{
    margin-bottom: 0;
}
.last-news-4 button{
    border: none;
    border-radius: 7px;
    padding: 10px;
    text-align: left;
}
.modal-group{
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #ffffff52;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
    justify-content: center;
    align-items: center;
}
.popup-wrapper{
    display: none;
}
.modal-group .modal-coments{
    max-width: 480px;
    margin: auto;
    background-color: var(--primary-color);
    padding: 15px;
    border-radius: 10px;
}
.modal-group .modal-coments form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.input-group{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal-group .modal-coments form input, .modal-group .modal-coments form textarea{
    border: 1px #ccc solid;
    border-radius: 7px;
    outline: var(--btn-submit);
    padding: 10px;
    background-color: #fff;
}
.btn{
    padding: 10px;
    border-radius: 8px;
    background-color: #ccc;
}
.btn-submit{
    padding: 10px;
    border-radius: 8px;
    background-color: var(--btn-submit);
    color: #fff;
    font-weight: 999;
}
.btn-submit:hover{
    background-color: #002f68;
    color: #fff;
}




/* .run{
    width: 100%;
    animation: run 6s linear infinite;
} */
.run-group{
    width: 100%;
    border-radius: 10px;
}
/* @keyframes run{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
} */

/* ---------------------------------------roda pe---------------------------  */
footer{
    width: 100%;
    position: relative;
    bottom: 0;
    background: #e6e6e6;
    color: #333;
    padding-top: 20px;
    font-size: 13px;
    line-height: 20px;
}
.row{
    /* width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between; */
}
.regist-noticias{
    max-width: 900px;
    margin: auto;
    padding: 20px;
}
.regist-noticias button{
    background-color: var(--btn-submit);
    padding: 12px;
    color: var(--white-color-text);
    border-radius: 15px;
}
.regist-noticias h1{
    font-size: 20px;
}
.regist-noticias form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.regist-noticias form .row{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.regist-noticias form .row .input-group{
    gap: 5px;
}
.regist-noticias form .row .input-group input,
.regist-noticias form .row .input-group select{
    border: 1px #ccc solid;
    padding: 10px;
    border-radius: 8px;
    color: #333;
}
.edit-cover{
    position: absolute;
    left: 0;
}
.col{
    flex-basis: 25%;
    padding: 10px;

}
.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}
.col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;

}
.col2{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}
ul li{
    list-style: none;
    margin-bottom:12px ;
}
ul li a{
    text-decoration: none;
    color: #fff;
}
.logo-fot{
    width: 80px;
    margin-bottom: 30px;
}
form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}
form.far{
    font-size: 18px;
    margin-right: 10px;
}
form input{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}
form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
form button.fas{
    font-size: 10px;
    color: #ccc;
}
.social-icons .fab{
    width: 40px;
    height: 40px;
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}
hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.copyright{
    text-align: center;
}
.underline{
    width: 100%;
    height: 5px;
    background-color: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.edit-modal-group{
    background: #f5f5f5;
    display: none;
    flex-direction: column;
}
.cover-exist, .form-group-cover{
    max-width: 768px;
    max-width: 500px;
    padding: 20px;
}
.form-group-cover{
    display: flex;
    gap: 10px;
}
.cancel-btn{
    width: max-content;
}
.cancel-btn button, #submitCover{
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: rgb(255, 26, 26);
    color: #fff;
}
#submitCover{
    width: max-content;
    background-color: var(--btn-submit);
}
.coment-list{
    border-bottom: #ccc solid 1px;
    margin-bottom: 10px;
}
.container::before, .container::after{
    content: none;
}
#response {
    display: none;
    background-color: #a5ff99;
    color: #097f00;
    padding: 10px;
    border-radius: 10px;
}

#error {
    display: none;
    background-color: #ff8989;
    color: #b00000;
    padding: 10px;
    border-radius: 10px;
}
.lumukutv{
    margin: auto;
    width: 768px !important;
    display: flex;
    flex-direction: column;
}
.tv-online{
    width: 100%;
    height: 480px;
    margin: auto;
    padding: 10px;
    /* background-color: var(--text-color); */
}
.tv-online iframe{
    width:768px;
    height:432px;
}
@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    .menu-bar ul{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 110px;
        right: 0;
        width: 280px;
        background-color: var(--btn-submit);
        z-index: 99999;
    }
    .menu-bar button{
        display: block;
        width: max-content;
    }
    .menu-bar{
        width: max-content;
    }
    .menu-bar ul li a{
        color: var(--white-color-text);
    }
    .lumukutv{
        width: 640px !important;
    }
    .tv-online {
        width: max-content;
    }
    .tv-online iframe{
        width:640px;
        height:350px;
    }
}
@media screen and (max-width: 768px) {
    .logo-marca div h1, .logo-marca div h3 {
       display: none;
    }
    .content-all{
        padding: 0 20px;
    }
    .ultimas-noticias{
        flex-direction: column;
    }
    .last-news-4{
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }
    .news-categ .news-list img{
        height: max-content;
    }
    .lumukutv{
        width: 100% !important;
    }
    .tv-online iframe{
        width:480px;
        height:350px;
    }
}
@media screen and (max-width: 600px) {
    .content-all{
        padding: 5px;
    }
    .tv-online iframe{
        width:320px;
        height:225px;
    }
}
@media screen and (max-width: 480px) {
    .img-last{
        height: max-content;
    }
    .destaque h3{
        display: none;
    }
    .ultimas-noticias h3{
        font-size: 14px;
    }
}