* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

.banner {
    position: relative;
    text-align: center;
    color: white;
}

.banner img {
    width: 100%;
    height: 168%;
}

.hero__demo {
    font-size: 30px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 175px;
    padding-inline: 10px;
    transform: skew(-5deg);
    color: white;
}

.hero__demo span {
    display: block;
}

.banner .banner-text {
    position: absolute;
    top: 69%;
    left: 24%;
    transform: translate(-50%, -50%);
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding: 20px;
    border-radius: 10px;
}


@media screen and (max-width: 768px) {
    .banner .banner-text {
        font-size: 14px;
    }
}


@media screen and (min-width: 769px) {
    .banner {
        height: 300px;
    }
}


/* Image With Content */
#image-with-content-section {
    margin-top: 203px;
}

.about-image-section {
    border-radius: 25px;
    margin-left: 75px;
}

.bg-gray-200 {
    background-color: transparent;
}

#about-content {
    color: #1ba7a7;
}

.pargraph {
    text-align: justify;
    margin-top: 35px;
    color: black;
    font-weight: 400;
}

.pargraph-one {
    text-align: justify;
    margin-top: 35px;
    color: black;
    font-weight: 400;
}

button {
    margin-top: 23px;
    width: 138px;
}

/* News Section Css */
.news-container {
    position: absolute;
    top: 194%;
    left: 0;
    right: 0;
    font-family: "Roboto", sans-serif;
    box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.3);
    width: 816px;
}

.news-container .title {
    position: absolute;
    background: #1ba7a7;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: white;
    font-weight: bold;
    z-index: 200;
    margin-top: -49px;
}

.news-container ul {
    display: flex;
    list-style: none;
    margin: 0;
    animation: scroll 25s infinite linear;
}

.news-container ul li {
    white-space: nowrap;
    padding: 10px 24px;
    color: #494949;
    position: relative;
}

.news-container ul li::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #b8b8b8;
    position: absolute;
    top: 0;
    right: 0;
}

.news-container ul li:last-child::after {
    display: none;
}

@keyframes scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-1083px);

    }
}

@media screen and (max-width: 740px) {

    html,
    body {
        overflow-x: hidden;
    }

    .news-container {
        width: 150px !important;
        margin-top: -63px;
    }

    .bg-gray-200 {
        background-color: transparent;
        margin-top: -216px;
        text-align: justify;
    }

    .about-image-section {
        margin-top: 142px;
        margin-left: 2px;
    }

    .hero__demo span {
        display: block;
        margin-top: -59px;
        margin-left: -128px;
        font-size: 15px;
    }
}



@media screen and (min-width: 375px) {
    .news-container {
        margin-top: 61px;
    }
}

@media screen and (max-width: 414px) {
    .news-container {
        margin-top: -376px;
    }
}

@media screen and (max-width: 390px) {
    .news-container {
        margin-top: -270px;
    }
}

@media screen and (max-width: 430px) {
    .news-container {
        margin-top: -416px;
    }
}

@media screen and (max-width: 360px) {
    .news-container {
        margin-top: -67px;
    }
}