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

body {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    color: #1b1717;
}

/* GLOBAL OVERFLOW PROTECTION */
section,
div,
footer,
header {
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1350px;
    margin: auto;
    padding: 12px 16px;
}


/* HEADER */
.nav-bg {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    padding: 8px 20px;
}

header.nav {
    max-width: 1350px;
    margin: 0 auto;
    padding: 10px 20px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: whitesmoke;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}


header.container {
    padding-left: 20px;
    padding-right: 20px;
}


.logo {
    width: 150px;
    padding: 0 0 0 10px;
    margin-right: auto;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
}

nav a:hover {
    color: #595959;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language {
    display: flex;
    align-items: center;
    gap: 6px;
}

.language img {
    width: 18px;
}

.language a {
    font-size: 15px;
}

.btn-primary {
    background-color: #ffd741;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 450;
    font-size: 13px;
    color: #252222;
    transition: 0.1s;
    text-align: center;
}

.btn-primary:hover {
    background-color: #fecc16;
}

.btn-secondary {
    background-color: #f2f0ec;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.1s;
    font-size: 15px;
}

.btn-secondary:hover {
    background-color: #d2d2d0b7;
}

.btn-large {
    display: inline-block;
    line-height: 1.2;
}

.btn-large span {
    display: block;
    font-size: 11px;
    font-weight: 420;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}


.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1b1717;
    border-radius: 2px;
}

@media (max-width:768px) {

    .nav-bg {
        padding: 8px 12px;
    }

    .nav-bg {
        padding: 8px 16px;
    }

    .nav-bg {
        padding: 10px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    nav.nav-menu {
        position: absolute;
        top: calc(100% + 8px);

        left: 16px;
        right: 16px;

        background: whitesmoke;
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, .1);
        display: none;
    }

    nav.nav-menu.active {
        display: block;
    }

    nav.nav-menu ul {
        flex-direction: column;
        gap: 18px;
        padding: 20px;
        align-items: center;
    }

    .header-actions {
        display: none;

    }
}

/* HERO SECTION */
.hero {
    margin-top: 0px;
    max-width: 1380px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-top: 110px;
    padding-bottom: 0;
}

.hero-text {
    width: 60%;
}

.top-badge {
    display: inline-block;
    padding: 5px 8px;
    border: 1px solid #ffd741;
    background-color: #ffd64115;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #977800;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #222222;
    font-weight: 600;
}

.hero p {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 25px;
    max-width: 620px;
    color: #494242;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-wrapper {
    width: 60%;
    position: relative;
    margin-top: 10px;
}

.hero-image {
    width: 100%;
    height: 420px;
    background: #ffd741;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-in-out;
    transform: translateX(100%);
}

.slide.current {
    transform: translateX(0);
}

.slide.next {
    transform: translateX(100%);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: rgba(255, 215, 65, 0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.hero-image:hover .arrow {
    opacity: 1;
    pointer-events: auto;
}

.left-arrow {
    left: 12px;
}

.right-arrow {
    right: 12px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 30px;
    height: 4px;
    background: #c9b6783a;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
}

.dot.active {
    background: rgb(237 211 109);
}

#slideText {
    width: 100%;
    min-height: auto;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
        color 0.3s ease;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: #464141b9;
    font-weight: 500;
    line-height: 1.5;
}

#slideText.show {
    opacity: 1;
    transform: translateY(0);
}

#slideText:hover {
    color: #ffd741;
}

#slideText p,
#review-text {
    will-change: opacity, transform;
}

/* HERO REVIEWS */
.hero-extra {
    margin-top: 20px;
}

.reviews {
    display: flex;
    align-items: center;
    margin-left: 35px;
    margin-top: 4px;
    margin-bottom: 15px;
    gap: 5px;
}

.reviews img {
    width: 35px;
    height: auto;
    transition: all 0.2s;
}

.reviews .star {
    width: 16px;
    height: auto;
    margin-left: 8px;
}

.reviews span {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #5e5858ce;
}

.ret-p {
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.ret-p:hover {
    transform: scale(1.15);
}

.ret-p.active {
    transform: scale(1.15);
    opacity: 1;
}

.ret-p:not(.active) {
    opacity: 0.8;
}

.rating {
    width: auto;
    max-width: 500px;
    margin-left: 20px;
    margin-top: 8px;
    line-height: 25px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #494242;
    overflow: hidden;
}

.review-animate {
    display: inline-block;
    animation: slideUp 0.7s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.Available-on {
    margin-top: 50px;
    display: flex;
    gap: 15px;
}

.Available-on h3 {
    font-size: 20px;
    margin-left: 20px;
    font-weight: 550;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #464141b9;
}

/* LARGE DESKTOP (1400px+) */
@media (min-width: 1401px) {
    .hero-extra {
        margin-top: -180px;
    }
}

/* MEDIUM LAPTOP (1201px - 1400px) */
@media (min-width: 1201px) and (max-width: 1400px) {
    .hero {
        padding-top: 80px;
        gap: 30px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-image {
        height: 350px;
    }

    .hero-extra {
        margin-top: -120px;
    }
}

/* SMALL LAPTOP (1024px - 1200px) */
@media (min-width: 1024px) and (max-width: 1200px) {
    .hero {
        padding-top: 70px;
        gap: 25px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
        line-height: 22px;
    }

    .hero-image {
        height: 290px;
    }

    .hero-extra {
        margin-top: -70px;
    }

    .hero-text {
        margin-top: 0 !important;
    }

    .hero-wrapper {
        margin-top: 0 !important;
    }

    .reviews {
        margin-left: 20px;
    }

    .rating {
        margin-left: 20px;
        font-size: 14px;
    }

    #slideText {
        font-size: 14px;
    }

    .Available-on {
        margin-top: 25px;
    }

    .Available-on h3 {
        font-size: 17px;
    }
}

/* SMALL LAPTOP (900px - 1023px) */
@media (min-width: 900px) and (max-width: 1023px) {
    .hero {
        padding-top: 60px;
        gap: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
        line-height: 21px;
    }

    .hero-image {
        height: 260px;
    }

    .hero-extra {
        margin-top: -40px;
    }

    .hero-text {
        margin-top: 0 !important;
    }

    .hero-wrapper {
        margin-top: 0 !important;
    }

    .reviews {
        margin-left: 16px;
    }

    .rating {
        margin-left: 16px;
        font-size: 13px;
    }

    #slideText {
        font-size: 13px;
    }

    .Available-on {
        margin-top: 20px;
    }

    .Available-on h3 {
        font-size: 16px;
    }
}

/* TABLET (769px - 899px) */
@media (min-width: 769px) and (max-width: 899px) {
    .hero {
        padding-top: 50px;
        gap: 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 13px;
        line-height: 19px;
    }

    .hero-image {
        height: 220px;
    }

    .hero-extra {
        margin-top: 10px;
    }

    .reviews {
        margin-left: 16px;
    }

    .rating {
        margin-left: 16px;
        font-size: 12px;
    }

    #slideText {
        font-size: 12px;
    }

    .Available-on h3 {
        font-size: 15px;
    }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {

    .top-badge {
        font-size: 12px !important;
        padding: 3px 5px !important;
        margin-bottom: 10px;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 40px;
        gap: 20px;
    }

    .hero-text {
        width: 100%;
        margin-top: 0;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 14px;
        max-width: 100%;
        margin: 0 auto 15px;
        line-height: 20px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-wrapper {
        width: 100%;
    }

    .hero-image {
        height: 220px;
        max-width: 100%;
    }

    .dots {
        margin-top: 15px;
    }

    #slideText {
        font-size: 13px;
        padding: 0 10px;
    }

    .hero,
    .hero-extra {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-extra {
        margin-top: 10px;
    }

    .reviews {
        margin-top: 10px;
        margin-left: 0;
        justify-content: center;
    }

    .rating {
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
        margin-left: 0;
        padding: 0 16px;
        text-align: center;
        font-size: 13px;
        box-sizing: border-box;
    }

    .review-animate {
        display: block;
        word-wrap: break-word;
    }

    .Available-on {
        margin-top: 12px;
        justify-content: center;
    }

    .Available-on h3 {
        font-size: 15px;
        margin-left: 10px;
    }

    .reviews,
    .rating,
    .Available-on {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        justify-content: center;
    }
}

/* GLOBAL OVERFLOW */
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

/*SECOND SECTION */
.features {
    background-color: #f2f0ec;
    padding: 40px 0;
    margin-top: 40px;
}

@media (min-width: 851px) {
    .features {
        padding-bottom: 120px;
    }
}

.container-2 {
    max-width: 1350px;
    margin: auto;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
}

.top-badge-2 {
    display: inline-block;
    padding: 5px 8px;
    border: 1px solid #93929253;
    background-color: #ffffffb5;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #232121;
    margin-bottom: 10px;
}

.features h2 {
    font-size: 50px;
    margin-top: 10px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    color: #222222;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.card-1 {
    width: 380px;
    min-height: 340px;
    margin: 0;
    padding: 25px 15px;
    background-color: #ffffff;
    border-radius: 5px;
    flex-grow: 1;
    flex-shrink: 0;
    max-width: 400px;
}

.card-link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.card-info {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
}

.card-info img {
    align-items: left;
    justify-content: left;
    width: auto;
    max-width: 100%;
    height: 35px;
    object-fit: contain;
    flex-shrink: 0;
}


.btn-cards {
    margin-top: auto;
    font-size: 14px;
    font-weight: 500;
    color: #282826;
}

.card-1 h5 {
    font-size: 20px;
    font-weight: 600;
    color: #2f2d2d;
    margin: 10px 0px;
}

.card-1 p {
    font-size: 14px;
    color: #494242;
    margin-top: 0px;
    line-height: 1.7;
    font-family: Inter, Helvetica, Arial, Lucida, sans-serif;
    ;
}

.btn-cards {
    margin-top: auto;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #282826;
}

.btn-cards span {
    font-size: 16px;
    margin-left: 5px;
    color: #fecc16;
    font-weight: 900;
    display: inline-block;
    transition: transform 0.3s ease;

}

.card-1:hover .btn-cards span {
    transform: translateX(8px);
}

@media (max-width: 850px) {
    .cards {
        flex-direction: column;
        align-items: center;
        padding: 0 16px;
    }

    .card-1 {
        width: 100%;
        max-width: 500px;
    }

    .features h2 {
        font-size: 30px;
        padding: 0 16px;
    }
}

/* MAIN MEDIA */
@media (max-width: 850px) {

    .container-3 h2,
    .container-4 h2 {
        width: 100% !important;
        max-width: 100%;
        font-size: 28px;
        padding: 0 16px;
    }

    .work-with-us,
    .container-3 {
        max-width: 100%;
        padding: 8px 16px;
        overflow: hidden;
    }

    .editor-features-page,
    .container-4 {
        max-width: 100%;
        padding: 8px 16px;
        overflow: hidden;
    }

    .Business-page-1 {
        padding: 20px 16px;
        overflow: hidden;
    }

    .business-layout {
        flex-direction: column;
    }

    .business-content {
        width: 100%;
    }

    .img-box {
        width: 100%;
        margin-left: 0;
    }

    .current-img {
        width: 100%;
        top: 0;
        left: 0;
    }

    .img-box::before {
        width: 100%;
        right: 0;
    }

    .reverse-layout {
        flex-direction: column;
        margin-left: 0;
    }

    .reverse-content {
        margin-left: 0;
    }

    .footer {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        margin: 20px 0;
    }

    .footer-inner {
        flex-direction: column;
        padding: 20px 16px;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-left .footer-p-1 {
        width: 100%;
    }

    .email-box {
        width: 100%;
        max-width: 100%;
    }

    .footer-right {
        margin-left: 0;
        width: 100%;
        overflow-x: auto;
    }

    .footer-right table {
        width: 100%;
    }

    .footer-right th,
    .footer-right td {
        padding: 4px 8px;
        font-size: 12px;
    }

    .copy-right {
        text-align: center;
        right: 0;
        padding: 0 16px;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        height: 220px;
    }

    .round-icons {
        max-width: 100%;
        overflow: hidden;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .hero-extra {
        margin-top: -120px;

    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .hero-extra {
        margin-top: -160px;

    }
}

@media (min-width: 900px) and (max-width: 1023px) {
    .hero-extra {
        margin-top: -80px;

    }
}

/* THIRD SECTION */
.work-with-us {
    background-color: #ffffff;
    padding: 20px 0;
    margin-top: 40px;
}

.container-3 {
    max-width: 1350px;
    margin: auto;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 20px;
}

.container-3 h2 {
    font-size: 46px;
    font-weight: 600;
    margin-top: 10px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    color: #222222;
}

.top-badge-3 {
    display: inline-block;
    padding: 5px 8px;
    border: 1px solid #93929253;
    background-color: #ffffffb5;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #232121;
    margin-bottom: 10px;
}

.round-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.round-icons {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.icons-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-logos 25s linear infinite;
    will-change: transform;
}

.logo {
    flex-shrink: 0;
    margin-right: 80px;
    height: auto;
}

.icons-track:hover {
    animation-play-state: paused;
}


.logo {
    height: auto;
    flex-shrink: 0;
}

/* SIZE SYSTEM */
.l-custom-1 {
    width: 260px;
}

.l-custom-2 {
    width: 200px;
}

.l-custom-3 {
    width: 180px;
}

.l-custom-4 {
    width: 150px;
}

.l-custom-5 {
    width: 160px;
}

.l-custom-6 {
    width: 160px;
}

.l-custom-7 {
    width: 120px;
}

.l-custom-8 {
    width: 110px;
}

.l-custom-9 {
    width: 360px;
}

.l-custom-10 {
    width: 180px;
}

.l-custom-11 {
    width: 260px;
}

@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {

    .top-badge {
        font-size: 11px;
        padding: 4px 6px;
        margin-bottom: 12px;
    }
}

@media (max-width: 900px) {
    .round-icons {
        gap: 50px;
    }
}

@media (max-width: 768px) {

    .work-with-us {
        padding: 10px 0;
        margin-top: 20px;
    }

    .container-3 {
        padding: 8px 16px;
    }

    .container-3 h2 {
        font-size: 26px;
        max-width: 100%;
        padding: 0 10px;
        line-height: 1.3;
    }

    .top-badge-3 {
        font-size: 11px;
    }

    .logo {
        margin-right: 40px;
    }

    .l-custom-1 {
        width: 140px;
    }

    .l-custom-2 {
        width: 110px;
    }

    .l-custom-3 {
        width: 100px;
    }

    .l-custom-4 {
        width: 85px;
    }

    .l-custom-5 {
        width: 90px;
    }

    .l-custom-6 {
        width: 90px;
    }

    .l-custom-7 {
        width: 70px;
    }

    .l-custom-8 {
        width: 65px;
    }

    .l-custom-9 {
        width: 180px;
    }

    .l-custom-10 {
        width: 100px;
    }

    .l-custom-11 {
        width: 140px;
    }

    .icons-track {
        animation-duration: 12s !important;
    }

    .round-icons {
        margin-top: 20px;
        gap: 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .container-3 h2 {
        font-size: 36px;
    }

    .l-custom-1 {
        width: 200px;
    }

    .l-custom-2 {
        width: 160px;
    }

    .l-custom-3 {
        width: 140px;
    }

    .l-custom-4 {
        width: 120px;
    }

    .l-custom-5 {
        width: 130px;
    }

    .l-custom-6 {
        width: 130px;
    }

    .l-custom-7 {
        width: 100px;
    }

    .l-custom-8 {
        width: 90px;
    }

    .l-custom-9 {
        width: 260px;
    }

    .l-custom-10 {
        width: 140px;
    }

    .l-custom-11 {
        width: 200px;
    }
}

/* BUSSINESS SECTION */
.Business-page-1 {
    background-color: #f2f0ec;
    padding: 20px 30px;
    margin-top: 30px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

.top-badge-4 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background-color: #ffffffd8;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #232121;
}

.top-badge-4 img {
    width: 25px;
    display: block;
}

.top-badge-4 span {
    padding: 0;
    line-height: 1;
}

.Business-page-1 h2 {
    font-size: 35px;
    margin-top: 10px;
    max-width: 620px;
    width: 100%;
    color: #222222;
    line-height: 38px;
    text-align: left;
}

.Business-page-1 p {
    max-width: 550px;
    width: 100%;
    height: auto;
    font-size: 16px;
    margin-top: 10px;
    line-height: 25px;
    color: #302b2b;
    font-weight: 200;
}

.Business-page-1 p>b {
    font-weight: 800;
    font-size: 16px;
    color: #977800;
}

.person-review {
    margin-top: 30px;
    background-color: #ffffff5b;
    border: 1px solid rgba(91, 90, 90, 0.13);
    border-radius: 5px;
    padding: 10px;
    display: inline-block;
    align-items: center;
    max-width: 520px;
    width: 100%;
}

.person-review h4 {
    font-weight: 500;
    font-size: 14px;

}

.person-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.person-info img {
    width: 40px;
    height: 40px;
}

.person-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.person-review .person-name-1 {
    font-size: 14px;
    font-weight: 500;
    color: rgb(12, 12, 12);
}

.person-review .person-name-2 {
    font-size: 14px;
    font-weight: 500;
    color: #544a4aa7;
}

.btn-business {
    background-color: #ffd741;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 450;
    font-size: 14px;
    color: #252222;
    transition: 0.1s;
    text-align: center;
    display: flex;
    margin-top: 25px;
    max-width: 145px;
    width: 100%;
}

.btn-business:hover {
    background-color: #fecc16;
}

.arrow-business {
    font-size: 14px;
    font-weight: 500;
    margin-left: 5px;
    color: #221e1edb;
    font-weight: 800;
    display: inline-block;
    transition: transform 0.3s ease;

}

.btn-business:hover .arrow-business {
    transform: translateX(5px);
}

@media (max-width: 850px) {
    .arrow-business {
        flex-direction: column;
        align-items: center;
    }
}

.business-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.business-content {
    width: 60%;
}

/* background layer */
.img-box::before {
    content: "";
    position: absolute;
    right: -10px;
    max-width: 550px;
    width: 100%;
    height: 490px;
    background: #2d2d2d;
    border-radius: 14px;
    z-index: 0;
}

.img-box img {
    position: relative;
    z-index: 1;
    border-radius: 12px;
}

.img-box {
    position: relative;
    margin-left: -50px;
    width: 50%;
    display: flex;
    justify-content: flex-end;
    overflow: visible;
}

.current-img {
    position: relative;
    z-index: 1;
    top: 80px;
    max-width: 520px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .img-box {
        width: 100%;
        justify-content: center;
    }

    .img-box::before {
        width: 100%;
        height: 260px;
        right: 0;
    }

    .current-img {
        width: 100%;
    }
}

.reverse-layout {
    flex-direction: row-reverse;
    margin-left: 0;

}

.reverse-content {
    margin-left: 0;
    padding-left: 50px;

}

.reverse-box::before {
    content: "";
    position: absolute;
    right: -10px;
    max-width: 550px;
    width: 100%;
    height: 520px;
    background: #2d2d2d;
    border-radius: 14px;
    z-index: 0;
}

.reverse-img {
    position: relative;
    z-index: 1;
    top: 100px;
    left: -5px;
    width: 520px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 768px) {

    .Business-page-1 {
        padding: 20px 16px;
        margin-top: 20px;
        border-radius: 8px;
    }

    .business-layout {
        flex-direction: column;
        gap: 0px;
    }

    .business-content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .Business-page-1 h2 {
        font-size: 24px;
        line-height: 30px;
        max-width: 100%;
    }

    .Business-page-1 p {
        font-size: 14px;
        line-height: 22px;
        max-width: 100%;
    }

    .top-badge-4 {
        font-size: 11px;
        padding: 5px 6px;
        align-self: flex-start;
        max-width: fit-content;
    }

    .top-badge-4 img {
        width: 16px;
    }

    .top-badge-4 span {
        white-space: nowrap;
    }

    /* PERSON REVIEW */
    .person-review {
        max-width: 100%;
        margin-top: 20px;
    }

    .person-review h4 {
        font-size: 13px;
    }

    .person-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .person-review .person-name-1,
    .person-review .person-name-2 {
        font-size: 12px;
    }

    .btn-business {
        order: 99;
        margin: 25px auto 0 auto;
        justify-content: center;
    }

    /* IMAGE BOX */
    .img-box {
        order: 2;
        width: 100%;
        margin-left: 0;
        margin-top: 25px;
        justify-content: center;
    }

    .current-img {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
    }

    .img-box::before {
        display: none;
    }

    .reverse-box::before {
        display: none;
    }

    .reverse-layout {
        flex-direction: column;
        margin-left: 0;
    }

    .reverse-content {
        margin-left: 0;
    }

    .reverse-img {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .Business-page-1 h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .Business-page-1 p {
        font-size: 15px;
    }

    .current-img {
        top: 40px;
        max-width: 400px;
    }

    .img-box::before {
        max-width: 420px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .reverse-content {
        margin-left: 0;
        padding-left: 0;
    }
}

/* FOURTH SECTION */
.editor-features-page {
    background-color: #f2f0ec;
    padding: 20px 0;
    margin-top: 60px;
}

.container-4 {
    max-width: 1350px;
    margin: auto;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
}

.container-4 h2 {
    font-size: 50px;
    font-weight: 600;
    margin-top: 10px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    color: #222222;
}

.top-badge-3-3 {
    display: inline-block;
    padding: 5px 8px;
    border: 1px solid #93929253;
    background-color: #ffffffb5;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

.editor-cards {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.editor-cards .editor-cards-1 {
    width: 390px;
    height: 160px;
    background: #ffffffd8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.editor-cards-1 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.editor-cards-1:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.editor-cards .editor-cards-1 h3 {
    font-size: 25px;
    font-weight: 600;
    color: #171715;
    margin-top: 10px;
}

.editor-cards-1-5 h3 {
    width: 280px;
}

.editor-cards .btn-editor-features {
    margin-top: 25px;
}

@media (max-width: 768px) {

    .editor-features-page {
        padding: 20px 0;
        margin-top: 30px;
    }

    .container-4 {
        padding: 8px 16px;
    }

    .container-4 h2 {
        font-size: 30px;
        max-width: 100%;
        padding: 0 10px;
    }

    .top-badge-3-3 {
        font-size: 10px;
        text-align: center;
    }

    .editor-cards {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 16px;
        margin-top: 30px;
    }

    .editor-cards .editor-cards-1 {
        width: 100%;
        max-width: 400px;
        height: 130px;
    }

    .editor-cards .editor-cards-1 h3 {
        font-size: 18px;
        margin-top: 8px;
    }

    .editor-cards-1-5 h3 {
        width: auto;
        max-width: 250px;
    }

    .editor-cards-1 a img {
        width: 30px;
        height: 30px;
    }

    .editor-cards .btn-editor-features {
        margin-top: 15px;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .container-4 h2 {
        font-size: 38px;
    }

    .editor-cards .editor-cards-1 {
        width: 300px;
        height: 150px;
    }

    .editor-cards .editor-cards-1 h3 {
        font-size: 20px;
    }

    .editor-cards {
        gap: 18px;
    }
}

/* FOOTER SECTION */
.footer-section {
    background: #f2f0ec;
    display: flex;
    justify-content: center;
}

.footer {
    max-width: 1225px;
    width: 100%;
    background: #272727;
    border-radius: 15px;
    margin: 55px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 40px;
}

.footer-left {
    color: #ffffff;
    max-width: 450px;
}

.footer-left img {
    width: 55px;
    height: auto;
}

.footer-left h3 {
    margin: 10px 0;
    font-weight: 600;
    font-size: 18px;
}

.footer-left .footer-p-1 {
    margin: 10px 0;
    line-height: 25px;
    font-size: 14px;
    font-weight: 500;
    max-width: 350px;
    width: 100%;
}

.footer-left h4 {
    font-size: 14px;
    margin-top: 80px;
}

.footer-left .footer-p-2 {
    margin: 5px 0;
    color: #d0ccccdf;
    font-size: 14px;
    font-weight: 500;
}

/* EMAIL BOX */
.email-box {
    position: relative;
    max-width: 330px;
    width: 100%;
    margin-top: 13px;
}

.email-box #email {
    width: 100%;
    padding: 14px 110px 14px 14px;
    border-radius: 6px;
    background: #454343df;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
}

.email-box #email::placeholder {
    color: #9b9b9bb7;
}

.email-box .submit-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 15px;
    border-radius: 6px;
    border: none;
    background: linear-gradient(135deg, #ffd741, #ffbe00);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.email-box .submit-btn:hover {
    background: linear-gradient(135deg, #ffbe00, #eab906);
}

/* RIGHT SIDE */

.footer-right {
    margin-left: auto;
}

.footer-right table {
    color: #d4d3d0;
    border-collapse: collapse;
}

.footer-right th,
.footer-right td {
    padding: 4px 16px;
    line-height: 20px;
    font-size: 14px;
    text-align: left;
    white-space: nowrap;
}

.footer-right th {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
}

.footer-right td:empty {
    padding: 0;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        margin-left: 0;
    }

    .footer-right table {
        width: 100%;
    }
}

.copy-right {
    color: #d4d3d0;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    top: -40px;
    right: 25px;
}

.footer-right td a {
    color: #d4d3d0;
    text-decoration: none;
    transition: color 0.25s ease;
}


.footer-right td a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {

    .footer-section {
        padding: 0 12px;
    }

    .footer {
        border-radius: 12px;
        margin: 25px 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 30px;
        padding: 25px 20px;
    }

    .footer-left {
        max-width: 100%;
        text-align: left;
    }

    .footer-left img {
        width: 45px;
    }

    .footer-left h3 {
        font-size: 16px;
    }

    .footer-left .footer-p-1 {
        max-width: 100%;
        font-size: 13px;
        line-height: 22px;
    }

    .footer-left h4 {
        margin-top: 30px;
        font-size: 13px;
    }

    .footer-left .footer-p-2 {
        font-size: 13px;
    }

    .email-box {
        max-width: 280px;
        margin-top: 13px;
    }

    .email-box #email {
        font-size: 13px;
        padding: 12px 110px 12px 12px;
    }

    .email-box .submit-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .footer-right {
        margin-left: 0;
        width: 100%;
        overflow-x: hidden;
    }

    .footer-right table {
        display: block;
        width: 100%;
    }

    .footer-right thead {
        display: none;
    }

    .footer-right tbody {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        width: 100%;
    }

    .footer-right tbody tr {
        display: contents;
    }

    .footer-right td {
        display: block;
        padding: 5px 0;
        font-size: 13px;
        white-space: normal;
        text-align: left;
    }

    .footer-right td:empty {
        display: none;
    }

    .footer-right td a {
        line-height: 1.8;
    }

    .copy-right {
        text-align: center;
        right: 0;
        top: 0;
        font-size: 12px;
        padding: 15px 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.584);
        margin: 0 20px;
        color: #d4d3d0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .footer {
        margin: 30px 16px;
    }

    .footer-inner {
        padding: 25px 25px;
    }

    .footer-right th,
    .footer-right td {
        padding: 4px 10px;
        font-size: 12px;
    }

    .footer-right th {
        font-size: 15px;
    }

    .footer-left h4 {
        margin-top: 40px;
    }
}