@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

a:hover {
  text-decoration: none;
}

.o-header .navbar .collapse .navbar-nav li a {
  color: white;
}

.o-header .navbar .collapse .navbar-nav .dropdown-menu a {
  color: black;
}

.o-header .navbar .collapse .navbar-nav .dropdown-menu a:focus {
  color: white;
  background-color: #2BABE2;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.navbar-brand {
  width: 20%;
}

.navbar-brand img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .navbar-brand {
    width: 60%;
  }
}

.o-header {
  background-color: black;
  height: 10vh;
  display: grid;
}

@media only screen and (max-width: 768px) {
  .o-header {
    height: auto;
  }
}

.o-header .navbar-nav {
  width: 60%;
  justify-content: space-around;
}

@media only screen and (max-width: 768px) {
  .o-header .navbar-nav {
    width: 100%;
  }
}

.o-header .nav-item {
  font-size: 1.2rem;
  font-weight: 500;
}

.c-hero {
  background-image: url(../bg.png);
  background-size: cover;
  background-position: center;
  height: 70vh;
  position: relative;
}

.c-hero__overlay {
  background-color: black;
  height: 70vh;
  opacity: .3;
}

.c-hero__content {
  position: absolute;
  top: 50%;
  color: white;
  margin-left: 10%;
  width: 60%;
}

@media only screen and (max-width: 768px) {
  .c-hero__content {
    width: 80%;
  }
}

.c-hero__content h3 {
  text-transform: uppercase;
  background-color: #4DB2EC;
  display: inline-block;
  padding: .6rem .6rem;
  font-size: 1.2rem;
  font-style: italic;
}

@media only screen and (max-width: 768px) {
  .c-hero__content h3 {
    font-size: 1rem;
  }
}

.c-hero__content h1 {
  font-weight: 700;
  font-size: 3.6rem;
  width: 80%;
}

@media only screen and (max-width: 768px) {
  .c-hero__content h1 {
    width: 100%;
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}

.c-hero__content h6 {
  font-size: 1rem;
  margin-top: 1rem;
}

@media only screen and (max-width: 768px) {
  .c-hero__content h6 {
    font-size: .8rem;
  }
}

.c-main {
  height: auto;
  margin-top: 5rem;
}

@media only screen and (max-width: 768px) {
  .c-main {
    margin-top: 2rem;
  }
}

.c-main__article {
  position: relative;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .c-main__article {
    margin: 0;
    padding: 0;
  }
}

.c-main__article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .c-main__article img {
    height: auto;
    object-fit: cover;
  }
}

.c-main__article--content {
  display: flex;
  flex-direction: column;
  position: absolute;
  justify-content: center;
  padding: 2rem;
  bottom: 0;
  background-color: white;
  height: 40%;
  width: 50%;
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
  .c-main__article--content {
    position: relative;
    width: 100%;
    height: 40%;
    padding: 1rem;
  }
}

.c-main__article--content h2 {
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .c-main__article--content h2 {
    font-size: 1rem;
  }
}

.c-main__article--content h6 {
  margin: 1rem 0;
}

@media only screen and (max-width: 768px) {
  .c-main__article--content h6 {
    font-size: .8rem;
    margin: .6rem 0;
  }
}

.c-main__aside {
  padding: 0;
  margin-top: 1rem;
}

.c-main__aside img {
  height: 95%;
}

.c-main__aside--bottom {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  padding: 1rem;
  width: 100%;
}

.c-main__aside--article {
  position: relative;
  text-align: left;
  color: white;
  height: calc(100%/3);
  width: 80%;
}

@media only screen and (max-width: 768px) {
  .c-main__aside--article {
    width: 100%;
  }
}

.c-main__aside--article:not(:last-child) {
  margin-bottom: 1rem;
}

.c-main__aside--article h5 {
  color: white;
  font-weight: 800;
}

.c-main__aside--article div {
  display: flex;
  justify-content: space-between;
  color: white;
}

.c-main__aside--article img {
  width: 100%;
  filter: brightness(90%);
  object-fit: cover;
}

.c-recent {
  margin: 5rem 0;
  min-height: 80vh;
}

.c-recent--video {
  margin: 1rem;
  min-height: 50vh;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .c-recent iframe {
    width: 100%;
    height: 5;
  }
}

.c-recent h2 {
  font-weight: 700;
  font-size: 1.8rem;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .c-recent h2 {
    text-align: left;
  }
}

.c-recent__article {
  height: 30vh;
}

@media only screen and (max-width: 768px) {
  .c-recent__article {
    margin-top: 2rem;
  }
  .c-recent__article:first-child {
    margin-top: 0;
  }
}

@media only screen and (max-width: 768px) {
  .c-recent__article {
    height: auto;
  }
}

.c-recent__article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .c-recent__article img {
    height: auto;
  }
}

.c-recent span {
  background-color: #2BABE2;
  height: 1.2rem;
  width: 7rem;
  position: absolute;
  margin-top: 1.2rem;
  margin-left: 2rem;
}

@media only screen and (max-width: 768px) {
  .c-recent span {
    margin-left: 3rem;
  }
}

.c-recent video {
  width: 100%;
}

.c-recent .col-12 {
  margin-top: 1rem;
}

.c-recent__container {
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  min-height: 30vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-recent__container h5 {
  font-weight: 700;
  margin-top: 3rem;
}

.c-recent__container p {
  font-size: .8rem;
  margin-top: .8rem;
}

.c-recent__container h6:first-child {
  position: absolute;
  top: 2rem;
}

.c-artikel {
  margin-top: 5rem;
}

@media only screen and (max-width: 768px) {
  .c-artikel {
    margin: 2rem 0;
  }
}

.c-artikel__left {
  text-align: center;
}

.c-artikel__left img {
  width: 100px;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 768px) {
  .c-artikel__left {
    display: none;
  }
}

.c-artikel__right {
  display: none;
  text-align: center;
}

.c-artikel__right img {
  width: 100px;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 768px) {
  .c-artikel__right {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .c-artikel__center {
    margin: 2rem 0;
  }
}

.c-artikel__center--description {
  font-weight: 700;
  font-size: 1.4rem;
  width: 70%;
}

@media only screen and (max-width: 768px) {
  .c-artikel__center--description {
    width: 90%;
    font-size: 1rem;
    margin-left: 5%;
  }
}

.c-artikel__center--title {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.8rem;
  width: 70%;
  margin-left: 5%;
}

@media only screen and (max-width: 768px) {
  .c-artikel__center--title {
    width: 90%;
    font-size: 1.2rem;
  }
}

.c-artikel__center--content {
  margin-left: 5%;
  width: 60%;
  margin-top: 2rem;
}

@media only screen and (max-width: 768px) {
  .c-artikel__center--content {
    width: 90%;
    font-size: 1rem;
  }
}

.c-artikel__center--content img {
  margin-left: -5rem;
  height: auto;
  margin-top: 2rem;
}

@media only screen and (max-width: 768px) {
  .c-artikel__center--content img {
    width: 100%;
    margin-left: 0rem;
  }
}

.c-artikel__center--content .wp-caption-text {
  margin-left: -5rem;
  font-style: italic;
}

@media only screen and (max-width: 768px) {
  .c-artikel__center--content .wp-caption-text {
    margin-left: 0rem;
  }
}

.c-artikel__center--content .wp-caption {
  width: 140% !important;
}

@media only screen and (max-width: 992px) {
  .c-artikel__center--content .wp-caption {
    width: 100% !important;
  }
}

.c-artikel__center--image {
  font-style: italic;
  margin-top: 2rem;
  width: 100%;
}

.c-artikel__center--image img {
  width: 80%;
}

@media only screen and (max-width: 768px) {
  .c-artikel__center--image img {
    width: 100%;
  }
}

.c-artikel__center--image h6 {
  margin-top: 1rem;
}

.c-leesook {
  margin: 5rem 0;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .c-leesook {
    margin: 2rem 0;
  }
}

.c-leesook h4 {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .c-leesook h4 {
    margin-left: 1rem;
  }
}

.c-leesook span {
  background-color: #2BABE2;
  height: 1.2rem;
  width: 7rem;
  position: absolute;
  margin-top: 1.2rem;
  margin-left: 3rem;
}

@media only screen and (max-width: 768px) {
  .c-leesook span {
    margin-left: 4rem;
  }
}

.c-leesook .row {
  margin-top: 8rem;
}

@media only screen and (max-width: 768px) {
  .c-leesook .row {
    margin-top: 5rem;
  }
}

.row .c-leesook__ga {
  width: 10rem;
  margin-left: 10rem;
}

@media only screen and (max-width: 768px) {
  .row .c-leesook__ga {
    margin-left: 11rem;
  }
}

.row .c-leesook__a {
  width: 8rem;
  margin-left: 5rem;
}

@media only screen and (max-width: 768px) {
  .row .c-leesook__a {
    margin-left: 6rem;
  }
}

.row .c-leesook__h {
  width: 8rem;
  margin-left: 4rem;
}

@media only screen and (max-width: 768px) {
  .row .c-leesook__h {
    margin-left: 5rem;
  }
}

.row .c-leesook__e {
  width: 5rem;
  margin-left: 2.6rem;
}

@media only screen and (max-width: 768px) {
  .row .c-leesook__e {
    margin-left: 3.6rem;
  }
}

.row .c-leesook__g {
  width: 10rem;
  margin-left: 6rem;
}

@media only screen and (max-width: 768px) {
  .row .c-leesook__g {
    margin-left: 7rem;
  }
}

.row .c-leesook__i {
  width: 8rem;
  margin-left: 3rem;
}

@media only screen and (max-width: 768px) {
  .row .c-leesook__i {
    margin-left: 4rem;
  }
}

.row .c-leesook__l {
  width: 5rem;
  margin-left: 3rem;
}

@media only screen and (max-width: 768px) {
  .row .c-leesook__l {
    margin-left: 4rem;
  }
}

.row .c-leesook__lo {
  width: 10rem;
  margin-left: 3rem;
}

@media only screen and (max-width: 768px) {
  .row .c-leesook__lo {
    margin-left: 4rem;
  }
}

.c-leesook__container {
  display: flex;
  flex-direction: row;
  margin-top: 2rem;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .c-leesook__container {
    flex-wrap: wrap;
  }
}

.c-leesook__container .col-12 {
  margin-top: 2rem;
}

.c-leesook__article {
  position: relative;
  text-align: left;
  color: white;
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .c-leesook__article {
    margin: 1rem 0;
  }
}

.c-leesook__article:not(:last-child) {
  margin-bottom: 1rem;
}

.c-leesook__article h5 {
  color: white;
  font-weight: 800;
  font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .c-leesook__article h5 {
    font-size: 1.2rem;
  }
}

.c-leesook__article img {
  width: 100%;
  height: 100%;
  filter: brightness(80%);
  object-fit: cover;
}

.c-leesook__bottom {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  padding: 1rem 2rem;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .c-leesook__bottom {
    padding: 2rem 1rem;
  }
}

.c-leesook__bottom div {
  display: flex;
  justify-content: space-between;
}

.c-leesook__last {
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: white;
}

.c-leesook__last h6 {
  font-size: .9rem;
}

.c-sponsors {
  margin-top: auto;
}

.c-sponsors .row {
  justify-content: center;
  padding: 2rem 0;
}

.c-sponsors h4 {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .c-sponsors h4 {
    font-size: 1.6rem;
  }
}

.c-sponsors span {
  background-color: #2BABE2;
  height: 1.2rem;
  width: 14rem;
  position: absolute;
  margin-top: 1.2rem;
  margin-left: 5rem;
}

@media only screen and (max-width: 768px) {
  .c-sponsors span {
    width: 10rem;
    margin-top: 1rem;
  }
}

.c-sponsors__container {
  display: flex;
  flex-direction: row;
  margin-top: 2rem;
}

.c-sponsors__container img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .c-sponsors__container {
    flex-wrap: wrap;
  }
  .c-sponsors__container img {
    width: 100%;
    margin-top: 1rem;
  }
}

.c-sponsors__container .col-12:last-child {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .c-sponsors__container .col-12:last-child {
    margin-top: 2rem;
  }
}

footer {
  background-color: black;
  height: auto;
  margin-top: 5rem;
  padding: 2rem 0 2rem 5%;
}

@media only screen and (max-width: 768px) {
  footer {
    padding: 2rem 0 2rem 0;
  }
}

footer .footer__left {
  color: white;
}

footer .footer__left img {
  width: 80%;
  margin-bottom: 1rem;
}

footer .footer__left p {
  color: white;
  margin-bottom: 5rem;
}

@media only screen and (max-width: 768px) {
  footer .footer__left p {
    margin-bottom: 3rem;
  }
}

footer .footer__left h6 {
  position: absolute;
  bottom: 0;
}

footer .footer__right {
  color: white;
}

@media only screen and (max-width: 768px) {
  footer .footer__right {
    margin-top: 3rem;
  }
}

footer .footer__right .c-socials {
  margin-top: -8px;
}

@media only screen and (max-width: 768px) {
  footer .footer__right .c-socials {
    margin-bottom: 3rem;
  }
}

footer .footer__right .c-socials a {
  color: white;
}

footer .footer__right .c-socials a:hover {
  color: #2BABE2;
}

footer .footer__right .c-socials i {
  font-size: 1.6rem;
  margin-right: .6rem;
  color: white;
}

footer .footer__right .c-socials i:hover {
  color: #2BABE2;
}

footer .footer__right p {
  color: white;
}

footer .footer__right h6 {
  position: absolute;
  bottom: 0;
}

footer .footer__right h6:hover {
  color: #3650dc;
}

.c-contact {
  margin: 6rem 0;
}

@media only screen and (max-width: 768px) {
  .c-contact h1 {
    font-size: 2rem;
    margin-top: 2rem;
  }
}

.c-contact form {
  margin-top: 1rem;
}

.c-contact input {
  padding: 1rem;
  font-size: 1rem;
  border: none;
  border-bottom: 2px solid black;
}

@media only screen and (max-width: 768px) {
  .c-contact input[type=text] {
    width: 100%;
  }
}

.c-contact textarea {
  padding: 1rem;
  border: none;
  border-bottom: 2px solid black;
  margin: 2rem 0;
  width: 85%;
}

@media only screen and (max-width: 768px) {
  .c-contact textarea {
    width: 100%;
  }
}

.c-contact input[type=submit] {
  background-color: #2BABE2;
  color: white;
  padding: .8rem 1.6rem;
  border: none;
  font-weight: 600;
}

html :where(img[class*=wp-image-]) {
  width: 140%;
}
