header {
    background-color: transparent;
}
.main-header {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 1rem 4rem 1rem;
}
.logo {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}
.logo span {
    font-weight: 400;
    border: 3px solid #feedd1;
    padding: 8px 8px;
}
.main-menu > .menu-item {
    font-size: 16px;
    font-weight: 700;
}
.main-menu > .menu-item:not(:last-child) {
    margin-right: 20px;
}
.main-menu .submenu {
    min-width: 260px;
    height: auto;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: 0.5s;
    transform: scaleY(0);
    border-radius: 10px;
    background-color: #feedd1;
    border-left: 1px solid rgba(255, 255, 255, 0.0784313725);
    border-bottom: 1px solid rgba(255, 255, 255, 0.0784313725);
    border-right: 1px solid rgba(255, 255, 255, 0.0784313725);
    display: inline-block;
    box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
    transform-origin: 0 0;
}
.main-menu .submenu li a {
    color: #1F1F25;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}
.main-menu .submenu .menu-item:first-child a{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.main-menu .submenu .menu-item:last-child a {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.main-menu .submenu li:not(:last-child) a {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: scaleY(1);
}
.main-menu .submenu li a:hover {
    background-color: var(--secondary);
    color: var(--cream);
}
.main-menu > .menu-item > a:hover, .cv {
    color: var(--secondary);
    text-decoration: underline;
}
.burger-menu {
    display: none;
}
@media (max-width: 1024px) {
    .main-menu {
        display: none;
    }
    .burger-menu {
        display: flex;
    }
    .canvas-menu {
        padding: 24px 20px 0;
    }
    .canvas-menu > li:not(:last-child) {
        margin-bottom: 1rem;
    }
}
@media (max-width: 480px) {
    .main-header{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .logo{
        margin-bottom: 2rem;
    }
    .menu-text {
        font-size: 20px;
    }
    .canvas-menu > li:not(:last-child) {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px dashed var(--secondary);
    }
    .canvas-menu > li > .submenu > li:not(:last-child) {
        margin-bottom: 15px;
    }
    .canvas-menu > li.parent > a{
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 20px;
    }
}
/***** Language Switcher *****/
.language-switcher-dropdown {
    min-width: 260px;
    height: auto;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: 0.5s;
    transform: scaleY(0);
    border-radius: 10px;
    background-color: #feedd1;
    border-left: 1px solid rgba(255, 255, 255, 0.0784313725);
    border-bottom: 1px solid rgba(255, 255, 255, 0.0784313725);
    border-right: 1px solid rgba(255, 255, 255, 0.0784313725);
    display: flex;
    flex-direction: column;
    box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
    transform-origin: 0 0;
}
.language-switcher:hover .language-switcher-dropdown  {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: scaleY(1);
}
.language-switcher-dropdown a {
    color: #1F1F25;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}
.language-switcher-dropdown a:hover {
    background-color: var(--secondary);
    color: var(--cream);
}
.language-switcher-dropdown a:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.language-switcher-dropdown a:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.language-switcher-dropdown a:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.lang-x-icon {
    border-radius: 100px;
    border: 1px solid transparent;
    flex-shrink: 0;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border: 1px solid #dfdfdf;
    cursor: pointer;
}
.main-menu {
    background-color: var(--cream);
    padding: 20px 30px;
    border-radius: 50px;
}
.menu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.menu a {
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}
.menu a:not(:last-child) {
    margin-right: 2rem;
}
.menu a:hover {
    color: var(--blue);
    opacity: 0.8;
}
.menu__fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--cream);
    z-index: 100;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    -webkit-box-shadow: 0 0.9375rem 0.625rem -0.9375rem rgb(0 0 0 / 15%);
    box-shadow: 0 0.9375rem 0.625rem -0.9375rem rgb(0 0 0 / 15%);
    -webkit-transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
@media screen and ( max-width: 992px ){
    .menu a {
        font-size: .9375rem;
    }
    .menu a:not(:last-child) {
        margin-right: 1rem;
    }
}
@media screen and ( max-width: 604px ){
    .menu__item {
        display: none;
    }
    .menu .blog {
        font-size: 1.25rem;
    }
    .menu .blog span {
        font-size: 2rem;
    }
    .menu__fixed {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
/*
|--------------------------------------------------------------------------
| Slider
|--------------------------------------------------------------------------
|
*/
.intro {
    max-width: 1440px;
    margin-inline: auto;
    padding: 0 15px;
}
.intro .image:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 30px;
}
.intro .image img {
    border-radius: 30px;
}
.intro .context {
    position: absolute;
    color: #FFF;
    padding: 4rem 0 0 4rem;
}
.intro .context .title {
    font-size: 50px;
    margin-bottom: 8px;
}
.intro .context span {
    font-size: 24px;
    background-color: rgba(255, 255, 255, .2);
    padding: 1rem 1.5rem;
    border-radius: 30px;
    margin-top: 1rem;
    margin-bottom: 3rem;
}
.intro .context .description {
    font-size: 26px;
    max-width: 480px;
}
.bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0 3rem 4rem;
    color: #fff;
}
.bottom-left .lord {
    width: 50px;
    height: 50px;
    background-color: #FFF;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bottom-left .arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -15px;
    padding-left: 9px;
    margin-right: 12px;
}
.bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 3rem 2rem 0;
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem 2rem;
    transition: background-color 200ms ease-in-out;
}
.bottom-right:hover {
    background-color: var(--third);
}
.bottom-right p {
    max-width: 300px;
    color: #837c7c;
    margin-top: 10px;
}
.bottom-right h2 {
    font-size: 19px;
    font-weight: 700;
}
.bottom-right h2 span {
    color: rgba(16, 16, 24, .5);
    font-size: 20px;
    margin-right: 10px;
    font-weight: 500;
}
@media screen and (max-width: 820px) {
    .intro {
        background-image: url('../icons/ancient-dark.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex-direction: column;
        padding: 2rem;
        border-radius: 30px;
    }
    .intro .context {
        position: relative;
        padding: 0;
    }
    .bottom-left {
        position: relative;
        padding: 0;
        margin: 2rem 0;
    }
    .bottom-right {
        position: relative;
        margin: 0 0 0 0;
    }
    .intro .image {
        display: none;
    }
    .intro .context .title {
        font-size: 34px;
    }
    .intro .context span {
        font-size: 20px;
    }
}
@media screen and (max-width: 480px) {
    .intro .context .description {
        font-size: 20px;
        max-width: initial;
    }
}
.canvas__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 1.8125rem;
    color: #000;
    opacity: 1;
    padding: 1.25rem 1.25rem 0 1.25rem;
}
.canvas__close span {
    cursor: pointer;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.canvas__close span:hover {
    color: var(--color-1);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.canvas__content {
    text-align: left;
}
.canvas__content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.canvas__content > ul > li:not(:last-child) {
    margin-bottom: 1.5rem;
}
.canvas__menu {
    border-bottom: 0.0625rem solid rgba(0,0,0,.2);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
a[class^="canvasfixed__"]{
    margin-top: 1rem;
    margin-left: -.375rem;
}
a[class^="canvasfixed__"]:hover {
    opacity: .8;
}
a[class^="canvasfixed__"] > span {
    background-color: var(--blue);
    color: var(--cream);
    font-size: 1.3125rem;
    border-radius: 50%;
    padding: 0.3rem;
    margin-right: 0.5rem;
}
a[class^="canvasfixed__"] .place {
    font-size: 1rem;
}
@media (max-width: 991px) {
	.canvas__menu .dropdown__menu > li:not(:last-child) {
		margin-bottom: 1.2rem;
	}
	.canvas__menu .drop__item > a {
		color: var(--blue);
		font-weight: 700;
		margin-bottom: 1rem;
		display: none;
	}
	.canvas__menu .dropdown__menu > li > a {
		font-weight: 700;
	}
	.canvas__menu .dropdown__menu .children {
		border-bottom: 0.00625rem solid rgba(0,0,0,.1);
		padding-bottom: 1.2rem;
		margin-top: 1rem;
	}
	.canvas__menu .dropdown__menu .children > li:not(:last-child) {
		margin-bottom: .5rem;
	}
}
.canvas-header{
	padding: 24px 20px 0;
}
.canvas-header .title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: none;
}
.smart-close {
    position: relative;
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border-width: 12px;
    border: 9px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.smart-close:before, .smart-close:after {
    background-color: #222;
}
.smart-close:before {
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.smart-close:after {
    -webkit-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.smart-close:before, .smart-close:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    transform-origin: 50% 50%;
    -webkit-transition: all .25s cubic-bezier(.645,.045,.355,1);
    -khtml-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -moz-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -ms-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -o-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    transition: all .25s cubic-bezier(.645,.045,.355,1);
    background-color: #1b1b1b;
}
.smart-close:hover {
    opacity: .8;
}
.smart-close:hover:before, .smart-close:hover:after {
    -webkit-transform: rotate(0);
    -khtml-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}
/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
|
*/
.footer__node {
    background-color: #141414;
    color: var(--cream);
    padding: 6rem 1rem;
    margin-top: 0;
}
.sound__good {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 7rem;
}
.sound__good .rocket {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-right: 0;
}
.sound__good h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.sound__good h2 + p {
    font-size: 1.25rem;
    line-height: 1.5;
}
.continue-reading {
    border: 0.0625rem solid var(--cream);
    border-radius: 6.25rem;
    padding: 1.1875rem 0;
    width: 18rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    background-color: #feedd1;
    color: #000;
    transition: all .2s ease;
    font-weight: 700;
}
.continue-reading:hover {
    opacity: .8;
}
.footer__content {
    max-width: 70rem;
    margin: 0 auto;
}
.f--title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.8125rem;
    letter-spacing: .025em;
}
.f--list ul li {
    color: #a0a0a7;
    font-size: 1.1rem;
}
.f--list ul li:not(:last-child) {
    margin-bottom: .9375rem;
}
.f--list > ul > li > a:hover {
    opacity: .75;
}
footer .material-symbols-outlined {
    margin-right: 0.5rem;
}
.footer__box ul li:not(:last-child) {
    margin-bottom: .9375rem;
}
.social > li:not(:last-child) {
    margin-right: 1rem;
}
.footer__bottom {
    font-size: 17px;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-top: .0625rem solid rgba(255,255,255,.1);
}
.footer__inner {
    max-width: 85rem;
    margin: 0 auto;
}
.terms > li:not(:last-child) {
    margin-right: 1rem;
}
.copyright a {
    font-weight: 700;
    color: var(--secondary);
}
@media only screen and (max-width: 768px){
    .f--list {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-bottom: 4rem;
    }
    .sound__good span {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    .sound__good h2 {
        font-size: 2rem;
    }
    .sound__good h2 + p {
        font-size: 1.0625rem;
    }
}
@media only screen and (max-width: 480px){
    .footer__inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: .9375rem;
    }
    .footer__node {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .footer__social__media h2 {
        font-size: .9375rem;
    }
    .footer__box > h2 {
        font-size: .9375rem;
    }
    .footer__col__left ul li, .footer__box ul li {
        font-size: .875rem;
    }
    .copyright {
        margin-bottom: 0.5rem;
        text-align: center;
    }
    .footer__bottom {
        padding-bottom: 8.5rem;
    }
}
/**
**** 6 Cards
**/
.card__mR9Nb {
    flex: 0 0 auto;
    padding: 15px;
    flex-basis: 33.3333333333%;
}
.stepcard_container__mR9Nb {
    padding: 30px 30px 25px;
    min-height: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: border .25s ease;
    border: 1px solid transparent;
    background-color: #feedd1;
    border-radius: 20px;
}
.stepcard__not__allowed{
    cursor: not-allowed;
}
.stepcard_container__mR9Nb:hover {
    border: 1px solid #000;
}
.stepcard_icon__iCe1F {
    display: inline-block;
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
}
.tags_container__mE0BD {
    border-radius: 100px;
    border: 1px solid transparent;
    flex-shrink: 0;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
    background: rgba(16, 16, 24, .05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #525050;
}
.stepcard_text__0qoZ {
    height: 100%;
    margin-top: 80px;
    padding-bottom: 10px;
}
.stepcard_container__title__1f7e5 {
    color: #191414;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.stepcard_container__description__2b1a0 {
    color: rgb(58 58 58);
    font-size: 21px;
    line-height: 1.5;
    font-weight: 300;
}
.bottomlink_link_hzIf {
    font-size: 1.3rem;
    font-weight: 700;
}
.bottomlink_link_hzIf.white{
    color: var(--cream);
}
.bottomlink_link_hzIf:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    transition: all .25s ease;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 16px 12px;
    border-radius: 50%;
    background-image: url(../icons/icon-arrow-dark-tiny.svg);
    background-color: var(--cream);
    border: 1px solid transparent;
}
@media only screen and (max-width: 1024px){
    .card__mR9Nb {
        flex-basis: 50%;
    }
}
@media only screen and (max-width: 768px) {
    .card__mR9Nb {
        flex-basis: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}
@media only screen and (max-width: 480px) {
    .stepcard_container__description__2b1a0 {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .stepcard_container__mR9Nb {
        padding-left: 25px;
        padding-right: 25px;
        min-height: auto;
    }
    .tags_container__mE0BD {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .stepcard_icon__iCe1F {
        top: 40px;
        width: 60px;
        height: 60px;
    }
    .stepcard_text__0qoZ {
        margin-top: 60px;
    }
    .bottomlink_link_hzIf {
        font-size: 1.1rem;
        font-weight: 700;
    }
}
.sample-books-slider {
    background-color: var(--secondary);
    padding: 5rem 0;
}
.book-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--cream);
    padding: 2rem 1.5rem;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: border-color .25s;
}
.book-item .category {
    border: 1px solid rgba(16, 16, 24, .12);
    background: rgba(16, 16, 24, .05);
    display: inline-block;
    padding: 8px 10px;
    border-radius: 100px;
    margin-bottom: 2rem;
}
.book-item .title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    min-height: 114px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}
.book-item .image {
    max-width: 300px;
}
.book-item .image img {
    min-width: 300px;
    border-radius: 30px;
    max-height: 443px;
    transform-origin: center;
    transition: transform .25s ease-in-out;
}
.book-item .image img {
    min-width: 300px;
    border-radius: 30px;
    max-height: 443px;
}
.book-item:hover {
    border-color: #ff4834;
}
.book-item:hover .image img {
    transform: scale(1.05);
}
.book-item:hover .title {
    opacity: 0.8;
}
.back-to-top {
    position: fixed;
    background-color: var(--cream);
    border: 1px solid rgba(0, 0, 0, 1);
    width: 3rem;
    height: 3rem;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    z-index: 25;
    cursor: pointer;
}
.back-to-top lord-icon{
    width: 40px;
    height: 40px;
}
@media only screen and (max-width: 480px){
    .back-to-top {
        width: 2.5rem;
        height: 2.5rem;
        bottom: 4rem;
    }
}
@media only screen and (min-width: 481px){
    .back-to-top {
        display: none;
    }
}
/**
* Poems
*/
.poem-item {
    background-color: var(--third);
    padding: 2rem;
    border-radius: 30px;
    text-align: center;
    min-height: 613px;
}
.poem-title{
    color: #191414;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.poem-description {
    color: rgb(58 58 58);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
}
.poem-description p:not(:last-child) {
    margin-bottom: 1rem;
}
.poem-item.swiper-slide.swiper-slide-next {
    background-color: var(--third);
}
.poem-item.swiper-slide.swiper-slide-active,
.poem-item.swiper-slide.swiper-slide-next + div {
    opacity: 1;
    background-color: var(--cream);
    border: 1px solid var(--secondary);
}