:root {
    --black: #000;
    --dark-grey: #313131;
    --grey: #717171;
    --light-grey: #89939E;
    --grey-blue: #ABBED1;
    --silver: #F5F7FA;
    --white: #fff;
    --primary-blue: #5020D9;
    --shape-color: #e0dfff;
    --light-blue: #d9ffdc;
    --border-radius: 5px
}

.cookies-eu-banner {
    background: #444;
    color: #fff;
    padding: 6px;
    font-size: 13px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
    transition: opacity 0.3s ease-in-out;
}

.cookies-eu-banner .VkxWhlbTJD {
    display: none;
}

.cookies-eu-banner .accept-btn {
    display: inline-block;
    background: #222;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    padding: 4px 7px;
    margin: 2px 0;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.07s, color 0.07s, border-color 0.07s;
}

.cookies-eu-banner .accept-btn:hover {
    background: #fff;
    color: #222;
}

/* === Спільний стиль для обох кнопок === */
#cart-btn-desktop,
#cart-btn-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1.5px solid #034d0f;
    background-color: #f0f4ff;
    color: #ca240a;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: inset 0 0 0 0 #14c800;
    position: relative;
    overflow: hidden;
}

#cart-btn-desktop:hover,
#cart-btn-mobile:hover {
    background-color: #257901;
    color: #fff;
    box-shadow: inset 0 0 0 100px #58df36;
}

/* === Іконка кошика === */
#cart-btn-desktop i,
#cart-btn-mobile i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

#cart-btn-desktop:hover i,
#cart-btn-mobile:hover i {
    transform: rotate(-10deg) scale(1.1);
}

/* === Текст суми у кошику === */
.top-cart {
    font-weight: 700;
    min-width: 60px;
    text-align: right;
    color: inherit;
}

/* === Адаптивність: показувати тільки відповідну кнопку === */
@media (min-width: 768px) {
    #cart-btn-mobile {
        display: none;
    }
}

@media (max-width: 767.98px) {
    #cart-btn-desktop {
        display: none;
    }
}


.VkxWhlbTJD:checked+.cookies-content {
    display: none;
}

.minimal-products {
    background-color: #fefefe;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #2c3e50;
}

.section-title {
    text-align: center;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.minimal-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 0 1rem;
}

.minimal-card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 15px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.minimal-card:hover {
    border-color: #4caf50;
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.2);
    transform: translateY(-8px);
}

.img-wrapper {
    width: 80%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: inset 0 0 10px #ccc;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.minimal-card:hover .img-wrapper img {
    transform: scale(1.1);
}

h3 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #34495e;
}

p {
    font-size: 0.95rem;

    color: #7f8c8d;
    margin-bottom: 1.3rem;
    min-height: 60px;
}

.price {
    font-weight: 900;
    font-size: 1.3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.btn-minimal {
    padding: 0.65rem 2.5rem;
    background-color: transparent;
    border: 2px solid #4caf50;
    color: #4caf50;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-minimal:hover {
    background-color: #4caf50;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .minimal-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .minimal-products-grid {
        grid-template-columns: 1fr;
    }

    .img-wrapper {
        height: 220px;
    }
}

.jM7tcbKuO0 {
    max-width: 1300px;
    margin: 3rem auto;
    padding: 3rem 1rem;
    background: #fefcf9;
    font-family: 'Shadows Into Light', cursive;
}

.wildtrail-masonry-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #374e2a;
}

.checkout-clean {
    background-color: #f7f9fc;
    padding: 80px 20px;
    font-family: "Open Sans", sans-serif;
}

.checkout-container {
    background-color: #ffffff;
    max-width: 950px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 50px 40px;
}

.checkout-heading {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #222;
    font-weight: 700;
}

.checkout-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-field {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
}

.form-field.full-width {
    flex: 1 1 100%;
}

.form-field label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.required {
    color: #e53935;
    margin-left: 4px;
}

.form-field input,
.form-field textarea {
    border: 1.5px solid #d0d0d0;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #1976d2;
    outline: none;
}

.checkout-btn {
    background-color: #4caf50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-btn:hover {
    background-color: #d09500;
}

.form-field.center {
    text-align: center;
}

.form-message {
    color: #43a047;
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .form-field {
        flex: 1 1 100%;
    }
}

.BsxsUN6e4b {
    column-count: 3;
    column-gap: 1.5rem;
}

.wildtrail-review-block {
    background: #f4f9f4;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    border: 2px dotted #4caf50;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    break-inside: avoid;
    transition: transform 0.3s ease;
}

.wildtrail-review-block:hover {
    transform: scale(1.03);
}

.wildtrail-user {
    margin-top: 0.5rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wildtrail-badge {
    background: #ffcc66;
    color: #4b3a1f;
    border-radius: 12px;
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .BsxsUN6e4b {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .BsxsUN6e4b {
        column-count: 1;
    }
}

.qKe3tqLlYu {
    background: #f8f8f8;
    border-bottom: 2px solid #4caf50;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.PHg9Phqlys {
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-store {
    text-decoration: none;
    color: #4caf50;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-desktop-store {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-desktop-store a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    position: relative;
}

.nav-desktop-store a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4caf50;
    transition: width 0.3s ease;
}

.nav-desktop-store a:hover::after {
    width: 100%;
}

.VKW2P4MmaC {
    display: none;
}

.burger-store {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.burger-store span {
    width: 26px;
    height: 3px;
    background: #4caf50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.VKW2P4MmaC:checked+.burger-store span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.VKW2P4MmaC:checked+.burger-store span:nth-child(2) {
    opacity: 0;
}

.VKW2P4MmaC:checked+.burger-store span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Модальне вікно — прозорий фон + скляний ефект === */
#cart-modal .modal-dialog {
    max-width: 720px;
    margin: 2rem auto;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#cart-modal .modal-content {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

/* === Заголовок === */
#shopping-cart h3 {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    color: #222;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    position: relative;
}

#shopping-cart h3::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    border-radius: 2px;
}

/* === Таблиця товарів === */
.table-cart {
    width: 100%;
    font-size: 1rem;
    border-spacing: 0 14px;
}

.table-cart thead th {
    color: #333;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid #ddd;
}

.table-cart tbody tr {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.table-cart tbody tr:hover {
    transform: scale(1.015);
}

.table-cart tbody td {
    padding: 1rem 0.75rem;
    color: #111;
    font-weight: 500;
    vertical-align: middle;
}

/* === Секція Total === */
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed #ccc;
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
}

/* === Ціна справа === */
.cart-total-price {
    color: #0d6efd;
    min-width: 90px;
    text-align: right;
}

/* === Кнопка оформлення === */
.btn-purchase {
    margin-top: 3.5rem;
    text-align: center;
}

.btn-purchase .btn {
    width: 100%;
    padding: 15px 0;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.btn-purchase .btn:hover {
    background: linear-gradient(135deg, #0b5ed7, #520dc2);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.btn-purchase i {
    font-size: 1.4rem;
    opacity: 0.85;
}

/* === Мобільна адаптація === */
@media (max-width: 576px) {
    #cart-modal .modal-dialog {
        max-width: 94%;
    }

    #shopping-cart h3 {
        font-size: 1.7rem;
    }

    .table-cart thead {
        font-size: 0.9rem;
    }

    .table-cart tbody td {
        font-size: 0.95rem;
        padding: 0.75rem;
    }

    .cart-total {
        font-size: 1.1rem;
    }

    .btn-purchase .btn {
        font-size: 1rem;
        padding: 13px;
    }
}


.zes6dM30f9 {
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    height: 100%;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 1050;
}

.zes6dM30f9 a {
    color: #4caf50;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
}

.zes6dM30f9 a:hover {
    color: #2e7d32;
}

.logo-link {
    color: #000;
    font-weight: bold;
    font-size: 1.5em;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.close-store {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #4caf50;
    cursor: pointer;
}

.VKW2P4MmaC:checked~.zes6dM30f9 {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .nav-desktop-store {
        display: none;
    }

    .burger-store {
        display: flex;
    }
}

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

body {
    font-family: "DM Sans", sans-serif;
    color: var(--primaryColor);
    background-color: var(--bodyColor);
    text-align: left;
    position: relative;
    overflow-x: hidden
}

html {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    overflow-x: hidden
}

::selection {
    color: #F9F9F9;
    background-color: #4caf50
}

.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5 {
    font-weight: bold;

    position: relative
}

.heading-1 {
    font-size: 34px;
    line-height: 46px
}

.heading-2 {
    font-size: 52px;
    line-height: 64px
}

.heading-3 {
    font-size: 36px;
    line-height: 44px
}

.heading-4 {
    font-size: 28px;
    line-height: 36px
}

.heading-5 {
    font-size: 20px;
    line-height: 28px
}

@media (max-width:768px) {
    .heading-1 {
        font-size: 36px;
        line-height: 44px
    }

    .heading-2 {
        font-size: 28px;
        line-height: 36px
    }

    .heading-3 {
        font-size: 20px;
        line-height: 28px
    }

    .heading-4 {
        font-size: 18px;
        line-height: 24px
    }

    .heading-5 {
        font-size: 16px;
        line-height: 20px
    }
}

.uIA2PQlVKM {
    font-size: 18px;
    line-height: 28px
}

.body-2 {
    font-size: 16px;
    line-height: 24px
}

.body-3 {
    font-size: 14px;
    line-height: 20px
}

@media (max-width:768px) {
    .uIA2PQlVKM {
        font-size: 16px;
        line-height: 24px
    }

    .body-2 {
        font-size: 14px;
        line-height: 20px
    }

    .body-3 {
        font-size: 12px;
        line-height: 16px
    }
}

.highlighted-text {
    color: #4caf50
}

.shape.flash {
    width: 100px;
    height: 100px
}

.padding-1 {
    padding: 1rem
}

.padding-2 {
    padding: 2rem
}

.R09Ia73dTQ {
    border: var(--light-grey) .5px solid
}

.IL80kdZuli {
    width: fit-content
}

.bg-primary {
    background-color: #4caf50
}

.iacdJVoE86 {
    background-color: var(--light-blue)
}

.pq6qMtSBoU {
    background-color: var(--white)
}

.shape {
    color: var(--shape-color);
    position: absolute
}

.boxes {
    width: 400px;
    height: 400px
}

.white-bg {
    background-color: var(--white)
}

.clr-black {
    color: var(--black)
}

.clr-d-grey {
    color: var(--dark-grey)
}

.clr-grey {
    color: var(--grey)
}

.clr-l-grey {
    color: var(--light-grey)
}

.b-radius {
    border-radius: var(--border-radius)
}

.underline::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 6px;
    left: 0;
    right: 0;
    bottom: -2px;
    background-color: #4caf50;
    border-radius: var(--border-radius)
}

a {
    text-decoration: none
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    border: 0;
    outline: 0;
    background-color: transparent !important
}

.thank {
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.thank .thank-boxes-1 {
    left: -200px;
    bottom: 100px
}

.thank .thank-boxes-2 {
    right: -200px;
    top: 100px
}

.thank .thank-blur {
    top: -400px;
    right: 0;
    left: 0;
    width: 1400px;
    opacity: .8;
    z-index: -1
}

.thank .thank-star {
    top: -20px;
    right: 20%;
    width: 100px;
    height: 100px
}

.section {
    padding-block: 6rem
}

@media (max-width:998px) {


    .shape {
        opacity: 0;
        display: none
    }

    .padding-1 {
        padding: .5rem
    }

    .padding-2 {
        padding: 1rem
    }

    .underline::after {
        display: none
    }
}

.PBckKEYyK4 {
    position: relative;
    transition: color 300ms ease-in-out
}

.PBckKEYyK4.PBckKEYyK4-hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #4caf50;
    transition: transform 400ms ease-in-out;
    transform: scaleX(0);
    transform-origin: top;
    color: var(--light-blue)
}

.PBckKEYyK4.PBckKEYyK4-hover:hover:before,
.PBckKEYyK4.PBckKEYyK4-hover:focus:before {
    transform: scaleX(1)
}

.PBckKEYyK4.PBckKEYyK4-hover:hover,
.PBckKEYyK4.PBckKEYyK4-hover:focus,
.PBckKEYyK4.PBckKEYyK4-hover:hover a i,
.PBckKEYyK4.PBckKEYyK4-hover:hover>* {
    color: var(--light-blue)
}

.PBckKEYyK4.PBckKEYyK4-hover:hover>p {
    color: var(--light-grey)
}

.btn,
.btn-outline {
    background-color: #4caf50;
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    text-transform: capitalize;
    align-items: center;
    text-align: center;
    outline: none;
    font-weight: bold;
    transition: all .3s ease-in-out 0s;
    cursor: pointer;
    z-index: 1;
    transition: color 300ms ease-in-out
}

.btn-outline:hover {
    background-color: #4caf50;
    color: var(--white)
}

.btn:hover {
    border: solid 1px #4caf50;
    color: #4caf50
}

.btn-outline {
    background-color: var(--white);
    color: #4caf50;
    border: solid 1px #4caf50
}

@media (max-width:768px) {

    .btn,
    .btn-outline {
        padding: 8px 16px;
        font-size: 16px
    }
}

.btn-outline i {
    font-size: 18px
}

.learn-more {
    font-size: 18px;
    font-weight: bold;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px
}

.learn-more i {
    font-size: 18px
}

p {
    color: var(--dark-grey)
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

img {
    width: 100%
}

.organize {
    width: 400px;
    height: 400px
}

#preloader {
    background: var(--white);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999;
    place-content: center
}

.spinner {
    position: absolute;
    top: 45%;
    left: 45%;
    border: 16px solid #e6e6e6;
    border-top: 16px solid #4caf50;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

#progress {
    position: fixed;
    bottom: 20px;
    right: 10px;
    height: 70px;
    width: 70px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    cursor: pointer;
    z-index: 800
}

#progress-value {
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    border-radius: 50%;
    display: grid;
    background-color: var(--light-blue);
    place-items: center;
    font-size: 35px;
    color: var(--dark-grey)
}

.auth {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center
}

.auth .icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-blue);
    border-radius: 50%
}

.auth .icon i {
    font-size: 16px
}

.auth .or {
    position: relative;
    color: var(--grey);
    font-size: 18px
}

.auth i {
    font-size: 20px
}

.auth .or::after {
    position: absolute;
    content: '';
    width: 220px;
    height: 1px;
    background-color: var(--grey);
    top: 50%;
    left: 30px
}

.auth .or::before {
    position: absolute;
    content: '';
    width: 220px;
    height: 1px;
    background-color: var(--grey);
    top: 50%;
    right: 30px
}

.navbar {
    z-index: 900
}

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
    border: none
}

@media (max-width:990px) {
    .navbar {
        background-color: var(--boxColor)
    }
}

.navbar #menu {
    color: var(--dark-grey);
    font-size: 30px
}

.navbar .logo {
    width: 9rem
}

.navbar ul li a:focus {
    background-color: transparent
}

.navbar ul li a {
    font-weight: 600;
    text-transform: capitalize;
    color: var(--dark-grey) !important
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #4caf50 !important
}

.navbar .dropdown-menu {
    background-color: var(--light-blue) !important
}

.navbar .dropdown-menu .dropdown-item {
    color: var(--dark-grey);
    background-color: var(--light-blue)
}

.ZLZsDo1tV6 {
    position: relative;
    overflow: hidden
}

.agency .ZLZsDo1tV6 .ZLZsDo1tV6-icon {
    font-size: 32px;
    color: #4caf50
}

.agency .numbers .images img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: .5px solid var(--white)
}

.agency .numbers .images .gap {
    margin-left: -8px
}

.agency .logos img {
    filter: grayscale(10)
}

.security .ZLZsDo1tV6 .shape-hero-star {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 28%;
    right: 10%
}

.store-img {
    height: 55px;
    width: 180px
}

.ZLZsDo1tV6 .shape-organise {
    width: 400px;
    height: 400px;
    top: -50px;
    left: -200px
}

.shape-2 {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    right: -220px
}

.saas .ZLZsDo1tV6 {
    min-height: 80vh
}

.ai .ZLZsDo1tV6 .boxes-hero-ai {
    top: 0;
    right: -200px
}

.ai .ZLZsDo1tV6 .boxes-hero-ai-2 {
    bottom: 200px;
    left: -200px
}

.ai .features i {
    font-size: 48px;
    color: #4caf50
}

.ai .features .ai-features-shape {
    right: -200px;
    top: -130px
}

.saas .ZLZsDo1tV6 i {
    font-size: 24px;
    color: #4caf50
}

.saas .shape-hero-saas {
    top: 40px;
    right: 0;
    width: 100px;
    height: 100px
}

.services .organize {
    top: 0;
    right: -150px
}

.agency .services .service {
    border: 0
}

.agency .services .service .service-icon {
    font-size: 42px;
    color: #4caf50
}

.security .services .icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

.security .services .shape-services-boxes {
    left: -200px;
    top: -100px
}

.security .services .shape-services-star {
    right: -20px;
    top: -20px;
    width: 120px;
    height: 120px
}

.security .services .icon i {
    font-size: 38px;
    color: var(--white)
}

.ai .services i {
    font-size: 42px;
    color: #4caf50
}

.services .shape-3 {
    width: 200px;
    height: 200px;
    left: -100px;
    bottom: 0
}

.service {
    padding: 2rem;
    border: var(--grey-blue) solid .5px;
    z-index: 999
}

.service .icon {
    width: fit-content;
    padding: 1.5rem;
    margin-bottom: 2rem
}

.service .icon i {
    font-size: 36px;
    color: #4caf50
}

.service .learn-more {
    color: #4caf50
}

.saas .about .about-organize {
    left: -150px;
    top: -100px;
    width: 400px;
    height: 400px
}

.security .about .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%
}

.security .about .shape-about-star {
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
    height: 150px
}

.security .about .icon-lg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: var(--border-radius)
}

.security .about .icon-lg i {
    font-size: 42px;
    color: #4caf50
}

.security .about .icon i {
    font-size: 32px;
    color: #4caf50
}

.security .about .shape-about-sec-boxes {
    position: absolute;
    top: -200px;
    right: -340px
}

.app .about .shape-app-about {
    width: 200px;
    height: 200px;
    top: 0;
    left: -100px
}

.app .about .shape-app-about-organise {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px
}

.app .about .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #4caf50;
    border-radius: 50%
}

.app .about .icon i {
    font-size: 24px;
    color: var(--white)
}

.app .about .shape-app-about-boxes-2 {
    width: 200px;
    height: 200px;
    right: -230px;
    top: 0
}

.app .about .shape-app-about-organise-2 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -200px
}

.app .about .img-about {
    border: var(--grey) solid 1px;
    border-radius: 20px
}

.about-box .icon {
    width: fit-content
}

.about-box .icon i {
    font-size: 24px;
    color: #4caf50
}

.shape-about {
    left: -150px;
    bottom: -190px
}

.shape-about-2 {
    right: -100px;
    top: -100px
}

.saas .about .flash {
    right: 0;
    top: 0
}

.saas .about .icon {
    width: 80px;
    height: 80px
}

.saas .about .icon i {
    font-size: 32px;
    color: #4caf50
}

.agency .about .testimonial-box {
    height: fit-content
}

.agency .about .testimonial-box .icon-star {
    font-size: 24px;
    color: #4caf50
}

.agency .about .testimonial-box .img img {
    border-radius: 50%
}

.agency .about .testimonial-box .img {
    width: 300px;
    height: 300px
}

.app .steps .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-blue)
}

.app .steps .icon i {
    font-size: 24px;
    color: #4caf50
}

.app .steps .shape-app-steps-flash {
    width: 150px;
    height: 150px;
    right: 0;
    top: 0
}

.app .steps .shape-number {
    color: var(--shape-color);
    position: absolute;
    font-size: 124px;
    z-index: -1;
    opacity: .7;
    top: -40px;
    right: 100px
}

.app .screen img {
    border: var(--grey) solid .5px;
    border-radius: 20px
}

.company h1::before {
    position: absolute;
    content: "";
    top: 25px;
    left: 510px;
    background-color: var(--grey-blue);
    width: 800px;
    height: 1px
}

@media (max-width:990px) {
    .company h1::before {
        opacity: 0
    }
}

.agency .features .shape-features-1 {
    top: -100px;
    right: -200px;
    width: 400px;
    height: 400px
}

.shape-features-2 {
    top: 0;
    left: 0
}

.saas .features .icon,
.agency .features .icon {
    width: 60px;
    height: 60px
}

.agency .features .icon {
    flex: .15;
    display: flex;
    justify-content: center;
    align-items: center;
    border: .5px solid var(--light-grey);
    background-color: var(--light-blue);
    border-radius: var(--border-radius)
}

.agency .features .text {
    flex: .85
}

.saas .features .icon i,
.agency .features .icon i {
    font-size: 32px;
    color: #4caf50
}

.saas .features .shape-saas-features {
    width: 150px;
    height: 150px;
    right: 0;
    top: 0
}

.integrations .PBckKEYyK4 {
    height: 220px;
    background-color: var(--white);
    margin-top: 3rem
}

.integrations .shape.icon {
    position: absolute
}

@media (max-width:1300px) {
    .integrations .shape.icon {
        display: none
    }
}

.integrations .shape.one {
    left: 300px;
    top: -60px
}

.integrations .shape.two {
    left: 460px;
    top: -90px
}

.integrations .shape.three {
    left: 600px;
    top: -120px
}

.integrations .shape.four {
    right: 460px;
    top: -90px
}

.integrations .shape.five {
    right: 300px;
    top: -60
}

.integrations .heading-4 {
    margin-top: 36px
}

.integrations .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -24%
}

.integrations .icon i {
    font-size: 48px
}

.integrations .boxes {
    width: 400px;
    height: 400px;
    bottom: 0;
    right: -200px
}

.integrations .boxes-colored {
    width: 400px;
    height: 400px;
    left: -200px;
    top: 200px
}

.integrations .shape-saas-integration {
    width: 150px;
    height: 150px;
    right: 0;
    top: 0
}

.shape-testimonials-organize-1 {
    top: 100px;
    right: -100px
}

.shape-testimonials-organize-2 {
    bottom: 150px;
    left: -100px
}

.shape-testimonials-boxes-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px
}

.shape-testimonials-boxes-2 {
    width: 400px;
    height: 400px;
    bottom: 0;
    right: -200px
}

.testimonials .PBckKEYyK4 {
    width: 600px;
    background-color: var(--light-blue);
    border: solid var(--grey) .5px;
    padding: 1rem
}

.testimonials .PBckKEYyK4 .icon-star {
    font-size: 24px;
    color: #4caf50
}

.testimonials .shape-saas-testimonials {
    width: 150px;
    height: 150px;
    left: 0;
    top: 0
}

@media (max-width:990px) {
    .testimonials .PBckKEYyK4 {
        width: 400px
    }

    .testimonials .img img {
        width: 100px;
        height: 100px
    }

    .testimonials .img {
        flex: .30
    }

    .testimonials .text {
        flex: .70
    }
}

.testimonials .img img {
    border-radius: 50%
}

.testimonials .img {
    width: 300px;
    height: 300px
}

@keyframes slide {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-100%)
    }
}

.scroller {
    width: 100%;
    margin-top: 1rem
}

.scroller__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
    mask: linear-gradient(90deg, transparent, black 20%, black 80%, transparent)
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards
}

.scroller[data-speed="fast"] {
    --_animation-duration: 40s
}

.scroller[data-speed="slow"] {
    --_animation-duration: 70s
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - .5rem))
    }
}

.how-it-works .PBckKEYyK4 .line {
    position: relative
}

.agency .how-it-works .number {
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-blue);
    border: .5px solid var(--light-grey);
    border-radius: 50%;
    flex: .10;
    z-index: 99
}

.agency .how-it-works .hiw-box {
    height: 230px;
    position: relative
}

.agency .how-it-works .hiw-box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 30px;
    width: 1px;
    height: 240px;
    background-color: var(--light-grey);
    z-index: 9
}

.agency .how-it-works .number h3 {
    color: #4caf50;
    padding: 0;
    margin: 0
}

.agency .how-it-works .text {
    flex: .90
}

.ai .how-it-works .number {
    width: 65px;
    height: 65px;
    background-color: #4caf50;
    color: var(--light-blue);
    border-radius: 50%;
    flex: .09;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center
}

.ai .how-it-works .row img {
    border: #4caf50 solid .5px;
    border-radius: var(--border-radius)
}

.ai .how-it-works .text {
    flex: .91
}

.ai .how-it-works .lined {
    position: relative
}

.ai .how-it-works .lined::after {
    position: absolute;
    content: '';
    top: 110%;
    left: 50%;
    width: 1px;
    height: 340px;
    background-color: var(--light-grey)
}

.ai .how-it-works .ai-steps-boxes {
    left: -200px;
    top: 0
}

.ai .how-it-works .ai-steps-star {
    right: 100px;
    top: 100px;
    width: 100px;
    height: 100px
}

.how-it-works .PBckKEYyK4 .line::after {
    position: absolute;
    content: "";
    width: 380px;
    height: 1px;
    top: 45px;
    left: 80px;
    background-color: var(--light-grey)
}

@media (max-width:990px) {
    .how-it-works .PBckKEYyK4 .line::after {
        opacity: 0
    }

    .ai .how-it-works .lined::after {
        opacity: 0
    }

    .how-it-works .number {
        width: 40px;
        height: 40px
    }
}

.how-it-works .number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: grid;
    place-content: center
}

.shape-hiw-2 {
    top: 0;
    right: 0
}

.shape-hiw {
    width: 400px;
    height: 400px;
    bottom: -170px;
    left: -200px
}

.shape-work {
    width: 200px;
    height: 200px;
    right: -90px;
    top: -100px
}

.security .steps .number {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--light-blue);
    position: relative
}

.security .steps .shape-steps-star {
    width: 120px;
    height: 120px;
    left: 0;
    top: 80px
}

.security .steps .number h4 {
    color: var(--primary-blue, #5020D9)
}

.security .steps .number.lined::after {
    position: absolute;
    content: '';
    width: 420px;
    top: 50%;
    left: 110%;
    height: 1px;
    background-color: var(--light-grey)
}

@media (max-width:990px) {
    .security .steps .number.lined::after {
        opacity: 0
    }
}

.awards .icons i {
    color: #d4bf00;
    font-size: 24px
}

.security .team .shape-boxes-team {
    top: 0;
    right: -200px
}

.pricing .PBckKEYyK4 {
    background-color: var(--white)
}

.saas .pricing .pricing-organize {
    left: -150px;
    top: 100px
}

.saas .pricing .boxes-1 {
    bottom: 0;
    left: -200px
}

.saas .pricing .boxes-sm {
    top: 0;
    right: -200px
}

.saas .pricing .PBckKEYyK4-saas {
    background-color: var(--light-blue)
}

.pricing .PBckKEYyK4 .icon {
    flex: .15;
    display: flex;
    justify-content: center;
    align-items: center
}

.pricing .PBckKEYyK4 .icon i {
    font-size: 32px;
    color: #4caf50
}

.pricing .PBckKEYyK4 .text {
    flex: .85
}

.pricing-box h4 {
    font-size: 16px;
    font-weight: 600
}

.pricing-box i {
    padding: 5px
}

.shape-pricing-organize {
    top: 0;
    left: -100px
}

.shape-pricing-boxes {
    top: -200px;
    width: 400px;
    height: 400px;
    right: -200px
}

.saas .portfolio .portfolio-organize {
    left: -150px;
    top: 100px
}

.saas .portfolio .star {
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px
}

.client-box img {
    border-radius: 50%;
    width: 80px;
    height: 80px
}

.client-box i {
    font-size: 24px;
    color: #4caf50
}

.agency .team .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--light-blue);
    border-radius: var(--border-radius)
}

.agency .team .icon i {
    font-size: 20px;
    color: #4caf50
}

.saas .team .team-boxes {
    width: 400px;
    height: 400px;
    left: -200px;
    top: 0
}

.saas .team img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    bottom: 20%
}

.saas .team .icons .icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

.saas .team .icons .icon i {
    font-size: 22px;
    margin: 0;
    padding: 0;
    color: #4caf50
}

.PBckKEYyK4-team .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: var(--border-radius)
}

.PBckKEYyK4-team .icons {
    position: absolute;
    bottom: 0;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 99
}

.PBckKEYyK4-team .icons:hover {
    opacity: 1
}

.PBckKEYyK4-team .icon i {
    font-size: 24px;
    color: #4caf50
}

.shape-team-boxes {
    width: 400px;
    height: 400px;
    right: -200px;
    bottom: -200px
}

.shape-team-organize {
    top: 0;
    left: -150px
}

.saas .cta img {
    position: absolute;
    left: 20px;
    top: -220px;
    width: 500px
}

.saas .cta {
    margin-top: 250px
}

.ai .cta {
    background-color: #2B2834
}

.ai .cta i {
    color: green;
    font-size: 24px
}

@media (max-width:1100px) {
    .saas .cta .img-container {
        display: none
    }

    .saas .cta img {
        display: none
    }

    .saas .cta {
        margin-top: 2rem
    }
}

.shape-blog-organize {
    bottom: 0;
    left: -100px
}

.saas .blog .blog-boxes {
    width: 400px;
    height: 400px;
    top: 0;
    right: -200px
}

.saas .blog .blog-organize {
    top: 100px;
    left: -100px
}

.security .blog .shape-boxes-blog {
    top: 0;
    left: -200px
}

.saas .faq .PBckKEYyK4 .icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    flex: .10
}

.saas .faq .PBckKEYyK4 .icon i {
    font-size: 28px;
    color: #4caf50
}

.saas .faq .PBckKEYyK4 .text {
    flex: .90
}

.rotate180 {
    transform: rotate(180deg);
    transition: transform .3s ease
}

.saas .faq .boxes-faq {
    top: 0;
    right: -200px
}

.saas .contact i {
    font-size: 24px
}

.saas .contact .contact-boxes {
    top: 0;
    left: -200px
}

.contact .icon {
    border-radius: 50%;
    height: fit-content;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center
}

.contact .PBckKEYyK4-icon {
    font-size: 32px;
    color: #4caf50
}

.contact .icon i {
    color: #4caf50;
    font-size: 26px
}

.shape-organize-contact {
    top: 0;
    right: -100px
}

.shape-boxes-contact {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -200px
}

.footer .icons .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius)
}

.footer,
.copy {
    border-top: var(--light-grey) .5px solid
}

.footer .icons .icon i {
    font-size: 20px;
    color: #4caf50
}

.footer .input {
    height: fit-content;
    background-color: var(--white)
}

.footer .input input {
    outline: none;
    border: none;
    background-color: transparent;
    height: 100%;
    width: 90%
}

.footer .input i {
    font-size: 26px;
    color: #4caf50
}