* {
    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;
    }
}


.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;
    }
}





.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;
    }
}



.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;
    }
}





.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;
    }
}







.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;
    }
}


