@font-face {
    font-family: 'Nasalization';
    src: url('nasalization.ttf') format('truetype'); /* Path to your font file */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'CMU';
    src: url('cmunbi.woff') format('webopenfont'); /* Path to your font file */
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'Nasalization', sans-serif;
    font-size: 62.5%;
}

html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-size: 62.5%;
}

/* Navbar Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative; /* Ensure nav stays above overlay */
    position: absolute;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001; /* Higher than overlay */
}

nav img {
    height: 40px;
}

nav p {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    margin: 0;
    color: red;
}

    /* Define the pulsating animation */
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.3);
        }
        100% {
            transform: scale(1);
        }
    }

    /* Apply the animation to the logo */
    .logo {
        animation: pulse 2s infinite; /* 2s duration, infinite loop */
    }

/* Overlay Styles */

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}

#overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Optional: Add a dark overlay on top of the video */
    z-index: -1;
}

#videoBackground {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0; /* Place the video behind the overlay content */
}

#overlayContent {
    text-align: center;
    z-index: 1; /* Ensure content is above the video */
}

#overlayContent li {
    list-style: none;
}

#overlayContent a {
    display: block;
    color: white;
    font-size: 24px;
    margin: 15px 0;
    text-decoration: none;
}

#overlayContent a:hover {
    color: red;
}

/* Animation for Overlay */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}


/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire hero area */
    z-index: -1; /* Place the video behind other content */
}

/* Dark Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1; /* Place the overlay above the video */
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem; /* Default font size for larger screens */
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem; /* Default font size for larger screens */
    margin-bottom: 2rem;
}

.hero-content button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: transparent;
    color: white;
    border: 1px solid red;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-content button:hover {
    background-color: red;
    color: white;
}

/* Scroll Text and Arrow */
.scroll-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    text-align: center;
    z-index: 2; /* Ensure it's above the overlay */
}

.arrow-down {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin: 10px auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Speaker Icon */
.speaker-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2; /* Ensure it's above the overlay */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    /* Adjust styles for tablets and smaller screens */
    .hero-content h1 {
        font-size: 2rem; /* Smaller heading for tablets */
    }

    .hero-content p {
        font-size: 1rem; /* Smaller text for tablets */
    }

    .hero-content button {
        padding: 8px 16px; /* Smaller button for tablets */
        font-size: 0.9rem;
    }

    .scroll-text {
        font-size: 0.9rem; /* Smaller scroll text for tablets */
    }

    .speaker-icon {
        font-size: 1.2rem; /* Smaller speaker icon for tablets */
    }
}

@media (max-width: 480px) {
    /* Adjust styles for mobile devices */
    .hero-content h1 {
        font-size: 1.5rem; /* Smaller heading for mobile */
    }

    .hero-content p {
        font-size: 0.9rem; /* Smaller text for mobile */
    }

    .hero-content button {
        padding: 6px 12px; /* Smaller button for mobile */
        font-size: 0.8rem;
    }

    .scroll-text {
        font-size: 0.8rem; /* Smaller scroll text for mobile */
    }

    .speaker-icon {
        font-size: 1rem; /* Smaller speaker icon for mobile */
    }
}

/* Content Section */
.content {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px; /* Space between the two sections */
    padding: 3rem;
    max-width: 1200px; /* Limit width for larger screens */
    margin: 20px auto; /* Center the content */
}

/* Content Heading */
.contentheading {
    flex: 1; /* Take up 1 part of the available space */
    text-align: left;
    /* margin-left: 40px; */
}

.contentheading h2 {
    font-size: 2.5rem; /* Default font size for larger screens */
    margin-bottom: 1rem;
    color: red;
}

.contentheading button {
    background: transparent;
    color: black;
    width: 220px;
    height: 50px;
    border: 1px solid red;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 110px;
    margin-left: -5rem;
    font-family: "CMU", monospace;

}

.contentheading button:hover {
    background-color: red;
    color: white;
}

/* Writeup Section */
.writeup {
    flex: 2; /* Take up 2 parts of the available space */
    max-width: 800px; /* Limit width for larger screens */
}

.writeup p {
    font-size: 1.1rem; /* Default font size for larger screens */
    line-height: 1.5;
    margin-bottom: 1rem;
    margin-left: 25px;
    font-family: 'CMU', monospace;
}

.writeup button {
    background: transparent;
    color: black;
    width: 220px;
    height: 50px;
    border: 1px solid red;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 60px;
    margin-left: 25px;
    font-family: "CMU", monospace;

}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    /* Adjust styles for tablets and smaller screens */
    .content {
        padding: 2rem; /* Reduce padding for smaller screens */
    }

    .contentheading h2 {
        font-size: 2rem; /* Smaller heading for tablets */
    }

    .writeup p {
        font-size: 1rem; /* Smaller text for tablets */
    }
}

@media (max-width: 768px) {
    /* Stack content vertically on mobile devices */
    .content {
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center content horizontally */
        text-align: center; /* Center text */
        padding: 1.5rem; /* Reduce padding for mobile */
    }

    .contentheading {
        margin-bottom: 1.5rem; /* Add space between heading and writeup */
    }

    .contentheading h2 {
        font-size: 1.8rem; /* Smaller heading for mobile */
    }

    .writeup {
        max-width: 100%; /* Full width for mobile */
    }

    .writeup p {
        font-size: 0.9rem; /* Smaller text for mobile */
    }
}

@media (max-width: 480px) {
    /* Adjust styles for very small screens */
    .contentheading h2 {
        font-size: 1.5rem; /* Smaller heading for very small screens */
    }

    .contentheading button {
        padding: 8px 16px; /* Smaller button for very small screens */
        font-size: 0.9rem;
    }

    .writeup p {
        font-size: 0.8rem; /* Smaller text for very small screens */
    }
}
/* General Styles */
/* Stats Container */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    background-image: url('./assets/pink.png');
    background-size: cover;
    background-repeat: repeat;
    height: auto;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 0 auto;
}

/* Stat Item */
.stat-item {
    text-align: center;
    margin: 15px;
    flex: 1 1 200px; /* Flexible sizing for responsiveness */
}

.stat-item h2 {
    font-size: 5rem;
    color: red;
    margin: 0;
}

.stat-item p {
    font-size: 1.4rem;
    color: red;
    margin: 5px 0 0;
}

/* Country Icons */
.country-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 0;
    border-top: 2px solid red; /* Red border above */
    border-bottom: 2px solid red; /* Red border below */
}

.country-icons img {
    width: 30px; /* Adjust icon size */
    height: auto;
    margin: 5px 0; /* Space between icons */
}

/* Write Text */
.write {
    display: inline-block;
    background: white;
    color: black;
    font-size: 1.4rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 15px;
    font-family: 'CMU', monospace;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column; /* Stack stats vertically on small screens */
        padding: 20px;
    }

    .stat-item {
        margin: 10px 0;
    }

    .country-icons img {
        width: 25px; /* Smaller icons for mobile */
    }

    .write {
        font-size: 1rem; /* Smaller text for mobile */
    }
}
.ourwork{
    text-align: left;
    padding: 20px;
}

.ourwork h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: red;
}
.ourwork p {
    font-size: 1.2rem;
    font-family: 'CMU', monospace ;
}


.ourwork2{
    text-align: left;
    padding: 20px;
    
}

.ourwork2 h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: red;
    margin-left: -12px;
}

/* General Styles */
.favs {
    text-align: left;
    padding: 20px;
    width: 94%;
    margin: auto;
    margin-top: 50px;
  
}

.favs h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: red;
    
}

.favs p{
    font-family: "CMU", monospace;
    font-size: 1rem;
}

.hero2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
}

/* Partner Logo Carousel Styles */
.partner-carousel {
    width: 80%; /* Adjust width as needed */
    max-width: 800px; /* Adjust max-width as needed */
    overflow: hidden;
    position: relative;
  
}

.partner-carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.partner-carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-carousel-item img {
    max-width: 100%;
    max-height: 250px; /* Adjust logo size as needed */
    height: auto;
    object-fit: contain;
}



.carouselholder {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

.carouselimg img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.carouselwriteup {
    flex: 1;
    margin-left: 200px;
    font-size: 1.2rem;
}

.carouselwriteup p {
    margin: 0 0 10px 0;
    font-size: 1rem;
    font-family: 'CMU', monospace ;
}

.carouselwriteup button {
    background: transparent;
    color: black;
    border: 1px solid red;
    width: 150px;
    height: 60px;
    text-transform: uppercase;
    text-align: center;
    padding: 1.2rem;
    cursor: pointer;
    font-family: 1.4rem;
}

.carouselwriteup button:hover {
    background-color: red;
    color: white;
    transition: .2s ease-in-out;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}/* Add this to your existing CSS */
.radionav {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}


/* Radio Button Styles */
.radionav input[type="radio"] {
    appearance: none; /* Remove default styling */
    width: 15px;
    height: 15px;
    background-color: grey; /* Grey background */
    border: 2px solid grey; /* Grey border */
    border-radius: 50%; /* Circular shape */
    cursor: pointer;
    margin: 0 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.radionav input[type="radio"]:checked {
    background-color: black; 
    border-color: black; 
}

.links {
    width: 100%; /* Full width on all screens */
    max-width: 800px; /* Maximum width for larger screens */
    margin: auto;
    margin-top: 8rem;
    margin-bottom: 2rem;
    padding: 10px;
    font-size: 1.2rem;
    box-sizing: border-box; /* Ensure padding is included in width */
}
.con{
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:5px;
    margin-bottom: 2rem;
  
}
.links ul {
    width: 100%; /* Full width of the parent */
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: center; /* Center items horizontally */
    gap: 15px; /* Space between items */
    margin: 0;
    padding: 0;
    list-style: none;
}

.links ul li {
    margin: 0;
    text-decoration: underline;
}

.links ul a {
    color: red;
    text-decoration: none;
    font-size: 1rem;
    white-space: nowrap; /* Prevent text from wrapping */
}



/* General Styles */


.container2 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.container2 h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: red;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color:black;
    margin-bottom: 40px;
    font-family: 'CMU', monospace ;;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 70px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card:hover i {
    color: #e74c3c; /* Change icon color on hover */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: red;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: black; /* Change heading color on hover */
}
.service-card p{
    font-size: 1rem;
    color: #666;
    font-family: 'CMU', monospace ;
    text-align: justify;
    margin-bottom: 10px;
}
.service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-card ul li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'CMU', monospace ;
}

.service-card ul li::before {
    content: "•";
    color: red;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
    transition: color 0.3s ease;
}

.service-card:hover ul li::before {
    color: #e74c3c; /* Change bullet color on hover */
}

.service-card:hover ul li {
    color: #333; /* Change text color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card ul li {
        font-size: 0.9rem;
    }
}







/* Blog Section */
.blog-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.blog-heading {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    text-align: left;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px; /* Space between posts */
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog Post */
.blog-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Ensure the image covers the area */
}

.blog-title {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color:black;
}

.blog-description {
    font-size: 1rem;
    color: #555;
    padding: 0 20px;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: black;
    text-decoration: none;
    border: 1px solid red;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: red;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}


footer{
    width: 100%;
    max-width: 90%;
    margin: auto;
    border-top: 1px solid #000;
    height: 250px;
}

.copylinks{
    width: 70%;
    height: fit-content;
    margin: auto;
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
}

.copylinks p{
    font-size: 1.2rem;
    color: rgba(128, 128, 128, 0.815);
}



.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    color: grey;
}

.social-icons a {
    color: gray;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: red;
}



/* General Responsive Adjustments */
@media (max-width: 768px) {
    .content {
        width: 90%;
        padding: 1rem;
    }

    .stats-container {
        flex-direction: column;
        padding: 20px;
    }

    .stat-item {
        margin: 10px 0;
    }
    
    .links {
        margin-top: 4rem;
        margin-bottom: 1rem;
    }

    .links ul {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center;
        gap: 10px;
    }

    .links ul a {
        font-size: 0.9rem;
        text-decoration: underline;
    }

    .links ul li {
        margin: 10px 0;
    }

    .carouselholder {
        width: 100%;
    }

    .slide {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .carouselwriteup {
        margin-left: 0;
        margin-top: 20px;
    }

    .carouselwriteup p{
        text-align: left;
    }
    .carouselimg video{
        width: 380px;
        height: 300px;
    }
    .hero {
        height: 20rem;
    }

    .hero2 {
        height: 200px;
    }

    .partner-carousel {
        width: 100%;
    }

    .partner-carousel-item img {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    nav p {
        font-size: 16px;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .writeup p {
        font-size: 1rem;
    }

    .writeup button {
        width: 120px;
        height: 50px;
        padding: 0.8rem;
    }

    .stats-container .write {
        font-size: 1rem;
    }

    .ourwork h2 {
        font-size: 1.5rem;
    }

    .ourwork p {
        font-size: 1rem;
    }

    .favs h2 {
        font-size: 1.5rem;
    }

    .carouselwriteup button {
        width: 120px;
        height: 50px;
        padding: 0.8rem;
    }
}

@media (max-width: 360px){
.carousel video{
    width: 360px;
    margin-left: 5px;
}
}

@media (max-width: 320px){
    .carousel video{
        width: 310px;
    }
    }





#scroll-div {
 
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
  
  #scroll-div::-webkit-scrollbar {
    display: none;
  }
  
  #scroll-div h1 {
    display: inline-block;
    font-size: 7.2rem;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 30px;
    letter-spacing: 4px;
    animation: scroll 1s infinite;
    animation-timing-function: linear;
    color: red;
  }

  
@keyframes scroll {
    0% {
      transform: translateX(calc(-100% - 32px));
    }
    100% {
      transform: translateX(0);
    }
  }
  
  #scroll-div2 {
    position: absolute;
    top: 44%;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    z-index: 100;
  }
  
  #scroll-div2::-webkit-scrollbar {
    display: none;
  }
  
  #scroll-div2 h1 {
    display: inline-block;
    font-size: 140px;
    text-transform: uppercase;
    font-family: "Times New Roman", Times, serif;
    margin-right: 30px;
    letter-spacing: 4px;
    color: transparent;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #000;
    animation: scroll 1s infinite;
    animation-timing-function: linear;
  }
  
  #scroll-div3 {
    position: absolute;
    top: 64%;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
  
  #scroll-div3::-webkit-scrollbar {
    display: none;
  }
  
  #scroll-div3 h1 {
    display: inline-block;
    font-size: 140px;
    text-transform: uppercase;
    font-family: "Times New Roman", Times, serif;
    margin-right: 30px;
    letter-spacing: 4px;
    animation: scrollr 1s infinite;
    animation-timing-function: linear;
  }
  
  @keyframes scrollr {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% - 32px));
    }
  }
  
  