@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background: #f9f9f9;
    min-height: 100vh;
    overflow-x: hidden;
}

#header {
    position: absolute;
    background-color: rgb(2, 102, 82,.9);
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-content: flex-start;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 2em;
    pointer-events: none;
    margin-top: 0px;
}

#nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#nav a {
    text-decoration: none;
    font-size: large;
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    margin: 0 5px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
}

#nav a:hover,
#nav a.active {
    background: #359381;
    color: #fff;
}

#text {
    position: absolute;
    font-size: 5em;
    font-family: 'Poppins';
    line-height: 90px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(27, 10, 89, .3);
}
.schedule {
    position: relative;
    padding: 20px 20px;
    top: -10px;
    height: fit-content;
    background-color: whitesmoke;
}

tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.td1 {
    padding: 10px;
    width: 70%;
}


.td1 h5 {
    padding: 0% .9% 0;
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 3%;
    color: #150745;
}


.td2 {
    width: 30%;
}

.td1 ul li {
    font-size: 15px;
    margin-top: 10px;
    margin-left: 35px;
}

table {
    border-collapse: collapse;
}

blockquote.blue1 {
    padding: 0 10px;
    margin: 0;
    font-size: 17.5px;
    border-left: 5px solid #1b0a58;
    border-bottom: 1px solid #ccc;
}

blockquote {
    padding: 0 10px;
    margin: 0;
    font-size: 17.5px;
    border-left: 5px solid #1b0a58;
}

blockquote.green1 {
    padding: 0 10px;
    margin: 0;
    font-size: 17.5px;
    border-left: 5px solid #00d746;
    border-bottom: 1px solid #ccc;
}

.section-title h1 {
    margin: 0 0 30px 0;
    padding: 0;
}


/* pannel */

.panel {
    margin-bottom: 40px;
    height: 500px;
    background-color: #f2f2f2;
    padding: 10px;
    width: 400px;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pannel1 {
    position: relative;
    height: fit-content;
    background-color: #359381;
    margin-top: -28px;
    margin-bottom: 5px;

}

.panel-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background-color: #359381;
    max-width: 1200px;
    margin: 0 auto;
}



.panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(101, 100, 100, 0.3);
}

.panel img {
    max-width: 100%;
    height: fit-content;
    display: block;
    transition: transform 0.3s ease;
}

.panel:hover img {
    transform: scale(1.1);
}

.panel .name-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 300px;
    background-color: #1b0a58;
    color: #fff;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    z-index: 1;
    height: 12%;
}

.panel .name-bar p {
    margin: 0;
}

.panel .text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: auto;
}

.panel .text-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(101, 62, 174, 0.503);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, left 0.3s ease;
    transform: rotate(-10deg);
    overflow: auto;
}

.panel:hover .text-overlay {
    opacity: 1;
    left: 0;
    transform: none;
}

.panel .text-overlay p {
    margin: 0;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.panel:hover .text-overlay p {
    transform: none;
}

.sp-container h1,
.pannel1 h1 {
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin: 14px 0px;
    padding: 20px 0px;
}


/* speakers */

.sp-container {
    margin-top: -28px;
    background: #359381;
    height: max-content;
}

.sp_panel-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0px 0 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.sp_panel {
    flex-basis: calc(33.33% - 40px);
    min-width: 300px;
    height: 350px;
    background-color: #f2f2f2;
    padding: 25px;
    border: 1px solid #ccc;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sp_panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.sp_panel img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.sp_panel:hover img {
    transform: scale(1.1);
}

.sp_panel .sp_name-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* background-color: rgba(0, 0, 0, 0.7); */
    background-color: #150745;
    color: #fff;
    font-size: 20px;
    text-align: center;
    z-index: 1;
    height: 18%;
    padding-bottom: 5%;
}
.sp_panel .sp_name-bar:nth-child(13) {
    padding: 0;
    background-color: #00d746;
}

.sp_panel .sp_name-bar p {
    margin: 0;
}

.sp_panel .sp_text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: auto;
}

.sp_panel:hover .sp_text-overlay {
    opacity: 1;
}

.sp_panel .sp_text-overlay p {
    margin: 0;
    padding: 10px;
    text-align: center;
    font-size: 16px;
}


/* Footer*/

.footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    height: auto;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info h2 {
    margin: 0;
}
.contact-info span {
    color: #888888;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-box {
    min-width: 300px;
    flex: 0 0 45%;
    padding: 40px 10px;
    border-radius: 5px;
    background-color: #30abc9;
    margin: 10px;
}

.contact-box p {
    color: #ffffff;
    font-size: 18px;
    margin: 20px 0;
}

.contact-box a {
    color: #ffffff;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.social-media {
    display: flex;
    height: 20px;
    justify-content: center;
    align-items: center;
}

.social-media::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: -10px;
    left: 0;
    z-index: -1;
}

.social-media a {
    display: inline-block;
    margin: 5px;
    color: #888888;
    font-size: 24px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #000000;
}

.separator {
    margin: 20px 0;
    border-top: 1px solid #dddddd;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.copyright {
    margin-top: 10px;
    height: 40px;
    background: #150745;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-family: sans-serif;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgb(32, 32, 32);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    font-size: 18px;
}

#myBtn:hover {
    background-color: #555;
}

#location {
    margin-top: 5px;
    margin-left: 10px;
    margin-right: 10px;
    width:23px;
    height: 30px;
}

.col-md-8 td a {
    text-decoration: none;
    padding-top: 20px;
    font-size: 16px;
}

#pin{
    width:23px;
    height: 30px;
}

#disclaimer{
    margin-top: 70px;
    text-align: center;
}

/* Responsive Styling */

@media(min-width:1024px) {
    #nav {
        margin-left: 50%;
    }

}


@media(max-width:1024px){
    .td1 ul li {
        font-size: 12px;
        margin-top: 10px;
        margin-left: 35px;
    }
    .td1,.td2{
  
            font-size: 14px;
    }
    .col-md-8{
        font-size: 12px;
    }
    
}

@media(min-width:960px) {
    #nav {
        margin-left: 30%;
    }
}



@media(max-width:960px) {
    #nav {
        margin-left: 20px;
    }

    #nav a {
        font-size: 17px;
    }
}


@media (max-width: 768px) {
    #header {
        padding: 5px;
    }
    #header a[href="#footer"]{
        padding-right: 0px;
    }

    #nav {
        margin-left: 10px;
    }

    #nav a {
        margin: 5px 0;
        font-size: 14px;
    }
}

@media (max-width:576px) {

    #nav a {
        font-size: 12px;
    }

    #text {
        top: 80px;
        font-size: 36px;
        line-height: 45px;
    }

    #nav a {
        font-size: 12px;
    }
}

@media(max-width:425px){
    #text{
        top:220px;
        line-height: 50px;
        font-size: 36px;
        text-shadow: rgba(0, 0, 0, .5);
    }
    #nav a{
        padding:2px;
    }
    .logo img{
        margin-left: 2px;
        width: 30px;
        height: 41px;
    }

    #disclaimer{
      font-size: 12px;
    }
    .col-md-8 td a {
        font-size: 12px;
    }
}
