/*zero style*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
:after,
:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:active,
:focus {
    outline: 0
}

a:active,
a:focus {
    outline: 0
}

aside,
footer,
header,
nav {
    display: block
}

body,
html {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

button,
input,
textarea {
    font-family: inherit
}

input::-ms-clear {
    display: none
}

button {
    cursor: pointer
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

a,
a:visited {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400
}

/*----------*/
/*-- base --*/
.wrapper,
.wrapper-form,
.wrapper-buying {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
    overflow-y: hidden;
}

#back-btn,
#details-btn {
    cursor: pointer;
}

#back-btn {
    float: right;
}

html {
    scroll-behavior: smooth;
}

.btnanimate:hover {
    transform: scale(1.04);
    transition: 0.5s;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(500px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-500px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInLeft {
    animation-name: fadeInLeft;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

* {
    font-family: 'Object Sans', sans-serif;
}

.boldtext {
    font-weight: bold;
}

/*-- header --*/
.header {
    width: 100%;
    background-color: #eb382a;
    border-radius: 0 0 60px 60px;
    padding: 3%;
    background-image: url(src/img/deutsch_skill_logo-big.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.header-navigation {
    background-color: #FCD338;
    border-radius: 10px;
    margin-bottom: 3%;
    position: relative;
    z-index: 300;
}

.logo {
    height: 3vw;
}

.header-navigation-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 10px 30px;*/
    padding: 0.8% 2.3%;
}

.navigation-navbar--pill {
    color: #000;
    /* font-family: 'Gilroy', sans-serif; */
    font-weight: 700;
    font-size: 1.3vw;
    margin: 0 30px;
}

.navigation-navbar--pill:hover {
    text-decoration: underline solid 1px #000;
}

.navigation-links--socialbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    padding: 8%;
    border-radius: 50%;
}

.navigation-links--socialbtn img {
    width: 1.5vw;
    height: 1.5vw;
}

.navigation-lang--current {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    padding: 1%;
    width: 7vw;
    height: 2.1vw;
    border-radius: 1.2vw;
}

.navigation-lang--current img {
    height: 1.5vw;
}

.navigation-lang--dropdown {
    display: none;
}

.navigation-lang--lang {
    margin-left: 10px;
    color: #FCD338;
    background-color: black;
    font-size: 1.5vw;
    font-weight: 600;
}

/* custom select */
.navigation-lang-custom {
    margin-left: 10px;
    width: 7vw;
}

.select {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #000;
    /* padding: 5px 25px 5px 15px; */
    padding: 8% 13%;
    border-radius: 40px;
}

.select img {
    height: 1.5vw;
}

.select select {
    /* font-family: 'Manrope', sans-serif; */
    display: inline-block;
    width: 100%;
    font-size: 1.5vw;
    font-weight: bold;
    cursor: pointer;
    /* padding: 10px 15px;
    outline: 0;
    border: 0px solid #000000;
    border-radius: 0px;
    background: #000000; */
    color: #FCD338;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select select::-ms-expand {
    display: none;
}

.select select:hover,
.select select:focus {
    background: #000000;
}

.select select:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.select_arrow {
    position: absolute;
    top: 41%;
    right: 8%;
    pointer-events: none;
    border-style: solid;
    border-width: 0.7vw 0.5vw 0px 0.5vw;
    border-color: #FCD338 transparent transparent transparent;
}

.select select:hover~.select_arrow,
.select select:focus~.select_arrow {
    border-top-color: #FCD338;
}

.select select:disabled~.select_arrow {
    border-top-color: #FCD338;
    ;
}

/* ---custom select--- */

.navigation-links {
    display: flex;
}

.navigation-links--socialbtn {
    margin: 0 10px;
}

.header-navigation-mobile {
    display: none;
    justify-content: space-between;
    padding: 8px 15px;
    border-radius: 0 0 10px 10px;
}

.navigation-mobile--burgerpill {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #000;
    padding: 10px;
    border-radius: 50%;
}

.navigation-mobile--burgerpill img {
    width: 20px;
    height: 20px;
}

.close-form,
.close-form-b {
    float: right;
    border: solid 2px #FCD338;
    align-items: center;
    background: #000;
    padding: 10px;
    margin-top: 1%;
    margin-right: -3%;
    border-radius: 50%;
    cursor: pointer;
}

.cross {
    width: 30px;
    height: 30px;
}

.navigation-mobile--buttons {
    display: flex;
    cursor: pointer;
}

.navigation-navbar-mobile {
    width: 100%;
    height: auto;
    margin: 5% 1% 2%;
    padding: 4.5vh 1% 2%;
    position: absolute;
    left: -1%;
    top: 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FCD338;
    z-index: -1;
}

.navigation-navbar-mobile img {
    width: 20px;
    height: 20px;
}

.header-content {
    display: flex;
}

.header-title {
    color: #FFF;
    font-size: 9vw;
    /* font-family: 'Object Sans', sans-serif; */
    font-weight: 800;
    letter-spacing: 4.2px;
    text-transform: uppercase;
}

.header-description {
    color: #FFF;
    font-size: 2vw;
    /* font-family: 'Manrope', sans-serif; */
    line-height: 1.5;
    text-transform: uppercase;
    margin: 8% 0;
}

.header-content--images {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.clodchat {
    font-size: 1.6vw;
    /* font-family: 'Object Sans', sans-serif; */
    font-weight: 800;
    line-height: 100%;
    letter-spacing: 0.75px;
    padding: 40px;
    margin: 15px;
}

.dialog1 {
    background: #FCD338;
    position: relative;
    border-radius: 10px 10px 10px 0;
    display: inline-flex;
    text-align: left;
}

.dialog1:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: calc(100% - 31px);
    top: calc(100% - 20px);
    border-top: 14px solid transparent;
    border-left: 31px solid #FCD338;
    border-bottom: 26px solid transparent;
}

.dialog2 {
    color: #fff;
    margin-right: 10%;
    background: #000;
    position: relative;
    border-radius: 10px 10px 0 10px;
    display: inline-flex;
    text-align: right;
}

.dialog3 {
    background: #FCD338;
    position: relative;
    border-radius: 10px 10px 10px 0;
    display: inline-flex;
    text-align: left;
}

.dialog2:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: calc(100% - 32px);
    top: calc(100% - 14px);
    border-top: 10px solid transparent;
    border-right: 32px solid #000;
    border-bottom: 26px solid transparent;
}

.dialog3:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: calc(100% - 31px);
    top: calc(100% - 20px);
    border-top: 14px solid transparent;
    border-left: 31px solid #FCD338;
    border-bottom: 26px solid transparent;
}

.header-button {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    padding: 0.5vw 1vw;
    border-radius: 30px;
}

.header-button--text,
.button--text {
    color: #FFF;
    margin: 5px 20px;
    font-size: 1.8vw;
    /* font-family: 'Manrope', sans-serif; */
    font-style: normal;
    font-weight: 500;
}

.button--img {
    height: 2vw;
}

.coursescards {
    width: 100%;
    /*height: 90vh;*/
    border-radius: 60px;
    padding: 3%;
    /* border: #000 1px solid; */
    margin-top: 3%;
}

.coursescards-header {
    color: #000;
    font-size: 2.5vw;
    /* font-family: 'Gilroy', sans-serif; */
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    margin: 0 0 3% 3%;
    text-transform: uppercase;
}

.red {
    color: #EB382A;
}

.yellow {
    color: #FCD338;
}

.coursescards-cards {
    display: flex;
    justify-content: space-between;
}

.coursescards-cards--card {
    width: 30%;
    border-radius: 20px;
    padding: 3%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coursescards-cards--card:hover {
    scale: 1.04;
    box-shadow: 3px 3px 7px #464545db;
    transition: 0.5s;
}

.card1 {
    background-color: #000;
    color: #FFF;
    background-image: url(src/img/Group_b.svg);
    background-repeat: no-repeat;
}

.card2 {
    background-color: #FCD338;
    background-image: url(src/img/Group_y.svg);
    background-repeat: no-repeat;
}

.card3 {
    background-color: #EB382A;
    color: #FFF;
    background-image: url(src/img/Group_r.svg);
    background-repeat: no-repeat;
    background-position-x: -3px;
    background-position-y: -1px;
}

.card-header {
    display: flex;
}

.card-header--logo {
    width: 45%;
}

.card-header--content {
    width: 55%;
    padding: 0 0 0 3%;
}

.level {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 800;
    /* font-family: 'Object Sans', sans-serif; */
    text-align: center;
    margin-bottom: 5%;

}

.card-token {
    display: flex;
    align-items: center;
    /*margin: 10px 0;*/
    padding: 10px 0 10px 10px;
}

.session,
.period,
.price {
    border-bottom: 1px solid #FFF;
}

.session2,
.period2,
.price2 {
    border-bottom: 1px solid #000;
}

.card-token p {
    margin-left: 10%;
    font-size: 1.1vw;
    /* font-family: 'Manrope', sans-serif; */
}

.cadr-description {
    border-top: 1px solid #FFF;
    margin-top: 5%;
    padding-top: 20px;
    margin-bottom: 10%;
}


.cadr-description2 {
    border-top: 1px solid #000;
    margin-top: 5%;
    padding-top: 20px;
    margin-bottom: 10%;
    margin-bottom: 10%;
}

.cadr-description--title {
    font-size: 1.4vw;
    /* font-family: 'Object Sans', sans-serif; */
    font-style: normal;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cadr-description--text,
.club-content-details--text {
    font-size: 1.1vw;
    /* font-family: 'Manrope', sans-serif; */
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #FFF;
    border-radius: 30px;
    padding: 10px;
    margin: 0 39% 0 0;
    cursor: pointer;
}

.card-button2 {
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #000;
    border-radius: 30px;
    padding: 10px;
    margin: 0 40% 0 0;
    cursor: pointer;
}

.card-button--text {
    font-size: 1vw;
    /* font-family: 'Manrope', sans-serif; */
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-right: 5%;
}

.card-button--img {
    width: 1rem;
}

.club {
    width: 100%;
    display: flex;
    float: left;
    border-radius: 60px;
    /* border: #000 1px solid; */
    margin-top: 3%;
}

.club-img {
    width: 50%;
    /*    background-image: url(src/img/shutterstock_conversation.jpg);*/
    background-size: cover;
    border-radius: 60px;
}

.club-content {
    padding: 6% 5%;
    width: 50%;
}

.club-content-details {
    padding: 3%;
    width: 50%;
}

.club-content--title,
.teachers-content--title,
.invite-content--title,
.club-content-details--title {
    color: #000;
    font-size: 2.5vw;
    /* font-family: 'Object Sans', sans-serif; */
    font-weight: 800;
    text-transform: uppercase;
}

.club-content-details--title {
    margin-bottom: 3%;
}

.club-content--title {
    margin: 0 3%;
}

.club-content--description,
.teachers-content--text,
.invite-content--text {
    color: #000;
    font-size: 1.5vw;
    /* font-family: 'Manrope', sans-serif; */
    font-weight: 400;
    line-height: 118%;
    margin: 5% 3%;
}

.club-content--tokens {
    margin-bottom: 7%;
}

.token {
    width: 40%;
    max-height: 5vw;
    display: inline-flex;
    align-items: center;
    padding: 1vw 1.5vw;
    background: #000;
    color: #FFF;
    margin: 3%;
    border-radius: 30px;
    margin-bottom: 5%;
    font-size: 1.2vw;
    /* font-family: 'Manrope', sans-serif; */
}

.token-img {
    margin-right: 1.5vw;
}

.club-content--btn {
    display: inline-flex;
    align-items: center;
    background-color: #EB382A;
    padding: 0.5vw 1vw;
    border-radius: 30px;
    margin: 0 3%;
}

.button--text {
    color: #FFF;
}

.teachers {
    width: 100%;
    display: flex;
    float: left;
    border-radius: 60px;
    /* border: #000 1px solid; */
    margin-top: 3%;
}

.teachers-img {
    width: 90%;
    /*    background-image: url(src/img/shutterstock_2.png);*/
    background-size: cover;
    background-position: right;
    border-radius: 60px;
}

.teachers-content {
    padding: 7% 7% 5% 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.teachers-content--title {
    width: 100%;
    margin-left: 5%;
}

.teachers-content--img {
    width: 30%;
    height: auto;
}

.teachers-profiles {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    float: left;
    justify-content: space-between;
    margin-top: 3%;
}

.profile {
    padding: 47% 4% 3%;
    width: 49%;
    border-radius: 60px;
    position: relative;
    margin-bottom: 2%;
    z-index: 1;
}

.profile:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 60px;
    /*background: linear-gradient(0deg, rgba(24, 24, 24, 0.97) 37%, rgba(250, 250, 250, 0) 74%);*/
    background: rgb(24, 24, 24);
    background: linear-gradient(0deg, rgba(24, 24, 24, 1) 15%, rgba(250, 250, 250, 0) 61%);
    z-index: 2;
}

.teachers-profiles--victoria,
.teachers-profiles--alex,
.teachers-profiles--t3,
.teachers-profiles--t4 {
    /*    background-image: url(src/img/t1.jpg);*/
    background-size: cover;
    background-position: center;
}

.profile-content {
    position: relative;
    z-index: 3;
}

.profiles-name {
    display: flex;
    align-items: center;
}

.profiles-name h3 {
    color: #FFF;
    font-size: 1.5vw;
    /* font-family: 'Object Sans', sans-serif; */
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 3% 0 0;
}

.profiles-age {
    color: #000;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.75em;
    /* font-family: 'Object Sans', sans-serif; */
    font-style: normal;
    font-weight: 800;
    background-color: #fff;
}

.profiles-exp {
    display: flex;
    align-items: center;
    margin: 1% 0 2%;
}

.profiles-exp--img {
    margin-right: 3%;
}

.profiles-exp--text {
    color: #FFF;
    font-size: 1.2vw;
    /* font-family: 'Manrope', sans-serif; */
}

.profiles-education {
    border-top: 1px solid #FFF;
    padding-top: 3%;
    display: flex;
    justify-content: space-between;
    color: #FFF;
}

.profiles-education--block1,
.profiles-education--block2 {
    display: flex;
}

.profiles-education--text {
    padding-left: 30px;
}

.profiles-education--text p {
    margin: 10px 0;
    font-size: 1vw;
    /* font-family: 'Manrope', sans-serif; */
}

.education-title {
    display: flex;
    align-items: center;
    margin-left: -30px;
}

.education-title--img {
    margin-right: 10px;
}

.education-title--val {
    font-size: 1.2vw;
}

.profiles-education--lang p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.invite {
    width: 100%;
    background-color: #000;
    background-image: url(src/img/Group_b.svg);
    background-repeat: no-repeat;
    background-position: -25px -10px;
    background-size: 50%;
    display: flex;
    flex-wrap: wrap;
    float: left;
    border-top-right-radius: 60px;
    border-top-left-radius: 60px;
    margin: 3% 0 0;
    position: relative;
}

.invite-img {
    width: 50%;
    /* background-image: url(src/img/Group_b.svg); 
    background-repeat: no-repeat;
    background-position: -12px -7px;
    background-size: cover;
    border-radius: 60px;
    */
}

.invite-content {
    padding: 7% 3% 7% 7%;
    width: 50%;
}

.invite-content--title {
    color: #FFF;
}

.invite-content--text {
    color: #FFF;
    margin: 10% 0;
}

.invite-content--img {
    display: inline-block;
    position: absolute;
    left: 79%;
    bottom: 38%;
}

.invite-content--btn {
    display: inline-flex;
    align-items: center;
    background-color: #FCD338;
    padding: 0.5vw 1vw;
    border-radius: 30px;
    margin-top: 10%;
    cursor: pointer;
}

.button--text {
    color: #000;
}

.footer {
    width: 99%;
    margin: 8% 0.5% 0.5%;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #FCD338;
    display: flex;

}

.footer-fild {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    color: #000;
    font-size: 1.5vw;
    /* font-family: 'Manrope', sans-serif; */
}

.footer-contacts {
    margin: 4% 0;
}

.footer-contacts a {
    color: #000;
    font-size: 1.5vw;
    /* font-family: 'Manrope', sans-serif; */

}

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

.footer-linkbar {
    display: flex;
    justify-content: center;
    margin: 1% 0;
    width: 10%;
    flex-wrap: wrap;
}

.footer-linkbar--socialbtn {
    width: 2em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    padding: 8px;
    border-radius: 50%;
    margin: 5px;
}

.footer-linkbar--socialbtn img {
    width: 1.2em;
    height: 1.2em;
}

.footer-text {
    width: 100%;
    text-align: center;
    border-top: 1px solid;
    padding-top: 10px;
}



.contact-form,
.buyingform,
.textarea {
    width: 50%;
    margin: 5% auto;
    padding: 1% 4% 2%;
    color: #FFF;
    background: #000;
    border-radius: 30px;
    /* font-family: 'Manrope', sans-serif; */
    font-size: 1.5em;
}

.contact-form-header {
    color: #FFF;
    font-size: 1.5em;
    /* font-family: 'Manrope', sans-serif; */
    font-weight: 400;
    line-height: 118%;
    text-align: center;
    margin-bottom: 3vh;
}

.buyingform table {
    width: 100%;
}

.contact-form input,
.buyingform input,
.buyingform select {
    width: 100%;
    font-size: 1em;
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 1vh;
    margin-bottom: 3vh;
}

.contact-form input:focus,
.buyingform input:focus {
    box-shadow: 0 0 15px #FFF;
}

.contact-form input:hover,
.buyingform input:hover {
    box-shadow: 0 0 15px #FFF;
}

.paypalBTN {
    width: 10em;
}

.form-message {
    width: 100%;
    height: 120px;
    font-size: 1em;
    border-radius: 20px;
    margin-top: 1vh;
    margin-bottom: 3vh;
    padding: 10px 15px;
    resize: vertical;
}

/*custom checkbox
.control {
    font-family: 'Manrope',
        sans-serif;
    display: block;
    position: relative;
    padding-left: 30px;
    margin: 3% 0;
    padding-top: 3px;
    cursor: pointer;
    font-size: 1em;
}

.control-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.control-group p {
    width: 100%;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #f7f5ef;
    border: 0px solid #000000;
    border-radius: 20px;
}

.control:hover input~.control_indicator,
.control input:focus~.control_indicator {
    background: #cccccc;
}

.control input:checked~.control_indicator {
    background: #ffcc0d;
}

.control:hover input:not([disabled]):checked~.control_indicator,
.control input:checked:focus~.control_indicator {
    background: #0e6647d;
}

.control input:disabled~.control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}

.control input:checked~.control_indicator:after {
    display: block;
}

.control-checkbox .control_indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.control-checkbox input:disabled~.control_indicator:after {
    border-color: #7b7b7b;
}

.control-checkbox .control_indicator::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 4.413rem;
    height: 4.5rem;
    margin-left: -1.3rem;
    margin-top: -1.3rem;
    background: #f7fb2b;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}

@keyframes s-ripple {
    0% {
        transform: scale(0);
    }

    20% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes s-ripple-dup {
    0% {
        transform: scale(0);
    }

    30% {
        transform: scale(1);
    }

    60% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.control-checkbox input+.control_indicator::before {
    animation: s-ripple 250ms ease-out;
}

.control-checkbox input:checked+.control_indicator::before {
    animation-name: s-ripple-dup;
}

---custom checkbox---*/
/* custom radiobutton */
.control-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.rbheader {
    margin-left: 2%;
}

.control-group p {
    width: 100%;
}

.control {
    /* font-family: 'Manrope', sans-serif; */
    display: block;
    position: relative;
    padding-left: 30px;
    margin: 3% 0;
    padding-top: 3px;
    cursor: pointer;
    font-size: 1em;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border: 0px solid #000000;
    border-radius: undefinedpx;
}

.control:hover input~.control_indicator,
.control input:focus~.control_indicator {
    background: #cccccc;
}

.control input:checked~.control_indicator {
    background: #FCD338;
}

.control:hover input:not([disabled]):checked~.control_indicator,
.control input:checked:focus~.control_indicator {
    background: #FCD338;
}

.control input:disabled~.control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}

.control input:checked~.control_indicator:after {
    display: block;
}

.control-radio .control_indicator {
    border-radius: 50%;
}

.control-radio .control_indicator:after {
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #ffffff;
    transition: background 250ms;
}

.control-radio input:disabled~.control_indicator:after {
    background: #7b7b7b;
}

.control-radio .control_indicator::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 4.5rem;
    height: 4.5rem;
    margin-left: -1.3rem;
    margin-top: -1.3rem;
    background: #FCD338;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}

.footer-text {
    display: flex;
    justify-content: space-around;
}

.footer-text--license a {
    max-width: 0 10px;
    color: #000;
    cursor: pointer;
}

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

.textarea-cross {
    position: relative;
    left: 100%;
    cursor: pointer;
}

@keyframes s-ripple {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    20% {
        transform: scale(1);
    }

    100% {
        opacity: 0.01;
        transform: scale(1);
    }
}

@keyframes s-ripple-dup {
    0% {
        transform: scale(0);
    }

    30% {
        transform: scale(1);
    }

    60% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.control-radio input+.control_indicator::before {
    animation: s-ripple 250ms ease-out;
}

.control-radio input:checked+.control_indicator::before {
    animation-name: s-ripple-dup;
}

/* ---custom radiobutton--- */
.form-message:focus {
    box-shadow: 0 0 15px #FFF;
}

.form-message:hover {
    box-shadow: 0 0 15px #FFF;
}

#polit-checkbox {
    width: 15px;
    height: 15px;
    margin-bottom: 1vh;
    background-color: #FCD338;
}

form a {
    color: #FFF;
}

form a:hover {
    text-decoration: underline 1px solid #FFF;
}

.contact-form label {
    margin-left: 2%;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    background-color: #FCD338;
    padding: 5px 10px;
    border-radius: 30px;
    margin-top: 10%;
}

.hidden {
    opacity: 0;
}

.hidden-d {
    display: none;
}

@media screen and (max-width: 1200px) {
    .header-title {
        font-size: 8rem;
    }

    .header-description {
        font-size: 1.7rem;
    }

    .navigation-lang--lang {
        font-size: 1.3vw;
    }

    .navigation-navbar--pill {
        font-size: 1.1rem;
        margin: 0 20px;
    }

    .clodchat {
        font-size: 1.3rem;
    }

    .coursescards-cards--card {
        width: 32%;
        border-radius: 20px;
        padding: 2%;
    }

    .level {
        font-size: 1.3rem;
        padding: 8px;
    }

    .card-token {
        padding: 8px 0 8px 8px;
    }

    .cadr-description--title {
        font-size: 1.3rem;
    }

    .cadr-description--text,
    .club-content-details--text {
        font-size: 0.9rem;
    }

    .card-button,
    .card-button2 {
        width: 180px;
    }

    .card-button--text {
        font-size: 0.9rem;
    }

    .club-content,
    .club-content-details {
        padding: 3%;
        width: 50%;
    }

    .club-content--title,
    .teachers-content--title,
    .club-content-details--title {
        font-size: 2.3rem;
    }

    .club-img,
    .teachers-img {
        width: 90%;
    }

    .teachers-content {
        padding: 3% 3% 2% 3%;
    }

    .profiles-name h3 {
        font-size: 1.3rem;
    }

    .profiles-education--text p {
        margin: 5px 0;
        font-size: 0.9rem;
    }

    .education-title--val {
        font-size: 1rem;
    }

    .profiles-education--lang p {
        font-size: 1rem;
        margin: 4px 0;
    }

    .invite-content {
        padding: 3%;
    }

    .invite-content--title {
        font-size: 2.3rem;
    }

    .teachers-content--text {
        font-size: 1.5rem;
    }

    /* .invite-content--img {
        position: relative;
        left: -14%;
        bottom: -54px;
    } */
}

@media screen and (max-width: 1050px) {
    .header-navigation-large {
        display: none;
    }

    .header-navigation-mobile {
        display: flex;
    }

    .navigation-logo img {
        height: 100%;
    }

    .logo {
        height: 3em;
    }

    .navigation-navbar--pill {
        width: 100%;
        text-align: center;
        padding: 1% 0;
        border-bottom: #000 solid 1px;
    }

    .navigation-navbar--pill:hover {
        scale: 1.02;
        box-shadow: 0 2px 5px #464545db;
        transition: 0.3s;
    }

    .navigation-lang--current {
        width: 9vw;
        height: 100%;
    }

    .navigation-lang {
        margin-left: 15px;
        font-size: 2vw;
    }


    /* custom select */
    .navigation-lang-custom {
        width: 100%;
        margin-left: 10px;
    }

    .select {
        padding: 6px 10px;
    }

    .select select {
        font-size: 20px;
    }

    .select img {
        height: 20px;
    }

    /* ---custom select--- */
    .navigation-links {
        display: none;
    }

    .header-title {
        font-size: 10vw;
    }

    .header-description {
        font-size: 3vw;
    }

    .clodchat {
        font-size: 2vw;
        padding: 30px;
    }

    .coursescards-cards {
        display: block;
    }

    .coursescards-cards--card {
        width: 80%;
        border-radius: 20px;
        padding: 2%;
        margin: 20px auto;
    }

    .cadr-description--text,
    .club-content-details--text {
        font-size: 1.2rem;
    }

    .card-token p {
        font-size: 1.2rem;
    }

    .token {
        font-size: 1.2rem;
        width: 60%;
    }

    .club-content--title,
    .teachers-content--title,
    .invite-content--title,
    .club-content-details--title {
        font-size: 4vw;
    }

    .invite-content--title {
        font-size: 3.5vw;
    }

    .profiles-name h3 {
        font-size: 1.1rem;
    }

    .profiles-exp--text {
        font-size: 0.95rem;
    }

    .education-title--val {
        font-size: 0.9rem;
    }

    .club-content--description,
    .teachers-content--text,
    .invite-content--text {
        font-size: 2.1vw;
    }

    .club-content--tokens {
        width: 100%;
    }

    /* .invite-content--img {
        position: relative;
        left: -4%;
        bottom: -35px;
    } */

    .button--text {
        font-size: 1.8vw;
    }

    .footer-linkbar {
        width: 30%;
    }

    .footer-contacts {
        margin: 1% 0;
    }

    .contact-form,
    .buyingform,
    .textarea {
        width: 60%;
    }


}

@media screen and (max-width: 770px) {
    .wrapper {
        padding: 0;
    }

    .header-content--images {
        display: none;
    }

    .header-navigation {
        border-radius: 0 0 10px 10px;
    }

    .navigation-lang--lang {
        font-size: 2vw;
    }

    .navigation-lang--current {
        width: 100%;
    }

    .navigation-lang--current img {
        display: none;
    }

    /* custom select 
    .select {
        padding: 8px 32px 8px 20px;
    }

    .select select {
        font-size: 2.5vw;
    }

    .select img {
        height: 2.5vw;
    }

    .select_arrow {
        top: 41%;
        right: 12%;
        border-width: 1.5vw 1vw 0 1vw;

    }

    ---custom select--- */

    .header {
        border-radius: 0 0 30px 30px;
        padding: 3%;
        padding-bottom: 5%;
    }

    .header-title {
        font-size: 12vw;
    }

    .header-description {
        font-size: 4vw;
    }

    .header-button--text {
        font-size: 4vw;
    }

    .header-button--img {
        width: 10vw;
        height: 100%;
    }

    .header-button {
        padding: 1vw 1.5vw;
    }

    .coursescards,
    .club,
    .teachers {
        border-radius: 30px;
        border: none;
    }

    .button--text {
        font-size: 3vw;
    }

    .token {
        font-size: 3vw;
        padding: 3vw 2.5vw;
        width: 43%;
    }

    .token-img {
        margin-right: 2.5vw;
    }

    .button--img {
        height: 4vw;
    }

    .coursescards-header {
        margin-bottom: 10vw;
        font-size: 6vw;
        line-height: 100%;
    }

    .coursescards-cards--card {
        width: 100%;
        padding: 5%;
    }

    .card-token p {
        font-size: 2.5vw;
    }

    .cadr-description--title {
        font-size: 3vw;
    }

    .cadr-description--text,
    .club-content-details--text {
        font-size: 2vw;
    }

    .club-content--title,
    .teachers-content--title,
    .invite-content--title,
    .club-content-details--title {
        font-size: 6vw;
        margin: 5vw 3% 10vw;
    }


    .club {
        flex-direction: column;
    }

    .teachers {
        flex-direction: column-reverse;
    }

    .club-img,
    .teachers-img {
        width: 100%;
        padding-bottom: 80%;
        border-radius: 30px;
    }

    .teachers-content--img {
        display: none;
    }

    .club-content,
    .club-content-details,
    .teachers-content {
        width: 100%;
    }

    .club-content--description,
    .teachers-content--text,
    .invite-content--text {
        font-size: 3vw;
    }

    .teachers-profiles {
        flex-direction: column;
    }

    .profile {
        width: 100%;
        border-radius: 30px;
        padding-top: 70%;
        margin-bottom: 5%;
    }

    .profile:after {
        border-radius: 30px;
    }

    .invite {
        border-radius: 30px;
        background: #000;
    }

    .invite-content {
        width: 100%;
        border-top-right-radius: 30px;
        border-top-left-radius: 30px;
        padding: 5% 5% 5% 38%;
        background-color: #000;
        background-image: url(src/img/Group_b.svg);
        background-size: 35vw;
        background-repeat: no-repeat;
        align-items: end;
        text-align: right;
    }

    .invite-img,
    .invite-content--img {
        display: none;
    }

    .invite-content--title {
        font-size: 1.2rem;
        text-align: center;
    }

    .footer-fild,
    .footer-fild a {
        font-size: 1em;
    }

    .footer-linkbar--socialbtn img {
        width: 1.2em;
        height: 1.2em;
    }

    .contact-form,
    .buyingform,
    .textarea {
        width: 90%;
    }

    .close-form {
        padding: 3px;
    }

    .textarea-cross {
        left: 90%;
    }

}

@media screen and (max-width: 500px) {
    .navigation-lang--lang {
        font-size: 2em;
    }

    /* custom select 
    .select {
        padding: 8px 32px 8px 20px;
    }

    .select select {
        font-size: 2em;
    }

    .select img {
        height: 2em;
    }

    .select_arrow {
        top: 41%;
        right: 15%;
        border-width: 1.2em 0.7em 0 0.7em;
    }

     ---custom select--- */

    .card-token p,
    .token {
        padding: 5vw 2.5vw;
        font-size: 4vw;
    }

    .cadr-description--title {
        font-size: 5vw;
    }

    .cadr-description--text,
    .club-content-details--text {
        font-size: 3vw;
    }

    .club-content--description,
    .teachers-content--text,
    .invite-content--text {
        font-size: 5vw;
    }

    .button--text {
        font-size: 4vw;
    }

    .button--img {
        height: 7vw;
    }

    .footer-contacts {
        width: 100%;
        margin-top: 5%;
        text-align: center;
    }

    .footer-linkbar {
        display: flex;
        margin: 4% 0;
        width: 100%;
        justify-content: center;
    }

    .contact-form,
    .buyingform,
    .textarea {
        width: 95%;
        font-size: 1.1em;
    }
}

@media screen and (min-width: 1600px) {
    .select {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        width: 100%;
        background-color: #000;
        padding: 8% 13%;
    }
}