* {
  margin: 0;
  padding: 0;
}

:root {
  --dark-grey: #333333;
  --medium-grey: #636363;
  --light-grey: #eeeeee;
  --ash: #f4f4f4;
  --primary-color: #2b72fb;
  --white: white;
  --border: 1px solid var(--light-grey);
  --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;

}

header {
    background-color: white;
  /*  display: flex;
    justify-content: space-between;
    align-items: center; */
    color: #263d91;
    width: 80%; padding: 2% 10%
}

.logo {
    font-weight: bold; width: 250px; ;
}
.logo img {width: 100%; }

.splash img {
    width: 100%;
    height: auto;
    display: block;
    padding-bottom: 2%
}

main {
    padding: 0 10%; width: 80%
}
h1,h2,h3 { color: #263c91; padding-bottom: 5px;width: 100%; margin-bottom: 1em; }
main a {color: #263c91}
p {line-height: 2em; width: 100%; margin-bottom: 2em; }
table { width: 100% }
table td { padding: 5px}
table th { padding: 5px; text-align: left; }
footer { background-color: #263c91; color: white; text-align: center; padding: 40px; margin-top: 40px;  }
.sponsors { width: 100%; display: block; padding: 0 0 3em 0; float:left;  }
.sponsors a { width: 33%; float:left; text-align: center;  }
.sponsors a img { width: 200px;   }
main ul { list-style-type: circle; padding-bottom: 2em }
main ul li { padding: 10px 0 0 0; margin-left: 40px }
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
x
button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
}

.btn {
  display: block;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
}

.icon {
  padding: 0.5rem;
  background-color: var(--light-grey);
  border-radius: 10px;
}

.logo {
  margin-right: 1.5rem;
}
.logo img { width: 200px; }
#nav-menu {
  border-bottom: var(--border);
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 0 auto;
  column-gap: 2rem;
  height: 90px;
 
}

.menu {
  position: relative;
  background: var(--white);
}

.menu-bar li:first-child .dropdown {
  flex-direction: initial;
}


.menu-bar .dropdown-link-title {
  font-weight: 600;
}

.menu-bar .nav-link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.6px;
  padding: 0.6rem;
  min-width: 60px;
  margin: 0 0.2rem;
}

.menu-bar .nav-link:hover,
.dropdown-link:hover {
  color: var(--primary-color);
}

.nav-start,
.nav-end,
.menu-bar,
.right-container,
.right-container .search {
  display: flex;
  align-items: center;
}

.dropdown {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  top: 36px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.97) translateX(-5px);
  transition: 0.1s ease-in-out;
  box-shadow: var(--shadow);
}

.dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateX(5px);
}

.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  font-size: 0.95rem;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
}

.dropdown-link {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-radius: 7px;
  transition: 0.1s ease-in-out;
}

.dropdown-link p {
  font-size: 0.8rem;
  color: var(--medium-grey);
}

.right-container {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.right-container .search {
  position: relative;
}

.right-container img {
  border-radius: 50%;
}

.search input {
  background-color: var(--ash);
  border: none;
  border-radius: 6px;
  padding: 0.7rem;
  padding-left: 2.4rem;
  font-size: 16px;
  width: 100%;
  border: var(--border);
}

.search .bx-search {
  position: absolute;
  left: 10px;
  top: 50%;
  font-size: 1.3rem;
  transform: translateY(-50%);
  opacity: 0.6;
}

#hamburger {
  display: none;
  padding: 0.1rem;
  margin-left: 1rem;
  font-size: 1.9rem;
}

@media (max-width: 1100px) {
  #hamburger {
    display: block;
  }

  .container {
    padding: 1.2rem;
  }

  .menu {
    display: none;
    position: absolute;
    top: 87px;
    left: 0;
    min-height: 100vh;
    width: 100vw; z-index:1
  }

  .menu-bar li:first-child ul:nth-child(1) {
    border-right: none;
    border-bottom: var(--border);
  }

  .dropdown {
    display: none;
    min-width: 100%;
    border: none !important;
    border-radius: 5px;
    position: static;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .menu.show,
  .dropdown.active {
    display: block;
  }

  .dropdown ul {
    padding-left: 0.3rem;
  }

  .menu-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 1rem;
    padding: 1rem;
  }

  .menu-bar .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
  }

  .menu-bar li:first-child .dropdown {
    min-width: 100%;
  }

  .menu-bar > li:not(:last-child) {
    padding-bottom: 0.5rem;
    border-bottom: var(--border);
  }
}

@media (max-width: 600px) {
  .right-container {
    display: none;
  }
  .logo {width: 80%}
  .logo img { width: 100%; }

}
/* profile cards */


.row {
 float:left; margin-bottom: 1.5em; width: 100%;
}

.card {
     text-align: center;
      float:left; width: 25%; margin-bottom: 1em
    }
.card-body {
    position: relative;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.625rem;
  margin: 0 2% 0 2%; padding: 4% 2%; max-width: 300px;
    
    
}
.avatar.avatar-xlg {
    width: 7.5rem;
    height: 7.5rem;
}

.card img {

        height: 100%;
        width: 100%;
         object-fit: cover; margin-bottom: 5px; 
}
.avatar {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}
@media (max-width: 700px) {

  .card { width: 50%; min-height: 220px;  }
  main {
    padding: 0 2%; width: 93%; overflow:hidden; position: relative; z-index; 0;
}
.sponsors a img { width: 100px;  }
}
