* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

video, img, picture, figure, hr, table, tr {
  font-size: 0;
}

button {
  border-style: none;
  background-color: transparent;
}
button:focus {
  outline: none;
}

@font-face {
  font-family: "Playfair";
  src: url(../fonts/PlayfairDisplay-Regular.ttf);
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair";
  src: url(../fonts/PlayfairDisplay-Italic.ttf);
  font-style: italic;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair";
  src: url(../fonts/PlayfairDisplay-Bold.ttf);
  font-style: normal;
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Regular.ttf);
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Light.ttf);
  font-style: normal;
  font-weight: lighter;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Medium.ttf);
  font-style: normal;
  font-weight: bold;
  font-display: swap;
}
.m--noScrollX {
  overflow-x: hidden;
  max-width: 100vw;
}

.m--noScrollY {
  overflow-y: hidden;
  max-width: 100vw;
}

.m--noScroll {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .m--hiddenMobile {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .m--hiddenFromTablet {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .m--hiddenTablet {
    display: none;
  }
}

@media screen and (min-width: 1023px) {
  .m--hiddenDesktop {
    display: none;
  }
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  height: 100%;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: visible;
  opacity: 1;
  z-index: 2;
  transition: all 0.25s;
  overflow-y: scroll;
}
.modal-container.m--hidden {
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s;
}
.modal-container .modal {
  position: absolute;
  top: 0;
  width: calc(100vw - 20px);
  min-height: 300px;
  height: auto;
  padding: 20px;
  border-radius: 20px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .modal-container .modal {
    position: static;
    max-width: 700px;
  }
}
@media (min-width: 1024px) {
  .modal-container .modal {
    max-width: 1000px;
  }
}
.modal-container .modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc;
}
.modal-container .modal__header .close {
  width: 30px;
  border-style: none;
  color: #333333;
  outline: none;
  cursor: pointer;
  transition: 0.5s;
}
.modal-container .modal__header .close:hover {
  color: #4d649a;
  transition: 0.5s;
}
.modal-container .modal__header h4 {
  font-size: 1.75rem;
}
.modal-container .modal__description {
  margin: 15px 0 20px;
  font-family: "Roboto", sans-serif;
  line-height: 2rem;
}
@media screen and (min-width: 768px) {
  .modal-container .modal__description {
    line-height: 1.75rem;
  }
}
.modal-container .modal__courses {
  font-weight: bold;
  font-family: "Roboto";
  line-height: 2rem;
  color: #297784;
}
.modal-container .modal .formSubmitted {
  margin-top: 15px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .modal-container .modal .formSubmitted {
    margin-top: 30px;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 1;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 0 0 5px 0;
  font-size: 1.15rem;
  line-height: 3rem;
  text-align: center;
  color: #ffffff;
  background-color: #7057b5;
  z-index: 1;
  transition: all 0.5s, background-color 0;
}
header nav .logo-link {
  display: none;
}
header nav.m--scrolled .logo-link {
  display: inline;
  margin-left: 10px;
  line-height: 100%;
}
header nav.m--scrolled .logo-link .logo {
  height: 30px;
  line-height: 100%;
}
@media screen and (min-width: 375px) {
  header nav.m--scrolled .logo-link {
    margin-left: 15px;
  }
}
@media screen and (min-width: 425px) {
  header nav.m--scrolled .logo-link {
    margin-left: 20px;
  }
}
header nav ul {
  list-style-type: none;
}
header nav ul li {
  display: inline;
  margin: 0 10px;
}
@media screen and (min-width: 375px) {
  header nav ul li {
    margin: 0 15px;
  }
}
@media screen and (min-width: 425px) {
  header nav ul li {
    margin: 0 20px;
  }
}
header nav ul li a {
  padding: 0 0 3px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color: currentColor;
  transition: all 0.5s;
}
header nav ul li a:hover, header nav ul li a.m--active {
  border-bottom: 2px solid currentColor;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  header nav:not(.m--scrolled) ul {
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  header nav {
    text-align: right;
  }
  header nav:not(.m--scrolled) {
    display: block;
    position: fixed;
    right: 0;
    padding: 10px;
    background: initial;
    transition: all 0.5s, background-color 0;
  }
  header nav:not(.m--scrolled) ul li {
    display: block;
    margin-bottom: 20px;
    -webkit-animation-name: drop;
    animation-name: drop;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
  }
  header nav:not(.m--scrolled) ul li:last-of-type {
    margin-bottom: 0;
  }
  header nav:not(.m--scrolled) ul li a {
    border-right: 2px solid transparent;
    border-bottom: none;
    padding-right: 10px;
    text-decoration: none;
    color: currentColor;
    transition: all 0.5s;
  }
  header nav:not(.m--scrolled) ul li a:hover {
    border-right: 2px solid currentColor;
    border-bottom: none;
    transition: all 0.5s;
  }
}

form {
  width: 100%;
  font-family: "Roboto", sans-serif;
}
form .form-group {
  padding: 10px;
  margin: 0 -10px;
}
form .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  font-weight: bold;
  color: #4d649a;
}
form input, form textarea {
  width: 100%;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #cccccc;
  font-family: "Roboto", sans-serif;
  font-size: 1.15rem;
}
form input:focus, form textarea:focus {
  outline: none;
  border: 1px solid #46b3c5;
}
form textarea {
  resize: vertical;
}
form.form-modal {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  form.form-modal {
    -ms-display: flex;
    display: flex;
    align-items: flex-end;
    margin-top: 30px;
  }
  form.form-modal .form-group {
    width: calc(100% - 200px);
    margin: 0 10px 0 0;
    padding: 0;
  }
  form.form-modal .btn {
    padding: 5px 10px;
    width: 200px;
  }
}
form.form-modal.m--hidden {
  display: none;
}

.btn {
  padding: 10px 15px;
  border: 2px solid #4d649a;
  width: 100%;
  color: #4d649a;
  font-size: 1.15rem;
  font-weight: bold;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.5s;
}
.btn:not(.m--submit) {
  border-radius: 30px;
}
.btn:hover {
  background-color: #4d649a;
  color: #ffffff;
  transition: all 0.5s;
}
.btn.m--hidden {
  display: none;
}

.card {
  display: grid;
  grid: "figure" 200px "content" 1fr/100%;
  grid-gap: 10px;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: 0 0 5px #cccccc;
  overflow: hidden;
  cursor: pointer;
  transition: 0.25s;
}
.card:hover {
  box-shadow: 0 0 5px #cccccc, 0 3px 5px #cccccc;
  transition: 0.25s;
}
.card:hover figure img {
  height: 105%;
  width: 105%;
  transition: 0.75s;
}
.card figure {
  grid-area: figure;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card figure img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: 0.75s;
}
.card .content {
  grid-area: content;
}
.card p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  line-height: 2rem;
}

.table-responsive {
  max-width: 100%;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  justify-self: stretch;
}

table {
  width: 100%;
  min-height: 250px;
  border: 1px solid #cccccc;
  border-collapse: collapse;
  font-family: "Roboto", sans-serif;
  font-weight: lighter;
}
table tr:nth-child(odd) td, table tr:nth-child(odd) th {
  background-color: #ffffff;
}
table tr:nth-child(even) td {
  background-color: #f3f3f3;
}
table tr th, table tr td:first-child {
  font-weight: bold;
}
table tr th, table tr td {
  padding: 5px 10px;
  font-size: 1.25rem;
  text-align: center;
}
table tr th.separator, table tr td.separator {
  height: 10px;
  background-color: #dee8ff;
}
table tr th:first-child, table tr td:first-child {
  position: sticky;
  left: -1px;
}

@-webkit-keyframes translate {
  from {
    transform: translateY(100vh);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes translate {
  from {
    transform: translateY(100vh);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(90deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(90deg);
  }
}
@-webkit-keyframes scale {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes scale {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@-webkit-keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes drop {
  from {
    transform: translateY(-300px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes drop {
  from {
    transform: translateY(-300px);
  }
  to {
    transform: translateY(0);
  }
}
html {
  font-size: 12px;
}
@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Playfair", serif;
  font-weight: normal;
  color: #333333;
}

h1 {
  font-weight: normal;
  font-style: normal;
  font-size: 4rem;
  line-height: 6rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 7rem;
    line-height: 8rem;
  }
}

h2 {
  font-style: italic;
  font-weight: normal;
  font-size: 2rem;
  line-height: 3rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
    line-height: 5rem;
  }
}

h3 {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: normal;
  font-size: 2rem;
  line-height: 3rem;
  color: #297784;
}

h4 {
  font-family: "Playfair", serif;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #4d649a;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  font-family: "Playfair", serif;
  font-size: 1.25rem;
  line-height: 2rem;
  color: #333333;
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.15rem;
  }
}

p {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  p {
    font-size: 1.15rem;
  }
}
@media (min-width: 1024px) {
  p.m--notFullWidth {
    width: 85%;
    margin: auto;
  }
}

.m--center {
  text-align: center;
}

main > aside.adv {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  main > aside.adv {
    height: 90px;
  }
}
@media (max-width: 767px) {
  main > aside.adv.m--mobile-hidden {
    display: none;
  }
}

.screenCover {
  height: calc(100vh - 96px);
  width: 100vw;
}
@media (min-width: 768px) {
  .screenCover {
    height: 100vh;
  }
}

section {
  max-width: 1400px;
  margin: auto;
  padding: 60px 10px 10px;
}
@media (min-width: 768px) {
  section {
    padding: 90px 20px 20px;
  }
}
section#cover {
  position: relative;
  display: flex;
  max-width: none;
  padding-top: 0;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  background-image: linear-gradient(to bottom, #7057b5 20%, rgba(155, 146, 176, 0) 100%);
  background-position: center;
  background-repeat: no-repeat;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}
section#cover > * {
  -webkit-animation-name: opacity;
  animation-name: opacity;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal;
  animation-direction: normal;
}
section#cover .logo {
  -webkit-animation-name: scale, opacity, rotate;
  animation-name: scale, opacity, rotate;
  -webkit-animation-duration: 0.5s, 0.5s, 1s;
  animation-duration: 0.5s, 0.5s, 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal;
  animation-direction: normal;
}
section#cover .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/background-illustrations-transparent.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  -webkit-animation-name: translate, opacity;
  animation-name: translate, opacity;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal;
  animation-direction: normal;
}
section#cover img {
  margin-bottom: 20px;
  width: 200px;
}
section#contact .adv-row > div {
  place-self: stretch;
}

.adv-row {
  display: grid;
  justify-items: center;
  grid-gap: 50px 20px;
  grid-template-columns: 1fr;
}
.adv-row .grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: minmax(100px, auto);
}
@media (min-width: 768px) {
  .adv-row .grid {
    grid-auto-rows: minmax(250px, auto);
  }
}
@media (min-width: 1024px) {
  .adv-row .grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
.adv-row .adv {
  width: 300px;
  height: 100px;
}
@media (min-width: 768px) {
  .adv-row {
    grid-template-columns: 1fr 300px;
    grid-gap: 20px;
  }
  .adv-row .adv {
    height: 250px;
    position: sticky;
    top: 50px;
  }
}

.formSubmitted {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  line-height: 2rem;
  text-align: center;
}
.formSubmitted.m--hidden {
  display: none;
}

div.formSubmitted {
  width: 100%;
  height: 100%;
  background-color: #fff5fe;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 2.5rem;
}
div.formSubmitted div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px;
}
div.formSubmitted div .btn {
  width: auto;
  margin-top: 20px;
}

footer {
  margin-top: 20px;
  padding: 10px 20px;
  text-align: center;
  background-color: #dee8ff;
  font-family: "Arial", sans-serif;
}
@media (min-width: 768px) {
  footer {
    margin-top: 70px;
  }
}
footer p {
  font-size: 1rem;
  line-height: 1.5rem;
}
footer p.credits {
  line-height: 1.25rem;
}
@media screen and (max-width: 767px) {
  footer p.credits small {
    display: block;
  }
}
footer a {
  color: #333333;
}

/*# sourceMappingURL=styles.css.map */
