@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Nanum+Myeongjo:wght@400;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.show-on-mob-only {
  visibility: hidden;
}
@media (max-width: 600px) {
  .show-on-mob-only {
    visibility: initial;
  }
}

html, body {
  background-color: #1B1B1B;
  font-size: 16px;
  color: #fff;
  font-family: "Nanum Myeongjo", serif;
  font-weight: 400 !important;
  width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-family: "Nanum Myeongjo", serif;
  border: none;
  outline: none;
  font-size: 1.25rem;
}

.container {
  margin: 0 auto;
  width: 80%;
}
@media (max-width: 600px) {
  .container {
    width: 90%;
  }
}

p {
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 192%; /* 1.92rem */
}

button {
  border: none;
  outline: none;
}

.btn-primary {
  padding: 0.5rem 1.5rem;
  background: linear-gradient(100deg, #1A9CDA 0%, #1674BA 104.82%);
  border: 4px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 2rem;
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  width: auto;
  box-sizing: unset;
}
@media (max-width: 600px) {
  .btn-primary {
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
  }
}

.btn-secondary {
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 2rem;
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  width: auto;
  box-sizing: unset;
}
@media (max-width: 600px) {
  .btn-secondary {
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
}
.logo img {
  height: 4rem;
  margin-right: 1.5rem;
}
@media (max-width: 600px) {
  .logo img {
    height: 2rem;
    margin-right: 0.35rem;
  }
}
.logo .wordmark {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 600px) {
  .logo .wordmark {
    font-size: 0.85rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .logo .wordmark {
    font-size: 1rem;
  }
}
.logo .wordmark span {
  font-weight: 700;
}

nav {
  background-color: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10000;
}
nav .navbar {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  nav .navbar {
    padding: 1rem 0;
    flex-direction: column;
    gap: 1rem;
  }
}
nav .navbar .menu {
  display: flex;
}
nav .navbar .menu ul {
  display: flex;
  list-style: none;
  align-items: center;
}
@media (max-width: 600px) {
  nav .navbar .menu ul {
    width: 100%;
    justify-content: flex-end;
    padding-top: 1rem;
  }
}
nav .navbar .menu ul li {
  margin-right: 3.5rem;
}
@media (max-width: 600px) {
  nav .navbar .menu ul li {
    margin-right: 0rem;
    margin-left: 2rem;
    text-align: left;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  nav .navbar .menu ul li {
    margin-right: 1.5rem;
  }
}
nav .navbar .menu ul li a {
  opacity: 0.5;
  font-size: 1rem;
}
nav .navbar .menu ul li .active {
  opacity: 1;
}
nav .navbar .menu ul li:nth-child(3) {
  margin-right: 0;
}
@media (max-width: 600px) {
  nav .navbar .menu ul li:nth-child(3) {
    position: absolute;
    right: 5%;
    top: 1rem;
    display: block;
  }
}

/*
.mobile-bottom-nav{
    position: fixed;
    bottom: 0;
    padding: 0.75rem 0rem;
    display: flex;
    flex-direction: column;
    width: 100vw;
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(5px); 
    ul{
        list-style: none;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        a{
            font-size: 1rem;
        }
    }
}
*/
footer .world {
  display: flex;
  gap: 6rem;
}
@media (max-width: 600px) {
  footer .world {
    flex-direction: column;
    gap: 1rem;
  }
}
footer .world .left .map-canvas {
  text-align: center;
}
footer .world .left .map-canvas img {
  display: none;
}
.no-canvas footer .world .left .map-canvas img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
footer .world .left #canvas-map {
  max-width: 100%;
  margin: 0 auto;
}
footer .world .right {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 600px) {
  footer .world .right {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  footer .world .right {
    padding: 2rem 0;
  }
}
footer .world .right p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 144%;
}
@media (max-width: 600px) {
  footer .world .right p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  footer .world .right p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
footer .world .right .link {
  width: auto;
}
@media (max-width: 600px) {
  footer .world .right .link {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  footer .world .right .link {
    margin-bottom: 3rem;
  }
}
footer .world .right .link .underline {
  height: 1.5px;
  width: 230px;
  background-color: #fff;
  margin-top: 7px;
}
footer .world .right .socials {
  width: 80px;
  display: flex;
  justify-content: space-between;
}
footer .world .right .socials a {
  opacity: 0.8;
}
footer .world .right .socials a:hover {
  opacity: 1;
}
footer .world .right .socials a:nth-child(3) {
  display: none;
}
footer .contacts {
  display: flex;
  justify-content: space-between;
  padding: 6rem 0;
}
@media (max-width: 600px) {
  footer .contacts {
    flex-direction: column;
    padding: 3rem 0;
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
  footer .contacts .contact {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  footer .contacts .contact {
    width: 30%;
  }
}
footer .contacts .contact h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  footer .contacts .contact {
    font-size: 1.125rem;
  }
}
footer .contacts .contact .divider {
  height: 4px;
  width: 2rem;
  background-color: #F8C017;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  footer .contacts .contact .divider {
    margin-bottom: 0.75rem;
  }
}
footer .contacts .contact .names {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  footer .contacts .contact .names {
    opacity: 0.75;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  footer .contacts .contact .names {
    flex-direction: column;
    padding-top: 1rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  footer .contacts .contact .names .name {
    margin-bottom: 1.5rem;
  }
}
footer .contacts .contact .names .name p {
  margin-bottom: 1rem;
}
footer .contacts .contact .names .name a {
  font-size: 1rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  footer .contacts .contact .names .name a {
    opacity: 0.75;
  }
}
footer .bottom {
  padding: 2rem 0;
  padding-bottom: 6rem;
}
@media (max-width: 600px) {
  footer .bottom {
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  footer .bottom {
    padding-bottom: 3rem;
  }
}
footer .bottom .logo {
  padding-bottom: 4rem;
}
@media (max-width: 600px) {
  footer .bottom .logo {
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  footer .bottom .logo {
    padding-bottom: 2rem;
  }
}
footer .bottom .info {
  display: flex;
  padding: 0;
  justify-content: space-between;
  padding-block: 2rem;
}
@media (max-width: 600px) {
  footer .bottom .info {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  footer .bottom .info .left p {
    padding-bottom: 2.5rem;
  }
}
footer .bottom .info .right {
  text-align: right;
}
@media (max-width: 600px) {
  footer .bottom .info .right {
    text-align: left;
  }
}
footer .bottom .info .right p {
  opacity: 0.5;
}
footer .bottom .info .right a {
  opacity: 1;
}
footer .bottom .info .right .underline {
  height: 1.5px;
  width: 102px;
  background-color: #fff;
  margin-top: 7px;
}

@media screen and (min-width: 600px) and (max-width: 1100px) {
  main {
    padding-top: 8rem;
  }
}
main nav {
  position: sticky;
  margin-top: 15%;
}
@media (max-width: 600px) {
  main nav {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  main nav {
    display: block;
    width: 25%;
    padding-top: 5%;
  }
}
@media (max-width: 600px) {
  main nav ul {
    display: flex;
    padding-top: 25%;
    gap: 1.5rem;
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }
}
main nav ul li {
  list-style: none;
  margin-bottom: 2rem;
  opacity: 0.75;
}
main nav ul li:hover {
  opacity: 1;
}
main .committees {
  margin-top: -25%;
}
@media (max-width: 600px) {
  main .committees {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 12rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  main .committees {
    transform: translateY(-3%);
  }
}
main .comm {
  position: relative;
  width: 60vw;
  height: 80vh;
  border-radius: 1rem;
  border: 4px solid rgba(255, 255, 255, 0.2);
  background: rgba(36, 36, 36, 0.9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  margin-bottom: 5rem;
  left: 25%;
}
main .comm:nth-child(1) {
  top: 25%;
}
@media (max-width: 600px) {
  main .comm {
    width: 100%;
    left: 0;
    height: 50rem;
  }
}
main .comm .objects {
  position: absolute;
  right: 0;
  top: 20%;
  z-index: -1;
  display: flex;
  flex-direction: column;
  height: 50vh;
  transform: scale(1.5);
  align-items: center;
  opacity: 0.25;
}
@media (max-width: 600px) {
  main .comm .objects {
    transform: scale(1.25);
    left: 25%;
    top: 50%;
  }
}
main .comm .box {
  position: absolute;
  width: 60vw;
  height: 100%;
  padding: 4rem;
}
@media (max-width: 600px) {
  main .comm .box {
    width: 100%;
    padding: 1rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  main .comm .box {
    padding: 4rem 2rem;
  }
}
main .comm .box img {
  height: 3rem;
  filter: invert(1);
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  main .comm .box img {
    margin-top: 1.5rem;
  }
}
main .comm .box h2 {
  margin-bottom: 3rem;
}
@media (max-width: 600px) {
  main .comm .box h2 {
    margin-bottom: 1.5rem;
  }
}
main .comm .box .row {
  display: flex;
  gap: 4rem;
}
@media (max-width: 600px) {
  main .comm .box .row {
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  main .comm .box .row {
    gap: 1.25rem;
  }
}
main .comm .box .row img {
  height: 35vh;
  filter: invert(0);
  max-width: 25vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  main .comm .box .row img {
    height: 25vh;
    max-width: 100vw;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  main .comm .box .row img {
    height: 25vh;
  }
}
main .comm .box .row p {
  font-size: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  main .comm .box .row p {
    font-size: 1.125rem;
  }
}

.random {
  padding: 10rem 0;
  display: flex;
  gap: 2rem;
}
@media (max-width: 600px) {
  .random {
    padding: 5rem 0;
    flex-direction: column;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .random {
    padding: 2rem 0;
  }
}
.random .left {
  background-color: #F4F4F2;
  height: 15vh;
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
}
@media (max-width: 600px) {
  .random .left {
    padding: 2rem;
  }
}
.random .left h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
}
.random .right p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 192%;
  opacity: 0.8;
  padding-bottom: 4rem;
}
@media (max-width: 600px) {
  .random .right p {
    font-size: 0.85rem;
    padding-bottom: 2rem;
  }
}/*# sourceMappingURL=committees.css.map */