: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: #f8f5ff;
    --border-radius: 5px
}

:root {
    --main-bg-color: #F9F7F6;
    --dark-color: #333333;
    --accent-color: #A5A299;
    --secondary-accent: #B7C4AF;
    --btn-color: #D7BC91;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}



.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Hero Section */
.hero-services {

    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Services List */
.services-list {
    padding: 80px 0;
    background-color: #FDFBFA;
}

.services-list .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.N1ubGOlYQ3 {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.N1ubGOlYQ3:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.N1ubGOlYQ3 img {
    width: 100%;
    height: 250px;

    display: block;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.card-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.iC3IMuMLyx-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.iC3IMuMLyx {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-accent);
}

.btn {
    display: inline-block;
    background-color: var(--btn-color);
    color: var(--dark-color);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #e8d0b2;
    transform: translateY(-2px);
}


/* Pricing Plans */
.pricing-plans {
    background-color: var(--main-bg-color);
    padding: 80px 0;
    text-align: center;
}

.pricing-plans h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.plan-card.featured {
    background-color: var(--secondary-accent);
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.featured .NE4yWVH8M6 {
    background-color: var(--dark-color);
    color: #FFFFFF;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
}

.plan-card.featured h3 {
    color: #FDFBFA;
}

.plan-card .iC3IMuMLyx {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-accent);
}

.plan-card.featured .iC3IMuMLyx {
    color: #FFFFFF;
}

.plan-card .iC3IMuMLyx span {
    font-size: 1rem;
    font-weight: 400;
    display: block;
    color: #999;
}

.plan-card.featured .iC3IMuMLyx span {
    color: rgba(255, 255, 255, 0.7);
}

.plan-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plan-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.plan-card.featured li {
    border-color: rgba(255, 255, 255, 0.3);
}

.plan-card li:last-child {
    border-bottom: none;
}

.NE4yWVH8M6 {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--btn-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.NE4yWVH8M6:hover {
    background-color: #e8d0b2;
    transform: translateY(-2px);
}


/* Testimonials */
.testimonials {
    background-color: #FDFBFA;
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.QEGHA2yJoS {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.testimonial-card .rating {
    color: var(--btn-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-card .client-name {
    font-weight: 600;
    display: block;
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: #EFEBEA;
    color: #888;
    padding: 20px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav li {
        margin: 0 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-list .container {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1.0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-wawacleansvc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #8e44ad, #1abc9c);
    position: relative;
    padding: 15px 40px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    overflow: hidden;
}

/* Логотип вертикальна панель */
.NlR6zJ7LvE {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 10px;
    border-radius: 12px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.NlR6zJ7LvE img {

    margin-bottom: 8px;

}

.n7Jv3rzRM2 {
    background: linear-gradient(135deg, #fffaf0, #f0e6d6);
    position: relative;
    overflow: hidden;
}

.n7Jv3rzRM2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.15), transparent 70%);
    opacity: 0.8;
    z-index: 0;
}

.n7Jv3rzRM2 .container {
    position: relative;
    z-index: 1;
}

.XNVDKIEzVt {
    font-size: 2.5rem !important;
    line-height: 1.2;
}

.lZFpqUnLV6 {
    font-size: 2rem !important;
    line-height: 1.3;
}

.glam-description {
    font-size: 1.2rem !important;
    line-height: 1.6;
}

.RDdBzmQDEm,
.mWDppwyRTJ {
    font-size: 1.2rem !important;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.DwOnrP3Bwg {
    font-size: 1.8rem !important;
    line-height: 1.3;
}

.RDdBzmQDEm:hover,
.mWDppwyRTJ:hover {
    color: #d4af37 !important;
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.glam-social-section {
    display: flex;
    /* включає flex-контейнер */
    justify-content: center;
    /* горизонтальне вирівнювання по центру */
    align-items: center;
    /* вертикальне вирівнювання по центру */
    gap: 1rem;
    /* відступ між іконками */
}


.glam-social-image {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

.glam-social-image:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.7));
}

.glam-copyright-section {
    background: #2d2d2d;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.glam-copyright-text {
    font-size: 1.1rem !important;
    line-height: 1.5;
}

.glam-accent-text {
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

:root {
    --primary-clr: #34495e;
    --secondary-clr: #2c3e50;
    --accent-clr: #1abc9c;
    --light-bg-clr: #ecf0f1;
    --text-clr: #7f8c8d;
    --heading-clr: #34495e;
    --box-shadow-small: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --box-shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --box-shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}



.heading-main,
.sub-heading-main,
.section-title,
.card-title,
.feature-title,
.blog-title {
    font-family: 'Playfair Display', serif;
    color: var(--heading-clr);
}

h1.heading-main {
    font-size: calc(1.8rem + 1.5vw);
    font-weight: 700;
}

h2.sub-heading-main {
    font-size: calc(1.2rem + 0.5vw);
    font-weight: 500;
    color: var(--primary-clr);
    margin-top: -0.5rem;
}

.section-title {
    font-size: calc(1.8rem + 0.5vw);
    font-weight: 700;
    margin-bottom: 2rem;
    display: inline-block;
}

.underline {
    position: relative;
}

.underline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-clr);
    border-radius: 2px;
}

/* Re-positioning for section-title in specific sections */
.why-choose-us .underline::after,
.NsUsYIma9W .underline::after,
.blog-section .underline::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-section .row:first-child .underline::after {
    left: 0;
    transform: none;
}


/* --- Hero Section --- */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    position: relative;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.eMAcvFzOJ0 {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.eMAcvFzOJ0 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.eMAcvFzOJ0:hover img {
    transform: scale(1.05);
}

.btn-primary-custom {
    background-color: var(--accent-clr);
    border: 2px solid var(--accent-clr);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-clr);
    border-color: var(--secondary-clr);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-medium);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--primary-clr);
    color: var(--primary-clr);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.btn-outline-custom:hover {
    background-color: var(--primary-clr);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-medium);
}

/* --- General Section Padding --- */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.NBv5PP9t2i {
    background-color: var(--light-bg-clr);
}

/* --- Service Cards --- */
.N1ubGOlYQ3 {
    background-color: #fff;
    box-shadow: var(--box-shadow-small);
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.N1ubGOlYQ3:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--box-shadow-large);
}

.N1ubGOlYQ3 .card-title {
    font-weight: 600;
    font-size: 1.5rem;
}

/* --- About & Image Section --- */
.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

/* --- Why Choose Us (Box Feature) --- */
.Hae9L5HBry {
    background-color: #fff;
    box-shadow: var(--box-shadow-small);
    transition: all 0.4s ease-in-out;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.Hae9L5HBry:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--box-shadow-large);
}

.Hae9L5HBry .feature-title {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* --- Blog Cards --- */
.blog-card {
    background-color: #fff;
    box-shadow: var(--box-shadow-medium);
    transition: all 0.4s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-large);
}

.blog-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.blog-card .blog-title {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
}

.vofG05Ak1H {
    padding: 80px 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #222;
}

.glam-contact-header h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a73e8;
}

.glam-contact-header p {
    text-align: center;
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.glam-contact-body {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.glam-contact-form-container {
    flex: 1 1 400px;
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.glam-contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 15px;
}

.glam-contact-form input,
.glam-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.glam-contact-form input:focus,
.glam-contact-form textarea:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 10px rgba(26, 115, 232, 0.2);
}

.LuTzyjwfK7 {
    margin-top: 20px;
    background: #1a73e8;
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.LuTzyjwfK7:hover {
    background: #155ab6;
}

.glam-contact-info-container {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.glam-contact-info-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.glam-contact-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a73e8;
}

.RDdBzmQDEm {
    display: block;
    color: #555;
    font-weight: 500;
    text-decoration: none;
}

.RDdBzmQDEm:hover {
    color: #1a73e8;
}

.glam-map-container {
    margin-top: 20px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.glam-map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

@media (max-width: 992px) {
    .glam-contact-body {
        flex-direction: column;
        gap: 30px;
    }
}

.blog-card .p-4 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .section-title.underline::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.NlR6zJ7LvE span {
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
}

/* ПК-меню горизонтальне */
.header-nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

.header-nav ul li a {
    display: block;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.header-nav ul li a:hover {
    background: #fff;
    color: #1abc9c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hamburger для мобільного меню */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Мобільне меню, повзуче зліва */
.JkVqnyi7g3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 40px;
    gap: 25px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
}

#menu-toggle:checked~.JkVqnyi7g3 {
    transform: translateX(0);
}

.JkVqnyi7g3 label.close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    cursor: pointer;
    color: #1abc9c;
}

.JkVqnyi7g3 a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1abc9c;
    text-decoration: none;
    transition: color 0.3s;
}

.JkVqnyi7g3 a:hover {
    color: #ffd60a;
}

.menu-toggle {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

@media screen and (max-width: 950px) {
    .header-nav ul {
        display: none;
    }

    .hamburger {
        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: var(--primary-blue)
}

.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5 {
    font-weight: bold;
    text-transform: capitalize;
    position: relative
}

.heading-1 {
    font-size: 64px;
    line-height: 76px
}

.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
    }
}

.body-1 {
    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) {
    .body-1 {
        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: var(--primary-blue)
}

.shape.flash {
    width: 100px;
    height: 100px
}

.padding-1 {
    padding: 1rem
}

.padding-2 {
    padding: 2rem
}

.bordered {
    border: var(--light-grey) .5px solid
}

.w-fit {
    width: fit-content
}

.bg-primary {
    background-color: var(--primary-blue)
}

.Ro0NaXvb6a {
    background-color: var(--light-blue)
}

.bg-white {
    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)
}

.tPDdllrvIl {
    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: var(--primary-blue);
    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: 4rem
}

@media (max-width:998px) {
    .section {
        padding-block: 2rem
    }

    .shape {
        opacity: 0;
        display: none
    }

    .padding-1 {
        padding: .5rem
    }

    .padding-2 {
        padding: 1rem
    }

    .underline::after {
        display: none
    }
}

.box {
    position: relative;
    transition: color 300ms ease-in-out
}

.box.box-hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: var(--primary-blue);
    transition: transform 400ms ease-in-out;
    transform: scaleX(0);
    transform-origin: top;
    color: var(--light-blue)
}

.box.box-hover:hover:before,
.box.box-hover:focus:before {
    transform: scaleX(1)
}

.box.box-hover:hover,
.box.box-hover:focus,
.box.box-hover:hover a i,
.box.box-hover:hover>* {
    color: var(--light-blue)
}

.box.box-hover:hover>p {
    color: var(--light-grey)
}

.btn,
.btn-outline {
    background-color: var(--primary-blue);
    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: var(--primary-blue);
    color: var(--white)
}

.btn:hover {
    border: solid 1px var(--primary-blue);
    color: var(--primary-blue)
}

.btn-outline {
    background-color: var(--white);
    color: var(--primary-blue);
    border: solid 1px var(--primary-blue)
}

@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 var(--primary-blue);
    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: var(--primary-blue) !important
}

.navbar .dropdown-menu {
    background-color: var(--light-blue) !important
}

.navbar .dropdown-menu .dropdown-item {
    color: var(--dark-grey);
    background-color: var(--light-blue)
}

.hero {
    position: relative;
    overflow: hidden
}

.agency .hero .hero-icon {
    font-size: 32px;
    color: var(--primary-blue)
}

.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 .hero .shape-hero-star {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 28%;
    right: 10%
}

.store-img {
    height: 55px;
    width: 180px
}

.hero .shape-organise {
    width: 400px;
    height: 400px;
    top: -50px;
    left: -200px
}

.shape-2 {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    right: -220px
}

.saas .hero {
    min-height: 80vh
}

.ai .hero .boxes-hero-ai {
    top: 0;
    right: -200px
}

.ai .hero .boxes-hero-ai-2 {
    bottom: 200px;
    left: -200px
}

.ai .features i {
    font-size: 48px;
    color: var(--primary-blue)
}

.ai .features .ai-features-shape {
    right: -200px;
    top: -130px
}

.saas .hero i {
    font-size: 24px;
    color: var(--primary-blue)
}

.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: var(--primary-blue)
}

.security .services .icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    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: var(--primary-blue)
}

.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: var(--primary-blue)
}

.service .learn-more {
    color: var(--primary-blue)
}

.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: var(--primary-blue)
}

.security .about .icon i {
    font-size: 32px;
    color: var(--primary-blue)
}

.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: var(--primary-blue);
    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: var(--primary-blue)
}

.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: var(--primary-blue)
}

.agency .about .testimonial-box {
    height: fit-content
}

.agency .about .testimonial-box .icon-star {
    font-size: 24px;
    color: var(--primary-blue)
}

.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: var(--primary-blue)
}

.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: var(--primary-blue)
}

.saas .features .shape-saas-features {
    width: 150px;
    height: 150px;
    right: 0;
    top: 0
}

.integrations .box {
    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 .box {
    width: 600px;
    background-color: var(--light-blue);
    border: solid var(--grey) .5px;
    padding: 1rem
}

.testimonials .box .icon-star {
    font-size: 24px;
    color: var(--primary-blue)
}

.testimonials .shape-saas-testimonials {
    width: 150px;
    height: 150px;
    left: 0;
    top: 0
}

@media (max-width:990px) {
    .testimonials .box {
        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 .box .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: var(--primary-blue);
    padding: 0;
    margin: 0
}

.agency .how-it-works .text {
    flex: .90
}

.ai .how-it-works .number {
    width: 65px;
    height: 65px;
    background-color: var(--primary-blue);
    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: var(--primary-blue) 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 .box .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 .box .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 .box {
    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 .box-saas {
    background-color: var(--light-blue)
}

.pricing .box .icon {
    flex: .15;
    display: flex;
    justify-content: center;
    align-items: center
}

.pricing .box .icon i {
    font-size: 32px;
    color: var(--primary-blue)
}

.pricing .box .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: var(--primary-blue)
}

.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: var(--primary-blue)
}

.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: var(--primary-blue)
}

.box-team .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: var(--border-radius)
}

.box-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
}

.box-team .icons:hover {
    opacity: 1
}

.box-team .icon i {
    font-size: 24px;
    color: var(--primary-blue)
}

.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 .box .icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    flex: .10
}

.saas .faq .box .icon i {
    font-size: 28px;
    color: var(--primary-blue)
}

.saas .faq .box .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 .box-icon {
    font-size: 32px;
    color: var(--primary-blue)
}

.contact .icon i {
    color: var(--primary-blue);
    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: var(--primary-blue)
}

.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: var(--primary-blue)
}