<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.nav-link {
    text-decoration: none;
    color: #000;

}

.logo {
    width: 150px;
    height: auto;

}

/* Default styles for larger screens */
#overlay,
#onelay,
#twolays {
    margin-left: 40px;
    color: white;
    padding-top: 40px;
    font-weight: bolder;
}

#overlay h5,
#onelay h5,
#twolays h5 {
    font-size: 32px;
}

#overlay p,
#onelay p,
#twolays p {
    font-size: 24px;
}

#overlay p#text,
#onelay p#onetext,
#twolays p#twotext {
    font-size: 50px;
}

/* Styles for smaller screens */
@media (max-width: 768px) {

    #overlay h5,
    #onelay h5,
    #twolays h5 {
        font-size: 24px;
        /* Reduce font size */
    }

    #overlay p,
    #onelay p,
    #twolays p {
        font-size: 18px;
        /* Reduce font size */
    }

    #overlay p#text,
    #onelay p#onetext,
    #twolays p#twotext {
        font-size: 32px;
        /* Reduce large font size */
    }
}

/* Styles for extra small screens */
@media (max-width: 576px) {

    #overlay h5,
    #onelay h5,
    #twolays h5 {
        font-size: 20px;
        /* Further reduce font size */
    }

    #overlay p,
    #onelay p,
    #twolays p {
        font-size: 16px;
        /* Further reduce font size */
    }

    #overlay p#text,
    #onelay p#onetext,
    #twolays p#twotext {
        font-size: 28px;
        /* Further reduce large font size */
    }
}





.awards-card,
.members-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.awards-header,
.members-header {
    color: #007bff;
    font-size: 1.5rem;
}

.award-description,
.member-description {
    font-size: 1.1rem;
}

.btn-conference,
.btn-members {
    background-color: #007bff;
    color: white;
}



/* Main Footer Styling */
.bottom {
    width: 100vw;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    /*padding:20px;*/
    color: #000;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

.bottom div {
    width: 100%;
    max-width: 300px;
    margin: 10px;
}

.bottom img {
    width: 150px;
}

.bottom ul {
    list-style-type: none;
    padding: 0;
}

.bottom ul li {
    margin-bottom: 10px;
}

.bottom ul li a {
    color: #000;
    text-decoration: none;
}

.bottom ul li a:hover {
    color: #000;
}

.bottom h4,
.bottom h6 {
    color: #000;
}

/* Copyright section */
.footer-bottom {
    background-color: #333333;
    color: #d3d3d3;
    height: 50px;
    text-align: center;
    padding: 10px;
}


.subcription {
    width: 100vw;
    height: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: grey;
    color: white;
    flex-wrap: wrap;
}

.values {
    display: flex;
    justify-content: center;
    align-items: center;
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
    flex-wrap: wrap;
    margin-top: 2rem;
    /* gap: 1rem; */

}





.scroll-up-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #FF0000;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    display: none;
    /* Hidden by default */
    transition: background-color 0.3s ease;
}

.scroll-up-btn:hover {
    background-color: #d00000;
}




/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }
}

/* Responsive map height for smaller screens */
@media (max-width: 768px) {
    #map {
        height: 300px;
        /* Adjust height for tablets and small screens */
    }
}

@media (max-width: 480px) {
    #map {
        height: 250px;
        /* Adjust height for mobile screens */
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bottom div {
        max-width: none;
        width: 90%;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    50% {
        opacity: 1;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Media queries for responsiveness */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
    }

    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Adjustments for tablet devices */
@media (max-width: 768px) {
    .card-img-overlay {
        margin-left: 20px;
        padding-top: 20px;
    }

    .card-title {
        font-size: 1.8rem;
        /* Smaller font size for title */
    }

    .card-text {
        font-size: 2rem;
        /* Reduce text size */
    }

    .contact-btn {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .contact-btn i {
        font-size: 1.2rem;
    }
}

/* Adjustments for mobile devices */
@media (max-width: 480px) {
    .card-img-overlay {
        margin-left: 10px;
        padding-top: 10px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-text {
        font-size: 1.5rem;
    }

    .contact-btn {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .contact-btn i {
        font-size: 1rem;
    }
}

.logo {
    width: 100px;
    margin-left: 30px;
}

.log {
    width: 150px;
    height: 100px;

}



.more-info {
    display: none;
    font-size: 16px;
    margin-top: 20px;
    /* background-color: #e9ecef; */
    padding: 15px;
    border-radius: 8px;
}

.more-info-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.more-info-btn:hover {
    background-color: #0056b3;
}

button {
    border-radius: 20px;
    background-color: blue;
    color: white;
}



.card-strip-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card-strip-card {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 8px;
    text-align: center;
}

.card-strip-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .card-strip-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .card-strip-card {
        flex: 1 1 100%;
    }
}</pre></body></html>