/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * BANNER
 * MAIN
 * ABOUT
 * CALENDAR
 * NEWS
 * INSTRUCTIONS
 * LINK
 **/
/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner {
  position: relative;
}

.banner::after {
  content: '';
  width: auto;
  height: 50%;
  background: url(../images/banner-bg.jpg) center center repeat;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner-pic {
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 992px) {
  .banner-pic {
    height: 800px;
  }
}

.banner-txt {
  width: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.banner-txt .page-header {
  text-align: left;
  padding: 0 15px;
}

.banner-txt .page-header>span {
  color: #025c64;
  font-size: 1.1875rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
}

.banner-txt h2 {
  display: inline-block;
  color: #000000;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
}

.banner-txt h2 span {
  color: #4969ae;
  position: relative;
}

.banner-txt h2 span::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/banner-icon.svg) no-repeat;
  position: absolute;
  right: -10px;
  bottom: 5px;
}

.banner-txt p {
  color: #4c4c4c;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 2rem;
  margin-bottom: 2.25rem;
  position: relative;
}

@media (min-width: 768px) {
  .banner-txt h2 {
    font-size: 3rem;
  }

  .banner-txt p {
    width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-txt img {
    width: 70%;
  }
}

@media (min-width: 992px) {
  .banner-txt {
    left: 6%;
  }

  .banner-txt h2 {
    font-size: 2.625rem;
  }

  .banner-txt img {
    width: auto;
  }
}

.banner .swiper-slide-active .banner-pic {
  -webkit-animation: zoom_animation 15s;
  animation: zoom_animation 15s;
}

.banner .swiper-pagination {
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 1rem;
}

.banner .swiper-pagination-bullet {
  border: 1px solid #aaaaaa;
  background-color: transparent;
  border-radius: 0;
  color: #ffffff;
  font-size: 1.125rem;
  text-align: center;
  width: 50px;
  height: 5px;
  margin: 0 1rem !important;
  opacity: 1;
}

.banner .swiper-pagination-bullet-active {
  opacity: 1;
  border-color: #79c293;
  background-color: #79c293;
}

@media (min-width: 992px) {
  .banner .swiper-pagination {
    width: auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: auto;
    left: auto;
    right: 1rem;
  }

  .banner .swiper-pagination-bullet {
    display: block;
    width: 5px;
    height: 50px;
    margin: 1rem 0 !important;
  }
}

@media (min-width: 1920px) {
  .banner .swiper-pagination {
    right: 2rem;
  }
}

.banner .scroll {
  cursor: pointer;
  background: url(../images/scrolldown.svg);
  width: 10px;
  height: 220px;
  position: absolute;
  right: 1rem;
  bottom: 0;
  z-index: 4;
  display: none;
}

@media (min-width: 768px) {
  .banner .scroll {
    display: block;
  }
}

@media (min-width: 1920px) {
  .banner .scroll {
    right: 2rem;
  }
}

@-webkit-keyframes zoom_animation {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoom_animation {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
main {
  padding: 0;
}

main h2 {
  color: #4969ae;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
}

main h2 span {
  color: #000000;
  font-size: 1.375rem;
  display: block;
  margin-top: 1rem;
}

@media (min-width: 576px) {
  main h2 span {
    display: inline-block;
    margin-top: 0;
  }
}


/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.index-about {
  background: url(../images/index-about-bg.jpg) center top repeat;
  padding: 3rem 0;
}

.index-about-pic {
  text-align: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.index-about-txt h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.index-about-txt h2 span {
  display: block;
  color: #c6e5d0;
  margin-top: 1rem;
}

.index-about-txt p {
  color: #ffffff;
  line-height: 2rem;
  margin-bottom: 1rem;
}

.index-about-txt .btn {
  color: #ffffff;
  width: auto;
  margin-left: 0;
  position: relative;
  z-index: 2;
}

.index-about-txt .btn span {
  background: url(../images/arrow-btn-white.svg);
}

.index-about-txt .btn:hover,
.index-about-txt .btn:focus,
.index-about-txt .btn:active {
  background-color: transparent !important;
  margin-left: 0.5rem;
}

@media (min-width: 992px) {
  .index-about {
    padding: 5.5rem 0 5rem;
  }

  .index-about-pic {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .index-about>.container {
    padding-bottom: 1rem;
    position: relative;
  }

  .index-about>.container::after {
    content: '';
    width: auto;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .index-about-pic img {
    position: absolute;
    top: -15px;
    right: 0;
  }
}

/*------------------------------------*\
    CALENDAR
\*------------------------------------*/
.index-calendar {
  padding: 5rem 0;
}

.index-calendar h2 {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding: 1rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 3rem;
}

.index-calendar h2 span {
  margin-top: 1rem;
}

.index-calendar .calendar-body {
  position: relative;
}

.index-calendar .calendar-arrow {
  text-align: center;
}

.index-calendar .calendar-arrow .next img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (min-width: 576px) {
  .index-calendar h2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .index-calendar h2 span {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

@media (min-width: 992px) {
  .index-calendar .calendar-body {
    padding: 0 2.5rem;
  }

  .index-calendar .calendar-arrow .prev {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    z-index: 2;
  }

  .index-calendar .calendar-arrow .next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    z-index: 2;
  }
}

/*------------------------------------*\
    NEWS
\*------------------------------------*/
.index-news-header {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding: 1rem 0;
  margin-bottom: 3rem;
}

.index-news-header .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.index-news-header h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.index-news-header h2 span {
  margin-top: 1rem;
}

.index-news-header .nav {
  padding: 1rem 0;
}

.index-news-header .nav li::before {
  content: '/';
  padding: 0 0.5rem;
}

.index-news-header .nav li a {
  font-size: 1.125rem;
}

.index-news-header .nav li a.active {
  color: #4969ae;
}

.index-news-header .nav li:first-child::before {
  display: none;
}

.index-news-header .btn {
  border: none;
  width: auto;
}

.index-news-header .btn:hover,
.index-news-header .btn:focus {
  border: none !important;
  background-color: transparent !important;
  color: #f7c49d;
}

.index-news-header .btn:hover span,
.index-news-header .btn:focus span {
  background: url(../images/arrow-btn.svg);
}

@media (min-width: 576px) {
  .index-news-header h2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .index-news-header h2 span {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

@media (min-width: 992px) {
  .index-news {
    padding-top: 6rem;
  }

  .index-news-header h2 {
    border-right: 1px solid rgba(0, 0, 0, 0.5);
  }

  .index-news-header .nav {
    padding-left: 1rem;
  }

  .index-news-header-btn {
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    text-align: right;
  }
}

/*------------------------------------*\
    INSTRUCTIONS
\*------------------------------------*/
.index-instructions {
  background: url(../images/bg-02.jpg) center center repeat;
  padding: 3rem 0;
}

.index-instructions-txt {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

.index-instructions-txt h2 {
  font-size: 2rem;
  letter-spacing: 0.05rem;
  margin-bottom: 2rem;
}

.index-instructions-txt p {
  line-height: 1.8rem;
  margin-bottom: 3rem;
}

.index-instructions .swiper-container {
  padding: 0;
}

.index-instructions .swiper-button-next,
.index-instructions .swiper-button-prev {
  width: 30px;
  height: 30px;
}

.index-instructions .swiper-button-prev,
.index-instructions .swiper-container-rtl .index-instructions .swiper-button-next {
  background-image: url(../images/prev.svg);
}

.index-instructions .swiper-button-next,
.index-instructions .swiper-container-rtl .index-instructions .swiper-button-prev {
  background-image: url(../images/next.svg);
}

.index-instructions .swiper-group {
  position: relative;
  margin-bottom: 1rem;
}

.index-instructions .swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.index-instructions .swiper-pagination-bullet {
  background: transparent;
  color: #999999;
  font-size: 1.125rem;
  width: auto;
  height: auto;
  padding: 0 0.5rem 0.5rem;
  opacity: 1;
}

.index-instructions .swiper-pagination-bullet:focus {
  outline: none;
}

.index-instructions .swiper-pagination-bullet-active {
  border-radius: 0;
  border-bottom: 1px solid #999999;
  background: transparent;
  color: #4969ae;
}

@media (min-width: 1200px) {
  .index-instructions {
    padding: 5rem 0;
  }

  .index-instructions-txt {
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 0;
    padding-right: 1rem;
    margin-bottom: 0;
  }

  .index-instructions .swiper-container {
    padding: 0 1rem;
  }
}

@media (min-width: 1680px) {
  .index-instructions-txt {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 21%;
    -ms-flex: 0 0 21%;
    flex: 0 0 21%;
    max-width: 21%;
  }

  .index-instructions-carousel {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 79%;
    -ms-flex: 0 0 79%;
    flex: 0 0 79%;
    max-width: 79%;
  }

  .index-instructions .swiper-container {
    padding: 0 2.5rem;
  }
}

/*------------------------------------*\
    LINK
\*------------------------------------*/
.index-link {
  padding: 3rem 0;
}