@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Raleway", sans-serif;
    letter-spacing: 0.4px;
    font-weight: 500;
}

.hero-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: black;
    padding: 12px 0;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 300;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.footer {
    position: relative;
    overflow: hidden;
}

.footer-top-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background:
        linear-gradient(rgb(255, 255, 255));
    clip-path: polygon(10% 0, 90% 0, 85% 100%, 15% 100%);
    z-index: 3;
}

.footer-bottom-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background:
        linear-gradient(rgb(255, 255, 255));
    clip-path: polygon(15% 0,
            85% 0,
            90% 101%,
            10% 101%);
    z-index: 3;
}

.custom-bullets li {
    position: relative;
    padding-left: 24px;
}

.custom-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #F5D300;
    font-size: 20px;
    line-height: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 130px 10% 2px;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    margin: 20px;
}

.footer-section.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-section.quick-links h3 {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-links-address {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-address h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-address p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.2rem 0;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        padding: 100px 12% 2px;
        gap: 0rem;
    }

    .footer-section {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        flex-direction: column;
        padding: 100px 0% 2px;
        gap: 0rem;
    }

    .footer-section {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .footer-top-shape {
        clip-path: polygon(10% 0, 90% 0, 85% 85%, 15% 85%);
    }
}

@media (max-width: 480px) {
    .footer-top-shape {
        clip-path: polygon(10% 0, 90% 0, 85% 80%, 15% 80%);
    }
}
