<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* cyrillic-ext */
@font-face {
  font-family: "PT Sans";
  font-style: italic;
  font-weight: 400;
  src: url(../fonts/PTSans-Italic.ttf) format("woff2");
}
/* cyrillic */
@font-face {
  font-family: "PT Sans";
  font-style: "regular";
  font-weight: 400;
  src: url(../fonts/PTSans-Regular.ttf) format("woff2");
}
/* latin-ext */
@font-face {
  font-family: "PT Sans";
  font-style: italic;
  font-weight: 400;
  src: url() format("woff2");
}
/* latin */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/PTSans-Regular.ttf) format("woff2");
}
/* cyrillic-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/PTSans-Regular.ttf) format("woff2");
}
/* cyrillic */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/PTSans-Regular.ttf) format("woff2");
}
/* latin */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/PTSans-Bold.ttf) format("woff2");
}
body, html {
  font-family: "PT Sans";
}

.nav-container {
  display: grid;
  justify-items: center;
  max-height: 90px;
  height: 100%;
}
@media (max-width: 72rem) {
  .nav-container {
    height: 60px;
  }
}

.nav {
  width: 100%;
  max-height: 80px;
  position: fixed;
  text-align: center;
  background-color: #607178;
  top: 0;
  bottom: 0%;
  z-index: 10;
}
@media (max-width: 72rem) {
  .nav {
    height: 60px;
  }
}

.nav div.main_list {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.nav div.main_list ul {
  display: flex;
  flex: auto;
  list-style: none;
  gap: 8rem;
  margin: 0 auto;
}

.nav div.main_list ul li {
  height: 60px;
  font-size: 1.8rem;
}

.nav div.main_list ul li a {
  text-decoration: none;
  color: #fff;
}

.nav div.media_button {
  width: 40px;
  height: 20px;
  background-color: transparent;
  position: absolute;
  right: 15px;
  top: 0;
  display: none;
}

.nav div.media_button button.main_media_button {
  width: 100%;
  height: 100%;
  background-color: transparent;
  outline: 0;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
}

.nav div.media_button button.main_media_button span {
  width: 98%;
  height: 2px;
  display: block;
  background-color: #fff;
  margin-top: 9px;
  transition: 0.6s ease-in-out;
}

.nav div.media_button button.active span:nth-of-type(1) {
  transform: rotate3d(0, 0, 1, 45deg);
  position: absolute;
  margin: 0;
}

.nav div.media_button button.active span:nth-of-type(2) {
  display: none;
}

.nav div.media_button button.active span:nth-of-type(3) {
  transform: rotate3d(0, 0, 1, -45deg);
  position: absolute;
  margin: 0;
}

@media (max-width: 64rem) {
  .container {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .nav div.main_list {
    width: 100%;
    margin-top: 65px;
    height: 0px;
    overflow: hidden;
    margin-top: 2rem;
    margin-left: 0rem;
    transition: max-height, 0.8s ease-in-out;
    z-index: 10;
  }
  .nav div.show_list {
    height: 200px;
  }
  .nav div.main_list ul {
    flex-direction: column;
    width: 100%;
    top: 60px;
    right: 0;
    left: 0;
    margin-top: 1rem;
    gap: 0rem;
    transition: 0.6s ease-in-out;
  }
  .nav div.main_list ul li {
    width: 100%;
    height: 40px;
    background-color: #607178;
    border-bottom: 1px solid #fff;
  }
  .nav div.main_list ul li a {
    text-align: center;
    width: 100%;
    height: 100%;
    display: table;
  }
  .nav div.media_button {
    display: block;
  }
  .nav {
    transition: 0.6s ease-in-out;
  }
}
.container {
  width: 100%;
  max-width: 100rem;
  width: calc(100% - 4rem);
  padding: 8rem 12rem;
  margin: 0 auto;
}
.container h1 {
  font-size: 4rem;
  letter-spacing: 0px;
  font-weight: bold;
}
.container h2 {
  font-size: 2.75rem;
}
.container h4 {
  font-size: 2rem;
}
.container p {
  font-size: 1.5rem;
  color: #707070;
}
@media (max-width: 80rem) {
  .container {
    max-width: 86%;
    margin: 0 auto;
  }
  .container h1 {
    font-size: 1.8rem;
    letter-spacing: 0px;
    font-weight: bold;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }
}

.text--sub-hero {
  color: #fff;
  margin-bottom: 2rem;
}
.text--sub-hero::after {
  content: ".";
  color: #F47D28;
}
.text--purple {
  color: #607178;
  margin-bottom: 1rem;
}

.section {
  position: relative;
  height: 100%;
}
.section--header {
  background: transparent linear-gradient(180deg, #607178 20%, rgba(255, 255, 255, 0) 100%) 0% 0% no-repeat padding-box;
  margin-top: 3.5rem;
}
.section--header video {
  width: 100%;
  background-color: transparent;
}
.section--header .text--purple {
  color: #607178;
}
.section--header h1 {
  margin-top: 3rem;
}
.section--header .sub-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 5rem;
}
.section--header .sub-header ul.dashed {
  list-style: none;
  margin-left: 0;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section--header .sub-header ul.dashed li {
  color: #607178;
  font-size: 1.5rem;
}
.section--header .sub-header ul.dashed &gt; li:before {
  display: inline-block;
  content: "-";
  width: 1em;
  margin-left: -1em;
}
.section--contact {
  background: #D8D1D9;
}
.section--contact .contact-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0.5rem;
  margin-top: 1rem;
}
.section--contact .contact-grid .contents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.section--contact .contact-grid .contents .contact .item {
  display: grid;
  grid-template-columns: 10% 70%;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}
.section--contact .contact-grid .contents .contact .item img {
  width: 100%;
  max-width: 2.1rem;
}
.section--contact .contact-grid .contents .contact .item a {
  color: gray;
  text-decoration: none;
}
.section--contact .contact-grid .contents iframe {
  height: 36vh;
  margin-bottom: 2rem;
}
.section--accordion {
  background: #EFEFEF;
}
.section--accordion .accordions {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: center;
  justify-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  /*button not active*/
  /* minus button */
  /*button not active*/
  /* minus button */
}
.section--accordion .accordions .accordion-item {
  width: 100%;
  margin-bottom: 1rem;
}
.section--accordion .accordions .accordion-item .image {
  aspect-ratio: 16/9;
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section--accordion .accordions .accordion-item .image &gt; img {
  height: 100%;
  max-width: 5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.section--accordion .accordions .accordion-item a {
  color: #607178;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
}
.section--accordion .accordions button.course-accordion_empty {
  cursor: alias;
  padding: 8px;
  width: 90%;
  font-size: 1.25rem;
  font-weight: bold;
  color: #607178;
  background-color: #EFEFEF;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.6s ease-in-out;
  text-transform: none;
  border-bottom: 3px solid #607178;
  margin-bottom: 0.2rem;
}
.section--accordion .accordions button.course-accordion_empty:after {
  content: "";
  color: #607178;
  font-weight: bold;
  float: right;
}
.section--accordion .accordions button.course-accordion_empty.active:after {
  content: "−";
}
.section--accordion .accordions button.course-accordion {
  cursor: pointer;
  padding: 8px;
  width: 90%;
  font-size: 1.25rem;
  font-weight: bold;
  color: #607178;
  background-color: #EFEFEF;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.6s ease-in-out;
  text-transform: none;
  border-bottom: 3px solid #607178;
  margin-bottom: 0.2rem;
}
.section--accordion .accordions button.course-accordion:after {
  content: "+";
  color: #607178;
  font-weight: bold;
  float: right;
}
.section--accordion .accordions button.course-accordion.active:after {
  content: "−";
}
.section--accordion .accordions div.course-panel {
  background-color: transparent;
  max-height: 0;
  width: 100%;
  min-width: 100%;
  overflow: hidden;
  transition: max-height 0.6s ease-out;
  margin-top: 1rem;
}
.section--accordion ul {
  margin-top: 2rem;
}
.section--accordion ul.dashed {
  list-style: none;
  margin-left: 0;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section--accordion ul.dashed li {
  color: #607178;
  font-size: 1.5rem;
}
.section--accordion ul.dashed &gt; li:before {
  display: inline-block;
  content: "-";
  width: 2em;
  margin-left: -1em;
}
.section--service {
  background-color: #D8D1D9;
}
.section--service .course-accordion {
  background-color: #D8D1D9;
}
.section--service h1 {
  margin-bottom: 1.5rem;
}
.section--service p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.section--service .accordions .accordion-item .course-accordion {
  background: #D8D1D9;
}
.section--service .accordions .accordion-item .course-accordion_empty {
  background: #D8D1D9;
}
.section--team {
  background-color: #EFEFEF;
}
.section--team h1 {
  margin-bottom: 5rem;
}
.section--team .items {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: center;
  align-items: start;
  margin-bottom: 5rem;
  gap: 3rem;
}
.section--team .items .accordions {
  display: grid;
  grid-template-columns: 100%;
  margin: 0;
}
.section--team .items .accordions .course-accordion {
  background-color: #EFEFEF;
  font-weight: bold;
  margin-top: 1rem;
}
.section--team .items .accordions .course-accordion_empty {
  background-color: #EFEFEF;
  font-weight: bold;
  margin-top: 1rem;
}
.section--team .items .content {
  display: grid;
  grid-template-rows: 45% auto;
  gap: 4rem;
}
.section--team .items .content img {
  width: 100%;
  max-width: 20rem;
}
.section--team .items figure img {
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
}
.section--team .items figure figcaption {
  background: #607178;
  width: 100%;
  height: max(36px, 10vh);
  bottom: max(36px, 10vh);
  margin-bottom: calc(max(36px, 10vh) * -1);
  box-sizing: border-box;
  font-weight: bold;
  background-color: #607178;
  padding: 0.2rem 0.4rem;
  opacity: 0.8;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.section--team .items figure figcaption p {
  font-weight: normal;
  color: #ffffff;
  overflow: hidden;
}
@media (max-width: 45rem) {
  .section--team .items figure .section-subtittle {
    font-size: 0.5rem;
  }
  .section--team .items figure img {
    height: 46vh;
  }
}
@media (max-width: 45rem) {
  .section--team .items figure figcaption {
    padding: 2px 5px;
    height: max(80px, 7vh);
    bottom: max(80px, 7vh);
    margin-bottom: calc(max(80px, 7vh) * -1);
  }
}
.section--privacy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.section--privacy ul li {
  margin-left: 4rem;
  color: #707070;
  font-size: 1.25rem;
}
.section--privacy p {
  margin: 1rem 2rem;
}
.section--privacy h5 {
  margin: 1rem 2rem;
}
.section--privacy h4 {
  margin: 1rem 2rem;
  color: #607178;
}
.section--privacy a {
  text-decoration: none;
  color: #F47D28;
}
.section--privacy a:hover {
  color: #607178;
}
.section--imprint {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.section--imprint ul li {
  margin-left: 4rem;
  color: #707070;
}
.section--imprint p {
  margin: 1rem 2rem;
}
.section--imprint h5 {
  margin: 1rem 2rem;
}
.section--imprint h4 {
  margin: 1rem 2rem;
  color: #607178;
}
.section--imprint a {
  text-decoration: none;
  color: #707070;
}
.section--imprint a:hover {
  color: #F47D28;
}

.footer {
  background-color: #607178;
}
.footer .header--hero {
  color: #fff;
  text-align: center;
}
.footer .privacy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-items: center;
  gap: 2rem;
}
.footer .privacy a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.8rem;
}
.footer .copyright {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 2.1rem;
  margin-top: 4rem;
}

@media (max-width: 60rem) {
  .section {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .section--header .sub-header ul.dashed li {
    color: #607178;
    font-size: 1rem;
    font-weight: 600;
  }
  .section--accordion .accordions .accordion-item .course-panel {
    width: 100%;
    margin-top: 0.5rem;
  }
  .section--accordion .accordions .accordion-item .course-panel ul.dashed {
    list-style: none;
    margin-left: 0;
    padding-left: 1em;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .section--accordion .accordions .accordion-item .course-panel ul.dashed li {
    color: #707070;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .section--accordion .accordions .accordion-item .course-panel ul.dashed &gt; li:before {
    display: inline-block;
    content: "-";
    width: 2em;
    margin-left: -1em;
  }
  .section--accordion .accordions .accordion-item .course-panel ul.dashed &gt; li:before {
    display: inline-block;
    content: "-";
    width: 0.5em;
    margin-left: -1em;
  }
  .section--accordion .accordions .accordion-item .course-panel a {
    font-size: 0.9rem;
    font-weight: bold;
  }
  .section--accordion .accordions button.course-accordion {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .section--accordion .accordions button.course-accordion_empty {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .section--team .items {
    display: grid;
    grid-template-columns: 100%;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .section--team .items .wrap {
    min-width: 100%;
  }
  .section--team .items .wrap p {
    width: 100%;
  }
  .section--team .items .wrap .image {
    width: 75%;
  }
  .section--team .items .wrap figcaption {
    width: 75%;
  }
  .container {
    padding: 0.1rem 0.1rem !important;
  }
  .container ul.dashed {
    margin-bottom: 2rem;
  }
  .container ul.dashed li {
    color: #607178;
    font-size: 1rem;
    font-weight: 600;
  }
  .container ul.dashed &gt; li:before {
    display: inline-block;
    content: "-";
    width: 0.5em;
    margin-left: -1em;
  }
  .container h2 {
    font-size: 1.5rem;
  }
  .container h4 {
    font-size: 1.05rem;
  }
  .container p {
    font-size: 1rem;
    color: #707070;
  }
  .section--contact .contact-grid {
    display: grid;
    grid-template-columns: auto;
  }
  .section--contact .contact-grid .contents {
    margin-top: 2rem;
  }
  .section--contact .contact-grid .contents iframe {
    width: 100%;
    height: 30vh;
    box-shadow: -5px 0 5px -5px #333, 5px 0 5px -5px #333;
  }
  .section--accordion .accordions {
    display: grid;
    grid-template-columns: auto;
  }
  .section--accordion .accordions .accordion-item {
    width: 100%;
  }
  .section--accordion .accordions img {
    width: 100%;
  }
  .section--accordion .accordions a {
    font-size: 0.9rem;
  }
  .footer .copyright {
    font-size: 0.8rem;
    margin-top: 1rem;
    padding-bottom: 1rem;
  }
  .footer .privacy a {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }
}
.header--grey {
  color: #8D8D8D;
  font-size: 2rem;
}
.header--grey::after {
  content: ".";
  color: #F47D28;
}
.header--hero {
  color: #fff;
  margin-bottom: 2rem;
}

.inside-accordion ul.dashed {
  list-style: none;
  margin-left: 0;
  padding-left: 1.6em;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.inside-accordion ul.dashed li {
  color: #607178;
  font-size: 1.5rem;
}
.inside-accordion ul.dashed &gt; li:before {
  display: inline-block;
  content: "-";
  width: 0.5em;
  margin-left: -1em;
}/*# sourceMappingURL=main.css.map */</pre></body></html>