@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
    --color-primary: #0b22fa;
    --color-primary-light: #2998ff;
    --color-secondary: #ff7730;
    --color-grey-light: #eee;
    --color-grey-dark: #999;
    --color-grey-dark-2: #333;
    --color-black: #000000;
    --color-white: #ffffff;
    --font-display: "Roboto", sans-serif;
    --step--2: clamp(0.56rem, 0.4986rem + 0.3072vw, 0.8442rem);
    --step--1: clamp(0.7rem, 0.608rem + 0.4598vw, 1.1253rem);
    --step-0: clamp(0.875rem, 0.7399rem + 0.6757vw, 1.5rem);
    --step-1: clamp(1.0938rem, 0.8979rem + 0.9792vw, 1.9995rem);
    --step-2: clamp(1.3672rem, 1.0865rem + 1.4034vw, 2.6653rem);
    --step-3: clamp(1.709rem, 1.3103rem + 1.9934vw, 3.5529rem);
    --step-4: clamp(2.1362rem, 1.5741rem + 2.8106vw, 4.736rem);
    --step-5: clamp(2.6703rem, 1.8827rem + 3.9382vw, 6.3131rem);
}

@keyframes runningTime {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
    html {
        font-size: 56.25%;
    }
}
@media only screen and (max-width: 56.25em) {
    html {
        font-size: 50%;
    }
}
@media only screen and (min-width: 112.5em) {
    html {
        font-size: 75%;
    }
}
html:has(.burger-icon__input:checked) {
    overflow: hidden;
}

body {
    box-sizing: border-box;
    max-width: 1800px;
    margin-inline: auto;
}

input {
    color: #f1f1f1 !important;
}
input::placeholder {
    color: #f1f1f1 !important;
}

body {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.7;
}

.heading {
    color: var(--color-white);
    position: relative;
}
.heading h3 {
    width: fit-content;
    padding: 1.5rem 3.5rem;
    border-radius: 0 5rem 0 5rem;
    background-color: var(--color-primary);
    font-size: clamp(1.25rem, 2vw, 1.6rem);
}
@media only screen and (max-width: 37.5em) {
    .heading h3 {
        padding: 1rem 2rem;
    }
}
.heading__underline {
    position: absolute;
    width: 100%;
    height: 0.2rem;
    background-color: var(--color-primary);
    left: 10%;
    bottom: 0;
    z-index: -1;
    border-radius: 10rem;
}

.heading:has(:lang(fa)) h3 {
    margin-left: auto;
    border-radius: 5rem 0 5rem 0;
}
.heading:has(:lang(fa)) .heading__underline {
    left: auto !important;
    right: 10%;
}

.heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.heading-line__title {
    font-size: var(--step-3);
    font-weight: bolder;
    letter-spacing: 0.2rem;
}
.heading-line__line {
    width: clamp(5rem, 6vw, 12rem);
    height: 0.4rem;
    background: var(--color-primary);
    margin-top: clamp(1.4rem, 2vw, 2.6rem);
}
.heading-line--primary {
    color: var(--color-primary);
}

.heading-line:has(:lang(fa)) {
    direction: rtl;
}

@media only screen and (max-width: 56.25em) {
    .heading2--main {
        width: 100% !important;
        text-align: center;
    }
}
.heading2__title {
    font-size: var(--step-3);
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-wrap-style: pretty;
}
.heading2__text {
    font-size: var(--step-0);
    text-wrap-style: pretty;
}
.heading2--primary:has(.heading2__title) > :first-child {
    color: var(--color-primary);
}
.heading2--small:has(.heading2__title) :first-child {
    font-size: var(--step-1);
    width: 70%;
}
.heading2--small:has(.heading2__title) :nth-child(2) {
    font-size: var(--step-0);
}

.heading2:has(:lang(fa)) {
    direction: rtl;
    width: 100% !important;
}

.my-8 {
    margin-block: 8rem;
}

.layout-padding {
    padding: 3rem;
}
@media only screen and (max-width: 56.25em) {
    .layout-padding {
        padding: 1rem;
    }
}

.font-smaller {
    font-size: var(--step--1);
}

.color-primary-main {
    color: var(--color-primary) !important;
}

.color-white-main {
    color: var(--color-white) !important;
}

.bg-primary-main {
    background-color: var(--color-primary) !important;
}

.faqs {
    --border-radius: 2rem;
    --arrow-right: url("data:image/svg+xml,<svg xmlns= 'http://www.w3.org/2000/svg' width= '16' height='16' fill= 'white' class= 'bi bi-arrow-right-circle' viewBox='0 0 16 16' > <path fill-rule= 'evenodd' d='M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z' /> </svg>");
    --bs-accordion-btn-icon-transform: 90deg;
}
.faqs > * {
    border-bottom: none !important;
    margin-bottom: 1rem !important;
}
.faqs__button {
    font-size: var(--step-1) !important;
    background: linear-gradient(
        to right,
        #c9c5ee,
        var(--color-primary)
    ) !important;
    border-radius: 0 0 var(--border-radius) var(--border-radius) !important;
    color: var(--color-white) !important;
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
    padding-left: max(1rem, 1vw);
    box-shadow: none !important;
    padding-block: 1.5rem;
}
.faqs__button::after {
    display: inline-block;
    content: "";
    vertical-align: -0.125em;
    background-image: var(--arrow-right) !important;
    background-repeat: no-repeat;
    background-size: 2.5rem 2.5rem;
    height: 2.5rem;
    width: 2.5rem;
    transform: rotate(-90deg) !important;
}
.faqs__button:focus {
    box-shadow: 0rem 0rem 0.4rem var(--color-primary);
}
.faqs__button.collapsed {
    border-radius: 5rem !important;
    background: var(--color-primary) !important;
}
.faqs__button.collapsed::after {
    transform: rotate(0deg) !important;
}
.faqs__body {
    background: linear-gradient(
        to right,
        #c9c5ee,
        var(--color-primary)
    ) !important;
    border-radius: 0 0 var(--border-radius) var(--border-radius) !important;
    color: var(--color-white) !important;
}

.faqs:has(:lang(fa)) .faqs__button::after {
    transform: rotate(-180deg);
    margin-right: auto;
    margin-left: 0;
}
.faqs:has(:lang(fa)) .faqs__button.collapsed::after {
    transform: rotate(-180deg) !important;
}
.faqs:has(:lang(fa)) .faqs__body {
    direction: rtl;
}

.arrow_button {
    width: 3rem;
    height: 3rem;
    border-radius: 50% !important;
    background-color: transparent !important;
    color: var(--color-white) !important;
    border: 2px solid var(--color-white) !important;
    font-size: 1.6rem;
    font-family: monospace;
    font-weight: bold;
    transition: 0.5s;
    cursor: pointer;
    box-sizing: content-box;
}
.arrow_button svg {
    width: 2.5rem;
    height: 2.5rem;
}
.arrow_button svg:focus-visible {
    outline: none !important;
    border-radius: inherit;
}
.arrow_button:active,
.arrow_button:focus {
    outline: none !important;
    transform: translateY(-1px);
}
.arrow_button:hover {
    background: var(--color-white) !important;
    color: var(--color-black) !important;
}
.arrow_button--circle {
    outline: 0 !important;
}
.arrow_button--circle:hover {
    background-color: transparent;
    color: #f1f1f1 !important;
}
.arrow_button--medium svg {
    width: 3.5rem;
    height: 3.5rem;
}

.banner {
    --border-raduis-min: 8vw;
    --border-raduis-max: 2rem;
    width: 100%;
    height: min(19vw, 18rem);
    border-radius: max(var(--border-raduis-min), var(--border-raduis-max)) 0
        max(var(--border-raduis-min), var(--border-raduis-max)) 0;
}
.banner figure {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-color: var(--color-primary);
}
.banner figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.blog-card {
    --border-radius: 2rem;
    width: 30rem;
    height: 40rem;
    border-radius: var(--border-radius);
    position: relative;
}
.blog-card__figure {
    background-color: var(--color-primary);
    border-radius: inherit;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 10;
    transition: all 0.4s 0.6s;
}
@media only screen and (max-width: 75em) {
    .blog-card__figure {
        height: 50%;
        box-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.4);
        position: initial;
    }
}
.blog-card__figure img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
.blog-card__info {
    position: absolute;
    bottom: 0;
    padding: 1rem;
}
@media only screen and (max-width: 75em) {
    .blog-card__info {
        position: initial;
    }
}
.blog-card__info a {
    text-decoration: none;
    color: var(--color-dark);
}
.blog-card__info h2 {
    font-size: var(--step-1);
    line-height: 1.25;
    font-weight: 700;
    width: 70%;
    text-wrap-style: pretty;
}
@media only screen and (max-width: 75em) {
    .blog-card__info h2 {
        width: 100%;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }
}
.blog-card__info p {
    font-size: var(--step--1);
    text-wrap-style: pretty;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
}
@media only screen and (max-width: 75em) {
    .blog-card__info p {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}
.blog-card__arrow {
    --corner-gap: 1.25rem;
    z-index: 15;
    position: absolute;
    color: var(--color-white);
    right: var(--corner-gap);
    top: var(--corner-gap);
    transform: rotate(-180deg);
    transition: transform cubic-bezier(0.6, -0.28, 0.735, 0.045) 0.4s,
        top 0.2s 0.4s, color 0.2s 0.6s;
}
@media only screen and (max-width: 75em) {
    .blog-card__arrow {
        transform: rotate(0deg);
    }
}
.blog-card__arrow svg {
    width: 2.75rem;
    height: 2.75rem;
}
.blog-card__arrow--initial {
    position: initial;
}
.blog-card:hover .blog-card__figure {
    height: 50%;
    box-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.4);
}
.blog-card:hover .blog-card__arrow {
    color: var(--color-primary);
    top: 62%;
    transform: rotate(0) translateY(-50%);
}
@media only screen and (max-width: 75em) {
    .blog-card:hover .blog-card__arrow {
        color: var(--color-white);
        top: var(--corner-gap);
        transform: none;
    }
}
.blog-card[data-hoverable] .blog-card__figure {
    height: 50%;
}
.blog-card[data-hoverable] .blog-card__arrow {
    color: var(--color-primary);
    top: 62%;
    transform: rotate(0) translateY(-50%);
}
@media only screen and (max-width: 75em) {
    .blog-card[data-hoverable] .blog-card__arrow {
        color: var(--color-white);
        top: var(--corner-gap);
        transform: none;
    }
}

.blog-card:has(:lang(fa)) {
    direction: rtl;
}
.blog-card:has(:lang(fa)) .blog-card__arrow {
    right: auto !important;
    left: 1.25rem;
}
@media only screen and (max-width: 75em) {
    .blog-card:has(:lang(fa)) .blog-card__arrow {
        transform: rotate(-90deg);
    }
}

.btn-text,
.btn-text:visited,
.btn-text:link {
    text-decoration: none !important;
    font-size: var(--step-0) !important;
    text-transform: capitalize;
    border-radius: 5rem !important;
    padding-inline: 3rem;
    background-color: transparent;
    border: 1px solid var(--color-white) !important;
    color: var(--color-white);
}
.btn-text--active {
    background-color: var(--color-white) !important;
    color: var(--color-primary) !important;
}

.burger-icon {
    --line-height: 0.24rem;
    background-color: transparent;
    box-shadow: none !important;
    border: none !important;
    cursor: pointer;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.burger-icon__lines {
    width: 60%;
    height: var(--line-height);
    background-color: var(--color-primary);
    position: relative;
    transition: all 0.3s;
}
.burger-icon__lines::after,
.burger-icon__lines::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: inherit;
    height: var(--line-height);
    transition: all 0.3s;
}
.burger-icon__lines::before {
    bottom: -0.75rem;
}
.burger-icon__lines::after {
    top: -0.75rem;
}
.burger-icon:has(.burger-icon__input:checked) .burger-icon__lines {
    width: 40%;
    height: 0;
    background-color: var(--color-secondary);
}
.burger-icon:has(.burger-icon__input:checked) .burger-icon__lines::after,
.burger-icon:has(.burger-icon__input:checked) .burger-icon__lines::before {
    border-radius: 3rem;
}
.burger-icon:has(.burger-icon__input:checked) .burger-icon__lines::before {
    bottom: 0.5rem;
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}
.burger-icon:has(.burger-icon__input:checked) .burger-icon__lines::after {
    top: 0;
    transform: rotate(-45deg);
}

.link-btn,
.link-btn:visited,
.link-btn:link {
    text-decoration: none !important;
    color: var(--color-white) !important;
    background-color: var(--color-primary) !important;
    border-radius: 0 2rem 0 2rem;
    font-size: var(--step-0);
}
.link-btn:hover {
    color: var(--color-white);
}

.link-btn--small {
    padding: 0.5rem 1.5rem !important;
}

.carousel {
    height: 60rem;
    overflow: hidden;
    position: relative;
    border-radius: 0 8rem 0 8rem;
    /* time running */
}
@media only screen and (max-width: 37.5em) {
    .carousel {
        height: 30dvh;
        border-radius: 2rem;
    }
}
.carousel__counter {
    bottom: 0;
    right: 0;
    color: #f1f1f1;
    z-index: 1000;
    font-size: xx-large;
    font-weight: 700;
    bottom: 1.5%;
    right: 3%;
}
.carousel .list .item {
    width: 15rem;
    height: 15rem;
    position: absolute;
    top: 70%;
    transform: translateY(-60%);
    left: 60%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: 1s;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
@media only screen and (max-width: 37.5em) {
    .carousel .list .item {
        width: 7rem;
        height: 7rem;
    }
}
.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}
.carousel .list .item:nth-child(3) {
    left: 67%;
}
@media only screen and (max-width: 37.5em) {
    .carousel .list .item:nth-child(3) {
        left: 70%;
    }
}
.carousel .list .item:nth-child(4) {
    left: calc(67% + 200px);
}
@media only screen and (max-width: 37.5em) {
    .carousel .list .item:nth-child(4) {
        left: calc(60% + 120px);
    }
}
.carousel .list .item:nth-child(5) {
    left: calc(67% + 400px);
}
@media only screen and (max-width: 37.5em) {
    .carousel .list .item:nth-child(5) {
        left: calc(60% + 320px);
    }
}
.carousel .list .item:nth-child(6) {
    left: calc(67% + 600px);
}
@media only screen and (max-width: 37.5em) {
    .carousel .list .item:nth-child(6) {
        left: calc(60% + 520px);
    }
}
.carousel .list .item:nth-child(n + 7) {
    left: calc(67% + 800px);
    opacity: 0;
}
@media only screen and (max-width: 37.5em) {
    .carousel .list .item:nth-child(n + 7) {
        left: calc(60% + 720px);
        opacity: 0;
    }
}
.carousel .timeRunning {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: var(--color-primary);
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}
.carousel__actions {
    z-index: 10000;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
}
@media only screen and (max-width: 37.5em) {
    .carousel__actions {
        position: initial;
    }
}
.carousel__arrows {
    bottom: 3%;
    left: 50%;
    z-index: 100;
    width: 450px;
    max-width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
}
@media only screen and (max-width: 37.5em) {
    .carousel__arrows {
        left: 3%;
        position: absolute;
    }
}
.carousel__arrows::before {
    content: "";
    position: absolute;
    width: 67%;
    height: 0.1rem;
    border-radius: 10rem;
    background-color: #f1f1f1;
    left: 20%;
}
@media only screen and (max-width: 37.5em) {
    .carousel__arrows::before {
        display: none;
    }
}
@media only screen and (max-width: 37.5em) {
    .carousel__arrows button {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.checkbox {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.checkbox:hover .checkbox__shape {
    border: 1px solid var(--color-grey-light);
}
.checkbox__shape {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid var(--color-grey-dark);
}
.checkbox:has(input:checked) {
    font-weight: 500;
    color: var(--color-grey-dark-2);
}
.checkbox:has(input:checked) .checkbox__shape {
    background-color: var(--color-grey-light);
    border-color: transparent;
}

.feature-card {
    border-radius: 2rem;
    border: none !important;
    box-shadow: 0.1rem 0.1rem 0.8rem rgba(0, 0, 0, 0.2);
}
.feature-card__title {
    width: 85%;
    letter-spacing: 0.1rem;
    text-wrap-style: pretty;
}
.feature-card__title--bold {
    font-weight: 800;
}
.feature-card__title--light {
    font-weight: 400;
}
.feature-card__text {
    font-size: 1rem;
    text-wrap-style: pretty;
}
.feature-card__footer-text {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
}
.feature-card--link {
    color: var(--color-white);
    height: 100%;
    background-color: var(--color-primary) !important;
}
.feature-card--link figure {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
}
.feature-card--link figure img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
.feature-card .arrow_button {
    border: none !important;
}
.feature-card .arrow_button:hover {
    background-color: transparent !important;
}

.feature-card:has(:lang(fa)) {
    direction: rtl;
}

.filter-box__list-items {
    max-height: 33rem;
    overflow: auto;
}
.filter-box__list-items::-webkit-scrollbar {
    width: 3px;
    display: none;
}
.filter-box__list-items::-webkit-scrollbar-thumb {
    background-color: var(--color-grey-light);
    border-radius: 10rem;
}
.filter-box__list-items::-webkit-scrollbar-track {
    background-color: var(--color-grey-dark);
    border-radius: 10rem;
}
.filter-box__list-items:hover::-webkit-scrollbar {
    display: block;
}

.logo {
    object-fit: cover;
    width: 12rem;
    height: 3rem;
}
.logo--white {
    width: 100%;
    height: 100%;
}

.navbar-mobile {
    display: none;
    transition: all 0.5s;
}
@media only screen and (max-width: 56.25em) {
    .navbar-mobile {
        display: block;
        position: fixed;
        right: 0;
        top: 0;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        transform: scale(0);
        opacity: 0;
        transform-origin: top right;
        border-radius: 50%;
        background-color: var(--color-primary);
        z-index: 20000;
    }
    .navbar-mobile ul {
        overflow: hidden;
    }
    .navbar-mobile ul li {
        width: min(20rem, 100%);
        padding-inline: max(1rem, 1vw);
        overflow: hidden;
        position: relative;
    }
    .navbar-mobile ul li a {
        font-size: clamp(1.6rem, 3vw, 2.8rem);
        font-weight: 700;
        word-spacing: 0.5rem;
        transform: translateY(5rem);
        opacity: 0;
    }
    .navbar-mobile ul li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background-color: var(--color-white);
        transition: all 0.4s;
    }
    .navbar-mobile ul li:hover {
        text-transform: uppercase;
    }
    .navbar-mobile ul li:hover::before {
        width: 100%;
    }
    .navbar-mobile ul li:hover a {
        color: var(--color-primary) !important;
        word-spacing: 1rem;
    }
    .navbar-mobile ul li:first-child a {
        opacity: 0;
        transition: transform 0.3s 0.3s;
    }
    .navbar-mobile ul li:nth-child(2) a {
        transition: transform 0.3s 0.8s;
    }
    .navbar-mobile ul li:nth-child(3) a {
        transition: transform 0.3s 1.2s;
    }
    .navbar-mobile ul li:nth-child(4) a {
        transition: transform 0.3s 1.5s;
    }
}

body:has(.burger-icon__input:checked) .navbar-mobile {
    width: 100%;
    height: 100%;
    transform: scale(1);
    border-radius: 0;
    opacity: 1;
}
body:has(.burger-icon__input:checked) .navbar-mobile ul li a {
    transform: translateY(0);
    opacity: 1;
}

.pagination {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 1.5rem;
}
.pagination__item.active span {
    background-color: #4657f4;
    color: white;
}
.pagination__link {
    color: var(--color-primary);
    text-decoration: none;
    display: block;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--step-1);
    border-radius: 100%;
}
.pagination__link:hover {
    background-color: #4657f4;
    color: white;
}
.pagination__controls {
    margin-inline: 2rem;
}
.pagination__controls:hover {
    background-color: transparent;
    color: var(--color-primary);
}
.pagination__controls svg {
    width: 3.5rem !important;
    height: 3.5rem !important;
}

.pagination:has(:lang(fa)) {
    direction: ltr;
}

.product-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: max(1rem, 1vw);
    align-items: flex-start;
}
.product-card figure {
    width: 100%;
    height: 20rem;
    border-radius: 2rem;
    box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.4);
    align-self: center;
}
.product-card figure img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: contain;
}
.product-card__name {
    text-decoration: none;
    font-weight: 700;
}
.product-card__description {
    color: var(--color-black);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    text-wrap-style: pretty;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.product-card:has(:lang(fa)) {
    direction: rtl;
}

.product-data__list {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.product-data__item {
    padding: 1.75rem 0;
    display: flex;
    gap: 0.5rem 2rem;
    flex-flow: wrap;
    border-bottom: 1px solid rgba(11, 35, 250, 0.3098039216);
}
.product-data__label {
    margin-right: auto;
    color: var(--color-grey-dark-2);
    text-transform: uppercase;
}
.product-data__value {
    margin-left: 0.5rem;
    font-weight: 400;
    color: #848383;
}

.product-data:has(:lang(fa)) .product-data__label {
    margin-right: 0 !important;
    margin-left: auto;
}

.slider-for {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 3rem;
}
.slider-for .slick-list {
    border-radius: 3rem;
}
.slider-for .slick-list .slick-track {
    height: 350px;
}
.slider-for img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
.slider-for .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
}
.slider-for .slider-prev {
    left: 1rem;
}
.slider-for .slider-next {
    right: 1rem;
}
.slider-for .slider-prev,
.slider-for .slider-next {
    visibility: hidden;
    opacity: 0;
    transition: all 0.15s;
}
.slider-for .slider-prev:hover,
.slider-for .slider-next:hover {
    transform: translateY(-50%);
}
@media screen and (max-width: 992px) {
    .slider-for .slider-prev,
    .slider-for .slider-next {
        opacity: 1;
        visibility: visible;
    }
}
.slider-for:hover .slider-prev,
.slider-for:hover .slider-next {
    visibility: visible;
    opacity: 1;
}

.service-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: max(1rem, 1vw);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    transform-origin: top;
    background: rgb(11, 34, 250);
    background: linear-gradient(
        310deg,
        rgb(11, 34, 250) 35%,
        rgba(11, 34, 250, 0.1444910728) 100%
    );
    transition: height 0.5s;
}
.service-card,
.service-card > * {
    z-index: 10;
    transition: all 0.4s;
}
.service-card figure {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background-color: var(--color-white);
    margin-bottom: 2rem;
}
.service-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card__text {
    transition: all 0.4s;
}
.service-card__link {
    display: none;
}
.service-card:hover {
    color: var(--color-white);
}
.service-card:hover::before {
    height: 100%;
}
.service-card:hover > *:not(.service-card__link) {
    transform: translateY(-0.5rem);
}
.service-card:hover .service-card__text {
    color: #eee !important;
}
.service-card:hover .service-card__link {
    display: block;
    animation: moveUp 0.5s 1;
}

@keyframes moveUp {
    0% {
        transform: scale(0);
    }
    55% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
.carausel-3-columns-cover {
    position: relative;
}

.carausel-3-columns-cover .carausel-3-columns {
    overflow: hidden;
    margin: 0 -12px;
}

.carausel-3-columns-cover .carausel-3-columns .carausel-3-columns__item {
    margin-inline: 0.5rem;
}

#carausel-3-columns-arrows {
    position: relative;
    width: 100%;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
}

.slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 4rem;
    text-align: center;
    border: 3px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    transition: all cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s;
}

.slider-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.slider-prev:hover {
    transform: scale(1.3) translateX(-0.5rem);
}

.slider-next:hover {
    transform: scale(1.3) translateX(0.5rem);
}

.position-relative {
    position: relative;
}

.blog-section__feature-card {
    display: flex;
}
@media only screen and (max-width: 75em) {
    .blog-section__feature-card {
        display: none;
    }
}
@media only screen and (max-width: 75em) {
    .blog-section__cards {
        flex: 0 0 auto !important;
        width: 100% !important;
    }
}

.blog-section__wrapper:has(:lang(fa)) {
    flex-direction: row-reverse;
}

.faq-section {
    position: relative;
    min-height: 40rem;
    overflow: hidden;
    margin-bottom: -3rem;
}
@media only screen and (max-width: 56.25em) {
    .faq-section {
        margin-bottom: 0;
    }
    .faq-section div:has(.heading-line__title) {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
.faq-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: -20%;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.75)),
        url("../images/faq-bg.svg");
    background-repeat: no-repeat;
    background-position: center;
    transform-origin: top center;
    background-size: cover;
}

.faq-section:has(:lang(fa)) {
    flex-direction: row-reverse;
}

.footer {
    --border-raduis: 10rem;
    font-size: 1.4rem;
    display: grid;
    grid-template-columns: 1fr 60rem;
}
@media only screen and (max-width: 75em) {
    .footer {
        display: initial;
    }
}
.footer__left,
.footer__right {
    padding: max(2rem, 5vw) max(2rem, 2vw) 0;
    background-color: var(--color-primary);
    color: var(--color-white);
}
.footer__left {
    border-top-right-radius: var(--border-raduis);
    position: relative;
}
@media only screen and (max-width: 75em) {
    .footer__left {
        border-top-right-radius: 0;
    }
}
.footer__left::before {
    content: "";
    position: absolute;
    border-right: 1px solid #fff;
    height: 100%;
    right: 0;
    bottom: 0;
    border-radius: var(--border-raduis) var(--border-raduis) 0;
}
@media only screen and (max-width: 75em) {
    .footer__left::before {
        display: none;
    }
}
.footer__right {
    border-top-left-radius: var(--border-raduis);
}
@media only screen and (max-width: 75em) {
    .footer__right {
        border-top-left-radius: 0;
    }
    .footer__right > :nth-child(2) {
        margin-top: 1.5rem !important;
    }
}
.footer__right .phone,
.footer__right .phone:link,
.footer__right .phone:visited {
    text-decoration: none;
    color: var(--color-white);
}

.footer .nav-link {
    font-size: var(--step-0);
}

.footer:has(:lang(fa)) .footer__left,
.footer:has(:lang(fa)) .footer__right {
    direction: rtl;
}

.navigation {
    border-radius: 10rem;
}
.navigation a.nav-link,
.navigation a.nav-link:visited,
.navigation a.nav-link:link {
    font-size: small;
    font-weight: 600;
    position: relative;
}
.navigation a.nav-link::before,
.navigation a.nav-link:visited::before,
.navigation a.nav-link:link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0.35rem;
    border-radius: 10rem;
    background-color: var(--color-primary);
    left: 0;
    bottom: 0;
    transition: width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation a.nav-link:hover,
.navigation a.nav-link.active,
.navigation a.nav-link:visited:hover,
.navigation a.nav-link:visited.active,
.navigation a.nav-link:link:hover,
.navigation a.nav-link:link.active {
    color: var(--color-primary) !important;
}
.navigation a.nav-link:hover::before,
.navigation a.nav-link.active::before,
.navigation a.nav-link:visited:hover::before,
.navigation a.nav-link:visited.active::before,
.navigation a.nav-link:link:hover::before,
.navigation a.nav-link:link.active::before {
    width: 100% !important;
}
.navigation .expand-nav {
    flex: 1;
    justify-content: center;
}
.navigation .burger-icon {
    display: none;
}
@media only screen and (max-width: 56.25em) {
    .navigation .expand-nav {
        flex: none;
    }
    .navigation .expand-nav ul {
        display: none !important;
    }
    .navigation .logo-link {
        order: 1 !important;
        margin-inline: auto;
    }
    .navigation .burger-icon {
        order: 2 !important;
        z-index: 40000;
        display: flex;
    }
}

.navigation:has(:lang(fa)) form[role="search"] svg {
    right: auto !important;
    left: 10px;
}
.navigation:has(:lang(fa)) .navbar-nav {
    direction: rtl;
}
.navigation:has(:lang(fa)) a.nav-link::before {
    right: 0;
}

.grid-layout__item {
    width: 100%;
    height: auto;
}

.grid-layout--3-columns {
    --border-style: 1px solid var(--color-grey-dark);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 38.5rem;
    grid-template-rows: 38.5rem;
    justify-items: center;
}
@media only screen and (max-width: 37.5em) {
    .grid-layout--3-columns {
        grid-template-columns: 1fr;
    }
}
.grid-layout--3-columns > :nth-child(n) {
    border-right: var(--border-style) !important;
    border-bottom: var(--border-style) !important;
}
.grid-layout--3-columns > :last-child,
.grid-layout--3-columns > :nth-last-child(2),
.grid-layout--3-columns > :nth-last-child(3) {
    border-bottom: none !important;
}
.grid-layout--3-columns > :nth-child(3n) {
    border-right: none !important;
}
.grid-layout--3-columns > :nth-child(n)::before,
.grid-layout--3-columns > :nth-child(n)::after {
    display: none;
}
.grid-layout--3-columns
    > :nth-child(3n-1):not(
        :nth-last-child(1),
        :nth-last-child(2),
        :nth-last-child(3)
    ) {
    position: relative;
}
.grid-layout--3-columns
    > :nth-child(3n-1):not(
        :nth-last-child(1),
        :nth-last-child(2),
        :nth-last-child(3)
    )::after,
.grid-layout--3-columns
    > :nth-child(3n-1):not(
        :nth-last-child(1),
        :nth-last-child(2),
        :nth-last-child(3)
    )::before {
    display: block;
    content: "";
    position: absolute;
    width: 1.5rem;
    height: 1rem;
    background-color: var(--color-primary);
    border-radius: 1.5rem 0 1.5rem 0;
    z-index: 100;
    bottom: -2%;
    top: initial !important;
}
.grid-layout--3-columns
    > :nth-child(3n-1):not(
        :nth-last-child(1),
        :nth-last-child(2),
        :nth-last-child(3)
    )::before {
    left: -2%;
}
.grid-layout--3-columns
    > :nth-child(3n-1):not(
        :nth-last-child(1),
        :nth-last-child(2),
        :nth-last-child(3)
    )::after {
    right: -2%;
}
@media only screen and (max-width: 37.5em) {
    .grid-layout--3-columns > :nth-child(n) {
        border: none !important;
    }
    .grid-layout--3-columns > :nth-child(n)::after,
    .grid-layout--3-columns > :nth-child(n)::before {
        display: none !important;
    }
}

.grid-layout--3-columns:has(:lang(fa)) {
    direction: rtl;
}
.grid-layout--3-columns:has(:lang(fa)) > :nth-child(n) {
    border-right: 0 !important;
    border-left: var(--border-style);
    border-bottom: var(--border-style) !important;
}
.grid-layout--3-columns:has(:lang(fa)) > :last-child,
.grid-layout--3-columns:has(:lang(fa)) > :nth-last-child(2),
.grid-layout--3-columns:has(:lang(fa)) > :nth-last-child(3) {
    border-bottom: none !important;
}
.grid-layout--3-columns:has(:lang(fa)) > :nth-child(3n) {
    border-left: none !important;
}

.grid-layout--4-columns {
    --border-style: 1px solid var(--color-grey-dark);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 38rem;
    grid-template-rows: 38rem;
    justify-items: center;
    background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.75)),
        url("../images/services/service-bg.svg");
}
@media only screen and (max-width: 56.25em) {
    .grid-layout--4-columns {
        grid-template-columns: repeat(auto-fit, minmax(33.3333333333%, 1fr));
    }
}
@media only screen and (max-width: 37.5em) {
    .grid-layout--4-columns {
        grid-template-columns: 1fr;
    }
}
.grid-layout--4-columns > :not(:nth-child(4n)) {
    border-right: var(--border-style);
}
.grid-layout--4-columns
    > :not(
        :nth-last-child(1),
        :nth-last-child(2),
        :nth-last-child(3),
        :nth-last-child(4)
    ) {
    border-bottom: var(--border-style);
}
.grid-layout--4-columns > :nth-child(4n + 6),
.grid-layout--4-columns > :nth-child(4n + 7) {
    position: relative;
}
.grid-layout--4-columns > :nth-child(4n + 6)::after,
.grid-layout--4-columns > :nth-child(4n + 6)::before,
.grid-layout--4-columns > :nth-child(4n + 7)::after,
.grid-layout--4-columns > :nth-child(4n + 7)::before {
    content: "";
    position: absolute;
    width: 1.5rem;
    height: 1rem;
    background-color: var(--color-primary);
    border-radius: 1.5rem 0 1.5rem 0;
    top: -2%;
}
.grid-layout--4-columns > :nth-child(4n + 6)::before,
.grid-layout--4-columns > :nth-child(4n + 7)::before {
    left: -2%;
}
.grid-layout--4-columns > :nth-child(4n + 6)::after,
.grid-layout--4-columns > :nth-child(4n + 7)::after {
    right: -2%;
}
@media only screen and (max-width: 56.25em) {
    .grid-layout--4-columns {
        --border-style: 1px solid var(--color-grey-dark);
    }
    .grid-layout--4-columns > :nth-child(n) {
        border-right: var(--border-style) !important;
        border-bottom: var(--border-style) !important;
    }
    .grid-layout--4-columns > :last-child,
    .grid-layout--4-columns > :nth-last-child(2),
    .grid-layout--4-columns > :nth-last-child(3) {
        border-bottom: none !important;
    }
    .grid-layout--4-columns > :nth-child(3n) {
        border-right: none !important;
    }
    .grid-layout--4-columns > :nth-child(n)::before,
    .grid-layout--4-columns > :nth-child(n)::after {
        display: none;
    }
    .grid-layout--4-columns
        > :nth-child(3n-1):not(
            :nth-last-child(1),
            :nth-last-child(2),
            :nth-last-child(3)
        ) {
        position: relative;
    }
    .grid-layout--4-columns
        > :nth-child(3n-1):not(
            :nth-last-child(1),
            :nth-last-child(2),
            :nth-last-child(3)
        )::after,
    .grid-layout--4-columns
        > :nth-child(3n-1):not(
            :nth-last-child(1),
            :nth-last-child(2),
            :nth-last-child(3)
        )::before {
        display: block;
        content: "";
        position: absolute;
        width: 1.5rem;
        height: 1rem;
        background-color: var(--color-primary);
        border-radius: 1.5rem 0 1.5rem 0;
        z-index: 100;
        bottom: -2%;
        top: initial !important;
    }
    .grid-layout--4-columns
        > :nth-child(3n-1):not(
            :nth-last-child(1),
            :nth-last-child(2),
            :nth-last-child(3)
        )::before {
        left: -2%;
    }
    .grid-layout--4-columns
        > :nth-child(3n-1):not(
            :nth-last-child(1),
            :nth-last-child(2),
            :nth-last-child(3)
        )::after {
        right: -2%;
    }
}
@media only screen and (max-width: 37.5em) {
    .grid-layout--4-columns {
        gap: 1.5rem;
    }
    .grid-layout--4-columns > :nth-child(n) {
        border: none !important;
        box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.1);
    }
    .grid-layout--4-columns > :nth-child(n)::after,
    .grid-layout--4-columns > :nth-child(n)::before {
        display: none !important;
    }
}

.grid-layout--4-columns:has(:lang(fa)) {
    direction: rtl;
}
.grid-layout--4-columns:has(:lang(fa)) > :not(:nth-child(4n)) {
    border-left: var(--border-style);
    border-right: none;
}
@media only screen and (max-width: 56.25em) {
    .grid-layout--4-columns:has(:lang(fa)) {
        --border-style: 1px solid var(--color-grey-dark);
    }
    .grid-layout--4-columns:has(:lang(fa)) > :nth-child(n) {
        border-right: 0 !important;
        border-left: var(--border-style);
        border-bottom: var(--border-style) !important;
    }
    .grid-layout--4-columns:has(:lang(fa)) > :last-child,
    .grid-layout--4-columns:has(:lang(fa)) > :nth-last-child(2),
    .grid-layout--4-columns:has(:lang(fa)) > :nth-last-child(3) {
        border-bottom: none !important;
    }
    .grid-layout--4-columns:has(:lang(fa)) > :nth-child(3n) {
        border-left: none !important;
    }
}

html:has(:lang(fa)) body h1,
html:has(:lang(fa)) body h2,
html:has(:lang(fa)) body h3,
html:has(:lang(fa)) body h4,
html:has(:lang(fa)) body h5,
html:has(:lang(fa)) body h6,
html:has(:lang(fa)) body p,
html:has(:lang(fa)) body span,
html:has(:lang(fa)) body a,
html:has(:lang(fa)) body li,
html:has(:lang(fa)) body strong,
html:has(:lang(fa)) body em,
html:has(:lang(fa)) body q,
html:has(:lang(fa)) body code,
html:has(:lang(fa)) body input[type="text"] {
    text-align: right;
    direction: rtl;
}

.about-page {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: max(2rem, 2vw);
    border-radius: 0 0 15rem 0;
    text-align: justify;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    width: min(90%, 90rem);
    margin-inline: auto;
    margin-block: 4rem;
}

.contact {
    margin-top: 4rem;
}
.contact ul {
    padding-left: 0 !important;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.contact ul li {
    list-style: none;
}
.contact ul li a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.contact ul .seperator {
    width: 2.5rem;
    height: 0.2rem;
    background-color: var(--color-white);
}
.contact img {
    width: 2.75rem;
    height: 2.75rem;
}

.about-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-height: 8rem;
}
.about-footer .seperator-vertical {
    width: 0.2rem;
    height: 8rem;
    background-color: var(--color-white);
    margin-left: -3.5rem;
}
.about-footer img {
    margin-left: -2.5rem;
    width: 40rem;
    aspect-ratio: 2/1;
}
.about-footer span {
    font-size: small;
    margin-top: auto;
    line-height: 1.1;
}

@media screen and (max-width: 768px) {
    .about-page {
        border-radius: 3rem;
    }
    .contact ul {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact .seperator {
        display: none;
    }
    .about-footer {
        max-height: 5rem;
    }
    .about-footer .seperator-vertical {
        height: 5rem;
        margin-left: -2rem;
    }
    .about-footer span {
        font-size: x-small;
    }
    .about-footer img {
        height: 10rem;
        width: 20rem;
    }
}
@media screen and (max-width: 480px) {
    .about-footer {
        max-height: 4rem;
    }
    .about-footer .seperator-vertical {
        height: 4rem;
        margin-left: -1.5rem;
    }
    .about-footer span {
        font-size: xx-small;
    }
    .about-footer img {
        height: 7.5rem;
        width: 15rem;
    }
}
.contact:has(:lang(fa)) {
    direction: rtl;
}
.contact:has(:lang(fa)) span {
    direction: ltr;
}

.blog-details__image-wrapper {
    width: 100%;
    height: 600px;
    aspect-ratio: 16/9;
    border-radius: 0 10rem 0 10rem;
}
@media only screen and (max-width: 56.25em) {
    .blog-details__image-wrapper {
        border-radius: 0;
        height: 400px;
    }
}
@media only screen and (max-width: 37.5em) {
    .blog-details__image-wrapper {
        height: auto;
    }
}
.blog-details__image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    border-radius: inherit;
    overflow: hidden;
}
.blog-details__content {
    margin-block: 5rem;
    text-wrap-style: pretty;
}
@media only screen and (max-width: 56.25em) {
    .blog-details__content {
        padding-inline: 1rem;
    }
}
.blog-details__author {
    gap: 3rem;
    margin-left: 4rem;
    margin-top: 4rem;
}
.blog-details__author-image {
    width: 50px;
    height: 50px;
    background-color: var(--color-grey-dark-2);
    border-radius: 50%;
}
.blog-details__author-image img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
.blog-details__author-info {
    text-transform: capitalize;
}
.blog-details__author-info h3 {
    font-size: var(--step-0);
    margin-bottom: 0;
    color: var(--color-grey-dark-2);
}
.blog-details__author-info span {
    font-size: var(--step-0);
    color: var(--color-grey-dark);
}

.blog-details:has(:lang(fa)) {
    direction: rtl;
}
.blog-details:has(:lang(fa)) .blog-details__author {
    margin-right: 4rem;
    margin-left: 0;
}

.blog-list:has(:lang(fa)) {
    direction: rtl;
}

.product-list {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
}
@media only screen and (max-width: 75em) {
    .product-list {
        grid-template-columns: 1fr;
    }
}
.product-list__aside {
    background-color: var(--color-primary);
    border-radius: 5rem 0 5rem 0;
}
.product-list__aside .btn-close-cutsom {
    font-size: 12px;
    width: 2.5rem;
    height: 2.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 1.5rem 1.5rem auto;
    color: var(--color-grey-dark-2);
    background-color: white;
    border: 1px solid white;
    border-radius: 50%;
}
@media only screen and (max-width: 75em) {
    .product-list__aside .btn-close-cutsom {
        display: flex;
    }
}
@media only screen and (max-width: 75em) {
    .product-list__aside {
        position: fixed;
        border-radius: 0;
        width: min(240px, 100%);
        left: 0;
        top: 0;
        transform: translateY(50%);
        z-index: 100000;
        display: none;
    }
}

.overlay {
    background-color: rgba(51, 51, 51, 0.6);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: none;
}

.filter-icon-wrapper {
    display: none;
}
@media only screen and (max-width: 75em) {
    .filter-icon-wrapper {
        display: block;
    }
}
.filter-icon-wrapper button {
    color: var(--color-primary);
    background-color: rgba(11, 35, 250, 0.137254902);
    border: none;
    border-radius: 1rem 0 1rem 0;
    margin-left: auto;
    display: block;
    width: auto;
    margin-right: 2rem;
    width: 4rem;
    height: 4rem;
}
.filter-icon-wrapper button:hover {
    background-color: rgba(11, 35, 250, 0.2117647059);
}

.product-list:has(:lang(fa)) {
    direction: rtl;
}
.preloader {
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    margin: 0 auto;
}
.shapes {
    width: 62.7px;
    height: 62.7px;
    color: #474bff;
    position: relative;
}

.shapes::before,
.shapes::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(currentColor 0 0) 0 calc(var(--s, 0) * -100%) /
            100% calc(100% / 3),
        repeating-linear-gradient(90deg, currentColor 0 25%, #0000 0 50%)
            calc(var(--s, 0) * 100%) 50% / calc(4 * 100% / 3) calc(100% / 3);
    background-repeat: no-repeat;
    animation: shapes-anim 2s infinite;
}

.shapes::after {
    --s: -1;
}

@keyframes shapes-anim {
    0%,
    10% {
        transform: translateY(calc(var(--s, 1) * 0));
        background-position: 0 calc(var(--s, 0) * -100%),
            calc(var(--s, 0) * 100%) 50%;
    }

    33% {
        transform: translateY(calc(var(--s, 1) * -20%));
        background-position: 0 calc(var(--s, 0) * -100%),
            calc(var(--s, 0) * 100%) 50%;
    }

    66% {
        transform: translateY(calc(var(--s, 1) * -20%));
        background-position: 0 calc(var(--s, 0) * -100%),
            calc(var(--s, 0) * 100% + 100%) 50%;
    }

    90%,
    100% {
        transform: translateY(calc(var(--s, 1) * 0));
        background-position: 0 calc(var(--s, 0) * -100%),
            calc(var(--s, 0) * 100% + 100%) 50%;
    }
}

/*# sourceMappingURL=main.css.map */
