@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");

:root {
    --black-color: #000;
    --blue-color: #006aff;
    --blue-transparent-color: #006aff80;
    --dark-blue-color: #02029a;
    --dark-blue-transparent-color: #02029a80;
    --green-color: #17eb90;
    --green-alt-color: #04c973;
    --grey-color: #707070;
    --initials-color: #d2d2d2;
    --light-blue-color: #6eaaff;
    --light-grey-color: #bfbfbf;
    --orange-color: #efa036;
    --placeholder-color: #A3A3B1;
    --red-color: #ff0000;
    --shadow-color: #00000029;
    --very-light-grey-color: #f7f7f8;
    --very-light-grey-alt-color: #f2f2f2;
    --white-color: #fff;
    --white-transparent-color: #ffffff80;
}

* {
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    overflow-x: hidden;
}

body, button, input {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
}

/*.grecaptcha-badge {
    visibility: hidden !important;
}*/

button {
    background-color: transparent;
    cursor: pointer;
}

h2 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
}

h3 {
    font-size: 30px;
    line-height: 1.23;
    margin-bottom: 30px;
}

iframe {
    max-width: 100%;
}

.bold {
    font-weight: 700;
}

.blue {
    color: var(--blue-color);
}

.blue-bg {
    background-color: var(--blue-color);
}

.dark-blue {
    color: var(--dark-blue-color);
}

.dark-blue-bg {
    background-color: var(--dark-blue-color);
}

.light-blue-bg {
    background-color: var(--light-blue-color);
}

.red {
    color: var(--red-color);
}

.white {
    color: var(--white-color);
}

.white-bg {
    background-color: var(--white-color);
}

.light {
    font-weight: 300;
}

.shadow {
    box-shadow: 0 3px 6px var(--shadow-color);
}

.slick-dots {
    width: 100%;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: -30px;
    text-align: center;
}

.slick-dots li {
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: inline-block;
    margin: 0 4px;
    padding: 0;
    position: relative;
}

.slick-dots li button {
    width: 20px;
    height: 20px;
    align-items: center;
    background: transparent;
    border: 0;
    color: transparent;
    cursor: pointer;
    display: inline-flex;
    font-size: 0;
    justify-content: center;
    line-height: 0;
    outline: none;
    padding: 5px;
}

.slick-dots li button:before {
    width: 8px;
    height: 8px;
    background-color: var(--light-grey-color);
    border-radius: 10px;
    content: "";
}

.slick-dots li.slick-active button:before {
    background-color: var(--blue-color);
}

#header-bg {
    width: 100%;
    height: 225px;
    background-image: url("../images/header-bg-mobile.svg");
    background-size: 1px 225px;
    mix-blend-mode: multiply;
    opacity: 0.7;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

#header-wrapper {
    width: 100%;
    height: 140px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
}

#header-holder {
    width: 100%;
    height: 140px;
    max-width: 1440px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-left: 35px;
    padding-right: 35px;
}

#header-logo-holder img {
    width: 130px;
}

#header-menu-holder {
    align-items: center;
    display: flex;
    gap: 60px;
    position: relative;
}

#header-contact-button {
    height: 58px;
    align-items: center;
    background-color: var(--green-color);
    border-radius: 36px;
    color: var(--white-color);
    display: none;
    font-size: 24px;
    font-weight: 500;
    padding: 0 40px;
    text-decoration: none;
}

#header-menu-button {
    align-items: center;
    color: var(--white-color);
    display: inline-flex;
    font-size: 25px;
    gap: 20px;
    padding-right: 0;
}

#header-menu-button span {
    display: none;
}

#header-menu-button img {
    width: 32px;
}

#header-menu {
    width: calc(100% - 40px);
    max-height: calc(100% - 90px);
    background-color: #fff;
    border-radius: 20px;
    display: none;
    overflow-y: auto;
    padding: 30px;
    padding-bottom: 40px;
    position: fixed;
    top: 90px;
    right: 20px;
}

#header-menu.active {
    display: block;
}

#header-menu ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style-type: none;
}

#header-menu ul li {
    text-align: center;
}

#header-menu ul li a {
    color: var(--dark-blue-color);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

#header-menu ul li a:hover {
    text-decoration: underline;
}

#header-menu ul li.current-menu-item a {
    color: var(--blue-color);
}

#header-login-holder {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#header-login-holder a {
    width: 100%;
    height: 44px;
    align-items: center;
    background-color: var(--blue-color);
    border-radius: 30px;
    color: var(--white-color);
    display: inline-flex;
    font-size: 18px;
    justify-content: center;
    text-decoration: none;
}

#header-vto-holder {
    border-top: 1px solid var(--grey-color);
    margin-top: 30px;
    padding-top: 30px;
}

#header-vto-holder a {
    color: var(--blue-color);
    display: flex;
    flex-direction: column;
    font-size: 18px;
    gap: 10px;
    text-align: center;
    text-decoration: none;
}

#header-vto-holder a span {
    position: relative;
}

#header-vto-logo {
    width: 80px;
}

#header-vto-arrow {
    height: 18px;
    position: absolute;
    margin-left: 10px;
    margin-top: 10px;
}

#footer {
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    font-size: 16px;
    gap: 50px;
    line-height: 1.2;
    padding-top: 50px;
    padding-bottom: 30px;
    text-align: center;
}

#footer a {
    color: var(--white-color);
    text-decoration: none;
}

#footer a:hover {
    text-decoration: underline;
}

#footer-logo-holder {
    display: none;
}

#footer-logo-holder img {
    width: 115px;
}

#footer-mobile-logo-holder {
    text-align: center;
}

#footer-mobile-logo-holder img {
    width: 166px;
}

#footer-information-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#footer-information-horizontal-holder {
    display: flex;
    gap: 45px;
    justify-content: center;
    text-align: center;
}

#footer-links-holder {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#footer-newsletter-wrapper {
    display: none;
}

#footer-newsletter-mobile-wrapper {
    font-size: 14px;
}

#footer-newsletter-holder {
    display: flex;
    margin-top: 20px;
}

#footer-newsletter-mobile-holder {
    max-width: 310px;
    border-radius: 20px;
    display: flex;
    justify-self: center;
    margin-top: 10px;
    overflow: hidden;
}

#footer-search-holder {
    position: relative;
}

#footer-newsletter-field, #footer-newsletter-mobile-field, #footer-search-field {
    width: 100%;
    height: 40px;
    background-color: var(--white-color);
    border-radius: 0;
    color: var(--dark-blue-color);
    font-size: 14px;
    padding: 0 20px;
}

#footer-search-field {
    max-width: 264px;
    padding-right: 60px;
}

#footer-newsletter-field::placeholder, #footer-newsletter-mobile-field::placeholder, #footer-search-field::placeholder {
    color: var(--light-grey-color);
}

#footer-newsletter-button, #footer-newsletter-mobile-button {
    width: 60px;
    height: 40px;
    background-color: var(--blue-color);
    background-image: url("../images/arrow-right.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}

#footer-newsletter-mobile-button {
    background-image: url("../images/chevron-right.svg");
}

#footer-search-button {
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    background-image: url("../images/search-dark-blue.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    position: absolute;
    top: 0;
    right: 0;
}

#footer-socials-holder {
    align-items: center;
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

#footer-socials-holder a {
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

#footer-socials-holder img {
    height: 32px;
}

#footer-bottom-holder {
    border-top: 1px solid var(--white-color);
    color: var(--white-color);
    display: flex;
    font-size: 12px;
    flex-direction: column;
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
}

#footer-bottom-links-holder {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    justify-content: center;
    row-gap: 20px;
}

#footer-bottom-holder a {
    color: var(--white-color);
    font-size: 12px;
    text-decoration: none;
}

#footer-bottom-holder a:hover {
    text-decoration: underline;
}

.top-content-wrapper {
    padding-top: 140px;
}

.content-inner-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 35px;
}

.content-inner-wrapper:has(.home-teacher-wrapper) {
    max-width: 100%;
}

.text-block {
    font-size: 16px;
    line-height: 1.1;
}

.full-link {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.home-top-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-blue-v {
    width: 85%;
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 0;
}

.home-top-wrapper-text-holder {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.home-top-wrapper-image {
    max-width: 100%;
    height: auto;
    position: relative;
}

.home-teacher-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.home-teacher-wrapper h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.home-teacher-holder {
    width: calc(100% + 70px);
    margin: 0 -35px;
    margin-bottom: -20px;
}

.home-teacher-holder .slick-track {
    display: flex;
}

.home-teacher-inner-holder {
    height: inherit;
    margin: 0 10px;
}

.home-teacher {
    width: 100%;
    height: 100%;
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 10px;
    justify-content: space-between;
    overflow: hidden;
    padding: 20px;
    position: relative;
}

.home-teacher::before {
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue-transparent-color);
    backdrop-filter: blur(30px);
    content: "";
    filter: brightness(1.3);
    position: absolute;
    left: 0;
    top: 0;
}

.home-teacher-top-holder {
    display: flex;
    font-size: 14px;
    gap: 5px;
    line-height: 1.125;
    position: relative;
}

.home-teacher-text-holder {
    margin-top: 10px;
}

.home-teacher-top-holder img {
    width: 86px;
    height: auto;
    flex-shrink: 0;
    margin-top: -10px;
    margin-right: -10px;
}

.home-teacher-bottom-holder {
    align-items: center;
    display: flex;
    font-size: 23px;
    font-weight: 500;
    gap: 20px;
    justify-content: space-between;
    position: relative;
}

.home-teacher-bottom-holder::after {
    width: 20px;
    height: 20px;
    background-image: url("../images/chevron-right.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    content: "";
    display: block;
    flex-shrink: 0;
}

.home-why-wrapper {
    background-color: var(--white-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-why-inner-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-why-text-holder {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.45;
    position: relative;
    text-align: center;
}

.home-why-text-holder h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.home-why-text-holder p {
    margin-bottom: 20px;
}

.home-why-media-holder {
    max-width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    position: relative;
}

.home-why-media-holder img {
    max-width: 100%;
    height: auto;
}

.video-holder {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

.video-holder iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.home-why-button {
    align-items: center;
    color: var(--dark-blue-color);
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    gap: 10px;
    margin-top: 30px;
    text-decoration: none;
}

.home-why-button::after {
    width: 20px;
    height: 20px;
    background-image: url("../images/chevron-right-dark-blue.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    content: "";
}

.home-block3-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.home-block3-wrapper div {
    text-align: center;
}

.home-block3-wrapper div:nth-child(1) {
    order: 1;
}

.home-block3-wrapper div:nth-child(2) {
    order: 3;
}

.home-block3-wrapper div:nth-child(3) {
    order: 5;
}

.home-block3-wrapper div:nth-child(4) {
    order: 2;
}

.home-block3-wrapper div:nth-child(5) {
    order: 4;
}

.home-block3-wrapper div:nth-child(6) {
    order: 6;
}

.home-block3-wrapper div img {
    max-width: 190px;
}

.home-block3-wrapper div h3 {
    font-size: 40px;
    margin-bottom: 0;
}

.home-block3-wrapper div span {
    font-size: 14px;
}

.home-block3-wrapper div.block4 {
    margin-bottom: 40px;
}

.home-block3-wrapper div.block4 h3 {
    font-size: 23px;
    line-height: 1;
    margin-bottom: 25px;
}

.home-block3-wrapper div.block4 div {
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
}

.home-button-wrapper {
    align-items: center;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    position: relative;
}

.home-button-wrapper::before {
    width: 100%;
    height: 90px;
    background-color: var(--dark-blue-color);
    content: "";
    position: absolute;
}

.home-button-holder {
    align-items: center;
    display: flex;
    gap: 23px;
}

.home-services-top-wrapper {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: center;
}

.home-services-previous-button, .home-services-next-button, .timeline-previous-button, .timeline-next-button, .single-teacher-product-previous-button, .single-teacher-product-next-button {
    width: 35px;
    height: 35px;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px 35px;
    display: flex;
    justify-content: center;
    position: absolute;
    top: calc(50% - 17px);
}

.home-services-previous-button, .timeline-previous-button, .single-teacher-product-previous-button {
    background-image: url("../images/chevron-left.svg");
    left: -25px;
}

.home-services-next-button, .timeline-next-button, .single-teacher-product-next-button {
    background-image: url("../images/chevron-right.svg");
    right: -25px;
}

.home-service-holder {
    width: 100%;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
}

.home-service-inner-holder {
    width: 214px;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
}

.home-service-icon {
    width: 192px;
    height: 192px;
    align-items: center;
    background-color: var(--dark-blue-color);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.home-service-icon img {
    max-width: 148px;
}

.home-service-holder h3 {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 20px;
}

.home-service-intro {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.136;
}

.home-powered-by-top-wrapper {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: center;
}

.home-powered-by-wrapper {
    width: calc(100% + 70px);
    margin: 0 -35px;
}

.home-powered-by-previous-button, .home-powered-by-next-button {
    width: 30px;
    height: 30px;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    display: flex;
    justify-content: center;
    position: absolute;
    top: calc(50% - 15px);
    z-index: 2;
}

.home-powered-by-previous-button {
    background-image: url("../images/chevron-left-black.svg");
    left: 5px;
}

.home-powered-by-next-button {
    background-image: url("../images/chevron-right-black.svg");
    right: 5px;
}

.home-powered-by-holder {
    width: 100%;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    margin: 0 30px;
}

.home-powered-by-inner-holder {
    width: 280px;
    height: 180px;
    align-items: center;
    background-color: var(--very-light-grey-color);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.home-powered-by-inner-holder img {
    max-width: 200px;
}

.home-block7-wrapper, .single-teacher-block2-wrapper, .single-license-block2-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
}

.single-teacher-block2-wrapper, .single-license-block2-wrapper {
    background-color: var(--white-color);
}

.home-block7-inner-wrapper, .single-teacher-block2-inner-wrapper, .single-license-block2-inner-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-block7-text-holder, .single-teacher-block2-text-holder, .single-license-block2-text-holder {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.13;
    position: relative;
    text-align: center;
}

.home-block7-text-holder h2, .single-teacher-block2-text-holder h2, .single-license-block2-text-holder h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.home-block7-text-holder p, .single-teacher-block2-text-holder p, .single-license-block2-text-holder p {
    margin-bottom: 30px;
}

.home-block7-text-holder ul, .home-why-text-holder ul, .single-teacher-block2-text-holder ul, .single-license-block2-text-holder ul {
    list-style-type: none;
    margin-bottom: 30px;
    text-align: left;
}

.single-teacher-block2-text-holder ul, .single-license-block2-text-holder ul {
    margin-bottom: 30px;
}

.home-block7-text-holder ul li, .home-why-text-holder ul li, .single-teacher-block2-text-holder ul li, .single-license-block2-text-holder ul li {
    padding: 5px 30px;
    padding-right: 0;
    position: relative;
}

.home-block7-text-holder ul li::before, .home-why-text-holder ul li::before, .single-teacher-block2-text-holder ul li::before, .single-license-block2-text-holder ul li::before {
    width: 15px;
    height: 15px;
    background-image: url("../images/awesome-check.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 6px;
}

.home-block7-mobile-media-holder {
    margin-bottom: 30px;
}

.home-block7-mobile-media-holder img {
    width: 100%;
}

.home-block7-media-holder, .single-teacher-block2-media-holder, .single-license-block2-wrapper-image {
    max-width: 50%;
    height: auto;
    display: none;
    position: relative;
}

.home-block7-media-holder img, .single-teacher-block2-media-holder img {
    width: 100%;
}

.single-teacher-block2-media-holder {
    max-width: 100%;
    display: block;
}

.home-reviews-wrapper {
    display: flex;
    flex-direction: column;
}

.home-reviews-intro-holder {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    gap: 20px;
    line-height: 1.13;
    text-align: center;
}

.home-reviews-intro-holder h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0;
}

.home-reviews-button-holder a, .home-reviews-mobile-button-holder a {
    align-items: center;
    color: var(--blue-color);
    display: inline-flex;
    font-weight: 700;
    gap: 10px;
    text-decoration: none;
}

.home-reviews-mobile-button-holder {
    margin-top: 30px;
    text-align: center;
}

.home-reviews-button-holder {
    display: none;
}

.home-reviews-button-holder a::after, .home-reviews-mobile-button-holder a::after {
    width: 25px;
    height: 25px;
    background-image: url("../images/chevron-right-blue.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px 25px;
    content: "";
}

.home-reviews-star-holder {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}

.home-reviews-star-holder img {
    width: 25px;
}

.home-reviews-review-holder {
    max-width: 768px;
    background-color: var(--dark-blue-color);
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.home-reviews-review-holder h3 {
    font-size: 16px;
    line-height: 1.1875;
    margin-bottom: 0;
}

.home-reviews-review-holder h4 {
    font-size: 13px;
    font-weight: 500;
}

.home-news-intro-holder {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 300;
    gap: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.home-news-intro-holder h2 {
    margin-bottom: 0;
}

.home-news-first-message-holder {
    align-items: center;
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.home-news-message-holder, .news-message-holder {
    width: 100%;
    border-radius: 21px;
    overflow: hidden;
    position: relative;
}

.news-message-outer-holder {
    width: 100%;
}

.news-message-holder {
    width: 100%;
}

.home-news-message-holder img, .news-message-holder img {
    width: 100%;
    height: auto;
    display: block;
}

.home-news-message-bottom-holder, .news-message-bottom-holder {
    width: 100%;
    background: linear-gradient(180deg, transparent, var(--black-color));
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 500;
    gap: 10px;
    padding: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.home-news-message-bottom-holder h4, .news-message-bottom-holder h4 {
    align-items: center;
    display: flex;
    font-size: 20px;
    font-weight: 500;
    gap: 20px;
    justify-content: space-between;
}

.home-news-message-bottom-holder h4::after, .news-message-bottom-holder h4::after {
    width: 15px;
    height: 15px;
    background-image: url("../images/chevron-right.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    content: "";
    display: block;
    flex-shrink: 0;
}

.home-news-text-holder, .news-text-holder {
    width: 40%;
    font-size: 16px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 60px;
    line-height: 1.45;
}

.home-news-first-message-holder .home-news-text-holder {
    display: none;
}

.news-text-holder {
    width: 100%;
    font-size: 18px;
    gap: 30px;
    line-height: 1.23;
    padding: 30px;
}

.home-news-text-holder a, .news-text-holder a {
    color: var(--white-color);
    font-weight: 500;
}

.news-text-holder a {
    color: var(--black-color);
}

.home-news-messages-holder, #news-messages-holder {
    display: flex;
    gap: 55px;
    justify-content: space-between;
}

.home-news-messages-holder {
    display: none;
}

#news-messages-holder {
    display: grid;
    column-gap: 130px;
    grid-template-columns: 1fr;
}

.home-news-messages-holder .home-news-message-bottom-holder,
#news-messages-holder .news-message-bottom-holder {
    font-size: 15px;
    gap: 10px;
    padding: 20px 30px;
}

.home-news-messages-holder .home-news-message-bottom-holder h4 {
    font-size: 22px;
}

.home-news-button-holder {
    margin-top: 40px;
    text-align: center;
}

#news-pagination-wrapper {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 100px;
}

#news-pagination-wrapper .page-numbers {
    width: 48px;
    height: 48px;
    align-items: center;
    border: 1px solid var(--dark-blue-color);
    border-radius: 18px;
    color: var(--dark-blue-color);
    display: inline-flex;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
    text-decoration: none;
}

#news-pagination-wrapper .page-numbers.current {
    background-color: var(--dark-blue-color);
    color: var(--white-color);
}

#news-pagination-wrapper .page-numbers.prev, #news-pagination-wrapper .page-numbers.next {
    display: none;
}

.home-news-button-holder a {
    align-items: center;
    background-color: var(--dark-blue-color);
    border-radius: 20px;
    color: var(--white-color);
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    justify-content: center;
    padding: 11px 24px;
    text-decoration: none;
}

.recurring-customer-button, .recurring-portal-button {
    width: 160px;
    align-items: center;
    background-color: var(--blue-transparent-color);
    border-radius: 11px;
    backdrop-filter: blur(30px);
    color: var(--white-color);
    display: inline-flex;
    filter: brightness(1.3);
    flex-direction: column;
    font-size: 20px;
    font-weight: 500;
    gap: 10px;
    line-height: 1.25;
    padding: 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
}

.recurring-customer-button img, .recurring-portal-button img {
    width: 104px;
    height: 104px;
    filter: brightness(0.8);
}

.our-story-top-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.our-story-top-wrapper-text-holder {
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.our-story-top-wrapper-image-holder {
    max-width: 100%;
    align-items: center;
    display: flex;
    position: relative;
}

.our-story-top-wrapper-image-holder::before {
    width: calc(100% + 70px);
    height: calc(100% - 70px);
    background-color: var(--white-color);
    content: "";
    display: block;
    position: absolute;
    left: -35px;
    bottom: 0;
}

.our-story-top-wrapper-image-holder img {
    width: auto;
    max-width: 100%;
    position: relative;
}

.padding-vertical {
    padding-top: 50px;
    padding-bottom: 50px;
}

.more-whitespace {
    margin-top: 50px;
}

.less-whitespace {
    margin-top: -50px;
}

.our-story-block2-wrapper, .our-story-block3-wrapper {
    text-align: center;
}

.timeline-wrapper {
    margin-top: 60px;
    padding: 30px 0;
}

.timeline-wrapper .slick-track {
    display: flex;
}

.timeline-item-holder {
    height: inherit;
}

.timeline-item {
    width: 100%;
    max-width: 520px;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 30px;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 45px;
}

.timeline-item-image-holder {
    text-align: center;
}

.timeline-item-image-holder img {
    max-width: 100%;
    margin: 0 auto;
}

.timeline-item-text-holder {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 20px;
    justify-content: center;
}

.timeline-item-text-holder h3 {
    font-size: 60px;
    line-height: 0.9;
    margin-bottom: 0;
}

.timeline-item-text-holder h4 {
    font-size: 20px;
    line-height: 1.2;
}

.partners-wrapper {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
}

.partners-wrapper div {
    align-items: center;
    display: flex;
    justify-content: center;
}

.partners-wrapper div img {
    max-width: 100%;
}

#news-top-wrapper, #faq-top-wrapper, #reviews-top-wrapper, #page-top-wrapper, #library-top-wrapper {
    display: flex;
    flex-direction: column;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

#news-top-wrapper h2, #faq-top-wrapper h2, #reviews-top-wrapper h2, #library-top-wrapper h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

#page-top-wrapper h2 {
    margin-bottom: 0;
}

#news-top-wrapper h3, #faq-top-wrapper h3, #reviews-top-wrapper h3, #library-top-wrapper h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 0;
}

#news-top-bar-holder, #faq-top-bar-holder {
    border-bottom: 1px solid var(--dark-blue-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 70px;
    padding: 40px 0;
}

#news-top-bar-holder > div, #faq-top-bar-holder > div {
    align-items: center;
    display: flex;
    gap: 26px;
}

#news-filter-button-wrapper, #faq-filter-button-wrapper {
    position: relative;
}

#news-filter-button, .news-filter-button, #faq-filter-button, .faq-filter-button {
    height: 64px;
    align-items: center;
    color: var(--dark-blue-color);
    display: inline-flex;
    font-size: 20px;
    font-weight: 700;
    gap: 30px;
}

#news-filter-button::after, #faq-filter-button::after {
    width: 24px;
    height: 24px;
    background-image: url("../images/chevron-down-dark-blue.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    content: "";
    display: block;
}

#news-filter-button-wrapper.active #news-filter-button::after,
#faq-filter-button-wrapper.active #faq-filter-button::after {
    transform: rotate(180deg);
}

#news-filter-button-holder, #faq-filter-button-holder {
    background-color: var(--white-color);
    border-top: 1px solid var(--dark-blue-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: none;
    flex-direction: column;
    padding: 0 30px;
    position: absolute;
    left: 0;
    top: 64px;
    z-index: 2;
}

#news-filter-button-wrapper.active #news-filter-button-holder,
#faq-filter-button-wrapper.active #faq-filter-button-holder {
    display: flex;
}

#news-sort-button {
    width: 50px;
    height: 50px;
    background-image: url("../images/sort.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50px 50px;
}

#news-sort-button.active {
    transform: rotate(180deg);
}

#news-search-field-wrapper, #faq-search-field-wrapper {
    width: 100%;
    max-width: 370px;
    height: 50px;
    position: relative;
}

#news-search-field-wrapper::after, #faq-search-field-wrapper::after {
    width: 30px;
    height: 30px;
    background-image: url("../images/search.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
    top: 10px;
    right: 20px;
}

#news-search-field, #faq-search-field {
    width: 100%;
    height: 100%;
    border: 1px solid var(--grey-color);
    color: var(--dark-blue-color);
    font-size: 25px;
    padding-left: 20px;
    padding-right: 70px;
}

#news-search-button, #faq-search-button {
    width: 177px;
    height: 64px;
    align-items: center;
    background-color: var(--dark-blue-color);
    border-radius: 18px;
    color: var(--white-color);
    display: none;
    font-size: 22px;
    font-weight: 500;
    justify-content: center;
}

#single-news-top-holder {
    margin-bottom: 65px;
}

#single-news-top-holder a {
    height: 50px;
    align-items: center;
    background-color: var(--dark-blue-color);
    border-radius: 18px;
    color: var(--white-color);
    display: inline-flex;
    font-size: 18px;
    font-weight: 500;
    padding: 0 25px;
    text-decoration: none;
}

#single-news-content-holder {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#single-news-text-holder {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.08;
}

#single-news-text-holder h4 {
    color: var(--dark-blue-color);
    font-size: 35px;
    font-weight: 500;
    line-height: 1.16;
    margin-bottom: 15px;
}

#single-news-date-holder {
    color: var(--blue-color);
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

#single-news-image-holder {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

#single-news-image-holder img {
    width: 100%;
    height: auto;
}

.single-teacher-top-wrapper, .single-license-top-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.single-license-top-wrapper {
    gap: 30px;
}

.single-teacher-top-text-holder, .single-license-top-text-holder {
    width: 100%;
    max-width: 944px;
}

.single-teacher-intro-holder, .single-license-intro-holder {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
}

.single-teacher-intro-icon-holder, .single-license-intro-icon-holder {
    width: 100%;
    max-width: 500px;
}

.single-license-intro-icon-holder {
    text-align: center;
}

.single-teacher-intro-icon-holder img {
    width: 100%;
    height: auto;
}

.single-license-intro-icon-holder img {
    max-width: 100%;
}

.single-teacher-button-holder, .single-license-button-holder {
    align-items: center;
    display: flex;
    gap: 23px;
    justify-content: center;
    margin: -15px -35px;
    margin-top: 0;
    padding-top: 30px;
}

.single-teacher-block3-wrapper {
    width: calc(100% + 70px);
    margin: 0 -35px;
    margin-bottom: 50px;
}

.single-teacher-advantage-outer-holder {
    margin: 0 10px;
}

.single-teacher-advantage-holder {
    width: 100%;
    max-width: 410px;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 30px;
    margin: 0 auto;
    text-align: center;
}

.single-teacher-advantage-holder-image-wrapper {
    width: 100%;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.single-teacher-advantage-holder h3 {
    color: var(--blue-color);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
}

.single-teacher-advantage-holder div {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.1;
}

.single-teacher-block4-wrapper, .single-license-block4-wrapper {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 700;
    gap: 40px;
    margin-bottom: 90px;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.single-teacher-block4-wrapper h4, .single-license-block4-wrapper h4 {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 10px;
}

.single-teacher-block4-button-holder, .single-license-block4-button-holder {
    margin-bottom: -72px;
}

.single-teacher-block4-button, .single-license-block4-button {
    width: 100%;
    height: 45px;
    align-items: center;
    background-color: var(--dark-blue-color);
    border-radius: 36px;
    color: var(--white-color);
    display: inline-flex;
    font-size: 20px;
    font-weight: 700;
    justify-content: center;
    text-decoration: none;
}

.single-teacher-block5-wrapper, .single-license-block5-wrapper {
    margin-top: 60px;
}

.single-teacher-block5-top-holder, .single-license-block5-top-holder {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.single-teacher-block5-top-holder h2, .single-license-block5-top-holder h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.single-license-product-wrapper {
    width: calc(100% + 70px);
    margin: 0 -35px;
}

.single-teacher-product-outer-holder, .single-license-product-outer-holder {
    margin: 0 10px;
}

.single-teacher-product-holder, .single-license-product-holder {
    width: 100%;
    max-width: 347px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 300;
    gap: 30px;
    margin: 0 auto;
    text-align: center;
}

.single-teacher-product-icon-holder, .single-license-product-icon-holder {
    width: 100%;
    height: 341px;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 17px;
    display: inline-flex;
    justify-content: center;
}

.single-teacher-product-holder h3, .single-license-product-holder h3 {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 0;
}

.single-teacher-product-holder img, .single-license-product-holder img {
    max-width: 100%;
    height: auto;
}

.single-teacher-highlighted-story-holder {
    background-color: var(--very-light-grey-alt-color);
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 300;
    gap: 20px;
    line-height: 1.45;
    padding: 30px;
    padding-bottom: 50px;
    position: relative;
}

.single-teacher-highlighted-story-holder h3 {
    color: var(--blue-color);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0;
}

.single-teacher-highlighted-story-bottom-holder {
    color: var(--blue-color);
    font-weight: 700;
}

.single-teacher-highlighted-story-button {
    width: calc(100% - 60px);
    height: 45px;
    align-items: center;
    background-color: var(--dark-blue-color);
    border-radius: 30px;
    color: var(--white-color);
    display: inline-flex;
    font-size: 20px;
    font-weight: 700;
    justify-content: center;
    position: absolute;
    right: 30px;
    bottom: -22px;
    text-decoration: none;
}

.single-teacher-customers-top-wrapper {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    gap: 20px;
    line-height: 1.5;
    padding: 20px;
    text-align: center;
}

.single-teacher-customers-top-wrapper h3 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
}

.single-teacher-customers-holder {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    justify-content: center;
    margin-bottom: 100px;
}

.single-teacher-customers-holder div {
    text-align: center;
}

.single-teacher-customers-holder div img {
    max-width: 100%;
}

.single-teacher-licenses-top-title {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 25px;
}

.single-teacher-licenses-wrapper {
    width: calc(100% + 70px);
    margin: 0 -35px;
}

.single-teacher-licenses-wrapper .slick-track {
    display: flex;
}

.single-teacher-license-outer-holder {
    height: inherit;
    margin: 0 10px;
}

.single-teacher-license-holder {
    width: 100%;
    height: 100%;
    background-color: var(--blue-color);
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 300;
    gap: 30px;
    line-height: 1.1;
    padding: 30px 35px;
    position: relative;
}

.single-teacher-license-holder h4 {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 20px;
}

.single-teacher-license-image-holder {
    width: 100%;
    max-width: 240px;
    height: auto;
    align-items: center;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    margin: 0 auto;
}

.single-teacher-license-image-holder img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

.single-teacher-license-text-holder {
    flex-grow: 1;
}

.single-teacher-license-button {
    width: 100%;
    height: 50px;
    align-items: center;
    background-color: var(--dark-blue-color);
    border-radius: 25px;
    color: var(--white-color);
    display: inline-flex;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
    text-decoration: none;
}

.single-license-block3-wrapper {
    width: calc(100% + 70px);
    margin: 0 -35px;
    margin-bottom: 80px;
}

.single-license-block3-wrapper .slick-track {
    display: flex;
}

.single-license-advantage-outer-holder {
    height: inherit;
    margin: 0 10px;
}

.single-license-advantage-holder {
    height: 100%;
    align-items: center;
    background-color: var(--blue-color);
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    padding: 20px 30px;
}

.single-license-advantage-image-holder {
    width: 100%;
    max-width: 150px;
    height: auto;
    align-items: center;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
}

.single-license-advantage-image-holder img {
    max-width: 100%;
}

.single-license-advantage-text-holder {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.45;
}

.single-license-advantage-text-holder h3 {
    align-items: center;
    display: flex;
    font-size: 22px;
    font-weight: 500;
    gap: 15px;
    margin-bottom: 30px;
}

.single-license-advantage-text-holder h3::before {
    width: 20px;
    height: 20px;
    background-image: url("../images/feather-check-lime.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    content: "";
    display: block;
    flex-shrink: 0;
}

.single-license-block6-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.single-license-block6-image-holder img {
    max-width: 100%;
}

.single-license-block6-text-holder {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 300;
    gap: 30px;
    line-height: 1.45;
}

.single-license-block6-text-holder h3 {
    font-size: 40px;
    margin-bottom: 0;
}

.single-license-block6-button {
    align-items: center;
    background-color: var(--dark-blue-color);
    border-radius: 18px;
    color: var(--white-color);
    display: inline-flex;
    font-weight: 500;
    gap: 30px;
    padding: 20px 30px;
    text-decoration: none;
}

.single-license-block6-button::after {
    width: 30px;
    height: 30px;
    background-image: url("../images/arrow-right.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    content: "";
    flex-shrink: 0;
}

#contact-top-wrapper {
    position: relative;
}

#contact-blue-v {
    width: 85%;
    position: absolute;
    left: 48%;
    top: -150%;
}

#contact-top-wrapper-text-holder {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    gap: 40px;
    line-height: 1.7;
    position: relative;
}

#contact-top-wrapper-text-holder h2 {
    margin-bottom: 0;
}

#contact-button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 100px;
    margin-bottom: -50px;
}

#contact-button-wrapper a {
    width: 100%;
    height: 100px;
    align-items: center;
    color: var(--dark-blue-color);
    display: flex;
    font-size: 18px;
    font-weight: 500;
    gap: 20px;
    padding: 0 20px;
    position: relative;
    text-decoration: none;
}

#contact-button-wrapper a::before {
    width: 100%;
    height: 100%;
    background-color: var(--white-transparent-color);
    backdrop-filter: blur(50px);
    border-radius: 11px;
    content: "";
    filter: brightness(1.15);
    position: absolute;
    left: 0;
    top: 0;
}

#contact-button-wrapper a img, #contact-button-wrapper a span {
    position: relative;
}

#contact-button-wrapper a img {
    max-width: 80px;
}

#contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

#contact-form-holder {
    width: 100%;
    max-width: 760px;
    margin-top: 100px;
}

#contact-form-sent {
    color: var(--dark-blue-color);
    font-size: 30px;
    line-height: 1.6;
}

#contact-form-holder h3 {
    color: var(--dark-blue-color);
    font-size: 45px;
    line-height: 1;
}

#contact-form-holder form {
    display: flex;
    flex-direction: column;
}

#contact-form-holder form input[type=text], #contact-form-holder form textarea {
    width: 100%;
    height: 40px;
    border-bottom: 1px solid var(--dark-blue-color);
    color: var(--dark-blue-color);
    font-size: 20px;
    margin-bottom: 30px;
}

#contact-form-holder form input[type=text].error, #contact-form-holder form textarea.error {
    outline: 1px solid var(--red-color);
    outline-offset: 2px;
}

#contact-form-holder form textarea {
    height: 132px;
    border: 1px solid var(--dark-blue-color);
    padding: 10px;
}

#contact-form-holder form input[type=text]::placeholder {
    color: var(--placeholder-color);
    font-weight: 400;
    opacity: 1;
}

#contact-form-holder form label {
    color: var(--dark-blue-color);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.contact-form-input-holder {
    display: flex;
    flex-direction: column;
}

#contact-submit-button {
    width: 260px;
    height: 58px;
    align-items: center;
    background-color: var(--green-alt-color);
    border-radius: 36px;
    color: var(--white-color);
    font-size: 22px;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
}

#contact-info-holder {
    width: 100%;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    gap: 50px;
    line-height: 1.6;
}

#contact-info-image-holder {
    padding-top: 20px;
}

#contact-info-image-holder img {
    max-width: 100%;
}

.contact-info-inner-holder {
    color: var(--dark-blue-color);
    display: flex;
    flex-wrap: wrap;
    font-weight: 300;
}

.contact-info-inner-holder a {
    color: var(--dark-blue-color);
    font-weight: 300;
    text-decoration: none;
}

.contact-info-inner-holder a:hover {
    text-decoration: underline;
}

.contact-info-inner-holder > div {
    width: 100%;
    max-width: 285px;
    margin-bottom: 30px;
}

.contact-info-inner-holder > div:last-child {
    max-width: 100%;
}

#contact-bottom-wrapper {
    display: flex;
    justify-content: space-between;
}

#contact-bottom-text-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-bottom: 100px;
}

.contact-bottom-holder {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 300;
    gap: 15px;
    line-height: 1.45;
}

.contact-bottom-holder h3 {
    color: var(--dark-blue-color);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}

.contact-bottom-holder a {
    align-items: center;
    color: var(--dark-blue-color);
    display: inline-flex;
    font-weight: 500;
    gap: 30px;
    text-decoration: none;
}

.contact-bottom-holder a::after {
    width: 25px;
    height: 25px;
    background-image: url("../images/chevron-right-dark-blue.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px 25px;
    content: "";
    display: block;
}

#contact-bottom-visual-holder {
    align-items: end;
    display: none;
}

#contact-bottom-visual-holder img {
    width: 100%;
    max-width: 510px;
}

#faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-category {
    color: var(--dark-blue-color);
    font-size: 18px;
    font-weight: 700;
    margin-top: 25px;
    padding-left: 25px;
}

.faq-holder {
    background-color: var(--very-light-grey-alt-color);
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 25px;
    text-align: left;
}

.faq-question {
    color: var(--blue-color);
    cursor: pointer;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    gap: 25px;
    justify-content: space-between;
    text-align: left;
}

.faq-question::after {
    width: 20px;
    height: 20px;
    background-image: url("../images/plus.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    content: "";
    display: block;
    flex-shrink: 0;
}

.faq-holder.active .faq-question::after {
    background-image: url("../images/minus.svg");
}

.faq-answer {
    display: none;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.45;
}

.faq-holder.active .faq-answer {
    display: block;
}

#faq-end-text {
    color: var(--dark-blue-color);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.37;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}

#reviews-wrapper {
    display: grid;
    row-gap: 100px;
    grid-template-columns: 1fr;
    margin-top: 100px;
}

.review-holder {
    align-items: center;
    background-color: var(--very-light-grey-alt-color);
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 300;
    gap: 30px;
    justify-content: space-between;
    line-height: 1.1875;
    padding: 60px 20px;
    position: relative;
    text-align: center;
}

.review-initials {
    width: 80px;
    height: 80px;
    align-items: center;
    background-color: var(--initials-color);
    border-radius: 70px;
    color: var(--white-color);
    display: inline-flex;
    font-size: 36px;
    font-weight: 500;
    justify-content: center;
    position: absolute;
    top: -40px;
}

.review-initials img {
    max-width: calc(100% - 30px);
}

.review-holder h4 {
    color: var(--blue-color);
    font-size: 16px;
    font-weight: 700;
}

.reviews-block2-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
    padding: 30px;
}

.reviews-block2-wrapper > div {
    position: relative;
}

.reviews-block2-wrapper h3 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
}

.reviews-block2-wrapper h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.reviews-block2-image {
    width: 100%;
}

.reviews-block2-button {
    width: 100%;
    height: 58px;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 30px;
    color: var(--black-color);
    display: inline-flex;
    font-size: 22px;
    font-weight: 500;
    justify-content: center;
    position: absolute;
    left: 0;
    top: calc(50% - 29px);
    text-decoration: none;
}

#library-block2-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

#library-form-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 300;
    gap: 40px;
    line-height: 1.45;
}

#library-form-wrapper h3 {
    font-size: 40px;
    margin-bottom: 0;
}

#library-form-holder {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#library-form-holder input[type=password] {
    max-width: 630px;
    background-color: var(--very-light-grey-alt-color);
    border-radius: 15px;
    height: 73px;
    flex-grow: 1;
    font-size: 22px;
    font-weight: 300;
    padding: 0 38px;
}

#library-form-holder input[type=password]::placeholder {
    color: var(--grey-color);
    opacity: 1;
}

#library-form-holder button {
    width: 145px;
    height: 73px;
    background-color: var(--orange-color);
    border-radius: 15px;
    color: var(--white-color);
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 500;
}

#library-image-holder {
    width: 100%;
}

#library-image-holder img {
    width: 100%;
}

#library-block3-wrapper {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 300;
    gap: 40px;
    line-height: 1.45;
}

#library-block3-wrapper h3 {
    font-size: 40px;
    margin-bottom: 0;
}

#library-domain-holder {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

#library-domain-holder button {
    width: 100%;
    height: 160px;
    align-items: center;
    background-color: var(--blue-color);
    border-radius: 11px;
    display: inline-flex;
    justify-content: center;
}

#library-domain-holder button.active {
    background-color: var(--dark-blue-color);
}

#library-domain-holder button.inactive {
    opacity: 0.5;
}

#library-domain-holder button img {
    height: 99px;
}

#library-category-wrapper {
    display: flex;
    flex-direction: column;
    font-size: 22px;
    font-weight: 700;
    gap: 20px;
    margin-top: 35px;
}

#library-category-holder {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

#library-category-holder button {
    height: 62px;
    align-items: center;
    background-color: var(--very-light-grey-alt-color);
    border-radius: 11px;
    color: var(--blue-color);
    display: inline-flex;
    font-size: 22px;
    font-weight: 400;
    justify-content: center;
    padding: 0 25px;
}

#library-category-holder button.active {
    background-color: var(--dark-blue-color);
    color: var(--white-color);
}

#library-zip-holder {
    margin-top: 30px;
    text-align: right;
}

#library-zip-holder a {
    height: 40px;
    align-items: center;
    background-color: var(--orange-color);
    border-radius: 20px;
    color: var(--white-color);
    display: inline-flex;
    font-size: 22px;
    font-weight: 500;
    justify-content: center;
    padding: 0 25px;
    text-decoration: none;
}

#library-file-wrapper {
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr;
    margin-top: 30px;
}

.library-file-holder {
    background-color: var(--very-light-grey-alt-color);
    border-radius: 17px;
    color: var(--blue-color);
    display: flex;
    flex-direction: column;
    font-size: 22px;
    font-weight: 400;
    gap: 20px;
    line-height: 1.45;
    padding: 30px;
    padding-bottom: 50px;
    position: relative;
}

.library-file-holder div {
    word-break: break-all;
}

.library-file-thumbnail-holder {
    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

.library-file-thumbnail-holder img {
    max-width: 100%;
    max-height: 255px;
}

.library-file-holder a {
    width: 144px;
    height: 40px;
    align-items: center;
    background-color: var(--orange-color);
    border-radius: 20px;
    color: var(--white-color);
    display: flex;
    font-weight: 500;
    justify-content: center;
    position: absolute;
    left: calc(50% - 72px);
    bottom: -20px;
    text-decoration: none;
}

.search-result-text-holder {
    max-height: 4.8em;
    display: -webkit-box;
    font-size: 16px;
    font-weight: 300;
    -webkit-line-clamp: 4;
    line-height: 1.2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

#search-results-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 100px;
}

.search-result-holder {
    border-bottom: 1px solid var(--black-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
}

.search-result-holder a {
    color: var(--blue-color);
    font-size: 20px;
    font-weight: 500;
}

#search-results-wrapper .search-result-holder:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    #header-menu {
        width: 375px;
        max-height: unset;
        overflow-y: unset;
        position: absolute;
        top: 63px;
        right: 0;
    }

    #header-menu ul li a {
        font-size: 30px;
    }

    #header-login-holder {
        margin-top: 30px;
    }

    #header-login-holder a {
        width: 270px;
        height: 44px;
    }

    .timeline-previous-button {
        left: -35px;
    }

    .timeline-next-button {
        right: -35px;
    }

    .timeline-item {
        border-right: 2px solid var(--white-color);
        padding: 0 60px;
    }

    .timeline-item.inverted .timeline-item-text-holder{
        order: 1;
    }

    .timeline-item.inverted .timeline-item-image-holder {
        order: 2;
    }
}

@media (min-width: 992px) {
    #header-bg {
        height: 304px;
        background-image: url("../images/header-bg.svg");
        background-size: 1px 304px;
    }

    #header-wrapper {
        height: 225px;
    }

    #header-holder {
        height: 225px;
    }

    #header-logo-holder {
        height: 100%;
        align-items: center;
        display: flex;
    }

    #header-logo-holder img {
        width: 290px;
    }

    #header-contact-button {
        display: inline-flex;
    }

    #header-menu-button span {
        display: inline-block;
    }

    #header-menu-button img {
        width: 40px;
    }

    .top-content-wrapper {
        padding-top: 225px;
    }
    
    .home-top-wrapper {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .home-top-wrapper-text-holder {
        width: 50%;
    }

    .home-top-wrapper-image {
        max-width: 50%;
    }

    .home-why-inner-wrapper {
        align-items: center;
        flex-direction: row;
        gap: 30px;
        justify-content: space-between;
    }

    .home-why-text-holder {
        max-width: 50%;
        text-align: left;
    }

    .home-why-media-holder {
        width: 43%;
        margin-top: 0;
    }

    .home-block3-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .home-block3-wrapper div:nth-child(1) {
        order: 1;
    }

    .home-block3-wrapper div:nth-child(2) {
        order: 2;
    }

    .home-block3-wrapper div:nth-child(3) {
        order: 3;
    }

    .home-block3-wrapper div:nth-child(4) {
        order: 4;
    }

    .home-block3-wrapper div:nth-child(5) {
        order: 5;
    }

    .home-block3-wrapper div:nth-child(6) {
        order: 6;
    }

    .home-block3-wrapper div.block4 {
        align-self: start;
    }

    .home-button-holder {
        gap: 50px;
    }

    .recurring-customer-button, .recurring-portal-button {
        width: 260px;
        height: 127px;
        flex-direction: row;
        font-size: 24px;
        line-height: 1.25;
        padding-left: 30px;
        padding-right: 100px;
        text-align: left;
    }

    .recurring-customer-button img, .recurring-portal-button img {
        position: absolute;
        top: -20px;
        right: -20px;
    }

    .home-service-holder {
        width: 50%;
    }

    .home-powered-by-holder {
        width: 50%;
    }

    .home-block7-mobile-media-holder {
        display: none;
    }

    .home-block7-media-holder, .single-license-block2-wrapper-image {
        width: 50%;
        display: block;
    }

    .single-teacher-block2-media-holder {
        width: 50%;
    }

    .home-block7-inner-wrapper, .single-teacher-block2-inner-wrapper, .single-license-block2-inner-wrapper {
        align-items: center;
        flex-direction: row;
        gap: 30px;
        justify-content: space-between;
        position: relative;
    }

    .home-block7-text-holder, .single-teacher-block2-text-holder, .single-license-block2-text-holder {
        max-width: 50%;
        text-align: left;
    }

    .home-reviews-wrapper {
        flex-direction: row;
        gap: 30px;
        justify-content: space-between;
    }

    .home-reviews-intro-holder {
        gap: 30px;
        text-align: left;
    }

    .home-reviews-button-holder {
        display: block;
    }

    .home-reviews-mobile-button-holder {
        display: none;
    }

    .home-reviews-star-holder {
        justify-content: start;
        margin-bottom: 0;
    }

    .home-reviews-review-holder {
        justify-content: center;
    }

    .home-news-intro-holder {
        text-align: left;
    }

    .home-news-first-message-holder .home-news-text-holder {
        display: flex;
    }

    .home-news-message-holder {
        width: 60%;
    }

    .single-teacher-top-wrapper, .single-license-top-wrapper {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .single-teacher-top-text-holder, .single-license-top-text-holder {
        width: 60%;
    }

    .single-teacher-intro-icon-holder, .single-license-intro-icon-holder {
        width: 40%;
    }

    .single-teacher-button-holder, .single-license-button-holder {
        gap: 50px;
        justify-content: start;
        margin: 0;
        margin-bottom: -15px;
        padding-top: 60px;
    }

    .single-teacher-licenses-top-title {
        font-size: 25px;
    }

    .single-teacher-licenses-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 80px;
        margin: 0;
        padding: 0;
    }

    .single-teacher-license-outer-holder {
        margin: 0;
    }

    .single-teacher-license-holder {
        flex-direction: row;
        font-size: 20px;
        line-height: 1.6;
        padding: 50px 60px;
        padding-left: 0;
    }

    .single-teacher-license-holder h4 {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 0;
    }

    .single-teacher-license-button {
        width: 300px;
        height: 62px;
        border-radius: 18px;
        position: absolute;
        right: 60px;
        bottom: -31px;
    }

    .single-teacher-customers-top-wrapper {
        font-size: 32px;
        padding: 60px;
        text-align: left;
    }

    .single-teacher-customers-top-wrapper h3 {
        font-size: 50px;
        text-align: left;
    }

    .single-teacher-customers-holder {
        display: flex;
    }

    .single-teacher-block4-wrapper, .single-license-block4-wrapper {
        align-items: center;
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
        margin-bottom: 0;
        padding-top: 50px;
        padding-bottom: 50px;
        text-align: left;
    }

    .single-teacher-block4-button-holder, .single-license-block4-button-holder {
        margin-bottom: 0;
    }

    .single-teacher-block4-button, .single-license-block4-button {
        width: 340px;
        height: 58px;
        font-size: 22px;
    }

    .single-teacher-product-holder, .single-license-product-holder {
        text-align: left;
    }

    .single-teacher-highlighted-story-holder h3 {
        font-size: 35px;
    }

    .single-teacher-highlighted-story-holder {
        font-size: 22px;
        gap: 30px;
        padding: 75px 40px;
    }

    .single-teacher-highlighted-story-button {
        width: 330px;
        height: 64px;
        border-radius: 18px;
        font-size: 22px;
        font-weight: 500;
        right: 40px;
        bottom: -32px;
    }

    .single-license-block3-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 50px;
        margin: 0;
        margin-bottom: 140px;
    }

    .single-license-advantage-outer-holder {
        margin: 0;
    }

    .single-license-advantage-holder {
        align-items: center;
        flex-direction: row;
        gap: 60px;
        padding: 10px 60px;
    }

    .single-license-advantage-image-holder {
        max-width: 300px;
    }

    .single-license-advantage-text-holder {
        font-size: 20px;
    }

    .single-license-advantage-text-holder h3 {
        font-size: 25px;
        gap: 25px;
        margin-bottom: 40px;
    }

    .single-license-advantage-text-holder h3::before {
        width: 40px;
        height: 40px;
        background-size: 40px 40px;
    }

    .our-story-top-wrapper {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding-bottom: 60px;
    }

    .our-story-top-wrapper-text-holder {
        max-width: 56%;
    }

    .our-story-top-wrapper-image-holder {
        max-width: 36%;
    }

    .our-story-top-wrapper-image-holder::before {
        display: none;
    }

    .our-story-block2-wrapper, .our-story-block3-wrapper {
        text-align: left;
    }

    .partners-wrapper {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 80px;
        margin-top: 60px;
    }

    #reviews-wrapper {
        column-gap: 95px;
        grid-template-columns: 1fr 1fr;
    }

    .reviews-block2-wrapper {
        align-items: center;
        flex-direction: row;
        padding: 0;
    }

    .reviews-block2-wrapper > div {
        width: 50%;
        position: relative;
    }

    .reviews-block2-wrapper > div:first-child {
        padding: 0 60px;
    }

    .reviews-block2-button {
        width: 300px;
        left: calc(50% - 150px);
    }

    #news-top-bar-holder, #faq-top-bar-holder {
        align-items: center;
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
    }

    #news-filter-button, .news-filter-button {
        font-size: 25px;
    }

    #news-filter-button::after {
        width: 34px;
        height: 34px;
        background-size: 34px 34px;
    }

    #news-search-field-wrapper, #faq-search-field-wrapper {
        height: 64px;
    }

    #news-search-field-wrapper::after, #faq-search-field-wrapper::after {
        width: 36px;
        height: 36px;
        background-size: 36px 36px;
        top: 12px;
    }

    #news-search-button, #faq-search-button {
        display: inline-flex;
    }

    #news-messages-holder {
        grid-template-columns: 1fr 1fr;
    }

    .news-text-holder {
        font-size: 20px;
        line-height: 1.35;
    }

    #single-news-content-holder {
        gap: 60px;
    }

    #single-news-text-holder {
        font-size: 25px;
    }

    #single-news-text-holder h4 {
        font-size: 45px;
    }

    #single-news-date-holder {
        font-size: 25px;
    }

    #contact-top-wrapper {
        margin-top: 40px;
    }

    #contact-top-wrapper-text-holder {
        max-width: 50%;
        font-size: 20px;
    }

    #contact-button-wrapper {
        flex-direction: row;
    }

    #contact-form-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    #contact-info-holder {
        font-size: 22px;
    }

    .contact-info-inner-holder {
        padding-left: 50px;
    }

    .contact-info-inner-holder > div {
        margin-bottom: 50px;
    }

    #contact-bottom-visual-holder {
        display: flex;
    }

    #contact-bottom-text-wrapper {
        width: 58%;
    }

    .contact-bottom-holder {
        font-size: 20px;
        gap: 20px;
        line-height: 1.6;
    }

    .contact-bottom-holder h3 {
        font-size: 40px;
    }

    #library-block2-wrapper {
        align-items: center;
        flex-direction: row;
        gap: 100px;
    }

    #library-form-wrapper {
        width: 65%;
    }

    #library-form-holder {
        align-items: center;
        flex-direction: row;
    }

    #library-image-holder {
        width: 35%;
    }

    #library-block3-wrapper {
        font-size: 22px;
    }

    #library-block3-wrapper h3 {
        font-size: 50px;
    }

    #library-domain-holder {
        flex-direction: row;
        gap: 50px;
    }

    #library-domain-holder button {
        width: 294px;
    }

    #library-file-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    #footer {
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
        text-align: left;
    }

    #footer-logo-holder {
        display: block;
    }

    #footer-mobile-logo-holder {
        display: none;
    }

    #footer-newsletter-mobile-wrapper {
        display: none;
    }

    #footer-information-horizontal-holder {
        justify-content: start;
        text-align: left;
    }

    #footer-newsletter-wrapper {
        display: block;
    }

    #footer-socials-holder {
        justify-content: end;
    }

    #footer-bottom-holder {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    #footer-bottom-links-holder {
        align-items: center;
        display: flex;
        flex-wrap: nowrap;
        justify-content: start;
    }

    .search-result-text-holder {
        max-height: 3.2em;
        font-size: 20px;
        -webkit-line-clamp: 2;
        line-height: 1.6;
    }

    h3.search-results-title {
        font-size: 30px;
    }

    .search-result-holder a {
        font-size: 25px;
    }
}

@media (min-width: 1200px) {
    h2 {
        font-size: 60px;
    }

    h3 {
        font-size: 50px;
    }

    .padding-vertical {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .more-whitespace {
        margin-top: 70px;
    }

    .less-whitespace {
        margin-top: -70px;
    }

    #news-top-wrapper, #faq-top-wrapper, #reviews-top-wrapper, #page-top-wrapper, #library-top-wrapper {
        margin-top: 60px;
    }

    #news-top-wrapper h2, #faq-top-wrapper h2, #reviews-top-wrapper h2, #library-top-wrapper h2 {
        font-size: 60px;
    }

    #news-top-wrapper h3, #faq-top-wrapper h3, #reviews-top-wrapper h3, #library-top-wrapper h3 {
        font-size: 30px;
    }

    .home-teacher-wrapper h3 {
        font-size: 23px;
    }

    .home-why-text-holder {
        font-size: 18px;
    }

    .home-why-text-holder h2 {
        font-size: 50px;
    }

    .home-why-button {
        font-size: 18px;
    }

    .home-block3-wrapper div img {
        max-width: unset;
    }

    .home-block3-wrapper div h3 {
        font-size: 65px;
    }

    .home-block3-wrapper div span {
        font-size: 18px;
    }

    .home-block3-wrapper div.block4 div {
        font-size: 18px;
        line-height: 1.45;
    }

    .home-block3-wrapper div.block4 h3 {
        font-size: 30px;
    }

    .home-services-top-wrapper {
        font-size: 22px;
    }

    .home-service-holder h3 {
        font-size: 30px;
    }

    .home-service-intro {
        font-size: 20px;
    }

    .home-powered-by-top-wrapper {
        font-size: 20px;
        margin-bottom: 60px;
    }

    .home-block7-text-holder, .single-teacher-block2-text-holder, .single-license-block2-text-holder {
        font-size: 18px;
        line-height: 1.45;
    }

    .home-block7-text-holder h2, .single-teacher-block2-text-holder h2, .single-license-block2-text-holder h2 {
        font-size: 50px;
    }

    .home-reviews-intro-holder {
        font-size: 18px;
    }

    .home-reviews-intro-holder h2 {
        font-size: 40px;
    }

    .home-reviews-review-holder {
        border-radius: 27px;
        justify-content: start;
        padding: 50px;
    }

    .home-reviews-review-holder h3 {
        font-size: 30px;
    }

    .home-reviews-review-holder h4 {
        font-size: 20px;
    }

    .home-news-text-holder {
        font-size: 20px;
    }

    .home-news-intro-holder {
        font-size: 22px;
        font-weight: 500;
        gap: 10px;
        margin-bottom: 40px;
    }

    .home-news-message-bottom-holder, .news-message-bottom-holder {
        font-size: 20px;
        padding: 30px;
    }

    .home-news-message-bottom-holder h4, .news-message-bottom-holder h4 {
        font-size: 30px;
    }

    #news-messages-holder .news-message-bottom-holder {
        font-size: 22px;
        padding-bottom: 40px;
    }

    .home-news-button-holder a {
        border-radius: 18px;
        font-size: 22px;
        padding: 18px 34px;
    }

    .single-teacher-intro-holder, .single-license-intro-holder {
        font-size: 20px;
        line-height: 1.85;
    }

    .single-teacher-top-wrapper h2, .single-license-top-wrapper h2 {
        margin-bottom: 45px;
    }

    .single-teacher-block2-wrapper, .single-license-block2-wrapper {
        padding-top: 150px;
        padding-bottom: 130px;
    }

    .single-teacher-block3-wrapper {
        width: 100%;
        margin: 0;
        margin-bottom: 110px;
    }

    .single-teacher-block5-top-holder, .single-license-block5-top-holder {
        font-size: 20px;
        margin-bottom: 100px;
        text-align: left;
    }

    .single-teacher-block5-top-holder h2, .single-license-block5-top-holder h2 {
        font-size: 50px;
    }

    .single-license-product-wrapper {
        width: 100%;
        margin: 0;
    }

    .single-teacher-product-holder, .single-license-product-holder {
        font-size: 18px;
    }

    .single-teacher-product-holder h3, .single-license-product-holder h3 {
        font-size: 26px;
    }

    .single-license-block6-wrapper {
        align-items: center;
        flex-direction: row;
        gap: 100px;
    }

    .single-license-block6-image-holder {
        width: 50%;
    }

    .single-license-block6-text-holder {
        width: 50%;
        font-size: 20px;
    }

    .single-license-block6-text-holder h3 {
        font-size: 60px;
    }

    .our-story-top-wrapper {
        padding-top: 60px;
    }

    .text-block {
        font-size: 20px;
        line-height: 1.6;
    }

    .timeline-item-text-holder h3 {
        font-size: 90px;
    }

    .timeline-item-text-holder h4 {
        font-size: 25px;
    }

    #reviews-wrapper {
        row-gap: 170px;
        margin-top: 200px;
    }

    .review-holder {
        font-size: 20px;
        gap: 60px;
        justify-content: space-between;
        line-height: 1.6;
        padding: 100px;
        padding-bottom: 80px;
    }

    .review-initials {
        width: 138px;
        height: 138px;
        font-size: 58px;
        top: -70px;
    }

    .review-holder h4 {
        font-size: 22px;
    }

    .reviews-block2-wrapper h3 {
        font-size: 40px;
        line-height: 1.25;
        margin-bottom: 30px;
    }

    .reviews-block2-wrapper h4 {
        font-size: 25px;
    }

    #single-news-top-holder a {
        height: 64px;
        font-size: 22px;
    }

    #single-news-content-holder {
        display: block;
    }

    #single-news-image-holder {
        width: 50%;
        float: right;
        margin-left: 40px;
        margin-bottom: 40px;
    }

    #single-news-text-holder {
        line-height: 1.23;
    }

    #contact-button-wrapper a {
        height: 130px;
    }

    #contact-button-wrapper a img {
        max-width: unset;
    }

    #contact-form-holder h3 {
        font-size: 60px;
        margin-bottom: 60px;
    }

    #contact-form-holder form input[type=text], #contact-form-holder form textarea {
        height: 50px;
        font-size: 25px;
        margin-bottom: 60px;
    }

    #contact-form-holder form textarea {
        height: 132px;
    }

    .contact-form-input-holder {
        flex-direction: row;
        gap: 30px;
    }

    #contact-form-holder form label {
        font-size: 25px;
    }

    .faq-category {
        font-size: 25px;
        margin-top: 40px;
        padding-left: 75px;
    }

    .faq-holder {
        gap: 40px;
        padding-left: 75px;
    }

    .faq-question {
        font-size: 25px;
    }

    .faq-question::after {
        width: 30px;
        height: 30px;
        background-size: 30px 30px;
    }

    .faq-answer {
        font-size: 22px;
    }

    #faq-end-text {
        font-size: 35px;
        margin-top: 100px;
    }

    #library-form-wrapper {
        font-size: 22px;
    }

    #library-form-wrapper h3 {
        font-size: 50px;
    }

    #library-file-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }

    #footer {
        font-size: 18px;
    }

    #footer-bottom-holder {
        font-size: 17px;
    }

    #footer-bottom-holder a {
        font-size: 15px;
    }
}

@media (min-width: 1510px) {
    h2 {
        font-size: 70px;
        margin-bottom: 40px;
    }

    #header-holder {
        padding-left: 0;
        padding-right: 0;
    }

    #news-top-wrapper, #faq-top-wrapper, #reviews-top-wrapper, #page-top-wrapper, #library-top-wrapper {
        margin-top: 0;
    }

    #news-top-wrapper h2, #faq-top-wrapper h2, #reviews-top-wrapper h2, #library-top-wrapper h2 {
        font-size: 70px;
    }

    .content-inner-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .content-inner-wrapper:has(.home-teacher-wrapper) {
        max-width: 1440px;
    }

    .home-teacher-wrapper {
        gap: 40px;
    }

    .home-teacher-wrapper h3 {
        font-size: 35px;
    }

    .home-teacher-holder {
        width: calc(100% + 20px);
        margin: 0 -10px;
        margin-bottom: -20px;
    }

    .home-teacher-holder .slick-dots {
        display: none;
    }

    .home-teacher-bottom-holder {
        font-size: 25px;
    }

    .home-why-wrapper {
        padding-top: 200px;
        padding-bottom: 100px;
    }

    .home-why-text-holder {
        font-size: 20px;
        line-height: 1.6;
    }

    .home-why-text-holder h2 {
        font-size: 60px;
        margin-bottom: 30px;
    }

    .home-why-text-holder p {
        margin-bottom: 30px;
    }

    .home-why-button {
        font-size: 22px;
    }

    .home-why-button::after {
        width: 25px;
        height: 25px;
        background-size: 25px 25px;
    }

    .home-block3-wrapper {
        margin-bottom: 200px;
    }

    .home-block3-wrapper div.block4 {
        margin-bottom: 0;
    }

    .home-block3-wrapper div.block4 div {
        font-size: 20px;
    }

    .home-block3-wrapper div.block4 h3 {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .home-button-wrapper {
        margin-bottom: 140px;
    }

    .padding-vertical {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .more-whitespace {
        margin-top: 100px;
    }

    .less-whitespace {
        margin-top: -100px;
    }

    .home-services-top-wrapper {
        font-size: 20px;
        margin-bottom: 100px;
    }

    .home-services-previous-button, .home-services-next-button, .single-teacher-product-previous-button, .single-teacher-product-next-button {
        width: 50px;
        height: 50px;
        background-size: 50px 50px;
        top: calc(50% - 25px);
    }

    .home-services-previous-button, .single-teacher-product-previous-button {
        left: -15px;
    }

    .home-services-next-button, .single-teacher-product-next-button {
        right: -15px;
    }

    .home-service-holder {
        width: 25%;
    }

    .home-service-holder h3 {
        font-size: 30px;
        margin-bottom: 23px;
    }

    .home-service-intro {
        font-size: 20px;
    }

    .home-powered-by-wrapper {
        width: 100%;
        margin: 0;
    }

    .home-powered-by-top-wrapper {
        font-size: 20px;
    }

    .home-powered-by-holder {
        width: 25%;
    }

    .home-powered-by-inner-holder {
        width: 300px;
        height: 200px;
    }

    .home-powered-by-previous-button {
        left: -15px;
    }

    .home-powered-by-next-button {
        right: -15px;
    }

    .home-block7-wrapper, .single-teacher-block2-wrapper, .single-license-block2-wrapper {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .home-block7-inner-wrapper, .single-teacher-block2-inner-wrapper, .single-license-block2-inner-wrapper {
        gap: 100px;
    }

    .home-block7-text-holder, .single-teacher-block2-text-holder, .single-license-block2-text-holder {
        font-size: 20px;
        line-height: 1.6;
    }

    .home-block7-text-holder h2, .single-teacher-block2-text-holder h2, .single-license-block2-text-holder h2 {
        font-size: 60px;
    }

    .home-block7-text-holder ul li, .home-why-text-holder ul li, .single-teacher-block2-text-holder ul li, .single-license-block2-text-holder ul li {
        padding: 5px 72px;
    }

    .home-block7-text-holder ul li::before, .home-why-text-holder ul li::before, .single-teacher-block2-text-holder ul li::before, .single-license-block2-text-holder ul li::before {
        width: 36px;
        height: 36px;
        background-size: 36px 36px;
        top: 3px;
    }

    .home-reviews-intro-holder {
        font-size: 20px;
        gap: 50px;
        line-height: 1.6;
    }

    .home-reviews-star-holder img {
        width: 56px;
    }

    .home-reviews-review-holder {
        gap: 100px;
        padding: 75px;
    }

    .home-reviews-review-holder h3 {
        font-size: 35px;
        line-height: 1.1;
    }

    .home-reviews-review-holder h4 {
        font-size: 27px;
    }

    .home-news-intro-holder {
        font-size: 30px;
        font-weight: 500;
        gap: 10px;
        margin-bottom: 60px;
    }

    .home-news-messages-holder {
        display: flex;
    }

    .home-news-text-holder {
        font-size: 22px;
    }

    .home-news-message-bottom-holder, .news-message-bottom-holder {
        font-size: 30px;
        gap: 20px;
        padding: 40px;
    }

    .home-news-message-bottom-holder h4 {
        font-size: 40px;
    }

    .home-news-message-bottom-holder h4::after, .news-message-bottom-holder h4::after {
        width: 35px;
        height: 35px;
        background-size: 35px 35px;
    }

    .home-news-button-holder {
        margin-top: 100px;
    }

    .home-news-button-holder a {
        font-size: 22px;
    }

    .single-teacher-customers-holder {
        gap: 90px;
    }

    .single-teacher-advantage-holder div {
        font-size: 22px;
        line-height: 1.45;
    }

    .single-teacher-advantage-holder h3 {
        font-size: 50px;
    }

    .single-teacher-block4-wrapper, .single-license-block4-wrapper {
        font-size: 28px;
        font-weight: 500;
        line-height: 1.36;
    }

    .single-teacher-block4-wrapper h4, .single-license-block4-wrapper h4 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .single-license-block6-wrapper {
        gap: 200px;
    }

    .our-story-top-wrapper {
        padding: 0;
    }

    .our-story-top-wrapper-text-holder {
        margin-bottom: -80px;
    }

    .our-story-top-wrapper-image-holder {
        margin-bottom: -80px;
    }

    #contact-button-wrapper a {
        width: 420px;
        font-size: 26px;
    }

    #library-file-wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    #footer {
        font-size: 20px;
        padding: 80px 0;
    }

    #footer-logo-holder img {
        width: 176px;
    }

    #footer-newsletter-field {
        width: 310px;
        height: 64px;
        font-size: 20px;
    }

    #footer-newsletter-button {
        width: 64px;
        height: 64px;
        background-size: 30px 30px;
    }

    #footer-search-field {
        font-size: 18px;
    }

    #footer-socials-holder {
        margin-top: 80px;
    }

    #footer-bottom-holder {
        padding-bottom: 50px;
    }

    #footer-bottom-links-holder {
        gap: 50px;
    }
}