@font-face {
    font-family: 'zooja';
    src: url('fonts/zooja-pro-regular.woff2') format('woff2'),
        url('fonts/zooja-pro-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'zooja';
    src: url('fonts/zooja-light-pro-regular.woff2') format('woff2'),
        url('fonts/Mzooja-light-pro-regular.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}




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

body {
    font-family: "Roboto", sans-serif;
    background-color: #fff;
    color: #4b4b4b;
    font-size: 24px;
    line-height: 31px;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin-bottom: 20px;
}

img {
    vertical-align: middle;
}

a:focus {
    outline: 0;
}

h1 {}

h2 {}

h3 {}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.row-gap-30{
    row-gap: 30px;
}
.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

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

[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.col-1 {
    width: 8.333%;
}

.col-2 {
    width: 16.666%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.333%;
}

.col-5 {
    width: 41.666%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.333%;
}

.col-8 {
    width: 66.666%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.333%;
}

.col-11 {
    width: 91.666%;
}

.col-12 {
    width: 100%;
}

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

.max-w-32 {
    max-width: 32rem;
}

.max-w-48 {
    max-width: 48rem;
}
.max-w-54 {
    max-width: 54rem;
}
.max-w-65 {
    max-width: 65rem;
}

.btn-theme {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 231px;
    min-height: 63px;
    border: 0;
    box-sizing: border-box;
    border-radius: 100px;
    background-color: #ffb9c6;
    color: #ffffff;
    font-size: 24px;
    font-family: "Roboto";
    line-height: 31px;
    outline: none;
    text-decoration: none;
    padding: 16px 48px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.reply-btn{
    text-align: right;
}
.reply-btn a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #ffb9c6;
    color: #ffffff;
    outline: none;
    text-decoration: none;
    font-size: 16px;
    line-height: 1em;
    font-family: "Roboto";
    padding: 7px 22px;
    border-radius: 50px;
}
.btn-theme:hover, .btn-theme:focus, .reply-btn a:hover, .reply-btn a:focus{
    background-color: #ffb9c6;
    color: #ffffff;
}
.btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

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

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

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

.tick-list {
    list-style: none;
    margin-bottom: 0;
}
.tick-list li {
    position: relative;
    font-size: 18px;
    line-height: 23px;
    padding-left: 32px;
    text-align: left;
}
.tick-list li::before {
    content: '';
    display: inline-block;
    width: 23px;
    height: 23px;
    background-image: url(../images/check-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.white-card {
    background-color: #ffffff;
    border-radius: 26px;
    padding: 20px;
}

.card-theme {
    background-color: #fff8fb;
    color: #4b4b4b;
    border-radius: 12px;
    padding: 20px;
}

.font-500 {
    font-weight: 500;
}

.color-theme {
    color: #e58787;
}

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

    .col-sm-1 {
        width: 8.333%;
    }

    .col-sm-2 {
        width: 16.666%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.333%;
    }

    .col-sm-5 {
        width: 41.666%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-7 {
        width: 58.333%;
    }

    .col-sm-8 {
        width: 66.666%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-10 {
        width: 83.333%;
    }

    .col-sm-11 {
        width: 91.666%;
    }

    .col-sm-12 {
        width: 100%;
    }
}


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

    .col-md-1 {
        width: 8.333%;
    }

    .col-md-2 {
        width: 16.666%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.333%;
    }

    .col-md-5 {
        width: 41.666%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-7 {
        width: 58.333%;
    }

    .col-md-8 {
        width: 66.666%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-10 {
        width: 83.333%;
    }

    .col-md-11 {
        width: 91.666%;
    }

    .col-md-12 {
        width: 100%;
    }
}


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

    .col-lg-1 {
        width: 8.333%;
    }

    .col-lg-2 {
        width: 16.666%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.333%;
    }

    .col-lg-5 {
        width: 41.666%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-7 {
        width: 58.333%;
    }

    .col-lg-8 {
        width: 66.666%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-10 {
        width: 83.333%;
    }

    .col-lg-11 {
        width: 91.666%;
    }

    .col-lg-12 {
        width: 100%;
    }

    .btn {
        font-size: 18px;
    }
    .tick-list li{
        font-size: 24px;
        line-height: 31px;
    }
    .tick-list li::before{
        top: 4px;
    }
}

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

    .col-xl-1 {
        width: 8.333%;
    }

    .col-xl-2 {
        width: 16.666%;
    }

    .col-xl-3 {
        width: 25%;
    }

    .col-xl-4 {
        width: 33.333%;
    }

    .col-xl-5 {
        width: 41.666%;
    }

    .col-xl-6 {
        width: 50%;
    }

    .col-xl-7 {
        width: 58.333%;
    }

    .col-xl-8 {
        width: 66.666%;
    }

    .col-xl-9 {
        width: 75%;
    }

    .col-xl-10 {
        width: 83.333%;
    }

    .col-xl-11 {
        width: 91.666%;
    }

    .col-xl-12 {
        width: 100%;
    }
}

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

    .col-xxl-1 {
        width: 8.333%;
    }

    .col-xxl-2 {
        width: 16.666%;
    }

    .col-xxl-3 {
        width: 25%;
    }

    .col-xxl-4 {
        width: 33.333%;
    }

    .col-xxl-5 {
        width: 41.666%;
    }

    .col-xxl-6 {
        width: 50%;
    }

    .col-xxl-7 {
        width: 58.333%;
    }

    .col-xxl-8 {
        width: 66.666%;
    }

    .col-xxl-9 {
        width: 75%;
    }

    .col-xxl-10 {
        width: 83.333%;
    }

    .col-xxl-11 {
        width: 91.666%;
    }

    .col-xxl-12 {
        width: 100%;
    }
}

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

@keyframes slideDown {
    from{
        transform: translateY(-100%);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}
/* Header start from here */
.header {
    position: relative;
    background-color: #fff8fb;
    padding: 23px 0;
    transition: all 0.4s ease;
    z-index: 9999;
}
.fixed-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    animation: slideDown 0.4s ease forwards;
}
.header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .navbar .logo {
    display: inline-block;
    width: 224px;
    height: auto;
    text-decoration: none;
}

.header .navbar .logo img {
    max-width: 100%;
    vertical-align: middle;
}
.menutoggle{
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
}
.menutoggle span{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #4b4b4b;
    border-radius: 9px;
    opacity: 1;
    left: 0;
}
.menutoggle span:nth-child(1) {
    top: 2px;
}
.menutoggle span:nth-child(2) {
    top: 10px;
}
.menutoggle span:nth-child(3) {
    top: 18px;
}
.menutoggle.open span:nth-child(1) {
    top: 9px;
    left: 1px;
    transform: rotate(45deg);
}
.menutoggle.open span:nth-child(2) {
    display: none;
}
.menutoggle.open span:nth-child(3) {
    top: 9px;
    left: 2px;
    transform: rotate(-45deg);
}

.menu-box{
    position: absolute;
    top: 94px;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    transition: all 0.3s;
    overflow: hidden;
}
.menu-box.open{
    height: 100vh;
}
.menu-box::before{
    content: '';
    display: block;
    width: calc(100% + 15px);
    height: 100%;
    background-image: url(../images/bg/mobile-menu-bg.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.menu-box .menu-list {
    position: relative;
    list-style: none;
    margin-bottom: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 80px;
}
.menu-box .menu-list li{
    width: 100%;
    line-height: 1em;
}
.menu-box .menu-list li a {
    color: #4b4b4b;
    font-size: 24px;
    font-family: "DM Sans", sans-serif;
    line-height: 31px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.menu-box .menu-list li.current_page_item a,
.courses-template-default .menu-box .menu-list li.menu-item-24 a,
.menu-box .menu-list li a:hover,
.menu-box .menu-list li a:focus {
    color: #e58787;
}

.menu-box .menu-login a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 84px;
    height: 36px;
    padding: 0px 8px;
    border: 1px solid #e58788;
    box-sizing: border-box;
    border-radius: 100px;
    background-color: rgba(255, 246, 217, 0);
    color: #e58788 !important;
    cursor: pointer;
}

@media(min-width:992px){
    .menutoggle{
        display: none;
    }
    .menu-box{
        position: relative;
        width: auto;
        height: 100%;
        top: 0;
    }
    .menu-box::before{
        content: none;
    }
    .menu-box .menu-list{
        display: inline-flex;
        align-items: center;
        gap: 30px;
        padding: 0;
    }
    .menu-box .menu-list li{
        width: auto;
    }
    .menu-box .menu-list li a{
        font-size: 16px;
        line-height: 21px;
    }
}



/* Homepage design start from here */
.heading {
    font-family: 'zooja';
    font-size: 94px;
    font-weight: 300;
    line-height: 1.5em;
    color: #e58788;
}

h2.heading {
    font-size: 48px;
}

.home-hero {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    background-image: url(../images/bg/home-hero-mobile-bg.png);
    background-position: right -5px top;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}
.home-hero .hero-content h1 {
    width: 100%;
    line-height: .9em;
    padding-left: 18px;
    margin-bottom: 30px;
}
.home-hero .hero-content .btn-theme {
    width: 100%;
    height: 60px;
}
.home-hero .hero-content img {
    display: none;
    width: 603px;
    height: auto;
    position: absolute;
    top: -40px;
    right: 0;
}


.about-me {
    position: relative;
    padding-bottom: 20px;
}
.about-me img {
    width: 100%;
    height: auto;
}
.about-me .about-content {
    position: relative;
    max-width: 45rem;
    margin-top: 74px;
    z-index: 1;
}
.about-me .about-content span {
    font-size: 115px;
    font-family: "Caladea";
    font-weight: 700;
    color: #e58788;
    letter-spacing: 1px;
}
.about-me .about-content span::before {
    content: '';
    display: inline-block;
    text-align: center;
    width: 348px;
    height: 246px;
    position: absolute;
    background-color: #fff;
    border-radius: 26px;
    top: -74px;
    left: -85px;
    z-index: -1;
}
.about-me .about-content h2 {
    color: #4b4b4b;
    font-size: 32px;
    font-family: "Roboto";
    font-weight: 400;
    padding-top: 0;
    margin-top: 20px;
}
.about-me .about-content h2 em {
    color: #e58788;
}
.about-me .about-content p {
    margin-bottom: 0;
    line-height: 31px;
}

.my-video {
    background-color: #fff8fb;
    padding-top: 26px;
    padding-bottom: 30px;
}
.my-video .video-wrapper{
    position: relative;
}
.my-video .video-wrapper video {
    width: 100%;
    vertical-align: middle;
}
.my-video .video-wrapper .video-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}
.my-video .video-wrapper .video-controls button {
    all: unset;
}
.my-video .video-wrapper .video-controls #playBtn {
    display: inline-flex;
    justify-content: center;
    width: 119px;
    position: absolute;
    top: 26%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.my-video .video-wrapper .video-controls #progress {
    width: 100%;
}
.my-video .video-wrapper .video-controls #fullscreenBtn {
    width: 74px;
}
.my-video .video-wrapper .video-controls #volumeBtn {
    width: 89px;
    text-align: right;
}
.my-video .video-controls span.material-icons,
.my-video .video-controls span.material-symbols-outlined{
    color: #F89BA7;
}
.my-video .video-controls .playBtn span{
    font-size: 112px;
}
.my-video .video-controls .fullscreenBtn span,
.my-video .video-controls .volumeBtn span{
    font-size: 33px;
}

#progress {
    --played:0%;
    --progress-color: #4b4b4b;
    --remaining-color: #ffb9c6;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    border-radius: 50px;
    border: 0;
    padding: 0;
    outline: none;
    cursor: pointer;
    background:linear-gradient(
        to right,
        var(--progress-color) 0%,
        var(--progress-color) var(--played),
        var(--remaining-color) var(--played),
        var(--remaining-color) 100%
    );
}
.topic-gehorschule #progress{
    --remaining-color:#aa8ced;
}
.topic-einsingen #progress{
    --remaining-color:#9cd589;
}
.topic-body-flows #progress{
    --remaining-color:#85a0f7;
}

#progress::-webkit-slider-runnable-track{
    height:3px;
    background:transparent;
    border-radius:50px;
}

/* Chrome, Edge, Safari */
#progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #4b4b4b;
    border:none;
    border-radius: 50%;
    margin-top: -5px;
    cursor: pointer;
}

/* Firefox */
#progress::-moz-range-track {
    height: 3px;
    border: none;
    border-radius: 50px;
}
.topic-gehorschule #progress::-moz-range-track {
    height: 3px;
    border: none;
    border-radius: 50px;
}

#progress::-moz-range-progress {
    height: 3px;
    border-radius: 50px;
}

#progress::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #4b4b4b;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.courses {
    padding-top: 40px;
    padding-bottom: 80px;
}
.courses .container{
    padding-left: 0;
    padding-right: 0;
}
.courses h2 {
    color: #e58788;
    font-size: 32px;
    font-family: "Caladea";
    font-weight: 700;
    line-height: 37px;
    text-align: center;
    margin-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
}
.course-box {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    min-height: 260px;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 26px;
    overflow: hidden;
}
.course-box:before{
    content: '';
    display: block;
    width: 104%;
    height: 233px;
    background-color: #FFF8FB;
    background-image: url(../images/bg/course-box-mobile-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: -12px;
    overflow: hidden;
    z-index: 0;
}
.course-box > *{
    position: relative;
    z-index: 2;
}
.courses-inner-box {
    padding: 10px 20px 0 20px;
}
.courses-inner-box h3 {
    color: #e58788;
    font-size: 24px;
    font-family: "DM Sans";
    font-weight: 700;
    line-height: 31px;
    margin-bottom: 8px;
}

.course-left-content {
    max-width: 24rem;
    line-height: 0;
}

.course-left-content p {
    color: #4b4b4b;
    font-size: 18px;
    font-family: "Roboto";
    line-height: 23px;
    margin-bottom: 0;
}

.course-left-content span {
    color: #4b4b4b;
    font-size: 16px;
    font-family: "Roboto";
    font-weight: 500;
    line-height: 21px;
}
.courses-right-content{
    text-align: center;
}
.courses-right-content ul {
    padding-left: 0;
    margin-top: 20px;
}
.courses-right-content ul li:not(:last-child){
    margin-bottom: 8px;
}
.courses-right-content p{
    font-size: 18px;
    line-height: 23px;
    margin-top: 50px;
}
.courses-right-content .btn-theme {
    width: 246px;
    height: 54px;
}

.heading-box h2 {
    color: #e58788;
    font-size: 32px;
    font-family: "Roboto";
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 0;
}

.heading-box p {
    margin-bottom: 0;
}

.student-reviews {
    margin-bottom: 80px;
}

.reviews-list {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 40px;
}

.reviews-list .review-card {
    width: 100%;
    background-color: #fff8fb;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0px 2px 5px rgba(3, 3, 3, 0.05);
}

.reviews-list .review-card .review-header {
    display: flex;
    align-items: center;
    column-gap: 9px;
}

.reviews-list .review-card .review-header .student-pic {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
}

.reviews-list .review-card .review-header .student-info {
    width: calc(100% - 47px);
    display: flex;
    flex-direction: column;
}

.reviews-list .review-card .review-header .student-info h4 {
    color: #3b2730;
    font-size: 14px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 0;
}

.reviews-list .review-card .review-header .student-info ul {
    display: none;
    align-items: center;
    column-gap: 12px;
    margin: 0;
    padding: 0;
}

.reviews-list .review-card .review-header .student-info ul li {
    position: relative;
    color: #6b4952;
    font-size: 12px;
    font-family: "Playfair Display";
    line-height: 16px;
    margin: 0 6px;
}

.review-header .student-info ul li:first-child {
    list-style: none;
    margin-left: 0 !important;
}

.review-header .student-info ul li:last-child {
    margin-right: 0;
}

.reviews-list .review-card .review-content {
    margin-top: 9px;
}

.reviews-list .review-card .review-content p {
    color: #5e3e45;
    font-size: 12px;
    font-family: "Playfair Display";
    line-height: 16px;
    margin-bottom: 10px;
}

.reviews-list .review-card .review-rating {
    color: #c0556b;
    font-size: 20px;
    line-height: 1em;
}
.reviews-list .owl-nav button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.reviews-list .owl-nav button.owl-prev{
    left: -5px;
}
.reviews-list .owl-nav button.owl-next{
    right: -5px;
}
@media(min-width:768px){
    h2.heading {
        font-size: 58px;
    }
    .home-hero{
        padding-top: 60px;
        padding-bottom: 92px;
        background-image: url(../images/hero-pattern-image.png);
        background-position: right -208px top -72px;
        background-size: 708px 475px;
    }
    .home-hero .hero-content h1{
        width: 334px;
        padding-left: 0;
    }
    .home-hero .hero-content img{
        display: block;
        width: 396px;
    }
    .home-hero .hero-content .btn-theme{
        width: 288px;
        height: 66px;
    }
}
@media(min-width:992px){
    h2.heading {
        font-size: 78px;
    }
    .home-hero{
        padding-bottom: 140px;
        background-position: right -160px top -165px;
        background-size: 808px 585px;
    }
    .heading{
        font-size: 110px;
    }
    h2.heading {
        font-size: 96px;
    }
    .home-hero .hero-content{
        padding-left: 45px;
    }
    .home-hero .hero-content h1{
        width: 616px;
        margin-bottom: 96px;
    }
    .home-hero .hero-content img{
        width: 560px;
    }
    .about-me{
        padding-bottom: 50px;
    }
    .about-me .about-content{
        margin-top: -72px;
    }
    .about-me .about-content h2{
        padding-top: 20px;
    }
    .about-me .about-content p{
        line-height: 42px;
    }
    .my-video{
        padding-top: 79px;
        padding-bottom: 34px;
    }
    .my-video .video-wrapper .video-controls #playBtn{
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
    }
    .my-video .video-wrapper .video-controls #progress{
        width: calc(100% - 373px);
    }
    .my-video .video-wrapper .video-controls #progress {
        width: calc(100% - 373px);
    }
    .my-video .video-controls .playBtn span{
        font-size: 70px;
    }
    .my-video .video-controls .fullscreenBtn span,
    .my-video .video-controls .volumeBtn span{
        font-size: 52px;
    }
    .my-video .video-wrapper .video-controls #volumeBtn{
        text-align: left;
    }
    .courses{
        padding-top: 109px;
        padding-bottom: 154px;
    }
    .courses .container{
        padding-left: 15px;
        padding-right: 15px;
    }
    .courses h2{
        margin-bottom: 62px;
    }
    .course-box{
        background-color: #FFF8FB;
        min-height: 360px;
        padding-left: 50px;
        padding-right: 70px;
    }
    .course-box:before{
        content: none;
    }
    .courses-inner-box{
        background-image: url(../images/courses-bg-image.png);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 55px 43px 43px 55px;
    }
    .courses-inner-box h3{
        margin-bottom: 20px;
    }
    .course-left-content p{
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 20px;
    }
    .course-left-content span{
        font-size: 32px;
        line-height: 38px;
    }
    .courses-right-content{
        text-align: left;
    }
    .courses-right-content ul {
        padding-left: 70px;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .courses-right-content p{
        font-size: 24px;
        line-height: 31px;
        margin-top: 0;
    }
    .student-reviews{
        margin-bottom: 358px;
    }
    .reviews-list {
        margin-top: 60px;
    }
    .reviews-list .review-card{
        padding: 20px;
    }
    .reviews-list .review-card .review-header{
        column-gap: 12px;
    }
    .reviews-list .review-card .review-header .student-pic{
        width: 56px;
        height: 56px;
    }
    .reviews-list .review-card .review-header .student-info{
        width: calc(100% - 68px);
    }
    .reviews-list .review-card .review-header .student-info ul{
        display: inline-flex;
    }
    .reviews-list .review-card .review-content {
        margin-top: 12px;
    }
    .reviews-list .review-card .review-content p{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .reviews-list .review-card .review-rating{
        font-size: 26px;
    }
}
@media(min-width: 1200px){
    .home-hero {
        padding-bottom: 156px;
        background-size: 911px 685px;
    }
    .heading{
        font-size: 130px;
    }
    
    .home-hero .hero-content .btn-theme {
        width: 326px;
        height: 66px;
    }
    .home-hero .hero-content img{
        width: 560px;
    }
}
@media(min-width:1400px) {
    .home-hero {
        padding-bottom: 264px;
        background-size: 1278px 1055px;
        background-position: right -352px top -165px;
    }
    .home-hero .hero-content img{
        width: 683px;
    }
    .heading{
        font-size: 160px;
    }
    h2.heading {
        font-size: 116px;
    }
    .other-courses h2.heading {
        font-size: 92px;
    }
    .student-reviews .container {
        max-width: 1370px;
    }
}

@media(min-width:1600px) {
    .home-hero{
        background-position: right -160px top -165px;
    }
    h2.heading {
        font-size: 130px;
    }
    .student-reviews .container {
        max-width: 1560px;
    }
}
@media(min-width:1800px){
    .home-hero .hero-content h1{
        font-size: 170px;
    }
    .home-hero .hero-content img{
        width: 742px;
    }
}
@media(min-width:1920px){
    .home-hero .hero-content h1{
        width: 635px;
        font-size: 188px;
    }
}

/* About page design start from here */

.about-hero img {
    width: 100%;
    max-width: 100%;
}
.my-story {
    position: relative;
    margin-top: 50px;
    margin-bottom: 30px;
    overflow: hidden;
}
.my-journey {
    padding-bottom: 268px;
}
.my-journey h2,
.my-voice h2 {
    margin-bottom: 10px;
}
.my-journey h2 {
    padding-left: 10px;
}
.my-journey img {
    max-width: calc(100% + 15px);
    width: calc(100% + 15px);
    position: absolute;
    left: -9px;
}
.my-story ul{
    padding-left: 22px;
}
.my-story ul li{
    font-family: 'DM Sans';
}
.my-story ul li:not(:last-child){
    margin-bottom: 20px;
}
.my-voice{
    margin-top: 50px;
}
.my-voice .btn-group a{
    font-size: 16px;
    line-height: 24px;
}
.my-story p {
    font-family: "DM Sans";
    line-height: 31px;
}
.teaching-style {
    margin-top: 70px;
    margin-bottom: 70px;
}
.teaching-style .btn-group {
    display: none;
    margin-top: 0;
}
.teaching-style .btn-theme {
    font-size: 16px;
    min-width: 100%;
    min-height: 41px;
    padding: 0 40px !important;
}
.my-journey p a, .my-journey ul li a,
.my-voice p a, .my-voice ul li a{
    text-decoration: none;
    color: #e58788;
    transition: all 0.3s ease-in-out;
}
.my-journey p a:hover, .my-journey ul li a:hover, .my-journey ul li a:focus,
.my-voice p a:hover, .my-voice ul li a:hover, .my-voice ul li a:focus{
    color: #4b4b4b;
}
@media(min-width: 390px){
    .my-journey{
        padding-bottom: 278px;
    }
}
@media(min-width: 412px){
    .my-journey{
        padding-bottom: 298px;
    }
}
@media(min-width: 430px){
    .my-journey{
        padding-bottom: 320px;
    }
}
@media(min-width: 450px){
    .my-journey{
        padding-bottom: 342px;
    }
}
@media(min-width: 480px){
    .my-journey{
        padding-bottom: 362px;
    }
}
@media(min-width: 540px){
    .my-journey{
        padding-bottom: 422px;
    }
}
@media(min-width: 576px){
    .my-journey{
        padding-bottom: 442px;
    }
}
@media(min-width: 600px){
    .my-journey{
        padding-bottom: 474px;
    }
}
@media(min-width: 640px){
    .my-journey{
        padding-bottom: 522px;
    }
}
@media(min-width: 680px){
    .my-journey{
        padding-bottom: 556px;
    }
}
@media(min-width: 720px){
    .my-journey{
        padding-bottom: 596px;
    }
}
@media(min-width: 768px){
    .my-journey{
        padding-bottom: 496px;
    }
    .my-journey img{
        max-width: 438px;
        position: absolute;
        left: -9px;
        bottom: 948px;
    }
    .my-voice{
        margin-top: 0;
    }
    .my-voice .btn-group{
         display: none;
    }
    .teaching-style .btn-group{
        display: flex;
    }
}
@media(min-width:992px){
    .my-story{
        margin-top: 90px;
    }
    .my-journey{
        padding-bottom: 496px;
    }
    .my-journey h2{
        font-size: 116px;
        padding-left: 40px;
    }
    .my-journey h2,
    .my-voice h2 {
        margin-bottom: 50px;
    }
    .my-journey img{
        max-width: 568px;
        bottom: 446px;
    }
    .my-voice{
        margin-top: 0;
    }
    .teaching-style .btn-group {
        margin-top: 64px;
    }
    .teaching-style .btn-theme{
        font-size: 24px;
        min-width: 231px;
        min-height: 63px;
        padding: 0 84px !important;
    }
}
@media(min-width: 1024px){
    .my-journey{
        padding-bottom: 568px;
    }
    .my-journey img {
        max-width: 586px;
        bottom: 434px;
    }
}
@media(min-width: 1200px){
    .my-journey{
        padding-bottom: 568px;
    }
    .my-journey img {
        max-width: 688px;
        bottom: 170px;
    }
}
@media(min-width: 1300px){
    .my-journey {
        padding-right: 20px;
        padding-bottom: 716px;
    }
    .my-journey img {
        max-width: 738px;
        bottom: 134px;
    }
}
@media(min-width: 1400px) {
    .my-journey {
        padding-right: 90px;
        padding-bottom: 722px;
    }
    .my-journey img {
        max-width: 806px;
        bottom: 88px;
    }
    .my-voice {
        padding-left: 65px;
    }
}
@media(min-width: 1500px) {
    .my-journey {
        padding-right: 100px;
        padding-bottom: 750px;
    }

    .my-journey img {
        max-width: 854px;
        bottom: 50px;
    }
}
@media(min-width: 1600px) {
    .my-journey {
        padding-right: 156px;
        padding-bottom: 732px;
    }

    .my-journey img {
        max-width: 914px;
        bottom: 0;
    }
}
@media(min-width: 1700px){
    .my-journey {
        padding-bottom: 774px;
    }
    .my-journey img {
        max-width: 964px;
    }
}
@media(min-width: 1800px){
    .my-journey {
        padding-bottom: 818px;
    }
    .my-journey img {
        max-width: 1015px;
    }
}
@media(min-width: 1920px){
    .my-journey {
        padding-bottom: 850px;
    }
    .my-journey img {
        max-width: 1068px;
    }
}
@media(min-width: 2000px){
    .my-journey {
        padding-bottom: 906px;
    }
    .my-journey img {
        max-width: 1172px;
    }
}


/* Course page design start from here */
.course-hero {
    position: relative;
    padding-top: 30px;
    overflow: hidden;
}
.course-hero .container{
    padding-left: 0;
    padding-right: 0;
}
.course-hero::before{
    content: '';
    display: inline-block;
    width: 100%;
    height: calc(100% - 230px);
    background-image: url(../images/bg/home-hero-mobile-bg.png);
    background-position: right -5px top;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
.course-hero .container{
    position: relative;
    z-index: 1;
}

.course-hero h1 {
    position: relative;
    max-width: 32rem;
    color: #e58787;
    font-size: 42px;
    font-family: "Caladea";
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 54px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 3;
}

.course-hero .course-image {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.course-hero .course-hero-content {
    position: relative;
    max-width: 100%;
    text-align: center;
    padding-top: 0px;
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    z-index: 3;
}

.course-hero .course-hero-content p {
    font-family: 'zooja';
    font-size: 36px;
    font-weight: 300;
    line-height: .9em;
    color: #e58787;
    text-align: left;
    margin-bottom: 40px;
    padding-left: 30px;
    padding-right: 15px;
}
.course-hero .course-hero-content p span {
    display: block;
}
.course-hero .course-hero-content p span:nth-child(1) {
    padding-left: 36px;
}
.course-hero .course-hero-content p span:nth-child(2) {
    padding-left: 100px;
}
.course-hero .course-hero-content p span:nth-child(3) {
    padding-left: 0;
}
.course-hero .course-hero-content .btn-theme{
    width: 100%;
    border-radius: 0;
}


.core-elements {
    position: relative;
}
.core-elements::before{
    content: '';
    display: block;
    width: 100%;
    height: 338px;
    background-color: #fff8fb;
    position: absolute;
    top: 0;
}
.core-inner-section {
    position: relative;
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/elements-pattern-bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 74% 338px;
    padding-top: 358px;
    padding-bottom: 50px;
}

.core-heading-box {
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.core-heading-box h2 {
    color: #e58787;
    font-size: 38px;
    font-family: "Caladea";
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 48px;
    text-align: center;
    
}
.core-heading-box h2 a{
    color: #e58787;
    text-decoration: none;
}

.core-heading-box h3 {
    color: #4b4b4b;
    font-size: 32px;
    font-family: "Roboto";
    font-weight: 500;
    font-style: italic;
    line-height: 42px;
    text-align: center;
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 27px;
}

.core-heading-box hr {
    display: none;
    background-color: #4b4b4b;
    height: 3px;
    margin-bottom: 20px;
}

.core-heading-box p {
    font-family: "Caladea";
    text-align: left;
    margin-bottom: 0;
    padding-right: 100px;
}

.course-list {
    max-width: 70rem;
    background-color: #fff8fb;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    list-style: decimal;
    list-style-position: inside;
    padding: 20px 12px 20px 12px;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    border-radius: 26px;
}
.course-list li {
    position: relative;
    color: #000;
    font-size: 16px;
    line-height: 24px;
    font-family: "Roboto";
}

.other-courses {
    padding-top: 0;
    padding-bottom: 90px;
    background-image: url(../images/other-courses-image.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.other-course-list {
    max-width: 68rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 58px;
    margin-top: 20px;
    margin-bottom: 46px;
}

.other-course-list .other-course-items {
    width: 100%;
    text-align: center;
    background-color: #ffffff;
    border-radius: 26px;
    border: 3px solid #ffb9c6;
}
.other-course-list .other-course-items a{
    display: block;
    padding: 15px;
}
.other-course-list .other-course-items span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
}
.other-course-list .other-course-items img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.other-course-list .other-course-items h3 {
    color: #4b4b4b;
    font-size: 32px;
    font-family: "Caladea";
    line-height: 42px;
    padding-top: 0;
    margin-top: 15px;
}

.other-course-list .other-course-items p {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 0;
}

.other-courses .btn-theme {
    font-size: 16px;
    min-width: 338px;
    min-height: 45px;
    padding: 7px 48px;
}

@media(min-width:768px) {
    .course-hero{
        height: 590px;
    }
    .course-hero .container{
        padding-left: 15px;
        padding-right: 15px;
    }
    .course-hero::before {
        content: '';
        display: inline-block;
        width: 800px;
        height: 800px;
        background-image: url(../images/hero-pattern-image.png);
        background-position: left -345px top -38px;
        background-size: 100%;
        background-repeat: no-repeat;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
    }
    .course-hero::after {
        content: '';
        display: inline-block;
        width: 100%;
        height: 836px;
        background-image: url(../images/course-bg-pattern.png);
        background-position: right bottom;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 0;
    }
    .course-hero h1{
        padding-bottom: 30px;
    }
    .course-hero h1::after {
        content: '';
        display: inline-block;
        width: 418px;
        height: 1px;
        background-color: #4b4b4b;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }
    .course-hero .course-image{
        padding-left: 0;
        padding-right: 0;
        width: 664px;
        position: absolute;
        top: 129px;
        left: -279px;
        z-index: 1;
    }
    .course-hero .course-hero-content{
        display: block;
        max-width: 372px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 50px;
        padding-right: 0;
        margin-right: 0;
    }
    .course-hero .course-hero-content p{
        font-size: 42px;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 60px;
    }
    .course-hero .course-hero-content .btn-theme{
        width: unset;
        border-radius: 100px;
    }
    .other-course-list .other-course-items {
        width: calc((100% - 58px)/2);
    }
}
@media(min-width:992px){
    .course-hero {
        height: 654px;
    }
    .course-hero::before{
        width: 836px;
        height: 836px;
        background-position: left -280px top -100px;
    }
    .course-hero h1{
        font-size: 64px;
        line-height: 78px;
        padding-bottom: 36px;
        padding-left: 0;
        padding-right: 0;
    }
    .course-hero .course-image{
        width: 852px;
        top: 144px;
        left: -352px;
    }
    .course-hero .course-hero-content{
        max-width: 524px;
        padding-right: 50px;
    }
    .course-hero .course-hero-content p{
        font-size: 54px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .core-elements{
        background-color: #fff8fb;
    }
    .core-inner-section{
        max-width: 76rem;
        background-size: cover;
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .core-elements::before{
        content: none;
    }
    .core-heading-box h2{
        font-size: 54px;
        line-height: 58px;
    }
    .core-heading-box hr{
        display: block;
    }
    .core-heading-box h3{
        padding-left: 0;
        padding-right: 0;
    }
    .core-heading-box p{
        padding-right: 0;
    }
    .course-list{
        background-color: transparent;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 70px;
        row-gap: 30px;
        list-style: none;
        padding: 0;
    }
    .course-list li {
        position: relative;
        padding-left: 45px;
        color: #4b4b4b;
        font-size: 24px;
        font-family: "Roboto";
        line-height: 31px;
        padding-bottom: 20px;
    }

    .course-list li::before {
        content: "";
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        width: 32px;
        height: 32px;
        background-image: url(../images/radio-button-checked.svg);
        background-size: 100%;
        border-radius: 50%;
    }

    .course-list li::after {
        content: "";
        display: block;
        width: 150px;
        height: 2px;
        background-color: #4b4b4b;
        position: absolute;
        left: 40px;
        bottom: 0;
    }

    .course-list li:nth-last-child(-n+2) {
        padding-bottom: 0;
    }

    .course-list li:nth-last-child(-n+2)::after {
        display: none;
    }
    .other-courses{
        padding-top: 50px;
        padding-bottom: 90px;
    }
    .other-course-list{
        row-gap: 40px;
        margin-bottom: 50px;
    }
    .other-course-list .other-course-items a{
        padding: 20px;
    }
    .other-course-list .other-course-items span{
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 102px;
        height: 102px;
    }
    .other-course-list .other-course-items h3{
        font-size: 38px;
        line-height: 48px;
        margin-top: 20px;
    }
    .other-course-list .other-course-items p{
        line-height: 24px;
    }
}
@media(min-width: 1024px){
    .course-hero{
        height: 654px;
    }
}
@media(min-width: 1200px){
    .course-hero{
        height: 768px;
    }
    .course-hero .course-image{
        width: 1128px;
        top: 50px;
        left: -434px;
    }
}
@media(min-width: 1400px){
    .course-hero{
        height: 836px;
    }
    .course-hero::before{
        width: 1622px;
        height: 1328px;
        background-position: left 0 top 0;
        top: -80px;
        left: -729px;
    }
    .course-hero .course-image{
        width: 1368px;
        top: 0;
        left: -443px;
    }
}
@media (min-width: 576px) and (max-width: 767.99px) {
    .course-hero .container {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
}


/* Send a Video page design start from here */

.sendvideo-hero {
    position: relative;
    padding-top: 20px;
    padding-bottom: 30px;
    overflow: hidden;
}
.sendvideo-hero::before {
    content: '';
    display: inline-block;
    width: 688px;
    height: 593px;
    background-image: url(../images/send-a-video-before-mobile-image.png);
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    top: 300px;
    left: -381px;
    z-index: -1;
}
.sendvideo-hero.uploadvideo-hero::before {
    content: none;
}
.hero-header,
.sendvideo-hero .sendvideo-hero-content {
    position: relative;
    max-width: 52.8125rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    z-index: 1;
}

.hero-header h1,
.sendvideo-hero .sendvideo-hero-content h1 {
    color: #e58788;
    font-size: 64px;
    font-family: "Caladea";
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 78px;
}

.hero-header hr,
.sendvideo-hero .sendvideo-hero-content hr {
    max-width: 435px;
    background-color: #4b4b4b;
    border-radius: 2px;
    margin-left: auto;
    margin-right: auto;
}

.hero-header hr {
    max-width: 576px;
    height: 1px;
}
.book-hour-hero .hero-header hr{
    height: 3px;
}
.hero-header hr,
.sendvideo-hero .sendvideo-hero-content hr{
    display: none;
}
.sendvideo-hero .send-video-description {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    background: linear-gradient(to right, #ffffff 0%, #fff8fb 100%);
    color: #4b4b4b;
    font-size: 24px;
    font-family: "Roboto";
    line-height: 31px;
    text-align: center;
    padding: 15px 20px;
    border-radius: 26px;
}
.sendvideo-hero-image {
    display: none;
    width: 454px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: -74px;
    z-index: 2;
}
.sendvideo-hero-image img {
    max-width: 100%;
}
.sendvideo-options {
    background-color: #fff8fb;
    padding-top: 40px;
    padding-bottom: 37px;
    margin-bottom: 110px;
}
.sendvideo-options .option-card-grid {
    max-width: 70rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
    column-gap: 20px;
}
.sendvideo-options .option-card-grid .option-card-box {
    width: 100%;
    border: 3px solid #ffb9c6;
}
.option-card-box .option-label {
    display: block;
    font-size: 32px;
    font-family: "Roboto";
    font-weight: 500;
    line-height: 42px;
    margin-bottom: 10px;
}
.option-card-box p{
    font-size: 18px;
    line-height: 23px;
    margin-top: 27px;
}
.price-box{
    font-size: 16px;
    color: #e58788;
    font-family: "Roboto";
    font-weight: 500;
    line-height: 23px;
}
.price-box.mobile{
    display: block;
    text-align: center;
}
.price-box.mobile.other-mobile{
    display: flex;
    justify-content: space-between;
}
.price-box.desktop{
    display: none;
}
.price-box span {
    display: block;
}
.option-card-box .btn-group{
    gap: 12px;
    margin-top: 30px;
}
.option-card-box .btn-theme {
    min-width: 147px;
    min-height: 35px;
    width: 147px;
    font-size: 18px;
    padding: 0;
}
.option-card-box .book-title {
    margin-bottom: 0;
}
.option-card-box .topic-title{
    margin-top: 0;
}
.sendvideo-hero.uploadvideo-hero{
    padding-bottom: 190px;
}
.upload-video-wrapper{
    margin-top: 45px;
}
.upload-video-wrapper .gform_wrapper .gfield_label{
    display: none;
}
.upload-video-wrapper .gform_wrapper .ginput_container_fileupload {
    position:relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.upload-video-wrapper .gform_wrapper .ginput_container_fileupload #input_1_3{
    width:285px;
    height:72px;
    opacity:0;
    padding-right: 0;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
}
.upload-video-wrapper .gform_wrapper .ginput_container_fileupload::before{
    content: "Upload";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 285px;
    height: 73px;
    background: #F5A7B8;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    z-index: 1;
}
/* Entire file input */
.upload-video-wrapper .gform_wrapper input[type="file"]{
    cursor: pointer;
}

/* Chrome / Edge / Safari */
.upload-video-wrapper .gform_wrapper input[type="file"]::file-selector-button{
    cursor: pointer;
}

/* Firefox */
.upload-video-wrapper .gform_wrapper input[type="file"]::-webkit-file-upload-button{
    cursor: pointer;
}
.upload-video-wrapper .gform_wrapper .gform_fileupload_rules{
    display: none;
}
.upload-video-wrapper .gform-footer{
    justify-content: center;
    margin-top: 65px !important;
}
.upload-video-wrapper .selected-file{
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-right: 30px;
}
.upload-video-wrapper .selected-file .file-name {
    font-size: 16px;
    font-family: "DM Sans";
    line-height: 21px;
}
.upload-video-wrapper .gform-footer .gform_button {
    background-color: #ffb9c6 !important;
    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 21px !important;
    border-radius: 100px !important;
    width: 185px;
    height: 45px;
    padding: 12px 33px;
    border: none !important;
    outline: none !important;
}
@media(min-width:992px){
    .sendvideo-hero{
        padding-bottom: 90px;
    }
    .sendvideo-hero::before{
        width: 1072px;
        height: 923px;
        background-image: url(../images/sendvideo-pattern-image.png);
        top: -152px;
        left: -294px;
        z-index: -1;
    }
    .sendvideo-hero .sendvideo-hero-content{
        width: 42rem;
    }
    .hero-header hr,
    .sendvideo-hero .sendvideo-hero-content hr{
        display: block;
    }
    .sendvideo-hero .send-video-description{
        max-width: 36rem;
        font-size: 24px;
        line-height: 31px;
        padding: 34px 57px;
    }
    .sendvideo-hero-image{
        display: block;
        width: 320px;
    }
    .sendvideo-options{
        padding-top: 33px;
        padding-bottom: 37px;
    }
    .sendvideo-options .option-card-grid{
        row-gap: 82px;
        column-gap: 140px;
    }
    .sendvideo-options .option-card-grid .option-card-box {
        width: calc((100% - 140px)/2);
        border: 3px solid #fff;
    }
    .option-card-box .option-label{
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 20px;
    }
    .option-card-box p{
        font-size: 24px;
        line-height: 31px;
        margin-top: 0;
    }
    .price-box{
        font-size: 18px;
        color: #4b4b4b;
    }
    .price-box.mobile{
        display: none;
    }
    .price-box.desktop{
        display: block;
    }
    .option-card-box .btn-group{
        margin-top: 60px;
    }
    .option-card-box .btn-theme {
        min-width: 185px;
        min-height: 45px;
        width: 185px;
        padding: 7px 20px;
    }
    .upload-video-wrapper{
        margin-top: 95px;
    }
}
@media(min-width: 1024px){
    .sendvideo-hero {
        padding-bottom: 90px;
    }
    .sendvideo-hero-image{
        width: 325px;
    }
    .sendvideo-hero .sendvideo-hero-content{
            max-width: 42.8125rem;
    }
}
@media(min-width: 1200px){
    .sendvideo-hero {
        padding-bottom: 94px;
    }
    .sendvideo-hero-image{
        width: 324px;
    }
    .sendvideo-hero .sendvideo-hero-content{
        max-width: 52.8125rem;
    }
    .sendvideo-hero .send-video-description{
        max-width: 52rem;
    }
    .sendvideo-hero .send-video-description{
        font-size: 32px;
        line-height: 42px;
    }
}
@media(min-width:1400px){
    .sendvideo-hero {
        padding-bottom: 205px;
    }
    .hero-header, .sendvideo-hero .sendvideo-hero-content{
        max-width: 52.8125rem;
    }
    .sendvideo-hero-image{
        width: 454px;
    }
}


/* Book an hour page design start from here */

.for-desktop{
    display: none;
}
.for-mobile{
    display: block;
}
.book-hour-hero {
    padding-top: 10px;
    padding-bottom: 0px;
}
.online-song {
    margin-bottom: 150px;
}
.online-song h3.topic {
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin-bottom: 40px;
}
.online-song .online-left-content {
    max-width: 27rem;
}
.online-song .online-left-content p {
    font-size: 16px;
    line-height: 19px;
}
.online-song .online-left-content p.live-status {
    font-size: 12px;
    margin-bottom: 0;
}
.online-song .online-left-content .tick-list li {
    font-size: 16px;
    line-height: 19px;
}
.online-song .online-left-content .tick-list li:not(:last-child) {
    margin-bottom: 14px;
}
.online-song .online-left-content .tick-list li::before {
    width: 16px;
    height: 16px;
    top: 0;
}
.online-song .online-right-content .card-theme p {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
}
.online-song .online-right-content .card-theme p:last-child {
    margin-bottom: 0;
}
.online-song .book-appointment-area {
    max-width: 384px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 68px;
}
.book-appointment-area .booking-top {
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
    margin-bottom: 10px;
    padding-left: 30px;
    padding-right: 20px;
}
.book-appointment-area .booking-top .book-price-box .label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}
.book-appointment-area .booking-top .book-price-box .price {
    display: inline-flex;
    align-items: end;
    column-gap: 10px;
}
.book-appointment-area .booking-top .book-price-box .price .amount {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}
.book-appointment-area .booking-top .book-price-box .price .duration {
    font-size: 14px;
    font-family: "Roboto";
    line-height: 16px;
}
.book-appointment-area .session-box .label,
.book-appointment-area .session-box .session-type {
    line-height: 16px;
    text-align: right;
}
.book-appointment-area .session-box .label {
    display: block;
    font-size: 12px;
}
.book-appointment-area .session-box .session-type {
    font-size: 14px;
}
.online-song .book-appointment-area .btn-theme {
    width: 100%;
    min-height: 49px;
    padding: 9px 48px;
}
.online-song .for-mobile h3.topic{
    margin-bottom: 15px;
}
.live-session-box{
    background-color: #fff8fb;
    padding: 16px 36px;
}
.online-song .for-mobile .live-session-box{
    margin-bottom: 20px;
}
.online-song .for-mobile .live-session-box p{
    font-size: 18px;
    line-height: 23px;
}
.online-song .for-mobile .book-appointment-area{
    margin-top: 18px;
}
.for-mobile .book-appointment-area .booking-top{
    flex-wrap: wrap;
    row-gap: 20px;
    padding-left: 0;
    padding-right: 0;
}
.for-mobile .book-appointment-area .booking-top .book-price-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.for-mobile .book-appointment-area .booking-top .book-price-box .label{
    font-size: 18px;
    font-family: "Roboto";
    font-weight: 500;
    line-height: 23px;
}
.for-mobile .book-appointment-area .booking-top .book-price-box .price{
    flex-direction: column;
}
.for-mobile .book-appointment-area .booking-top .book-price-box .price .amount, 
.for-mobile .book-appointment-area .booking-top .book-price-box .price .duration{
    color: #e58787;
    font-size: 18px;
    font-family: "Roboto";
    font-weight: 700;
    line-height: 23px;
}
.for-mobile .book-appointment-area .session-box .session-type, .for-mobile .book-appointment-area .session-box .label{
    color: #4b4b4b;
    font-size: 18px;
    font-family: "Roboto";
    line-height: 23px;
    text-align: left;
}
.for-mobile .btn-group .btn-theme{
    min-width: 147px;
    min-height: 35px;
    font-size: 18px;
    line-height: 23px;
    padding: 6px 13px;
}
.for-mobile .card-theme{
    background-color: #ffffff;
    border-radius: 26px;
    border: 3px solid #ffb9c6;
    padding: 20px;
    margin-top: 48px;
    margin-bottom: 58px;
}
.for-mobile .card-theme h3{
    font-size: 32px;
    font-family: "Roboto";
    font-weight: 500;
    line-height: 42px;
    text-align: center;
}
.for-mobile .card-theme p{
    font-size: 18px !important;
    font-family: "Roboto";
    line-height: 23px !important;
    margin-bottom: 0;
}
.for-mobile .mobile-benefits-box p, .for-mobile .mobile-benefits-box ul li{
    font-size: 18px;
    line-height: 23px;
}
.for-mobile .mobile-benefits-box ul li:not(:last-child){
    margin-bottom: 7px;
}
.amelia-v2-booking #amelia-container .am-fs__main{
    width: 100% !important;
}
@media(min-width:992px){
    .for-desktop{
        display: block;
    }
    .for-mobile{
        display: none;
    }
    .book-hour-hero {
        padding-bottom: 40px;
    }
    .online-song{
        margin-bottom: 274px;
    }
}





/* Welcome page design start from here */
.welcome-hero {
    padding-top: 40px;
    padding-bottom: 40px;
}
.welcome-hero h1 {
    font-size: 84px;
}
.welcome-hero p {
    color: #000000;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 0;
}
.course-roadmap {
    margin-bottom: 30px;
}
.roadmap-list .roadmap-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.roadmap-list .roadmap-item:last-child {
    margin-bottom: 0;
}
.roadmap-list .roadmap-item .roadmap-icon {
    width: 172px;
    height: 165px;
    padding: 15px;
    background-color: #fff8fb;
    border-radius: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.roadmap-list .roadmap-item .roadmap-icon img {
    max-width: 100%;
    vertical-align: middle;
}
.roadmap-list .roadmap-item .roadmap-content {
    width: 100%;
    text-align: center;
}
.roadmap-list .roadmap-item .roadmap-content h3 {
    color: #e58787;
    font-size: 32px;
    font-family: "Roboto";
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 10px;
}
.roadmap-list .roadmap-item .roadmap-content p {
    color: #000000;
    font-size: 24px;
    font-family: "Roboto";
    line-height: 31px;
    margin-bottom: 0;
}
.roadmap-list .roadmap-item:nth-child(1) .roadmap-icon {
    background-color: #fff8fb;
}
.roadmap-list .roadmap-item:nth-child(2) .roadmap-icon {
    background-color: #f5e7fd;
}
.roadmap-list .roadmap-item:nth-child(3) .roadmap-icon {
    background-color: #fff6d9;
}
.roadmap-list .roadmap-item:nth-child(4) .roadmap-icon {
    background-color: #cefcbf;
}
.roadmap-list .roadmap-item:nth-child(5) .roadmap-icon {
    background-color: #E8EDFF;
}
.roadmap-list .roadmap-item:nth-child(1) .roadmap-content h3 {
    color: #e58787;
}
.roadmap-list .roadmap-item:nth-child(2) .roadmap-content h3 {
    color: #aa8ced;
}
.roadmap-list .roadmap-item:nth-child(3) .roadmap-content h3 {
    color: #ffb958;
}
.roadmap-list .roadmap-item:nth-child(4) .roadmap-content h3 {
    color: #9cd589;
}
.roadmap-list .roadmap-item:nth-child(5) .roadmap-content h3 {
    color: #85a0f7;
}
.guide-section {
    background-color: #fff8fb;
    padding-top: 30px;
    padding-bottom: 120px;
    margin-bottom: 46px;
}
.guide-section .guide-title {
    color: #000000;
    font-size: 32px;
    line-height: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}
.guide-list {
    padding: 0;
    counter-reset: guide-counter;
}
.guide-item {
    position: relative;
    max-width: 558px;
    width: 100%;
    padding-top: 20px;
    padding-left: 60px;
    margin-bottom: 30px;
    counter-increment: guide-counter;
}
.guide-item:nth-child(even) {
    margin-left: auto;
}
.guide-item p {
    color: #000;
    line-height: 31px;
    margin-bottom: 0;
}
.guide-item::before {
    content: counter(guide-counter);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
    color: #d97d7d;
}
@media(min-width:992px){
    .welcome-hero {
        padding-top: 70px;
        padding-bottom: 63px;
    }
    .welcome-hero h1{
        font-size: 190px;
    }
    .course-roadmap {
        margin-bottom: 45px;
    }
    .roadmap-list{
        max-width: 47rem;
        margin-left: 130px;
    }
    .roadmap-list .roadmap-item{
        justify-content: start;
        gap: 20px;
    }
    .roadmap-list .roadmap-item .roadmap-content{
        width: calc(100% - 207px);
        text-align: left;
    }
    .guide-section{
        padding-top: 93px;
        padding-bottom: 220px;
    }
    .guide-list{
        padding: 0 50px;
    }
    .guide-item{
        margin-bottom: 0;
    }
}



.program-hero {
    position: relative;
    height: 882px;
    padding-top: 50px;
    padding-bottom: 85px;
    overflow: hidden;
}

.program-hero::before,
.program-hero::after {
    content: '';
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
}

.program-hero::before {
    width: 1364px;
    height: 979px;
    background-image: url(../images/bg/program-pattern-image-1.svg);
    top: 0;
    left: -229px;
    z-index: 0;
}

.program-hero::after {
    width: 562px;
    height: 470px;
    background-image: url(../images/bg/program-pattern-image.svg);
    top: -92px;
    right: -200px;
    z-index: 0;
}

.program-hero .program-image {
    max-width: 683px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.program-hero .program-hero-content {
    position: relative;
    max-width: 50rem;
    margin-left: auto;
    z-index: 2;
}

.program-hero .program-hero-content h1 {
    font-family: 'zooja';
    font-weight: 300;
    font-size: 274px;
    line-height: .8em;
    color: #ffb958;
    margin-bottom: 120px;
    transform: rotate(-12deg);
}

.program-hero .program-hero-content h1 span {
    padding-left: 50px;
}

.program-hero .program-hero-content p {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Roboto';
    text-align: right;
    padding-left: 175px;
    padding-right: 50px;
    margin-bottom: 0;
}

.only-bg {
    width: 100%;
    height: 167px;
    background-color: #ffeddc;
}

.program-calendar {
    padding-top: 30px;
    padding-bottom: 140px;
}

.program-calendar h2 {
    color: #ffb958;
    font-size: 64px;
    font-family: "Caladea";
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 78px;
    margin-bottom: 20px;
}

.program-calendar p {
    color: #ffb958;
    font-size: 32px;
    font-family: "Caladea";
    line-height: 42px;
}

.program-calendar .program-days {
    margin-top: 20px;
}

.program-calendar .program-days .program-days-list:not(:last-child) {
    margin-bottom: 65px;
}

.program-calendar .program-days .program-days-list p {
    color: #4b4b4b;
    font-size: 24px;
    font-family: "Roboto";
    line-height: 31px;
    padding-left: 0;
    margin-bottom: 10px;
}
.program-calendar .program-days .program-days-list .program-days-body{
    display: none;
}
.program-calendar .program-days .program-days-list ul {
    list-style: none;
    background-color: #ffeddc;
    padding: 24px;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 25px;
}
.program-calendar .program-days .program-days-list ul li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 25px)/2);
    height: 115px;
    box-sizing: border-box;
}

.program-calendar .program-days .program-days-list ul li a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #ffb958;
    color: #000000;
    font-size: 16px;
    font-family: "DM Sans";
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    padding: 15px;
    transition: all 0.3s ease-in-out;
}

.program-calendar .program-days .program-days-list ul li a span {
    color: #ffb958;
    font-size: 32px;
    font-family: "Roboto";
    font-weight: 500;
    line-height: 42px;
    position: absolute;
    top: 3px;
    left: 8px;
    transition: all 0.3s ease-in-out;
}

.program-calendar .program-days .program-days-list ul li a::after {
    content: '';
    display: inline-block;
    width: 46px;
    height: 58px;
    background-image: url(../images/icon/check-white-icon.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 0;
    right: 10px;
    transition: all 0.3s ease-in-out;
}

.program-calendar .program-days .program-days-list ul li a:hover {
    background-color: #ffb958;
}

.program-calendar .program-days .program-days-list ul li a:hover,
.program-calendar .program-days .program-days-list ul li a:hover span {
    color: #fff;
}
.program-days-toggle{
    position: relative;
    display: block;
    width: 100%;
    height: 34px;
    background-color: #ffeddc;
    padding-left: 25px;
}
.program-days-toggle span{
    display: inline-block;
}
@media(min-width:768px){
    .program-days-toggle{
        display: none;
    }
    .program-calendar .program-days .program-days-list .program-days-body{
        display: block;
    }
    .program-calendar .program-days .program-days-list ul li{
        width: calc((100% - 50px) / 3);
        height: 155px;
    }
}
@media(min-width:992px){
    .program-calendar h2{
        margin-bottom: 70px;
    }
    .program-calendar {
        padding-top: 180px;
        padding-bottom: 140px;
    }
    .program-calendar .program-days{
        padding-left: 40px;
        padding-right: 40px;
        margin-top: 70px;
    }
    .program-calendar .program-days .program-days-list p{
        padding-left: 24px;
        margin-bottom: 20px;
    }
    .program-calendar .program-days .program-days-list ul{
        gap: 20px 25px;
    }
    .program-calendar .program-days .program-days-list ul li{
        width: calc((100% - 100px) / 5);
    }
    .program-calendar .program-days .program-days-list ul li a{
        padding: 35px;
    }
    .program-calendar .program-days .program-days-list ul li a span{
        top: 15px;
        left: 20px;
    }
}
@media(min-width:1200px){
    .program-calendar .program-days .program-days-list ul{
        gap: 20px 60px;
    }
    .program-calendar .program-days .program-days-list ul li{
        width: calc((100% - 240px) / 5);
    }
}
@media(min-width:1400px){
    .program-calendar .program-days .program-days-list ul{
        gap: 20px 88px;
    }
    .program-calendar .program-days .program-days-list ul li{
        width: calc((100% - 352px) / 5);
    }
}


/* Main courses type design start from here */

.type-courses{
    all: unset;
}
.type-courses .course-hero-inner{
    position: relative;
    max-width: 100%;
    padding: 0;
    padding-top: 40px;
    padding-bottom: 52px;
    overflow: hidden;
}
.type-courses .course-hero-inner::before,
.type-courses .course-hero-inner::after {
    content: '';
    display: inline-block;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
}
.type-courses .course-die-12-saulen::before {
    width: 653px;
    height: 721px;
    background-image: url(../images/bg/saulen-mobile-before-image.png);
    bottom: -154px;
    left: -238px;
    z-index: 0;
}

.type-courses .course-die-12-saulen::after, .course-30-tage-programm::after, .course-gehorschule::after {
    width: 562px;
    height: 470px;
    background-image: url(../images/bg/saulen-mobile-after-image.png);
    top: -92px;
    right: -200px;
    z-index: -1;
}
.type-courses .tutor-container{
    all: unset;
}
.course-hero-inner .container, .topic-pagination .container, .tutor-course-details-page .container, .pagination-box .container {
    padding-left: 15px;
    padding-right: 15px;
}

.course-hero-inner h2{
    position: relative;
    font-family: 'zooja';
    font-size: 78px;
    font-weight: 300;
    line-height: 1em;
    padding-top: 0;
    margin-bottom: 60px;
    text-align: left;
    transform: rotate(-4deg);
    z-index: 5;
}
.course-die-12-saulen h2{
    color: #e58787;
    margin-bottom: 0;
}
.course-hero-inner .course-hero-image{
    display: none;
}
.course-hero-inner .course-hero-image img {
    max-width: 100%;
}
.course-hero-inner .course-home-info {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    z-index: 4;
}
.course-gehorschule .course-home-info{
    display: block;
    max-width: 30rem;
    text-align: center;
}
.course-hero-inner .course-home-info .course-description p{
    color: #000;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Roboto';
}
.course-hero-inner .course-home-info .btn-theme{
    display: flex;
    width: 196px;
    min-width: 196px;
    min-height: 45px;
    font-size: 16px;
    padding: 5px 34px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.nb-topic-player .nb-current-topic{
    margin-top: 40px;
}
.nb-topic-player .nb-current-topic h2{
    color: #e58787;
    font-size: 64px;
    font-family: "Caladea";
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 83px;
    text-align: center;
    word-spacing: normal;
    transform: unset;
    padding-right: 0;
    max-width: 35rem;
    margin-left: auto;
    margin-right: auto;
}
.course-hero-inner .nb-current-topic{
    margin-top: 20px;
}
.course-topic-header-box{
    position: relative;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
    margin-bottom: 20px;
}
.course-hero-inner .nb-current-topic h2{
    color: #e58787;
    font-size: 64px;
    font-family: "Caladea";
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 83px;
    text-align: center;
    word-spacing: normal;
    padding: 0;
    margin-bottom: 20px;
    transform: none;
}

.lesson-block-1{
    margin-top: 40px;
}
.lesson-block.lesson-block-1 .lesson-title{
    display: none;
}
.lesson-block .lesson-title{
    color: #e58787 !important;
    font-size: 32px !important;
    font-family: "Roboto" !important;
    font-weight: 500 !important;
    line-height: 42px !important;
    word-spacing: normal !important;
    transform: none !important;
    padding: 0 !important;
    text-align: center !important;
    margin-bottom: 20px;
}
.lesson-downloads a{
    width: 222px;
}
.course-30-tage-programm .nb-course-header .course-title{
    font-family: 'zooja';
    font-size: 116px;
    font-weight: 300;
    line-height: 1.2em;
    color: #FCB858;
    padding-left: 0;
    margin-top: 30px;
    transform: rotate(-8deg);
}
.course-30-tage-programm .course-home-info{
    grid-template-columns: 1fr;
}
.course-30-tage-programm .course-home-info .course-description{
    text-align: center;
}
.course-gehorschule .nb-course-header{
    display: none;
}
.course-gehorschule h2{
    margin-bottom: 0;
}
.course-gehorschule .nb-course-header .course-title, 
.topic-gehorschule .nb-course-header .course-title, 
.course-gehorschule h2, 
.topic-gehorschule .nb-topic-mobile .mobile-current, 
.course-gehorschule .nb-topic-mobile .mobile-current,
.topic-gehorschule .nb-current-topic h2,
.topic-gehorschule .nb-topic-mobile .mobile-list a:hover, 
.topic-gehorschule .nb-topic-mobile .mobile-list a.active,
.topic-gehorschule .nb-topic-tabs a.active,
.topic-gehorschule .nb-topic-tabs a:hover, 
.course-gehorschule .nb-topic-tabs a:hover,
.topic-gehorschule .chapter-time,
.topic-gehorschule .nb-topic-subtitle,
.topic-gehorschule .my-video .video-controls span.material-icons,
.topic-gehorschule .my-video .video-controls span.material-symbols-outlined
{
    color: #aa8ced;
}
.course-gehorschule .nb-topic-tabs{
    position: relative;
    background-color: transparent;
    padding: 0;
    z-index: 5;
}
.course-gehorschule .nb-topic-tabs a span, .topic-gehorschule .nb-topic-tabs a span{
    display: none;
}
.topic-gehorschule .nb-topic-description{
    background-color: #f5e7fd;
}
.topic-gehorschule .my-video,
.topic-gehorschule .lesson-downloads a{
    background-color: #f5e7fd;
}
.gehorschule-progress{
    background-color: #fff8fb;
    padding: 60px 0;
    margin-bottom: 80px;
}
.gehorschule-progress .gehorschule-inner-progress{
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 90px;
} 
.gehorschule-progress .gehorschule-inner-progress .course-progress-card{
    max-width: 25rem;
    width: 100%;
    margin-bottom: 0;
}
.gehorschule-progress .gehorschule-inner-progress .course-progress-card{
    border: 1px solid #aa8ced;
}
.gehorschule-progress .gehorschule-inner-progress .progress-top .small-title{
    color: #aa8ced;
}
.gehorschule-progress .gehorschule-inner-progress .progress-bar{
    border: 1px solid #aa8ced;
}
.gehorschule-progress .gehorschule-inner-progress .progress-bar span{
    background: #aa8ced;
}
.gehorschule-progress .gehorschule-inner-progress .next-session-btn,
.gehorschule-progress .gehorschule-inner-progress .next-session-btn:hover,
.gehorschule-progress .gehorschule-inner-progress .next-session-btn:focus{
    background-color: #aa8ced;
}
.gehorschule-progress .btn-theme{
    display: flex;
    width: 196px;
    min-width: 196px;
    min-height: 45px;
    font-size: 16px;
    padding: 5px 34px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.gehorschule-progress .btn-theme,
.gehorschule-progress .btn-theme:hover,
.gehorschule-progress .btn-theme:focus{
    background-color: #aa8ced;
}

.course-einsingen .nb-topic-tabs{
    position: relative;
    background-color: transparent;
    padding: 0;
    z-index: 10;
}
.course-einsingen .nb-topic-tabs a span, .topic-einsingen .nb-topic-tabs a span{
    display: none;
}
.course-einsingen h2{
    margin-bottom: 20px;
}
.course-einsingen .nb-course-header .course-title, 
.topic-einsingen .nb-course-header .course-title,
.course-einsingen h2,
.topic-einsingen .nb-topic-mobile .mobile-current, 
.course-einsingen .nb-topic-mobile .mobile-current,
.topic-einsingen .nb-current-topic h2,
.topic-einsingen .nb-topic-mobile .mobile-list a:hover, 
.topic-einsingen .nb-topic-mobile .mobile-list a.active,
.course-einsingen .nb-topic-tabs a:hover,
.topic-einsingen .nb-topic-tabs a:hover, 
.topic-einsingen .nb-topic-tabs a.active,
.topic-einsingen .nb-course-header .course-title,
.topic-einsingen .nb-current-topic h2,
.topic-einsingen .chapter-time,
.topic-einsingen .my-video .video-controls span.material-icons,
.topic-einsingen .my-video .video-controls span.material-symbols-outlined{
    color: #9cd589;
}
.course-einsingen .course-progress-card{
    border: 1px solid #9cd589;
}
.course-einsingen .progress-top .small-title{
    color: #9cd589;
}
.course-einsingen .progress-bar{
    border: 1px solid #9cd589;
}
.course-einsingen .progress-bar span{
    background: #9cd589;
}
.course-einsingen .next-session-btn, .course-einsingen .course-home-info .btn-theme{
    background-color: #9cd589;
}
.course-einsingen .next-session-btn:hover, .course-einsingen .next-session-btn:focus,
.course-einsingen .course-home-info .btn-theme:hover, .course-einsingen .course-home-info .btn-theme:focus{
    background-color: #9cd589;
}

.course-body-flows .nb-topic-tabs a span, .topic-body-flows .nb-topic-tabs a span{
    display: none;
}
.course-body-flows h2{
    margin-bottom: 20px;
}
.course-body-flows .nb-course-header .course-title, 
.course-body-flows h2,
.course-body-flows .nb-topic-tabs a:hover,
.topic-body-flows .nb-topic-tabs a:hover, 
.topic-body-flows .nb-topic-tabs a.active,
.topic-body-flows .nb-course-header .course-title,
.topic-body-flows .nb-topic-mobile .mobile-current, 
.course-body-flows .nb-topic-mobile .mobile-current,
.topic-body-flows .nb-current-topic h2,
.topic-body-flows .nb-topic-mobile .mobile-current,
.topic-body-flows .nb-topic-mobile .mobile-list a:hover, 
.topic-body-flows .nb-topic-mobile .mobile-list a.active,
.topic-body-flows .chapter-time,
.topic-body-flows .my-video .video-controls span.material-icons,
.topic-body-flows .my-video .video-controls span.material-symbols-outlined{
    color: #85a0f7;
}
.course-body-flows .course-progress-card{
    border: 1px solid #85a0f7;
}
.course-body-flows .progress-top .small-title{
    color: #85a0f7;
}
.course-body-flows .progress-bar{
    border: 1px solid #85a0f7;
}
.course-body-flows .progress-bar span{
    background: #85a0f7;
}
.course-body-flows .next-session-btn,
.course-body-flows .course-home-info .btn-theme{
    background-color: #85a0f7;
}
.course-body-flows .next-session-btn:hover, .course-body-flows .next-session-btn:focus,
.course-body-flows .course-home-info .btn-theme:hover, .course-body-flows .course-home-info .btn-theme:focus{
    background-color: #85a0f7;
}
.topic-body-flows .nb-topic-description,
.topic-body-flows .my-video,
.topic-body-flows .lesson-downloads a{
    background-color: #e8edff;
}



.desktop-topic-view{
    display: none !important;
}
.nb-topic-mobile{
    display: block;
}
.nb-topic-mobile {
    background-color: #fff8fb;
    padding: 20px 12px;
    border-radius: 26px;
}
.nb-topic-mobile .mobile-current{
    position: relative;
    color: #e58787;
    font-size: 32px;
    font-family: "Roboto";
    font-weight: 500;
    line-height: 42px;
}
.nb-topic-mobile .mobile-current::after{
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(../images/icon/dropdown-icon.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.course-gehorschule .nb-topic-mobile{
    background-color: transparent;
}
.course-gehorschule .nb-topic-mobile .mobile-current::after, .topic-404 .nb-topic-mobile .mobile-current::after{
    width: 83px;
    height: 71px;
    background-image: url(../images/icon/dropdown-purple-icon.svg);
}
.nb-topic-mobile .mobile-list{
    display: none;
}
.nb-topic-mobile .mobile-list a{
    display: block;
    color: #000000;
    font-size: 16px;
    font-family: "Roboto";
    line-height: 24px;
    margin-top: 15px;
}
.nb-topic-mobile .mobile-list a:hover, .nb-topic-mobile .mobile-list a.active{
    color: #e58787;
}

@media(min-width:992px){
    .course-hero-inner .course-home-info{
        margin-right: 0;
    }
    .type-courses .course-die-12-saulen::before {
        width: 1364px;
        height: 1308px;
        background-image: url(../images/bg/piller-bg-image.svg);
        top: 0;
        left: -526px;
        z-index: -1;
    }
    .course-30-tage-programm::before{
        width: 1364px;
        height: 979px;
        background-image: url(../images/bg/program-before-image.png);
        top: 59px;
        left: -224px;
        z-index: -1;
    }
    .type-courses .course-die-12-saulen::after, .course-30-tage-programm::after, .course-gehorschule::after {
        width: 562px;
        height: 470px;
        background-image: url(../images/bg/program-pattern-image.svg);
        top: -92px;
        right: -200px;
        z-index: -1;
    }
    .course-gehorschule{
        height: 972px;
    }
    .course-gehorschule::before {
        width: 1364px;
        height: 972px;
        background-image: url(../images/bg/gehorschule-before-image.png);
        top: 0;
        left: -353px;
        z-index: -1;
    }
    .course-gehorschule .nb-course-header{
        display: flex;
    }
    .topic-body-flows::before, .topic-gehorschule::before {
        width: 1793px;
        height: 716px;
        background-image: url(../images/bg/bodyflows-before-image.png);
        top: -143px;
        left: -451px;
        z-index: -1;
    }
    .gehorschule-progress{
        margin-bottom: 350px;
    }
    .course-hero-inner h2{
        font-size: 154px;
        word-spacing: 28px;
        line-height: .9em;
        text-align: left;
        transform: rotate(-4deg);
    }
    .course-die-12-saulen h2{
        font-size: 173px;
        word-spacing: 28px;
        padding-left: 186px;
        margin-bottom: 20px;
     }
    .course-hero-inner .course-hero-image {
        display: block;
        width: 493px;
        position: absolute;
        bottom: -80px;
        left: -58px;
        z-index: 5;
    }
    .course-die-12-saulen .course-hero-image{
        width: 360px;
        bottom: -60px;
    }
    .course-gehorschule .course-hero-image{
        width: 683px;
        top: 230px;
        left: -91px;
        z-index: 3;
    }
    .course-hero-inner.course-30-tage-programm .course-hero-image{
        width: 482px;
        height: auto;
        top: 0;
        left: 0;
        bottom: unset;
    }
    .course-hero-inner .course-home-info{
        max-width: 30rem;
    }
    .course-hero-inner .course-home-info{
        max-width: 44rem;
    }
    
    .course-hero-inner .course-home-info .course-description{
        padding-left: 36px;
    }
    .nb-topic-player .nb-current-topic{
        margin-top: 100px;
    }
    .course-hero-inner .nb-current-topic{
        margin-top: 100px;
    }
    .course-hero-inner .lesson-block-1 {
        margin-top: 104px;
    }
    .course-gehorschule {
        height: 708px;
    }
    .course-gehorschule .nb-topic-tabs{
        gap: 2px 35px;
    }
    .course-gehorschule .course-hero-image{
        width: 620px;
        top: 30px;
    }
   .course-gehorschule h2{
        font-size: 170px;
        margin-top: 106px;
        padding-left: 284px;
        transform: rotate(-10deg);
    }
    .course-gehorschule .course-home-info {
        max-width: 30rem;
    }
    .course-30-tage-programm .nb-course-header .course-title{
        font-size: 148px;
        padding-left: 260px;
        line-height: 1em;
    }
    .course-30-tage-programm .course-home-info .course-description{
        text-align: right;
    }

    .course-einsingen::before {
        width: 949px;
        height: 1048px;
        background-image: url(../images/bg/einsingen-before-image.png);
        top: 0;
        left: -147px;
        z-index: -1;
    }
    .course-einsingen .nb-topic-tabs{
        gap: 2px 25px;
    }
    .course-einsingen{
        height: 814px;
    }
    .course-einsingen .course-hero-image{
        width: 612px;
        top: 85px;
        left: -180px;
        z-index: 3;
    }
    .course-einsingen h2{
        font-size: 234px;
        padding-left: 212px;
        margin-top: 76px;
        transform: rotate(-12deg);
    }
    .course-einsingen .course-home-info {
        max-width: 35rem;
    }
    .course-body-flows::before {
        width: 949px;
        height: 1188px;
        background-image: url(../images/bg/einsingen-before-image.png);
        top: 0;
        left: -147px;
        z-index: -1;
    }
    .course-body-flows .nb-topic-tabs{
        gap: 2px 50px;
    }
    .course-body-flows{
        height: 896px;
    }
    .course-body-flows .course-hero-image{
        width: 518px;
        top: 194px;
        left: -96px;
    }
    .course-body-flows h2{
        font-size: 174px;
        padding-left: 344px;
        margin-top: 94px;
        margin-bottom: 48px;
    }
    .course-body-flows .course-home-info{
        max-width: 36rem;
    }
    .desktop-topic-view{
        display: flex !important;
    }
    .nb-topic-mobile{
        display: none;
    }
    .course-topic-header-box{
        padding-bottom: 10px;
        margin-bottom: 40px;
    }
    .course-topic-header-box::after{
        content: '';
        display: inline-block;
        width: 435px;
        height: 1px;
        background-color: #4b4b4b;
        border-radius: 2px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media(min-width: 1024px){
    .course-hero-inner h2{
        font-size: 154px;
        word-spacing: 28px;
    }
     .course-die-12-saulen h2{
        font-size: 173px;
        word-spacing: 28px;
        padding-left: 186px;
        margin-bottom: 20px;
     }
    .course-die-12-saulen .course-hero-image{
        width: 360px;
        bottom: -60px;
    }
    .course-gehorschule {
        height: 708px;
    }
    .course-gehorschule .nb-topic-tabs{
        gap: 2px 35px;
    }
    .course-gehorschule .course-hero-image{
        width: 620px;
        top: 30px;
    }
   .course-gehorschule h2{
        font-size: 170px;
        margin-top: 106px;
        padding-left: 284px;
        transform: rotate(-10deg);
    }
    .course-gehorschule .course-home-info {
        max-width: 30rem;
    }
    .course-einsingen{
        height: 814px;
    }
    .course-einsingen .course-hero-image{
        width: 612px;
        top: 85px;
        left: -180px;
        z-index: 3;
    }
    .course-einsingen h2{
        font-size: 234px;
        padding-left: 212px;
        margin-top: 76px;
        transform: rotate(-12deg);
    }
    .course-einsingen .course-home-info{
        max-width: 40rem;
    }
    .course-hero-inner.course-30-tage-programm .course-hero-image{
        width: 498px;
    }
    .course-30-tage-programm .course-home-info .course-description{
        padding-left: 225px;
    }
    .course-body-flows .nb-topic-tabs{
        gap: 2px 50px;
    }
    .course-body-flows{
        height: 896px;
    }
    .course-body-flows .course-hero-image{
        width: 518px;
        top: 194px;
        left: -96px;
    }
    .course-body-flows h2{
        font-size: 174px;
        padding-left: 344px;
        margin-top: 122px;
        margin-bottom: 48px;
    }
    .course-body-flows .course-home-info{
        max-width: 37rem;
    }
}
@media(min-width: 1200px){
    .course-hero-inner h2{
        font-size: 192px;
        word-spacing: 44px;
    }
    .course-die-12-saulen h2{
        font-size: 203px;
        word-spacing: 44px;
        padding-left: 212px;
        margin-bottom: 30px;
    }
    .course-die-12-saulen .course-hero-image{
        width: 442px;
        bottom: -80px;
    }
    .course-gehorschule {
        height: 774px;
    }
    .course-gehorschule .course-hero-image{
        width: 683px;
        top: 30px;
    }
   .course-gehorschule h2{
        font-size: 238px;
        margin-top: 116px;
        padding-left: 308px;
    }
    .course-gehorschule .course-home-info {
        max-width: 30rem;
    }
    .course-einsingen{
        height: 814px;
    }
    .course-einsingen .course-hero-image{
        width: 683px;
        top: 0;
        left: -180px;
        z-index: 3;
    }
    .course-einsingen h2{
        font-size: 286px;
        padding-left: 266px;
        margin-top: 76px;
    }
    .course-einsingen .course-home-info{
        max-width: 44rem;
    }
    .course-hero-inner.course-30-tage-programm .course-hero-image{
        width: 512px;
    }
    .course-30-tage-programm .nb-course-header .course-title{
        font-size: 188px;
    }
    .course-body-flows .nb-topic-tabs{
        gap: 2px 50px;
    }
    .course-body-flows{
        height: 970px;
    }
    .course-body-flows .course-hero-image{
        width: 609px;
        top: 194px;
        left: -96px;
    }
    .course-body-flows h2{
        font-size: 242px;
        padding-left: 394px;
        margin-top: 142px;
        margin-bottom: 88px;
    }
    .course-body-flows .course-home-info{
        max-width: 40rem;
    }
}
@media(min-width: 1400px){
    .course-hero-inner h2{
        font-size: 234px;
        word-spacing: 78px;
    }
    .course-die-12-saulen h2{
        font-size: 234px;
        word-spacing: 60px;
        padding-left: 232px;
        margin-top: 42px;
        line-height: .9em;
        text-align: left;
        transform: rotate(-4deg);
        padding-top: 0;
        margin-bottom: 0;
    }
    .course-gehorschule .nb-topic-tabs{
        gap: 2px 50px;
    }
    .course-die-12-saulen .course-hero-image{
        width: 493px;
    }
   .course-gehorschule h2{
        font-size: 286px;
        margin-top: 102px;
        padding-left: 308px;
        transform: rotate(-8deg);
    }
    .course-einsingen::before{
        height: 1188px;
    }
    .course-hero-inner.course-30-tage-programm .course-hero-image{
        width: 683px;
    }
    .course-30-tage-programm .nb-course-header .course-title{
        font-size: 234px;
        padding-left: 284px;
    } 
    .course-einsingen{
        height: 814px;
    }
    .course-einsingen .nb-topic-tabs{
        gap: 2px 50px;
    }
    .course-einsingen h2{
        font-size: 350px;
        padding-left: 257px;
        margin-top: 65px;
        margin-bottom: 0;
    }
    .course-einsingen .course-home-info{
        max-width: 50rem;
    }
    .course-body-flows .nb-topic-tabs{
        gap: 2px 50px;
    }
    .course-body-flows{
        height: 970px;
    }
    .course-body-flows .course-hero-image{
        width: 609px;
        top: 194px;
        left: -96px;
    }
    .course-body-flows h2{
        font-size: 242px;
        padding-left: 394px;
        margin-top: 142px;
        margin-bottom: 88px;
    }
    .course-body-flows .course-home-info{
        max-width: 48rem;
    }
}
@media(min-width: 1500px){
    .course-die-12-saulen h2{
        font-size: 254px;
        padding-left: 178px;
        margin-bottom: 12px;
    }
    .course-gehorschule h2 {
        font-size: 302px;
        margin-top: 84px;
        padding-left: 246px;
        margin-bottom: 58px;
        transform: rotate(-6deg);
    }
    .course-einsingen{
        height: 814px;
    }
    .course-einsingen h2{
        font-size: 380px;
        padding-left: 191px;
        margin-top: 35px;
        margin-bottom: 0;
        transform: rotate(-12deg);
    }
    .course-body-flows{
        height: 1078px;
    }
    .course-body-flows .course-hero-image{
        width: 693px;
        top: 194px;
        left: -96px;
    }
    .course-body-flows h2{
        font-size: 258px;
        padding-left: 356px;
        margin-top: 142px;
        margin-bottom: 88px;
    }
}
@media(min-width: 1600px){
    .course-gehorschule .course-hero-image{
        height: 908px;
    }
    .course-die-12-saulen h2{
        font-size: 264px;
        padding-left: 200px;
        word-spacing: 78px;
        margin-top: 60px;
        margin-bottom: 58px;
    }
    .course-gehorschule {
        height: 842px;
    }
    .course-gehorschule .course-hero-image{
        width: 730px;
        top: 48px;
    }
   .course-gehorschule h2{
        font-size: 308px;
        margin-top: 108px;
        padding-left: 290px;
        transform: rotate(-8deg);
    }
    
    .course-einsingen{
        height: 990px;
    }
    .course-einsingen .course-hero-image{
        width: 830px;
        top: 48;
        left: -216px;
    }
    .course-einsingen h2{
        font-size: 374px;
        padding-left: 269px;
        margin-top: 121px;
        transform: rotate(-14deg);
    }
    .course-einsingen .course-home-info{
        max-width: 50rem;
    }
    .course-body-flows{
        height: 1078px;
    }
    .course-body-flows .course-hero-image{
        width: 693px;
        top: 194px;
        left: -96px;
    }
    .course-body-flows h2{
        font-size: 288px;
        padding-left: 334px;
        margin-top: 142px;
        margin-bottom: 88px;
    }
    .course-body-flows .course-home-info{
        max-width: 50rem;
    }
}
@media(min-width: 1700px){
    .course-die-12-saulen h2{
        font-size: 280px;
        padding-left: 148px;
    }
    .course-gehorschule{
        height: 972px;
    }
    .course-gehorschule .course-hero-image{
        width: 848px;
    }
   .course-gehorschule h2{
        font-size: 308px;
        margin-top: 132px;
        padding-left: 312px;
    }
    .course-einsingen{
        height: 1114px;
    }
    .course-einsingen .course-hero-image{
        width: 934px;
    }
    .course-einsingen h2{
        font-size: 362px;
        padding-left: 309px;
        margin-top: 232px;
    }
    .course-body-flows{
        height: 1078px;
    }
    .course-body-flows .course-hero-image{
        width: 693px;
        top: 194px;
        left: -96px;
    }
    .course-body-flows h2{
        font-size: 288px;
        padding-left: 334px;
        margin-top: 142px;
        margin-bottom: 88px;
    }
}
@media(min-width: 1800px){
    .course-gehorschule .course-hero-image{
        height: 972px;
    }
    .course-die-12-saulen .course-hero-image {
        width: 544px;
    }
    .course-die-12-saulen h2{
        font-size: 294px;
        padding-left: 134px;
    }
   .course-gehorschule h2{
        font-size: 328px;
        padding-left: 248px;
    }
    
    .course-einsingen{
        height: 1114px;
    }
    .course-einsingen .course-hero-image{
        width: 934px;
    }
    .course-einsingen h2{
        font-size: 388px;
        padding-left: 247px;
        margin-top: 185px;
    }
    .course-body-flows{
        height: 1114px;
    }
    .course-body-flows .course-hero-image{
        width: 722px;
        top: 194px;
        left: -96px;
    }
    .course-body-flows h2{
        font-size: 321px;
        padding-left: 302px;
        margin-top: 121px;
        margin-bottom: 100px;
    }
}
@media(min-width: 1920px){
    .course-die-12-saulen .course-hero-image {
        width: 544px;
    }
    .course-die-12-saulen h2{
        font-size: 316px;
        padding-left: 64px;
    }
   .course-gehorschule h2{
        font-size: 348px;
        margin-top: 132px;
        padding-left: 190px;
    }
    .course-einsingen .course-hero-image{
        width: 934px;
    }
    .course-einsingen h2{
        font-size: 404px;
        padding-left: 187px;
        margin-top: 158px;
    }
    .course-body-flows h2{
        padding-left: 240px;
    }
    .sendvideo-hero-image {
        width: 554px;
        bottom: -126px;
    }
}
@media(min-width: 2000px){
    .course-die-12-saulen .course-hero-image {
        width: 542px;
        padding-left: 30px;
    }
    .course-einsingen h2{
        font-size: 412px;
        padding-left: 154px;
        margin-top: 158px;
    }
    .course-body-flows h2{
        padding-left: 184px;
    }
}
@media(min-width: 2100px){
    .course-die-12-saulen .course-hero-image {
        width: 569px;
    }
    .course-gehorschule h2{
        font-size: 362px;
        margin-top: 132px;
        padding-left: 126px;
    }
    .course-einsingen h2{
        font-size: 438px;
        padding-left: 107px;
    }
    .course-body-flows h2{
        padding-left: 130px;
    }
}


.single-description-area {
    max-width: 1027px;
    width: 100%;
    background-color: #fff8fb;
    border-radius: 26px;
    padding: 20px 55px;
    margin-top: 38px;
    margin-left: auto;
    margin-right: auto;
}

.single-description-area p {
    font-size: 32px;
    font-family: "Roboto";
    line-height: 42px;
    text-align: center;
}

.single-description-area p:last-child {
    margin-bottom: 0;
}

.document-content-section {
    padding-top: 54px;
    padding-bottom: 120px;
}

.document-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 150px;
    display: flex;
    flex-wrap: wrap;
    gap: 150px;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

.document-content-wrapper .video-content-left h2 {
    font-size: 32px;
    font-family: "Roboto";
    font-weight: 500;
    line-height: 42px;
}

.document-content-wrapper .video-content-left .video-timeline {
    list-style: none;
    margin-bottom: 0;
}

.document-content-wrapper .video-content-left .video-timeline li {
    font-size: 16px;
    line-height: 21px;
}

.document-content-wrapper .video-content-left .video-timeline li:not(:last-child) {
    margin-bottom: 20px;
}

.document-content-wrapper .video-content-left .video-timeline li .time {
    display: inline-block;
    color: #e58787;
    font-weight: 500;
    padding-right: 20px;
}

.download-content-boxes {
    width: 222px;
}

.download-content-boxes .download-card {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    width: 100%;
    height: 100px;
    padding: 30px 34px;
    background-color: #fff8fb;
    color: #4b4b4b;
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-decoration: none;
}

.download-content-boxes .download-card:not(:last-child) {
    margin-bottom: 40px;
}

.exercises-area h2 {
    color: #e58787;
    font-size: 32px;
    font-family: "Roboto";
    line-height: 42px;
    margin-bottom: 30px;
}

.saeulen-prev-next {
    padding-top: 105px;
    padding-bottom: 114px;
}

.bottom-prev-next-post {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 0;
}

.bottom-prev-next-post .prev-post,
.bottom-prev-next-post .next-post {
    width: 205px;
    line-height: 0;
}




/* Gehoerschule design start from here */
.piller-area.gehoerschule .piller-inner-area h1 {
    color: #aa8ced;
}

.gehoerschule .saeulen-list {
    background-color: unset;
    padding: 0;
    gap: 2px 30px;
}

.gehoerschule .saeulen-list li a:hover,
.gehoerschule .saeulen-list li a:focus,
.gehoerschule .saeulen-list li.active a {
    color: #aa8ced;
}

.piller-area.gehoerschule .piller-inner-area .heading-design {
    color: #aa8ced;
    font-size: 300px;
    padding-right: 58px;
    margin-top: 105px;
    letter-spacing: 2px;
    transform: rotate(-12deg);
}

.piller-area.gehoerschule .piller-image {
    width: 683px;
    height: 889px;
    left: -45px;
    bottom: -142px;
}

.gehoerschule .piller-lesson-content {
    max-width: 46rem;
}

.gehoerschule .piller-lesson-content .left-lesson-content p {
    font-size: 24px;
    line-height: 31px;
    text-align: center;
}

.course-progress-area {
    background-color: #fff8fb;
    padding: 60px 0;
    margin-bottom: 350px;
}

.course-progress-area .modules-courses {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 103px;
}

.course-progress-card.blue-progress-card {
    border: 1px solid #aa8ced;
}



/* Q&A design start from here */

.qa-hero {
    padding-bottom: 70px;
}

.qa-hero .qa-hero-content {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.qa-hero .qa-hero-content h1 {
    color: #ffb9c6;
    font-size: 64px;
    font-family: "DM Sans";
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 78px;
    text-align: center;
}

.qa-hero .qa-hero-content p {
    font-size: 16px;
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 19px;
    text-align: center;
}

.qa-topic-title input {
    width: 100%;
    font-size: 14px;
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 16px;
    outline: none;
    border: none;
    padding: 0 !important;
}


.qa-list .qa-card {
    background-color: #ffffff;
    border-radius: 24px;
    border: 3px solid #ffb9c6;
    padding: 24px 10px;
}

.qa-list .qa-card:not(:last-child) {
    margin-bottom: 50px;
}

.qa-list .qa-card .qa-header {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 17px;
}

.qa-header .qa-user, .bbp-reply-author .bbp-author-link .bbp-author-avatar {
    display: inline-block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
}
.qa-header .qa-info{
    width: calc(100% - 196px);
    line-height: 0;
}
.qa-header .qa-info h3 {
    color: #4b4b4b;
    font-size: 18px;
    font-family: "DM Sans";
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
/* .qa-header .qa-info h3 a:hover{
    color: #ffb9c6;
} */
.qa-header .qa-info span{
    font-size: 12px;
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 16px;
}
.qa-header .qa-upvotes{
    width: 100px;
}
.qa-header .qa-upvotes .bbp-voting, .bbp-voting{
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
}
.bbp-voting{
    width: 100px;
}
.qa-header .qa-upvotes .bbp-voting .custom-vote, .bbp-voting .custom-vote{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.qa-header .qa-upvotes .bbp-voting .custom-vote .vote-info, .bbp-voting .custom-vote .vote-info{
    line-height: 0;
}
.qa-header .qa-upvotes .bbp-voting .custom-vote .vote-info .score, .bbp-voting .custom-vote .vote-info .score{
    color: #4b4b4b;
    font-size: 20px;
    font-family: "DM Sans";
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    padding: 0;
}
.qa-header .qa-upvotes .bbp-voting .custom-vote .vote-info small, .bbp-voting .custom-vote .vote-info small{
    padding: 0;
    color: #000000;
    font-size: 12px;
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 16px;
    text-align: center
}
.qa-header .qa-upvotes .bbp-voting .custom-vote .vote-icon, .bbp-voting .custom-vote .vote-icon{
    width: 42px;
}
.qa-header .qa-upvotes .bbp-voting .custom-vote .vote-icon .vote, .bbp-voting .custom-vote .vote-icon .vote{
    position: relative;
    border: none !important;
}
.qa-header .qa-upvotes .bbp-voting .custom-vote .vote-icon .vote::before, .bbp-voting .custom-vote .vote-icon .vote::before{
    content: '';
    display: inline-block;
    width: 42px;
    height: 42px;
    border: 1px solid #000000;
    border-radius: 50%;
    background-image: url(../images/icon/thumbs-up-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.qa-header .qa-upvotes .bbp-voting .custom-vote .vote-icon .vote::after, .bbp-voting .custom-vote .vote-icon .vote::after{
    content: none !important;
}
.qa-list .qa-card .qa-content{
    font-size: 16px;
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 19px;
}
.qa-list .qa-card .qa-content .qa-question-image-wrapper{
    margin-top: 20px;
}
.qa-list .qa-card .qa-content img{
    max-width: 100%;
}
.qa-latest-reply{
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #fff8fb;
}
.reply-head{
    display:flex;
    align-items:flex-start;
    gap:15px;
}
.reply-avatar{
    width: 48px;
    overflow: hidden;
}
.reply-avatar img{
    width: 48px;
    height: 48px;
    border-radius:50%;
}
.reply-body{
    width: calc(100% - 63px);
}
.reply-meta{
    margin-bottom:20px;
	line-height: normal;
}
.reply-meta strong{
    color: #4b4b4b;
    font-size: 14px;
    font-family: "DM Sans";
    font-weight: 500;
    line-height: 16px;
}
.reply-meta span{
    color: #4b4b4b;
    font-size: 12px;
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 16px;
}
.reply-text{
    background-color: #fff8fb;
    color: #030303;
    font-size: 16px;
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 19px;
    padding: 12px;
    border-radius: 12px;
}
.reply-text p:last-child {
    margin-bottom: 0;
}
.mark-helpful-btn{
    width: 135px;
    height: 40px;
    padding: 0px 8px;
    border: 0;
    box-sizing: border-box;
    border-radius: 9999px;
    background-color: #ffb9c6;
    color: #fff;
    font-size: 16px;
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 19px;
    margin-top: 15px;
    outline: none;
    cursor: pointer;
}
.mark-helpful-btn:hover, .mark-helpful-btn:focus{
    background:#ffb9c6 !important;
}
	
.mark-helpful-btn.selected{
    background:#5cb85c !important;
    color:#fff;
    cursor:default;
    opacity:1;
}
.ask-question{
    margin-bottom: 235px;
}
.qa-post-wrapper {
    display:flex;
    align-items:flex-start;
    gap:6px;
    margin-top:76px;
}
.qa-post-avatar{
    width:56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}
.qa-post-avatar img{
    width: 100%;
}

.qa-post-card{
    width: calc(100% - 62px);
    background-color: #ffffff;
    padding: 15px 10px;
    border: 1px solid #ffb9c6;
    border-radius: 16px;
}
.qa-post-card #qa_title, .qa-post-card #qa_question, .qa-post-card #bbp_reply_content{
    font-size: 14px;
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 16px;
    border: none;
    resize: none;
}
.qa-post-card #qa_title, .qa-post-card #bbp_reply_content{
    padding: 0;
}
.qa-post-card #qa_question{
    border: 1px solid #ffb9c6;
    background-color: #fff8fb;
    resize: none;
    margin-top: 10px;
    border-radius: 12px;
} 
.qa-post-card #qa_title::placeholder{
    color:#4b4b4b;
}
.qa-toolbar{
    display:flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items:center;
    row-gap: 30px;
    margin-top:20px;
}
.qa-toolbar-left{
    display:flex;
    gap: 12px;
}
.qa-upload-btn,
.qa-link-btn{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 12px 8px;
    padding-left: 34px;
    border: 1px solid #555;
    border-radius: 50px;
    background-color: #fff;
    color: #4b4b4b;
    font-size: 16px;
    line-height: 1em;
    font-weight: 400;
    font-family: 'DM Sans';
    margin-bottom: 0;
    cursor: pointer;
}
.qa-upload-btn img,
.qa-link-btn img{
    display: none !important;
}
.qa-upload-btn:hover,
.qa-link-btn:hover{
    background-color: #fff !important;
    color: #4b4b4b !important;
}
.qa-upload-btn::before,
.qa-link-btn::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-position: center;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
}
.qa-upload-btn::before{
    background-image: url(../images/icon/image-icon.svg);
}
.qa-link-btn::before{
    background-image: url(../images/icon/link-icon.svg);
}
.qa-post-btn, .bbp-submit-wrapper .qa-submit-btn{
    width:122px;
    height:40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #ffb9c6;
    color:#fff;
    color: #ffffff;
    font-size: 16px;
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 19px;
    padding: 0 8px;
    border-radius: 9999px;
}
.qa-post-btn:hover, .qa-post-btn:focus,
.bbp-submit-wrapper .qa-submit-btn:hover, .bbp-submit-wrapper .qa-submit-btn:focus{
    background:#ffb9c6 !important;
}
.qa-tips{
    margin-left:80px;
    margin-top:10px;
    color: #4b4b4b;
    font-size: 12px;
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 16px;
}
.qa-image-preview{
    margin-top:10px;
}
.qa-preview-item{
    position:relative;
    display:inline-block;
    width:100px;
	height: 100px;
    overflow:hidden;
}
.qa-preview-item img{
    display:block;
    width:100%;
	height: auto;
    object-fit: cover;
}
.qa-remove-image{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    line-height: 1em;
    background-color: #ffb9c6;
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    position:absolute;
    top: 0px;
    right: 0;
    border: 0;
    cursor: pointer;
}
.qa-remove-image:hover, .qa-remove-image:focus{
    background-color: #ffb9c6 !important;
    color: #fff !important;
}

.qa-link-wrapper{
    margin-top:10px;
    display:flex;
    gap:10px;
}
.qa-link-wrapper input{
    width: calc(100% - 50px);
    height: 40px;
    border: 1px solid #ffb9c6;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    line-height: 1em;
}
.qa-link-wrapper input:focus{
    border: 1px solid #ffb9c6;
}
#removeLink{
    width:40px;
    height: 40px;
    background-color: #ffb9c6;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border:0;
    border-radius:50%;
    cursor:pointer;
}
#removeLink:hover, #removeLink:focus{
    background-color: #ffb9c6 !important;
    color: #fff !important;
}
#qa_question{
    display:none;
    margin-top:20px;
}
#qa_question.active{
    display:block;
}
.qa-recording-link{
    margin-top: 20px;
}
.qa-recording-link a{
    color: #e58787;
}
.theme-page-default{
    margin-top: 80px;
    margin-bottom: 100px;
}
.bbpress-wrapper .bbp-replies{
    border-color: #e58787 !important;
}
.bbpress-wrapper .bbp-replies .bbp-header{
    background-color: #e58787 !important;
    color: #fff;
    border-top: none !important;
}
.bbp-reply-content{
    /* display: flex;
    flex-direction: row-reverse; */
}
.bbp-reply-author .bbp-author-link{
    display: inline-block;
}
.bbp-reply-author .bbp-author-link .bbp-author-avatar img{
    width: 64px;
    height: 64px;
    margin-top: 0 !important;
}
.bbp-replies .bbp-reply-content p{
    width: calc(100% - 100px);
}
.bbp-header .bbp-reply-content, .bbp-footer .bbp-reply-content{
    display: inherit;
}
.bbp-voting.bbp-voting-float {
    float: right !important;
}
@media(min-width:768px){
    .qa-hero{
        padding-bottom: 82px;
    }
    .qa-list .qa-card{
        padding: 24px 20px;
    }
    .qa-post-card{
        padding: 23px 30px;
    }
    .qa-toolbar{
        justify-content: space-between;
    }
    .qa-upload-btn, .qa-link-btn{
        padding: 12px;
        padding-left: 34px;
    }
}




footer {
    background-color: #fff8fb;
    padding-top: 36px;
    padding-bottom: 113px;
}

footer .footer-about a {
    color: #000000;
    font-size: 32px;
    font-family: "Caladea", serif;
    line-height: 38px;
    text-decoration: none;
    margin-bottom: 10px;
}

footer .footer-about p {
    color: #4b4b4b;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    line-height: 20px;
}

.footer-menu-box .f-menu-title {
    color: #e58788;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    line-height: 21px;
    margin-bottom: 5px;
}

.footer-menu {
    list-style: none;
    margin-bottom: 0;
}

.footer-menu li {
    line-height: 1.5em;
}

.footer-menu li a {
    color: #4b4b4b;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    line-height: 21px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-menu li.current_page_item a,
.footer-menu li a:hover,
.footer-menu li a:focus {
    color: #e58787;
}

.social-links {
    list-style: none;
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    margin-bottom: 0;
}





.login-popup {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.login-popup.active {
    display: block;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
}

.myaccount-popup .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff8fb;
    max-width: 22rem;
    width: 100%;
    padding: 20px;
    border-radius: 64px;
}
.popup-close {
    position: absolute;
    left: 20px;
    top: 40px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.popup-close:hover, .popup-close:focus{
    background-color: transparent !important;
}
.myaccount-popup .popup-content h2 {
    color: #e58787;
    font-size: 64px;
    font-family: "Caladea";
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 78px;
    padding-top: 0;
    text-align: center;
}
.myaccount-popup .popup-content .my-account-form-box {
    max-width: 550px;
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid #ffb9c6;
    box-sizing: border-box;
    padding: 13px;
    margin-top: 27px;
    margin-left: auto;
    margin-right: auto;
}
.myaccount-popup .popup-content .my-account-form-box .um, 
.myaccount-popup .popup-content .my-account-form-box .um .um-form{
    all: unset;
}
.my-account-form-box h3 {
    color: #4b4b4b;
    font-size: 40px;
    font-family: "DM Sans";
    font-weight: 700;
    line-height: 52px;
    text-align: center;
    margin-bottom: 20px;
}
.my-account-form-box .um-login .um-form .um-field-label label,
.my-account-form-box .um-register .um-form .um-field-label label {
    display: block;
    color: #000000;
    font-size: 12px !important;
    font-family: "DM Sans";
    font-weight: 500;
    line-height: 16px !important;
    margin-bottom: 10px;
}
.my-account-form-box .um-login .um-form .um-field-area input,
.my-account-form-box .um-register .um-form .um-field-area input,
.um-password .um-form .um-field-area input {
    width: 100%;
    padding: 15px !important;
    border: 1px solid #ffb9c6 !important;
    border-radius: 12px;
    background-color: #ffffff;
    color: #000000;
    font-size: 14px !important;
    font-family: "DM Sans";
    line-height: 18px;
    outline: none !important;
}
.my-account-form-box .um-login .um-form .um-button,
.my-account-form-box .um-register .um-form .um-button,
.um-password .um-form .um-button {
    width: 100% !important;
    height: 64px !important;
    background-color: #ffb9c6 !important;
    border-radius: 40px !important;
    font-size: 16px !important;
    font-family: "Roboto";
    font-weight: 500 !important;
}
.my-account-form-box .um-login .um-form .um-button:hover,
.my-account-form-box .um-register .um-form .um-button:hover,
.um-password .um-form .um-button:hover {
    background-color: #ffb9c6;
}
.my-account-form-box .new-account-text {
    color: #4b4b4b;
    font-size: 18px;
    font-family: "DM Sans";
    line-height: 23px;
    text-align: center;
    margin-top: 20px;
}
.my-account-form-box .um-register {
    margin-bottom: 0 !important;
}
.my-account-form-box .um-login .um-form .um-col-alt-b {
    padding-top: 0;
}
.my-account-form-box .um-login .um-form .um-col-alt-b a {
    color: #858585 !important;
    font-size: 12px;
    line-height: 1em;
    font-family: "Poppins";
    text-align: right;
    transition: all 0.3s ease-in-out;
}
.my-account-form-box .woocommerce-form .lost-password a {
    color: #858585;
    font-size: 12px;
    font-family: "Poppins";
    line-height: 16px;
    text-align: right;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.login-register-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.login-register-box .register-text {
    color: #000000;
    font-size: 14px;
    font-family: "Roboto";
    line-height: 16px;
}
.login-register-box .btn-theme {
    min-width: 185px;
    min-height: 45px;
    font-size: 16px;
    font-family: "DM Sans";
    line-height: 1em;
    padding: 16px 10px;
}
.um-password {
    margin-top: 90px;
    padding-bottom: 100px !important;
}
.um-password .um-form .um-field-block {
    color: #4b4b4b;
    font-size: 18px;
    font-family: "DM Sans";
    line-height: 23px;
    text-align: center;
}
.my-account-form-box .um-login-register-link{
    display: none !important;
}
@media(min-width:992px){
    .myaccount-popup .popup-content{
        max-width: 82rem;
        padding: 40px;
    }
    .popup-close{
        left: 40px;
        top: 48px;
    }
    .myaccount-popup .popup-content .my-account-form-box{
        padding: 28px;
    }
}

.woocommerce-breadcrumb{
    padding-top: 2em;
    font-family: 'Roboto';
    font-size: 16px;
    color: #ffb9c6;
    font-weight: 400;
    border-bottom: 1px solid #ffb9c6;
}
.woocommerce-breadcrumb a{
    text-decoration: none;
    color: #4b4b4b;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}
.woocommerce-breadcrumb a:hover, .woocommerce-breadcrumb a:focus{
    color: #ffb9c6;
    box-shadow: none;
}
.woocommerce-tabs .wc-tabs .reviews_tab a{
    background-color: #fff8fb;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: 400;
    color: #4b4b4b;
    transition: all 0.3s ease-in-out;
}
.woocommerce-tabs .wc-tabs .reviews_tab.active a{
    background-color: #fff8fb;
    box-shadow: none;
}
.woocommerce-tabs .woocommerce-Tabs-panel{
    border: 1px solid #ffb9c6;
    border-radius: 26px;
    padding: 20px;
}
.woocommerce-Reviews .woocommerce-Reviews-title{
    font-family: 'DM Sans';
    font-size: 24px;
    font-weight: 500;
    color: #4b4b4b;
}
.woocommerce-Reviews .woocommerce-noreviews{
    font-size: 16px;
    font-weight: 400;
    color: #4b4b4b;
    font-family: 'Roboto';
}
.woocommerce-Reviews .comment-respond .comment-reply-title{
    font-size: 18px;
    font-weight: 500;
    color: #4b4b4b;
    font-family: 'DM Sans';
}
.woocommerce-Reviews .comment-respond .comment-form .comment-form-rating label, 
.woocommerce-Reviews .comment-respond .comment-form .comment-form-comment label{
    font-size: 16px;
    font-weight: 500;
    color: #ffb9c6;
}
.woocommerce-Reviews .comment-respond .comment-form .comment-form-rating .stars span a{
    color: #ffb9c6;
}
.woocommerce-Reviews .comment-respond .comment-form .comment-form-comment textarea{
    border: 1px solid #ffb9c6;
    background-color: #fff8fb;
    resize: none;
    margin-top: 10px;
    border-radius: 12px;
}
.woocommerce-Reviews .comment-respond .comment-form .form-submit{
    margin-bottom: 0;
}
.wp-block-woocommerce-cart .wc-block-components-main .wc-block-cart-items thead tr{
    border-color: #ffb9c6;
}
.wp-block-woocommerce-cart .wc-block-components-main .wc-block-cart-items tbody tr{
    border-color: #ffb9c6;
}
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block,
.wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block .wp-block-woocommerce-cart-order-summary-coupon-form-block,
.wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block .wp-block-woocommerce-cart-order-summary-totals-block,
.wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-wrapper{
    border-color: #ffb9c6;
}
.wc-block-components-quantity-selector{
    border-color: #ffb9c6;
}
.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=password], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=password], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url],
.wc-block-components-form .wc-block-components-text-input input[type=email]:focus, .wc-block-components-form .wc-block-components-text-input input[type=number]:focus, .wc-block-components-form .wc-block-components-text-input input[type=password]:focus, .wc-block-components-form .wc-block-components-text-input input[type=tel]:focus, .wc-block-components-form .wc-block-components-text-input input[type=text]:focus, .wc-block-components-form .wc-block-components-text-input input[type=url]:focus, .wc-block-components-text-input input[type=email]:focus, .wc-block-components-text-input input[type=number]:focus, .wc-block-components-text-input input[type=password]:focus, .wc-block-components-text-input input[type=tel]:focus, .wc-block-components-text-input input[type=text]:focus, .wc-block-components-text-input input[type=url]:focus{
    border: 1px solid #ffb9c6;
    color: #4b4b4b;
}
.wc-block-components-totals-coupon__content .wc-block-components-button{
    background-color: #ffb9c6;
    color: #000;
    font-weight: 500;
    font-family: 'Roboto';
}
.wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block{
    background-color: #fff8fb;
    border: 1px solid #ffb9c6;
}
.wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-coupon-form-block,
.wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-totals-block,
.wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper{
    border-color: #ffb9c6;
}
.wp-block-woocommerce-checkout-order-summary-totals-block .wc-block-components-totals-wrapper{
    border: none;
}
.wc-block-components-address-card,
.wc-blocks-components-select .wc-blocks-components-select__select, 
.wc-blocks-components-select .wc-blocks-components-select__select:focus,
.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox],
.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:focus,
.wc-block-components-textarea,
.wc-block-components-textarea:focus{
    border-color: #ffb9c6;
    outline: none;
    box-shadow: none;
}
.wc-blocks-components-select .wc-blocks-components-select__expand, 
.wc-block-components-checkbox .wc-block-components-checkbox__mark{
    fill: #ffb9c6;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity{
    background: #e58788;
}
.product .product_title{
    font-family: "Caladea";
    color: #e58787;
    font-weight: 700;
}
.product .input-text{
    color: #4b4b4b;
    border: 1px solid #ffb9c6;
    padding: 10px;
    border-radius: 26px;
}
.product .single_add_to_cart_button, 
.woocommerce-Reviews .comment-respond .comment-form .form-submit .submit,
.wp-block-woocommerce-cart .wc-block-cart__submit .wc-block-components-button,
.wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-button{
    min-height: unset !important;
    background-color: #ffb9c6;
    color: #fff;
    font-family: "Roboto";
    font-size: 24px;
    font-weight: 400;
    line-height: 31px;
    padding: 8px 20px;
    border-radius: 100px;
} 
.product .single_add_to_cart_button:hover, .product .single_add_to_cart_button:focus,
.woocommerce-Reviews .comment-respond .comment-form .form-submit .submit:hover, .woocommerce-Reviews .comment-respond .comment-form .form-submit .submit:focus,
.wp-block-woocommerce-cart .wc-block-cart__submit .wc-block-components-button:hover, .wp-block-woocommerce-cart .wc-block-cart__submit .wc-block-components-button:focus,
.wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-button:hover,
.wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-button:focus{
    background-color: #ffb9c6;
    outline: none !important;
    box-shadow: none !important;
}
.product .summary .product_meta{
    display: none;
    margin-top: 20px;
}
.product .summary .product_meta .posted_in a{
    color: #e58787;
    box-shadow: none;
}
.woocommerce img, .woocommerce-page img{
    width: 100%;
}
.woocommerce-notices-wrapper .woocommerce-message{
    background-color: #fff8fb;
    color: #000;
    text-align: center;
    border-radius: 26px;
    padding: 20px;
}
.woocommerce-notices-wrapper .woocommerce-message a{
    float: none !important;
    color: #e58787;
    box-shadow: none;
    display: block;
    margin-top: 20px;
}
.woocommerce-notices-wrapper .woocommerce-message a:hover, .woocommerce-notices-wrapper .woocommerce-message a:focus{
    color: #e58787 !important;
}

.page-id-346 .um,
.um-page-register .um{
    background-color: #fff8fb;
    padding: 0;
    border-radius: 64px;
}
.page-id-346 .um .um-form,
.um-page-register .um .um-form{
    max-width: 550px;
    width: 100%;
    background-color: #fff;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #ffb9c6;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}
.page-id-346 .um .um-form .um-col-alt,
.um-page-register .um .um-form .um-col-alt{
    padding: 0 !important;
}
.page-id-346 .um .um-form .um-col-1,
.um-page-register .um .um-form .um-col-1{
    padding: 0;
}
.page-id-346 .um .um-form .um-col-1 .um-field-username,
.um-page-register .um .um-form .um-col-1 .um-field-user_login{
    padding-top: 0;
}
.page-id-346 .um .um-form .um-field .um-field-label label,
.um-page-register .um .um-form .um-field .um-field-label label{
    display: block;
    color: #000000;
    font-size: 12px !important;
    font-family: "DM Sans";
    font-weight: 500;
    line-height: 16px !important;
    margin-bottom: 10px;
}
.page-id-346 .um .um-form .um-field .um-field-area .um-form-field,
.um-page-register .um .um-form .um-field .um-field-area .um-form-field{
    width: 100%;
    padding: 15px !important;
    border: 1px solid #ffb9c6 !important;
    border-radius: 12px;
    background-color: #ffffff;
    color: #000000;
    font-size: 14px !important;
    font-family: "DM Sans";
    line-height: 18px;
    outline: none !important;
}
.page-id-346 .um .um-form .um-button,
.um-page-register .um .um-form .um-button{
    min-width: 100% !important;
    width: 100% !important;
    height: 45px !important;
    background-color: #ffb9c6 !important;
    border-radius: 40px !important;
    font-size: 16px !important;
    font-family: "Roboto";
    font-weight: 500 !important;
}
.page-id-346 .um .um-form .um-col-alt-b{
    padding-top: 15px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.page-id-346 .um .um-form .um-col-alt-b a{
    text-align: right;
    color: #858585 !important;
    font-size: 12px;
    line-height: 1em;
    font-family: "Poppins";
    text-align: right;
    transition: all 0.3s ease-in-out;
}
.page-id-346 .um .um-form .um-login-register-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
    margin-top: 30px;
    color: #000000;
    font-size: 14px;
    font-family: "Roboto";
    line-height: 16px;
}
.page-id-346 .um .um-form .um-login-register-link a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 185px;
    min-height: 45px;
    font-size: 16px;
    font-family: "DM Sans";
    line-height: 1em;
    padding: 16px 10px;
    border: 0;
    box-sizing: border-box;
    border-radius: 100px;
    background-color: #ffb9c6;
    color: #ffffff;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.um-page-register .um-password{
    max-width: 100% !important;
    padding-bottom: 40px !important;
}
.um-account-side .um-account-profile-link .um-link,
.um-account-side > ul li .um-account-link.current .um-account-icon,
.um-account-side > ul li .um-account-link.current:hover span.um-account-icon{
    color: #ffb9c6;
}
.um-button, .um-request-button{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 45px !important;
    background-color: #ffb9c6 !important;
    border-radius: 40px !important;
    font-size: 16px !important;
    font-family: "Roboto";
    font-weight: 500 !important;
    border-radius: 100px !important;
    padding: 15px 20px !important;
}
@media(min-width:992px){
    .page-id-346 .um, .um-page-register .um{
        padding: 40px;
    }
    .page-id-346 .um .um-form, .um-page-register .um .um-form{
        padding: 28px;
    }
}




