/* ==========================================================
GLOBAL
========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Inter", Arial, sans-serif;
    width: 100%;
    overflow-x: hidden;
}

button,
input,
select {
    font-family: inherit;
}

a {
    text-decoration: none;
}


a.site-logo img {
    width: 95%;
}

/* ==========================================================
SECTION 01
NAVBAR
========================================================== */

.site-header {
    width: 100%;
    height: 72px;
    background: #030303;
    position: relative;
    z-index: 1000;
}

.header-right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-container {
    height: 69px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 40px);
    max-width: 1226px;
    margin: 0 auto;
}

a.btn.btn-signin {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(90deg, #147dff, #704cff);
    color: #ffffff;
}

/* ==========================================================
NAVIGATION
========================================================== */

.main-navigation {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 27px;
}

.nav-link {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    color: #d4d4d4;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #00d9ff;
}

.nav-link.active {
    color: #00d9ff;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #00d9ff;
}

/* ==========================================================
LANGUAGE
========================================================== */

.language-wrapper {
    position: relative;
    flex-shrink: 0;
}

.language-button {
    height: 36px;
    min-width: 67px;
    padding: 0 9px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 8px;
    background: #092a33;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s ease;
}

.language-button:hover {
    background: #0c3843;
}

.language-flag {
    font-size: 10px;
    line-height: 1;
}

.language-chevron {
    color: #a8a8a8;
    font-size: 23px;
    margin-left: 1px;
}

.language-dropdown {
    position: absolute;
    top: 37px;
    right: 0;
    width: 120px;
    padding: 4px 0;
    background: #ffffff;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: none;
}

.language-dropdown.show {
    display: block;
}

.language-dropdown button {
    width: 100%;
    border: 0;
    background: black;
    text-align: left;
    padding: 11px 14px;
    font-size: 12px;
    cursor: pointer;
    border-bottom: 1px solid #cfcfcf;
    color: white;
}

.language-dropdown button:hover {
    color: #00d9ff;
}

/* ==========================================================
MOBILE MENU
========================================================== */

.mobile-menu-button {
    display: none;
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.mobile-menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
}

/* ==========================================================
SECTION 02
HERO
========================================================== */

.hero-section {
    min-height: calc(100vh - 54px);
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url(/images/bannner-img.jpg) !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* ==========================================================
HERO OVERLAY
========================================================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.83) 0%,
            rgba(0, 0, 0, 0.70) 35%,
            rgba(0, 0, 0, 0.57) 65%,
            rgba(0, 0, 0, 0.49) 100%);
}


/* ==========================================================
HERO CONTAINER
========================================================== */

.hero-container {
    min-height: calc(100vh - 54px);
    width: min(100% - 40px, 1226px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
    padding-top: 38px;
    padding-bottom: 38px;
}


/* ==========================================================
HERO LEFT
========================================================== */

.hero-left {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: 700px;
    padding-left: 7px;
}


/* ==========================================================
HERO HEADING
========================================================== */

.hero-title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.38;
    letter-spacing: -0.45px;
    margin: 0 0 10px;
}

.title-line {
    display: block;
}

.title-highlight {
    color: #159cff;
    font-weight: 700;
}


/* ==========================================================
HERO DESCRIPTION
========================================================== */

.hero-description {
    color: #d0d0d0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    margin: 20px 0 20px;
}


/* ==========================================================
PRIMARY BUTTON
========================================================== */

.primary-button {
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background:
        linear-gradient(90deg,
            #147dff 0%,
            #674cff 100%);

    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    box-shadow:
        0 6px 20px rgba(35, 100, 255, 0.25);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    padding: 11px 27px;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 9px 26px rgba(35, 100, 255, 0.4);
}

.button-arrow {
    font-size: 17px;
    line-height: 0;
    margin-top: -1px;
}


/* ==========================================================
SECTION 04
STATISTICS
========================================================== */

.stats-container {
    width: 100%;
    min-height: 93px;
    margin-top: 29px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 16px;
    background:
        rgba(7, 55, 68, 0.3);
    border:
        1px solid rgba(0, 211, 255, 0.42);
    border-radius: 9px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 220, 255, 0.04);
}


/* ==========================================================
STAT ITEM
========================================================== */

.stat-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 7px;
}


/* ==========================================================
STAT ICON
========================================================== */

.stat-icon {
    width: 41px;
    height: 41px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg,
            #198dff,
            #624dff);
}

.stat-icon svg {
    width: 14px;
    height: 14px;
}

.stat-icon img {
    max-width: 50%;
    max-height: 50%;
    -o-object-fit: contain;
       object-fit: contain;
}


/* ==========================================================
STAT CONTENT
========================================================== */

.stat-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.stat-content strong {
    color: #ffffff;
    font-size: 19px;
    line-height: 1.15;
    font-weight: 500;
    white-space: nowrap;
}

.stat-content span {
    color: #d1d1d1;
    font-size: 12px;
    line-height: 1.3;
    margin-top: 2px;
    white-space: normal;
}


/* ==========================================================
SECTION 05
SIGNUP CARD
========================================================== */

.signup-card {
    width: 395px;
    flex: 0 0 395px;
    padding: 18px 21px 18px;
    position: relative;
    background: #ffffff;
    border-radius: 11px;
    color: #111111;
    border-bottom:
        2px solid #00d9ff;
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.43),
        0 0 0 1px rgba(255, 255, 255, 0.06);

}


/* ==========================================================
SIGNUP TITLE
========================================================== */

.signup-title {
    margin: 0 0 9px;
    text-align: center;
    color: #111111;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
}

.signup-subtitle {
    margin: 0 auto 13px;
    text-align: center;
    color: #777777;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}


/* ==========================================================
FORM FIELD
========================================================== */

.form-field {
    width: 100%;
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    color: #202020;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 4px;
}

.form-field input,
.form-field select {
    width: 100%;
    height: 41px;
    border: 0;
    outline: 0;
    border-radius: 4px;
    background: #f2f2f2;
    color: #333333;
    padding: 0 9px;
    font-size: 12px;
    font-weight: 400;
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease;

}

.form-field input::-moz-placeholder {
    color: #999999;
    opacity: 1;
}

.form-field input::placeholder {
    color: #999999;
    opacity: 1;
}

.form-field input:focus,
.form-field select:focus {
    background: #eeeeee;
    box-shadow:
        0 0 0 1px #3989ff;
}

.form-field select {
    cursor: pointer;
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
    color: #555555;
}


/* ==========================================================
FORM ERROR
========================================================== */

.error-message {
    display: none;
    color: #e53935;
    font-size: 7px;
    margin-top: 3px;
}

.form-field.has-error input,
.form-field.has-error select {
    box-shadow:
        0 0 0 1px #e53935;
    background: #fff8f8;
}

.form-field.has-error .error-message {
    display: block;
}


/* ==========================================================
SIGNUP BUTTON
========================================================== */

.signup-button {
    width: 100%;
    height: 40px;
    margin-top: 2px;
    border: 0;
    border-radius: 6px;
    background:
        linear-gradient(90deg,
            #147dff,
            #704cff);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.signup-button:hover {
    transform: translateY(-1px);
    box-shadow:
        0 6px 15px rgba(54, 86, 255, 0.3);
}

.signup-button:active {
    transform: translateY(0);
}

.signup-button.loading {
    pointer-events: none;
    opacity: 0.85;
}

.button-loader {
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    display: none;
    animation:
        spin 0.7s linear infinite;
}

.signup-button.loading .button-text {
    display: none;
}

.signup-button.loading .button-loader {
    display: block;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}


/* ==========================================================
FORM SUCCESS
========================================================== */

.form-success {
    display: none;
    text-align: center;
    color: #1688ff;
    font-size: 7px;
    line-height: 1.4;
    margin-top: 7px;
}

.form-success.show {
    display: block;
}


/* ==========================================================
EMPTY FUTURE SECTIONS
========================================================== */

.empty-section {
    width: 100%;
    min-height: 0;
    background: #ffffff;
}


/* ==========================================================
TABLET
1100px - 951px
========================================================== */

@media (max-width: 1100px) and (min-width: 951px) {

    .navbar-container {
        width: calc(100% - 40px);
    }

    .main-navigation {
        gap: 16px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero-container {
        width: calc(100% - 40px);

        gap: 30px;
    }

    .hero-left {
        max-width: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }


    /* ======================================================
       STATS
    ====================================================== */

    .stats-container {
        gap: 14px;
        padding: 12px;
    }

    .stat-item {
        gap: 6px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
    }

    .stat-content strong {
        font-size: 15px;
    }

    .stat-content span {
        font-size: 9px;
    }

    .signup-card {
        width: 320px;
        flex-basis: 320px;
    }

}


/* ==========================================================
TABLET / SMALL
950px - 761px
========================================================== */

@media (max-width: 950px) and (min-width: 761px) {

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .navbar-container {
        width: calc(100% - 40px);
    }

    .main-navigation {
        gap: 12px;
        margin-right: 10px;
    }

    .nav-link {
        font-size: 9px;
    }

    .hero-container {
        width: calc(100% - 40px);
        gap: 25px;
    }

    .hero-left {
        max-width: none;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-description {
        font-size: 14px;
    }


    /* ======================================================
       STATS
    ====================================================== */

    .stats-container {
        gap: 8px;
        padding: 10px;
    }

    .stat-item {
        gap: 5px;
    }

    .stat-icon {
        width: 33px;
        height: 33px;
    }

    .stat-content strong {
        font-size: 13px;
    }

    .stat-content span {
        font-size: 8px;
        line-height: 1.2;
    }

    .signup-card {
        width: 255px;
        flex-basis: 255px;
    }

    .signup-title {
        font-size: 20px;
    }

    .form-field label {
        font-size: 13px;
    }

}


/* ==========================================================
TABLET / MOBILE
760px AND BELOW
========================================================== */

@media (max-width: 760px) {

    .site-header {
        height: auto;
    }

    .navbar-container {
        width: calc(100% - 30px);
        height: 58px;
        position: relative;
    }

    .mobile-menu-button {
        display: flex;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 58px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 58px);
        overflow-y: auto;
        padding: 12px 20px;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #030303;
        border-top:
            1px solid #1a1a1a;
    }

    .main-navigation.open {
        display: flex;
    }

    .nav-link {
        height: 38px;
        padding: 0 5px;
        font-size: 11px;
    }

    .nav-link.active::after {
        display: none;
    }


    /* ======================================================
       HERO
    ====================================================== */

    .hero-section {
        min-height: auto;
    }

    .hero-container {
        width: calc(100% - 30px);
        min-height: auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .hero-left {
        width: 100%;
        max-width: 700px;
        padding-left: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }


    /* ======================================================
       STATS
       MEDIUM MOBILE STYLE
       2 COLUMNS
    ====================================================== */

    .stats-container {
        width: 100%;
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 12px;
        min-height: auto;
    }

    .stat-item {
        width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        padding: 4px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .stat-icon svg {
        width: 12px;
        height: 12px;
    }

    .stat-content {
        min-width: 0;
        overflow: hidden;
    }

    .stat-content strong {
        font-size: 13px;
        line-height: 1.15;
        white-space: nowrap;
    }

    .stat-content span {
        font-size: 9px;
        line-height: 1.25;
        white-space: normal;
    }


    /* ======================================================
       SIGNUP
    ====================================================== */

    .signup-card {
        width: min(100%, 420px);
        flex: 0 1 auto;
    }

}


/* ==========================================================
SMALL MOBILE
600px AND BELOW
SAME AS MEDIUM MOBILE
========================================================== */

@media (max-width: 600px) {

    .container {
        padding-left: 11px;
        padding-right: 11px;
    }

    .navbar-container {
        width: calc(100% - 24px);
    }

    .site-logo {
        width: 120px;
    }

    .language-button {
        min-width: 62px;
        padding: 0 7px;
    }


    /* ======================================================
       HERO
    ====================================================== */

    .hero-container {
        width: calc(100% - 24px);
        padding-top: 45px;
        padding-bottom: 45px;
        gap: 30px;
    }

    .hero-title {
        font-size:
            clamp(24px,
                7vw,
                29px);

        line-height: 1.35;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.55;
    }

    .hero-description br {
        display: none;
    }

    .primary-button {
        font-size: 14px;
        padding: 10px 22px;
    }


    /* ======================================================
       STATS
       SAME 2-COLUMN LAYOUT
    ====================================================== */

    .stats-container {
        width: 100%;
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 10px;
        min-height: auto;
    }

    .stat-item {
        width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;
        padding: 3px;
    }

    .stat-icon {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .stat-icon img {
        width: 48%;
        height: auto;
    }

    .stat-icon svg {
        width: 12px;
        height: 12px;
    }

    .stat-content {
        min-width: 0;
        overflow: hidden;
    }

    .stat-content strong {
        font-size: 12px;
        line-height: 1.15;
        white-space: nowrap;
    }

    .stat-content span {
        font-size: 8px;
        line-height: 1.25;
        white-space: normal;
    }


    /* ======================================================
       SIGNUP
    ====================================================== */

    .signup-card {
        width: 100%;
        max-width: 430px;
    }

}


/* ==========================================================
VERY SMALL MOBILE
========================================================== */

@media (max-width: 350px) {

    .stats-container {

        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 7px;
        padding: 8px;
        min-height: auto;
    }

    .stat-item {

        width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 5px;
        padding: 2px;
    }

    .stat-icon {

        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }

    .stat-icon svg {

        width: 10px;
        height: 10px;
    }

    .stat-content {

        min-width: 0;
        overflow: hidden;
    }

    .stat-content strong {

        font-size: 10px;
        line-height: 1.15;
        white-space: nowrap;
    }

    .stat-content span {

        font-size: 6px;
        line-height: 1.2;
        white-space: normal;
    }


    .navbar-container {
        width: calc(100% - 16px);
    }

    .site-logo {
        width: 105px;
    }

    .language-button {
        min-width: 56px;
        font-size: 12px;
    }

    .hero-container {
        width: calc(100% - 16px);
    }

    .hero-title {
        font-size: 23px;
    }

    .hero-description {
        font-size: 13px;
    }

    .signup-card {
        padding-left: 13px;
        padding-right: 13px;
    }

}

/* ==========================================================
EVERYTHING YOU NEED TO GROW YOUR RESTAURANT ONLINE
========================================================== */

.restaurant-solutions-section {
    padding: 48px 20px 62px;
    position: relative;
}

.restaurant-solutions-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

.restaurant-solutions-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 26px;
}

.restaurant-solutions-heading h2 {
    margin: 0 0 14px;
    color: #122033;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.restaurant-solutions-heading h2 span {
    color: #20c7f4;
}

.restaurant-solutions-heading p {
    color: #1e2c3c;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
}

.restaurant-solutions-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.restaurant-solution-card {
    min-width: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #edf4f7;
    border-bottom: 2px solid #19c7f4;
    border-radius: 11px;
    padding: 13px 12px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(24, 159, 205, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.restaurant-solution-card:hover {
    transform: translateY(-3px);
    border-color: #d7f3fa;
    border-bottom-color: #10c5f2;
    box-shadow: 0 8px 22px rgba(24, 159, 205, 0.14);
}

.restaurant-solution-icon {
    margin-bottom: 7px;
}

.restaurant-solution-icon img {
    width: 68%;
}

.restaurant-solution-card h3 {
    margin: 0 0 7px;
    color: #111111;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 500;
}

.restaurant-solution-card p {
    margin-top: 10px;
    color: #6d6d6d;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 400;
}

.restaurant-solution-link {
    display: inline-block;
    padding-top: 25px;
    color: #111111;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    padding-bottom: 9px;
}

.restaurant-solution-link:hover {
    color: #19bce9;
    text-decoration: none;
}

/* ==========================================================
SOLUTIONS TABLET
========================================================== */

@media (max-width: 1050px) and (min-width: 901px) {


    .restaurant-solutions-container {
        width: calc(100% - 40px);
    }

    .restaurant-solutions-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    .restaurant-solution-card h3 {
        font-size: 17px;
    }

    .restaurant-solution-card p {
        font-size: 12px;
    }


}

@media (max-width: 900px) {


    .restaurant-solutions-section {
        padding: 42px 20px 35px;
    }

    .restaurant-solutions-container {
        width: 100%;
    }

    .restaurant-solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .restaurant-solution-card {
        min-height: 160px;
        width: 100%;
    }


}

@media (max-width: 560px) {


    .restaurant-solutions-section {
        padding: 38px 16px 30px;
    }

    .restaurant-solutions-heading {
        margin-bottom: 24px;
    }

    .restaurant-solutions-heading h2 {
        font-size: 25px;
    }

    .restaurant-solutions-heading p {
        font-size: 14px;
        line-height: 1.5;
    }

    .restaurant-solutions-heading p br {
        display: none;
    }

    .restaurant-solutions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .restaurant-solution-card {
        min-height: 165px;
        padding: 15px 14px 13px;
    }

    .restaurant-solution-card p {
        max-width: 280px;
        font-size: 13px;
    }


}

/* ==========================================================
WHY PEOPLE CHOOSE US
========================================================== */

.why-choose-section {
    width: 100%;
    min-height: 385px;
    position: relative;
    overflow: hidden;
    background-image: url(/images/c99f37d6391f4bf69d7ab83a13e77ccc5b4313fa.jpg);
    background-position: center;
    background-size: cover;
    padding: 48px 20px 50px;
    color: #ffffff;
}

.why-choose-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 72px;
}

.why-choose-images {
    position: relative;
    min-width: 0;
}

.why-choose-images img {
    width: 97%;
}

.why-main-image {
    display: block;
    width: 100%;
}

.why-front-image {
    width: 180px;
    height: 200px;
    position: absolute;
    left: 160px;
    bottom: 0;
    z-index: 3;
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.why-front-image img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
}

.why-choose-title {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.4px;
}

.why-feature-card {
    margin-bottom: 10px;
    padding: 13px 15px 13px 9px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #11b9f1;
    border-radius: 62px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    color: #111111;
    justify-content: flex-start;
}

.why-feature-card:last-child {
    margin-bottom: 0;
}

.why-feature-icon {
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #5275ff, #3458ff);
    box-shadow: 0 2px 7px rgba(57, 92, 255, 0.22);
    padding: 9px;
}

.why-feature-icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

.why-feature-content {
    min-width: 0;
    padding-left: 19px;
}

.why-feature-content h3 {
    margin: 6px 0 6px;
    color: #111111;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
}

.why-feature-content p {
    margin: 0;
    color: #555555;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;
    min-height: 45px;
    height: 100%;
}

/* ==========================================================
WHY CHOOSE TABLET
========================================================== */

@media (max-width: 1000px) and (min-width: 701px) {


    .why-choose-section {
        padding: 45px 25px;
    }

    .why-choose-container {
        width: 100%;
        gap: 35px;
    }

    .why-choose-images {
        padding-left: 0;
    }

    .why-main-image {
        width: 100%;
    }

    .why-front-image {
        width: 150px;
        height: 170px;
        left: 38%;
    }

    .why-choose-title {
        font-size: 27px;
    }

    .why-feature-card {
        padding-right: 10px;
    }

    .why-feature-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
    }

    .why-feature-content {
        padding-left: 10px;
    }

    .why-feature-content h3 {
        font-size: 14px;
    }

    .why-feature-content p {
        font-size: 10px;
        min-height: 0;
    }


}

/* ==========================================================
WHY CHOOSE MOBILE
========================================================== */

@media (max-width: 700px) {


    .why-choose-section {
        min-height: auto;
        padding: 40px 18px 45px;
    }

    .why-choose-container {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .why-choose-images {
        width: 100%;
        min-height: 285px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-left: 0;
    }

    .why-main-image {
        width: 255px;
        height: auto;
    }

    .why-front-image {
        width: 165px;
        height: 185px;
        left: calc(50% + 15px);
        bottom: 0;
    }

    .why-choose-content {
        max-width: 100%;
    }

    .why-choose-title {
        text-align: center;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .why-feature-card {
        min-height: 70px;
        padding: 8px 14px 8px 8px;
    }

    .why-feature-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .why-feature-content {
        padding-left: 11px;
    }

    .why-feature-content h3 {
        font-size: 16px;
    }

    .why-feature-content p {
        font-size: 8px;
        min-height: 0;
    }


}

@media (max-width: 430px) {


    .why-choose-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .why-choose-images {
        min-height: 250px;
    }

    .why-main-image {
        width: 225px;
    }

    .why-front-image {
        width: 145px;
        height: 165px;
        left: calc(50% + 5px);
    }

    .why-choose-title {
        font-size: 25px;
    }

    .why-feature-card {
        border-radius: 28px;
    }

    .why-feature-content p {
        font-size: 12px;
    }


}

@media (max-width: 350px) {


    .why-choose-images {
        min-height: 220px;
    }

    .why-main-image {
        width: 195px;
    }

    .why-front-image {
        width: 125px;
        height: 145px;
        left: calc(50% + 5px);
    }

    .why-choose-title {
        font-size: 22px;
    }

    .why-feature-card {
        padding: 7px 9px 7px 7px;
        border-radius: 22px;
    }

    .why-feature-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        padding: 7px;
    }

    .why-feature-icon img {
        width: 100%;
    }

    .why-feature-content {
        padding-left: 8px;
    }

    .why-feature-content h3 {
        font-size: 13px;
    }

    .why-feature-content p {
        font-size: 10px;
    }


}

/* ==========================================================
START TAKING ONLINE ORDERS
========================================================== */

.online-orders-section {
    width: 100%;
    padding: 85px 20px 75px;
    background: #ffffff;
}

.online-orders-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

.online-orders-heading {
    text-align: center;
    margin-bottom: 30px;
}

.online-orders-heading h2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 12px;
    padding: 7px 14px;
    border: 1px dashed #cfd5df;
    border-radius: 20px;
    background: #ffffff;
    color: #17263c;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.online-orders-heading p {
    margin: 0;
    color: #53657e;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

.online-orders-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 35px rgba(34, 72, 111, 0.035);
}

.online-order-card {
    position: relative;
    min-height: 222px;
    padding: 18px 44px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: #ffffff;
    border: 1px solid #edf1f6;
}

.online-order-card:nth-child(1),
.online-order-card:nth-child(3) {
    border-right: 1px solid rgba(10, 173, 204, 1);
}

.online-order-card:nth-child(1),
.online-order-card:nth-child(2) {
    border-bottom: 1px solid rgba(24, 196, 228, 1);
}

.online-order-card h3 {
    margin: 0 0 10px;
    color: #17263c;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.online-order-icon {
    padding-bottom: 11px;
}

.online-order-icon img {
    width: 81%;
}

.online-order-icon :hover {
    transform: translateY(-2px);
}

.online-order-card p {
    max-width: 430px;
    margin: 0;
    color: #53657e;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.online-orders-grid::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #177bff;
    border-radius: 1px;
    z-index: 5;
}

.online-orders-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.online-orders-button {
    min-width: 116px;
    height: 40px;
    padding: 0 10px 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    border-radius: 18px;
    background: linear-gradient(90deg, #147cff 0%, #6850ff 100%);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(42, 105, 255, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.online-orders-button span:first-child {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.online-orders-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 105, 255, 0.22);
}

.online-orders-arrow {
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    font-size: 17px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}

.online-orders-button:hover .online-orders-arrow {
    transform: translateX(2px);
}

/* ==========================================================
ONLINE ORDERS TABLET
========================================================== */

@media (max-width: 900px) {


    .online-orders-section {
        padding: 70px 20px 65px;
    }

    .online-orders-container {
        width: 100%;
    }

    .online-order-card {
        min-height: 190px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .online-order-card h3 {
        font-size: 18px;
    }

    .online-order-card p {
        font-size: 14px;
    }


}

@media (max-width: 600px) {


    .online-orders-section {
        padding: 55px 15px 55px;
    }

    .online-orders-heading {
        margin-bottom: 24px;
    }

    .online-orders-heading h2 {
        font-size: 16px;
    }

    .online-orders-heading p {
        font-size: 11px;
        line-height: 1.6;
    }

    .online-orders-heading p br {
        display: none;
    }

    .online-orders-grid {
        grid-template-columns: 1fr;
        border-radius: 15px;
    }

    .online-order-card {
        min-height: auto;
        padding: 28px 25px 30px;
        border-right: 1px solid #edf1f6 !important;
        border-left: 1px solid #edf1f6;
    }

    .online-order-card:nth-child(1),
    .online-order-card:nth-child(2),
    .online-order-card:nth-child(3),
    .online-order-card:nth-child(4) {
        border-bottom: 1px solid #e7edf4;
    }

    .online-orders-grid::after {
        display: none;
    }

    .online-order-card h3 {
        font-size: 15px;
    }

    .online-order-card p {
        font-size: 13px;
        max-width: 350px;
    }


}

@media (max-width: 400px) {


    .online-orders-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .online-order-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .online-orders-heading p {
        font-size: 12px;
    }


}

/* ==========================================================
3 STEPS TO GET YOUR BUSINESS ONLINE
========================================================== */

.three-steps-section {
    position: relative;
    width: 100%;
    min-height: 455px;
    overflow: hidden;
    background-image: url(/images/background-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.three-steps-container {
    z-index: 2;
    /* width: min(calc(100% - 44px), 987px); */
    margin: 0 auto;
    padding: 85px 0 61px;
    max-width: 1160px;
}

.three-steps-title {
    margin: 0 0 37px;
    color: #ffffff;
    text-align: center;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.35px;
}

.three-steps-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    padding: 21px;
}

.three-step-card {
    width: 100%;
    min-height: 238px;
    padding: 10px 10px 15px;
    background: #ffffff;
    border-radius: 11px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.three-step-card h3 {
    margin: 9px 0 6px;
    padding: 0;
    color: #080808;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.three-step-image {
    width: 100%;
    overflow: hidden;
}

.three-step-image img {
    width: 100%;
    display: block;
}

.three-step-card p {
    margin: 0;
    color: #111111;
    font-size: 16px;
    line-height: 1.48;
    font-weight: 400;
    text-align: center;
    padding: 11px;
}

.three-steps-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.three-steps-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    min-width: 116px;
    height: 42px;
    margin-top: 25px;
    padding: 0 20px 0 25px;
    border-radius: 30px;
    background: linear-gradient(100deg, #168cff 0%, #315cff 45%, #7651f7 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.three-steps-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(64, 82, 255, 0.38);
    background: linear-gradient(100deg, #2898ff 0%, #4169ff 45%, #865fff 100%);
}

.three-steps-button-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 400;
    line-height: 0;
    transform: translateY(-1px);
}

/* ==========================================================
THREE STEPS TABLET
========================================================== */

@media (max-width: 900px) and (min-width: 601px) {


    .three-steps-container {
        width: calc(100% - 40px);
        padding: 60px 0 50px;
    }

    .three-steps-title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .three-steps-cards {
        gap: 12px;
    }

    .three-step-card {
        min-height: 220px;
    }

    .three-step-card h3 {
        font-size: 16px;
    }

    .three-step-card p {
        font-size: 12px;
        padding: 7px;
    }


}

@media (max-width: 600px) {


    .three-steps-section {
        min-height: auto;
        background:
            radial-gradient(circle at 100% 0%,
                rgba(82, 54, 255, 0.22) 0%,
                transparent 40%),
            linear-gradient(110deg,
                #08021f 0%,
                #0a0325 100%);
    }

    .three-steps-container {
        width: calc(100% - 30px);
        padding: 40px 0 42px;
    }

    .three-steps-title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .three-steps-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .three-step-card {
        width: 100%;
        min-height: 0;
        padding: 10px 10px 17px;
        border-radius: 11px;
    }

    .three-step-image {
        width: 91%;
        height: auto;
        border-radius: 8px;
    }

    .three-step-image img {
        border-radius: 8px;
    }

    .three-step-card h3 {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 6px;
    }

    .three-step-card p {
        max-width: 360px;
        padding: 0 8px;
        font-size: 13px;
        line-height: 1.55;
    }

    .three-steps-button-wrapper {
        margin-top: 20px;
    }

    .three-steps-button {
        min-width: 120px;
        height: 34px;
        font-size: 11px;
    }


}

@media (max-width: 380px) {


    .three-steps-container {
        width: calc(100% - 24px);
        padding-top: 34px;
        padding-bottom: 36px;
    }

    .three-steps-title {
        font-size: 24px;
    }

    .three-step-image {
        width: 100%;
        height: auto;
    }

    .three-step-card h3 {
        font-size: 16px;
    }

    .three-step-card p {
        font-size: 13px;
    }


}


@media (max-width: 1024px) {
    .three-steps-cards {
        padding: 22px;
    }
}

/* ==========================================================
CUSTOMER FEEDBACK + CTA SECTION
========================================================== */

.customer-feedback-main-section {
    width: 100%;
    padding: 70px 20px 90px;
    background-image: url(/images/footer-bckground-img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.customer-feedback-wrapper {
    width: min(100%, 1060px);
    margin: 0 auto 45px;
    position: relative;
}

.customer-feedback-card {
    width: 95%;
    min-height: 355px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    background-image: url(/images/customer-feedback-background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    display: none;
    margin: 0 auto;
}

.customer-feedback-card.active {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    -moz-column-gap: 35px;
         column-gap: 35px;
    align-items: center;
}

.customer-feedback-content {
    padding: 42px 0 45px 40px;
    position: relative;
    z-index: 2;
}

.customer-feedback-title {
    margin: 0 0 12px;
    color: #050505;
    font-size: 29px;
    line-height: 1.2;
    font-weight: 700;
}

.customer-feedback-text {
    margin: 0;
    color: #171717;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
}

.customer-feedback-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.customer-feedback-avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #2188ff;
    background: #dbeeff;
}

.customer-feedback-avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

.customer-feedback-user-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.customer-feedback-user-info h3 {
    margin: 0;
    color: #111111;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}

.customer-feedback-user-info span {
    color: #161616;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 400;
}

.customer-feedback-image-area {
    width: 100%;
    height: 100%;
    min-height: 295px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.customer-feedback-image-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.customer-feedback-image-box img {
    width: 73%;
    /* height: 100%; */
    /* object-fit: cover; */
    /* display: block; */
}

.customer-feedback-pagination {
    position: absolute;
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 10;
}

.customer-pagination-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #258cff;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.customer-pagination-dot:hover {
    transform: scale(1.15);
}

.customer-pagination-dot.active {
    background: #2389ff;
    box-shadow: 0 0 8px rgba(35, 137, 255, 0.35);
}

.customer-feedback-cta {
    width: min(100%, 991px);
    min-height: 213px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(51, 207, 255, 0.85);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/grow-img.jpg) center / cover no-repeat;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
}

.customer-feedback-cta-content {
    min-height: 206px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.customer-feedback-cta-content h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.customer-feedback-cta-content p {
    margin: 14px 0 16px;
    color: #f2f3ff;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 400;
}

.customer-feedback-cta-button {
    min-width: 142px;
    height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 9px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(100deg, #1687ff 0%, #6665ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 18px rgba(21, 104, 255, 0.35);
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.customer-feedback-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 23px rgba(21, 104, 255, 0.48);
}

.customer-feedback-cta-arrow {
    font-size: 17px;
    line-height: 1;
    margin-top: -1px;
}

/* ==========================================================
FEEDBACK TABLET
========================================================== */

@media (max-width: 900px) and (min-width: 701px) {


    .customer-feedback-main-section {
        padding: 55px 20px 70px;
    }

    .customer-feedback-wrapper {
        width: 100%;
    }

    .customer-feedback-card {
        width: 100%;
    }

    .customer-feedback-card.active {
        grid-template-columns: minmax(0, 1fr) 250px;
        -moz-column-gap: 15px;
             column-gap: 15px;
    }

    .customer-feedback-content {
        padding-left: 30px;
    }

    .customer-feedback-text {
        max-width: 500px;
        font-size: 15px;
    }

    .customer-feedback-title {
        font-size: 25px;
    }

    .customer-feedback-cta {
        width: 100%;
    }


}

/* ==========================================================
FEEDBACK MOBILE
========================================================== */

@media (max-width: 700px) {


    .customer-feedback-main-section {
        padding: 40px 12px 55px;
    }

    .customer-feedback-wrapper {
        width: 100%;
        margin-bottom: 28px;
    }

    .customer-feedback-card {
        width: 100%;
        min-height: auto;
    }

    .customer-feedback-card.active {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .customer-feedback-content {
        padding: 30px 25px 15px;
    }

    .customer-feedback-title {
        font-size: 23px;
        margin-bottom: 12px;
    }

    .customer-feedback-text {
        font-size: 14px;
        line-height: 1.65;
        max-width: none;
    }

    .customer-feedback-user {
        margin-top: 18px;
    }

    .customer-feedback-image-area {
        min-height: 230px;
    }

    .customer-feedback-image-box {
        height: 230px;
    }

    .customer-feedback-image-box img {
        width: 50%;
    }

    .customer-feedback-pagination {
        left: 87%;
        bottom: 18px;
    }

    .customer-feedback-cta {
        width: 100%;
        min-height: 155px;
        border-radius: 13px;
    }

    .customer-feedback-cta-content {
        min-height: 155px;
        padding: 25px 15px;
    }

    .customer-feedback-cta-content h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .customer-feedback-cta-content p {
        font-size: 13px;
    }


}

@media (max-width: 420px) {


    .customer-feedback-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .customer-feedback-title {
        font-size: 21px;
    }

    .customer-feedback-text {
        font-size: 13px;
    }

    .customer-feedback-image-area {
        min-height: 205px;
    }

    .customer-feedback-image-box {
        height: 205px;
    }

    .customer-feedback-image-box img {
        width: 50%;
    }

    .customer-feedback-cta-content h2 {
        font-size: 18px;
    }


}

@media (max-width: 350px) {


    .customer-feedback-main-section {
        padding-left: 8px;
        padding-right: 8px;
    }

    .customer-feedback-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .customer-feedback-title {
        font-size: 19px;
    }

    .customer-feedback-text {
        font-size: 12px;
    }

    .customer-feedback-image-area {
        min-height: 185px;
    }

    .customer-feedback-image-box {
        height: 185px;
    }

    .customer-feedback-cta-content h2 {
        font-size: 17px;
    }

    .customer-feedback-cta-content p {
        font-size: 12px;
    }


}

/* =====================================================
FOOTER
====================================================== */

.site-footer {
    width: 100%;
    background-image: url(/images/footer-bckground-img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 40px 20px 12px;
}

.footer-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr .8fr 1.2fr .85fr;
    gap: 55px;
}

.footer-logo {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.footer-logo-main {
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.5px;
}

.footer-logo-online {
    color: #03d7ff;
    font-size: 18px;
    line-height: .95;
    font-weight: 700;
    letter-spacing: .3px;
}

.footer-description {
    margin: 0;
    color: #b6bec6;
    font-size: 16px;
    line-height: 1.55;
    margin-top: 15px;
}

.footer-heading {
    color: #ffffff;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 600;
    margin: 1px 0 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #c4c9ce;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #c4c9ce;
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.footer-contact-item a {
    color: #c4c9ce;
}

.footer-contact-icon {
    width: 29px;
    flex: 0 0 9px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
}

.footer-brand img {
    width: 70%;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social {
    width: 34px;
    height: 34px;
    border: 1px solid #6c7379;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 8px;
    font-weight: 500;
    transition: all .2s ease;
}

.footer-social:hover {
    border-color: #00d8ff;
    color: #00d8ff;
}

.footer-socials img {
    width: 55%;
}

.footer-bottom {
    width: 100%;
    max-width: 1080px;
    margin: 25px auto 0;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-copyright {
    color: #777f86;
    font-size: 13px;
    line-height: 1.2;
    margin: 0;
}

/* =====================================================
FOOTER RESPONSIVE
====================================================== */

@media (max-width: 1100px) and (min-width: 901px) {


    .footer-container {
        width: calc(100% - 40px);
        grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
        gap: 25px;
    }

    .footer-description,
    .footer-links a,
    .footer-contact-item {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 18px;
    }


}

@media (max-width: 900px) and (min-width: 701px) {


    .footer-container {
        width: calc(100% - 40px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .footer-description,
    .footer-links a,
    .footer-contact-item {
        font-size: 14px;
    }


}

@media (max-width: 700px) {


    .site-footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-container {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .footer-description,
    .footer-links a,
    .footer-contact-item {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 18px;
    }


}

@media (max-width: 450px) {


    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-heading {
        font-size: 18px;
    }

    .footer-description,
    .footer-links a,
    .footer-contact-item {
        font-size: 13px;
    }

    .footer-bottom {
        margin-top: 20px;
    }

    .footer-copyright {
        font-size: 11px;
    }


}

/* ==========================================================
FAQ SECTION
========================================================== */

.faq-section {
    width: 100%;
    padding: 80px 20px 70px;
    background: #ffffff;
}

.faq-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.faq-title {
    margin: 0 0 30px;
    text-align: center;
    color: #080808;
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
}

.faq-tabs {
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    min-height: 46px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    border: 1px solid #9bdcff;
    border-radius: 7px;
    background: #ffffff;
    overflow-x: auto;
}

.faq-tab {
    position: relative;
    min-height: 44px;
    padding: 0 17px;
    border: 0;
    border-right: 1px solid #dce5ed;
    outline: none;
    background: transparent;
    color: #111333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

.faq-tab:last-child {
    border-right: none;
}

.faq-tab:hover {
    color: #1677f2;
    background: #f5faff;
}

.faq-tab.active {
    margin: 13px 10px;
    min-height: 38px;
    border: none;
    border-radius: 5px;
    background: #1677f2;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(22, 119, 242, 0.20);
}

.faq-tab-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.faq-tab-content.active {
    display: grid;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    width: 100%;
    border: 1px solid #edf0f5;
    border-radius: 9px;
    background: #ffffff;
    box-shadow: 0 7px 15px rgba(20, 30, 55, 0.10);
    overflow: hidden;
    transition: box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
    box-shadow: 0 9px 20px rgba(20, 30, 55, 0.13);
}

.faq-question {
    width: 100%;
    min-height: 76px;
    padding: 20px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: none;
    outline: none;
    background: #ffffff;
    color: #0c0d35;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a8b4d4;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    padding: 0 17px;
    overflow: hidden;
    opacity: 0;
    background: #ffffff;
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
}

.faq-answer p {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 400;
}

.faq-item.open {
    background: #1677f2;
    border-color: #1677f2;
    box-shadow: 0 8px 18px rgba(22, 119, 242, 0.24);
}

.faq-item.open .faq-question {
    background: #1677f2;
    color: #ffffff;
}

.faq-item.open .faq-icon {
    color: #ffffff;
}

.faq-item.open .faq-answer {
    max-height: 180px;
    padding: 0 17px 18px;
    background: #1677f2;
    opacity: 1;
}

/* ==========================================================
FAQ TABLET
========================================================== */

@media (max-width: 900px) {


    .faq-section {
        padding: 65px 20px 60px;
    }

    .faq-container {
        max-width: 760px;
    }

    .faq-title {
        font-size: 27px;
    }

    .faq-tabs {
        width: 100%;
        justify-content: flex-start;
    }

    .faq-tab {
        padding: 0 13px;
    }

    .faq-question {
        min-height: 72px;
        font-size: 12px;
    }


}

/* ==========================================================
FAQ MOBILE
========================================================== */

@media (max-width: 650px) {


    .faq-section {
        padding: 50px 15px 50px;
    }

    .faq-container {
        width: 100%;
    }

    .faq-title {
        margin-bottom: 24px;
        font-size: 24px;
    }

    .faq-tabs {
        width: 100%;
        margin-bottom: 18px;
        border-radius: 6px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .faq-tabs::-webkit-scrollbar {
        display: none;
    }

    .faq-tab {
        flex: 0 0 auto;
        padding: 0 14px;
        font-size: 9px;
    }

    .faq-tab-content.active {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-column {
        gap: 12px;
    }

    .faq-question {
        min-height: 68px;
        padding: 17px 15px;
        font-size: 10px;
    }

    .faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .faq-item.open .faq-answer {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 16px;
    }

    .faq-answer p {
        font-size: 12px;
        line-height: 1.55;
    }


}

/* ==========================================================
FAQ SMALL MOBILE
========================================================== */

@media (max-width: 400px) {


    .faq-title {
        font-size: 22px;
    }

    .faq-tab {
        padding: 0 12px;
        font-size: 11px;
    }

    .faq-question {
        min-height: 64px;
        font-size: 12px;
    }


}

/* ==========================================================
EXTRA SMALL DEVICES
========================================================== */

@media (max-width: 350px) {

    .faq-section {
        padding-left: 8px;
        padding-right: 8px;
    }

    .faq-title {
        font-size: 20px;
    }

    .faq-tab {
        padding: 0 9px;
        font-size: 9px;
    }

    .faq-question {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 11px;
    }

    .faq-answer p {
        font-size: 11px;
    }


}

/* ==========================================================
LANDSCAPE MOBILE
========================================================== */

@media (max-height: 500px) and (orientation: landscape) and (max-width: 900px) {


    .hero-container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .stats-container {
        margin-top: 15px;
    }

    .signup-card {
        max-height: 85vh;
        overflow-y: auto;
    }

    .three-steps-container {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .customer-feedback-main-section {
        padding-top: 35px;
        padding-bottom: 35px;
    }


}

/* ==========================================================
TOUCH DEVICES
========================================================== */

@media (hover: none) and (pointer: coarse) {


    .restaurant-solution-card:hover,
    .primary-button:hover,
    .signup-button:hover,
    .online-orders-button:hover,
    .three-steps-button:hover,
    .customer-feedback-cta-button:hover {
        transform: none;
    }

    .button-loader {
        will-change: transform;
    }


}

/* ==========================================================
REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {


    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }


}

/* ==========================================================
EXTRA WIDE SCREENS
========================================================== */

@media (min-width: 1600px) {

    .hero-container {
        max-width: 1320px;
    }

    .restaurant-solutions-container {
        max-width: 1240px;
    }

    .why-choose-container {
        max-width: 1240px;
    }

    .online-orders-container {
        max-width: 1240px;
    }

    .three-steps-container {
        max-width: 1200px;
    }

    .footer-container,
    .footer-bottom {
        max-width: 1180px;
    }

    .faq-container {
        max-width: 1200px;
    }

}



/* ==========================================================
   BASE / GLOBAL
========================================================== */

.contact-banner,
.get-in-touch,
.contact-container {
    width: 100%;
}

.contact-banner-content,
.get-in-touch-container,
.contact-container>div {
    box-sizing: border-box;
}

.get-in-touch-field input,
.get-in-touch-field textarea,
.get-in-touch-submit {
    box-sizing: border-box;
}


/* ==========================================================
   CONTACT BANNER
========================================================== */

.contact-banner {
    width: 100%;
    height: 391px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url("/images/3.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.contact-banner-content {
    width: 100%;
    max-width: 1104px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;

}

.contact-banner-content h1 {
    margin: 0 0 12px;
    font-size: 41px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.contact-banner-content p {
    margin: 0;
    font-size: 19px;
    line-height: 1.5;
    font-weight: 400;
    color: #ffffff;
}

/* ==========================================================
   CONTACT CONTAINER
========================================================== */

.contact-container {
    width: 100%;
    padding: 24px 20px;
    background: #ffffff;
}

.contact-container>div {
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
}

/* ==========================================================
   GET IN TOUCH
========================================================== */

.get-in-touch {
    width: 100%;
    padding: 14px 20px 59px;
    background: #ffffff;
}

.get-in-touch-container {
    width: 100%;
    max-width: 1124px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 68px;
    align-items: stretch;
}


/* ==========================================================
   LEFT CONTACT FORM
========================================================== */

.get-in-touch-form {
    width: 100%;
    min-width: 0;
    padding-top: 0;
}

.get-in-touch-form h2 {
    margin: 0 0 18px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #111111;
}

.get-in-touch-form-description {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    color: #8b8b8b;
}

/* ==========================================================
   FORM
========================================================== */

.get-in-touch-form form {
    width: 100%;
}

.get-in-touch-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.get-in-touch-field {
    width: 100%;
    min-width: 0;
    margin-bottom: 12px;
}

.get-in-touch-field label {
    display: block;
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    color: #283447;
}

.get-in-touch-field input,
.get-in-touch-field textarea {
    width: 100%;
    border: 1px solid #d9dfe7;
    border-radius: 5px;
    outline: none;
    background: #ffffff;
    color: #3d4654;
    font-size: 14px;
    font-weight: 400;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.get-in-touch-field input {
    height: 42px;
    padding: 0 8px;
}


.get-in-touch-field textarea {
    height: 75px;
    padding: 9px 8px;
    resize: vertical;
    min-height: 75px;
}


.get-in-touch-field input::-moz-placeholder, .get-in-touch-field textarea::-moz-placeholder {
    color: #8d98a8;
    opacity: 1;
}


.get-in-touch-field input::placeholder,
.get-in-touch-field textarea::placeholder {
    color: #8d98a8;
    opacity: 1;
}


.get-in-touch-field input:focus,
.get-in-touch-field textarea:focus {
    border-color: #3b8cff;
    box-shadow: 0 0 0 2px rgba(59, 140, 255, 0.08);
}


/* ==========================================================
   UPLOAD BUTTON
========================================================== */

.get-in-touch-upload {
    margin-top: 2px;
}


.get-in-touch-upload input[type="file"] {
    display: none;
}


.get-in-touch-upload label {
    width: 123px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #1678ff;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.get-in-touch-upload label:hover {
    background: #0868ec;
    transform: translateY(-1px);
}


.get-in-touch-upload-text {
    margin: 12px 0 14px;
    font-size: 13px;
    line-height: 1.45;
    color: #647084;
}


/* ==========================================================
   SEND BUTTON
========================================================== */

.get-in-touch-submit {
    width: 100%;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(90deg,
            #187eff 0%,
            #26c5ed 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.get-in-touch-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(24, 126, 255, 0.22);
}


/* ==========================================================
   RIGHT INFORMATION CARD
========================================================== */

.get-in-touch-info {
    width: 100%;
    min-width: 0;
    min-height: 465px;
    padding: 57px 28px 25px;
    border-radius: 12px;
    background: rgba(238, 252, 255, 1);
}


.get-in-touch-info h2 {
    margin: 0 0 14px;
    font-size: 31px;
    line-height: 1.25;
    font-weight: 700;
    color: #111111;
}


.get-in-touch-info-description {
    margin: 17px 0 21px;
    font-size: 15px;
    line-height: 1.45;
    color: #87919a;
}


/* ==========================================================
   INFO GRID
========================================================== */

.get-in-touch-info-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 38px;
         column-gap: 38px;
    row-gap: 18px;
}


.get-in-touch-info-item {
    min-width: 0;
}


/* ==========================================================
   INFO ICON
========================================================== */

.get-in-touch-info-icon {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}


.get-in-touch-info-icon img {
    width: 28px;
    max-width: 100%;
    height: auto;
    display: block;
}


/* ==========================================================
   INFO TEXT
========================================================== */

.get-in-touch-info-item h3 {
    margin: 0 0 9px;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 600;
    color: #111111;
}


.get-in-touch-info-item p {
    margin: 0 0 7px;
    font-size: 13px;
    line-height: 1.5;
    color: #92999f;
    overflow-wrap: anywhere;
}


.get-in-touch-info-item a {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    color: #087cff;
    overflow-wrap: anywhere;
}


.get-in-touch-info-item a:hover {
    text-decoration: underline;
}


/* ==========================================================
   QR CODE
========================================================== */

.get-in-touch-qr {
    width: 135px;
    max-width: 100%;
    margin-top: 21px;
}


.get-in-touch-qr img {
    width: 100%;
    max-width: 135px;
    height: auto;
    display: block;
}


/* ==========================================================
   LARGE TABLET / SMALL LAPTOP
   1024px
========================================================== */

@media (max-width: 1024px) {

    .contact-banner-content {
        max-width: 100%;
        padding: 0 43px;
    }


    .get-in-touch {
        padding: 30px 35px 55px;
    }


    .get-in-touch-container {
        max-width: 100%;
        gap: 40px;
    }


    .get-in-touch-info {
        padding: 45px 25px 25px;
    }


    .get-in-touch-info-icon img {
        width: 28px;
    }


    .get-in-touch-info-item h3 {
        font-size: 20px;
    }

}


/* ==========================================================
   TABLET
   900px
========================================================== */

@media (max-width: 900px) {

    /* .contact-banner {
        height: 320px;
    } */


    .contact-banner-content {
        padding: 0 30px;
    }


    .contact-banner-content h1 {
        font-size: 36px;
    }


    .contact-banner-content p {
        font-size: 17px;
    }


    .get-in-touch {
        padding: 35px 30px 50px;
    }


    .get-in-touch-container {
        gap: 35px;
    }


    .get-in-touch-form h2 {
        font-size: 28px;
    }


    .get-in-touch-info h2 {
        font-size: 27px;
    }


    .get-in-touch-info-grid {
        -moz-column-gap: 25px;
             column-gap: 25px;
    }


    .get-in-touch-info-item h3 {
        font-size: 18px;
    }

}


/* ==========================================================
   TABLET / MOBILE
   800px
========================================================== */

@media (max-width: 800px) {

    .get-in-touch-container {
        grid-template-columns: 1fr;
        max-width: 660px;
        gap: 40px;
    }


    .get-in-touch-info {
        min-height: auto;
        padding: 40px 28px 30px;
    }


    .get-in-touch-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================================
   MOBILE
   650px
========================================================== */

@media (max-width: 650px) {

    .contact-banner {
        height: 230px;
    }


    .contact-banner-content {
        padding: 0 20px;
    }


    .contact-banner-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 8px;
    }


    .contact-banner-content p {
        font-size: 14px;
        line-height: 1.45;
    }


    .contact-container {
        padding: 3px 15px;
    }

    section.get-in-touch {
        padding: 35px 17px 45px;
    }


    .get-in-touch-container {
        width: 100%;
        max-width: 100%;
        gap: 35px;
    }


    .get-in-touch-form h2,
    .get-in-touch-info h2 {
        font-size: 23px;
    }


    .get-in-touch-form-description,
    .get-in-touch-info-description {
        font-size: 14px;
    }


    .get-in-touch-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .get-in-touch-info {
        padding: 30px 22px 25px;
        border-radius: 10px;
    }


    .get-in-touch-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        -moz-column-gap: 20px;
             column-gap: 20px;
        row-gap: 25px;
    }


    .get-in-touch-info-item h3 {
        font-size: 18px;
    }


    .get-in-touch-info-item p,
    .get-in-touch-info-item a {
        font-size: 13px;
    }


    .get-in-touch-qr {
        width: 120px;
    }

}


/* ==========================================================
   SMALL MOBILE
   450px
========================================================== */

@media (max-width: 450px) {

    .contact-banner {
        height: 200px;
    }


    .contact-banner-content {
        padding: 0 16px;
    }


    .contact-banner-content h1 {
        font-size: 25px;
    }


    .contact-banner-content p {
        font-size: 13px;
    }


    section.get-in-touch {
        padding: 30px 15px 40px;
    }


    .get-in-touch-container {
        width: 100%;
    }


    .get-in-touch-form h2,
    .get-in-touch-info h2 {
        font-size: 21px;
    }


    .get-in-touch-info {
        padding: 26px 18px 24px;
    }


    .get-in-touch-info-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }


    .get-in-touch-info-icon img {
        width: 26px;
    }


    .get-in-touch-info-item h3 {
        font-size: 18px;
    }


    .get-in-touch-qr {
        width: 120px;
    }

}


/* ==========================================================
   VERY SMALL MOBILE
   360px
========================================================== */

@media (max-width: 360px) {

    .contact-banner {
        height: 185px;
    }


    .contact-banner-content {
        padding: 0 14px;
    }


    .contact-banner-content h1 {
        font-size: 23px;
    }


    .contact-banner-content p {
        font-size: 12px;
    }


    section.get-in-touch {
        padding: 25px 12px 35px;
    }


    .get-in-touch-info {
        padding: 24px 16px;
    }


    .get-in-touch-submit {
        height: 42px;
    }

}

@media (max-width: 768px) {
    .contact-container {
        padding: 10px 20px;
    }
}





/* =====================================================
   PRICING BANNER
====================================================== */

.pricing-banner {
    width: 100%;
    min-height: 345px;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(90deg,
            rgba(7, 7, 7, -1.12) 0%,
            rgba(10, 10, 10, -1.26) 42%,
            rgba(10, 10, 10, -5.58) 100%), url(/images/2.png);
    background-size: cover;
    background-position: center;
    color: #ffffff;
}


/* =====================================================
   PRICING BANNER CONTAINER
====================================================== */

.pricing-banner-container {
    max-width: 1660px;
    min-height: 250px;
    margin: 0 auto;
    padding: 30px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 71px;
}


/* =====================================================
   LEFT CONTENT
====================================================== */

.pricing-banner-content {
    flex: 1;
    max-width: 540px;
    position: relative;
    z-index: 2;
}


.pricing-banner-title {
    margin: 0;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #ffffff;
}


.pricing-banner-title .marketing-text {
    display: inline-block;
    color: #168dff;
}


.pricing-banner-title .more-text {
    display: block;
    font-size: 38px;
    line-height: 1.2;
}


.pricing-banner-description {
    margin: 20px 0 21px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
}


/* =====================================================
   GET STARTED BUTTON
====================================================== */

.pricing-banner-button {
    height: 43px;
    padding: 0 26px;
    border: 0;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(90deg, #148cff 0%, #6748ff 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 5px 16px rgba(36, 102, 255, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.pricing-banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36, 102, 255, 0.38);
}


.pricing-banner-button-arrow {
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
    margin-top: -1px;
}


/* =====================================================
   RIGHT PRICING AREA
====================================================== */

.pricing-banner-pricing {
    width: 505px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}


.pricing-banner-pricing-title {
    margin: 0;
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    color: #ffffff;
}


/* =====================================================
   PRICING BOX
====================================================== */

.pricing-banner-card {
    width: 100%;
    min-height: 149px;
    padding: 29px 20px 34px;
    border-left: 2px solid #12c9ff;
    border-right: 2px solid #12c9ff;
    border-bottom: 2px solid #12c9ff;
    border-radius: 4px 4px 12px 12px;
    box-shadow:
        inset 0 0 20px rgba(0, 194, 255, 0.06),
        0 0 8px rgba(0, 190, 255, 0.10);
    backdrop-filter: blur(5px);
}


/* =====================================================
   PRICE ITEMS
====================================================== */

.pricing-banner-items {
    width: 100%;
    min-height: 99px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(39, 217, 255, 0.1);
    border: 1px solid rgba(31, 166, 220, 0.42);
    border-radius: 9px;
    overflow: hidden;
}


.pricing-banner-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}


.pricing-banner-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 17px;
    right: 0;
    width: 1px;
    height: 62px;
    background: rgba(255, 255, 255, 0.18);
}


.pricing-banner-price {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    color: #ffffff;
}


.pricing-banner-label {
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
}


/* =====================================================
   PRICING CARD FOOTER TEXT
====================================================== */

.pricing-banner-note {
    margin: 19px 0 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    color: #ffffff;
}


.pricing-banner-note-highlight {
    color: #00c8ff;
}


/* =====================================================
   TABLET - 1100px
====================================================== */

@media (max-width: 1100px) {

    .pricing-banner-container {
        padding-left: 50px;
        padding-right: 50px;
        gap: 40px;
    }

    .pricing-banner-pricing {
        width: 360px;
    }
}


/* =====================================================
   TABLET / MOBILE - 768px
   KEEP CONTENT IN ROW
====================================================== */

@media (max-width: 768px) {

    .pricing-banner {
        min-height: auto;
    }

    .pricing-banner-container {
        min-height: auto;
        padding: 30px 25px;

        /* IMPORTANT: keep left + right in row */
        flex-direction: row;

        align-items: center;
        justify-content: space-between;
        gap: 25px;
    }

    .pricing-banner-content {
        max-width: 50%;
        flex: 1;
    }

    .pricing-banner-title {
        font-size: 25px;
    }

    .pricing-banner-title .more-text {
        font-size: 21px;
    }

    .pricing-banner-description {
        font-size: 12px;
    }

    .pricing-banner-pricing {
        width: 50%;
        max-width: 500px;
        margin: 0;
        align-self: center;
        flex-shrink: 0;
    }
}


/* =====================================================
   SMALL MOBILE - 480px
   CHANGE TO COLUMN
====================================================== */

@media (max-width: 480px) {

    .pricing-banner-container {
        padding: 32px 18px;

        /* change to column on small mobile */
        flex-direction: column;

        align-items: flex-start;
        justify-content: center;
        gap: 25px;
    }

    .pricing-banner-content {
        width: 100%;
        max-width: 100%;
    }

    .pricing-banner-title {
        font-size: 22px;
    }

    .pricing-banner-title .more-text {
        font-size: 19px;
    }

    .pricing-banner-description {
        font-size: 11px;
        margin-top: 9px;
        margin-bottom: 16px;
    }

    .pricing-banner-button {
        height: 34px;
        font-size: 12px;
    }

    .pricing-banner-pricing {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        align-self: center;
    }

    .pricing-banner-card {
        padding: 15px 10px 11px;
    }

    .pricing-banner-price {
        font-size: 13px;
    }

    .pricing-banner-label {
        font-size: 6px;
    }

    .pricing-banner-note {
        font-size: 11px;
    }
}



/* =====================================================
   OUR SPECIALITIES
====================================================== */

.Specialities {
    width: 94%;
    padding: 50px 30px 40px;
    margin: 0 auto;
}

.Specialities-container {
    width: 100%;
    max-width: 1162px;
    margin: 0 auto;
}

section.Specialities {
    padding: 40px 30px 0px;
}


/* =====================================================
   HEADER
====================================================== */

.Specialities-header {
    width: 100%;
    text-align: center;
    margin-bottom: 33px;
}

.Specialities-title {
    margin: 10px 0 17px;
    padding: 0;
    color: #292929;
    font-family: 'Inter', sans-serif;
    font-size: 37px;
    font-weight: 700;
    line-height: 1.25;
}

h2.Specialities-title {
    font-size: 35px;
}

.Specialities-description {
    margin: 0;
    padding: 0;
    color: #142238;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}


/* =====================================================
   MAIN CONTENT
====================================================== */

.Specialities-content {
    width: 100%;
    display: grid;

    /* DESKTOP = ROW */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: stretch;
    gap: 23px;
}


/* =====================================================
   LEFT CARD
====================================================== */

.Specialities-card {
    min-height: 270px;
    border-radius: 13px 5px 5px 13px;
    padding: 22px 0px 20px;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.Specialities-card-header {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-bottom: 20px;
}

.Specialities-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Specialities-card-title {
    margin: 0;
    padding: 0;
    color: #171717;
    font-family: 'Inter', sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.25;
}


/* =====================================================
   ITEMS
====================================================== */

.Specialities-item {
    width: 100%;
    padding: 0 0 13px;
    margin: 0 0 9px;
    border-bottom: 1px solid #eeeeee;
}

.Specialities-item:last-of-type {
    margin-bottom: 20px;
}

.Specialities-item-title {
    margin: 0 0 4px;
    padding: 0;
    color: #171717;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.Specialities-item-description {
    margin: 0;
    padding: 0;
    color: #242424;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
}


/* =====================================================
   BUTTON
====================================================== */

.Specialities-button {
    min-width: 146px;
    height: 45px;
    padding: 0 9px 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(90deg, #176fff 0%, #6652f5 100%);
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.Specialities-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(48, 101, 255, 0.22);
}

.Specialities-button-arrow {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
}


/* =====================================================
   RIGHT IMAGE
====================================================== */

.Specialities-image {
    width: 90%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
}


/* =====================================================
   LARGE DESKTOP
====================================================== */

@media (min-width: 1401px) {

    .Specialities {
        width: 94%;
        padding: 50px 61px 75px;
    }

    /* .Specialities-container {
        width: 100%;
        max-width: 1660px;
    } */

    .Specialities-header {
        margin-bottom: 32px;
    }

    .Specialities-title {
        font-size: 35px;
    }

    h2.Specialities-title {
        font-size: 35px;
    }

    .Specialities-description {
        font-size: 16px;
    }

    .Specialities-content {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 30px;
    }

    .Specialities-card {
        min-height: 272px;
        padding: 22px 18px 20px;
    }

    .Specialities-card-title {
        font-size: 23px;
    }

    .Specialities-item-title {
        font-size: 18px;
    }

    .Specialities-item-description {
        font-size: 12px;
    }

    .Specialities-image {
        width: 100%;
        min-height: 272px;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 20px;
    }
}


/* =====================================================
   LAPTOP
====================================================== */

@media (min-width: 1101px) and (max-width: 1400px) {

    .Specialities {
        width: 94%;
        padding: 45px 45px 60px;
    }

    .Specialities-container {
        width: 100%;
        max-width: 100%;
    }

    .Specialities-header {
        margin-bottom: 30px;
    }

    .Specialities-title,
    h2.Specialities-title {
        font-size: 32px;
    }

    .Specialities-description {
        font-size: 15px;
    }

    .Specialities-content {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 25px;
    }

    .Specialities-card {
        min-height: 270px;
        padding: 22px 15px 20px;
    }

    .Specialities-card-header {
        gap: 20px;
        margin-bottom: 18px;
    }

    .Specialities-card-title {
        font-size: 21px;
    }

    .Specialities-item {
        padding-bottom: 12px;
        margin-bottom: 8px;
    }

    .Specialities-item-title {
        font-size: 17px;
    }

    .Specialities-item-description {
        font-size: 11px;
    }

    .Specialities-button {
        min-width: 140px;
        height: 43px;
        font-size: 13px;
    }

    .Specialities-image {
        width: 100%;
        min-height: 270px;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 18px;
    }
}


/* =====================================================
   TABLET LANDSCAPE
   901px - 1100px
   KEEP IN ROW
====================================================== */

@media (min-width: 901px) and (max-width: 1100px) {

    .Specialities {
        width: 94%;
        padding: 40px 30px 55px;
    }

    .Specialities-container {
        width: 100%;
    }

    .Specialities-header {
        margin-bottom: 28px;
    }

    .Specialities-title,
    h2.Specialities-title {
        font-size: 29px;
    }

    .Specialities-description {
        font-size: 14px;
        line-height: 1.55;
    }

    /* KEEP ROW */
    .Specialities-content {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 20px;
    }

    .Specialities-card {
        min-height: 250px;
        padding: 20px 12px 18px;
    }

    .Specialities-card-header {
        gap: 15px;
        margin-bottom: 17px;
    }

    .Specialities-icon {
        width: 25px;
        height: 25px;
        flex: 0 0 25px;
    }

    .Specialities-card-title {
        font-size: 19px;
    }

    .Specialities-item {
        padding-bottom: 11px;
        margin-bottom: 8px;
    }

    .Specialities-item-title {
        font-size: 15px;
    }

    .Specialities-item-description {
        font-size: 10px;
        line-height: 1.5;
    }

    .Specialities-button {
        min-width: 135px;
        height: 40px;
        padding-left: 16px;
        padding-right: 8px;
        font-size: 12px;
    }

    .Specialities-image {
        width: 100%;
        min-height: 250px;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 16px;
    }
}


/* =====================================================
   TABLET PORTRAIT
   769px - 900px
   KEEP IN ROW
====================================================== */

@media (min-width: 769px) and (max-width: 900px) {

    .Specialities {
        width: 100%;
        padding: 40px 25px 50px;
    }

    .Specialities-container {
        width: 100%;
    }

    .Specialities-header {
        margin-bottom: 28px;
    }

    .Specialities-title,
    h2.Specialities-title {
        font-size: 30px;
    }

    .Specialities-description {
        font-size: 14px;
    }

    /* IMPORTANT: 2 COLUMNS / ROW */
    .Specialities-content {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 20px;
    }

    .Specialities-card {
        width: 100%;
        min-height: 250px;
        padding: 20px 14px 20px;
        border-radius: 12px;
    }

    .Specialities-card-header {
        gap: 14px;
        margin-bottom: 18px;
    }

    .Specialities-icon {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
    }

    .Specialities-card-title {
        font-size: 18px;
    }

    .Specialities-item {
        padding-bottom: 10px;
        margin-bottom: 8px;
    }

    .Specialities-item-title {
        font-size: 14px;
    }

    .Specialities-item-description {
        font-size: 10px;
        line-height: 1.5;
    }

    .Specialities-button {
        min-width: 125px;
        height: 38px;
        padding: 0 8px 0 14px;
        font-size: 11px;
    }

    .Specialities-image-wrapper {
        width: 100%;
        min-height: 250px;
        height: 100%;
        margin-left: 0;
        overflow: hidden;
        border-radius: 14px;
    }

    .Specialities-image {
        width: 100%;
        height: 100%;
        min-height: 250px;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 14px;
    }
}


/* =====================================================
   MOBILE
   601px - 768px
   KEEP IN ROW
====================================================== */

@media (min-width: 601px) and (max-width: 768px) {

    .Specialities {
        width: 100%;
        padding: 35px 20px 45px;
    }

    section.Specialities {
        padding: 35px 20px 45px;
    }

    .Specialities-header {
        margin-bottom: 25px;
    }

    .Specialities-title,
    h2.Specialities-title {
        font-size: 27px;
        line-height: 1.3;
    }

    .Specialities-description {
        font-size: 13px;
        line-height: 1.6;
    }

    /* IMPORTANT:
       768px WILL STAY IN ROW */
    .Specialities-content {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 18px;
    }

    .Specialities-card {
        width: 100%;
        min-height: auto;
        padding: 18px 12px 18px;
        border-radius: 12px;
    }

    .Specialities-card-header {
        gap: 10px;
        margin-bottom: 16px;
    }

    .Specialities-icon {
        width: 23px;
        height: 23px;
        flex: 0 0 23px;
    }

    .Specialities-card-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .Specialities-item {
        padding-bottom: 10px;
        margin-bottom: 8px;
    }

    .Specialities-item-title {
        font-size: 13px;
    }

    .Specialities-item-description {
        font-size: 9px;
        line-height: 1.5;
    }

    .Specialities-button {
        min-width: 120px;
        height: 36px;
        padding: 0 8px 0 13px;
        font-size: 10px;
        gap: 7px;
    }

    .Specialities-button-arrow {
        width: 13px;
        height: 13px;
        font-size: 16px;
    }

    .Specialities-image-wrapper {
        width: 100%;
        min-height: auto;
        height: 100%;
        margin-left: 0;
        overflow: hidden;
        border-radius: 12px;
    }

    .Specialities-image {
        width: 100%;
        /* height: 100%; */
        min-height: 250px;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 12px;
    }
}


/* =====================================================
   SMALL MOBILE
   600px AND BELOW
   CHANGE TO COLUMN
====================================================== */

@media (max-width: 600px) {

    .Specialities {
        width: 100%;
        padding: 30px 18px 35px;
        margin: 0 auto;
    }

    section.Specialities {
        padding: 30px 18px 35px;
    }

    .Specialities-container {
        width: 100%;
        max-width: 100%;
    }

    .Specialities-header {
        margin-bottom: 24px;
    }

    .Specialities-title,
    h2.Specialities-title {
        font-size: 24px;
        line-height: 1.3;
        margin-top: 5px;
        margin-bottom: 11px;
    }

    .Specialities-description {
        font-size: 11px;
        line-height: 1.6;
    }

    /* MOBILE = COLUMN */
    .Specialities-content {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .Specialities-card {
        width: 100%;
        min-height: auto;
        padding: 18px 13px 17px;
        border-radius: 11px;
    }

    .Specialities-card-header {
        gap: 13px;
        margin-bottom: 17px;
    }

    .Specialities-icon {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
    }

    .Specialities-card-title {
        font-size: 15px;
        line-height: 1.3;
    }

    .Specialities-item {
        width: 100%;
        padding-bottom: 11px;
        margin-bottom: 8px;
    }

    .Specialities-item:last-of-type {
        margin-bottom: 17px;
    }

    .Specialities-item-title {
        font-size: 11px;
        line-height: 1.4;
    }

    .Specialities-item-description {
        font-size: 8px;
        line-height: 1.55;
    }

    .Specialities-button {
        min-width: 125px;
        width: auto;
        height: 32px;
        padding: 0 8px 0 15px;
        gap: 8px;
        font-size: 9px;
    }

    .Specialities-button-arrow {
        width: 13px;
        height: 13px;
        font-size: 16px;
    }

    .Specialities-image-wrapper {
        width: 100%;
        min-height: auto;
        height: auto;
        margin-left: 0;
        overflow: hidden;
        border-radius: 11px;
    }

    .Specialities-image {
        width: 100%;
        min-height: 0;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 11px;
    }
}


/* =====================================================
   VERY SMALL MOBILE
   450px AND BELOW
====================================================== */

@media (max-width: 450px) {

    .Specialities {
        width: 100%;
        padding: 25px 14px 30px;
    }

    section.Specialities {
        padding: 25px 14px 30px;
    }

    .Specialities-header {
        margin-bottom: 21px;
    }

    .Specialities-title,
    h2.Specialities-title {
        font-size: 22px;
    }

    .Specialities-description {
        font-size: 10px;
    }

    .Specialities-content {
        gap: 17px;
    }

    .Specialities-card {
        padding: 16px 11px 15px;
    }

    .Specialities-card-header {
        gap: 11px;
        margin-bottom: 15px;
    }

    .Specialities-icon {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    .Specialities-card-title {
        font-size: 14px;
    }

    .Specialities-item {
        padding-bottom: 9px;
        margin-bottom: 7px;
    }

    .Specialities-item-title {
        font-size: 10px;
    }

    .Specialities-item-description {
        font-size: 7.5px;
    }

    .Specialities-button {
        min-width: 115px;
        height: 30px;
        padding-left: 13px;
        padding-right: 7px;
        font-size: 8px;
    }

    .Specialities-image-wrapper {
        border-radius: 10px;
    }

    .Specialities-image {
        width: 100%;
        border-radius: 10px;
    }
}


/* =====================================================
   EXTRA SMALL MOBILE
   360px AND BELOW
====================================================== */

@media (max-width: 360px) {

    .Specialities {
        padding: 22px 10px 28px;
    }

    section.Specialities {
        padding: 22px 10px 28px;
    }

    .Specialities-header {
        margin-bottom: 18px;
    }

    .Specialities-title,
    h2.Specialities-title {
        font-size: 23px;
    }

    .Specialities-description {
        font-size: 11px;
        line-height: 1.55;
    }

    .Specialities-content {
        gap: 15px;
    }

    .Specialities-card {
        padding: 14px 9px 13px;
        border-radius: 9px;
    }

    .Specialities-card-header {
        gap: 19px;
        margin-bottom: 13px;
    }

    .Specialities-icon {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
    }

    .Specialities-card-title {
        font-size: 19px;
    }

    .Specialities-item {
        padding-bottom: 8px;
        margin-bottom: 6px;
    }

    .Specialities-item-title {
        font-size: 14px;
    }

    .Specialities-item-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .Specialities-button {
        min-width: 105px;
        height: 37px;
        padding-left: 11px;
        padding-right: 6px;
        font-size: 12px;
        gap: 6px;
    }

    .Specialities-button-arrow {
        width: 11px;
        height: 11px;
        font-size: 14px;
    }

    .Specialities-image {
        width: 100%;
    }
}



/* =====================================================
   ONLINE ORDER INTEGRATION
====================================================== */

[class~="ONLINE"][class~="ORDER"][class~="INTEGRATION"] {
    width: 100%;
    padding: 30px 20px;
    background: #ffffff;
}

.ONLINE-ORDER-INTEGRATION-container {
    width: 100%;
    max-width: 1177px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 48px;
}


/* =====================================================
   LEFT IMAGE
====================================================== */

.ONLINE-ORDER-INTEGRATION-image-wrapper {
    width: 50%;
    max-width: 760px;
    flex: 1 1 50%;
    min-width: 0;
    flex-shrink: 1;
}

.ONLINE-ORDER-INTEGRATION-image {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
}


/* =====================================================
   RIGHT CONTENT CARD
====================================================== */

.ONLINE-ORDER-INTEGRATION-card {
    width: 50%;
    max-width: 760px;
    min-width: 0;
    min-height: 430px;
    border-top: 2px solid #19b9f3;
    border-bottom: 2px solid #19b9f3;
    border-right: 2px solid #19b9f3;
    border-radius: 5px 16px 16px 5px;
    background: #ffffff;
    padding: 38px 32px 27px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* =====================================================
   SECTION
====================================================== */

section.ONLINE.ORDER.INTEGRATION {
    padding-bottom: 10px;
}


/* =====================================================
   HEADER
====================================================== */

.ONLINE-ORDER-INTEGRATION-header {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-bottom: 23px;
}

.ONLINE-ORDER-INTEGRATION-title {
    margin: 0;
    color: #111111;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.2px;
}


/* =====================================================
   FEATURE ITEMS
====================================================== */

.ONLINE-ORDER-INTEGRATION-items {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ONLINE-ORDER-INTEGRATION-item {
    width: 100%;
    padding: 0 0 13px;
    margin: 0 0 13px;
    border-bottom: 1px solid #e6e6e6;
}

/* .ONLINE-ORDER-INTEGRATION-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
} */

.ONLINE-ORDER-INTEGRATION-item-title {
    margin: 0 0 6px;
    color: #111111;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;
}

.ONLINE-ORDER-INTEGRATION-item-description {
    margin: 0;
    color: #333333;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;
}


/* =====================================================
   BOTTOM PRICING
====================================================== */

.ONLINE-ORDER-INTEGRATION-pricing {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.ONLINE-ORDER-INTEGRATION-price-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ONLINE-ORDER-INTEGRATION-price-label {
    margin: 0;
    color: #111111;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
}

.ONLINE-ORDER-INTEGRATION-price {
    margin: 0;
    color: #111111;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    white-space: nowrap;
}


/* =====================================================
   BUTTON
====================================================== */

.ONLINE-ORDER-INTEGRATION-button {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 154px;
    height: 43px;
    padding: 0 22px;
    border-radius: 20px;
    background: linear-gradient(90deg, #197cff 0%, #7055ee 100%);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ONLINE-ORDER-INTEGRATION-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(53, 105, 255, 0.22);
}

.ONLINE-ORDER-INTEGRATION-button-arrow {
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
    margin-top: -1px;
}


/* =====================================================
   LARGE DESKTOP
   1401px+
====================================================== */

@media (min-width: 1401px) {

    [class~="ONLINE"][class~="ORDER"][class~="INTEGRATION"] {
        padding: 40px 30px 60px;
    }

    .ONLINE-ORDER-INTEGRATION-container {
        /* max-width: 1660px; */
        gap: 55px;
    }

    .ONLINE-ORDER-INTEGRATION-image-wrapper {
        width: 50%;
        max-width: 760px;
    }

    .ONLINE-ORDER-INTEGRATION-card {
        width: 50%;
        max-width: 760px;
        min-height: 430px;
        padding: 38px 32px 27px;
    }
}


/* =====================================================
   LAPTOP
   1101px - 1400px
====================================================== */

@media (min-width: 1101px) and (max-width: 1400px) {

    [class~="ONLINE"][class~="ORDER"][class~="INTEGRATION"] {
        width: 94%;
        padding: 35px 25px 50px;
        margin: 0 auto;
    }

    .ONLINE-ORDER-INTEGRATION-container {
        max-width: 1200px;
        gap: 35px;
    }

    .ONLINE-ORDER-INTEGRATION-image-wrapper {
        width: 50%;
        max-width: 600px;
    }

    .ONLINE-ORDER-INTEGRATION-image {
        border-radius: 15px;
    }

    .ONLINE-ORDER-INTEGRATION-card {
        width: 50%;
        max-width: 600px;
        min-height: 390px;
        padding: 30px 25px 25px;
    }

    .ONLINE-ORDER-INTEGRATION-header {
        gap: 18px;
        margin-bottom: 20px;
    }

    .ONLINE-ORDER-INTEGRATION-title {
        font-size: 21px;
    }

    .ONLINE-ORDER-INTEGRATION-item {
        padding-bottom: 11px;
        margin-bottom: 11px;
    }

    .ONLINE-ORDER-INTEGRATION-item-title {
        font-size: 16px;
    }

    .ONLINE-ORDER-INTEGRATION-item-description {
        font-size: 11px;
        line-height: 1.5;
    }

    .ONLINE-ORDER-INTEGRATION-pricing {
        gap: 25px;
    }

    .ONLINE-ORDER-INTEGRATION-price-item {
        gap: 16px;
    }

    .ONLINE-ORDER-INTEGRATION-price-label,
    .ONLINE-ORDER-INTEGRATION-price {
        font-size: 16px;
    }

    .ONLINE-ORDER-INTEGRATION-button {
        min-width: 145px;
        height: 41px;
        font-size: 14px;
    }
}


/* =====================================================
   TABLET LANDSCAPE
   901px - 1100px
   ROW
====================================================== */

@media (min-width: 901px) and (max-width: 1100px) {

    [class~="ONLINE"][class~="ORDER"][class~="INTEGRATION"] {
        width: 100%;
        padding: 35px 25px 45px;
    }

    .ONLINE-ORDER-INTEGRATION-container {
        width: 100%;
        gap: 20px;
        flex-direction: row;
        align-items: center;
    }

    .ONLINE-ORDER-INTEGRATION-image-wrapper {
        width: 50%;
        max-width: 500px;
        flex: 1 1 50%;
    }

    .ONLINE-ORDER-INTEGRATION-image {
        width: 100%;
        border-radius: 14px;
    }

    .ONLINE-ORDER-INTEGRATION-card {
        width: 50%;
        max-width: 500px;
        min-height: 350px;
        padding: 25px 18px;
        flex: 1 1 50%;
    }

    .ONLINE-ORDER-INTEGRATION-header {
        gap: 12px;
        margin-bottom: 18px;
    }

    .ONLINE-ORDER-INTEGRATION-title {
        font-size: 18px;
    }

    .ONLINE-ORDER-INTEGRATION-item {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .ONLINE-ORDER-INTEGRATION-item-title {
        font-size: 14px;
    }

    .ONLINE-ORDER-INTEGRATION-item-description {
        font-size: 9px;
        line-height: 1.5;
    }

    .ONLINE-ORDER-INTEGRATION-pricing {
        gap: 15px;
        margin-top: 12px;
        margin-bottom: 18px;
        flex-wrap: wrap;
    }

    .ONLINE-ORDER-INTEGRATION-price-item {
        gap: 10px;
    }

    .ONLINE-ORDER-INTEGRATION-price-label,
    .ONLINE-ORDER-INTEGRATION-price {
        font-size: 13px;
    }

    .ONLINE-ORDER-INTEGRATION-button {
        min-width: 125px;
        height: 38px;
        font-size: 12px;
    }
}


/* =====================================================
   TABLET
   769px - 900px
   ROW
====================================================== */

@media (min-width: 769px) and (max-width: 900px) {

    [class~="ONLINE"][class~="ORDER"][class~="INTEGRATION"] {
        width: 100%;
        padding: 35px 20px 45px;
    }

    .ONLINE-ORDER-INTEGRATION-container {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 18px;
    }

    .ONLINE-ORDER-INTEGRATION-image-wrapper {
        width: 50%;
        max-width: none;
        flex: 1 1 50%;
        min-width: 0;
    }

    .ONLINE-ORDER-INTEGRATION-image {
        width: 100%;
        border-radius: 13px;
    }

    .ONLINE-ORDER-INTEGRATION-card {
        width: 50%;
        max-width: none;
        min-height: 0;
        flex: 1 1 50%;
        padding: 22px 16px;
        border-radius: 8px 13px 13px 8px;
    }

    .ONLINE-ORDER-INTEGRATION-header {
        gap: 10px;
        margin-bottom: 15px;
    }

    .ONLINE-ORDER-INTEGRATION-title {
        font-size: 17px;
    }

    .ONLINE-ORDER-INTEGRATION-item {
        padding-bottom: 9px;
        margin-bottom: 9px;
    }

    .ONLINE-ORDER-INTEGRATION-item-title {
        font-size: 14px;
    }

    .ONLINE-ORDER-INTEGRATION-item-description {
        font-size: 9px;
        line-height: 1.45;
    }

    .ONLINE-ORDER-INTEGRATION-pricing {
        gap: 12px;
        margin-top: 10px;
        margin-bottom: 17px;
        flex-wrap: wrap;
    }

    .ONLINE-ORDER-INTEGRATION-price-item {
        gap: 8px;
    }

    .ONLINE-ORDER-INTEGRATION-price-label,
    .ONLINE-ORDER-INTEGRATION-price {
        font-size: 13px;
    }

    .ONLINE-ORDER-INTEGRATION-button {
        min-width: 120px;
        height: 36px;
        padding: 0 15px;
        font-size: 11px;
    }

    .ONLINE-ORDER-INTEGRATION-button-arrow {
        font-size: 16px;
    }
}


/* =====================================================
   SMALL TABLET
   601px - 768px
   ROW
====================================================== */

@media (min-width: 601px) and (max-width: 768px) {

    [class~="ONLINE"][class~="ORDER"][class~="INTEGRATION"] {
        width: 100%;
        padding: 30px 18px 40px;
    }

    .ONLINE-ORDER-INTEGRATION-container {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .ONLINE-ORDER-INTEGRATION-image-wrapper {
        width: 50%;
        max-width: none;
        flex: 1 1 50%;
        min-width: 0;
    }

    .ONLINE-ORDER-INTEGRATION-image {
        width: 100%;
        border-radius: 12px;
    }

    .ONLINE-ORDER-INTEGRATION-card {
        width: 50%;
        max-width: none;
        min-width: 0;
        min-height: 0;
        flex: 1 1 50%;
        padding: 20px 14px;
        border-radius: 9px 12px 12px 9px;
    }

    .ONLINE-ORDER-INTEGRATION-header {
        gap: 8px;
        margin-bottom: 13px;
    }

    .ONLINE-ORDER-INTEGRATION-title {
        font-size: 15px;
        line-height: 1.3;
    }

    .ONLINE-ORDER-INTEGRATION-item {
        padding-bottom: 8px;
        margin-bottom: 8px;
    }

    .ONLINE-ORDER-INTEGRATION-item-title {
        font-size: 12px;
        line-height: 1.3;
    }

    .ONLINE-ORDER-INTEGRATION-item-description {
        font-size: 8px;
        line-height: 1.5;
    }

    .ONLINE-ORDER-INTEGRATION-pricing {
        width: 100%;
        gap: 10px;
        margin-top: 9px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .ONLINE-ORDER-INTEGRATION-price-item {
        gap: 7px;
    }

    .ONLINE-ORDER-INTEGRATION-price-label,
    .ONLINE-ORDER-INTEGRATION-price {
        font-size: 11px;
    }

    .ONLINE-ORDER-INTEGRATION-button {
        min-width: 110px;
        height: 34px;
        padding: 0 12px;
        font-size: 10px;
    }

    .ONLINE-ORDER-INTEGRATION-button-arrow {
        font-size: 14px;
    }
}


/* =====================================================
   MOBILE
   600px AND BELOW
   CONTENT FIRST + IMAGE BELOW
====================================================== */

@media (max-width: 600px) {

    [class~="ONLINE"][class~="ORDER"][class~="INTEGRATION"] {
        width: 100%;
        padding: 30px 15px 35px;
    }

    .ONLINE-ORDER-INTEGRATION-container {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    /* CONTENT FIRST */
    .ONLINE-ORDER-INTEGRATION-card {
        order: 1;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: auto;
        padding: 20px 15px;
        border-radius: 10px 12px 12px 10px;
    }

    /* IMAGE SECOND */
    .ONLINE-ORDER-INTEGRATION-image-wrapper {
        order: 2;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .ONLINE-ORDER-INTEGRATION-image {
        width: 100%;
        height: auto;
        display: block;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 12px;
    }

    .ONLINE-ORDER-INTEGRATION-header {
        width: 100%;
        gap: 11px;
        margin-bottom: 17px;
    }

    .ONLINE-ORDER-INTEGRATION-title {
        font-size: 17px;
        line-height: 1.3;
    }

    .ONLINE-ORDER-INTEGRATION-item {
        width: 100%;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .ONLINE-ORDER-INTEGRATION-item-title {
        font-size: 13px;
        line-height: 1.3;
    }

    .ONLINE-ORDER-INTEGRATION-item-description {
        font-size: 9px;
        line-height: 1.55;
    }

    .ONLINE-ORDER-INTEGRATION-pricing {
        width: 100%;
        gap: 15px;
        margin-top: 12px;
        margin-bottom: 20px;

        flex-direction: column;
        align-items: stretch;
    }

    .ONLINE-ORDER-INTEGRATION-price-item {
        width: 100%;
        gap: 10px;
        justify-content: space-between;
    }

    .ONLINE-ORDER-INTEGRATION-price-label,
    .ONLINE-ORDER-INTEGRATION-price {
        font-size: 13px;
    }

    .ONLINE-ORDER-INTEGRATION-button {
        min-width: 130px;
        height: 38px;
        padding: 0 17px;
        font-size: 11px;
        border-radius: 18px;
    }

    .ONLINE-ORDER-INTEGRATION-button-arrow {
        font-size: 16px;
    }
}


/* =====================================================
   VERY SMALL MOBILE
   451px - 600px
====================================================== */

@media (min-width: 451px) and (max-width: 600px) {

    [class~="ONLINE"][class~="ORDER"][class~="INTEGRATION"] {
        padding: 30px 18px 35px;
    }

    .ONLINE-ORDER-INTEGRATION-container {
        gap: 20px;
    }

    .ONLINE-ORDER-INTEGRATION-card {
        padding: 20px 16px;
    }

    .ONLINE-ORDER-INTEGRATION-title {
        font-size: 18px;
    }

    .ONLINE-ORDER-INTEGRATION-item-title {
        font-size: 14px;
    }

    .ONLINE-ORDER-INTEGRATION-item-description {
        font-size: 10px;
    }

    .ONLINE-ORDER-INTEGRATION-price-label,
    .ONLINE-ORDER-INTEGRATION-price {
        font-size: 13px;
    }
}


/* =====================================================
   MOBILE
   450px AND BELOW
====================================================== */

@media (max-width: 450px) {

    [class~="ONLINE"][class~="ORDER"][class~="INTEGRATION"] {
        width: 100%;
        padding: 25px 12px 30px;
    }

    .ONLINE-ORDER-INTEGRATION-container {
        gap: 17px;
    }

    .ONLINE-ORDER-INTEGRATION-image-wrapper {
        width: 100%;
        max-width: 100%;
        order: 2;
    }

    .ONLINE-ORDER-INTEGRATION-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .ONLINE-ORDER-INTEGRATION-card {
        width: 100%;
        max-width: 100%;
        order: 1;
        padding: 18px 13px;
        border-radius: 9px 11px 11px 9px;
    }

    .ONLINE-ORDER-INTEGRATION-header {
        gap: 9px;
        margin-bottom: 15px;
    }

    .ONLINE-ORDER-INTEGRATION-title {
        font-size: 16px;
    }

    .ONLINE-ORDER-INTEGRATION-item {
        padding-bottom: 9px;
        margin-bottom: 9px;
    }

    .ONLINE-ORDER-INTEGRATION-item-title {
        font-size: 12px;
    }

    .ONLINE-ORDER-INTEGRATION-item-description {
        font-size: 8px;
        line-height: 1.5;
    }

    .ONLINE-ORDER-INTEGRATION-pricing {
        gap: 12px;
        margin-top: 10px;
        margin-bottom: 18px;
    }

    .ONLINE-ORDER-INTEGRATION-price-item {
        gap: 8px;
    }

    .ONLINE-ORDER-INTEGRATION-price-label,
    .ONLINE-ORDER-INTEGRATION-price {
        font-size: 12px;
    }

    .ONLINE-ORDER-INTEGRATION-button {
        min-width: 120px;
        height: 35px;
        padding: 0 14px;
        font-size: 10px;
    }

    .ONLINE-ORDER-INTEGRATION-button-arrow {
        font-size: 15px;
    }
}


/* =====================================================
   EXTRA SMALL MOBILE
   360px AND BELOW
====================================================== */

@media (max-width: 360px) {

    [class~="ONLINE"][class~="ORDER"][class~="INTEGRATION"] {
        padding: 22px 10px 27px;
    }

    .ONLINE-ORDER-INTEGRATION-container {
        gap: 15px;
    }

    .ONLINE-ORDER-INTEGRATION-card {
        padding: 16px 11px;
    }

    .ONLINE-ORDER-INTEGRATION-title {
        font-size: 15px;
    }

    .ONLINE-ORDER-INTEGRATION-item {
        padding-bottom: 8px;
        margin-bottom: 8px;
    }

    .ONLINE-ORDER-INTEGRATION-item-title {
        font-size: 11px;
    }

    .ONLINE-ORDER-INTEGRATION-item-description {
        font-size: 8px;
        line-height: 1.5;
    }

    .ONLINE-ORDER-INTEGRATION-pricing {
        gap: 10px;
        margin-bottom: 16px;
    }

    .ONLINE-ORDER-INTEGRATION-price-label,
    .ONLINE-ORDER-INTEGRATION-price {
        font-size: 11px;
    }

    .ONLINE-ORDER-INTEGRATION-button {
        min-width: 110px;
        height: 33px;
        padding: 0 12px;
        font-size: 11px;
    }

    .ONLINE-ORDER-INTEGRATION-image {
        width: 100%;
        border-radius: 9px;
    }
}


/* =====================================================
   GLOBAL RESPONSIVE SAFETY
====================================================== */

.ONLINE-ORDER-INTEGRATION-container *,
.ONLINE-ORDER-INTEGRATION-container *::before,
.ONLINE-ORDER-INTEGRATION-container *::after {
    box-sizing: border-box;
}

.ONLINE-ORDER-INTEGRATION-image img {
    max-width: 100%;
}

.ONLINE-ORDER-INTEGRATION-title,
.ONLINE-ORDER-INTEGRATION-item-title,
.ONLINE-ORDER-INTEGRATION-item-description,
.ONLINE-ORDER-INTEGRATION-price-label,
.ONLINE-ORDER-INTEGRATION-price {
    overflow-wrap: break-word;
    word-wrap: break-word;
}


/* ==========================================================
   OPTIONAL PAID SERVICE
========================================================== */

.OPTIONAL.PAID.SERVICE {
    /* width: 94%; */
    padding: 30px 20px 50px;
    background: #ffffff;
    margin: 0 auto;
}

.OPTIONAL-PAID-SERVICE-container {
    max-width: 1206px;
    min-height: 390px;
    padding: 53px 66px 32px;
    overflow: hidden;
    border-radius: 14px;
    background-image: url(/images/8f3a433590cf1508399eab9bf981b51c1e19b5a9.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto;
}


/* ==========================================================
   HEADING
========================================================== */

.OPTIONAL-PAID-SERVICE-title {
    position: relative;
    z-index: 2;
    margin: 0 0 28px;
    color: #ffffff;
    text-align: center;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}


/* ==========================================================
   CARDS WRAPPER
========================================================== */

.OPTIONAL-PAID-SERVICE-cards {
    position: relative;
    z-index: 2;
    display: grid;

    /* 2 cards in row by default */
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
    width: 100%;
}


/* ==========================================================
   INDIVIDUAL CARD
========================================================== */

.OPTIONAL-PAID-SERVICE-card {
    position: relative;
    min-height: 165px;
    padding: 16px 18px 13px;
    border: 1px solid #00cfff;
    border-radius: 13px;

    background:
        linear-gradient(135deg,
            rgba(13, 25, 85, 0.55),
            rgba(4, 13, 54, 0.38));

    box-shadow:
        inset 0 0 25px rgba(42, 92, 255, 0.05),
        0 0 0 1px rgba(0, 202, 255, 0.04);
}


/* ==========================================================
   CARD HEADER
========================================================== */

.OPTIONAL-PAID-SERVICE-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 11px;
}


/* ==========================================================
   CARD TITLE
========================================================== */

.OPTIONAL-PAID-SERVICE-card-title {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}


/* ==========================================================
   CARD DESCRIPTION
========================================================== */

.OPTIONAL-PAID-SERVICE-description {
    max-width: 420px;
    margin: 0;
    min-height: 35px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
}


/* ==========================================================
   BUTTON
========================================================== */

.OPTIONAL-PAID-SERVICE-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 44px;
    margin-top: 20px;
    padding: 0 15px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(100deg,
            #168dff 0%,
            #6852f5 100%);

    box-shadow:
        0 5px 14px rgba(30, 91, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);

    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.OPTIONAL-PAID-SERVICE-button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 7px 18px rgba(30, 91, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.OPTIONAL-PAID-SERVICE-button-arrow {
    font-size: 20px;
    line-height: 0;
    font-weight: 300;
    margin-top: -2px;
}


/* ==========================================================
   LARGE LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .OPTIONAL.PAID.SERVICE {
        width: 94%;
        padding: 30px 18px 45px;
    }

    .OPTIONAL-PAID-SERVICE-container {
        min-height: 370px;
        padding: 45px 45px 30px;
    }

    .OPTIONAL-PAID-SERVICE-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .OPTIONAL-PAID-SERVICE-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .OPTIONAL-PAID-SERVICE-card {
        min-height: 160px;
        padding: 16px 17px 13px;
    }

    .OPTIONAL-PAID-SERVICE-card-title {
        font-size: 17px;
    }

    .OPTIONAL-PAID-SERVICE-description {
        font-size: 14px;
    }
}


/* ==========================================================
   TABLET
   769px - 992px
   2 CARDS IN ROW
========================================================== */

@media (min-width: 769px) and (max-width: 992px) {

    .OPTIONAL.PAID.SERVICE {
        width: 94%;
        padding: 35px 15px 45px;
    }

    .OPTIONAL-PAID-SERVICE-container {
        width: 100%;
        min-height: auto;
        padding: 38px 30px 30px;
        border-radius: 13px;
    }

    .OPTIONAL-PAID-SERVICE-title {
        font-size: 29px;
        margin-bottom: 24px;
    }

    .OPTIONAL-PAID-SERVICE-cards {
        /* KEEP 2 CARDS IN ROW */
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .OPTIONAL-PAID-SERVICE-card {
        min-height: 155px;
        padding: 15px 16px 13px;
    }

    .OPTIONAL-PAID-SERVICE-card-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .OPTIONAL-PAID-SERVICE-card-title {
        font-size: 16px;
    }

    .OPTIONAL-PAID-SERVICE-description {
        max-width: 100%;
        min-height: auto;
        font-size: 13px;
        line-height: 1.5;
    }

    .OPTIONAL-PAID-SERVICE-button {
        height: 41px;
        margin-top: 17px;
        padding: 0 14px;
        gap: 12px;
        font-size: 12px;
    }
}


/* ==========================================================
   TABLET / 768px
   2 CARDS IN ROW
========================================================== */

@media (min-width: 601px) and (max-width: 768px) {

    .OPTIONAL.PAID.SERVICE {
        width: 100%;
        padding: 35px 15px 40px;
    }

    .OPTIONAL-PAID-SERVICE-container {
        width: 100%;
        min-height: auto;
        padding: 30px 20px 25px;
        border-radius: 12px;
    }

    .OPTIONAL-PAID-SERVICE-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 22px;
    }

    .OPTIONAL-PAID-SERVICE-cards {
        /* IMPORTANT: 2 CARDS IN ROW AT 768px */
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .OPTIONAL-PAID-SERVICE-card {
        min-height: auto;
        padding: 17px 17px 16px;
        border-radius: 12px;
    }

    .OPTIONAL-PAID-SERVICE-card-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .OPTIONAL-PAID-SERVICE-card-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .OPTIONAL-PAID-SERVICE-description {
        max-width: 100%;
        min-height: auto;
        font-size: 13px;
        line-height: 1.5;
    }

    .OPTIONAL-PAID-SERVICE-button {
        height: 40px;
        margin-top: 17px;
        padding: 0 14px;
        gap: 11px;
        border-radius: 10px;
        font-size: 12px;
    }

    .OPTIONAL-PAID-SERVICE-button-arrow {
        font-size: 18px;
    }
}


/* ==========================================================
   MOBILE
   BELOW 600px = 1 CARD PER ROW
========================================================== */

@media (max-width: 600px) {

    .OPTIONAL.PAID.SERVICE {
        width: 100%;
        padding: 30px 15px 35px;
    }

    .OPTIONAL-PAID-SERVICE-container {
        width: 100%;
        min-height: auto;
        padding: 25px 15px 22px;
        border-radius: 11px;
    }

    .OPTIONAL-PAID-SERVICE-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .OPTIONAL-PAID-SERVICE-cards {
        /* MOBILE = 1 CARD PER ROW */
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .OPTIONAL-PAID-SERVICE-card {
        width: 100%;
        min-height: auto;
        padding: 15px 14px 14px;
        border-radius: 11px;
    }

    .OPTIONAL-PAID-SERVICE-card-header {
        gap: 8px;
        margin-bottom: 9px;
    }

    .OPTIONAL-PAID-SERVICE-card-title {
        font-size: 14px;
        line-height: 1.3;
    }

    .OPTIONAL-PAID-SERVICE-description {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.5;
    }

    .OPTIONAL-PAID-SERVICE-button {
        height: 36px;
        margin-top: 15px;
        padding: 0 12px;
        gap: 9px;
        border-radius: 9px;
        font-size: 10px;
    }

    .OPTIONAL-PAID-SERVICE-button-arrow {
        font-size: 16px;
    }
}


/* ==========================================================
   VERY SMALL MOBILE
   BELOW 450px = 1 CARD PER ROW
========================================================== */

@media (max-width: 450px) {

    .OPTIONAL.PAID.SERVICE {
        width: 100%;
        padding: 25px 10px 30px;
    }

    .OPTIONAL-PAID-SERVICE-container {
        width: 100%;
        padding: 22px 12px 20px;
        border-radius: 10px;
    }

    .OPTIONAL-PAID-SERVICE-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .OPTIONAL-PAID-SERVICE-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .OPTIONAL-PAID-SERVICE-card {
        width: 100%;
        padding: 14px 12px 13px;
        border-radius: 10px;
    }

    .OPTIONAL-PAID-SERVICE-card-title {
        font-size: 13px;
    }

    .OPTIONAL-PAID-SERVICE-description {
        font-size: 10px;
        line-height: 1.5;
    }

    .OPTIONAL-PAID-SERVICE-button {
        height: 34px;
        padding: 0 10px;
        font-size: 9px;
    }
}


/* ==========================================================
   EXTRA SMALL MOBILE
   BELOW 360px = 1 CARD PER ROW
========================================================== */

@media (max-width: 360px) {

    .OPTIONAL.PAID.SERVICE {
        padding: 22px 8px 27px;
    }

    .OPTIONAL-PAID-SERVICE-container {
        padding: 20px 10px 18px;
    }

    .OPTIONAL-PAID-SERVICE-title {
        font-size: 19px;
        margin-bottom: 17px;
    }

    .OPTIONAL-PAID-SERVICE-cards {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .OPTIONAL-PAID-SERVICE-card {
        width: 100%;
        padding: 13px 11px 12px;
    }

    .OPTIONAL-PAID-SERVICE-card-title {
        font-size: 12px;
    }

    .OPTIONAL-PAID-SERVICE-description {
        font-size: 9px;
    }

    .OPTIONAL-PAID-SERVICE-button {
        height: 33px;
        padding: 0 9px;
        font-size: 8px;
    }
}



/* =====================================================
   SECTION 02
   NEWS BANNER
===================================================== */

.news-banner {
    position: relative;
    /* width: 100%; */
    height: 399px;
    background-image: url(/images/Frame\ 74.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}


/* CONTAINER */

.news-banner-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    /* height: 100%; */
    width: 75%;
    margin: 0 auto;
}


/* CONTENT */

.news-banner-content {
    color: #ffffff;
}


.news-banner-content h1 {
    margin: 0 0 12px 0;
    font-size: 43px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}


.news-banner-content p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    /* .news-banner {
        height: 220px;
    } */

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .news-banner {
        height: 200px;
    }


    .news-banner-content h1 {
        font-size: 25px;
    }


    .news-banner-content p {
        font-size: 12px;
    }

}


/* =====================================================
   POST SECTION
===================================================== */

.post-section {
    width: 100%;
    background: #ffffff;

    padding: 55px 25px 35px;
}


.post-section-container {
    width: 100%;
    max-width: 1660px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;

    gap: 30px;

    align-items: start;
}



/* =====================================================
   POSTS CONTENT
===================================================== */

.posts-content {
    width: 100%;
    min-width: 0;
}


.post-card {
    /* width: 100%; */
    margin-bottom: 59px;
}


.post-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 7px;
}


.post-image {
    display: block;
    width: 100%;
    height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 7px;
}



/* =====================================================
   POST WHITE INFO CARD
===================================================== */

.post-info-card {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 12px;
    background: #ffffff;
    border-radius: 8px;
    padding: 14px 16px 13px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


.post-info-card h2 {
    margin: 0 0 10px;
    color: #111111;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
}


.post-info-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


.post-info-bottom p {
    flex: 1;
    margin: 0;
    color: #666666;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    /* -webkit-box-orient: vertical; */
    overflow: hidden;
}


.read-more {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #006cff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}


.read-more span {
    font-size: 20px;
    line-height: 10px;
    color: #006cff;
}



/* =====================================================
   POST META
===================================================== */

.post-meta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 560px;
    margin: 10px auto 0 0;
    padding: 0 5px;
}


.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #006cff;
    font-size: 14px;
    white-space: nowrap;
}


.meta-icon {
    color: #006cff;
    font-size: 10px;
}



/* =====================================================
   SIDEBAR
===================================================== */

.post-sidebar {
    width: 100%;
    background: #eefcff;
    border-radius: 10px;
    padding: 18px;
}


.sidebar-box {
    width: 100%;
    background: #ffffff;
    border-radius: 7px;
    padding: 15px 12px;
    margin-bottom: 18px;
}


.sidebar-box:last-child {
    margin-bottom: 0;
}



/* =====================================================
   SIDEBAR TITLE
===================================================== */

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 14px;
    color: #222222;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;
}



/* =====================================================
   TOP POSTS
===================================================== */

.top-post-list {
    display: flex;
    flex-direction: column;
    gap: 23px;
}


.top-post-item {
    display: flex;
    /* align-items: flex-start; */
    gap: 17px;
    /* width: 100%; */
    /* text-decoration: none; */
}


.top-post-item img {
    /* flex-shrink: 0; */
    width: 79px;
    height: 81px;
    /* object-fit: cover; */
    border-radius: 5px;
}


.top-post-content {
    min-width: 0;
    padding-top: 1px;
}


.top-post-content h4 {
    margin: 0 0 4px;
    color: #222222;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}


.top-post-content span {
    color: #777777;
    font-size: 14px;
}



/* =====================================================
   TAGS
===================================================== */

.tags-box {
    padding-bottom: 14px;
}


.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 7px;
}


.tags-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    background: #EEFCFF;
    border-radius: 2px;
    color: #6a6a6a;
    font-size: 11px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}



/* =====================================================
   PAGINATION
===================================================== */

.post-pagination {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-top: 10px;

    padding-top: 0;
}


.pagination-number,
.pagination-next {
    border: 0;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}


.pagination-number {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 7px;
    color: #333333;
    font-size: 16px;
}


.pagination-number.active {
    background: #f3f3f3;
    color: #555555;
}


.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    color: #333333;
    font-size: 14px;
}


.pagination-next {
    height: 35px;
    padding: 0px 21px;
    margin-left: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f3f3;
    border-radius: 7px;
    color: #777777;
    font-size: 14px;
}


.pagination-next span {
    font-size: 16px;
    line-height: 8px;
}



/* =====================================================
   LARGE LAPTOP
===================================================== */

@media (max-width: 1200px) {

    .post-section {
        padding: 50px 22px 35px;
    }


    .post-section-container {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 25px;
    }


    .post-image {
        height: 390px;
    }


    .post-info-card {
        left: 17px;
        right: 17px;
    }


    .post-info-card h2 {
        font-size: 18px;
    }


    .post-info-bottom {
        gap: 18px;
    }


    .post-sidebar {
        padding: 15px;
    }


    .sidebar-title {
        font-size: 19px;
    }


    .top-post-item {
        gap: 12px;
    }


    .top-post-item img {
        width: 70px;
        height: 72px;
    }


    .top-post-content h4 {
        font-size: 13px;
    }


    .top-post-content span {
        font-size: 12px;
    }

}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .post-section {
        padding: 45px 20px 30px;
    }


    .post-section-container {
        grid-template-columns: minmax(0, 1fr) 245px;
        gap: 20px;
    }


    .post-card {
        margin-bottom: 45px;
    }


    .post-image {
        height: 330px;
    }


    .post-info-card {
        left: 14px;
        right: 14px;
        bottom: 10px;
        padding: 12px 14px;
    }


    .post-info-card h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }


    .post-info-bottom {
        gap: 12px;
    }


    .post-info-bottom p {
        font-size: 11px;
    }


    .read-more {
        font-size: 12px;
        gap: 5px;
    }


    .read-more span {
        font-size: 18px;
    }


    .post-meta {
        max-width: 100%;
    }


    .post-meta span {
        font-size: 12px;
    }


    .post-sidebar {
        padding: 13px;
    }


    .sidebar-box {
        padding: 13px 10px;
        margin-bottom: 14px;
    }


    .sidebar-title {
        font-size: 17px;
        margin-bottom: 12px;
    }


    .top-post-list {
        gap: 17px;
    }


    .top-post-item {
        gap: 10px;
    }


    .top-post-item img {
        width: 60px;
        height: 62px;
    }


    .top-post-content h4 {
        font-size: 11px;
    }


    .top-post-content span {
        font-size: 10px;
    }


    .tags-list {
        gap: 7px 5px;
    }


    .tags-list a {
        padding: 4px 5px;
        font-size: 10px;
    }

}



/* =====================================================
   TABLET / SMALL TABLET
===================================================== */

@media (max-width: 820px) {

    .post-section-container {
        grid-template-columns: minmax(0, 1fr) 220px;
        gap: 18px;
    }


    .post-image {
        height: 300px;
    }


    .post-info-card {
        left: 12px;
        right: 12px;
    }


    .post-info-card h2 {
        font-size: 14px;
    }


    .post-info-bottom p {
        font-size: 10px;
    }


    .read-more {
        font-size: 10px;
    }


    .post-sidebar {
        padding: 11px;
    }


    .sidebar-title {
        font-size: 16px;
    }


    .top-post-item img {
        width: 55px;
        height: 57px;
    }


    .top-post-item {
        gap: 8px;
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .post-section {
        padding: 35px 15px 30px;
    }


    .post-section-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }


    .posts-content {
        width: 100%;
    }


    .post-card {
        width: 100%;
        margin-bottom: 35px;
    }


    .post-image {
        width: 100%;
        height: 280px;
    }


    .post-info-card {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 11px 12px;
    }


    .post-info-card h2 {
        font-size: 13px;
        margin-bottom: 7px;
        line-height: 1.3;
    }


    .post-info-bottom {
        gap: 10px;
    }


    .post-info-bottom p {
        font-size: 9px;
        line-height: 1.45;
    }


    .read-more {
        font-size: 9px;
        gap: 4px;
    }


    .read-more span {
        font-size: 16px;
    }


    .post-meta {
        max-width: 100%;
        padding: 0 3px;
        margin-top: 8px;
    }


    .post-meta span {
        font-size: 8px;
        gap: 4px;
    }


    .meta-icon {
        font-size: 8px;
    }


    .post-sidebar {
        width: 100%;
        padding: 15px;
    }


    .sidebar-box {
        padding: 14px 12px;
    }


    .sidebar-title {
        font-size: 18px;
    }


    .top-post-list {
        gap: 18px;
    }


    .top-post-item {
        gap: 13px;
    }


    .top-post-item img {
        width: 65px;
        height: 67px;
        flex-shrink: 0;
    }


    .top-post-content h4 {
        font-size: 13px;
    }


    .top-post-content span {
        font-size: 11px;
    }


    .tags-list {
        gap: 8px 6px;
    }


    .tags-list a {
        padding: 5px 7px;
        font-size: 10px;
    }


    .post-pagination {
        gap: 4px;
        flex-wrap: wrap;
    }


    .pagination-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }


    .pagination-next {
        height: 32px;
        padding: 0 15px;
        font-size: 12px;
        gap: 6px;
    }


    .pagination-next span {
        font-size: 14px;
    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .post-section {
        padding: 28px 12px 25px;
    }


    .post-section-container {
        gap: 25px;
    }


    .post-card {
        margin-bottom: 30px;
    }


    .post-image {
        height: 240px;
    }


    .post-info-card {
        left: 8px;
        right: 8px;
        bottom: 8px;
        padding: 9px 10px;
        border-radius: 6px;
    }


    .post-info-card h2 {
        font-size: 11px;
        margin-bottom: 5px;
    }


    .post-info-bottom {
        gap: 7px;
    }


    .post-info-bottom p {
        font-size: 8px;
        line-height: 1.4;
    }


    .read-more {
        font-size: 8px;
        gap: 3px;
    }


    .read-more span {
        font-size: 14px;
    }


    .post-meta {
        padding: 0 2px;
        margin-top: 7px;
    }


    .post-meta span {
        font-size: 7px;
        gap: 3px;
    }


    .meta-icon {
        font-size: 7px;
    }


    .post-sidebar {
        padding: 12px;
    }


    .sidebar-box {
        padding: 12px 10px;
        margin-bottom: 12px;
    }


    .sidebar-title {
        font-size: 16px;
        margin-bottom: 11px;
    }


    .top-post-list {
        gap: 15px;
    }


    .top-post-item {
        gap: 10px;
    }


    .top-post-item img {
        width: 58px;
        height: 60px;
    }


    .top-post-content h4 {
        font-size: 11px;
        line-height: 1.35;
    }


    .top-post-content span {
        font-size: 10px;
    }


    .tags-list {
        gap: 6px 5px;
    }


    .tags-list a {
        padding: 4px 6px;
        font-size: 9px;
    }


    .post-pagination {
        gap: 3px;
    }


    .pagination-number {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }


    .pagination-dots {
        width: 16px;
        font-size: 12px;
    }


    .pagination-next {
        height: 30px;
        padding: 0 12px;
        font-size: 11px;
        gap: 5px;
    }


    .pagination-next span {
        font-size: 13px;
    }

}



/* =====================================================
   EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 360px) {

    .post-section {
        padding: 25px 10px 22px;
    }


    .post-image {
        height: 215px;
    }


    .post-info-card {
        left: 6px;
        right: 6px;
        bottom: 6px;
        padding: 8px 9px;
    }


    .post-info-card h2 {
        font-size: 10px;
    }


    .post-info-bottom {
        gap: 5px;
    }


    .post-info-bottom p {
        font-size: 7px;
    }


    .read-more {
        font-size: 7px;
    }


    .read-more span {
        font-size: 13px;
    }


    .post-meta span {
        font-size: 6.5px;
    }


    .post-sidebar {
        padding: 10px;
    }


    .sidebar-box {
        padding: 11px 9px;
    }


    .sidebar-title {
        font-size: 15px;
    }


    .top-post-item {
        gap: 8px;
    }


    .top-post-item img {
        width: 52px;
        height: 54px;
    }


    .top-post-content h4 {
        font-size: 10px;
    }


    .top-post-content span {
        font-size: 9px;
    }


    .tags-list a {
        font-size: 8px;
        padding: 4px 5px;
    }


    .pagination-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }


    .pagination-next {
        height: 28px;
        padding: 0 10px;
        font-size: 10px;
    }

}



/* =====================================================
   NEWS CONTENT BANNER
====================================================== */

.news-content-banner {
    width: 100%;
    padding: 0;
}

.news-content-banner-container {
    width: 100%;
    /* max-width: 1660px; */
    margin: 0 auto;
    min-height: 382px;
    background-image: linear-gradient(rgba(0, 0, 0, -0.48), rgba(0, 0, 0, -0.48)), url(/images/Frame\ 75.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.news-content-banner-content {
    padding-left: 147px;
    color: #ffffff;
}

.news-content-banner-content h1 {
    margin: 0 0 12px;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.news-content-banner-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: #ffffff;
}


/* =====================================================
   NEWS CONTENT BANNER RESPONSIVE
====================================================== */

@media (max-width: 768px) {

    .news-content-banner-container {
        min-height: 210px;
        background-position: center;
    }

    .news-content-banner-content {
        padding-left: 40px;
        padding-right: 25px;
    }

    .news-content-banner-content h1 {
        font-size: 25px;
    }

    .news-content-banner-content p {
        font-size: 10px;
    }

}


@media (max-width: 480px) {

    .news-content-banner-container {
        min-height: 180px;
    }

    .news-content-banner-content {
        padding-left: 25px;
    }

    .news-content-banner-content h1 {
        font-size: 23px;
        margin-bottom: 9px;
    }

    .news-content-banner-content p {
        font-size: 9px;
    }

}




/* =====================================================
   BLOG CONTANT
====================================================== */

.blog-contant {
    width: 100%;
    padding: 55px 0 70px;
    background: #ffffff;
}

.blog-contant-container {
    width: 100%;
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 22px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 232px;
    gap: 28px;
    align-items: start;
}


/* =====================================================
   BLOG MAIN
====================================================== */

.blog-contant-main {
    width: 100%;
    min-width: 0;
}

.blog-main-image {
    /* display: block; */
    width: 88%;
    /* height: 349px; */
    /* object-fit: cover; */
    border-radius: 10px;
    margin-bottom: 11px;
}


/* =====================================================
   BLOG META
====================================================== */

.blog-meta {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 17px;
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
    color: #1677FF;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-meta-icon {
    color: #00aeea;
    font-size: 9px;
}


/* =====================================================
   BLOG TITLE
====================================================== */

.blog-title {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
    color: #111111;
}

/* =====================================================
   BLOG PARAGRAPH
====================================================== */

.blog-paragraph {
    margin: 0 0 11px;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 400;
    color: #555555;
}

.blog-bold-text {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
    color: #222222;
}


/* =====================================================
   BLOG HEADING BOX
====================================================== */

.blog-heading-box {
    display: inline-flex;
    align-items: center;
    min-height: 33px;
    margin: 8px 0 9px;
    padding: 4px 8px 4px 7px;
    border: 1px solid #55d7f2;
    border-radius: 5px;
    background: #f5fdff;
    color: #111111;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}



.blog-heading-box span {
    width: 6px;
    height: 6px;
    margin-right: 4px;
    border-radius: 50%;
    background: #00bce9;
    flex-shrink: 0;
}


/* =====================================================
   BLOG LIST
====================================================== */

.blog-list {
    margin: 7px 0 10px;
    padding-left: 17px;
    font-size: 12px;
    line-height: 1.7;
    color: #555555;
}


.blog-list li {
    padding-left: 2px;
    margin-bottom: 5px;
}


.blog-list strong {
    color: #555555;
    font-weight: 700;
}


/* =====================================================
   BLOG SUBTITLE
====================================================== */

.blog-subtitle {
    margin: 12px 0 8px;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    color: #111111;
}


/* =====================================================
   RESTAURANT LIST
====================================================== */

.blog-restaurant-list {
    margin: 8px 0 12px;
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.8;
    color: #222222;
}

.blog-restaurant-list li {
    margin-bottom: 2px;
}


/* =====================================================
   BLOG SIDEBAR
====================================================== */

.blog-contant-sidebar {
    width: 100%;
}

.blog-sidebar-box {
    width: 100%;
    padding: 12px 9px 14px;
    margin-bottom: 10px;
    border-radius: 7px;
    background: #f0fbfd;
}


/* =====================================================
   SIDEBAR TITLE
====================================================== */

.blog-sidebar-title {
    display: flex;
    align-items: center;
    margin: 0 0 9px;
    padding-left: 1px;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 500;
    color: #222222;
}

.blog-sidebar-title span {
    width: 3px;
    height: 8px;
    margin-right: 5px;
    background: #00b9e9;
}


/* =====================================================
   SIDEBAR POSTS
====================================================== */

.blog-sidebar-post {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 8px;
    text-decoration: none;
    color: inherit;
}

.blog-sidebar-post:last-child {
    margin-bottom: 0;
}

.blog-sidebar-post img {
    display: block;
    width: 47px;
    height: 47px;
    flex-shrink: 0;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 5px;
}

.blog-sidebar-post-content {
    min-width: 0;
    padding-left: 7px;
}

.blog-sidebar-post-content h4 {
    margin: 0 0 4px;
    font-size: 7px;
    line-height: 1.35;
    font-weight: 500;
    color: #222222;
}

.blog-sidebar-post-content small {
    display: block;
    font-size: 6px;
    line-height: 1.3;
    color: #999999;
}


/* =====================================================
   TAGS
====================================================== */

.blog-tags-box {
    background: #f0fbfd;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 4px;
}

.blog-tags a {
    display: inline-block;
    padding: 4px 5px;
    border-radius: 2px;
    background: #ffffff;
    color: #8a9699;
    font-size: 6px;
    line-height: 1;
    text-decoration: none;
}

.blog-tags a:hover {
    color: #00aee0;
}


/* =====================================================
   BLOG RESPONSIVE
====================================================== */

@media (max-width: 900px) {

    .blog-contant-container {
        grid-template-columns: minmax(0, 1fr) 220px;
        gap: 20px;
    }

    .blog-main-image {
        height: 250px;
    }

}


@media (max-width: 700px) {

    .blog-contant {
        padding: 40px 0 55px;
    }

    .blog-contant-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-contant-sidebar {
        width: 100%;
    }

    .blog-main-image {
        height: 260px;
    }

    .blog-sidebar-box {
        max-width: 100%;
    }

}


@media (max-width: 480px) {

    .blog-contant-container {
        padding: 0 15px;
    }

    .blog-main-image {
        height: 210px;
    }

    .blog-meta {
        gap: 14px;
        flex-wrap: wrap;
    }

    .blog-title {
        font-size: 12px;
    }

    .blog-paragraph,
    .blog-bold-text,
    .blog-list,
    .blog-restaurant-list {
        font-size: 8px;
    }

}
