.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow:hover {
  border-color: white;
}

.glide__arrow--left {
  left: 2em;
}

.glide__arrow--right {
  right: 2em;
}

.glide__arrow--disabled {
  opacity: 0.33;
}

.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}

.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}

.glide__bullet:focus {
  outline: none;
}

.glide__bullet:hover,
.glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}

.glide__bullet--active {
  background-color: white;
}

.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}

.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.section {
  padding: 150px 0;
}

@media screen and (max-width: 568px) {
  .section {
    padding: 80px 0;
  }
}

.section__title {
  z-index: 1;
  position: relative;
  font-size: 48px;
  text-transform: uppercase;
  padding-bottom: 120px;
}

.section__title:before {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(20%, 30%);
  font-size: 80px;
  color: rgba(173, 173, 173, 0.2);
}

@media screen and (max-width: 568px) {
  .section__title {
    padding-bottom: 60px;
    font-size: 32px;
    text-align: center;
  }

  .section__title:before {
    font-size: 48px;
    left: 50%;
    transform: translate(-50%, 30%);
  }
}

.section__main__visual {
  background-color: #f0f0f0;
  height: 100vh;
}

.section__main__visual .glide__slides {
  height: calc( 100vh - 45px );
  min-height: 600px;
  align-items: center;
  background-color: #000;
}

@media screen and (max-width: 568px) {
  .section__main__visual .glide__slides {
    height: 100vh;
  }
}

.section__main__visual .glide__slide {
  height: 100%;
  transform: scale(1);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transition: transform 4s;
}

.section__main__visual .glide__slide.glide__slide--active {
  transform: scale(1.03);
}

.section__column {
  margin-top: -80px;
}

@media screen and (max-width: 568px) {
  .section__column {
    margin-top: -80px;
  }
}

.wrap__main__column {
  z-index: 9;
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
}

.main__column__anchor {
  overflow: hidden;
  width: 100%;
  height: 70px;
  line-height: 70px;
  background-color: #fff;
  border-left: 1px solid #f0f0f0;
}

.main__column__anchor:first-child {
  border-left: 0;
}

@media screen and (max-width: 568px) {
  .main__column__anchor {
    line-height: 2;
    padding-top: 14px;
  }
}

.wrap__column .column__title {
  font-size: 21px;
  font-weight: bold;
}

.wrap__column .column__title i {
  margin-right: 10px;
}

@media screen and (max-width: 568px) {
  .wrap__column .column__title {
    font-size: 16px;
  }

  .wrap__column .column__title i {
    margin-right: 0;
    display: block;
  }
}

.section__curriculum {
  background-color: #f0f0f0;
  height: 650px;
}

.section__curriculum .wrap {
  display: flex;
  justify-content: space-between;
}

.section__curriculum .wrap__img {
  max-width: 50%;
  margin-left: 30px;
}

.section__curriculum .wrap__img img {
  margin-top: -60px;
}

.section__curriculum .section__title:before {
  content: "curriculum";
}

@media screen and (max-width: 568px) {
  .section__curriculum {
    height: auto;
  }

  .section__curriculum .wrap {
    display: block;
  }

  .section__curriculum .wrap__img {
    margin-left: 0;
    max-width: 100%;
  }

  .section__curriculum .wrap__img img {
    margin-top: 30px;
  }
}

.curriculum__anchor {
  display: block;
  background-color: #fff;
  padding: 20px 0;
  width: 320px;
  text-align: center;
  margin-bottom: 8px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.curriculum__anchor i.fas {
  font-size: 24px;
  color: #adadad;
}

.curriculum__anchor .curriculum__title {
  padding-left: 8px;
  font-size: 20px;
  padding-top: 20px;
}

@media screen and (max-width: 568px) {
  .curriculum__anchor {
    width: 100%;
  }
}

.section__gallery {
  text-align: center;
}

.section__gallery .section__title:before {
  right: auto;
  left: 40%;
  content: "gallery";
}

.gallery__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 568px) {
  .gallery__list {
    display: block;
  }
}

.gallery__item {
  width: calc( 25% - 8px);
  height: 620px;
  overflow: hidden;
  transform: rotate(-6deg);
  transition: transform 0.4s;
}

@media screen and (max-width: 568px) {
  .gallery__item {
    width: 100%;
    height: 120px;
    transform: rotate(0);
    margin-bottom: 8px;
  }
}

.gallery__item:hover {
  transform: rotate(0deg);
}

.gallery__item:hover .gallery__category__title {
  transform: rotate(0deg);
}

.gallery__item a {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  display: block;
  height: 100%;
  transition: transform 0.4s;
}

.gallery__item .gallery__anchor__scale {
  position: relative;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.gallery__item .gallery__category__title {
  transition: transform 0.4s;
  transform: rotate(6deg);
  position: absolute;
  bottom: 48px;
  left: 24px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
}

.gallery__item .gallery__category__title .smaller {
  font-size: 16px;
}

@media screen and (max-width: 568px) {
  .gallery__item .gallery__category__title {
    left: 16px;
    bottom: 8px;
    font-size: 26px;
    transform: rotate(0);
  }

  .gallery__item .gallery__category__title .smaller {
    font-size: 14px;
  }
}

.section__news {
  background-color: #f0f0f0;
}

.section__news .section__title {
  padding-bottom: 100px;
}

.section__news .section__title:before {
  content: "NEWS";
  left: 5%;
}

.section__news .news__item__img {
  height: 200px;
  background-position: center;
  background-size: cover;
}

.section__news .news__item__title {
  font-size: 24px;
  padding: 16px 0 8px;
  font-weight: bold;
}

.section__news .news__item__desc {
  color: #adadad;
  padding-bottom: 8px;
}

.section__news .news__item__date {
  font-size: 14px;
  color: #acacac;
}

.banner__pass {
  text-align: center;
  background-image: url("/resources/imgs/main/bg_contact.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.wrap__scale {
  padding: 80px 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
}

.banner__pass__title {
  font-size: 48px;
}

@media screen and (max-width: 568px) {
  .banner__pass__title {
    font-size: 32px;
  }
}

.banner__pass__desc {
  font-size: 24px;
  padding: 16px 0 40px;
}

@media screen and (max-width: 568px) {
  .banner__pass__desc {
    font-size: 18px;
  }
}

.banner__pass__anchor {
  font-size: 20px;
  background-color: #fff;
  display: inline-block;
  padding: 16px 24px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner__pass__anchor:hover {
  background-color: #000;
  color: #fed136;
}

.section__contact {
  padding: 60px 0;
}

.section__contact .wrap {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 568px) {
  .section__contact .wrap {
    display: block;
  }
}

.section__contact .wrap__number {
  padding: 24px 80px;
  border-left: 1px solid #adadad;
  text-align: center;
}

.section__contact .wrap__number:first-child {
  border-left: none;
}

.section__contact .wrap__number i {
  font-size: 56px;
}

.section__contact .wrap__number .contact__title {
  font-size: 32px;
  font-weight: bold;
  padding: 24px 0 16px;
}

.section__contact .wrap__number .contact__desc {
  font-size: 20px;
}

@media screen and (max-width: 568px) {
  .section__contact .wrap__number {
    border-left: none;
    border-top: 1px solid #adadad;
    padding: 24px 12px;
  }

  .section__contact .wrap__number:first-child {
    border-top: none;
  }

  .section__contact .wrap__number i {
    font-size: 48px;
  }

  .section__contact .wrap__number .contact__title {
    font-size: 24px;
    font-weight: bold;
    padding: 24px 0 16px;
  }

  .section__contact .wrap__number .contact__desc {
    font-size: 16px;
  }
}

