.languageSwitcher {
    position: relative;
    display: inline-block;
}

.languageButton {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(150, 150, 150, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
}

.languageButton:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(150, 150, 150, 0.7);
}

.languageButton:focus {
    outline: none;
    border-color: rgba(150, 150, 150, 0.7);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.arrow {
    transition: transform 0.3s ease;
    color: #666;
    width: 15px;
    height: 15px;
}

.arrowOpen {
    transform: rotate(180deg);
}

.dropdownlanguage {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(150, 150, 150, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    min-width: 80px;
}

.languageOption {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.5px;
}

.languageOption:hover {
    background: rgba(0, 0, 0, 0.1);
}

.languageOption.LangActive {
    background: rgb(0, 0, 0);
    color: #fff;
}


@media (max-width: 768px) {
    .languageSwitcher {
        width: 100%;
    }

    .languageButton {
        width: 100%;
        padding: 12px 16px;
        font-size: 16px;
        font-weight: bold;
        background: transparent;
        border: 1px solid #e0e0e0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 8px;
        justify-content: space-between;
    }

    .languageButton:hover {
        background: #f8f9fa;
        border-color: #d0d0d0;
    }

    .label {
        font-size: 16px;
        font-weight: bold;
    }

    .arrow {
        width: 12px;
        height: 12px;
    }

    .dropdownlanguage {
        width: 100%;
        min-width: unset;
        background: white;
        border: 1px solid #e0e0e0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .languageOption {
        padding: 12px 16px;
        font-size: 16px;
        font-weight: bold;
        justify-content: flex-start;
    }

    .languageOption:hover {
        background: #f8f9fa;
    }

    .languageOption.active {
        background: #000;
        color: #fff;
    }
}

@media (min-width: 1025px) {
    .languageButton {
        padding: 13px 20px;
        font-size: 18px;
    }

    .label {
        font-size: 12px;
    }

    .arrow {
        width: 15px;
        height: 15px;
    }

    .dropdownlanguage {
        min-width: 80px;
    }

    .languageOption {
        padding: 8px 12px;
        font-size: 12px;
    }
}


.heroContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 40%;
}

.heroImage {
    display: block;
    width: 50%;
    pointer-events: none;
    user-select: none;
}

.heroImage video {
    display: block;
    object-fit: contain;
    width: 100%;
    height: auto;
    width: 100%;
    border: none;
    border-radius: 15px;

    pointer-events: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.heroTitle {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.highlight {
    color: #007bff;
}

.heroSubtitle {
    font-size: 18px;
    max-width: 80%;
}

.ctaButtons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.btnPrimary,
.btnSecondary {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btnPrimary {
    background: #007bff;
    color: #fff;
}

.btnPrimary:hover {
    background: #0056b3;
}

.btnSecondary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btnPrimary {
    border: 2px solid #007bff;
}

.btnSecondary:hover {
    background: rgba(0, 123, 255, 0.2);
}

@media (max-width: 1024px) {
    .heroContainer {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .hero,
    .heroImage {
        width: 100%;
    }

    .heroTitle {
        font-size: 42px;
        margin-bottom: 20px;
        max-width: 60%;
    }

    .heroSubtitle {
        font-size: 18px;
        max-width: 50%;
    }

    .ctaButtons {
        margin: 40px 0;
        display: flex;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .heroTitle {
        font-size: 32px;
        max-width: 100%;
    }

    .heroSubtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .btnPrimary,
    .btnSecondary {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .ctaButtons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 20px 0;
    }

    .btnPrimary,
    .btnSecondary {
        padding: 8px 10px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
}



.smallWrapper {
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.anotherSmallWrapper{
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 1024px) {
    .smallWrapper {
        margin: 0 auto;
        padding: 80px 30px 0 30px;
    }

    .anotherSmallWrapper {
        margin: 0 auto;
        padding: 0 30px 0 30px;
    }
}


@media (max-width: 576px) {
    .smallWrapper {
        margin: 0 auto;
        padding: 80px 20px 0 20px;
    }

    .anotherSmallWrapper {
        margin: 0 auto;
        padding: 0 20px 0 20px;
    }
}


.courses {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 120px;
}

.coursesHead {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
}

.seeAll,
.seeAllMobile {
    border: 1px solid #007bff;
    color: #007bff;
    padding: 8px 18px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    background-color: #fff;
    transition: 0.3s all ease-in-out;
}

.seeAll:hover {
    color: #fff;
    background-color: #007bff;
    transition: 0.3s all ease-in-out;
}

.coursesTitle {
    font-size: 56px;
    font-weight: bold;
    color: #333;
}

.coursesCards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.coursesCard {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 31%;
    height: auto;

    padding: 0 32px;
    border: 1px solid #d6d6d6;
    border-radius: 24px;
}

.coursesCard img {
    display: block;
    width: 100%;
    height: 40%;
    object-fit: contain;
    border: none;
}

.coursesCardDescription {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0;
    width: 100%;
}

.coursesCardDescription h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #272727;
}

.coursesCardDescription p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #333;
}

.courseBtn {
    padding: 12px 40px;
    border: 1px solid #007bff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0 auto;
    color: #007bff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
    background: white;
}

.courseBtn svg {
    width: 16px;
    height: auto;
}

.courseBtn svg path {
    fill: #007bff;
    transition: all 0.3s ease;
}

.courseBtn:hover {
    background: #007bff;
    color: white;
}

.courseBtn:hover svg path {
    fill: #fff;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .courses {
        margin-top: 60px;
    }

    .coursesHead {
        margin-bottom: 40px;
    }

    .coursesTitle {
        font-size: 45px;
    }

    .coursesCard {
        width: 32%;
        padding: 15px 15px;
        border-radius: 20px;
        justify-content: space-between;
    }

    .coursesCard img {
        border-radius: 12px;
        margin-top: 0;
    }

    .coursesCardDescription {
        padding: 20px 0 0 0;
    }

    .coursesCardDescription h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .coursesCardDescription p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .courseBtn {
        padding: 8px 16px;
        font-size: 14px;
        justify-content: space-between;
        gap: 0;
    }

    .courseBtn svg {
        width: 14px;
        height: auto;
    }
}

.seeAllMobile {
    display: none;
}


@media (max-width: 610px) {
    .courses {
        margin-top: 60px;
    }

    .coursesHead {
        margin-bottom: 30px;
    }

    .seeAllWrapper {
        display: none;
    }

    .seeAllMobile {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #007bff;
        color: #fff;
        margin-top: 20px;
        font-size: 16px;
        margin-left: auto;
    }

    .seeAllMobile:hover {
        color: #007bff;
        background-color: #fff;
        transition: 0.3s all ease-in-out;
    }

    .coursesTitle {
        font-size: 32px;
    }

    .coursesCards {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .coursesCard {
        width: 100%;
        padding: 15px 15px;
        border-radius: 20px;
    }

    .coursesCard img {
        border-radius: 12px;
        margin-top: 0;
    }

    .coursesCardDescription {
        padding: 20px 0 0 0;
    }

    .coursesCardDescription h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .coursesCardDescription p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .courseBtn {
        padding: 8px 16px;
        font-size: 14px;
        justify-content: space-between;
        gap: 0;
    }

    .courseBtn svg {
        width: 14px;
        height: auto;
    }
}


.seeAll {
    display: inline-block;
    transition: transform 0.2s ease;
}

.seeAll:hover {
    transform: scale(1.1) translateY(-2px);
}

.seeAll:active {
    transform: scale(0.95);
}



.chooseUs {
    text-align: center;
    padding: 120px 20px 0 20px;
    background-color: #ffffff;
}

.titleChooseUs {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.titleChooseUs span{
    color: #007bff;
}

.subtitle {
    font-size: 20px;
    line-height: 1.3;
    color: #666;
    max-width: 600px;
    margin: 0 auto 80px;
}

.reasonsFlex {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
    height: auto;
}

.reasonCard {
    background: #fff;
    padding: 30px 20px 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: left;
    width: calc(50% - 15px);
    transition: all 0.3s ease-in-out;
}

.reasonCard:hover {
    background-color: #007bffd4;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.reasonCard:hover h3 {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.reasonCard:hover p {
    color: #ffffffcd;
    transition: all 0.3s ease-in-out;
}

.reasonCard:hover .iconWrapper {
    background: #fff;
    color: #007bffd4;
    box-shadow: 1px 10px 10px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.iconWrapper {
    position: absolute;
    top: -12px;
    left: 12px;
    background: #007bffd4;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 2px 10px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.reasonCard h3 {
    font-size: 21px;
    margin: 20px 0 10px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease-in-out;
}

.reasonCard p {
    font-size: 16px;
    line-height: 1.3;
    color: #666;
    transition: all 0.3s ease-in-out;
}


@media screen and (max-width: 1024px) {

    .chooseUs{
        padding: 60px 0 0 0;
    }

    .reasonsFlex {
        justify-content: center;
    }

    .reasonCard {
        width: 100%;
        max-width: 500px;
    }

    .titleChooseUs {
        font-size: 42px;
    }

    .subtitle {
        font-size: 18px;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 610px) {
    .chooseUs{
        padding: 60px 0 0 0;
    }

    .titleChooseUs {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .reasonCard {
        padding: 25px 15px;
    }

    .reasonCard h3 {
        font-size: 18px;
    }

    .reasonCard p {
        font-size: 14px;
    }

    .iconWrapper {
        top: -10px;
        left: 10px;
        padding: 8px;
    }

    .reasonsFlex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}




.motivationContainer {
    background: #000;
    padding: 90px;
    text-align: center;
    border-radius: 20px;
    margin: 120px auto;
    width: 100%;
    background-image: url("/assets/images/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.heading {
    font-size: 73px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.heading span {
    color: #007bff;
}

.textMotivation{
    font-size: 21px;
    color: #d3d3d3;
    margin-bottom: 50px;
}

.button {
    display: inline-block;
    padding: 12px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border: 1px solid #007bff;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.button:hover {
    background: #0052aa;
    border: 1px solid #007bff;
}


@media screen and (max-width: 1024px) {
    .motivationContainer {
        padding: 70px 40px;
        margin: 80px auto;
    }

    .heading {
        font-size: 52px;
    }

    .textMotivation {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .button {
        padding: 10px 18px;
        font-size: 16px;
    }
}

@media screen and (max-width: 610px) {
    .motivationContainer {
        padding: 50px 20px;
        margin: 60px auto;
        border-radius: 16px;
    }

    .heading {
        font-size: 36px;
    }

    .textMotivation {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .button {
        padding: 10px 16px;
        font-size: 15px;
    }
}


.partnersContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.partnersContainer h1 {
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    font-family: "Montserratarm", sans-serif;
    letter-spacing: 0.4px;
    text-align: left;
    color: #333;
    margin-bottom: 80px;
}

.partnersCont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 40px 0;
}

.partners {
    display: flex;
    overflow: hidden;
    padding: 0 0 30px 0;
    align-items: center;
}

.toLeft {
    padding: 0 0 0 0;
}

.partnerLogo {
    flex: 0 0 auto;
    width: 12.5%;
    text-align: center;
    white-space: nowrap;
    animation: runRight 15s linear infinite;
}

.toLeft .partnerLogo {
    animation: runLeft 15s linear infinite;
}

.partnerLogo img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

@keyframes runRight {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-800%);
    }
}

@keyframes runLeft {
    0% {
        transform: translateX(-800%);
    }

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

@media (max-width: 1250px) and (min-width: 1081px) {
    .partnersContainer h1 {
        font-size: 40px;
        margin-bottom: 60px;
    }
    .partners {
        padding: 0 0 70px 0;
    }
}

@media (max-width: 1080px) and (min-width: 801px) {
    .partnersCont {
        padding: 0 0 30px 0;
    }
    .partnersContainer h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .partners {
        padding: 0 0 30px 0;
    }
    .partnerLogo {
        width: 20%;
    }
}

@media (max-width: 800px) and (min-width: 500px) {
    .partnersCont {
        padding: 0 0 20px 0;
    }
    .partnersContainer h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .partners {
        padding: 0 0 20px 0;
    }

    .partnerLogo {
        width: 30%;
    }
}

@media (max-width: 500px) {
    .partnersCont {
        padding: 0 0 20px 0;
    }
    .partnersContainer h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .partners {
        padding: 0 0 20px 0;
    }
    .partnerLogo {
        width: 30%;
        animation: runRight 15s linear infinite;
    }
}



.testimonialViewport {
    overflow: hidden;
    width: 100%;
}

.testimonialsWrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}




.testimonialContainer {
    display: block;
    text-align: center;
    padding: 0 0 0 0;
    max-width: 100%;
    margin: auto;
}

.headingTestimonial {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #222;
}

.headingTestimonial span {
    color: #007bff;
}

.mySwiper {
    padding: 30px 0;
}

.testimonialCard {
    border: 1px solid #333333;
    padding: 20px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease;
    flex: 0 0 32.28%;
}

.testimonialsWrapper{
    display: flex;
    gap: 20px;
}


.profileSection {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.profileImage {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #007bff;
    font-size: 17px;
    padding: 13px;
    letter-spacing: 3px;
}

.name {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.course {
    font-size: 14px;
    color: #777;
}

.text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #555;
}

.exploreCourses {
    font-size: 15px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.exploreCourses:hover {
    text-decoration: underline;
}


.paginationContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.navButton {
    background: none;
    border: 1px solid #007bff;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #007bff;
    transition: 0.3s ease;

    width: 35px;
    height: 35px;
}

.navButton:hover {
    background: #007bff;
}

.navButton:hover svg path {
    fill: #fff;
}

.navButton svg {
    width: 15px;
    height: auto;
    display: block;
}

.prev svg {
    transform: rotate(-140deg);
}
.next svg {
    transform: rotate(40deg);
}

.paginationText {
    width: 35px;
    font-size: 14px;
    color: #333;
}

@media (max-width: 1024px) {
    .heading {
        font-size: 42px;
    }

    .testimonialCard {
        padding: 16px;
    }

    .name {
        font-size: 18px;
    }

    .course {
        font-size: 13px;
    }

    .text {
        font-size: 13px;
    }
}

@media (max-width: 610px) {
    .heading {
        font-size: 36px;
    }
}


@media (max-width: 1023px) {
    .testimonialCard {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .testimonialCard {
        flex: 0 0 100%;
    }
}




.container {
    background-color: #111;
    border-radius: 20px;
    margin-top: 120px;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.title {
    color: #fff;
    font-size: 58px;
    font-weight: 500;
    margin-bottom: 40px;
}


.form {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}


.input {
    background-color: transparent;
    border: 1px solid #555;
    padding: 12px 15px;
    border-radius: 5px;
    color: #f7f7f7 !important;
    font-size: 16px;
    width: 250px !important;
    height: 50px;
    text-align: left;
}

.input::placeholder {
    color: #afafaf;
}

.input:focus {
    border-color: #888;
    outline: none;
    color: #fff;
}


.buttonContact {
    display: inline-block;
    padding: 12px 20px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 1px solid #828282;
    border-radius: 10px;
    font-size: 21px;
    line-height: 1;
    transition: background 0.3s ease;
    cursor: pointer;
}

.buttonContact:hover {
    background-color: #666;
}


.checkboxGroup {
    margin-top: 35px;
    color: #bbb;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
}


.checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #888;
    border-radius: 4px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}


.checkbox:checked {
    background-color: #444;
    border-color: #fff;
    position: relative;
}


.checkbox:checked::after {
    content: "✔";
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 1px;
    left: 4px;
}


.checkbox:hover {
    border-color: #fff;
}


.link {
    color: #fff;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}


.error {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    text-align: left;
}


@media (max-width: 1024px) {
    .container {
        padding: 40px 30px;
    }

    .title {
        font-size: 42px;
    }

    .form {
        gap: 10px;
        flex-direction: column;
    }
    .form div {
        width: 100%;
    }
    .input {
        width: 100% !important;
    }

    .buttonContact {
        font-size: 18px;
        padding: 10px 16px;
        width: 100%;
    }
}


@media (max-width: 610px) {
    .container {
        padding: 30px 20px;
        margin-top: 60px;
    }

    .title {
        font-size: 32px;
    }

    .form {
        flex-direction: column;
        gap: 8px;
    }

    .form div {
        width: 100%;
    }

    .input {
        width: 100% !important;
        max-width: 100%;
    }

    .buttonContact {
        width: 100%;
        font-size: 16px;
        padding: 10px;
    }

    .checkboxGroup {
        gap: 8px;
        font-size: 14px;
    }

    .checkboxGroup label {
        text-align: left;
    }

    .checkboxGroup input {
        min-width: 20px;
        width: 20px;
        height: 20px;
    }
}



input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: black;
    transition: all 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus {
    border: 1px solid #007bff;
}


.error {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    text-align: left;
}


@media (max-width: 1024px) {
    input[type="text"],
    input[type="email"] {
        font-size: 16px;
    }
}


@media (max-width: 576px) {
    input[type="text"],
    input[type="email"] {
        font-size: 13px;
        padding: 8px;
    }
}



.footerWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #000;
}

.footerContainer {
    height: auto;
    width: 100%;
    max-width: 1920px;
    background-color: #000;
    margin: 0 auto;
    display: flex;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    padding: 80px 30px 0 30px;
}

.footerItemsContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.footerLogoContainer {
    display: flex;
    justify-content: end;
    margin-right: 13%;
}

.footerLogoContainer a {
    text-decoration: none;
}

.footerLogoContainer img {
    display: block;
    width: 200px;
    height: auto;
    transition: transform 4s ease-in-out;
}

.footerItems {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 70%;
}

.footerItem {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff;
}

.footerItem h2 {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0;
    white-space: nowrap;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.3;
}

.footerItem ul {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    display: flex;
    padding-left: 0;
    list-style: none;
}

.footerItem ul li a {
    position: relative;
    color: #898989;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footerItem ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: white;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footerItem ul li a:hover {
    color: white;
}

.footerItem ul li a:hover::after {
    width: 100%;
}

.footerDescr {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid #2b2b2b;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.termsOfUse {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.footerDescr .termsOfUse a,
.footerDescr p {
    color: #898989;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footerDescrSl {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 250px;
}

.footerDescrSl .socialLink {
    margin-right: 1rem;
}

.socialLink svg {
    width: 18px;
    height: 18px;
}

.footerDescrSl .socialLink svg path {
    fill: #888;
    width: auto;
    height: auto;
    transition: fill 0.3s ease;
}

.footerDescrSl .socialLink:hover svg path {
    fill: #ffffff;
}

.footerDescr .termsOfUse a:hover {
    color: #fff;
    transition: all 0.3s ease;
}


@media (max-width: 1024px) {
    .footer {
        padding: 60px 20px 0 20px;
    }

    .footerLogoContainer {
        justify-content: center;
        margin: 0 auto 30px auto;
    }

    .footerLogoContainer {
        margin-bottom: 60px;
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .footerItems {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 30px;
    }

    .footerItem {
        width: 45%;
    }

    .footerDescr {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footerDescrSl {
        width: 100%;
        justify-content: flex-start;
    }

    .termsOfUse {
        justify-content: flex-start;
    }
}


@media (max-width: 610px) {
    .footer {
        padding: 40px 15px 0 15px;
    }

    .footerLogoContainer img {
        width: 160px;
    }

    .footerItem {
        width: 100%;
    }

    .footerItem h2 {
        font-size: 0.875rem;
    }

    .footerItem ul li a {
        font-size: 0.9rem;
    }

    .footerDescr {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        width: 100%;
    }

    .footerDescr p {
        font-size: 0.875rem;
        width: 100%;
        text-align: center;
    }

    .termsOfUse {
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        gap: 5px;
    }

    .footerDescrSl {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .socialLink svg {
        width: 16px;
        height: 16px;
    }
}


.navbarWrapper {
    position: fixed;
    top: 20px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 999;
}

.navbarContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1920px;
}

.logo {
    width: 200px;
    height: auto;
}

.navbar a:hover {
    text-decoration: underline;
}


.logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.navbar {
    display: flex;
    justify-content: center;
    position: relative;

    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(150, 150, 150, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5px;
    border-radius: 15px;
    width: fit-content;
    margin: auto;
}

.navItem {
    position: relative;
    z-index: 10;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 18px;
    white-space: nowrap;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.cursor {
    position: absolute;
    bottom: 5px;
    height: 40px;

    background: rgb(0, 0, 0);
    backdrop-filter: blur(27px);
    -webkit-backdrop-filter: blur(27px);
    transition: left 0.4s ease, width 0.3s ease;
    border-radius: 8px;
    z-index: 0;
    opacity: 0;
}

.active {
    color: #fff;
    transition: all 0.3s ease-in-out;
}



.sideActions {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 200px;
}

.registerBtn {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    border: 1px solid #007bff;
    transition: all 0.3s ease-in-out;
}


.blogBtn {
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #000000;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.blogBtn:hover,
.blogBtn.activeBlog {
    background: #000000;
    color: white;
    transition: all 0.3s ease-in-out;
}

.registerBtn:hover {
    background: #ffffff;
    color: rgb(0, 0, 0);
    border: 1px solid #007bff;
    transition: all 0.3s ease-in-out;
}


@media (max-width: 1240px) {
    .navbar {
        display: none;
    }

    .registerBtn {
        padding: 8px 14px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .logo {
        width: 35px;
        height: auto;
    }
}

.burger {
    display: none;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.burger svg {
    width: 30px;
    height: auto;
}

.burgerActive svg path:nth-of-type(2) {
    transform: translateX(4px);
    transition: all 0.3s ease;
}

.burgerInactive svg path:nth-of-type(2) {
    transform: translateX(0px);
    transition: all 0.3s ease;
}

@media (max-width: 1240px) {
    .burger {
        display: flex;
    }

    .sideActions {
        gap: 20px;
        width: auto;
    }

    .navbarWrapper {
        background-color: #fff;
        top: 0;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}



.mobileMenu {
    position: absolute;
    top: 55px;
    left: 0;

    transform: translateX(100%);
    transition: transform 0.3s ease;

    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 20px;
    z-index: 998;
}

.open {
    transform: translateX(0);
}

.mobileMenu a {
    text-decoration: none;
    color: #000;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    margin: 10px 0;
    position: relative;
}



.sideActions {
    display: flex;
    align-items: center;
    gap: 16px;
}


.mobileLanguageSwitcher {
    padding: 16px 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 16px;
    display: flex;
    justify-content: center;
}


@media (max-width: 768px) {
    .sideActions {
        gap: 12px;
    }


    .sideActions > div:first-child {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobileLanguageSwitcher {
        display: none;
    }
}



.wrapper {
    padding-top: 160px;
    padding-bottom: 160px;
}

@media (max-width: 1920px) {
    .wrapper {
        padding-top: 8.3vw;
    }
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.3s ease-in-out;
}




.slide-top {
    animation: slide-from-bottom 1s cubic-bezier(.25,.46,.45,.94) both;
}

@keyframes slide-from-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}




.slide-buttons {
    animation: slide-buttons 2s cubic-bezier(.25,.46,.45,.94) both;
}

@keyframes slide-buttons {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.scale-up-center-h1 {
    animation: scale-up-center-h1 1s cubic-bezier(.39,.575,.565,1.000) both;
    transform-origin: center;
}

@keyframes scale-up-center-h1 {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.scale-up-center-block {
    animation: scale-up-center-block 1s cubic-bezier(.39,.575,.565,1.000) both;
    transform-origin: center;
}

@keyframes scale-up-center-block {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}




.slide-left-to-right {
    animation: slide-left-to-right 1s cubic-bezier(.25,.46,.45,.94) both;
}

@keyframes slide-left-to-right {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.slide-right-to-left {
    animation: slide-right-to-left 1s cubic-bezier(.25,.46,.45,.94) both;
}

@keyframes slide-right-to-left {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}





.modalBackdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    backdrop-filter: blur(0px);
    background-color: rgba(0,0,0,0);
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.modalBackdrop.active {
    opacity: 1;
    backdrop-filter: blur(6px);
    background-color: rgba(0,0,0,0.5);
    pointer-events: all;
}

.registerModalContainer {
    background: white;
    padding: 25px;
    border-radius: 15px;
    transform: translateY(-22%);
    width: 550px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modalBackdrop.active .registerModalContainer {
    transform: translateY(0);
    opacity: 1;
}



.modalTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.modalTitle h1 {
    font-size: 36px;
    line-height: normal;
    color: #000;
}

.modalTitle h1 span {
    color: #007bff;
}

.modalTitle p {
    color: #000000bb;
    font-size: 18px;
}

.registerModalContainer form {
    margin-top: 30px;
}

.registerModalContainer label {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    gap: 10px;
    font-size: 14px;
    color: #000000bb;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: black;
    transition: all 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus {
    border: 1px solid #007bff;
}

.radioGroupTitle {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    color: #000000bb;
}

.radioGroup {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
}

.radioGroup label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    border: 1px solid #818181bb;
    border-radius: 10px;
    font-size: 14px;
    padding: 15px;
    width: 100%;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.radioGroup label:hover {
    background-color: #007bffe4;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

#submitBtnRegister {
    margin-top: 15px;
    padding: 12px;
    border: none;
    background: #007bff;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

#submitBtnRegister:hover {
    background: #007bff85;
}

.closeBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: black;
    transition: all 0.2s ease;
}

.closeBtn svg {
    width: 15px;
    height: 15px;
}

.dropdownRegister {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.dropdownButton {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdownButton:focus {
    border-color: #007bff;
    outline: none;
}

.dropdownArrow {
    color: #666;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}


.dropdownMenu {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
    display: none;
    transform-origin: top;
    transform: scaleY(1);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    animation: none;
}


.dropdownMenu.open {
    transform: scaleY(0);
    display: block;
    opacity: 1;
    animation: scale-down-center 0.3s ease-out forwards;
}

.dropdownMenu:not(.open) {
    animation: scale-up-center 0.3s ease-in forwards;
}


@keyframes scale-down-center {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes scale-up-center {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.5);
    }
}



.dropdownArrow.rotated {
    transform: rotate(180deg);
}

.dropdownItem {
    padding: 10px;
    text-align: left;
    font-size: 14px;
    color: black;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdownItem:hover {
    background-color: #007bff;
    color: white;
}

.dropdownItem.selected {
    background-color: #007bff;
    color: white;
}


.error {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    text-align: left;
}


@media (max-width: 1024px) {
    .registerModalContainer {
        width: 90%;
        padding: 20px;
        max-height: 80%;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .modalTitle h1 {
        font-size: 28px;
    }

    .modalTitle p {
        font-size: 16px;
    }


    .radioGroup label {
        width: 100%;
    }

    #submitBtnRegister {
        font-size: 13px;
        padding: 10px;
    }
}


@media (max-width: 576px) {
    .registerModalContainer {
        width: 95%;
        padding: 15px;
    }

    .modalTitle h1 {
        font-size: 24px;
        text-align: center;
    }

    .modalTitle p {
        font-size: 14px;
        text-align: center;
    }

    .registerModalContainer label,
    .radioGroupTitle {
        font-size: 13px;
    }


    .radioGroup label {
        width: 49%;
        padding: 10px;
        justify-content: flex-start;
    }

    .radioGroup {
        flex-wrap: wrap;
    }

    input[type="text"],
    input[type="email"],
    .dropdownButton {
        padding: 8px;
        font-size: 13px;
    }

    .dropdownMenu {
        font-size: 13px;
    }

    .dropdownItem {
        font-size: 13px;
    }

    #submitBtnRegister {
        font-size: 12px;
        padding: 10px;
    }

    .closeBtn svg {
        width: 14px;
        height: 14px;
    }
}



