@charset "UTF-8";

/* ./resources/sass/app.scss */

/**
 * CSS Lock
 * @param  float     $min-size:  1            Lowest value for the lock
 * @param  float     $max-size:  1.4          Highest value for the lock
 * @param  integer   $min-width: 20           Smallest width for lock
 * @param  integer   $max-width: 100          Largest width for lock
 * @param  string    $property:  font-size    Property to apply the lock on
 * @param  string    $unit:      px           Unit of the property to apply
 */

/**
 * Fonts
 **/

@font-face {
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 700;
  font-style: italic;
}

/**
 * Colours
 **/

.brown {
  color: #811B18;
}

.white {
  color: #FFFFFF;
}

.bg-beige {
  background: #F5EFDF;
}

.bg-black {
  background: #000000;
}

.bg-orange {
  background: #E15226;
}

.bg-peach-lgt {
  background: #FFCF9980;
}

.bg-peach {
  background: #FFCF99;
}

.bg-purple {
  background: #4B2E81;
}

.bg-purple * {
  color: #FFFFFF;
}

/**
 * FONT
 **/

/**
 * CSS
 **/

/**
 * LAYOUT
 **/

/**
 * Breakpoints
 **/

body * {
  color: #000000;
  font-family: "aktiv-grotesk", sans-serif;
}

a {
  color: inherit;
}

/**
 * Font sizes
 **/

h1,
h2 {
  color: #811B18;
}

h1,
h2,
h3,
h4 {
  margin: .5em 0;
  font-weight: 600;
  line-height: 1.2em;
}

h1 {
  font-size: calc(28px + (46 - 28) * ((100vw - 320px) / (1920 - 320)));
}

@media (max-width: 320px) {
  h1 {
    font-size: 28px;
  }
}

@media (min-width: 1920px) {
  h1 {
    font-size: 46px;
  }
}

h2 {
  font-size: calc(26px + (36 - 26) * ((100vw - 320px) / (1920 - 320)));
}

@media (max-width: 320px) {
  h2 {
    font-size: 26px;
  }
}

@media (min-width: 1920px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
}

@media (max-width: 320px) {
  h3 {
    font-size: 20px;
  }
}

@media (min-width: 1920px) {
  h3 {
    font-size: 24px;
  }
}

h3 {
  font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
}

@media (max-width: 320px) {
  h3 {
    font-size: 20px;
  }
}

@media (min-width: 1920px) {
  h3 {
    font-size: 24px;
  }
}

p {
  line-height: 1.5;
  margin: 1rem 0;
}

li {
  line-height: 1.5;
}

.font-white {
  color: #FFFFFF;
}

body {
  margin: 0;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 1200px) {
  .container {
    padding: 0;
  }
}

.padding {
  padding: 1rem;
}

@media (min-width: 768px) {
  .padding {
    padding: 3rem;
  }
}

@media (min-width: 960px) {
  .padding {
    padding: 5rem;
  }
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 5%;
}

.reset-ul {
  list-style-type: none;
  padding: 0;
}

.border-black-1px {
  border: 1px solid #000000;
}

.hover-arrow svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
}

.hover-arrow:hover svg {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.w-80p {
  max-width: 80%;
}

@media (min-width: 480px) {
  .w-80p {
    max-width: 100%;
  }
}

button {
  border-radius: 24px;
  border: none;
  cursor: pointer;
  display: inline;
  font-size: 1rem;
  padding: .675rem 1.5rem;
  -webkit-transition: 100ms all linear;
  transition: 100ms all linear;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn--brown {
  color: #FFFFFF;
  background: #811B18;
  border: 1px solid #811B18;
}

.btn--brown:hover {
  color: #811B18;
  background: transparent;
  border: 1px solid #811B18;
}

.btn--orange {
  color: #FFFFFF;
  background: #E15226;
  border: 1px solid #E15226;
}

.btn--orange:hover {
  color: #E15226;
  background: transparent;
  border: 1px solid #E15226;
}

.btn--grey {
  color: #000000;
  background: #EEF1F4;
  border: 1px solid #EEF1F4;
}

.btn--grey:hover {
  color: #EEF1F4;
  background: #000000;
  border: 1px solid #EEF1F4;
}

.btn--purple {
  color: #FFFFFF;
  background: #4B2E81;
  border: 1px solid #4B2E81;
}

.btn--purple:hover {
  color: #4B2E81;
  background: #FFFFFF;
  border: 1px solid #4B2E81;
}

button {
  position: relative;
}

#searchSubmit {
  background: #811B18;
  color: #FFFFFF;
  margin-left: -110px;
}

.icon-learning_mode:before {
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/wp-content/themes/aisr/assets/img/icons/icon-desktop.svg");
  height: 30px;
  width: 34px;
  position: absolute;
  left: 0;
  top: 10px;
}

@media (min-width: 960px) {
  .icon-learning_mode:before {
    top: 17px;
  }
}

.icon-location:before {
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/wp-content/themes/aisr/assets/img/icons/icon-marker.svg");
  height: 30px;
  width: 34px;
  position: absolute;
  left: 0;
  top: 10px;
}

@media (min-width: 960px) {
  .icon-location:before {
    top: 17px;
  }
}

.icon-duration:before {
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/wp-content/themes/aisr/assets/img/icons/icon-time.svg");
  height: 28px;
  width: 24px;
  position: absolute;
  left: 5px;
  top: 10px;
}

@media (min-width: 960px) {
  .icon-duration:before {
    left: 0;
    top: 19px;
    height: 26px;
    width: 26px;
  }
}

.icon-study_load:before {
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/wp-content/themes/aisr/assets/img/icons/icon-study.svg");
  height: 30px;
  width: 34px;
  position: absolute;
  left: 0;
  top: 10px;
}

@media (min-width: 960px) {
  .icon-study_load:before {
    top: 17px;
  }
}

table {
  border: 1px solid #dededf;
  height: 100%;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 1px;
  text-align: left;
}

caption {
  caption-side: top;
  text-align: left;
}

tr {
  border: 1px solid #F5EFDF;
  background-color: #F5EFDF;
}

tr:nth-child(even) {
  border: 1px solid #FBF8EE;
  background-color: #FBF8EE;
}

th {
  color: #000000;
  padding: .75rem 1rem;
  width: 20%;
  min-width: 100px;
}

td {
  color: #000000;
  padding: .75rem 1rem;
}

header {
  background: transparent;
}

header .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: #F5EFDF;
  position: relative;
  z-index: 99;
}

@media (min-width: 960px) {
  header .header-container {
    background: transparent;
  }
}

header .header-container .site-logo svg {
  max-width: 183px;
}

@media (min-width: 960px) {
  header .header-container .site-logo svg {
    max-width: 253px;
  }
}

.primary-navigation {
  display: none;
}

@media (min-width: 960px) {
  .primary-navigation {
    display: block;
  }
}

.primary-navigation .header-drop-menu .menu-item {
  color: #811B18;
  font-weight: 600;
  margin-right: 1.5rem;
}

.primary-navigation .header-drop-menu .menu-item a {
  text-decoration: none;
}

.primary-navigation .header-drop-menu .menu-item-has-children {
  position: unset;
}

@media (min-width: 960px) {
  .primary-navigation .header-drop-menu .sub-menu {
    background: #FFFFFF;
    display: none;
    left: 0;
    list-style-type: none;
    padding: 2.5rem;
    position: absolute;
    min-height: 130px;
    width: 100%;
    z-index: 1;
    -webkit-transition: min-height 200ms 500ms linear;
    transition: min-height 200ms 500ms linear;
  }

  .primary-navigation .header-drop-menu .sub-menu li {
    color: #000000;
    margin-right: 1.5rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    opacity: 0;
    -webkit-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
  }
}

@media (min-width: 960px) and (min-width: 960px) {
  .primary-navigation .header-drop-menu .sub-menu li {
    padding-left: 32.5%;
  }
}

@media (min-width: 960px) {
  .primary-navigation .header-drop-menu .sub-menu li a:hover {
    color: #811B18;
    border-bottom: 1px solid #811B18;
  }
}

.primary-navigation .header-drop-menu #sub-menu-label {
  color: #811B18;
  display: none;
  font-size: 1.75rem;
  position: absolute;
  top: 30px;
  left: 12.5%;
  opacity: 0;
  -webkit-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}

@media (min-width: 960px) {
  .primary-navigation .header-drop-menu #sub-menu-label {
    display: block;
  }
}

.primary-navigation .header-drop-menu #sub-menu-sublabel {
  display: none;
  font-size: 1rem;
  font-weight: 500;
  position: absolute;
  top: 85px;
  left: 12.5%;
  max-width: 300px;
  opacity: 0;
  -webkit-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}

@media (min-width: 960px) {
  .primary-navigation .header-drop-menu #sub-menu-sublabel {
    display: block;
  }
}

.primary-navigation .header-drop-menu .opacity {
  opacity: 1 !important;
}

@media (min-width: 960px) {
  .home .primary-navigation .header-drop-menu .sub-menu {
    background: #811B18;
    top: 100px;
  }

  .home .primary-navigation .header-drop-menu .sub-menu * {
    color: #FFFFFF;
  }

  .home .primary-navigation .header-drop-menu .sub-menu * a:hover {
    color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
  }

  .home .primary-navigation .header-drop-menu .sub-menu #sub-menu-label {
    color: #FFFFFF;
  }
}

.secondary-navigation {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
}

@media (min-width: 768px) {
  .secondary-navigation {
    display: block;
  }
}

@media (min-width: 960px) {
  .secondary-navigation {
    right: 100px;
  }
}

.secondary-navigation .header-secondary-container {
  margin: 0;
}

.secondary-navigation .header-secondary-container li {
  padding: .5rem 1rem;
}

.secondary-navigation .header-secondary-container li:first-child {
  background: #811B18;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #FFFFFF;
}

.secondary-navigation .header-secondary-container li a {
  text-decoration: none;
}

.secondary-navigation .icon-search-brown:after {
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/wp-content/themes/aisr/assets/img/icons/icon-search-brown.svg");
  display: inline-block;
  margin-top: -.25rem;
  padding-left: .75rem;
  height: 30px;
  width: 34px;
  vertical-align: middle;
}

footer {
  background: #811B18;
  padding-bottom: 7rem;
  padding-top: 1rem;
  position: relative;
}

@media (min-width: 1200px) {
  footer {
    padding-bottom: 12rem;
    padding-top: 7.5rem;
  }
}

@media (min-width: 1200px) {
  footer .footer-container {
    max-width: 1100px;
  }
}

@media (min-width: 1410px) {
  footer .footer-container {
    max-width: 1200px;
  }
}

footer .footer-btm {
  position: absolute;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

@media (min-width: 960px) {
  footer:before {
    content: '';
    background-image: url('data:image/svg+xml,<svg width="492" height="495" viewBox="0 0 492 495" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M443.366 548.153C442.736 467.521 403.993 386.136 336.406 339.028C268.819 291.92 172.957 283.479 101.731 324.228C83.5207 334.653 65.7538 350.253 64.0075 370.788C62.5337 388.071 73.4688 404.942 88.5176 414.351C103.566 423.759 122.049 426.642 139.871 426.201C190.423 424.975 239.285 397.179 265.041 354.998C290.343 313.55 291.556 263.245 270.842 219.488C253.679 183.242 223.701 157.666 190.476 135.578C142.909 103.954 89.8482 80.0036 35.2193 62.6462C12.6966 55.4819 -10.533 50.1554 -34.1293 48.1031" stroke="%23FFCF99" stroke-width="96" stroke-miterlimit="10"/></svg>');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    pointer-events: none;
    position: absolute;
    left: -10%;
    bottom: 0;
    height: 40vh;
    width: 420px;
  }
}

@media (min-width: 1200px) {
  footer:before {
    left: -25%;
  }
}

@media (min-width: 1410px) {
  footer:before {
    left: 0;
  }
}

@media (min-width: 960px) {
  footer:after {
    content: '';
    background-image: url('data:image/svg+xml,<svg width="644" height="328" viewBox="0 0 644 328" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M689.518 49.6206C580.827 38.9595 466.05 76.7054 393.604 156.039C321.158 235.372 198.761 401.866 4.70898 387.043" stroke="%23FFCF99" stroke-width="96" stroke-miterlimit="10"/></svg>');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    position: absolute;
    pointer-events: none;
    bottom: 0;
    right: 0;
    height: 40vh;
    width: 420px;
  }
}

footer .footer-logo {
  max-width: 250px;
}

.footer-nav {
  margin-bottom: 0;
  list-style-type: none;
  padding: inherit;
}

.footer-nav li {
  color: #FFFFFF;
  margin: .5rem 0;
}

.footer-nav li a {
  text-decoration: none;
}

.footer-nav li a:hover {
  text-decoration: underline;
}

.menu-row {
  width: 100%;
  margin: 0 auto;
}

.menu-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

@media (min-width: 960px) {
  .menu-box {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-right: 1rem;
}

.menu li a {
  display: inline-block;
  font-size: 1.125rem;
  position: relative;
  text-decoration: none;
  -webkit-transition: 350ms all;
  transition: 350ms all;
}

@media (min-width: 768px) {
  .menu li a {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1100px) {
  #mainmenu {
    margin-left: 2rem;
  }
}

.menu-active .sub-menu {
  list-style: none;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#menu_trigger {
  display: none;
}

@media (min-width: 960px) {
  .backmenu-row {
    display: none;
  }

  .backmenu-row em {
    display: none;
  }
}

@media only screen and (max-width: 959px) {
  #mainmenu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    z-index: 10;
  }

  hgroup {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
    width: 100%;
  }

  .searchbox-container {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  #menu_trigger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 35px;
    width: 80px;
    margin: .25rem .5rem;
    text-decoration: none;
  }

  #menu_trigger .menulines {
    margin-top: 9px;
    position: relative;
    display: block;
  }

  #menu_trigger .menulines,
  #menu_trigger .menulines:before,
  #menu_trigger .menulines:after {
    content: "";
    height: 2px;
    width: 30px;
    border-radius: 5px;
    background: #811B18;
  }

  #menu_trigger .menulines:before,
  #menu_trigger .menulines:after {
    position: absolute;
    left: 0;
  }

  #menu_trigger .menulines:before {
    top: -9px;
  }

  #menu_trigger .menulines:after {
    top: 9px;
  }

  #menu_trigger .menu-label {
    color: #811B18;
    font-weight: 700;
    line-height: 1.25;
    padding-left: 7.5px;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #F5EFDF;
    overflow: hidden;
    width: 104vw;
    height: 100vh;
    z-index: 9;
  }

  .mobile-menu ul {
    display: block;
    padding-top: 2rem;
    -webkit-transition: 350ms all;
    transition: 350ms all;
    width: 100vw;
  }

  .mobile-menu li {
    margin: 0;
  }

  .mobile-menu li a {
    color: #811B18;
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    padding: .75rem 2rem;
  }
}

@media only screen and (max-width: 959px) and (min-width: 480px) {
  .mobile-menu li a {
    padding: .75rem 3.5rem;
  }
}

@media only screen and (max-width: 959px) {
  .mobile-menu li a .navtrigger {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
  }

  .mobile-menu li a .navtrigger:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10%;
    height: 10px;
    width: 10px;
    border-right: 2px solid #811B18;
    border-bottom: 2px solid #811B18;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-menu li .sub-menu,
  .mobile-menu li .submenu {
    position: absolute;
    top: 13px;
    left: 100%;
    width: 100%;
    background: #F5EFDF;
    color: #811B18;
    height: 100%;
    list-style: none;
    padding-left: 0;
    padding-top: 1.45rem;
    -webkit-transition: left 350ms linear;
    transition: left 350ms linear;
    z-index: 1;
  }

  .mobile-menu li .sub-menu li a,
  .mobile-menu li .submenu li a {
    font-size: 1.25rem;
    font-weight: 700;
    padding: .75rem 4.7rem;
  }

  .mobile-menu li .sub-menu .backmenu-row,
  .mobile-menu li .submenu .backmenu-row {
    position: relative;
    padding: 20px;
    padding-left: 55px;
    background: #F5EFDF;
    font-size: 16px;
    position: absolute;
    top: 30px;
    z-index: 9;
  }
}

@media only screen and (max-width: 959px) and (min-width: 960px) {
  .mobile-menu li .sub-menu .backmenu-row,
  .mobile-menu li .submenu .backmenu-row {
    display: none;
  }

  .mobile-menu li .sub-menu .backmenu-row em,
  .mobile-menu li .submenu .backmenu-row em {
    display: none;
  }
}

@media only screen and (max-width: 959px) {
  .mobile-menu li .sub-menu .backmenu-row .back-trigger,
  .mobile-menu li .submenu .backmenu-row .back-trigger {
    padding: 0;
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 30px;
    display: block;
  }

  .mobile-menu li .sub-menu .backmenu-row .back-trigger:before,
  .mobile-menu li .submenu .backmenu-row .back-trigger:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 10px;
    width: 10px;
    border-right: 2px solid #811B18;
    border-bottom: 2px solid #811B18;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
            transform: translate(-50%, -50%) rotate(135deg);
  }

  .mobile-menu li .sub-menu .backmenu-row em,
  .mobile-menu li .submenu .backmenu-row em {
    color: #811B18;
    font-size: 1.5rem;
    font-style: normal;
  }

  .mobile-menu li.sub-open > .sub-menu,
  .mobile-menu li.sub-open > .submenu {
    left: 0;
  }

  .mobile-menu li .sub-menu__title a {
    padding: 0.375rem 4.7rem 0 !important;
  }

  .mobile-menu li .sub-menu__title a h4 {
    color: #811B18;
    font-size: 1.25rem;
    font-weight: 300;
  }
}

.card_frontpage * {
  color: #FFFFFF;
}

.card_frontpage-heading {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 0;
}

.card_frontpage-subheading {
  margin-bottom: .5rem;
}

.carousel_frontpage {
  z-index: 1;
}

.carousel_frontpage-wrapper {
  position: relative;
}

@media (min-width: 960px) {
  .carousel_frontpage-wrapper {
    margin-top: -12vh;
  }
}

.carousel_frontpage-container {
  height: 60vh;
  position: relative;
}

@media (min-width: 960px) {
  .carousel_frontpage-container {
    height: 92vh;
  }
}

.carousel_frontpage-bg {
  background-position: 32.5%;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: .85;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (min-width: 960px) {
  .carousel_frontpage-bg {
    background-position: 50%;
    opacity: 1;
  }
}

.carousel_frontpage-content {
  padding: 1.25rem;
}

@media (min-width: 1200px) {
  .carousel_frontpage-content {
    padding: 0;
  }
}

.carousel_frontpage-heading {
  margin: 0;
}

.loop-frontpage {
  position: relative;
}

@media (min-width: 1410px) {
  .loop-frontpage:after {
    content: '';
    background-image: url('data:image/svg+xml,<svg width="554" height="1406" viewBox="0 0 554 1406" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M904.797 1122.09C694.64 1515.54 -80.1771 1383.51 67.319 964.96C128.671 790.863 310.049 938.355 399.794 784.854C489.539 631.352 317.714 434.089 446.495 264.651C709.011 -37.2574 1500.66 170.419 1413.11 185.246C1243.51 213.981 1069.12 117.516 1285.88 45.5375" stroke="%23811B18" stroke-width="96" stroke-miterlimit="10"/></svg>');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 0;
    height: 100vh;
    width: 30vw;
  }
}

.page-footer h3 {
  color: #811B18;
}

.page-block-container {
  position: relative;
}

@media (min-width: 1200px) {
  .page-block-container:after {
    content: '';
    background-image: url('data:image/svg+xml,<svg width="491" height="1302" viewBox="0 0 491 1302" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M629.832 8.00006C597.832 206 517.832 333.98 306.911 457.962C237.396 498.824 186.286 573.069 179.282 655.155C172.279 737.241 212.9 824.481 283.803 865.791C301.937 876.348 324.331 883.935 342.987 875.18C358.692 867.815 367.835 849.909 368.459 832.172C369.082 814.435 362.337 796.987 353.045 781.773C326.707 738.607 278.204 710.19 228.796 708.975C-165.807 699.312 123.832 1526 753.832 1160" stroke="%23811B18" stroke-width="96" stroke-miterlimit="10"/></svg>');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 0;
    height: 100vh;
    width: 30vw;
    z-index: -1;
  }
}

#post-404 {
  height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

#post-404 h1 {
  font-size: 3rem;
  margin-bottom: .5rem;
}

@media (min-width: 768px) {
  #post-404 h1 {
    font-size: 5rem;
  }
}

.accordion {
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
}

.accordion_intro {
  position: relative;
  cursor: pointer;
}

.accordion_intro:after {
  background-image: url('data:image/svg+xml,<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" fill="white"/><path d="M7 14.5L12 9.5L17 14.5" stroke="%23000000" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  content: '';
  height: 30px;
  width: 30px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 250ms linear;
  transition: -webkit-transform 250ms linear;
  transition: transform 250ms linear;
  transition: transform 250ms linear, -webkit-transform 250ms linear;
  z-index: -1;
}

.accordion_content {
  padding-top: 1rem;
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  -webkit-transition: all 0.275s ease-out;
  transition: all 0.275s ease-out;
  opacity: 0;
}

.accordion_active .accordion_intro:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.accordion_active .accordion_content {
  padding: 0;
  opacity: 1;
}

.block-bg-beige {
  position: relative;
}

.block-bg-beige:before {
  content: '';
  background: #F5EFDF;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  margin: -1rem;
  padding: 1rem;
  position: absolute;
  z-index: -1;
}

.page-banner {
  position: relative;
}

.page-banner-img {
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  padding: 0;
}

.filter-heading {
  display: block;
  border-bottom: 1px solid #000000;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.filter-accordion.active .filter-accordion-panel {
  max-height: 0;
}

.filter-accordion-panel {
  overflow: hidden;
  max-height: 0;
}

@media (min-width: 960px) {
  .filter-accordion-panel {
    max-height: 100%;
  }
}

.filter-accordion-panel .facetwp-facet-search {
  display: none;
}

.filter-accordion-panel .filter-suggestion-list {
  padding-left: 1.25rem;
  margin: 0;
}

.filter-accordion-panel .suggestion {
  display: block;
  text-decoration: none;
}

.filter-label {
  cursor: pointer;
}

.filter-label:after {
  display: inline-block;
  content: '';
  background-image: url('data:image/svg+xml,<svg height="800px" width="800px" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 185.343 185.343" xml:space="preserve"><g><g><path style="fill:%23010002;" d="M51.707,185.343c-2.741,0-5.493-1.044-7.593-3.149c-4.194-4.194-4.194-10.981,0-15.175l74.352-74.347L44.114,18.32c-4.194-4.194-4.194-10.987,0-15.175c4.194-4.194,10.987-4.194,15.18,0l81.934,81.934c4.194,4.194,4.194,10.987,0,15.175l-81.934,81.939C57.201,184.293,54.454,185.343,51.707,185.343z"/></g></g></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 20px;
  width: 14px;
  float: right;
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
}

@media (min-width: 960px) {
  .filter-label:after {
    display: none;
  }
}

.filter-label.active:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.course-result__item a {
  text-decoration: none;
}

.course-result__image {
  background-color: #F5EFDF;
  display: block;
  border-radius: 10px;
  width: 100%;
}

@media (min-width: 960px) {
  .course-result__image {
    max-height: 186px;
    min-height: 186px;
  }
}

.page-banner {
  position: relative;
}

.page-banner-img {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}

.page-banner-img-qualifications {
  width: 0%;
}

@media (min-width: 1200px) {
  .page-banner-img-qualifications {
    width: 40%;
  }
}

.page-banner-heading-bwn {
  color: #811B18;
  z-index: 1;
}

.page-banner-heading-grey {
  color: #EEF1F4;
  z-index: 1;
}

.page-banner .facetwp-selections ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0 0;
  padding: 0;
}

.page-banner .facetwp-selections ul .facetwp-selection-value {
  background: none;
  color: #FFFFFF;
}

.page-banner .facetwp-selections ul .facetwp-selection-label {
  display: none;
}

.hidden_label label,
.hidden_label legend {
  display: none;
}

.gform-grid-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gform-grid-row input {
  width: 44.5%;
}

.gform-theme form input[type=email],
.gform-theme form input[type=number],
.gform-theme form input[type=tel],
.gform-theme form input[type=text] {
  border-radius: 24px;
  border: none;
  padding: .75rem 1rem;
  width: 100%;
}

.gform-theme form select {
  border-radius: 24px;
  border: none;
  padding: 0 1rem;
  width: 100%;
}

.gform-theme form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.gform-theme form textarea {
  border-radius: 24px;
  border: none;
  padding: .75rem 1rem;
  width: 100%;
  height: 100px;
}

.gform-theme form textarea.large {
  min-block-size: 10rem !important;
}

.gform-theme .gform_fields {
  row-gap: 1.25rem !important;
}

.gform_footer input[type=submit],
.gform_footer .gform_button {
  background: #811B18 !important;
  border-radius: 24px !important;
  border: none !important;
  display: inline !important;
  font-size: 0.9rem !important;
  padding: 0.675rem 1.5rem !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.gform_footer #gform_submit_button_2 {
  background: #E15226 !important;
}

.address_zip {
  inline-size: 100% !important;
}

/* Arrows */

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '\2190';
}

[dir='rtl'] .slick-prev:before {
  content: '\2192';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '\2192';
}

[dir='rtl'] .slick-next:before {
  content: '\2190';
}

.slick-dots {
  position: absolute;
  bottom: 30%;
  left: 11.5%;
  display: block;
  max-width: 1280px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  z-index: 2;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 36px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '\2022';
  opacity: .25;
  color: #811B18;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #811B18;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.facetwp-template {
  position: relative;
  padding-bottom: 50px;
}

.facetwp-counter {
  display: none;
}

.facetwp-facet {
  margin-bottom: 1rem !important;
}

.facetwp-type-sort {
  float: right;
}

.facetwp-type-sort select {
  border-radius: 4px;
  font-size: 1rem;
  padding: .5rem 1rem;
}

.facetwp-facet-search {
  max-width: 90%;
}

@media (min-width: 768px) {
  .facetwp-facet-search {
    max-width: auto;
  }
}

.facetwp-facet-search .facetwp-input-wrap {
  width: 100%;
  min-width: 300px;
  max-width: 650px;
}

.facetwp-facet input.facetwp-search {
  border-radius: 24px;
  border: none;
  cursor: pointer;
  display: inline;
  font-size: 1rem;
  margin-bottom: 1.5rem !important;
  margin-top: 1.5rem !important;
  padding: .675rem 1.5rem;
  padding-right: 0 !important;
  -webkit-transition: 100ms all linear;
  transition: 100ms all linear;
  width: 100%;
  min-width: 300px;
  max-width: 650px;
}

.facetwp-facet-pager_ {
  position: absolute;
  bottom: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.facetwp-load-more {
  background: #E15226;
  color: #FFFFFF;
  width: 150px;
}

.search-suggestions {
  margin-top: -24px;
  font-size: 15px;
}

.search-suggestions .suggestion {
  display: inline-block;
  line-height: 1em;
  border: 1px solid #811B18;
  border-radius: 8px;
  padding: 5px 8px;
  margin-left: 10px;
  text-decoration: none !important;
  color: #811B18;
  /* blue */
}

.search-suggestions .suggestion:hover {
  border-color: #811B18;
  /* blue */
}

.search-suggestions .suggestion:focus {
  outline: none !important;
}

.facetwp-facet-reset {
  display: inline-block;
  margin-bottom: .25rem !important;
  margin-left: .5rem;
  vertical-align: middle;
}

.facetwp-facet-reset .facetwp-reset {
  background: #811B18;
  border: 1px solid #811B18;
  color: #FFFFFF;
  padding: .5rem 1.25rem;
}

.facetwp-facet-reset .facetwp-reset:hover {
  background: transparent;
  border: 1px solid #811B18;
  color: #811B18;
}

.facetwp-facet-keywords .facetwp-radio {
  background-image: none !important;
  padding-left: 0;
}

.post-edit-link {
  border-radius: 24px;
  background: #FFCF99;
  padding: .75rem 1.5rem;
  color: #000000;
  position: fixed;
  left: 2%;
  bottom: 2%;
  z-index: 9999;
}

*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

::-webkit-backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.z-10 {
  z-index: 10;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.col-span-12 {
  grid-column: span 12 / span 12;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-span-6 {
  grid-column: span 6 / span 6;
}

.m-0 {
  margin: 0px;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mt-0 {
  margin-top: 0px;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid {
  display: grid;
}

.h-full {
  height: 100%;
}

.max-h-14 {
  max-height: 3.5rem;
}

.min-h-96 {
  min-height: 24rem;
}

.w-full {
  width: 100%;
}

.max-w-screen-xl {
  max-width: 1280px;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-xl {
  max-width: 36rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gap-0 {
  gap: 0px;
}

.gap-x-3 {
  -webkit-column-gap: 0.75rem;
          column-gap: 0.75rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

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

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.font-bold {
  font-weight: 700;
}

.font-light {
  font-weight: 300;
}

.no-underline {
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
}

@media (min-width: 768px) {
  .md\:order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .md\:order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:mb-14 {
    margin-bottom: 3.5rem;
  }

  .md\:h-screen {
    height: 100vh;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .lg\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .lg\:ml-0 {
    margin-left: 0px;
  }

  .lg\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 1280px) {
  .xl\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
}

