/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #f7f3e9;
    color: #333;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

:root {
    --p: #d32f2f;
    --s: #ff9800;
}







/* Preloader */
.preloader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    font-size: 2rem;
    letter-spacing: 5px;
    opacity: 0;
    z-index: 9999;
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    color: linen;
    letter-spacing: 5px;
}

/* Hide content initially */
#content {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}







/* Overlay Background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
}

/* Donation Form */
.donation-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 400px;
    text-align: center;
    position: relative;
}

.donation-form h2 {
    font-size: 24px;
    color: #d32f2f;
    margin-bottom: 20px;
}

.donation-form p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.qr-code {
    display: block;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    line-height: 30px;
}

.close-btn:hover {
    background: #b71c1c;
}

.donate-now {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
}

.donate-now:hover {
    background: #d32f2f;
}




/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0000002e;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 15px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo a {
    color: #ff9800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo a:hover {
    color: #d32f2f;
    font-size: 24.2px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 12px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1.2px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ff9800;
    font-size: 14.2px;
    font-weight: 450;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #ff9800;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        width: 50%;
        height: 40vh;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    /* Hamburger Menu Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }
}



/* Hero Section */
.hero {
    background: url('img/5.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    /* text-shadow: 2px 2px 4px #ff990088; */
    position: relative;
}

.hero #overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hero-content p {
    font-size: 1.6vw;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-buttons .btn {
    padding: 10px 25px;
    margin: 0 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    text-transform: uppercase;
    transition: background 0.3s ease;
    text-decoration: none;
    color: white;
}

.hero-buttons .btn a {
    text-decoration: none;
    color: white;
}

.learn-more {
    background: #ff9800;
    /* color: white; */
}

#dnt {
    background: #d32f2f;
    color: white;
}

.hero-buttons .btn:hover {
    opacity: 0.8;
}




/* .hero {
    margin-top: 10vh;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;    
    flex-direction: column;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}


.hero-text {
    position: absolute;
    top: 20%;
    z-index: 2;
    color: #333;
}

.hero-text h1 {
    font-size: 3rem;
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #d32f2f, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  
}

.hero-text p{   
    color: #ff9800;
    font-size: 1.2vw;
    font-weight: 600;
    letter-spacing: 1px;
}


.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.hero-buttons .btn {
    padding: 10px 25px;
    margin: 0 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}
.learn-more {
    background: #ff9800;
    color: white;
}
.dnt {
    background: #d32f2f;
    color: white;
}
.hero-buttons .btn:hover {
    opacity: 0.8;
} 





.image-container {
    position: absolute;
    bottom: 30%;
    width: 70%;
    height: 30%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}


.left-images, .right-images {
    position: relative;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 230px;
}


.card-image {
    width: 80%;
    height: 80%;
    object-fit: cover/center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    position: absolute;
    transition: transform 0.3s ease;
}

.right-images{
    left: 70px;
}

#left-f-i{
    z-index: 2;
    transform: translateX(10%) translateY(-30%);
}

#left-f-i:hover{
    z-index: 10;
    width: 100%;
    height: 100%;
    transition: all linear.5s;
}

#right-f-i{
    z-index: 2;
    top: 50px;
    transform:translateX(-20%) translateY(-40%);
}

#front-r-i{
    top: -100px;
    left: 10%;
}


.front-image {
    z-index: 2;
}


.back-image {
    z-index: 1;
    top: 100px;
    left: 10px;
    transform: translateX(-20%) translateY(20%);
}

.back-image:hover{
    z-index: 10;
    width: 100%;
    height: 100%;
    transition: all linear.5s;
}

.front-image:hover{
    z-index: 10;
    width: 100%;
    height: 100%;
    transition: all linear.5s;
} */




/* History of Mataji */
.history {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    /* background: linear-gradient(120deg, #6b7574, #d3d4d7); */
    color: #1b1b1b;
    position: relative;
    overflow: hidden;
}

.history-container {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 100vw;
    margin: 0 auto;
}

.history-video video {
    width: 500px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid beige;
}

.history-video video:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.history-text {
    max-width: 600px;
    text-align: left;
    animation: fadeInText 1s ease-out;
}

.history-text h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #d32f2f;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* background: linear-gradient(90deg, #d32f2f, #ff9800); */

    /* -webkit-text-fill-color: transparent; */
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .history-container {
        gap: 50px;
    }

    .history-video video {
        width: 400px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .history-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .history-text {
        text-align: justify;
        /* Keeping the text justified */
    }

    .history-video video {
        width: 90%;
        height: auto;
    }

    .history-text h2 {
        font-size: 2rem;
    }

    .history-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .history {
        padding: 50px 15px;
    }

    .history-video video {
        width: 100%;
        height: auto;
    }

    .history-text h2 {
        font-size: 1.8rem;
    }

    .history-text p {
        font-size: 0.95rem;
    }
}

/* .read-more {
    display: inline-block;
    background: linear-gradient(90deg, #ff9800, #d32f2f); */
/* background-color: #ff9900; */
/* color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 81, 47, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid red;
}

.read-more:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 81, 47, 0.6);
} */

/* Animations */
@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}










/* Modi Kutumb Surdhan Dada */
.Modikutumb {
    padding: 80px 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Modikutumb-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.Modikutumb-text {
    text-align: justify;
}

.Modikutumb-text h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #d32f2f;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.Modikutumb-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.Modikutumb-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.Modikutumb-image img:hover {
    transform: scale(1.05);
}

.download-btn {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #b71c1c;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.6);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .Modikutumb-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .Modikutumb-text {
        text-align: center;
    }
}


/* Donate Section */
.donate {
    text-align: center;
    padding: 50px;
    background: #ff9900a2;
    color: white;
}

.donate-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.justify {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 400;
    padding-bottom: 10px;
}

.donate h2 {
    font-size: 2.2vw;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d32f2f;
}

.qr-code2 img {
    width: 130px;
    height: auto;
}

.upi h3 {
    color: #000;
}







/* Section Titles */
.events h2,
.last-events h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d32f2f;
    position: relative;
}

/* Upcoming Events */
.events {
    padding: 60px;
    text-align: center;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.event-card {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.event-card h3 {
    font-size: 1.3rem;
    color: #d32f2f;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.event-card p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d32f2f, #ff9800);
}

/* Last Events */
.last-events {
    padding: 60px;
    text-align: center;
}

.last-events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.last-events .event-card {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.last-events .event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.last-events .event-card h3 {
    font-size: 1.2rem;
    color: #d32f2f;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.last-events .event-card p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {

    .events,
    .last-events {
        padding: 30px;
    }

    .event-card {
        padding: 15px;
    }

    .events h2,
    .last-events h2 {
        font-size: 2rem;
    }
}









/* about trust  */
/* General Styles */
.about-trust {
    padding: 80px 0;
    /* background: linear-gradient(to bottom, #f3f3f3, #e0e0e0); */
    text-align: center;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* Section Title */
.section-title {
    font-size: 2.5vw;
    color: #d32f2f;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Timeline Layout */
.trust-timeline {
    position: relative;
    padding-left: 40px;
    border-left: 3px solid #ff9800;
}

/* Individual Trust Item */
.trust-item {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

/* Trust Icon */
.trust-icon {
    position: absolute;
    left: -25px;
    top: 20px;
    background: #ff9800;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

/* Heading */
.trust-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

/* Text */
.trust-content p {
    font-size: 16px;
    color: #555;
}

/* Hover Effect */
.trust-item:hover {
    transform: scale(1.05);
    background: #ff9800;
    color: white;
}

.trust-item:hover h3,
.trust-item:hover p {
    color: white;
}

/* Expandable History Section */
.history-content {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    max-height: 80px;
    /* Initial collapsed state */
}

.hidden-text {
    display: none;
    /* Hidden by default */
}


/* Read More Button */
.read-more-btn {
    display: block;
    background: #ff9800;
    color: white;
    border: none;
    padding: 8px 15px;
    margin-top: 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #d32f2f;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-timeline {
        padding-left: 20px;
    }

    .trust-icon {
        left: -15px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .trust-content h3 {
        font-size: 20px;
    }

    .trust-content p {
        font-size: 14px;
    }
}







/* General Styling */
.gallery-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
}

/* Wrapper */
.gallery-wrapper {
    width: 85%;
    max-width: 1100px;
}

/* Title */
.gallery-title {
    font-size: 2.5vw;
    color: #d32f2f;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: 1px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.filter-buttons button {
    padding: 10px 20px;
    border: 1px solid #ff9800;
    background-color: transparent;
    color: #000;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.5s ease-in-out;
    opacity: 0.7;
}

.filter-buttons button.active {
    background: #ff9800;
    color: white;
    opacity: 1;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Gallery Items */
.gallery-item {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* background: white; */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .filter-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }

    .gallery-title {
        font-size: 1.8rem;
    }
}





.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    overflow: hidden;
}

.contact-container {
    display: flex;
    max-width: 1000px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    gap: 70px;
    transform: scale(0.95);
    position: relative;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(30px);
}

.contact-info {
    flex: 1;
    padding: 20px;
    color: #333;
}

.contact-info h2 {
    margin-bottom: 15px;
    color: #d32f2f;
    font-size: 34px;
    font-weight: 500;
    position: relative;
}

.contact-info p {
    margin: 15px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    opacity: 0;
}

.contact-info p i {
    margin-right: 10px;
    color: #d32f2f;
    font-size: 20px;
}

.contact-info a {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
}

.map {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}







footer {
    background: linear-gradient(135deg, #111, #222);
    /* Dark gradient for sleekness */
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.587);
    /* Subtle shadow effect */
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 10px, transparent 10px, transparent 20px);
    /* Subtle diagonal grid lines */
    opacity: 0.2;
    /* Soft grid effect */
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    opacity: 0;
}

.footer-section {
    flex: 1;
    min-width: 300px;
    margin: 10px;
}

.footer-section h3 {
    position: relative;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #d32f2f;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h3::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #ffb400;
    /* Gold accent */
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.footer-section p {
    font-size: .9rem;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.footer-section p a {
    font-size: 1.1rem;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    scale: 1.2;
    transition: all ease-in-out .3s;
    color: #ff9800;
}

.copyright {
    position: relative;
    top: 20px;
    font-size: 14px;
    opacity: 0.7;
}

hr {
    border: .5px solid rgba(245, 245, 220, 0.105);
}

.copyright a {
    color: #da4817;
    text-decoration: none;
}