.cover-banner {
    border: 1px solid white;
    padding: 45px 35px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.6);
}

.banner-content {
    background: url(../images/bg-data-2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 600px;
}

.banner-title-item p {
    color: gold;
}

.section-data-report {
    width: 100%;
    height: 150px;
    border: 2px solid lightgrey;
    margin-top: -75px;
    box-shadow: 10px 7px 10px grey;
    border-radius: 40px;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px;
    font-style: italic;
    background: url(../images/rectangle-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.number-report {
    color: crimson;
    font-size: 30px;
}

.custom-btn-home-search .input-keyword {
    height: 40px !important;
    font-size: 14px;
    border: 2px solid lightblue;
}

.custom-btn-home-search .button-search {
    width: 55px;
    background-color: #4f6281;
}

.carousel-field {
    position: absolute;
    bottom: -25px;
    left: 7px;
    color: #0048B2;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}

.carousel-visitor {
    position: absolute;
    bottom: -25px;
    right: 7px;
    font-size: 14px;
}

.carousel-title {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 16px;
}

.bg-slide {
    background-color: skyblue;
    box-shadow: 10px 7px 10px grey;
    border-radius: 5px;
}

.newest-data {
    background: skyblue;
    padding: 15px 15px 20px 15px;
    box-shadow: 10px 7px 10px grey;
    border-radius: 5px;
}

.sms-block label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sms-block {
    width: 100%;
    border: 1px solid skyblue;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 10px 7px 10px grey;
    background-color: rgb(226, 239, 243);
    margin-top: 12px;
    cursor: pointer;
}

.sms-block .arrow-expand {
    position: absolute;
    top: 65px;
    right: 5px;
    font-size: 26px;
    color: silver;
    background-color: rgb(226, 239, 243);
    border-radius: 50px;
}

.sms-field {
    font-weight: bold;
    text-transform: uppercase;
    color: #2773c2;
}

.head-title {
    color: crimson;
    font-weight: bold;
}

.footer-container {
    background-image: url('../images/flat-earth.png');
    background-color: rgb(226, 239, 243);
}

.footer-container {
    padding-top: 15px !important;
}

.heading-footer,
.adress-content,
.adress-content,
.copyright {
    text-align: left;
}

.header-content {
    background-image: url('../images/background-simple.jpg');
    background-position: center;
    border-bottom: 1px solid lightgrey;
}

.nav-item>a {
    color: white !important;
}

.nav-item.active-item a {
    color: crimson !important;
}

.header-profile,
.brand-name,
.unit-name {
    color: rgb(235, 235, 235);
}

.views-high {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.list-data_news {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    margin-top: 8px;
}
/* #footer {
    position: absolute;
    bottom: 0;
    width: 100%;
} */
.margin-item {
    margin-bottom: 15px;
}

/* css earth animation */
#earth {
    position: absolute;
    top: 0px;
    left: -135px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: transparent url("../images/flat-earth.png");
    background-size: cover;
    box-shadow: inset 0px -20px 50px 10px #00ffff80,
        0px 0px 30px 6px #00ffff70;
    transform-style: preserve-3d;
    transform: rotate(20deg);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 530px 0;
    }
}