@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100..900&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    vertical-align: baseline;
}

html {
    height: 100%;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    height: 100%;
    background-color: #FFFFFF;
    color: #000000;
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: default;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    outline: none;
    background: none;
}

div:focus,
span:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    background-image: none;
}

div,
span,
a,
input,
textarea,
select,
button {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
figure,
form {
    display: block;
}

.touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* BAR */

.bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    transition: 0.25s;
    z-index: 10;
}

.bar-compact {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 24px -2px rgba(0, 0, 0, 0.25);
}

.bar-layout {
    display: flex;
    column-gap: 14px;
    width: 100%;
    max-width: 1280px;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
    transition: 0.25s;
}

.bar-compact .bar-layout {
    padding-top: 16px;
    padding-bottom: 16px;
}

.bar-brand {
    flex: none;
}

.bar-brand img {
    width: auto;
    height: 72px;
}

.bar-compact .bar-brand img {
    width: auto;
    height: 52px;
}

.bar-nav {
    flex: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar-actions {
    flex: none;
    display: flex;
    align-items: center;
}

.bar-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding-left: 28px;
    padding-right: 28px;
    border-radius: 80px;
    background-color: #8534AD;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0px 0px 24px -1px rgba(0, 0, 0, 0.3);
    transition: 0.25s;
}

.bar-action:hover {
    background-color: #007AFF;
    box-shadow: 0px 0px 24px -1px rgba(0, 0, 0, 0.55);
}

.touch .bar-action:hover {
    background-color: #8534AD;
    box-shadow: 0px 0px 24px -1px rgba(0, 0, 0, 0.3);
}

.bar-action:active,
.touch .bar-action:active {
    background-color: #007AFF;
    box-shadow: 0px 0px 24px -1px rgba(0, 0, 0, 0.55);
}

.bar-action-alt {
    display: none;
    height: 48px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 80px;
    font-size: 16px;
    line-height: 16px;
}

/* MARQUEE */

.marquee {
    padding-top: 10px;
    padding-bottom: 12px;
    background-color: #FFBB00;
    overflow: hidden;
}

.marquee .carouselTicker__item {
    height: auto;
}

.marquee-caption {
    padding: 0 !important;
    color: #000000;
    font-family: "Inter Tight", sans-serif;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.marquee-caption strong {
    font-weight: 600;
}

/* GLOBALS */

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding-left: 28px;
    padding-right: 28px;
    border-radius: 80px;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 17px;
    font-weight: 600;
    box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: 0.25s;
}

.button:hover {
    background-color: #007AFF;
    box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.55);
}

.touch .button:hover {
    background-color: #000000;
    box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.3);
}

.button:active,
.touch .button:active {
    background-color: #007AFF;
    box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.55);
}

.button-alt {
    background-color: #007AFF;
    color: #000000;
    font-weight: 600;
}

.button-alt:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.touch .button-alt:hover {
    background-color: #007AFF;
    color: #000000;
}

.button-alt:active,
.touch .button-alt:active {
    background-color: #FFFFFF;
    color: #000000;
}

.button-alt-2 {
    background-color: transparent;
    border: solid 2px #007AFF;
    color: #007AFF;
    box-shadow: none;
}

.button-alt-2:hover {
    background-color: #007AFF;
    color: #000000;
    box-shadow: none;
}

.touch .button-alt-2:hover {
    background-color: transparent;
    color: #000000;
    box-shadow: none;
}

.button-alt-2:active,
.touch .button-alt-2:active {
    background-color: #007AFF;
    color: #000000;
    box-shadow: none;
}

.button-alt-3 {
    column-gap: 8px;
    background-color: #0CC243;
    color: #000000;
    font-weight: 600;
}

.button-alt-3:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.touch .button-alt-3:hover {
    background-color: #0CC243;
    color: #000000;
}

.button-alt-3:active,
.touch .button-alt-3:active {
    background-color: #000000;
    color: #FFFFFF;
}

.button-alt-3 svg {
    width: 24px;
    height: 24px;
}

/* INTRO */

.intro {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #F8F8F8;
    overflow: hidden;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../assets/intro.jpg);
    animation-name: intro-bg-anima;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes intro-bg-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.intro-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.25);
}

.intro-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro-frame {
    position: relative;
    width: 100%;
    max-width: 1280px;
    padding-top: 100px;
    padding-left: 64px;
    padding-right: 64px;
}

.intro-title {
    max-width: 920px;
    padding-bottom: 24px;
    color: #8534AD;
    font-size: 76px;
    line-height: 82px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(25%);
    animation-name: intro-title-anima;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

.intro-title strong {
    color: #007AFF;
    font-weight: 700;
}

@keyframes intro-title-anima {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.intro-caption {
    max-width: 600px;
    color: #000000;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    opacity: 0;
    animation-name: intro-caption-anima;
    animation-duration: 1.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes intro-caption-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.85;
    }
}

.intro-buttons {
    display: flex;
    column-gap: 16px;
    row-gap: 16px;
    padding-top: 36px;
    opacity: 0;
    transform: translateY(10%);
    animation-name: intro-buttons-anima;
    animation-duration: 1.5s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes intro-buttons-anima {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

/* CAPTION */

.caption {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 24px;
    padding-right: 24px;
    background-color: #007AFF;
    color: #FFFFFF;
    font-size: 32px;
    line-height: 42px;
    font-weight: 400;
    text-align: center;
}

.caption-text {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
}

.black {
    padding-top: 20px;
    color: #000000;
    font-weight: 700;
}

/* CONTACT */

.contact {
    padding-top: 100px;
    padding-bottom: 120px;
    padding-left: 48px;
    padding-right: 48px;
    background-color: #FFFFFF;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-title {
    margin-left: -3px;
    padding-bottom: 12px;
    color: #8534AD;
    font-size: 60px;
    line-height: 68px;
    font-weight: 700;
}

.contact-caption {
    padding-bottom: 34px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
}

.contact-form {
    padding-top: 24px;
    padding-bottom: 24px;
}

.contact-fields {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}

.contact-fields-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 16px;
}

.contact-field {
    position: relative;
    cursor: text;
}

.contact-textbox {
    width: 100%;
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 6px;
    border: solid 2px #007AFF;
    color: #007AFF;
    font-size: 17px;
    line-height: 17px;
    font-weight: 600;
    box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.1);
    transition: 0.25s;
}

.contact-textarea {
    height: 200px;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
    line-height: 22px;
    resize: none;
}

.contact-textarea::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 30px;
}

.contact-textarea::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 30px;
    border: solid 2px #007AFF;
}

.contact-textarea::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

.contact-textarea::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0px;
}

.contact-field-on .contact-textbox {
    border-color: #8534AD;
}

.contact-field-filled .contact-textbox {
    border-color: #007AFF;
}

.contact-label {
    position: absolute;
    top: 9px;
    left: 13px;
    width: auto;
    max-width: calc(100% - 24px);
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 8px;
    background-color: #FFFFFF;
    color: #007AFF;
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
    transition: 0.25s;
}

.contact-field-on .contact-label {
    top: -14px;
    left: 11px;
    color: #007AFF;
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
    cursor: default;
}

.contact-field-filled .contact-label {
    color: #007AFF;
}

.contact-info {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 48px;
    padding-bottom: 54px;
    border-radius: 16px;
    background-color: #FFFFFF;
    background-image: url(../assets/contact.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 6px 24px -6px rgba(0, 0, 0, 0.1), 0px 18px 33px -18px rgba(50, 50, 93, 0.25);
}

/* FEATURES */

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
    padding-top: 72px;
    padding-bottom: 72px;
    padding-left: 10%;
    padding-right: 10%;
    background-color: rgba(133, 52, 173, 0.25);
    background: linear-gradient(45deg, rgba(133, 52, 173, 0.25) 0%, #FFFFFF 100%);
    text-align: center;
}

.features-header {
    display: flex;
    flex-direction: column;
}

.features-headline {
    flex: none;
    padding-top: 72px;
    padding-bottom: 32px;
    padding-right: 5%;
    padding-left: 5%;
    color: #007AFF;
    font-size: 60px;
    line-height: 68px;
    font-weight: 700;
}

.features-headline strong {
    color: #8534AD;
    font-weight: 700;
}

.features-image {
    flex: auto;
    padding-top: 16px;
    padding-bottom: 8%;
}

.features-image-pic {
    max-width: 460px;
    height: 100%;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 30px 50px 0 rgba(133, 52, 173, 0.15);
    background-image: url(../assets/features.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.features-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.features-item {
    padding: 24px;
    padding-top: 48px;
    padding-bottom: 56px;
    border-radius: 16px;
    background-color: #FFFFFF;
    box-shadow: 0 20px 40px 0 rgba(20, 41, 158, 0.1);
}

.features-picture {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    margin-bottom: 8px;
    border-radius: 80px;
    background-color: #8534AD;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.features-picture-1 {
    background-image: url(../assets/features-1.jpg);
}

.features-picture-2 {
    background-image: url(../assets/features-2.jpg);
}

.features-picture-3 {
    background-image: url(../assets/features-3.jpg);
}

.features-picture-4 {
    background-image: url(../assets/features-4.jpg);
}

.features-title {
    padding-top: 16px;
    padding-bottom: 14px;
    color: #007AFF;
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
}

.features-detail {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

/* WORK */

.work {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
    padding-top: 72px;
    padding-bottom: 72px;
    padding-right: 0%;
    background-color: #FFFFFF;
}

.work-content {
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 25%;
}

.work-headline {
    padding-top: 24px;
    padding-bottom: 24px;
    color: #8534AD;
    font-size: 60px;
    line-height: 68px;
    font-weight: 700;
}

.work-headline strong {
    color: #007AFF;
    font-weight: 700;
}

.work-text {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.work-text p {
    padding-bottom: 16px;
}

.work-text p:last-of-type {
    padding-bottom: 38px;
}

.work-picture {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    background-image: url(../assets/work.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* TEACHERS */

.teachers {
    position: relative;
    padding-top: 160px;
    padding-bottom: 148px;
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
    background-color: #007AFF;
    background-image: url(../assets/course.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.teachers-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007AFF 0%, #8534AD 100%);
    opacity: 0.65;
}

.teachers-content {
    position: relative;
}

.teachers-headline {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 32px;
    color: #FFFFFF;
    font-size: 50px;
    line-height: 58px;
}

.teachers-headline strong {
    font-weight: 700;
}

/* FOOTER */

.footer {
    padding-top: 72px;
    padding-bottom: 48px;
    padding-left: 10%;
    padding-right: 10%;
    background-color: #FFFFFF;
}

.footer-logo img {
    width: 180px;
}

.footer-description {
    width: 100%;
    max-width: 620px;
    padding-top: 32px;
    font-size: 18px;
    line-height: 28px;
}

.footer-description strong {
    font-weight: 500;
}

.footer-copy {
    padding-top: 72px;
    color: #AFAFAF;
    font-size: 16px;
    line-height: 24px;
}

.footer-copy strong {
    font-weight: 500;
}

/* WHATSAPP */

.whatsapp {
    display: block;
    position: fixed;
    bottom: 40px;
    right: 40px;
    text-decoration: none;
    cursor: pointer;
    transform: translateY(0px);
    animation: whatsapp-anima 5s ease-in-out infinite;
    z-index: 20;
}

@keyframes whatsapp-anima {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.whatsapp-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 1000px;
    background: #0CC243;
    box-shadow: 0px 0px 20px -3px rgba(0, 0, 0, 0.45);
    transition: 0.25s;
    z-index: 2;
}

.whatsapp:hover .whatsapp-icon {
    transform: scale(1.16);
}

.touch .whatsapp:hover .whatsapp-icon {
    transform: scale(1);
}

.whatsapp:active .whatsapp-icon,
.touch .whatsapp:active .whatsapp-icon {
    transform: scale(1.16);
}

.whatsapp svg {
    display: block;
    width: 46px;
    height: 46px;
}

.whatsapp svg path {
    fill: #FFFFFF;
    transition: 0.25s;
}

/* TOAST */

#toast {
    position: fixed;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    z-index: 110;
}

.toast-item {
    display: none;
    column-gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 28px;
    padding-right: 28px;
    border-radius: 100px;
    background-color: #E46962;
    opacity: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
}

.toast-show {
    opacity: 1;
    transform: translateY(0%);
    transition: 0.5s;
}

.toast-hide {
    opacity: 0;
    transform: scale(0.9);
    transition: 0.25s;
}

.toast-caption {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.toast-inverse .toast-caption {
    color: #000000;
}

.toast-button {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.7;
    cursor: pointer;
    transition: 0.25s;
}

.toast-inverse .toast-button {
    color: #000000;
}

.toast-button:hover {
    opacity: 1;
}

.touch .toast-button:hover {
    opacity: 0.7;
}

.toast-button:active,
.touch .toast-button:active {
    opacity: 1;
}

/* ADVICE */

.advice {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: #8534AD;
    animation: advice-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes advice-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.advice-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    animation: panel-bg-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes advice-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.advice-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.advice-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.advice-actions {
    display: flex;
    justify-content: flex-end;
}

.advice-close {
    display: inline-flex;
    padding: 12px;
    padding-top: 11px;
    padding-bottom: 17px;
    cursor: pointer;
}

.advice-close img {
    display: block;
    width: 18px;
    height: 18px;
    transition: 0.5s;
}

.advice-close:hover img {
    transform: rotate(180deg);
}

.touch .advice-close:hover img {
    transform: rotate(0deg);
}

.advice-close:active img,
.touch .advice-close:active img {
    transform: rotate(180deg);
}

.advice-actions-buttons {
    flex: none;
    display: flex;
    column-gap: 22px;
    padding-bottom: 16px;
}

.advice-content {
    flex: auto;
    display: flex;
    align-items: center;
    padding-bottom: 64px;
}

.advice-title {
    padding-bottom: 16px;
    color: #FFBB00;
    font-weight: 600;
    font-size: 26px;
    line-height: 34px;
}

.advice-main {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 27px;
    font-weight: 300;
    text-align: center;
    opacity: 0;
    animation-name: advice-content-anima;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.advice-paragraph {
    padding-bottom: 16px;
}

.advice-main strong {
    font-weight: 700;
}

@keyframes advice-content-anima {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.advice-button {
    padding-top: 20px;
}

/* RESPONSIVE */

@media (max-width: 1500px) {

    .features {
        column-gap: 24px;
        padding-left: 32px;
        padding-right: 32px;
    }

}


@media (max-width: 1280px) {

    .features {
        grid-template-columns: 1fr;
    }

    .features-image-pic {
        width: 100%;
        max-width: 580px;
        height: 580px;
    }

    .work {
        column-gap: 24px;
    }

    .work-content {
        padding-left: 32px;
        padding-right: 32px;
    }

}

@media (max-width: 1050px) {

    .intro-title {
        max-width: unset;
        font-size: 56px;
        line-height: 62px;
    }

    .intro-caption {
        max-width: unset;
        font-size: 22px;
        line-height: 30px;
    }

}

@media (max-width: 1000px) {

    .contact-layout {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    .contact-info {
        padding-bottom: 70%;
    }

    .work {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .work-picture {
        width: calc(100% - 24px);
        padding-bottom: 75%;
        margin-left: 24px;
    }

}

@media (max-width: 780px) {

    .intro-title {
        font-size: 46px;
        line-height: 52px;
    }

    .features-items {
        grid-template-columns: 1fr;
    }

    .teachers {
        padding-left: 24px;
        padding-right: 24px;
    }

    .teachers-headline {
        font-size: 26px;
        line-height: 34px;
    }

}

@media (max-width: 680px) {

    .whatsapp {
        bottom: 24px;
        right: 24px;
    }

    .whatsapp-icon {
        width: 72px;
        height: 72px;
    }

    .whatsapp svg {
        width: 36px;
        height: 36px;
    }

}

@media (max-width: 640px) {

    .intro-frame {
        padding-left: 24px;
        padding-right: 24px;
    }

    .intro-title {
        padding-bottom: 16px;
        font-size: 32px;
        line-height: 38px;
    }

    .intro-caption {
        font-size: 19px;
        line-height: 27px;
    }

    .intro-buttons {
        padding-top: 24px;
    }

    .contact {
        padding-top: 80px;
        padding-bottom: 64px;
        padding-left: 24px;
        padding-right: 24px;
    }

}

@media (max-width: 570px) {

    .intro-frame {
        padding-top: 124px;
    }

    .contact-fields-double {
        grid-template-columns: 1fr;
    }

    .contact-title {
        margin-left: 0px;
        padding-bottom: 12px;
        font-size: 36px;
        line-height: 44px;
    }

    .features {
        padding-top: 64px;
        padding-left: 24px;
        padding-right: 24px;
        background: linear-gradient(90deg, rgba(133, 52, 173, 0.25) 0%, #FFFFFF 100%);
    }

    .features-headline {
        padding-top: 0px;
        padding-right: 0px;
        padding-left: 0px;
        font-size: 36px;
        line-height: 44px;
    }

    .features-image {
        padding-bottom: 24px;
    }

    .features-image-pic {
        width: 100%;
        padding-bottom: 130%;
        height: unset;
    }

    .features-items {
        gap: 24px;
    }

    .features-title {
        padding-top: 16px;
        padding-bottom: 14px;
        font-size: 24px;
        line-height: 28px;
    }

    .features-detail {
        font-size: 18px;
        line-height: 26px;
    }

    .work {
        padding-top: 24px;
        padding-bottom: 72px;
    }

    .work-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .work-headline {

        font-size: 36px;
        line-height: 44px;
    }

    .contact-caption {
        padding-bottom: 34px;
        font-size: 20px;
        line-height: 28px;
    }

    .contact-info {
        border-radius: 12px;
    }

    .caption {
        padding-top: 64px;
        padding-bottom: 64px;
        font-size: 24px;
        line-height: 30px;
    }

    .footer {
        padding-bottom: 96px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-description {
        font-size: 16px;
        line-height: 26px;
    }

    .footer-copy {
        font-size: 15px;
        line-height: 23px;
    }

}

@media (max-width: 530px) {

    .bar-actions {
        display: none;
    }

    .bar-compact .bar-actions {
        display: flex;
    }

    .bar-action {
        display: none;
    }

    .bar-action-alt {
        display: inline-flex;
    }

}