@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Borel&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sigmar&display=swap');
* {
    margin: 0;
    box-sizing: border-box;
}

:root {
    --white-color: #fff;
    --button-color: rgb(81 43 212);
    --button2-color: #D9D9D9;
    --black-color: #000000;
    --text-color: #2f2f2f;
    --section-color: #414141;
    --footer-color: #404040;
    --card-color: #1B1B1B;
    --card-border-color: #202020;
    --card-text-color: #B7B7B7;
    --opinion-color: #CBCBCB;
    --line-color: #454545;
    --light-writescetion-color: rgb(237 235 235);
    --paint-grad: linear-gradient(90deg,
            rgba(130, 79, 212, 1) 0%,
            rgba(183, 119, 212, 1) 14%,
            rgba(210, 150, 210, 1) 30%,
            rgba(245, 164, 211, 1) 58%,
            rgba(206, 127, 199, 1) 82%,
            rgba(180, 100, 180, 1) 100%);
}

body.light-mode {
    --black-color: #ffffff;
    --white-color: #000000;
    --text-color: #f0f0f0;
    --section-color: #e0e0e0;
    --footer-color: #d0d0d0;
    --button2-color: rgb(81 43 212);
    background-color: var(--black-color);
    color: var(--text-color);
}

li {
    list-style: none;
    transition: 0.5s;
}

.page-info ul li:hover {
    background-color: transparent;
    padding: 0;
    color: var(--black-color);
    border-radius: 0;
}

a {
    text-decoration: none;
}

body,
html {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black-color);
    scroll-behavior: smooth;
}

body.loading [data-aos] {
    opacity: 0 !important;
    transform: none !important;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--black-color);
    height: 110px;
    padding: 31px 20px;
    z-index: 998;
    border-bottom: solid 1px rgb(83, 83, 83);
    transition: 400ms all ease-in-out;
}

.logo img {
    width: 70px;
}

.header__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header--hidden {
    transform: translateY(-100%);
}

.navbar {
    display: none;
}

.navbar--hidden {
    transform: translateY(100%);
}

.navbar-desktop {
    display: flex;
    align-items: center;
    gap: 60px;
    transition: 500ms all ease-in-out;
}

.nav__list {
    display: flex;
    align-items: center;
}

.nav__list .nav__item .nav__link {
    text-align: center;
    color: var(--white-color);
    font-size: 16px;
    padding: .7rem;
}

.buttons__wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
}

.btn a {
    text-decoration: none;
    font-weight: 500;
}

.btn-1 a {
    color: var(--white-color);
    font-weight: 500;
    font-size: 14px;
}

.btn-1 {
    background-color: var(--button-color);
}

.btn-2 {
    background-color: var(--button-color);
}

.btn-2-2 {
    background-color: var(--button-color);
    padding: 10px 30px;
}

.btn-2 a {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
}

.sidebar {
    display: none;
}

.side__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.show-animate {
    display: none;
}

#cubic img {
    max-width: 600px;
    z-index: 0;
    user-select: none
}

.dark-ligth-switch {
    position: relative;
}

.logoimg {
    display: block;
}

.active {
    transform: translateX(0);
}

.animate-spin-slow {
    animation: spin 6s infinite;
}

#cubic {
    position: absolute;
    left: -10%;
    top: 20%;
    user-select: none;
    z-index: 0;
}

#cubic-1 {
    user-select: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.info__wrapper p {
    color: var(--white-color);
}

.info__wrapper h1 {
    font-weight: 700;
    color: var(--white-color);
    font-size: 90px;
    letter-spacing: 1px;
    background: linear-gradient(90deg,
            rgba(130, 79, 212, 1) 0%,
            rgba(183, 119, 212, 1) 14%,
            rgba(210, 150, 210, 1) 30%,
            rgba(245, 164, 211, 1) 58%,
            rgba(206, 127, 199, 1) 82%,
            rgba(180, 100, 180, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.btn-3,
.btn-4 {
    background-color: var(--button-color);
}

.btn-3 a,
.btn-4 a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 18px;
}

.btn-3 a {
    font-size: 19px;
}

.btn-3 {
    max-width: 340px;
}

.section1__wrapper p:first-child {
    margin: 75px auto 0;
}

.item {
    margin-top: 15px;
}

.item-last {
    max-width: 550px;
    margin-top: 20px;
    font-size: 13px;
    margin: 0 auto;
    color: #929292 !important;
    font-weight: 550;
}

#text {
    font-size: 50px;
    font-weight: 700;
    transition: 1s;
}

.hidden {
    opacity: 0;
    transition: opacity 1s ease-out;
}


.line-scroll {
    color: var(--white-color);
    font-size: 13px;
    font-weight: 900;
    transition: 300ms;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.social-links a i:hover {
    color: var(--button-color) !important;
}

.section1__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    height: 100dvh;

}

.main__paragraf {
    margin-top: 40px;
}

.section2__wrapper,
.section4__wrapper,
.section6__wrapper,
.section6-wrapper {
    background-color: var(--section-color);
    padding: 20px 30px;
    min-height: 280px;
    margin-top: 50px;
    text-wrap: wrap;
}

.section6__wrapper {
    margin-top: 250px;
}

.words__wrapper h1 {
    color: var(--white-color);
    font-size: 23px;
}



.info__wrapper {
    z-index: 9;
    text-align: center;
}

.info__wrapper3 {
    min-height: 240px;
}

.info__wrapper2 p {
    font-size: 20px;
    max-width: 900px;
    color: var(--white-color);
    margin-top: 20px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.info__wrapper3 {
    font-size: 20px;
    color: var(--white-color);
    margin-top: 20px;
    letter-spacing: 0.5px;
    font-weight: 400;

}

span {
    color: var(--button2-color);
    font-weight: 600;
}

#section3__wrapper {
    min-height: 400px;
    padding: 30px 30px;
}

.section8__wrapper {
    min-height: 400px;
    padding: 30px 30px;
}

.main__paragraf {
    background-color: var(--button2-color);
    width: 400px;
    padding: 15px 10px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    color: var(--black-color);
    font-size: 12px;
}

.main__paragraf-2 {
    background-color: var(--button2-color);
    width: 80%;
    max-width: 400px;
    padding: 15px 10px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    color: var(--black-color);
    font-size: 25px;
    font-weight: 700;
}


.projects__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.project {
    width: calc(33.33% - 15px);
    margin-top: 20px;
    animation: appearBottom 1s ease-out forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.projects__wrapper .project {
    box-sizing: border-box;
    width: 300px;
}

.project-action a p {
    color: var(--white-color);
}

.web-button {
    color: var(--white-color);
}

.text__wrapper h1 {
    color: var(--white-color);
    font-size: 35px;
    text-align: center;
    position: sticky;
    max-width: 600px;
    margin: 0 auto;
}

.text__wrapper .btn-2 {
    text-align: center;
}

.section5__wrapper {
    padding: 50px 30px;
    max-height: 100px;
}

.projects-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.project__main {
    width: 100%;
    width: 400px;
    position: relative;
    padding: 50px 0;
    flex: 1 1 300px;
}


.project__main-background {
    border-radius: 10px 10px 0 0;
    width: 100%;
}

.project__main-background img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    padding: 10px 0;
}


.project__main-text {
    background-color: var(--black-color);
    text-align: center;
    height: 90px;
    border-radius: 0 0 10px 10px;
    border: solid var(--line-color);
    border-width: 0 1px 1px 1px;
}

.project__main-text h1 {
    padding-top: 20px;
    font-size: 22px;
    color: var(--white-color);
}

.project__main-text p {
    color: var(--button2-color);
}

.provides ul {
    padding: 0;
}

.page-section h1 {
    font-size: 60px;
    color: var(--white-color);
    text-align: center;
}

.page-section h1 {
    font-size: 60px;
    color: var(--white-color);
    text-align: center;
}

.main-project h1 {
    font-size: 60px;
    color: var(--white-color);
    text-align: center;
}

.info__rectancle__wrapper button h1 {
    color: var(--white-color);
}

.info__rectancle__wrapper button p {
    color: var(--button2-color);
    font-weight: 600;
}

.part {
    font-size: 30px;
}

#cubic-1 img {
    max-width: 350px;
    position: absolute;
    top: 0;
    left: -10%;
    transform: translate(0, 50%);
    transform: translate(50%, 0);
}

#cubic-2 img {
    max-width: 350px;
    position: absolute;
    top: 0;
    right: -10%;
    transform: translate(0, 50%);
    transform: translate(50%, 0);
}

.text__wrapper {
    position: relative;
    animation: appearBottom 1s ease-out forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.button-center {
    text-align: center;
}

.footer__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer {
    background-color: var(--footer-color);
    padding: 20px 10px;
    margin-top: 50px;
    transition: 1s;
}

.control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--footer-color);
}

.logo__wrapper img {
    width: 75px;
}

.logo__wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.line {
    padding: 45px 1px;
    background-color: var(--white-color);
}

.ul li a {
    color: var(--white-color);
    text-decoration: none;
}

.ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.button__wrapper2 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.right__part p {
    color: var(--white-color);
}

.left__part {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hovered {
    background-color: var(--button-color);
    padding: 10px 4px;
    color: var(--white-color);
    border-radius: 6px;
}

.page-section {
    margin-top: 170px;
}

.normal-part {
    font-weight: 700;
}

.color-char {
    color: var(--button-color);
    font-weight: 700;
}

.logo-wrapper,
.main-h1,
.page-info,
.buttons-wrapper {
    border-radius: 0;
}

.page-info ul li {
    color: var(--black-color);
    list-style: disc;
    font-weight: 700;
    font-size: 17px;
}

.buttons-wrapper {
    text-align: center;
    margin-top: 30px;
}

.price-info h1 {
    font-weight: 700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-style: normal;
    text-align: center;
    margin-top: 20px;
    color: var(--black-color);
}

.background {
    padding: 20px;
}

.contact-us-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 100px;
}

.contact-us-inputs {
    margin-top: 100px;
    color: var(--white-color);
}

.contact-us-inputs p {
    font-weight: 700;
    font-size: 30px;
}

.feedback-card {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 10px;
    display: none
}

.container-input {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.input-background {
    display: flex;
    width: 380px;
    height: 45px;
    border-radius: 40px;
    outline: none;
    padding: 10px;
}

.input-background h2 {
    font-size: 20px;
}

input {
    width: 340px;
    height: 45px;
    border-radius: 40px;
    outline: none;
    padding: 10px;
}

.screen {
    position: relative;
    background: #3e3e3e;
    border-radius: 15px;
}

.screen:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 0;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    z-index: -1;
}

.screen-header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #4d4d4f;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.screen-header-left {
    margin-right: auto;
}

.screen-header-button {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 3px;
    border-radius: 8px;
    background: white;
}

.screen-header-button.close {
    background: #ed1c6f;
}

.screen-header-button.maximize {
    background: #e8e925;
}

.screen-header-button.minimize {
    background: #74c54f;
}

.screen-header-right {
    display: flex;
}

.screen-header-ellipsis {
    width: 3px;
    height: 3px;
    margin-left: 2px;
    border-radius: 8px;
    background: #999;
}

.screen-body {
    display: flex;
}

.screen-body-item {
    flex: 1;
    padding: 50px;
}

.screen-body-item.left {
    display: flex;
    flex-direction: column;
}

.app-title {
    display: flex;
    flex-direction: column;
    position: relative;
    color: #ea1d6f;
    font-size: 26px;
}

.app-title:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 25px;
    height: 4px;
    background: #ea1d6f;
}

.app-contact {
    margin-top: auto;
    font-size: 12px;
    color: #888;
}

.app-form-group {
    margin-bottom: 15px;
}

.app-form-group.message {
    margin-top: 40px;
}

.app-form-control {
    resize: none;
}

.app-form-group.buttons {
    margin-bottom: 0;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

.app-form-control {
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #666;
    color: #ddd;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
    padding: 10px 20px;
}

label h2 {
    font-size: 19px;
    color: var(--white-color);
    font-weight: 650;
}

.app-form-control::placeholder {
    color: #666;
}

.app-form-control:focus {
    border-bottom-color: #ddd;
}

::-webkit-scrollbar {
    background-color: #666;
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--button-color);
    border-radius: 20px;
}

::selection {
    background-color: var(--button-color);
}

.app-form-button {
    background: none;
    border: none;
    color: #ea1d6f;
    font-size: 14px;
    outline: none;
}

.app-form-button:hover {
    color: #b9134f;
}

.credits {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    color: #ffa4bd;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: normal;
}

.credits-link {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.dribbble {
    width: 20px;
    height: 20px;
    margin: 0 5px;
}

.project-used h1 {
    font-size: 14px;
    margin-bottom: 5px;
}

.main-projects {
    margin-top: 130px;
}

.my-projects {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 70px;
    transition: 1s;
}

.cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 90px;
    padding: 90px 0;
}

.card {
    background-color: var(--card-color);
    width: 367px;
    height: 700px;
    border-radius: 47px;
    border: solid 4px var(--card-border-color);
    padding: 35px;
}

.packet-name {
    font-size: 32px;
    background: linear-gradient(-90deg, #565656 80%, #D9D9D9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

.opinion-info {
    margin-top: 30px;
    color: #CBCBCB;
    font-weight: 600;
}

.price-tag {
    position: relative;
    margin-top: 40px;

}

.price-value {
    font-size: 40px;
    font-weight: 700;
    margin-left: 30px;
}

.price-currency {
    position: absolute;
    top: -10px;
    font-size: 33px;
    font-weight: 700;
}

.colorful-rainbow-text {
    background: linear-gradient(90deg, rgba(130, 79, 212, 1) 0%, rgba(183, 119, 212, 1) 14%, rgba(178, 105, 173, 1) 30%, rgba(245, 164, 211, 1) 58%, rgba(206, 127, 199, 1) 82%, rgba(150, 74, 181, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
    margin-bottom: 34px;
}

.order-btn {
    width: 100%;
    height: 54px;
    background-color: var(--card-border-color);
    border: solid 2px var(--white-color);
    border-radius: 15px;
    font-size: 17px;
    font-weight: 600;
    margin-top: 33px;
    cursor: pointer;
    text-decoration: none;
    color: var(--white-color);
}

.app-form-control option {
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 30px;
}

.preference {
    display: block;
    margin-top: 25px;
}

.preference span {
    color: var(--white-color);
    font-size: 21px;
}

.preference-text {
    font-size: 16px;
    color: var(--opinion-color);
    margin-top: 17px;
    font-weight: 600;
}

.card-line {
    background-color: var(--line-color);
    height: 3px;
    width: 100%;
    margin-top: 35px;
}

.provides {
    margin-top: 30px;
}

.provides ul li {
    display: flex;
    align-items: center;
    color: var(--card-text-color);
    font-size: 14px;
    gap: 10px;
    margin-top: 16px;
}


.project {
    color: var(--white-color);
    background-color: var(--text-color);
    border-radius: 22px;
    transition: 1s;
    padding: 10px 0;
    flex: 1 1 500px;
    margin: 10px;
    max-width: 600px;
}

#contact-button-home {
    position: fixed;
    width: 100%;
    top: 85%;
    left: 92%;
    z-index: 999999;
    background-color: var(--button-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact-button-home img {
    width: 45px;
    height: 45px;
}

.techs h1 {
    color: var(--black-color);
    font-size: 20px;
}

.tech-stack-h1 {
    color: var(--white-color);
}

.tech img {
    color: var(--black-color);
    width: 50px;
}

.tech-stack-section {
    margin-top: 70px;
    padding: 30px 10px;
    background-color: #2f2f2f;
}

.website-disabled-message {
    position: fixed;
    bottom: 5%;
    right: 30px;
    background-color: #ff4d4d;
    color: var(--white-color);
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.website-disabled-message.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.techs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--white-color);
    border-radius: 20px;
    margin-top: 35px;
    padding: 20px;
}

.tech {
    position: relative;
    text-align: center;
    padding: 5px 10px;
    flex: 1 0 calc(20% - 20px);
    margin: 10px;
    transition: 500ms;
}

.tech:hover {
    background: linear-gradient(90deg, rgba(130, 79, 212, 1) 0%, rgba(183, 119, 212, 1) 14%, rgba(178, 105, 173, 1) 30%, rgba(245, 164, 211, 1) 58%, rgba(206, 127, 199, 1) 82%, rgba(150, 74, 181, 1) 100%);
    border-radius: 10px;
    transition: 0.5s ease;
}

.project-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 95%;
    border-radius: 20px;
    padding: 5%;
    max-height: 400px;
    margin: 0 auto;
}

.project-img img {
    transition: 200ms;
}

.project-actiom a img {
    width: 20px;
}

.project-img:hover img {
    transform: scale(1.1);
}

.theme-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: solid #929292 1px;
    border-radius: 7px;
    width: 40px;
    height: 40px;
    padding: 0;
    transition: 300ms ease-in-out;
}

.languageSwitcher {
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background-color: var(--black-color);
    color: var(--white-color);
    font-weight: 700;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: center;
    border: solid #929292 1px;
    user-select: none;
}

.languageSwitcher option {
    display: none;
}

.theme-button:hover {
    box-shadow: 0 0 5px 1px var(--button2-color);
}

.theme-button img {
    transition: transform 0.3s ease-in-out;
}

.light-mode .theme-button img {
    transform: rotate(180deg);
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.slider:before {
    background-color: white;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:checked+.slider:before {
    transform: translateX(26px);
}


body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.logo img {
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 768px) {
    .tech {
        flex-basis: calc(33.33% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .tech {
        flex-basis: calc(50% - 20px);
    }
}

.section7__wrapper {
    text-align: start;
    margin-top: 60px;
}

.comments-container {
    max-width: 1080px;
    margin: 0 auto;
}

.comments {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding: 40px 20px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-snap-align: start;
}

.comments::-webkit-scrollbar {
    display: none;
}

.comment {
    position: relative;
    flex: 0 0 320px;
    padding: 20px 20px;
    background-color: var(--text-color);
    color: var(--white-color);
    height: 270px;
    margin-right: 20px;
    border-radius: 5px;
    box-sizing: border-box;
    scroll-snap-align: start;
    transition: 200ms all;
    border-bottom: solid 4px var(--button-color);
    user-select: none;
}

.comment-name {
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(90deg,
            rgba(130, 79, 212, 1) 0%,
            rgba(183, 119, 212, 1) 14%,
            rgba(210, 150, 210, 1) 30%,
            rgba(245, 164, 211, 1) 58%,
            rgba(206, 127, 199, 1) 82%,
            rgba(180, 100, 180, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comment-character {
    font-size: 15px;
    letter-spacing: 0.5px;
}


.comment h1 {
    position: absolute;
    left: 7%;
    top: 16%;
    font-size: 15px;
}

.comment-text {
    margin-top: 20px;
    display: -webkit-box;
    --webkit-line-clamp: 3;
    --webkit-box-orient: vertical;
    overflow: hidden;
}

.wavy-line {
    --s: 4px;
    --b: 3px;
    --m: 1;
    background: linear-gradient(90deg,
            rgba(130, 79, 212, 1) 0%,
            rgba(183, 119, 212, 1) 14%,
            rgba(210, 150, 210, 1) 30%,
            rgba(245, 164, 211, 1) 58%,
            rgba(206, 127, 199, 1) 82%,
            rgba(180, 100, 180, 1) 100%);
    --R: calc(var(--s)*sqrt(var(--m)*var(--m) + 1) + var(--b)/2);
    height: calc(2*var(--R));
    width: 100%;
    --_g: #0000 calc(99% - var(--b)), #000 calc(101% - var(--b)) 99%, #0000 101%;
    mask:
        radial-gradient(var(--R) at left 50% bottom calc(-1*var(--m)*var(--s)), var(--_g)) calc(50% - 2*var(--s)) calc(50% - var(--s)/2 - var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x,
        radial-gradient(var(--R) at left 50% top calc(-1*var(--m)*var(--s)), var(--_g)) 50% calc(50% + var(--s)/2 + var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x;
}

.sec-top-text {
    background-color: var(--button2-color);
    width: 400px;
    padding: 15px 10px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    color: var(--black-color);
    animation: appearLeft 1s ease-out forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.fullinfo {
    position: absolute;
    left: 7%;
    top: 75%;
}

.fullinfo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#section10 a span {
    position: absolute;
    top: 105%;
    left: 50%;
    width: 25px;
    height: 40px;
    margin-left: -15px;
    border: 2px solid #fff;
    border-radius: 50px;
    box-sizing: border-box;
}

#section10 a span::before {
    position: absolute;
    top: 8px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sdb10 2s infinite;
    animation: sdb10 2s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
    0% {
        -webkit-transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes sdb10 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        transform: translate(0, 20px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

#preloader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-color);
    z-index: 9999;
}

#preloader.hidden {
    display: none;
}

.circle {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-color);
    box-shadow: 0 0 0 4px #ccc inset;
    overflow: visible;
}

.circle img {
    width: 140px;
    height: 130px;
    object-fit: contain;
    z-index: 2;
}

.circle::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--button-color);
    animation: pulse 1s ease-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    60% {
        transform: scale(1.3);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

@keyframes animate {
    0% {
        transform: translateX(-1px);
    }

    100% {
        transform: translateX(-50px);
    }
}

@media (max-width: 670px) {
    .page-section {
        text-align: center;
    }

    .page-section h1 {
        display: inline;
        font-size: 36px !important;
        letter-spacing: -1px;
    }


    .main-projects {
        text-align: center;
    }

    .main-project h1 {
        display: inline;
        font-size: 36px !important;
        letter-spacing: -1px;
    }

}

@media (max-width: 370px) {
    .info__wrapper .item-main {
        font-size: 35px !important;
    }

    .info__wrapper .item-last {
        font-size: 10px !important;
    }
}

@media (max-width: 440px) {

    .info__wrapper2 p,
    .info__wrapper3 p {
        font-size: 17px !important;
    }
}

@media (max-width: 540px) {

    .screen-body {
        flex-direction: column;
    }

    .screen-body-item.left {
        margin-bottom: 30px;
    }

    .app-title {
        flex-direction: row;
    }

    .app-title span {
        margin-right: 12px;
    }

    .app-title:after {
        display: none;
    }

    .project {
        max-width: 100% !important;
    }

    .section7__wrapper {
        gap: 10px;
    }
}

@media (max-width: 570px) {
    .item-main {
        font-size: 50px !important;
    }

    .item-last {
        font-size: 10px !important;
        max-width: 350px !important;
    }

    #section10 a span {
        width: 20px;
        height: 35px;
    }

    #section10 a span::before {
        top: 3px;
    }
}

@media (max-width: 600px) {
    .screen-body {
        padding: 40px;
    }

    .screen-body-item {
        padding: 0;
    }

    .project {
        max-width: 90%;
    }

    .scroll-down {
        margin-top: 30px;
    }

    .scroll-down img {
        width: 30px;
    }

    .line-scroll {
        font-size: 10px;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width : 400px) {
    .info__wrapper2 p {
        font-size: 15px;
    }

    .project-used h1 {
        font-size: 10px !important;
    }

    .info__wrapper3 p {
        font-size: 15px !important;
    }

    .footer__main img {
        margin: auto;
        margin-bottom: 20px;
    }

    .footer__main {
        text-align: center;
    }

    .line {
        display: none;
    }

    .header {
        padding: 31px 0px;
    }

    .right__part {
        border-top: solid 2px var(--white-color);
        padding: 9px 0 0 0;
    }

    .ul {
        justify-content: center;
    }

    .button__wrapper2 {
        justify-content: center;
    }

    ::-webkit-scrollbar {
        background-color: #666;
        width: 4.5px;
    }

    .web-button {
        display: none;
    }

    .item-last {
        font-size: 14px;
    }

    .nav__item p {
        font-size: 13px;
    }
}

@media (max-width: 440px) {
    .cards {
        flex-direction: column;
        gap: 40px;
        padding: 90px 15px;
    }

    .project__main-text {
        height: 70px;
    }

    .project__main-text h1 {
        font-size: 18px;
        padding-top: 13px;
    }

    .project__main-text p {
        font-size: 14px;
    }

    .card {
        width: 100%;
        height: auto;
        padding: 20px;
        border-radius: 25px;
    }

    .packet-name {
        font-size: 24px;
    }

    .opinion-info {
        font-size: 14px;
        margin-top: 15px;
    }

    .price-tag {
        margin-top: 20px;
        text-align: center;
    }

    .price-value {
        font-size: 28px;
        margin-left: 21px;
    }

    .price-currency {
        font-size: 20px;
        top: -5px;
    }

    .order-btn {
        height: 44px;
        font-size: 15px;
        margin-top: 25px;
    }

    .preference span {
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .preference-text {
        font-size: 14px;
        text-align: center;
        margin-top: 10px;
    }

    .card-line {
        margin-top: 25px;
    }

    .provides ul {
        padding-left: 15px;
    }

    .provides ul li {
        font-size: 13px;
        margin-top: 12px;
    }
}


@media (max-width : 470px) {
    .main-h1 {
        font-size: 10px !important;
    }

    .btn-2 {
        font-weight: 600;
    }

    .section2__wrapper {
        min-height: 340px;
        margin-top: 60px;
    }

    .section3__wrapper {
        padding: 20px 6px;
    }

    .section5__wrapper {
        padding: 20px 9px;
    }

    .section6-wrapper {
        padding: 20px 30px;
    }

    ::-webkit-scrollbar {
        background-color: #666;
        width: 5px;
    }

    .project-description h1 {
        font-size: 18px;
    }

    .project-action p {
        font-size: 13px;
    }

    #cubic {
        top: 40% !important;
        left: -30% !important;
    }

    .project-used h1 {
        font-size: 13px;
    }

    .project-used img {
        width: 20px;
        height: 20px;
    }

    .words__wrapper h1 {
        font-size: 17px;
    }

    .info__rectancle__wrapper h1 {
        font-size: 18px;
    }

    .info__wrapper3 p {
        font-size: 20px;
    }

    .main__paragraf {
        width: 80%;
        font-size: 0.7rem;
    }

    #cubic img {
        width: 350px;
        height: 350px;
    }
}

@media (max-width :480px) {
    .info__wrapper #text {
        font-size: 26px !important;
        margin-top: 10px;
    }

    .item-main {
        font-size: 40px !important;
    }

    .item-last {
        font-size: 12px !important;
        max-width: 90% !important;
        margin-top: 15px;
    }

    #preloader img {
        width: 120px;
        height: 100px;
    }

    .circle {
        width: 150px;
        height: 150px;
    }
}

@media (max-width : 808px) {
    .info__wrapper .item-last {
        font-size: 10px;
    }

    .info__wrapper #text {
        font-size: 35px;
    }

    .main-h1 {
        margin-bottom: 0;
    }

    .info__wrapper .item-main {
        font-size: 60px;
    }

    .project {
        width: calc(50% - 15px);
    }

    header .header__main .navbar-desktop {
        display: none;
    }

    header .header__main .sidebar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .navbar {
        position: fixed;
        display: block;
        background-color: var(--black-color);
        width: 100%;
        bottom: 0;
        left: 0;
        gap: 0;
        padding: 10px;
        z-index: 999;
        border-top: solid 1px rgb(83, 83, 83);
        padding: 0;
    }

    .nav__list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 0 auto;
        padding: 8px;
    }

    .website-disabled-message {
        bottom: 105px;
    }

    footer {
        margin-bottom: 70px;
    }

    .nav__list .nav__item .nav__link {
        padding: 6px;
    }

    .hovered {
        padding: 3px 3px;
    }

    .navbar p {
        color: var(--white-color);
        text-align: center;
    }

    .nav__list .nav__item a {
        display: block
    }

    .buttons__wrapper {
        display: flex;
        align-items: center;
        gap: 0;
    }

    .section1__wrapper {
        text-align: center;
    }

    #cubic {
        position: absolute;
        top: 9%;
        left: -30%;
    }

    #cubic-1 img,
    #cubic-2 img {
        display: none;
    }

    .button-center .btn-2 {
        left: 40%;
    }

    .footer__main {
        display: block;
        align-items: center;
    }

    .right__part {
        margin-top: 30px;
    }

    .button__wrapper2 {
        align-items: center;
    }

    .slider .slide-track {
        animation: scroll 28s linear infinite;
    }

    .cursor {
        display: none;
    }
}

@media (max-width : 1080px) {
    .info__wrapper p {
        color: var(--white-color);
    }

    .info__wrapper h1 {
        font-size: 80px;
    }

    footer {
        align-items: center;
        justify-content: center;
        gap: 30px;
        text-align: center;
    }

    .left__part {
        justify-content: center;
    }
}

@media (max-width : 1118px) {
    .my-projects {
        justify-content: center;
    }
}

@media (max-width : 960px) {
    .info__wrapper h1 {
        font-size: 70px;
    }

    .btn-3 a {
        font-size: 18px;
    }

    #cubic img {
        max-width: 430px;
    }

    .btn-1 a {
        font-size: 13px;
    }

    .btn-1 {
        padding: 10px;
    }

    .navbar-desktop {
        gap: 30px;
    }

    .info__wrapper {
        z-index: 1;
    }

    #cubic-1 img,
    #cubic-2 img {
        max-width: 300px;
    }

    #cubic {
        position: absolute;
        left: -20%;
        top: 40%;
    }

    .page-section h1 {
        font-size: 46px;
    }

    #text {
        font-size: 40px;
    }

    .item-last {
        font-size: 11px;
        max-width: 430px;
    }
}

@media (max-width : 390px) {
    .left__part {
        display: block;
    }

    .menu-wrapper2 ul li a {
        text-align: center;
    }

    .input-group__input,
    .input-group__input__submit {
        max-width: 320px;
    }

    .head h1 {
        font-size: 30px;
    }

    #cubic {
        left: -62%;
        top: 40%;
    }

    #cubic img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width : 1320px) {
    .project {
        width: 500px;
    }
}