@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Oswald:wght@200..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Rubik", sans-serif;
}

body {
    background-color: #0F0522;
}

header {
    position: relative;
    position: fixed;
    top: 0;
    height: 96px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgb(0, 0, 0, 50%);
    z-index: 5;
}

.header_in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1224px;
}

.hero_image {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


.auth {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header_actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(77, 143, 231, 0.4);
    background: rgba(29, 31, 58, 0.7);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

.lang-switch .lang-button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-switch .lang-button:hover {
    color: #ffffff;
}

.lang-switch .lang-button.active {
    color: #ffffff;
    background: linear-gradient(136deg, rgba(233, 125, 152, 1) 0%, rgba(214, 87, 140, 1) 100%);
    box-shadow: 0 12px 30px rgba(233, 125, 152, 0.35);
}

.lang-switch .lang-button:focus-visible {
    outline: 2px solid rgba(233, 125, 152, 0.6);
    outline-offset: 2px;
}

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 28px;
    padding-top: 0px;
}

.hero {
    width: 100%;
    max-width: 1224px;
}

h1 {
    margin-top: 140px;
    font-size: 48px;
    font-weight: 500;
    color: white;
    max-width: 600px;
    margin-bottom: 60px;
}

.button {
    padding: 13px 32px;
    border: 1px solid #E97D98;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
}

.button_fill {
    padding: 13px 32px;
    border: 1px solid #E97D98;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    background: #E97D98;
    background: linear-gradient(136deg, rgba(233, 125, 152, 1) 0%, rgba(214, 87, 140, 1) 100%);
}

.skills {
    max-width: 1224px;
    margin-top: 190px;
    display: flex;
    gap: 24px;
}

.skill {
    position: relative;
    width: 100%;
    background-color: #2F3254;
    border-radius: 40px;
    height: 176px;
    padding: 24px;
}

.skill img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -22px;
    border-radius: 100%;
    box-shadow: 0px 4px 16px #6bacf6a4;
}

.skill .line {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 1px solid #4D8FE7;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 24px;
}

.skill .line h2 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.products {
    max-width: 1224px;
    width: 100%;
    margin-top: 90px;
}

.products .title {
    font-size: 56px;
    color: white;
}

.box {
    margin-top: 44px;
    width: 100%;
    display: flex;
    gap: 24px;
}

.product {
    width: 100%;
    border-radius: 40px;
    border: 1px solid #FF7606;
    background: #1D1F3A;
    padding: 0px 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
}

.product img {
    width: 194px;
}

.tirs {
    width: 100%;
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.tir {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;


}

.tirs_2 .tir .name {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #32344E;
    background-image: none;
    font-size: 15px;
}

.tirs_2 .tir .name img {
    width: 24px;
    height: 24px;
}

.name {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-radius: 4px;
    background-image: linear-gradient(135deg, #E97D98, #D6578C);
    color: white;
}

.t2 .name {
    background-image: linear-gradient(135deg, #6CE889, #50B25B);
}

.t3 .name {
    background: #4D8FE7;
}

.price {
    background: #272944;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 4px;
    color: white;
}


.menu_icon {
    display: none;
    margin-left: 16px;
}

.keys {
    display: none;
    width: 100%;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 22px;
}

.keys div {
    font-size: 16px;
    padding: 10px;
    background: #40436D;
    color: white;
    border-radius: 4px;
}


.bottom {
    max-width: 1224px;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 60px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 170px;
}

.tgbig {
    width: 116px;
}

.tgmin {
    width: 20px;
}

.bottom button {
    background-color: white;
    color: #4D8FE7;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    font-size: 14px;
    border-radius: 100px;
    outline: none;
    border: none;
    cursor: pointer;
}

.bottom p {
    font-size: 40px;
    color: black;
    text-align: center;
    font-weight: 600;
}

footer {
    position: relative;
    width: 100%;
    height: 40px;
    background-color: #1D1F3A;
    display: flex;
    justify-content: center;
}

footer p {
    color: white;
    opacity: .4;
}

footer a {
    color: white;
    opacity: .4;
}

.footer_in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1224px;
    padding: 0px 28px;
}


.footer_items {
    display: flex;
    gap: 32px;
}

.footer_items a {
    cursor: pointer;
}

.footer_items a:hover {
    opacity: 1;
}

.circle {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%) translateY(-20%);
    width: 200%;
    z-index: -1;
    aspect-ratio: 1/1;
    background: radial-gradient(circle, rgba(15, 5, 34, 1) 34%, rgba(252, 70, 107, 0) 100%);
}

.bot_content {
    position: relative;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1000px;
    width: 100%;
    overflow: hidden;
    z-index: -2;
}

.bgb {
    width: 80%;
    position: absolute;
    bottom: 20vw;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    z-index: 2;
}

.bg3 {
    width: 120%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    z-index: 3;
}

.p1 {
    width: 25%;
    position: absolute;
    bottom: 0;
    left: 13%;
    transform: translateY(45%);
    z-index: 4;
}

.p2 {
    width: 40%;
    position: absolute;
    bottom: 0;
    right: 7%;
    transform: translateY(28%);
    z-index: 4;
}


.gradient {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100vh;
    height: 321px;
    z-index: -1;
    background: linear-gradient(0deg, rgba(34, 193, 195, 0) 0%, rgba(15, 5, 34, 1) 20%, rgba(15, 5, 34, 1) 80%, rgba(15, 5, 34, 0) 100%);
}



.menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background-color: #0F0522;
    z-index: 90;
    padding: 16px;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.menu_header {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.menu_lang {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.linee {
    width: 100%;
    height: 1px;
    background: #40435F;
    margin-top: 32px;
    margin-bottom: 32px;
}


.menu a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
}



.close_x {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex   ;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1920px) {
    .gradient {
        position: absolute;
        width: 100%;
        left: 0;
        top: 66vh;
        height: 677px;
        z-index: -1;
        background: linear-gradient(0deg, rgba(34, 193, 195, 0) 0%, rgba(15, 5, 34, 1) 20%, rgba(15, 5, 34, 1) 80%, rgba(15, 5, 34, 0) 100%);
    }

    .p1 {
        width: 21%;
    }

    .p2 {
        width: 34%;
    }
}


@media (max-width: 1124px) {
    .skill .line h2 {
        font-size: 12px;
    }


    .box {
        margin-top: 44px;
        width: 100%;
        display: grid;
        gap: 24px;
        grid-template-columns: repeat(2, 1fr);
    }

    .bgb {
        width: 240%;
        bottom: 50vw;
    }

    .p1 {
        width: 30%;
        left: 0%;
    }

    .p2 {
        width: 55%;
        right: -10%;
    }
}


@media (max-width: 900px) {
    .skills {
        max-width: 1224px;
        margin-top: 190px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .skill .line h2 {
        font-size: 16px;
    }
}


.circle {
    display: none;
}

@media (max-width: 600px) {
    .skills {
        max-width: 1224px;
        margin-top: 8vw;
        display: grid;
        gap: 28px 15px;
        grid-template-columns: repeat(2, 1fr);
    }

    .circle {
        display: block;
    }

    .skill {
        padding: 8px;
        height: 136px;
        border-radius: 24px;
    }

    .skill .line h2 {
        font-size: 12px;
    }

    .skill img {
        width: 64px;
        top: -24px;
    }


    .auth {
        display: none;
    }

    .header_actions {
        gap: 12px;
    }

    .lang-switch {
        padding: 2px;
    }

    .lang-switch .lang-button {
        font-size: 12px;
        padding: 6px 12px;
    }

    header {
        background: transparent;
        position: static;
    }

    .products .title {
        font-size: 24px;
        color: white;
    }

    .box {
        margin-top: 22px;

        width: 100%;
        display: grid;
        gap: 24px;
        grid-template-columns: repeat(1, 1fr);
    }


    .products {
        max-width: 1224px;
        width: 100%;
        margin-top: 50px;
    }

    h1 {
        font-size: 7vw;
        width: 80%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .button_fill2 {
        display: none;
    }

    .bottom p {
        font-size: 20px;
    }

    footer {
        height: 0px;
    }

    .footer_in {
        display: none;
    }


    .p1 {
        width: 61%;
        left: -11%;
        bottom: -5%;
    }

    .p2 {
        width: 100%;
        bottom: -5%;
        right: -36%;
    }

    header {
        padding: 16px;
        height: auto;
    }

    .main {
        padding: 16px;
        padding-top: 0px;
    }

    .logo {
        width: 140px;
    }
    


    .menu_icon {
        display: block;
        cursor: pointer;
    }

    
}


.menu {
    display: none;
}

@media (max-width: 600px) {
    .menu {
        display: block;
        transform: translateX(100%);
    }
}

