@import "https://fonts.googleapis.com/css?family=Roboto:100,400,700";
@import "https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Pacifico&display=swap";
* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  background-color: #fff;
}
#wrapper {
  max-width: 100vw;
  margin: 0 auto;
}
header .banner {
  height: 400px;
  box-shadow: 0px 2px 2px gray;
}
header .banner .slideshow-container {
  width: 100%;
  height: 400px;
  max-height: 400px;
  min-height: 400px;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
}
header .banner .slideshow-container .slide {
  display: none;
}
header .banner .slideshow-container .slide img {
  width: 100%;
  min-height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}
header .banner .slideshow-container .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes fade {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
header .banner .banner--caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .banner .banner--caption .banner--caption__text {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header .banner .banner--caption .banner--caption__text h1 {
  font-family: Lora, sans-serif;
  font-size: 3.25rem;
  line-height: 4.5rem;
}
header .banner .banner--caption .banner--caption__text h3 {
  font-family: Roboto, sans-serif;
  font-size: 1.5rem;
}
.navigation {
  background-color: #0c2244;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
}
.navigation ul li a {
  display: block;
  color: #fff;
  padding: 20px 20px;
  border-bottom: 1px solid #f4f4f4;
  text-decoration: none;
}
.navigation ul li a:hover {
  color: #0c2244;
  background-color: #f4f4f4;
}
.navigation .logo {
  float: left;
  width: 30px;
  height: 33px;
  margin-left: 1rem;
  margin-top: 1rem;
}
.navigation .logo img {
  width: 60px;
}
.navigation .menu__btn {
  display: none;
}
.navigation .menu__btn:checked ~ .menu {
  max-height: 500px;
}
.navigation .menu__btn:checked ~ .menu .menu__icon .nav__icon {
  background: transparent;
}
.navigation .menu__btn:checked ~ .menu .menu__icon .nav__icon:before {
  transform: rotate(-45deg);
  top: 0;
}
.navigation .menu__btn:checked ~ .menu .menu__icon .nav__icon:after {
  transform: rotate(45deg);
  top: 0;
}
.navigation .menu__btn:checked ~ .navigation .menu__btn:hover {
  background-color: #f4f4f4;
}
.navigation .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #0c2244;
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
.navigation .menu .menu__item_collasable:after {
  border-left: solid 4px transparent;
  border-right: solid 4px transparent;
  border-top: solid 6px gray;
  content: "";
  margin-right: -2px;
  width: 0;
  height: 0;
  position: relative;
  float: right;
  top: -145px;
  right: 15px;
}
.navigation .menu .menu__item_collasable a {
  padding-right: 25px;
}
.navigation .menu .menu__item_collasable .menu__sub_menu {
  background-color: #7483e3;
}
.navigation .menu .menu__item_collasable .menu__sub_menu .menu__sub_item {
  padding: 0.5rem;
  background-color: #fff;
  border-bottom: solid 1px #0c2244;
}
.navigation .menu .menu__item_collasable .menu__sub_menu .menu__sub_item a {
  color: #0c2244;
}
.navigation .menu .menu__item_collasable:hover > .menu__sub_menu {
  display: block;
}
.navigation .menu__icon {
  cursor: pointer;
  float: right;
  padding: 28px 20px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.navigation .menu__icon .nav__icon {
  background: #f4f4f4;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}
.navigation .menu__icon .nav__icon:before,
.navigation .menu__icon .nav__icon:after {
  background: #f4f4f4;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.navigation .menu__icon .nav__icon:before {
  top: 5px;
}
.navigation .menu__icon .nav__icon:after {
  top: -5px;
}
.nav--big {
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav--big .nav--big__unit {
  width: 90%;
  max-width: 600px;
  margin: 10px 0;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 4px gray;
  text-align: center;
}
.nav--big .nav--big__unit:nth-child(1) {
  background-image: url("../images/navbig-eap.jpg");
  background-size: cover;
}
.nav--big .nav--big__unit:nth-child(1) a:hover {
  background-color: rgba(255, 0, 0, 0.8);
}
.nav--big .nav--big__unit:nth-child(2) {
  background-image: url("../images/navbig-business.jpg");
  background-size: cover;
}
.nav--big .nav--big__unit:nth-child(2) a:hover {
  background-color: rgba(0, 0, 255, 0.5);
}
.nav--big .nav--big__unit:nth-child(3) {
  background-image: url("../images/navbig-admissions.jpg");
  background-size: cover;
}
.nav--big .nav--big__unit:nth-child(3) a:hover {
  background-color: rgba(50, 168, 82, 0.8);
}
.nav--big .nav--big__unit:nth-child(4) {
  background-image: url("../images/navbig-about.jpg");
  background-size: cover;
}
.nav--big .nav--big__unit:nth-child(4) a:hover {
  background-color: rgba(255, 200, 50, 0.7);
}
.nav--big .nav--big__unit a {
  text-decoration: none;
  border: solid 4px #fff;
  color: #fff;
  font-size: 2rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-shadow: 1px 1px 2px gray;
}
.nav--big .nav--big__unit a:hover {
  font-size: 2.5rem;
  border: none;
  transition: all 0.3s;
}
.main_content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main_content h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.main_content p {
  width: 100%;
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
.main_content p .first_word {
  font-size: 1.25rem;
  font-family: "Pacifico", cursive;
}
.main_content p.strong {
  font-weight: bold;
}
.main_content p.noTopGap {
  margin-top: -2.5rem;
}
.main_content p.noBottomGap {
  margin-bottom: 0;
}
.main_content ul {
  width: 100%;
  max-width: 600px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.main_content ul.list--nostyle {
  list-style-type: none;
}
.main_content ul.list--star {
  list-style-type: "★ ";
}
.main_content ul.indented {
  padding-left: 1rem;
}
.main_content .evalmethods {
  width: 80vw;
  max-width: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin-bottom: 1rem;
}
.main_content .evalmethods p {
  margin: 0;
}
.main_content .programOrganization {
  width: 90vw;
  max-width: 600px;
  margin-bottom: 1rem;
  display: grid;
  border-top: solid 1px #a9a9a9;
  border-right: solid 1px #a9a9a9;
}
.main_content .programOrganization.eap {
  grid-template-columns: 1fr 2fr 1fr 1fr;
  grid-template-rows: repeat(5, auto);
}
.main_content .programOrganization.caregiver {
  grid-template-columns: 1fr 3fr 1fr 1fr;
  grid-template-rows: repeat(10, auto);
}
.main_content .programOrganization.business {
  max-width: 740px;
  grid-template-columns: 1fr 3fr 1fr 1fr 1fr;
  grid-template-rows: repeat(15, auto);
}
.main_content .programOrganization p {
  margin: 0;
  padding: 0 0.5rem;
  border-left: solid 1px #a9a9a9;
  border-bottom: solid 1px #a9a9a9;
}
.main_content .programOrganization p.strong {
  font-weight: bold;
}
.main_content .programOrganization p.centered {
  text-align: center;
}
.main_content .programOrganization p.right {
  text-align: right;
}
.main_content .programOrganization p.noborder {
  border-left: none;
  border-right: none;
  border-bottom: none;
}
.main_content .img_in_article {
  width: 100%;
  max-width: 600px;
  height: 300px;
  margin-bottom: 1rem;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}
.main_content .img_in_article.imageEap {
  background: url(/images/img-in-article-eap.jpg);
  background-size: cover;
  background-position: center;
}
.main_content .img_in_article.imageCaregiver {
  background: url(/images/img-in-article-business.jpg);
  background-size: cover;
  background-position: center;
}
.main_content .img_in_article.imageBusiness {
  background: url(/images/img-in-article-business.jpg);
  background-size: cover;
  background-position: center;
}
.main_content .img_in_article.imageAdmission {
  background: url(/images/banner-admissions.jpg);
  background-size: cover;
  background-position: center;
}
.main_content .img_in_article.imageAbout {
  background: url(/images/img-in-article-about.jpg);
  background-size: cover;
  background-position: center;
}
.main_content .googlemap {
  overflow: hidden;
  padding-bottom: 40%;
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 400px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}
.main_content .googlemap iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
.main_content .tuitionRefundPolicy {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(15, auto);
  border-top: solid 1px #a9a9a9;
  border-right: solid 1px #a9a9a9;
  margin: 0 -0.5rem 0 -1.5rem;
}
.main_content .tuitionRefundPolicy div {
  margin: 0;
  padding: 0 0.5rem;
  border-left: solid 1px #a9a9a9;
  border-bottom: solid 1px #a9a9a9;
}
.main_content .tuitionRefundPolicy div.strong {
  font-weight: bold;
}
.main_content .tuitionRefundPolicy div.wholeLine {
  grid-column: 1 / span 2;
}
.main_content .tuitionRefundPolicy div.greyBG {
  background-color: #d3d3d3;
  padding: 0.5rem;
}
.main_content .tuitionRefundPolicy div.blueBG {
  background-color: skyblue;
  padding: 0.5rem;
}
.main_content .tabs {
  width: calc(100% + 4rem);
  max-width: 800px;
  margin-bottom: 1rem;
}
.main_content .tabs .tab {
  float: left;
  border: 1px solid #ccc;
  border-right: none;
  background-color: #f1f1f1;
  width: 25%;
}
.main_content .tabs .tab button {
  display: block;
  background-color: inherit;
  color: #000;
  padding: 2rem 1rem;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}
.main_content .tabs .tab button:hover {
  background-color: #ddd;
}
.main_content .tabs .tab button.active {
  background-color: #ddd;
}
.main_content .tabs .tabcontent {
  display: none;
  float: left;
  padding: 1rem 0.5rem 1rem 1.5rem;
  border: 1px solid #ccc;
  width: 75%;
  font-size: 1rem;
}
.main_content .tabs .tabcontent h3 {
  text-align: center;
  margin-bottom: 1rem;
}
.main_content .tabs .tabcontent p {
  margin: 1rem 0;
}
.main_content .tabs .tabcontent .indent0 {
  padding-left: 0rem;
  margin: 0;
}
.main_content .tabs .tabcontent .indent1 {
  padding-left: 1rem;
  margin: 0;
}
.main_content .tabs .tabcontent .indent2 {
  padding-left: 2rem;
  margin: 0;
}
.main_content .tabs .tabcontent .list--alpha {
  list-style-type: lower-alpha;
}
footer {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0c2244;
  color: #fff;
  height: 100px;
  box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.5);
}
footer .logo {
  display: none;
}
footer .policies {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 20px;
}
footer .policies p {
  font-family: Lora, sans-serif;
  font-size: 1rem;
}
footer .policies a {
  color: #d3d3d3;
}
footer .contacts p {
  font-family: Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2rem;
}
@media (min-width: 768px) {
  header .banner {
    height: 500px;
  }
  header .banner .banner--caption {
    height: 500px;
  }
  header .banner .slideshow-container {
    height: 500px;
    max-height: 500px;
    min-height: 500px;
  }
  header .banner .slideshow-container .slide img {
    min-height: 500px;
  }
  .navigation li {
    float: left;
  }
  .navigation li a {
    padding: 15px 30px;
    border: none !important;
  }
  .navigation li:last-child a {
    border: none !important;
  }
  .navigation .menu {
    clear: none;
    float: right;
    max-height: none;
    height: 56px !important;
  }
  .navigation .menu .menu__item_collasable:after {
    top: -30px;
    right: 15px;
  }
  .navigation .menu .menu__sub_menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 56px;
    max-width: 190px;
  }
  .navigation .menu .menu__sub_menu:hover {
    display: block;
  }
  .navigation .menu .menu__sub_menu .sub_menu__item {
    width: 100%;
  }
  .navigation .menu .menu__sub_menu .sub_menu__item a {
    border: none !important;
    background-color: #0c2244;
  }
  .navigation .menu .menu__sub_menu .sub_menu__item a:hover {
    background-color: #efefef;
  }
  .navigation .menu__icon {
    display: none;
  }
  .nav--big {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .nav--big .nav--big__unit {
    width: 100%;
    max-width: 500px;
    height: 150px;
    margin: 1rem;
  }
  .nav--big .nav--big__unit a {
    font-size: 2rem;
  }
  footer {
    height: 75px;
  }
  footer .logo {
    width: 40px;
    display: block;
  }
}
