@font-face {
  font-family: "Calibri";
  src: url("fonts/calibri.ttf");
}


.box {
  flex-direction: row;
}

@media (max-width: 375px) {
  .column.is-4-desktop {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 375px) { 
  .column.is-4-desktop,
  .column.is-6-tablet {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  #home_highlight .columns {
    margin-left: 0;
    margin-right: 0;
  }

  #home_highlight .column {
    flex: 0 0 49%; 
    max-width: 49%;
    margin-bottom: -3rem;
  }

  #home_highlight .column:nth-child(5) {
    flex: 0 0 49%; /* ukuran sama */
    max-width: 49%;
    margin: 0 auto; /* posisi tengah*/
  }

  #home_highlight h1 {
    font-size: 1.5rem;
  }

  #home_highlight .image {
    border-radius: 10px;
  }

  #home_highlight .icon-text span {
    font-size: 0.9rem;
  }

  #home_event_banner_2{
    padding: 10px !important;
  }

  #home_content_2{
    margin-bottom: 2rem !important;
  }
}

.whatsapp-float{
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 35px;
  padding: 8px 0 0 3px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.whatsapp-float:hover{
  color: #6a3f91;
}

.card {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
} 

.number-circle {
  background-color: #6b4dc1;
  color: white;
  border-radius: 50%;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  margin-right: 10px;
}

.main-text {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
}

.sub-text {
  color: gray;
  font-size: 12px;
  margin-top: 4px;
}

.custom-paragraph {
  text-align: center;
  font-size: 1.25rem; 
  font-weight: 600; 
  margin: 2rem auto;
  width: fit-content; 
}


@media screen and (max-width: 375px) {
  .custom-paragraph {
      font-size: 1.1rem;
      font-weight: 700; 
      margin: 1.5rem auto; 
      width: fit-content; 
  }
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* box style */
.network-box {
  background: white;
  border-radius: 1rem;
  padding: 0.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.network-box:hover {
  transform: translateY(-5px);
}

/* image */
.network-item figure.image {
  margin: 0;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* logo besar sendiri (BII/VET) */
.network-item.large {
  grid-column: span 2;
}

.text-purple {
  color: #663399;
}

@media screen and (max-width: 1023px) {
  .network-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .network-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
  }
  
  .network-item.large {
      grid-column: span 2;
  }
}

.container {
  max-width: 1200px !important;
}

@media only screen and (max-width: 500px) {
  .number-circle {
      width: 75px;
      height: 30px;
      font-size: 18px;
  }
}

@media only screen and (min-width: 300px) {
  .card {
    margin-bottom: 10px;
  }
}

.button-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  min-width: 350px;
}
.dropdown.is-active .dropdown-menu,
.dropdown.is-hoverable:hover .dropdown-menu {
  display: block;
}
.button.is-primary {
  background-color: #6a3f91 !important;
}
.dropdown-content {
  border-radius: 10
  px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 0.5rem 0;
  background-color: white;
}
.dropdown-item {
  padding: 0.5rem 1rem;
  white-space: normal;
  word-wrap: break-word;
}

@media screen and (max-width: 300px) {
  .dropdown-menu {
      min-width: 280px;
      width: 90vw;
  }
} 

body, button, input, select, textarea {
  font-family: 'Calibri', Arial, sans-serif !important;
  font-weight:normal;
  font-style:normal;
  letter-spacing: 0.08em;
}

.text-color-normal{
  color: #4a4a4a !important;
}
.text-purple{
  color: #6a3f91 !important;
}
.text-border-purple{
  color: #6a3f91 !important;
  border-color: #6a3f91 !important;
}
.text-white{
  color: white !important;
}
.icon-text {
  align-items: flex-start;
  color: inherit;
  display: inline-flex;
  flex-wrap: wrap;
  line-height: 1.75rem;
  vertical-align: top;
}
.icon-text .icon {
  flex-grow: 0;
  flex-shrink: 0;
}
.icon-text .icon:not(:last-child) {
    margin-right: 0.5em;
}
.icon.before-text{
  margin-right: 0.5rem !important;
}
.width-128{
  width: 128px !important;
}
.width-200{
  width: 200px !important;
}
.padding-100{
  padding: 6rem !important;
}
.columns.is-vbottom {
  align-items: flex-end;
}
table.is-completely-borderless td,
table.is-completely-borderless th,
table.is-completely-borderless tr {
  border: 0 !important;
}
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.navbar-item img{
  max-height: 15rem;
}



.overlay-by-button{
  display: block;
  position: relative;
}

.position-relative{
  position: relative !important;
}

#language_nav{
  min-height: 1.5rem;
  z-index: 31;
}
#en_language{
  display: inline-block;
  color: white;
  padding: 3px 15px 0 25px;
  background-image: url('images/language_button.png');
  background-repeat: no-repeat;
  background-size: 95px 25px;
  border-right: solid white 1px;
}
#id_language{
  display: inline-block;
  background-color: #6a3f91;
  color: white;
  padding: 3px 15px;
  height: 25px;
}
#main_nav .navbar-menu{
  padding: 100px 0;
}
.navbar-start{
  font-weight: bold;
  font-size: 1.2rem;
  box-sizing: content-box;
}
.navbar-item, .navbar-link{
  /*width: 10rem;*/
  color: #6a3f91;
  text-align: center;
}
.navbar-start > .navbar-item, .navbar-item > .navbar-link{
  /*width: 10rem;*/
  display: inline-block;
}
@media screen and (min-width: 1024px){
  .navbar-dropdown {
    font-size: 1rem;
  }
  #language_nav{
    margin-bottom: -2rem;
  }
}

.image-container-schoollab {
padding-top: 80px;
}

.background_box {
  background-color: #F7F7F7;
  padding: 30px;
}

.box_classroom {
  margin-bottom :144px;
}

.box_labo {
  margin-bottom :98px;
  margin-top: 27px;
}

.box_library {
  margin-bottom :98px;
}

.box_canteen {
  margin-top :98px;
}

.box_pef {
  margin-top: 145px;
}

.container-book-a-school {
  width: 100%;
  height: auto;
  position: relative;
}

.container-book-a-school img {
  width: 100%;
}

.container-book-a-school .header-book1 {
  position: absolute;
  left: 170px;
  top: 94px; 
  color: #FFFFFF;
}

.container-book-a-school .header-book2 {
  position: absolute;
  left: 167px;
  top: 133px; 
  color: #FFFFFF;
}

.container-book-a-school .header-book3 {
  position: absolute;
    left: 169px;
    top: 191px;
    padding-right: 845px;
    color: #FFFFFF;
}

.video_sep{
  position: relative;

}
.video_sep::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.45); Change the color and opacity as needed */
}

.video_sep > video{
  display: block;
}

.navbar-item.has-dropdown{
  padding-right: 0;
  padding-left: 0;
}
.navbar-start > a.navbar-item, .navbar-item > a.navbar-link{
  padding-top: 0.75rem;
}

.navbar-dropdown.with-columns{
  padding: 0;
}

.navbar-dropdown.right-menu {
  left: auto;
  right: 0;
}

.navbar-dropdown .columns{
  margin-top: 0;
  margin-bottom: 0;
}

.navbar-dropdown .columns .column{
  padding-top: 1em;
  padding-right: 0;
  padding-left: 0;
}

.navbar-dropdown .columns .column.first-column{
  /* padding-left: 1.5rem; */
  padding-right: 0;
  padding-bottom: .75rem;
  padding-left: .75rem;
}

.navbar-dropdown .columns .column.last-column{
  /* padding-right: 1.5rem; */
  padding-right: .75rem;
  padding-bottom: .75rem;
  padding-left: 0;
}

.menu-list li a{
  padding-right: 2rem;
  padding-left: 2rem;
}

.border-right-navigation{
  border-right: 2px solid #d9d9d9;
}

.navbar-divider{
  background-color: #d9d9d9;
}

/*.navbar-dropdown .columns .column{
  border-right: 1px solid whitesmoke;
}*/

.navbar-dropdown .menu-label{
  white-space: nowrap;
  /* padding: 1rem 2rem; */
  color: #4a4a4a;
  font-size: .9em;
}
.navbar-dropdown .menu-list li{
  white-space: nowrap;
}
/*.navbar-link{
  font-weight: bold;
  color: #6a3f91;
}
.navbar-item{
  font-weight: bold;
  font-size: 1.2em;
  color: #6a3f91;
}*/
#new_icon_navbar{
  height: 2rem;
  margin-top: -0.75rem;
  margin-left: -1rem;
}
#new_menu_navbar{
  margin-left: -0.5rem;
}
.new_icon_sub_navbar{
  height: 2rem;
  margin-top: -1.3rem;
  margin-left: -1rem;
}

.breadcrumb a{
  color: #737373;
  font-weight: bold;
}

.after-carousel{
  margin-top: -12rem;
}

#home_content_1 > h1, #home_content_1 > p{
  color: #6a3f91;
}

#home_content_2{
  /* background-color: #6a3f91; */
  margin-bottom: 8rem;
}

/*#home_content_2 .title, #home_content_2 .subtitle{
  color: white;
}
*/
#home_banner_1{
  margin-bottom: 4rem;
}
#home_banner_1_body{
  padding: 0;
  max-height: 53rem;
  margin-bottom: 0;
}
/* #home_banner_subtitle{
  margin-top: -.75rem;
} */

.event-banner-subtitle{
  line-height: 1;
}

#home_banner_video{
  position: relative;
}

#home_banner_video::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45); /* Change the color and opacity as needed */
}
#home_banner_video > video{
  display: block;
}
#home_event_banner .bx-wrapper{
  margin-bottom: 0;
}
#home_event_banner .bx-wrapper .bx-viewport{
  border-radius: 20px;
  box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.30);
}
#home_content_2_body{
  padding: 2rem 0;
  max-height: 34rem;
}
/* #home_banner_2{
  margin-bottom: 7rem;
} */
#home_banner_2_body{
  /*max-height: 54rem;*/
  overflow: hidden;
  padding: 3rem 0;
}
#home_banner_2_body .slider-captions #join_now_button{
  left: 86rem;
}
/* #home_banner_2_body .slider-captions #watch_video_button{

} */
#home_footer_body{
  padding: 70px 0;
  /*margin: -10px auto;*/
}

/* #home_highlight{
  margin-bottom: 5rem;
} */

/* #home_highlight .home-highlight-figure::after{
  mix-blend-mode: multiply;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;

  background: linear-gradient(180deg, rgba(106, 63, 145, 0.00) 0%, #6A3F91 100%);
}

#home_highlight .home-highlight-ig-figure::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, #000 100%);
}
#home_highlight .home-highlight-yt-figure::after {
  background: linear-gradient(180deg, rgba(106, 63, 145, 0.00) 0%, #6A3F91 100%);
} */
#home_highlight .columns img{
  /* display: block; */
  border-radius: 15px;
}

#home_social_media{
  margin-bottom: 3rem;
}

.social_media_image{
  width: 200px;
  margin-bottom: 0.5em !important;
}

.social_media_image img{
  border-radius: 0.7rem;
}

#home_social_media .icon.before-text{
  margin-right: 0.25em !important;
}

#home_network{
  background-color: #f7f7f7;
  border: 1px solid #FFC700;
  border-width: 5px 0;
}

#home_footer{
  background-color: #6a3f91;
  margin-bottom: 0;
}
#virtual_button{
  top: 18.3rem;
  left: 9.5rem;
  height: fit-content;
  width: fit-content;
}

/* #home_column_logo{
  margin-bottom: 3rem;
} */

@media screen and (max-width: 1407px) {
  .is-mobile > #home_address{
    margin-bottom: 3rem;
  }
}

.breadcrumb{
  margin-top: 1rem;
}

#about_quote{
  padding: 7rem;
}

.about_quote_line{
  height: 6px;
  background-color: #6a3f91;
}

#about_end_line{
  height: 1px;
  background-color: #6a3f91;
}

.affiliation-image{
  max-width: 128px;
  margin: 0 1em !important;
}

#affiliation_mpk{
  max-width: 95px;
}

#affiliation_anps{
  max-width: 180px;
}

#copyright{
  color: #848484;
}

#about_why_banner{
  /*background-color: #b45b34;*/
  /*background: linear-gradient(to right,  #c97a3f 0%,#c97a3f 50%,#b45b34 50%,#b45b34 100%);*/
}
#about_why_banner h3{
  /*margin-top: 0.25rem;*/
}
#about_why_banner h3{
  padding: 3rem 2rem;
  color: white;
}
.about_why_column{
  padding: 0;
}
.about_why_column #first_column_head{
  background-color: #c97a3f;
}
.about_why_column #middle_column_head{
  background-color: #be6936;
}
.about_why_column #last_column_head{
  background-color: #b45b34;
}

#about_why_middle_banner{
  background-color: #be6936;
  /*margin: -2.25rem 0;*/
}
#about_why_middle_banner h3{
  margin-top: 2.5rem;
}

#alumni_year_graduated{
  margin-top: 0;
}
.alumni_comments{
  margin-bottom: 4em !important;
}

#home_network .box{
  border-radius: 30px;
  height: 90%;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: .5rem;
}

#home_network .box > .columns{
  height: 100%;
  padding-top: .75rem;
}
#home_network .box > .columns > .column{
  padding-top: .5rem;
}
#home_network > .container .box_column{
  padding-top: .5rem;
}

#home_network .content figure img {
  display: block;
}

.footer {
  background-color: white;
  padding-bottom: 3rem;
}

#footer_page_links li {
  margin-bottom: 1rem;
}

#footer_page_links .footer-list-title {
  font-style: italic;
}

#footer_page_links .footer-list-content {
  font-weight: 600;
}

/* #footer_page_address .subtitle {
  font-weight: 600;
} */

#footer_links{
  color: #6a3f91;
}

#footer_links > p > a{
  color: #6a3f91;
}

.purple-btn{
  background-color: #6a3f91;
  border-width: 0;
}

.purple-outline-btn{
  background-color: white;
  border: 1px solid #6a3f91;
  color: #6a3f91;
  font-weight: 600;
}

.purple-button{
  background-color: #6a3f91;
  border: none;
  float: left;
  padding: 0.56rem;
  font-weight: bold;
}

.purple-button-l{
  content: url('images/button-left.png');
  height: 2.62rem;
  float: left;
}
.purple-button-r{
  content: url('images/button-right.png');
  height: 2.62rem;
  float: left;
}
.purple-button-l.is-size-4, .purple-button-r.is-size-4{
  height: 3.37rem;
}
/*#home_highlight_title{
  color: #6a3f91;
}*/

/***** CUSTOM AJSLIDER *****/
/*#ajSliderBullets{
  left: 60rem !important;
}*/

/***** CUSTOM BXSLIDER *****/
.bx-wrapper{
  box-shadow: none;
  border: none;
}
.slider-captions{
  top: -17rem;
  color: white;
}
.bx-wrapper .bx-pager{
  bottom: 1rem;
  right: 1rem;
  text-align: right;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  /* background-color: white; */
  background: linear-gradient(90deg, rgba(74, 74, 74, 0.20) 0%, rgba(153, 153, 153, 0.20) 100%);
  /* border: solid black 0.5px; */
  width: 48px;
  height: 4px;
  border-radius: 0;
  margin: 0 3px;
}
/* .bx-pager.bx-default-pager div.bx-pager-item:has(a.active) { */
  /* box-shadow: 0px 0px 1px 0px; */
/* } */
.bx-pager.bx-default-pager div.bx-pager-item > a.active{
  /* background-color: #6a3f91; */
  background-color: white;
  /* background-color: #4a4a4a; */
  mix-blend-mode: difference;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #a48cba;
}
#home_content_2_body .bx-wrapper {
  margin-bottom: 0;
}

.bx-wrapper .bx-controls-direction a {
  top: 40%;
  z-index: 40;
}

#home_banner_2_body > .bx-wrapper .bx-pager{
  bottom: 2rem;
}

/* SCHOOL TOUR */
#school-tour-columns{
  margin: 0;
}
#school-tour-menu{
  background-color: #6a3f91;
  padding:2rem 0;
  position: fixed;
  height: 100%;
}

#school-tour-menu aside.menu{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

#school-tour-menu li:first-child{
  border-top: 3px solid white;
}

#school-tour-menu li{
  border-bottom: 3px solid white;
  /*padding: 1rem 0;*/
}

#school-tour-menu li.active{
  background-color: white;
}

.school-tour-menu-link{
  text-align: center;
  vertical-align: middle;
}
a.school-tour-menu-link{
  padding: 1.5em 0.75em 1.25em;
}
.school-tour-menu-link.active{
  padding: 1.5em 0.75em 1.25em;
  /*padding: 0.5em 0.75em;*/
}
/*.school-tour-menu-link > .school-tour-menu-div{
  display: block;
  margin-left: auto;
  margin-right: auto;
}*/

.school-tour-menu-div{
  position: relative;
  display: inline-block;
}
.school-tour-menu-div .img-top{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;

}
.school-tour-menu-link:hover .img-top{
  display: inline;
}

.school-tour-content{
  margin-left: 8.33333%;
  margin-right: 58.33333%;
  padding: 1rem 2rem;
}

.school-tour-content > .content{
  padding: 0 2rem;
}

.school-tour-content > .content > img#logo{
  margin-top: 2rem;
}

.school-tour-content > .content > h1.title{
  font-size: 2.5em;
  margin-top: 0;
}

.school-tour-content figure{
  margin-left: 0;
  margin-right: 0;
}

.school-tour-content figure > img{
  object-fit: cover;
}

.school-tour-big-image{
  position: fixed;
  left:41.6%;
  /*bottom: 0;*/
  top: 0;
  padding: 0 5rem 0 0;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100%;
}

.school-tour-big-image img{
  object-fit: cover;
  height: 100%;

  /*max-width: none;*/
}

/* GALLERY */
.pagination-link.is-current {
  background-color: #6a3f91 !important;
  border-color: #6a3f91 !important;
  color: white !important;
}

@media screen and (min-width: 1024px), print{
  .modal-content, .modal-card {
    width: 960px;
  }
  #home_banner_1_body > .bx-wrapper .bx-pager{
    bottom: 18rem;
  }
  #home_banner_2_body .slider-captions {
    top: -18rem;
  }
  .navbar-brand .navbar-item img{
    width: 175px;
  }
  #home_social_media .icon-text {
    /*font-size: 1em;*/
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 1216px), print{
  .navbar-start > a.navbar-item, .navbar-item > .navbar-link{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #home_banner_1_body > .bx-wrapper .bx-pager{
    bottom: 15rem;
  }
  #home_banner_2_body .slider-captions {
    top: -20rem;
  }
  .navbar-brand .navbar-item img{
    width: 245px;
  }
  
}
@media screen and (min-width: 1408px), print{
  .navbar-start > a.navbar-item, .navbar-item > .navbar-link{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #new_icon_navbar {
    margin-left: -2rem;
  }
  #new_menu_navbar{
    margin-left: 0;
  }
}
@media screen and (min-width: 1600px), print{
  .modal-content, .modal-card {
    width: 1366px;
  }
}
@media screen and (max-width: 1600px), print{
  #home_banner_1_body {
    max-height: 44rem;
  }
  /*#home_banner_2_body {
    max-height: 37rem;
  }*/
}
@media screen and (max-width: 1408px), print{
  #home_banner_1_body {
    max-height: 39rem;
  }
 /* #home_banner_2_body {
    max-height: 33rem;
  }*/
  #home_content_2_body {
    max-height: 26rem;
  }
  .is-mobile > #home_address{
    margin-bottom: 3rem;
  }
  #home_footer_body figure.image{
    max-width: 20rem;
  }
  #home_footer_body #virtual_button{
    top: 11.5rem;
    left: 3.75rem;
  }
}
@media screen and (max-width: 1215px), print{
  /*#home_footer_body #virtual_button{
    left: 10.9rem;
  }*/
  .navbar-start > a.navbar-item, .navbar-item > a.navbar-link{
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    padding-top: 0.5rem;
  }
  #new_icon_navbar{
    height: 1.5rem;
    margin-top: -0.5rem;
    margin-left: -1.2rem;
  }
  #new_menu_navbar{
    margin-left: -0.5rem;
  }
  #school-tour-columns > .school-tour-big-image{
    padding: 0 3rem 0 0;
  }
  .school-tour-content > .content{
    padding: 0 1.5rem;
  }
  .school-tour-content > .content > h1.title{
    font-size: 2em;
  }
  /*#home_social_media figure{
    margin-left: 1em;
    margin-right: 1em;
    width: 190px;
  }*/
  .social_media_and_highlights figure{
    margin-left: 1em;
    margin-right: 1em;
    width: 190px;
  }
}
@media screen and (max-width: 1023px), print{
  .navbar-start > a.navbar-item, .navbar-item > .navbar-link{
    padding-left: 0;
    padding-right: 0;
  }
  .new_icon_sub_navbar{
    height: 1.5rem;
    margin-top: -0.5rem;
    margin-left: -1.5rem;
  }
  #language_nav .navbar-menu{
    display: flex;
  }
  #language_nav .navbar-end{
    justify-content: flex-end;
    margin-left: auto;
  }
  .navbar-start > .navbar-item, .navbar-item > a.navbar-link{
    width: 100%;
  }
  .navbar-dropdown .navbar-item {
    text-align: left;
  }
  .navbar-dropdown .columns .column {
    padding-left: 1.5rem;
  }
  #home_banner_1_body > .bx-wrapper .bx-pager{
    bottom: 10rem;
  }
  #id_language {
    background: none;
    color: #6a3f91;
    border-left: grey solid 1px;
    padding-left: 11px;
    padding-right: 10px;
  }
  /*#id_language::before {
    content: "|";
  }*/
  #en_language {
    background: none;
    color: #6a3f91;
    padding-left: 10px;
    padding-right: 10px;
  }
  /*#home_footer_body #virtual_button{
    left: 12.3rem;
  }*/
  .mobile-padding-1-5{
    padding: 1.5rem;
  }
  .slider-captions {
    top: -17rem;
  }
  #home_banner_2_body .slider-captions {
    top: -14rem;
  }
  .navbar-brand .navbar-item{
    display: none;
  }
  #school-tour-columns > .school-tour-big-image{
    padding: 0;
  }
  .school-tour-content > .content{
    padding: 0;
  }
  #home_social_media .icon-text {
    /*font-size: 0.8em;*/
    letter-spacing: 0.01em;
  }
  /*#home_social_media figure{
    margin-left: 0.75em;
    margin-right: 0.75em;
    width: 175px;
  }*/
  .social_media_and_highlights figure{
    margin-left: 0;
    margin-right: 0;
    width: 175px;
  }
  /*#home_social_media .icon-text.social_media_caption{
    font-size: 0.6rem !important;
  }*/
}
@media screen and (max-width: 768px), print{
  .affiliation-image{
    max-width: 7rem;
    margin: 0 !important;
  }
  .purple-button.is-size-7-mobile {
    padding: 0.36rem;
  }
  .purple-button-l.is-size-7-mobile, .purple-button-r.is-size-7-mobile {
    height: 1.82rem;
  }
  .slider-captions {
    top: -9rem;
    left: 1rem;
  }
  #home_banner_1_body > .bx-wrapper .bx-pager {
    bottom: 8rem;
  }
  #home_banner_2_body > .bx-wrapper .bx-pager{
    bottom: -2rem;
    left: -9px;
  }
  #home_banner_2_body .slider-captions{
    top: -9rem;
    left: 1rem;
  }
  .school-tour-content > .content{
    padding: 0 2rem;
  }
  /*#home_social_media figure{
    margin-left: 1em;
    margin-right: 1em;
    width: 210px;
  }*/
  .social_media_and_highlights figure{
    margin-left: 1em;
    margin-right: 1em;
    width: 210px;
  }
  /*#school-tour-menu{
    padding-left: 0.5rem !important;
  }*/
  /*.school-tour-content{
    padding: 1rem 2rem !important;
  }
  .school-tour-content div.content{
    padding: 0 2rem !important;
  }*/
}
@media screen and (max-width: 768px) and (max-height: 480px), print{
  
  /*.school-tour-menu-link img{
    max-height: 75%;
  }*/
}
@media screen and (max-height: 768px), print{
  .school-tour-menu-link.active{
    padding: 1em 0.75em 0.75em;
  }
  a.school-tour-menu-link{
    padding: 1em 0.75em 0.75em;
  }
  .school-tour-menu-div{
    max-width: 75%;
  }
}
@media screen and (max-height: 480px), print{
  .school-tour-menu-link.active{
    padding: 0.5em 0.75em 0.25em;
  }
  a.school-tour-menu-link{
    padding: 0.5em 0.75em 0.25em;
  }
  .school-tour-menu-div{
    max-width: 60%;
  }
}
@media screen and (max-width: 480px), print{
  .affiliation-image{
    max-width: 5rem;
    margin: 0 !important;
  }

  #affiliation_mpk{
    max-width: 4.5rem;
  }
  #affiliation_anps{
    max-width: 5.5rem;
  }
  #home_address{
    max-width: 20rem;
  }
  .slider-captions {
    top: -9.5rem;
  }
  #home_banner_1_body > .bx-wrapper .bx-pager {
    bottom: 9rem;
    right: 1rem;
  }
  .bx-wrapper .bx-pager.bx-default-pager a{
    width: 24px;
    height: 3px;
  }
  #home_banner_1_body {
    max-height: 12.5rem;
  }
  #home_banner_2_body {
    max-height: 10rem;
  }
  #home_banner_2 {
    margin-bottom: 2rem;
  }
  #home_banner_2_body .slider-captions {
    max-width: 8rem;
    top: -4.5rem;
    left: -5.5rem;
  }
  .bx-wrapper .bx-controls-direction a {
    top:30%;
  }
  /* #home_banner_2_body > .bx-wrapper .bx-pager {
    bottom: 3rem;
  } */
  .school-tour-content{
    padding: 1rem 1rem 1rem 3rem !important;
  }
  .school-tour-content div.content{
    padding: 0 1rem 0 2rem !important;
  }
  .school-tour-content > .content > h1.title{
    font-size: 2em;
  /*#school-tour-menu{
    position: relative;
  }*/
  }
}
@media screen and (max-width: 320px), print{
  #home_banner_1_body {
    max-height: 8.5rem;
  }
  /*#home_banner_1_body > .bx-wrapper .bx-pager {
    bottom: 12rem;
  }*/
  .bx-wrapper .bx-controls-direction a {
    top:25%;
  }
}

/* ENROLLMENT */
.button_enroll{
  background-color: #6a3f91 !important;font-size:16pt;height: auto;
}

.menu-list a.is-active {
  background-color: #6a3f91 !important;
}


/* OVERLAY NEWS EVENTS */
.boximg {
  width: 480px;
  height: 320px;
  float: left;
/*  margin: 10px;*/
  position: relative;
}
.textshading {
  position: absolute;
  left: 0px;
  top: 45%;
  font-size: 40px;
  text-align: center;
  width: 100%;
  color: white;
  font-family: bebas;
}
.shading {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #222;
  opacity: 0.6;
}
:empty.divider:before { margin-bottom: 0; } :empty.divider:after { margin-top: 0; }

.has-background-custom {
  background-color: #F7F7F7;
}