@import url(https://fonts.googleapis.com/css?family=Oswald);
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
@import url(https://fonts.googleapis.com/css?family=Quattrocento);

body,
h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  color: #172f3d;
  line-height: 1.6;
  margin-left: 10%;
  margin-right: 10%;
}

@media screen and (max-width: 992px) {
  body {
    font-size: 12px;
    margin-left: 2%;
    margin-right: 2%;
  }
}
.page {
  width: 80vw;
}
.colorSpace {
  width: 100%;
  height: 7px;
  background-color: #04559f;
}
.header {
  background-color: #04559f;
}

@media screen and (max-width: 992px) {
  .page {
    width: 100%;
  }
  .topHead,
  .colorSpace {
    display: none;
  }
}

.nav {
  height: 50px;
  width: 100%;
  background-color: white;
  position: relative;
  z-index: 999;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  color: #04559f;
  padding: 10px 10px 10px 10px;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  font-size: 18px;
}

.nav > .nav-links > a {
  display: inline-block;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: #04559f;
}

.nav > .nav-links > a:hover {
  font-weight: 600;
}

.nav > #nav-check {
  display: none;
}

@media (max-width: 992px) {
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #04559f;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: white;
    height: 80%;
    border-bottom: 2px solid #04559f;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
  }
  .nav > .nav-links > a:hover {
    font-weight: 600;
  }

  .nav > .nav-links > a {
    display: block;
    width: 100%;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: 400px;
    overflow-y: auto;
  }
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel img {
  width: 100%;
  height: auto;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: bold;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border: none;
  outline: none;
  transition: background-color 0.3s ease-in-out;
  display: none; /* Hide the buttons */
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
@media (max-width: 992px) {
  .carousel-container {
    display: none;
  }
}

.main {
  margin-top: 10px;
  display: flex;
  width: 100%;
  gap: 5px;
}

.sidebar {
  width: 23%;
}

.hero {
  width: 77%;
}

@media (max-width: 992px) {
  .sidebar {
    display: none;
  }
  .hero {
    width: 100%;
  }
}
.important-dates-container {
  overflow: hidden;
  height: 222px;
  background-color: #ffe4c4;
  border: #a1a9ab solid 2px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  position: relative;
}

.important-dates-scroll {
  color: #04559f !important;
  list-style: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 0;
  animation: scroll 15s linear infinite;
}
.important-dates-scroll > li > span {
  font-weight: 600;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.committee-container {
  padding: 10px;
  color: #04559f;
  background-color: #ffe4c4;
  border: #a1a9ab solid 2px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 10px;
}

.committee-label {
  color: #ff0000;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
}

.committee-member {
  color: #04559f;
  font-weight: bold;
  margin-top: 5px;
}

.member-name {
  font-weight: bold;
}

.member-post {
  font-weight: normal;
}
hr {
  color: #04559f;
}
.mainHeader {
  font-size: 22px;
  text-align: center;
  color: #04559f;
  font-weight: bold;
}

.footerHeader {
  display: flex;
  flex-direction: row;
}
@media (max-width: 992px) {
  .footerHeader {
    display: none;
  }
}

.custom-button {
  display: inline-block;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-align: center;
  text-decoration: none;
  background-color: #04559f;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.custom-button:hover {
  background-color: #034580;
}

.contectDetails {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  color: #04559f;
}

.location,
.phone,
.mail {
  box-sizing: border-box;
  width: 50%;
  padding: 10px;
}

@media (max-width: 992px) {
  .location,
  .phone,
  .mail {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .aboutKiet {
    height: 200px !important;
  }
}

.snip1376 {
  font-family: "Quattrocento", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  height: 200px;
  width: 300px;
  color: #141414;
  text-align: left;
  line-height: 1.4em;
  font-size: 16px;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: transform 0.3s ease;
}
.snip1376:hover {
  transform: scale(1.1);
}
.snip1376 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  justify-self: center;
}
.snip1376 img {
  max-width: 100%;
  vertical-align: top;
}
.snip1376 figcaption {
  width: 100%;
  background-color: #ffffff;
  padding: 15px 25px 65px;
  position: relative;
}
.snip1376 figcaption:before {
  position: absolute;
  content: "";
  z-index: 2;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: -webkit-linear-gradient(top, transparent 0%, #ffffff 100%);
  background-image: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}
.snip1376 h2,
.snip1376 p {
  margin: 0 0 10px;
}
.snip1376 h2 {
  font-weight: 300;
  font-size: 1.5em;
  line-height: 1.2em;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
}
.snip1376 p {
  font-size: 0.9em;
  letter-spacing: 1px;
  opacity: 0.9;
}

.speakerhero {
  display: flex;
  flex-wrap: wrap;
  height: 500px;
  justify-content: space-around;
}

@media (max-width: 667px) {
  .speakerhero {
    height: 900px;
  }
}
