/* =========================================================
   PROCONNECT SOLUTIONS LLC
   Main Website Stylesheet
   ========================================================= */


/* =========================================================
   1. RESET & GLOBAL
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}


/* =========================================================
   2. HEADER
   ========================================================= */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e9edf3;
    position: relative;
    z-index: 100;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* Logo */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.logo-mark {
    width: 43px;
    height: 43px;
    border-radius: 11px;
    background: linear-gradient(135deg, #0b63f6, #0847bd);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(11, 99, 246, 0.22);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 17px;
    letter-spacing: 0.8px;
    color: #14213d;
}

.logo-text small {
    font-size: 9px;
    letter-spacing: 2.2px;
    color: #64748b;
    margin-top: 4px;
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    color: #4b5568;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.25s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #0b63f6;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    border-radius: 20px;
    background: #0b63f6;
}


/* Header button */

.header-button {
    background: #0b63f6;
    color: #ffffff;
    padding: 12px 21px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.header-button:hover {
    background: #084fc7;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(11, 99, 246, 0.2);
}


/* =========================================================
   3. HERO
   ========================================================= */

.hero {
    background:
        radial-gradient(circle at 85% 20%, rgba(44, 128, 255, 0.10), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 88px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(11, 99, 246, 0.06);
    border-radius: 50%;
    right: -180px;
    top: -190px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(11, 99, 246, 0.05);
    border-radius: 50%;
    right: -80px;
    top: -90px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 50px;
    background: #eaf3ff;
    border: 1px solid #d9e9ff;
    color: #0b63f6;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    color: #14213d;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: #0b63f6;
}

.hero-description {
    max-width: 580px;
    color: #5d687b;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 31px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
    margin-bottom: 42px;
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 21px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn-primary {
    background: #0b63f6;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(11, 99, 246, 0.2);
}

.btn-primary:hover {
    background: #084fc7;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(11, 99, 246, 0.25);
}

.btn-secondary {
    background: #ffffff;
    color: #26354d;
    border: 1px solid #dbe2ec;
}

.btn-secondary:hover {
    border-color: #0b63f6;
    color: #0b63f6;
}


/* Hero trust */

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.trust-item {
    padding: 0 23px;
    border-right: 1px solid #dce3ed;
    display: flex;
    flex-direction: column;
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item strong {
    color: #172033;
    font-size: 14px;
}

.trust-item span {
    color: #7b8493;
    font-size: 11px;
    margin-top: 2px;
}


/* =========================================================
   4. HERO CARD
   ========================================================= */

.hero-card {
    width: 100%;
    max-width: 430px;
    margin-left: auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 25px 70px rgba(28, 63, 109, 0.10),
        0 4px 15px rgba(28, 63, 109, 0.04);
}

.hero-card-top {
    padding: 17px 21px;
    background: #f8fafc;
    border-bottom: 1px solid #e9edf3;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #526176;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #21b573;
    box-shadow: 0 0 0 5px rgba(33, 181, 115, 0.10);
}

.hero-card-content {
    padding: 42px 38px;
    text-align: center;
}

.signal-icon {
    height: 68px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    margin-bottom: 25px;
}

.signal-bar {
    width: 12px;
    background: #0b63f6;
    border-radius: 4px 4px 0 0;
}

.bar-1 {
    height: 19px;
    opacity: 0.45;
}

.bar-2 {
    height: 32px;
    opacity: 0.62;
}

.bar-3 {
    height: 47px;
    opacity: 0.8;
}

.bar-4 {
    height: 63px;
}

.hero-card-content h3 {
    font-size: 26px;
    color: #172033;
    margin-bottom: 10px;
}

.hero-card-content p {
    color: #6d7889;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 45px;
    background: #0b63f6;
    border-radius: 7px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.card-button:hover {
    background: #084fc7;
}

.hero-card-footer {
    padding: 14px 21px;
    border-top: 1px solid #edf0f4;
    display: flex;
    justify-content: space-between;
    color: #9aa3b1;
    font-size: 9px;
    letter-spacing: 1px;
    font-weight: 700;
}


/* =========================================================
   5. SECTION HEADINGS
   ========================================================= */

.section-heading {
    max-width: 720px;
    margin-bottom: 52px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    color: #0b63f6;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    margin-bottom: 12px;
}

.section-label.light {
    color: #b9d5ff;
}

.section-heading h2,
.why-content h2,
.options-content h2,
.cta-content h2 {
    color: #14213d;
    font-size: clamp(31px, 4vw, 45px);
    line-height: 1.15;
    letter-spacing: -1.3px;
    margin-bottom: 17px;
}

.section-heading p {
    color: #697589;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   6. SERVICES
   ========================================================= */

.services-preview {
    background: #ffffff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    border: 1px solid #e4e9f0;
    border-radius: 13px;
    padding: 32px 30px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #cfe0fa;
    box-shadow: 0 17px 40px rgba(31, 64, 104, 0.08);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #edf5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 23px;
}

.service-card h3 {
    color: #172033;
    font-size: 20px;
    margin-bottom: 11px;
}

.service-card p {
    color: #6e798b;
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-card a {
    color: #0b63f6;
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   7. WHY SECTION
   ========================================================= */

.why-section {
    padding: 105px 0;
    background: #f7faff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.why-content > p {
    color: #697589;
    font-size: 15px;
    line-height: 1.85;
    max-width: 590px;
    margin-bottom: 34px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 23px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-check {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 50%;
    background: #e8f2ff;
    color: #0b63f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.feature-item h4 {
    color: #25334a;
    font-size: 14px;
    margin-bottom: 4px;
}

.feature-item p {
    color: #7a8494;
    font-size: 12px;
    line-height: 1.65;
}

.text-button {
    color: #0b63f6;
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   8. CONNECTION VISUAL
   ========================================================= */

.why-visual {
    display: flex;
    justify-content: center;
}

.connection-card {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    border-radius: 17px;
    border: 1px solid #e0e7f0;
    box-shadow: 0 25px 55px rgba(27, 62, 103, 0.09);
    overflow: hidden;
}

.connection-header {
    padding: 17px 21px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edf0f4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #758094;
}

.online {
    color: #20a86b;
    font-size: 9px;
}

.connection-graphic {
    min-height: 260px;
    background:
        radial-gradient(circle at center, rgba(11, 99, 246, 0.08), transparent 48%),
        #fbfdff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 25px;
}

.connection-circle {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    border: 2px solid #0b63f6;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b63f6;
    font-size: 14px;
    font-weight: 900;
    box-shadow:
        0 0 0 12px rgba(11, 99, 246, 0.05),
        0 0 0 25px rgba(11, 99, 246, 0.025);
}

.connection-line {
    width: 55px;
    height: 2px;
    background: #bcd5fa;
}

.connection-devices {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.device {
    width: 46px;
    height: 46px;
    border-radius: 9px;
    background: #ffffff;
    border: 1px solid #dfe7f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b63f6;
    font-size: 17px;
    box-shadow: 0 5px 14px rgba(27, 62, 103, 0.06);
}

.connection-bottom {
    padding: 19px 22px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #edf0f4;
}

.connection-bottom div {
    display: flex;
    flex-direction: column;
}

.connection-bottom small {
    color: #9ba4b2;
    font-size: 8px;
    letter-spacing: 1px;
    font-weight: 800;
}

.connection-bottom strong {
    color: #26344b;
    font-size: 12px;
    margin-top: 3px;
}


/* =========================================================
   9. PROCESS
   ========================================================= */

.process-section {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-card {
    padding: 29px 25px;
    border: 1px solid #e4e9f0;
    border-radius: 12px;
    position: relative;
    background: #ffffff;
}

.process-number {
    color: #0b63f6;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 27px;
}

.process-card h3 {
    color: #202e44;
    font-size: 17px;
    margin-bottom: 9px;
}

.process-card p {
    color: #707b8c;
    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   10. OPTIONS SECTION
   ========================================================= */

.options-section {
    padding: 0 0 100px;
}

.options-box {
    min-height: 370px;
    background:
        radial-gradient(circle at 90% 10%, rgba(48, 133, 255, 0.22), transparent 30%),
        linear-gradient(135deg, #0c2550, #0a397d);
    border-radius: 20px;
    padding: 65px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.options-box::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -120px;
    top: -180px;
}

.options-box::after {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    right: 10px;
    bottom: -150px;
}

.options-content {
    max-width: 600px;
    position: relative;
    z-index: 3;
}

.options-content h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.options-content p {
    color: #c9d6e9;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 27px;
    max-width: 570px;
}

.options-content .btn {
    background: #ffffff;
    color: #0b63f6;
}

.options-content .btn:hover {
    background: #edf5ff;
}

.options-decoration {
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    width: 330px;
    height: 250px;
}

.wifi-symbol {
    position: absolute;
    right: 80px;
    top: 55px;
    color: rgba(255, 255, 255, 0.17);
    font-size: 70px;
    letter-spacing: -25px;
    transform: rotate(-10deg);
}

.floating-device {
    position: absolute;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.device-one {
    right: 25px;
    top: 5px;
}

.device-two {
    right: 220px;
    top: 135px;
}

.device-three {
    right: 75px;
    bottom: 5px;
}


/* =========================================================
   11. CTA
   ========================================================= */

.cta-section {
    padding: 80px 0;
    background: #0b63f6;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 11px;
    max-width: 700px;
}

.cta-content p {
    color: #cfe1ff;
    font-size: 14px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-light {
    background: #ffffff;
    color: #0b63f6;
}

.btn-light:hover {
    background: #edf5ff;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* =========================================================
   12. FOOTER
   ========================================================= */

.site-footer {
    background: #101a2b;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.8fr 0.9fr 1fr;
    gap: 55px;
    padding: 70px 0 55px;
}

.footer-logo .logo-text strong {
    color: #ffffff;
}

.footer-logo .logo-text small {
    color: #8290a5;
}

.footer-company > p {
    max-width: 390px;
    color: #8f9bad;
    font-size: 12px;
    line-height: 1.8;
    margin: 20px 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-contact a {
    color: #b8c2d1;
    font-size: 12px;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-column a,
.footer-column p {
    color: #8f9bad;
    font-size: 11px;
    line-height: 1.7;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-inner {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #687589;
    font-size: 9px;
}


/* =========================================================
   13. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .main-nav {
        gap: 20px;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero h1 {
        font-size: 49px;
    }

    .why-grid {
        gap: 45px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .options-decoration {
        opacity: 0.6;
        right: 5px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}


/* =========================================================
   14. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .container {
        width: min(100% - 30px, 600px);
    }

    .section-padding {
        padding: 70px 0;
    }


    /* Header */

    .header-inner {
        min-height: 70px;
        flex-wrap: wrap;
        padding: 12px 0;
        gap: 13px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 21px;
        padding: 7px 0 3px;
        overflow-x: auto;
    }

    .main-nav a {
        font-size: 11px;
        white-space: nowrap;
    }

    .main-nav a.active::after {
        bottom: -4px;
    }

    .header-button {
        padding: 10px 14px;
        font-size: 11px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .logo-text strong {
        font-size: 14px;
    }

    .logo-text small {
        font-size: 7px;
    }


    /* Hero */

    .hero {
        padding: 65px 0 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero h1 {
        font-size: clamp(39px, 11vw, 53px);
        letter-spacing: -1.8px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
        max-width: 350px;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 17px 0;
    }

    .trust-item {
        padding: 0 14px;
    }

    .trust-item:first-child {
        padding-left: 0;
    }

    .hero-card {
        margin: 0 auto;
    }


    /* Sections */

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2,
    .why-content h2,
    .options-content h2,
    .cta-content h2 {
        font-size: 31px;
    }


    /* Services */

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 27px;
    }


    /* Why */

    .why-section {
        padding: 75px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .connection-card {
        max-width: 100%;
    }


    /* Process */

    .process-grid {
        grid-template-columns: 1fr;
    }


    /* Options */

    .options-section {
        padding-bottom: 70px;
    }

    .options-box {
        padding: 45px 27px;
        min-height: 400px;
    }

    .options-decoration {
        display: none;
    }


    /* CTA */

    .cta-section {
        padding: 65px 0;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
        padding: 55px 0 40px;
    }

    .footer-company {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 15px 0;
    }

}


/* =========================================================
   15. SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .container {
        width: calc(100% - 24px);
    }

    .hero {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-card-content {
        padding: 35px 23px;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 17px;
    }

    .trust-item {
        padding: 0;
        border-right: none;
    }

    .trust-item:last-child {
        grid-column: 1 / -1;
    }

    .connection-graphic {
        min-height: 220px;
    }

    .connection-circle {
        width: 90px;
        height: 90px;
    }

    .connection-line {
        width: 25px;
    }

    .device {
        width: 38px;
        height: 38px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-company,
    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom p {
        font-size: 8px;
    }

}


/* =========================================================
   16. ACCESSIBILITY & SELECTION
   ========================================================= */

::selection {
    background: #0b63f6;
    color: #ffffff;
}

:focus-visible {
    outline: 3px solid rgba(11, 99, 246, 0.35);
    outline-offset: 3px;
}


/* =========================================================
   17. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }

}