:root {
  --clr-primary: #001d6e;
  --clr-primary-light: #334a8b;
  --clr-primary-lighter: #808eb7;
  --clr-primary-lightest: #b3bbd4;
  --clr-primary-dark: #001758;
  --clr-primary-darker: #00144d;
  --clr-primary-darkest: #000f37;

  --clr-accent: #efa918;
  --clr-accent-light: #4dcbb2;
  --clr-accent-lighter: #80dac8;
  --clr-accent-lightest: #b3e9de;
  --clr-accent-dark: #009074;
  --clr-accent-darker: #006c57;

  --clr-offset: #5463ff;

  --clr-gray-100: #f3f3f3;
  --clr-gray-200: #e7e7e7;
  --clr-gray-300: #dbdbdb;
  --clr-gray-400: #cfcfcf;
  --clr-gray-500: #c4c4c4;
  --clr-gray-600: #b8b8b8;
  --clr-gray-700: #acacac;
  --clr-gray-800: #a0a0a0;
  --clr-gray-900: #949494;
  --clr-gray-d100: #888888;
  --clr-gray-d200: #7a7a7a;
  --clr-gray-d300: #6d6d6d;
  --clr-gray-d400: #525252;
  --clr-gray-d500: #292929;

  --radius-100: 0.3rem;
  --radius-200: 0.5rem;
  --radius-400: 0.7rem;
  --radius-600: 0.9rem;
  --radius-800: 1.2rem;
  --radius-c100: 2rem;
  --radius-half: 50%;

  --font-primary: "Raleway", cursive;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

input,
button {
  font: inherit;
  display: inline-block;
}

a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.5rem;
  /*width: max-content;*/
}


img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


h1,
h2,
h3,
h4 {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--clr-accent);
  text-align: center;
}

h1 {
  margin: 2rem 0;
  color: var(--clr-primary);
  font-size: 3rem;
  position: relative;
  padding: 0.6rem 0;
}

p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}

li {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
}

div {
  font-size: 1.4rem;
  font-weight: 400;
}

.cta {
  padding: 0.7rem 2rem;
  background-color: var(--clr-accent);
  font-weight: 500;
  color: #000f37;
  transition: all 300ms ease-in-out;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-c100);
}

.cta:hover {
  background-color: var(--clr-accent);
}

.wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}

section {
  width: 90%;
  margin: 0 auto;
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 4rem;
  overflow: hidden;
}

body {
  height: 100vh;
  font-family: var(--font-primary);
  background-color: #faf4eb;
  font-size: 1.6rem;
  font-weight: 500;
  overflow-x: hidden;
}

header {
  width: 100%;
  height: 5rem;
  position: fixed;
  left: 0;
  top: -100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(to right, #efefef, #ddd);
  z-index: 999;
  padding: 0 2rem;
  opacity: 0;
  transition: all 600ms ease-in-out;
}

header.show {
  top: 0;
  opacity: 1;
}

header .contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .contact-info a {
  color: var(--clr-primary);
}

header .contact-info a:hover {
  animation-name: headShake;
  animation-duration: 1.5s;
}

header .socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .socials a {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--clr-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: var(--radius-400);
}

header .socials a:hover {
  animation-name: jello;
  animation-duration: 2s;
}

nav {
  width: 100%;
  height: 8rem;
  background-color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: relative;
}

nav .logo-img {
  height: 100%;
  
}

.nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.4rem;
  list-style: none;
}

.nav-list .list-link {
  color: white;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 300ms ease-in-out;
}

.nav-list .list-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.3rem;
  background-color: var(--clr-primary-dark);
  transition: all 300ms ease-in-out;
}

.nav-list .list-link:hover::after {
  background-color: var(--clr-accent);
  bottom: -0.3rem;
}

nav .burger {
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--clr-accent);
  color: white;
  border-radius: var(--radius-400);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  cursor: pointer;
  display: none;
}

nav .burger:hover {
  animation-name: jello;
  animation-duration: 1.5s;
}

footer {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-top: 10rem;
  background-color: #282828;
}

footer .wrapper {
  justify-content: center;
  align-items: flex-start;
}

footer .company-info {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

footer .company-profile,
footer .liability {
  width: 100%;
  color: white;
}
footer .company-profile h3,
footer .liability h3 {
  width: 100%;
  text-align: left;
}

footer .quick-links {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

footer .quick-links a {
  color: var(--clr-accent);
  border-bottom: 0.2rem solid var(--clr-accent);
}

footer .location {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
}

 .poster {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  
}

.poster > a > img{ position: relative;  width: 100%; box-shadow: 5px 9px 4px -4px #99999955;}

footer .socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .socials a {
  width: 4rem;
  height: 4rem;
  background-color: var(--clr-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: var(--radius-400);
}

footer .socials a:hover {
  animation-name: jello;
  animation-duration: 1s;
}

footer .copyright {
  width: 100%;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

footer .copyright a{
    
    color: white;
}

/* MEMBER STATS */

.memstatos{
  box-sizing: border-box;
  margin: 2em 0;
  border: solid 1px #bbbbbb88;
  width: 100%;
  text-align: left;
  padding: 1em;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 1em;
}

.memstats{
  box-sizing: border-box;
  margin: 2em 0;
  border: solid 1px #bbbbbb88;
  width: 100%;
  text-align: left;
  padding: 1em;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.memstats h2{
  display: inline-block !important;
}

.memstats ul{

  display: block;
  width: 250px;
  height: auto;
  margin: 1em;
  text-align: left;
  float: left;
  border: solid 1px #aaa;
  box-shadow: 3px 4px 4px -3px #aaaaaa;
  
}

.memstats li{
  list-style-type: none;
  display: block;
  margin: 0.5em 0;
  border: solid 1px #0000;
  padding: 0.2em;
  box-sizing: border-box;
}

.mttl{
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--clr-primary-light);
}

.mcost{

  color: var(--clr-accent-dark);
  font-size: 2rem;
  font-weight: 600;
}

.mtext{
  height: 300px;
}

.mlisto{
  font-size: 1.2rem;
  border-bottom: solid 1px #ccc;
}

/* PAGE BANNERS */
.page-banner {
  width: 100%;
  height: 40rem;
  position: relative;
}

.page-banner .banner-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.page-banner .banner-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.911),
    rgba(0, 0, 0, 0)
  );
}

.page-banner .banner-text {
  z-index: 1;
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(2.5rem, 4vw, 4rem);
  text-transform: uppercase;
  color: var(--clr-accent);
}

@media (max-width: 800px) {
  section {
    padding: 2rem;
    width: 100%;
    flex-direction: column;
  }

  .wrapper {
    flex-direction: column;
  }

  header {
    min-height: 7rem;
    flex-direction: column;
    padding: 0.5rem 1rem;
  }

  nav .burger {
    display: flex;
  }
  .nav-list {
    position: absolute;
    top: 10rem;
    left: 2%;
    width: 65%;
    height: 70vh;
    background-color: var(--clr-primary);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    border-radius: var(--radius-400);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transform: translateX(-102%);
    opacity: 0;
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
  }

  .nav-list .list-link {
    transform: translateY(-50%);
    opacity: 0;
    transition: 300ms all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .nav-list.open {
    transform: translateX(0);
    opacity: 1;
    animation-name: jello;
    animation-delay: -500ms;
    animation-duration: 1.5s;
  }

  .nav-list.open .list-link {
    transform: translateY(0%);
    opacity: 1;
  }

  footer .wrapper {
    align-items: center;
    gap: 2rem;
  }

  footer .company-info, footer .poster {
    width: 100%;
  }
  
  footer .location {
    width: 100%;
  }
}


.memstats table{
  
  position: relative;
  width: 100%;
  padding: .5em;
  background: #ffffff; 
}

.memstats td, .memstats th{
  padding: .4em .2em;
  font-size: .9em;
  border: solid 1px #ddd0;
  border-bottom-color: #ddd;
 
}

.memstats th{  color: #525252; }

.memstats td{  color: #252252; }

.memstats form{
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: .9em;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.memstats form input, .memstats form button{
  padding: .3em;
  box-shadow: 4px 3px 3px -3px #ccc;  
}

.memstats form button{
  background: #001758;
  border-color: #001d6e;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
}

.lsvg{
  height: 15px;
}

.pro-box{

  display: flex;
  flex-direction: column;
  gap: 1.5em;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}

.pro-box p{
  font-size: .95em;
 
}




/* Publications Section */

.pub-wrap {
    box-sizing: border-box;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2em;
    justify-content: center;
    padding: 1em;
}

.pub-card {
    width: 300px;
    background-color: #ffffff;
    box-shadow: 0px 5px 3px -2px #22222280;
    border-radius: 6px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: .6em;
    font-family: var(--font-primary);
    transition: transform .3s ease;
}

.pub-card:hover {
    transform: translateY(-4px);
}

.pub-date {
    font-size: .8em;
    font-weight: 400;
    color: #4fc9f5;
}

.pub-title {
    font-size: 1.1em;
    font-weight: 700;
    color: #234181;
    line-height: 1.3em;
}

.pub-link {
    align-self: flex-start;
    text-decoration: none;
    background-color: #fff041;
    color: #234181;
    font-weight: 700;
    font-size: .9em;
    padding: 6px 12px;
    border-radius: 3px;
    box-shadow: 0px 5px 3px -2px #22222280;
}

/* Mobile refinement */
@media screen and (max-width: 767px) {
    .pub-card {
        width: 100%;
    }
}


.secla
{
    box-sizing: border-box;
    width: 100%;
    height: auto;
    margin: 2em 0em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1em;
}

.secla .dhead
{
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-family: var(--font-primary);
}

.dhead h1
{
    font-size: 2em;
    color: #234181;
    font-weight: 900;
}

.secla .w-card
{
    box-sizing: border-box;
    width: 280px;
    overflow: visible;
    height: auto;
    border: solid 1px #bbb;
    box-shadow: 1px 5px 3px -2px #22222280;
    display: flex;
    flex-direction: column;
    gap: .3em;
    font-family: var(--font-primary);
    padding-bottom: 1em;
}

.w-card img{
    box-sizing: border-box;
    width: 100%;
    
}

 .demx
{
    width: 100%;
    box-sizing: border-box;
    padding: .3em;
    display: flex;
    flex-direction: column;
    gap: .5em;
}

.demx h5
{
    font-weight: 400;
    color: #333;
}

.demx h4
{
    font-weight: 700;
    color: #333;
}

.ctcon
{
    display: flex;
    flex-direction: row;
    padding: .3em;  
    justify-content: space-around;
}

.ctcon a, .join
{
    display: block;
    box-sizing: border-box;
    text-decoration: none;
    font-size: .9em;
    background-color: #234181;
    color: #f8e72a;
    box-shadow: 1px 5px 3px -2px #22222280;
    font-weight: 700;
    padding: .5em 1em;
    border-radius: 3px;
}

.full-box
{
    box-sizing: border-box;
    width: 100%;
    /* padding: 2px;  */
    height: auto;
    display: flex;
    flex-direction: column;
    
    /* border: solid 1px #ffffffee;;     */
}

/* Base Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

section {
    padding: 4rem 1.5rem;
}

/* ===== Webinar Section ===== */
.seclab {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.seclab .dhead h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.seclab .dhead h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 2rem;
}

.mimg {
    width: 100%;
    max-width: 350px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.seclab h4 {
    font-size: 1rem;
    color: #334155;
    margin-bottom: .4rem;
}

.seclab h5 {
    font-size: .95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.seclab .tex {
    max-width: 750px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
    color: #475569;
    font-size: 1.6rem;
}

.join {
    display: inline-block;
    padding: .8rem 2rem;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease;
}

.join:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* ===== Presenters Section ===== */
.secla {
    background: #f8fafc;
}

.secla .dhead h1 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.prebox {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.spax {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
    transition: all .3s ease;
}

.spax:hover {
    transform: translateY(-6px);
}

.spax h2 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
    color: #1e293b;
}

.spax p {
    margin-bottom: .3rem;
    color: #2563eb;
}

.spax small {
    color: #64748b;
}

.b-cta {
    display: block;
    text-align: center;
    margin-top: 3rem;
    text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }

    .seclab .dhead h1 {
        font-size: 1.5rem;
    }

    .secla .dhead h1 {
        font-size: 1.4rem;
    }
}
