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

    @font-face {
        font-family: 'Poppins';
        src: url('/fonts/Poppins-Regular.woff2') format('woff2'),
            url('/fonts/Poppins-Regular.woff') format('woff');
        font-weight: 400;
        font-display: swap;
    }

    @font-face {
        font-family: 'Poppins';
        src: url('/fonts/Poppins-Medium.woff2') format('woff2'),
            url('/fonts/Poppins-Medium.woff') format('woff');
        font-weight: 500;
        font-display: swap;
    }

    @font-face {
        font-family: 'Poppins';
        src: url('/fonts/Poppins-SemiBold.woff2') format('woff2'),
            url('/fonts/Poppins-SemiBold.woff') format('woff');
        font-weight: 600;
        font-display: swap;
    }

    @font-face {
        font-family: 'Poppins';
        src: url('/fonts/Poppins-Bold.woff2') format('woff2'),
            url('/fonts/Poppins-Bold.woff') format('woff');
        font-weight: 700;
        font-display: swap;
    }

    body {
        background-color: #F9FAFF;
    }

    .container {
        display: flex;
        flex-direction: column;
        min-height: 70vh;
    }

    .reputation-main-subtitle {
        font-size: 18px;
        color: #FFFFFF;
        max-width: 900px;
        margin: 0 auto 60px;
        line-height: 1.6;
        text-align: center;
        font-family: 'Poppins';
        font-weight: normal;
    }

    .reputation-main-subtitle-white {
        font-size: 18px;
        /*color: #FFFFFF;*/
        max-width: 900px;
        margin: 0 auto 60px;
        line-height: 1.6;
        text-align: center;
        font-family: 'Poppins';
        font-weight: normal;
    }

    .reputation-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .reputation-card {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        transition: all 0.3s ease;
    }

    .reputation-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: #d1d5db;
    }

    .reputation-card-header {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .reputation-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: linear-gradient(135deg, #eff6ff, #dbeafe);
    }

    .reputation-card-icon.orange {
        background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    }

    .reputation-card-icon.red {
        background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    }

    .reputation-card-icon.yellow {
        background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
    }

    .reputation-card-icon.blue {
        background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    }

    .reputation-card-title {
        font-size: 20px;
        font-weight: 600;
        color: #1a1a1a;
        /*margin-bottom: 12px;*/
        line-height: normal;
    }

    .reputation-card-description {
        font-size: 16px;
        color: #6b7280;
        line-height: 1.6;
        margin: 0;
        font-family: 'Poppins';
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .reputation-cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 640px) {
        .reputation {
            padding: 60px 16px;
        }

        .reputation-white {
            padding: 60px 16px;
            background-color: transparent;
        }

        .reputation-main-title {
            font-size: 28px;
        }

        .reputation-main-subtitle {
            font-size: 16px;
            margin-bottom: 40px;
        }

        .reputation-main-subtitle-white {
            font-size: 16px;
            margin-bottom: 40px;
        }

        .reputation-cards {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .reputation-card {
            padding: 20px;
        }
    }


    #block-993-v2 {
        display: none
    }

    .spanbr {
        display: block
    }

    /* Breadcrumbs */
    .breadcrumbs {
        display: flex;
        justify-content: start;
        padding-bottom: 30px;
        background-color: transparent;
        /*    border-bottom: 1px solid #eee;*/
    }

    .breadcrumbs-container {
        width: 100%;
        max-width: 1146px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 14px;
        color: #0B0F20D6;
    }

    .breadcrumbs a {
        color: #5D7CFF;
        text-decoration: none;
    }

    .breadcrumbs a:hover {
        text-decoration: underline;
    }

    .breadcrumbs .separator {
        margin: 0 5px;
        color: #999;
    }

    .breadcrumbs .current {
        color: #0B0F20;
    }

    /* Header */
    

    header {
        display: flex;
        justify-content: center;
        position: static;
        z-index: 10000;
        width: 100%;
        top: 0;
        transition: top 0.3s ease;
    }
    

    header {
        display: flex;
        justify-content: center;
        position: fixed;
        z-index: 10000;
        width: 100%;
        top: 0;
        transition: top 0.3s ease;
    }
    


    .logo img {
        width: 171px;
    }




    .header-hidden {
        top: -100px;
    }

    .person-img {
        border-radius: 50%;
        width: 208px;
        height: 208px;
    }

    .person-img-alt {
        border-radius: 50%;
        width: 200px;
        height: 200px;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1420px;
        height: 87px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        padding: 0px 20px 0px 20px;
        background-color: #fff;
        position: relative;
        border-radius: 0px 0px 6px 6px;
    }

    .header-content {
        display: flex;
        align-items: center;
        gap: 20px;
        position: relative;
    }

    nav {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-link {
        position: relative;
        display: flex;
        align-items: center;
        height: 37px;
        padding: 5px 20px;
        gap: 5px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        border: none;
        background-color: transparent;
        text-wrap: nowrap;
        cursor: pointer;
        border-radius: 6px;
    }

    .nav-link:hover {
        background-color: #f0f0f0;
    }


    .nav-link .arrow {
        transition: transform 0.3s ease;
    }

    .nav-link.active .arrow {
        transform: rotate(180deg);
    }

    .nav-link .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        border-radius: 6px;
        box-shadow: 0px 4px 4px 0px #0B0F201A;
        padding: 40px 20px 20px 20px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        gap: 10px;
        z-index: -1;
    }

    .dropdown-more {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .nav-link .dropdown a {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20;
        text-decoration: none;
        width: 100%;
        text-align: start;
    }

    .nav-link .dropdown a:hover {
        text-decoration: underline;
    }

    .nav-link:hover .dropdown {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    #dropdown-cards {
        position: absolute;
        top: 95%;
        left: 0px;
        background-color: #fff;
        border-radius: 0px 0px 6px 6px;
        box-shadow: 0px 4px 4px 0px #0B0F201A;
        padding: 30px 20px 20px 20px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        gap: 10px;
        z-index: -3;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        max-width: 1420px;
    }

    .dropdown-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        max-width: 1420px;
    }

    .dropdown-add {
        width: 100%;
        height: 67px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        border-radius: 6px;
        text-decoration: none;
    }

    .dropdown-add:hover {
        background-color: #F9FAFF;
    }

    .dropdown-card {
        width: 100%;
        max-width: 446.67px;
        height: 138px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 5px;
        background-color: #fff;
        transition: .3s ease;
        border-radius: 6px;
    }

    .dropdown-other {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown-card:hover {
        background-color: #F9FAFF;
    }

    .dropdown-card {
        text-decoration: none;
    }

    .dropdown-card span {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .dropdown-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .nav-item {
        position: relative;
        margin-bottom: 10px;
    }

    .nav-item .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        border: 1px solid #ccc;
        padding: 10px;
        z-index: 1000;
    }

    .nav-item:hover .dropdown-content {
        display: block;
    }

    .nav-link {
        height: 37px;
        padding: 5px 20px 5px 20px;
        gap: 5px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        border: none;
        background-color: transparent;
        text-decoration: none;
    }

    .header-block {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .phones {
        display: flex;
        gap: 7px
    }

    .phones-icon {
        display: flex;
        align-items: center
    }

    .header-block p:first-child {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-align: center;
    }

    .header-block p:last-child {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        color: #0B0F20D6;
        text-align: center;
    }

    .header-block p:last-child a {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        color: #0B0F20D6;
        text-align: center;
    }

    .header-block a {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .3s ease;
    }

    .sing {
        text-decoration: none;
        transition: .3s ease;
    }

    .sing:hover {
        text-decoration: underline;
    }

    .nav-free {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20;
        width: 220px;
        height: 47px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #0B0F20D6;
        border-radius: 100px;
        background-color: transparent;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }

    .nav-free:hover {
        background-color: #CFD9FF;
        text-decoration: none;
    }

    .call {
        display: none;
        border: none;
        background-color: transparent;
    }

    .burger {
        display: none;
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    .header-mobile {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background-color: white;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        transform: translateY(-100%);
        opacity: 0;
        z-index: -2;
        pointer-events: none;
        padding: 100px 20px 20px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .header-mobile.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    body.no-scroll {
        overflow: hidden;
    }

    .mobile-block {
        border-bottom: 1px solid #0B0F2038;
    }

    .mobile-block button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: none;
        background-color: transparent;
    }

    .mobile-block button span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20D6;
    }

    .mobile-cards {
        display: flex;
        flex-direction: column;
        height: 0;
        overflow: hidden;
        transition: height 0.5s ease;
        gap: 10px;
    }

    .mobile-card {
        display: flex;
        align-items: center;
        text-decoration: none;
        justify-content: space-between;
        height: auto;
        padding: 10px 0px 10px 0px;
        gap: 10px;
    }

    .mobile-card svg {
        width: 36px;
        min-width: 36px;
        height: 36px;
        max-height: 36px;
    }

    .mobile-card-block {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-card-block span {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        max-width: 640px;
    }

    .mobile-card-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20;
        width: 100%;
        max-width: 640px;
    }

    .mobile-cards.open {
        height: auto;
    }

    .mobile-arrow {
        transition: transform 0.5s ease;
        cursor: pointer;
    }

    .rotate {
        transform: rotate(180deg);
    }

    .mobile-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        border-bottom: 1px solid #0B0F2038;
    }

    .mobile-title {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20D6;
        text-decoration: none;
    }

    .mobile-links a {
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 56px;
    }

    .mobile-links a span {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .mobile-free {
        width: 100%;
        height: 44px;
        min-height: 44px;
        background-color: #5D7CFF;
        border-radius: 100px;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
        border: none;
        cursor: pointer;
        transition: .3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        margin-bottom: 100px;
    }

    .mobile-free:hover {
        background-color: #244EFF;
    }

    .message {
        position: fixed;
        text-decoration: none;
        right: 40px;
        bottom: 40px;
        width: 193px;
        height: 47px;
        border-radius: 100px;
        background-color: #4DE060;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 30px 0px 30px;
        cursor: pointer;
        opacity: 1;
        transition: .3s ease;
    }

    .message.hidden {
        opacity: 0;

    }

    .message span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
    }

    /* Main */
    .index {
        padding: 150px 0px 0px 20px;
    }

    main {
        display: flex;
        justify-content: center;
        padding: 200px 0px 0px 20px;
        box-sizing: border-box;
    }

    .main-padding {
        padding: 0px;
    }

    .main-container {
        width: 100%;
        max-width: 1380px;
        position: relative;
        z-index: 5;
    }

    .main-decoration {
        position: absolute;
        top: 0;
        right: 0;
        z-index: -2;
        width: 900px;
    }

    .main-content {
        width: 100%;
        max-width: 1380px;
        display: flex;
        justify-content: space-between;
    }

    h1 {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 60px;
        line-height: 78px;
        color: #0B0F20;
        z-index: 4;
    }

    .main-left {
        width: 100%;
        max-width: 580px;
        position: relative;
        top: 90px;
        margin-bottom: 20px;
    }

    .main-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        max-width: 550px;
        margin: 10px 0px 20px 0px;
    }

    .main-buttons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .main-register {
        width: 100%;
        max-width: 280px;
        height: 47px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #5D7CFF !important;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff !important;
        border: none !important;
        transition: .3s ease;
        cursor: pointer;
        text-decoration: none;
    }

    .main-register:disabled {
        background-color: #ccc !important;
        cursor: not-allowed;
        opacity: 0.6;
    }

    .main-register:hover {
        background-color: #244EFF !important;
    }

    .main-speak {
        width: 100%;
        max-width: 280px;
        height: 47px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #0B0F20D6;
        background-color: #fff;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }

    .main-speak:hover {
        background-color: #CFD9FF;
    }

    .main-rating {
        display: flex;
        align-items: center;
        gap: 17.5px;
        margin-top: 180px;
    }

    .main-company {
        margin: 150px 0px 160px 0px;
        padding: 0px 20px 0px 0px;
    }

    h2 {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 46px;
        line-height: 59.8px;
    }

    .main-company h2 {
        color: #0B0F20;
        text-align: center;
        margin-bottom: 40px;
    }

    .main-block {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }

    .main-block img {
        width: 230px;
    }

    .main-right {
        position: relative;
    }

    .main-slide-people {
        margin-bottom: 0px;
        position: relative;
        left: 131px;
    }

    .main-slider-container {
        width: 100%;
        max-width: 680px;
        position: relative;
        overflow: hidden;
    }

    .main-slider-slides {
        display: flex;
        align-items: center;
        transition: transform 0.5s ease-in-out;
        position: relative;
        gap: 50px;
    }

    .main-slider-slide {
        flex: 0 0 680px;
        height: auto;
        opacity: 0.6;
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        background-color: transparent;
        position: relative;
        transform: scale(0.94);
    }

    .main-slide-content {
        background-color: #fff;
        border-radius: 6px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
    }

    .main-slider-slide.active {
        opacity: 1;
        transform: scale(1);
    }

    .main-slider-buttons {
        display: flex;
        align-items: center;
        gap: 10px;
        position: absolute;
        left: 700px;
        top: 407px;
    }

    .main-slider-prev-button,
    .main-slider-next-button {
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    .main-slider-text p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .main-slider-add {
        display: flex;
        flex-direction: column;
        align-items: end;
    }

    .main-slider-add span {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 22px;
        line-height: 33px;
        color: #0B0F20;
    }

    .main-slider-add p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .main-slider-decoration {
        position: absolute;
        left: 0px;
        bottom: 270px;
    }

    .txt-ucfirst {
        text-transform: capitalize;
    }

    .error {
        color: red;
    }

    .error_el {
        border: 1px solid red !important;
    }

    .error-text {
        display: none;
        margin-left: 15px;
        font-weight: bold;
        color: red;
        padding-top: 3px;
        font-family: 'Poppins';
        font-size: 12px;
    }


    .this-statement {
        text-decoration: underline;
        cursor: pointer;
        top: 0 !important;
    }

    #statement-full {
        font-size: 11px;
        display: none;
        width: 90%;
        max-width: 640px;
    }

    #statement-about {
        width: 100%
    }

    .hidden {
        display: none
    }

    .bg-transparent {
        background-color: transparent !important;
    }

    .pb-0 {
        padding-bottom: 0px !important;
    }


    .mb-0 {
        margin-bottom: 0px !important;
    }

    .mb-07 {
        margin-bottom: 7px !important;
    }

    .mb-10 {
        margin-bottom: 10px !important;
    }

    .mb-20 {
        margin-bottom: 20px !important;
    }

    .mb-30 {
        margin-bottom: 30px !important;
    }

    .mb-40 {
        margin-bottom: 40px !important;
    }

    .mb-60 {
        margin-bottom: 60px !important;
    }

    .mb-100 {
        margin-bottom: 100px !important;
    }

    .mt-30 {
        margin-top: 30px !important;
    }

    .ml-20 {
        margin-left: 20px !important;
    }

    .ml-40 {
        margin-left: 40px !important;
    }

    .mld-40 {
        margin-left: 40px !important;
    }


    .m-0 {
        margin: 0 !important;
    }

    .p-0 {
        padding: 0 !important;
    }

    .m-auto {
        margin: auto !important;
    }

    .w-100 {
        width: 100%;
    }

    /* Section */

    .add-radius {
        border-radius: 6px 6px 0px 0px;
    }

    .faq-section-wrapper {
        display: flex;
        justify-content: center;
        padding: 60px 20px 0px;
        background-color: #F9FAFF;
    }

    .faq-section-container {
        width: 100%;
        max-width: 1146px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .faq-details {
        border: 1px solid #0B0F2038;
        border-radius: 6px;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        transition: all 0.3s ease;
    }

    .faq-details:hover {
        border-color: #0B0F20D6;
    }

    .faq-details[open] {
        border-color: #5D7CFF;
    }

    .faq-summary {
        cursor: pointer;
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        color: #0B0F20;
        outline: none;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
    }

    .faq-summary::after {
        content: '+';
        font-size: 28px;
        color: #5D7CFF;
        transition: transform 0.3s ease;
    }

    .faq-details[open] .faq-summary::after {
        content: '−';
        transform: rotate(180deg);
    }

    .faq-answer {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #0B0F2014;
    }

    /* Success */
    .success {
        display: flex;
        justify-content: center;
    }

    .success-container {
        position: relative;
        width: 100%;
        max-width: 1920px;
        background-color: #FFAC7E;
        height: 518px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 39px;
        padding: 0px 20px 0px 20px;
        border-radius: 6px 6px 0px 0px;
        margin: 0 auto;
        overflow: hidden;
    }

    .success-radius {
        border-radius: 6px 6px 6px 6px;
    }

    .success-radius2 {
        border-radius: 0px 0px 6px 6px;
    }

    .add-radius {
        border-radius: 6px 6px 6px 6px;
    }

    .success-decoration1 {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
    }

    .success-decoration2 {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
    }

    .success-block-left {
        width: 100%;
        max-width: 390px;
        height: auto;
        /*text-align: right;*/
        text-align: center;
        z-index: 2;
    }

    .success-block-left span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 64px;
        /*font-size: 180px;*/
        line-height: 83.2px;
        /*line-height: 140px;*/
        color: #0B0F20;
    }

    .success-block-left p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .success-block-left2 p {
        margin: -10px 0px 10px 0px;
        text-transform: uppercase;
    }

    .success-block-center {
        width: 100%;
        max-width: 522px;
        height: 172px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 2;
        text-align: center;
    }

    .success-block-center span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 180px;
        /*font-size: 64px;*/
        color: #0B0F20;
        line-height: 140px;
        /*line-height: 83.2px;*/
        margin-bottom: -10px;
    }

    .success-block-center p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-transform: uppercase;
    }

    .success-block-right {
        width: 100%;
        max-width: 390px;
        height: auto;
        z-index: 2;
        text-align: center;
    }

    .success-block-right span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 64px;
        /*font-size: 180px;*/
        line-height: 83.2px;
        /*line-height: 140px;*/
        color: #0B0F20;
    }

    .success-block-right p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-align: center;
    }

    .success-block-right2 p {
        margin: -10px 0px 10px 0px;
        text-transform: uppercase;
    }

    /* Reputation */
    .reputation {
        display: flex;
        justify-content: center;
    }

    .reputation h2 {
        color: #fff;
        width: 100%;
        max-width: 1380px;
        text-align: center;
        margin-bottom: 40px;
    }

    .reputation-container {
        width: 100%;
        max-width: 1920px;
        background-color: #323544;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 190px 20px 200px 20px;
        border-radius: 0px 0px 6px 6px;
    }

    .calculator-container {
        width: 100%;
        max-width: 1920px;
        background-color: #323544;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 100px 20px 200px 20px;
        border-radius: 0;
    }

    .calculator-main-container {
        padding-bottom: 80px;
    }

    .reputation-block-smalls {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .reputation-block-small {
        padding: 20px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        border-radius: 6px;
        width: 100%;
        max-width: 680px;
        height: auto;
        display: flex;
        flex-direction: column;
        height: 100%;
        gap: 5px;
    }

    .reputation-block-small svg {
        margin-bottom: 5px;
    }

    .reputation-title {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .reputation-title span {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        text-transform: uppercase;
    }

    .reputation-title p {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }

    .reputation-subtitle {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .reputation-block-big {
        padding: 20px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        border-radius: 6px;
        width: 100%;
        max-width: 1380px;
        height: auto;
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 5px;
    }

    .reputation-block-big svg {
        margin-bottom: 5px;
    }

    .reputation-register {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin-top: 10px;
        width: 100%;
        max-width: 221px;
        border: none;
        cursor: pointer;
        text-decoration: underline;
    }

    .reputation-block-big .reputation-subtitle {
        width: 100%;
        max-width: 640px;
    }

    .reputation-start {
        width: 100%;
        max-width: 265px;
        height: 47px;
        border-radius: 100px;
        /*background-color: #fff;*/
        background-color: #5D7CFF;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 40px;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }

    .reputation-start:hover {
        /*background-color: #CFD9FF;*/
        background-color: #244EFF !important;
        /*color: #A0A0A0;*/
    }

    .reputation-start.disabled {
        background-color: #E0E0E0;
        /* Light gray background */
        color: #A0A0A0;
        /* Gray text color */
        cursor: not-allowed;
        /* Change cursor to indicate disabled state */
        opacity: 0.7;
        /* Reduce opacity for a "disabled" effect */
        pointer-events: none;
        /* Prevent any click events */
    }

    .reputation-decoration {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    /* Process */
    .process {
        display: flex;
        justify-content: center;
        margin: 100px 0px 160px 0px;
    }

    .process h2 {
        color: #0B0F20;
        text-align: center;
        margin-bottom: 60px;
    }

    .process-container {
        width: 100%;
        max-width: 1380px;
    }

    .process-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1380px;
    }

    .process-card img {
        width: 250px;
    }

    .process-card1 {
        position: relative;
        left: 10px;
    }

    .process-card3 {
        position: relative;
        left: 10px;
    }

    .process-card5 {
        position: relative;
        left: 10px;
    }

    .process-card7 {
        position: relative;
        left: 10px;
    }

    .process-card-left {
        padding: 0px 115px 0px 300px;
    }

    .process-card-right {
        padding: 0px 300px 0px 115px;
    }

    .process-card-information {
        width: 100%;
        max-width: 445px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .process-card-information span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }

    .process-card-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .wide-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .process-card-block {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 27.5px;
        position: relative;
    }

    .process-card-line {
        width: 2px;
        height: 100px;
        background-color: #0B0F200F;
    }

    .process-card-line-last {
        height: 218px;
    }

    .process-start {
        width: 100%;
        max-width: 265px;
        height: 47px;
        padding: 0px 30px 0px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #5D7CFF;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border-radius: 100px;
        margin: 60px auto 0 auto;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }

    .process-start:hover {
        background-color: #244EFF;
    }

    .oai-start {
        width: 100%;
        max-width: 322px;
        height: 47px;
        padding: 0px 30px 0px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #5D7CFF;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border-radius: 100px;
        margin: 60px auto 0 auto;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }

    .oai-start:hover {
        background-color: #244EFF;
    }

    .eoai-container {
        padding: 30px 0 0 0;
        background: #EFF0F1;
    }

    .eoai-start {
        width: 100%;
        max-width: 356px;
        height: 47px;
        padding: 0px 30px 0px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #5D7CFF;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border-radius: 100px;
        margin: 60px auto 0 auto;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }

    .eoai-start:hover {
        background-color: #244EFF;
    }

    .process-content-mobile {
        display: none;
        flex-direction: column;
        gap: 20px;
    }

    .process-card-mobile {
        background-color: #fff;
        border-radius: 6px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .process-card-mobile-information {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
        max-width: 660px;
    }

    .process-card-mobile-information svg {
        margin-bottom: 5px;
    }

    .process-card-mobile-information span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }

    .process-card-mobile-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .process-card-mobile img {
        width: 200px;
        height: 200px;
    }

    /* Case */
    .case {
        display: flex;
        justify-content: center;
    }

    .office-case {
        margin-bottom: 160px;
    }

    .case h2 {
        color: #fff;
    }

    .case-container {
        width: 100%;
        max-width: 1920px;
        background-color: #323544;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 150px 0px 130px 270px;
        overflow: hidden;
        border-radius: 6px 6px 0px 0px;
    }

    .case-information {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1380px;
        margin: 0 auto 40px 0;
        padding: 0px 20px 0px 0px;
    }

    .slide-left {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 500px;
    }

    .slide-brand1 {
        width: 400px;
    }

    .slide-brand2 {
        width: 360px;
    }

    .slide-brand3 {
        width: 221px;
    }

    .slide-left p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .slide-right {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .slide-card {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 530px;
    }

    .slide-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }

    .slide-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .slide-decoration {
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .slider-container {
        width: 100%;
        max-width: 1650px;
        position: relative;
        overflow: hidden;
    }

    .slides {
        display: flex;
        align-items: center;
        height: 500px;
        transition: transform 0.5s ease-in-out;
        position: relative;
    }

    .slide {
        flex: 0 0 1031px;
        height: 500px;
        margin-right: 0px;
        opacity: 0.4;
        transform: scale(.9);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        background-color: #fff;
        padding: 40px 40px 0px 40px;
        border-radius: 6px;
        position: relative;
        z-index: 1;
    }

    .slide.active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

    .slide-container {
        display: flex;
        justify-content: space-between;
    }

    .slider-content {
        height: 100%;
        border: 1px solid #FFFFFF;
    }

    .slider-buttons {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .slider-button {
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    .indicators {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 60px 0px 0px 0px;
        position: relative;
        left: -130px;
    }

    .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        cursor: pointer;
        background-color: #6A6D77;
    }

    .indicator.active {
        background-color: #CACBCE;
    }


    /* Choose */
    .choose {
        display: flex;
        justify-content: center;
    }

    .choose h2 {
        color: #0B0F20;
        margin-bottom: 40px;
        text-align: center;
    }

    .choose-container {
        width: 100%;
        max-width: 1920px;
        background-color: #CFD9FF;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 150px 20px 160px 20px;
        overflow: hidden;
        border-radius: 0px 0px 6px 6px;
    }

    .choose-play2 {
        display: none;
    }

    .choose-card-smalls {
        display: flex;
        gap: 20px;
    }

    .choose-card-small {
        display: flex;
        flex-direction: column;
        gap: 5px;
        border-radius: 6px;
        padding: 20px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        width: 100%;
        max-width: 680px;
        background-color: #fff;
    }


    .choose-card-information {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .choose-card-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        text-transform: uppercase;
    }

    .choose-card-block {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .choose-card-block span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }

    .choose-card-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .choose-schedule {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin: 65px 0px 0px 0px;
        border: none;
        background-color: transparent;
        cursor: pointer;
        text-decoration: underline;
    }

    .choose-card-big {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        border-radius: 6px;
        padding: 20px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        width: 100%;
        max-width: 1380px;
        background-color: #fff;
        height: auto;
    }

    .choose-card-left {
        width: 100%;
        max-width: 640px;
    }

    .choose-card-right {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .choose-card-right img {
        width: 660px;
        height: 370px;
    }

    .choose-play {
        position: absolute;
    }

    .choose-play2 {
        display: none;
    }

    /* Reviews */
    .reviews {
        display: flex;
        justify-content: center;
        margin: 160px 0px 160px 0px;
        padding: 0px 20px 0px 20px;
    }

    .reviews-talk {
        margin: 160px 0px 0px 0px;
    }

    .reviews-container {
        width: 100%;
        max-width: 908px;
    }

    /* Serve */
    .serve {
        display: flex;
        justify-content: center;
        margin: 0px 20px 160px 20px;
    }

    .serve h2 {
        text-align: center;
        margin-bottom: 20px;
        color: #0B0F20;
    }

    .serve-container {
        width: 100%;
        max-width: 1380px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .serve-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .serve-card {
        width: 446.67px;
        height: 318px;
        padding: 20px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        display: flex;
        flex-direction: column;
        border-radius: 6px;
        gap: 5px;
    }

    .serve-card-white {
        background-color: #fff;
    }

    .serve-card-blue {
        background-color: #CFD9FF;
    }

    .serve-card-orange {
        background-color: #FFDAC5;
    }

    .serve-card-information {
        display: flex;
        flex-direction: column;
    }

    .serve-card-information span {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        margin: 10px 0px 5px 0px;
        text-transform: uppercase;
    }

    .serve-card-information p {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }

    .serve-card-subtitle {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .serve-start {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 265px;
        height: 47px;
        background-color: #fff;
        border: 1px solid #0B0F20D6;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        border-radius: 100px;
        margin-top: 60px;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }

    .serve-start:hover {
        background-color: #CFD9FF;
    }

    /* Key */
    .key {
        display: flex;
        justify-content: center;
        margin-bottom: 133px;
        padding: 0px 20px 0px 20px;
    }

    .key h2 {
        text-align: center;
        margin-bottom: 60px;
        color: #0B0F20;
    }

    .key-container {
        width: 100%;
        max-width: 1380px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .key-cards {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .key-card {
        width: 100%;
        max-width: 680px;
        padding: 20px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        background-color: #323544;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .key-card svg {
        margin-bottom: 5px;
    }

    .key-card-container {
        display: flex;
        gap: 20px;
    }

    .key-card-big {
        width: 100%;
        max-width: 1380px;
        padding: 20px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        background-color: #323544;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
    }

    .key-card-decoration {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .key-card-information {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
        max-width: 620px;
    }

    .key-card-information span {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFF9C;
        text-transform: uppercase;
    }

    .key-card-information p {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #fff;
    }

    .key-card-subtitle {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
        width: 100%;
        max-width: 640px;
    }

    .key-start {
        width: 100%;
        max-width: 265px;
        height: 47px;
        border-radius: 100px;
        background-color: #5D7CFF;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 70px;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }

    .key-start:hover {
        background-color: #244EFF;
    }

    /* Blog */
    .blog {
        display: flex;
        justify-content: center;
        margin-bottom: 160px;
        padding: 0px 20px 0px 20px;
        width: 100%;
        height: auto;
    }

    .blog img {
        width: 100%;
        height: auto;
    }

    .blog-container {
        width: 100%;
        max-width: 908px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Consultation */
    .consultation {
        display: flex;
        justify-content: center;
        margin-bottom: 80px;
        padding: 0px 20px 0px 20px;
    }

    .consultation-container {
        width: 100%;
        max-width: 1700px;
        display: flex;
        flex-direction: column;
        align-items: start;
        background-color: #5D7CFF;
        height: auto;
        border-radius: 6px;
        padding: 150px 160px 150px 160px;
        position: relative;
    }

    .consultation-content {
        width: 100%;
        max-width: 890px;
        z-index: 2;
    }

    .consultation-container h2 {
        width: 100%;
        max-width: 890PX;
        color: #FFF;
    }

    .consultation-container p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
        margin: 10px 0px 30px 0px;
        width: 100%;
        max-width: 640px;
        z-index: 2;
    }

    .consultation-get {
        width: 100%;
        max-width: 270px;
        height: 47px;
        border: 1px solid #0B0F20D6;
        background-color: #fff;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s ease;
        cursor: pointer;
        text-decoration: none;
    }

    .consultation-get:hover {
        background-color: #CFD9FF;
    }

    .action-btn {
        /*width: 270px;*/
        /*max-width: 270px;*/
        padding: 0 10px 0 10px;
        height: 47px;
        border: 1px solid #0B0F20D6;
        background-color: #fff;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        border-radius: 100px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: .3s ease;
        cursor: pointer;
        text-decoration: none;
    }

    .action-btn:hover {
        background-color: #CFD9FF;
    }

    .consultation-decoration1 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .consultation-decoration2 {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .consultation-buttons-container {
        display: flex;
        gap: 10px;
    }

    /* Footer */

    footer {
        display: flex;
        justify-content: center;
        background-color: #323544;
        position: relative;
        margin-top: auto;
    }

    .footer-container {
        width: 100%;
        max-width: 1920px;
        background-color: #323544;
        padding: 160px 20px 30px 20px;
        position: relative;
    }

    .footer-width {
        width: 100%;
        max-width: 1380px;
        margin: 0 auto;
        z-index: 2;
        position: relative;
    }

    .footer-contant {
        display: flex;
        justify-content: space-between;
        height: auto;
        margin-bottom: 97px;
        gap: 20px;
    }

    .footer-decoration {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
    }

    .footer-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
    }

    .footer-information img {
        width: 450px;
    }

    .footer-texts {
        margin: 30px 0px 60px 0px;
    }

    .footer-texts-hidden2 {
        display: none;
    }

    .footer-text1 {
        width: 100%;
        max-width: 563px;
        margin-bottom: 60px;
    }

    .footer-text2 {
        width: 100%;
        max-width: 330px;
        margin-bottom: 20px;
    }

    .footer-text3 {
        width: 100%;
        max-width: 330px;
    }

    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-contacts span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #FFFFFFD6;
    }

    .footer-socials {
        display: flex;
        align-items: center;
        gap: 20px;
    }


    .footer-links {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 60px;
        width: 100%;
        max-width: 716px;
        max-height: 793px;
    }

    .footer-links-left {
        width: 100%;
        max-width: 240px;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .footer-links-right {
        width: 100%;
        max-width: 416px;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .footer-link {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-link span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #FFFFFFD6;
    }

    .footer-link a {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
        transition: .3s ease;
        text-decoration: none;
    }

    .footer-link a:hover {
        text-decoration: underline;
    }

    .footer-link240 {
        width: 100%;
        max-width: 240px;
    }

    .footer-link416 {
        width: 100%;
        max-width: 416px;
    }

    .footer-link300 {
        width: 100%;
        max-width: 300px;
    }

    .footer-link296 {
        width: 100%;
        max-width: 300px;
    }

    .footer-down {
        display: flex;
        justify-content: space-between;
    }

    .footer-down p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFF9C;
    }

    .footer-down a {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFF9C;
        text-decoration: none;
    }

    .footer-down a:hover {
        text-decoration: underline;
    }

    /* Talk */
    .main-talk-left {
        max-width: 870px;
        top: 0px;
    }

    .main-talk-information p {
        margin: 0px 0px 10px 0px;
    }

    .main-talk-information span {
        font-family: 'Poppins';
        font-weight: 700;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        ;
    }

    .main-talk-info {
        text-transform: uppercase;
    }

    .main-talk-buttons {
        margin: 20px 0px 10px 0px;
        width: 100%;
        max-width: 580px;
    }


    .case-talk-container {
        padding: 150px 0px 130px 270px;
        background-color: transparent;
    }

    .case-talk-container h2 {
        color: #0B0F20;
    }

    .main-add-text {
        color: #0B0F209C;
    }

    .consultation-talk {
        margin: 0px 0px 160px 0px;
    }

    .main-company-cards {
        width: 100%;
        max-width: 1380px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin: 20px 0px 150px 0px;
    }

    .main-company-card {
        width: 100%;
        max-width: 447px;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        display: flex;
        flex-direction: column;
        gap: 5px;
        border-radius: 6px;
    }

    .main-company-card svg {
        margin-bottom: 5px;
    }

    .main-company-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20D6;
    }

    .main-company-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .main-talk-company {
        margin: 150px 0px 160px 0px;
    }

    /* Faq */
    .faq {
        display: flex;
        justify-content: center;
        margin: 160px 0px 160px 0px;
    }

    .faq-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 160px;
    }

    .main-faq-register {
        max-width: 340px;
        margin-top: 20px;
    }

    .faq-search {
        width: 100%;
        max-width: 680px;
        position: relative;
        height: 47px;
        padding: 0px 20px 0px 20px;
    }

    .faq-search input {
        width: 100%;
        max-width: 680px;
        height: 47px;
        border-radius: 6px;
        padding: 10px 60px 10px 20px;
        border: 1px solid #0B0F2038;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .3s ease;
    }

    .faq-search input::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }

    .faq-search input:hover {
        border: 1px solid #0B0F20D6;
    }

    .faq-search input:focus {
        outline: none;
    }

    .faq-search button {
        position: absolute;
        right: 40px;
        top: 27%;
        border: none;
        background-color: transparent;
    }

    .faq-cards {
        width: 100%;
        max-width: 1380px;
    }

    .faq-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .faq-card {
        width: 100%;
        max-width: 447px;
        height: auto;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px;
    }

    .video-container {
        width: 100%;
    }

    .video-container iframe {
        width: 100%;
        aspect-ratio: 16/9;
        border: 0;
    }

    .thank-you-pop img {
        width: 76px;
        height: auto;
        margin: 0 auto;
        display: block;
        margin-bottom: 25px;
    }

    .results-card {
        width: 100%;
        /*max-width: 447px;*/
        height: auto;
        box-shadow: 14px 14px 14px 10px #aaa;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px;
    }

    .faq-card-last {
        background-color: transparent;
        box-shadow: none;
        margin-bottom: -40px;
    }

    .faq-card-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .faq-card-container span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20D6;
    }

    .faq-card-container a {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-decoration: none;
        transition: .2s ease;
    }

    .faq-card-container a:hover {
        text-decoration: underline;
    }

    .faq-card-block .see-all {
        border: none;
        background-color: transparent;
        cursor: pointer;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin-top: 20px;
        text-decoration: none;
        transition: .3s ease;
    }


    .faq-card-block .see-all:hover {
        text-decoration: underline;
    }

    .board {
        display: flex;
        justify-content: center;
        margin-bottom: 160px;
        padding: 0px 20px 0px 20px;
    }

    .board-container {
        width: 100%;
        max-width: 1700px;
        height: auto;
        padding: 150px 0px 150px 160px;
        background-color: #FFAC7E;
        border-radius: 6px;
        position: relative;
        overflow: hidden;
    }

    .board-decoration1 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .board-decoration2 {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .board-container p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        z-index: 2;
        position: relative;
    }

    .board-container span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 46px;
        line-height: 59.8px;
        color: #0B0F20;
        z-index: 2;
    }

    .board-information {
        width: 100%;
        max-width: 630px;
        z-index: 2;
        gap: 10px;
        display: flex;
        flex-direction: column;
    }

    .board-block {
        display: flex;
        width: 100%;
        max-width: 720px;
        gap: 20px;
        margin: 20px 0px 20px 0px;
        z-index: 2;
        position: relative;
    }

    .board-block input {
        border: 1px solid #0B0F2038;
        background-color: #fff;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        padding: 10px 20px 10px 20px;
        border-radius: 6px;
        height: 47px;
        transition: .3s ease;
    }

    .board-block input:hover {
        border: 1px solid #0B0F20D6;
    }

    .board-block input:focus {
        outline: none;
    }

    .board-block input::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }

    .board-name {
        width: 100%;
        max-width: 300px;
    }

    .board-email {
        width: 100%;
        max-width: 400px;
    }

    .board-container button {
        width: 100%;
        max-width: 150px;
        border: 1px solid #0B0F20D6;
        background-color: #fff;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        height: 47px;
        cursor: pointer;
        transition: .3s ease;
        z-index: 2;
    }

    .board-container button:hover {
        background-color: #CFD9FF;
    }

    .option {
        display: flex;
        justify-content: center;
        margin: 160px 0px 160px 0px;
    }

    .option h2 {
        color: #0B0F20;
        text-align: center;
        margin-bottom: 60px;
    }

    .option-container {
        width: 100%;
        max-width: 1460px;
    }

    .option-cards {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .option-card {
        width: 100%;
        max-width: 1460px;
        padding: 40px;
        border-radius: 6px;
        height: auto;
    }

    .option-card-continer {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .option-card-information {
        width: 100%;
        max-width: 713px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .main-faq-information p {
        margin: 10px 0px 0px 0px;
    }

    .option-card-title {
        color: #0B0F209C;
        text-transform: uppercase;
    }

    .option-card-information span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }


    .option-card-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .option-card-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .option-card-accepts {
        display: flex;
        align-items: start;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        max-width: 720px;
    }

    .option-card-accepts.more {
        height: 138px;
    }

    .option-card-accepts-container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        height: 103px;
        gap: 10px;
        width: 100%;
        max-width: 795px;
    }

    .option-card-accepts3 {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .option-card-accepts-block {
        display: flex;
        gap: 10px;
    }

    .option-card-accepts-last {
        margin-top: 10px;
    }

    .option-card-accepts-block svg {
        min-width: 26px;
    }

    .option-card-accepts-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .option-card-pay {
        width: 450px;
        min-width: 450px;
        height: 295px;
        border-radius: 6px;
        padding: 20px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 6px;
    }

    .option-card-pay h2 {
        color: #0B0F20;
    }

    .option-card-pay-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .option-card-pay-block {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .option-card-pay-block span {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        /*color: #0B0F2038;*/
        color: #666;
    }

    .option-card-pay-block p {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 46px;
        line-height: 59.8px;
        color: #0B0F20;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .option-card-pay-container a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 47px;
        border: 1px solid #0B0F20D6;
        border-radius: 100px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        background-color: #fff;
        transition: .3s ease;
        cursor: pointer;
        text-decoration: none;
    }

    .option-card-pay-container a:hover {
        background-color: #CFD9FF;
    }

    .option-card-dark {
        background-color: #323544;
    }

    .option-card-dark .option-card-information span {
        color: #FFFFFF;
    }


    .option-card-dark .option-card-title {
        color: #FFFFFF9C;
    }

    .option-card-dark .option-card-information p {
        color: #FFFFFFD6;
    }

    .option-card-dark .option-card-accepts-block p {
        color: #FFFFFFD6;
    }

    .option-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .option-mobile-cards {
        padding: 20px;
        display: none;
        flex-direction: column;
        gap: 20px;
    }

    .option-mobile-cards-blue {
        background-color: #323544;
    }

    .option-mobile-cards-blue .option-card-information p {
        color: #FFFFFFD6;
    }

    .option-mobile-cards-blue .option-card-information span {
        color: #fff;
    }

    .option-mobile-cards-blue .option-card-accepts-block p {
        color: #FFFFFFD6;
    }

    .option-card-block {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .table {
        display: flex;
        justify-content: center;
        padding: 0px 20px 0px 20px;
        margin-bottom: 160px;
    }

    .table-container {
        width: 100%;
        max-width: 1380px;
    }

    .tables {
        width: 100%;
        max-width: 1380px;
        display: flex;
        flex-direction: column;
        align-items: end;
    }

    .table-add {
        width: 100%;
        max-width: 1380px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 47px;
        border: 1px solid #0B0F2038;
        padding: 0px 20px 0px 20px;

    }

    .table-add-tm {
        width: 100%;
        max-width: 1380px;
        display: flex;
        align-items: center;
        justify-content: left;
        height: 47px;
        border: 1px solid #0B0F2038;
        padding: 0px 20px 0px 20px;

    }

    .table-line1 {
        width: 100%;
        max-width: 1380px;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .table-line2 {
        width: 100%;
        max-width: 1380px;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .table-add p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .table-line1 p {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .table-line2 p {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .table-line2 p span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F2038;
    }

    .table-content {
        width: 100%;
        max-width: 1380px;
        display: flex;
        align-items: center;
    }

    .table-content-tm {
        width: 100%;
        max-width: 1380px;
        display: flex;
    }

    .table-title {
        width: 100%;
        max-width: 400px;
    }

    .table-title-tm {
        width: 100%;
        max-width: 70px;
    }

    .table-title-radius {
        border-radius: 0px 0px 6px 0px;
    }

    .table-title.hidden {
        border: none;
    }

    .table-block {
        width: 100%;
        height: 47px;
        padding: 0px 20px 0px 20px;
        display: flex;
        align-items: center;
    }

    .table-block-tm {
        width: 100%;
        height: auto;
        padding: 0px 20px 0px 20px;
        display: flex;
        align-items: center;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .table-block-flag {
        width: 100%;
        height: auto;
        padding: 15px 20px 0px 20px;
        display: flex;
        align-items: start;
    }

    .table-top {
        border-top: 1px solid #0B0F2038;
        border-left: 1px solid #0B0F2038;
    }

    .table-right {
        border-right: 1px solid #0B0F2038;
    }

    .table-block1 {
        border-left: 1px solid #0B0F2038;
    }

    .table-block2 {
        border-left: 1px solid #0B0F2038;
    }

    .table-block3 {
        border-left: 1px solid #0B0F2038;
    }

    .table-block4 {
        border-right: 1px solid #0B0F2038;
    }

    .table-block5 {
        border-left: 1px solid #0B0F2038;
    }

    .table-block6 {
        border-bottom: 1px solid #0B0F2038;
    }

    .table-radius1 {
        border-radius: 6px 0px 0px 0px;
    }

    .table-radius13 {
        border-radius: 6px 6px 0px 0px;
    }

    .table-radius2 {
        border-radius: 0px 6px 0px 0px;
    }

    .table-radius3 {
        border-radius: 6px 0px 0px 0px;
    }

    .table-radius4 {
        border-radius: 0px 0px 0px 6px;
    }

    .table-radius41 {
        border-radius: 6px 0px 0px 6px;
    }

    .table-radius5 {
        border-radius: 0px 0px 6px 0px;
    }

    .table-radius51 {
        border-radius: 0px 6px 6px 0px;
    }

    .table-radius45 {
        border-radius: 0px 0px 6px 6px;
    }

    .table-blue {
        background-color: #CFD9FF;
    }

    .table-gray1 {
        background-color: #0B0F2008;
    }

    .table-information {
        margin-bottom: 60px;
    }

    .table h2 {
        color: #0B0F20;
        text-align: center;
    }

    .table-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        max-width: 640px;
        text-align: center;
        margin: 0 auto;
    }

    .table-justify {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .table-stats {
        width: 100%;
        max-width: 124px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #5D7CFF;
        border-radius: 100px;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
    }

    .start {
        display: flex;
        justify-content: center;
        padding: 0px 20px 0px 20px;
    }

    .start-search-h2 {
        text-align: center;
        color: #0B0F20;
        margin-bottom: 60px;
    }

    .start-container {
        width: 100%;
        max-width: 1700px;
        height: auto;
        border-radius: 6px;
        padding: 142px 160px 141px 160px;
        background-color: #fff;
        position: relative;
        margin: 0 auto;
        overflow: hidden;
    }

    .start-container-gold {
        padding: 142px 160px 141px 0px;
        display: flex;
        justify-content: end;
        margin-top: 60px;
        border-radius: 6px;
        overflow: hidden;
    }

    .start-decoration1 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .start-decoration2 {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .start-information h2 {
        color: #0B0F20;
        z-index: 2;
        position: relative;
    }

    .start-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin: 10px 0px 30px 0px;
        width: 100%;
        max-width: 640px;
        z-index: 2;
        position: relative;
    }

    .start-information a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 260px;
        height: 47px;
        background-color: #5D7CFF;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border: none;
        z-index: 2;
        position: relative;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }

    .start-information .start-button {
        max-width: 200px;
    }

    .start-information a:hover {
        background-color: #244EFF;
    }

    .start-information .blog-start {
        max-width: 414px;
    }

    .should {
        display: flex;
        justify-content: center;
    }

    .should-container {
        display: flex;
        justify-content: center;
        background-color: #323544;
        width: 100%;
        max-width: 1920px;
        border-radius: 6px 6px 0px 0px;
    }

    .should-information {
        width: 100%;
        max-width: 1134px;
        padding: 140px 20px 160px 20px;
        display: flex;
        align-items: end;
        justify-content: space-between;
    }

    .should-left h2 {
        color: #fff;
        width: 100%;
        max-width: 610px;
    }

    .should-left p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
        width: 100%;
        max-width: 470px;
    }

    .should-block span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 64px;
        line-height: 83.2px;
        color: #FF8C4C;
    }

    .should-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
        text-transform: uppercase;
    }

    .should-right {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .case-why-container {
        padding: 150px 0px 130px 270px;
        background-color: #EFF0F1;
        border-radius: 6px;
    }

    .case-add {
        border-radius: 0px 0px 6px 6px;
    }

    .we {
        display: flex;
        justify-content: center;
        margin-top: 160px;
    }

    .we-container {
        width: 100%;
        max-width: 1920px;
        background-color: #323544;
        padding: 140px 20px 160px 20px;
        display: flex;
        justify-content: center;
        gap: 20px;
        border-radius: 6px 6px 0px 0px;
    }

    .we-blocks {
        width: 100%;
        max-width: 1380px;
        height: auto;
        gap: 60px;
        display: flex;
        flex-direction: column;
    }

    .we-content {
        display: flex;
        gap: 20px;
        justify-content: space-between;
    }

    .main-why-information button {
        width: 100%;
        max-width: 280px;
        height: 47px;
        background-color: #5D7CFF;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFF;
        border-radius: 100px;
        border: none;
    }

    .we-block {
        width: 100%;
        max-width: 640px;
    }

    h3 {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 180px;
        line-height: 140px;
        color: #fff;
    }

    .we-block span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 64px;
        line-height: 83.2px;
        color: #FF8C4C;
    }

    .we-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
    }

    .us {
        display: flex;
        justify-content: center;
        margin: 150px 0px 150px;
    }

    .us-container {
        width: 100%;
        max-width: 1380px;
        padding: 0px 20px 0px 20px;
    }

    .us h2 {
        color: #0B0F20;
        margin-bottom: 60px;
        text-align: center;
    }

    .us-cards {
        display: flex;
        gap: 20px;
    }

    .us-card-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .us-card {
        width: 100%;
        max-width: 680px;
        background-color: #fff;
        border-radius: 6px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        height: 205px;
    }

    .us-card svg {
        margin-bottom: 5px;
    }

    .us-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }

    .us-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .story {
        display: flex;
        justify-content: center;
        margin-bottom: 150px;
    }

    .story-container {
        width: 100%;
        max-width: 1146px;
    }

    .story h2 {
        color: #0B0F20;
        margin-bottom: 60px;
        text-align: center;
    }

    .story-cards {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 40px;
    }

    .story-card {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .story-card-block {
        width: 100%;
        max-width: 1146px;
        height: auto;
        aspect-ratio: 1146 / 640;
        background-color: #EFF0F1;
        border-radius: 6px;
    }

    .story-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
        padding: 0px 20px 0px 20px;
    }

    .team {
        display: flex;
        justify-content: center;
        margin-bottom: 60px;
    }

    .team h2 {
        color: #0B0F20;
        margin-bottom: 60px;
        text-align: center;
    }

    .team-container {
        width: 100%;
        max-width: 1160px;
        padding: 0px 20px 0px 20px;
    }

    .team-cards {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1160px;
        gap: 60px;
        justify-content: center;
    }

    .team-card {
        width: 100%;
        max-width: 200px;
        display: block;
        cursor: pointer;
        border: none;
        margin: 0 0 auto 0;
        background-color: transparent;
    }

    .team-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20D6;
        margin-top: 10px;
        border: none;
        background-color: transparent;
        width: 100%;
        text-align: center;
        cursor: pointer;
    }

    .team-card:hover span {
        text-decoration: underline;
    }

    .team-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-align: center;
        text-transform: uppercase;
        width: 100%;
        text-align: center;
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(11, 15, 32, 0.61);
        justify-content: center;
        align-items: center;
        padding: 0px 20px 0px 20px;
    }

    .modal-content {
        width: 100%;
        max-width: 1380px;
        border-radius: 20px;
        background-color: #fff;
        padding: 80px 40px 80px 40px;
        position: relative;
        overflow: hidden;
    }

    .modal-close {
        position: absolute;
        border: none;
        background-color: transparent;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }

    .modal-over {
        display: flex;
        gap: 20px;
        justify-content: center;
        height: 100%;
        max-height: 701px;
    }

    .modal-image {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
        min-width: 447px;
        min-height: 223px;
        max-width: 447px;
        max-height: 223px;
    }



    .modal-over img {
        width: 200px;
        height: 200px;
    }

    .modal-container {
        width: 100%;
        max-width: 640px;
        position: relative;
        max-height: 59vh;
        overflow-y: auto;
        scrollbar-width: thin;
        padding-right: 20px;
    }

    .modal-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        text-transform: uppercase;
    }

    .modal-information span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }

    .modal-text {
        margin: 20px 0px 20px 0px;
    }

    .modal-text p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .styled-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .styled-list li {
        position: relative;
        padding-left: 15px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .styled-list li a {
        color: #0B0F20D6;
    }

    .styled-list li span {
        font-weight: 600;
    }

    .styled-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 12px;
        width: 4px;
        height: 4px;
        background-color: #0B0F20D6;
        border-radius: 50%;
    }

    .strategies {
        display: flex;
        flex-direction: column;
    }

    .strategies h2 {
        color: #fff;
    }

    .strategies-container {
        width: 100%;
        max-width: 1920px;
        background-color: #323544;
        padding: 160px 20px 160px 20px;
        margin: 0 auto;
        border-radius: 6px 6px 0px 0px;
    }

    .strategies-information {
        width: 100%;
        max-width: 1380px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .strategies-left {
        width: 100%;
        max-width: 680px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .strategies-left p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
        width: 100%;
        max-width: 640px;
    }

    .strategies-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        width: 100%;
        max-width: 560px;
    }

    .strategies-block {
        display: flex;
        gap: 60px;
    }

    .strategies-right p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFF9C;
        text-align: center;
        text-transform: uppercase;
    }

    .strategies-big span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 180px;
        line-height: 180px;
        color: #FF8C4C;
    }

    .strategies-small {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .strategies-margin {
        margin-right: 40px;
    }

    .strategies-small span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 64px;
        line-height: 83.2px;
        color: #FF8C4C;
    }

    .solved {
        display: flex;
        flex-direction: column;
        background-color: #FFC5A5;
    }

    .solved h2 {
        color: #0B0F20;
    }

    .solved-container {
        width: 100%;
        max-width: 1920px;
        background-color: #FFC5A5;
        padding: 160px 20px 160px 20px;
        margin: 0 auto;
    }

    .solved-information {
        width: 100%;
        max-width: 1380px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }

    .solved-left {
        width: 100%;
        max-width: 563px;
    }

    .solved-lines {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .solved-line {
        width: 2px;
        height: 100px;
        background-color: #0B0F200F;
        margin: 10px 0px 10px 0px;
    }

    .solved-line2 {
        width: 2px;
        height: 42px;
        background-color: #0B0F200F;
        margin: 10px 0px 10px 0px;
    }

    .solved-line3 {
        width: 2px;
        height: 97px;
        background-color: #0B0F200F;
        margin: 10px 0px 10px 0px;
    }

    .solved-line4 {
        width: 2px;
        height: 63px;
        background-color: #0B0F200F;
        margin: 10px 0px 10px 0px;
    }

    .solved-line5 {
        width: 2px;
        height: 86px;
        background-color: #0B0F200F;
        margin: 10px 0px 10px 0px;
    }

    .solved-right {
        width: 100%;
        max-width: 720px;
        display: flex;
        justify-content: space-between;
        gap: 40px;
    }

    .solved-text {
        display: flex;
        flex-direction: column;
        gap: 31px;
    }

    .solved-card {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
        max-width: 612px;
    }

    .solved-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }

    .solved-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .minor {
        display: flex;
        flex-direction: column;
        margin: 150px 0px 130px 0px;
    }

    .minor svg {
        min-width: 60px;
    }

    .minor h2 {
        color: #0B0F20;
        margin-bottom: 60px;
        text-align: center;
    }

    .minor-container {
        margin: 0 auto;
        width: 100%;
        max-width: 1380px;
        padding: 0px 20px 0px 20px;
    }

    .minor-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .minor-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 560px;
        background-color: #fff;
        border-radius: 6px;
        padding: 20px;
    }

    .minor-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
        margin: 20px 0px 5px 0px;
    }

    .minor-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-align: center;
    }

    .packages {
        display: flex;
        flex-direction: column;
    }

    .packages-information h2 {
        color: #0B0F20;
        margin-bottom: 40px;
        text-align: center;
        padding: 0px 20px 0px 20px;
    }

    .packages-container {
        margin: 0 auto;
        width: 100%;
        max-width: 1460px;
        padding: 0px 20px 0px 20px;
    }

    .packages-cards {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .packages-card1 {
        background-color: #FFAC7E;
    }

    .packages-card2 {
        background-color: #323544;
    }

    .office-case h2 {
        color: #0B0F20;
    }

    .actions {
        display: flex;
        flex-direction: column;
        margin-bottom: 150px;
    }

    .actions h2 {
        color: #0B0F20;
    }

    .actions-container {
        display: flex;
        justify-content: space-between;
        align-items: end;
        margin: 0 auto;
        width: 100%;
        max-width: 1380px;
        gap: 140px;
    }

    .action-left {
        width: 100%;
        max-width: 563px;
        height: 540px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .action-left p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin: 10px 0px 30px 0px;
        width: 100%;
        max-width: 550px;
    }

    .action-left p span {
        font-weight: 700;
    }

    /*
    .action-left a {
        width: 100%;
        max-width: 280px;
        height: 47px;
        border-radius: 100px;
        background-color: #fff;
        border: 1px solid #0B0F20D6;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .2s ease;
        text-decoration: none;
    }

    .action-left a:hover {
        background-color: #CFD9FF;
        cursor: pointer;
    }
    */

    .action-rating {
        /* margin-top: 100px; */
        display: flex;
        align-items: center;
        gap: 17.5px;
        margin: auto auto 0 auto;
    }

    .start-search {
        display: flex;
        flex-direction: column;
    }

    .overlay-form {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #0B0F209C;
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        padding: 0px 20px 0px 20px;
    }

    .inquiry-block {
        position: relative;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 1380px;
        height: auto;
        padding: 110px 20px 110px 20px;
        overflow-y: auto;
    }

    .close-btn {
        position: absolute;
        width: 40px;
        height: 40px;
        background-color: transparent;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }

    .inputs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        gap: 20px;
        width: 100%;
        max-width: 720px;
        height: auto;
    }

    .inputs p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        z-index: 2;
        position: relative;
    }

    .input-container {
        display: flex;
        align-items: center;
        gap: 20px;
        height: auto;
        position: relative;
    }

    .input-container input {
        height: 47px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        border-radius: 6px;
        width: 100%;
        transition: .2s ease;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .input-container input::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }

    .input-container input:focus {
        outline: none;
    }

    .input-container input:hover {
        border: 1px solid #0B0F20D6;
    }

    .input-container button {
        height: 47px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        border-radius: 6px;
        width: 100%;
        transition: .2s ease;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        background-color: transparent;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    #country-button {
        position: relative;
        border-radius: 6px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border: 1px solid #0B0F2038;
        transition: border-radius 0.2s ease;
    }

    .country-list {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        position: absolute;
        top: 100%;
        left: -1px;
        right: -1px;
        width: calc(100% + 2px);
        max-height: 190px;
        overflow-y: auto;
        border: 1px solid #0B0F2038;
        border-radius: 0 0 6px 6px;
        background-color: white;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        text-align: start;
    }

    .country-list.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .country-item {
        padding: 5px 20px;
        cursor: pointer;
    }

    .country-item:hover {
        background-color: #f0f0f0;
    }

    .input-block-info {
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
    }

    .input-block-info svg {
        transition: transform 0.2s ease;
        position: absolute;
        right: 0;
    }

    .form-button {
        width: 100%;
        max-width: 260px;
        height: 47px;
        background-color: #5D7CFF;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border: none;
        z-index: 1000;
        position: relative;
        cursor: pointer;
        transition: .3s ease;
    }

    .form-button:hover {
        background-color: #244EFF;
    }


    textarea {
        width: 100%;
        max-width: 720px;
        height: 240px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        border-radius: 6px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        resize: none;
    }

    textarea::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }

    textarea:focus {
        outline: none;
    }

    textarea:hover {
        border: 1px solid #0B0F20D6;
    }

    .form-button {
        margin: 0 auto;
    }

    .inputs h2 {
        color: #0B0F20;
        margin-bottom: 40px;
        text-align: center;
    }

    .points-blocks {
        width: 100%;
        max-width: 640px;
    }

    .points-block {
        display: flex;
        margin-left: 10px;
        height: auto;
    }

    .points-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin: 10px 0px 10px 0px;
    }

    .points-block p span {
        font-weight: 700;
    }

    .points-block-last {
        margin-bottom: 20px;
    }

    .points-dot {
        width: 5px;
        height: 5px;
        background-color: #0B0F20D6;
        border-radius: 50%;
        position: relative;
        top: 20px;
        margin-right: 10px;
    }







    .contacts {
        display: flex;
        flex-direction: column;
        margin: 200px 0px 160px 0px;
    }

    .add h1 {
        margin-bottom: 160px;
    }

    .contacts-container {
        margin: 0 auto;
        width: 100%;
        max-width: 1420px;
        padding: 0px 20px 0px 20px;
    }

    .contacts-countrys {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .contacts-country {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .contacts-information {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        max-width: 563px;
        min-width: 563px;
        height: 400px;
    }

    .contacts-information span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }

    .contacts-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .contacts a {
        width: 100%;
        max-width: 280px;
        height: 47px;
        background-color: #5D7CFF;
        border-radius: 100px;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border: none;
        z-index: 2;
        position: relative;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }

    .contacts a:hover {
        background-color: #244EFF;
    }

    .contacts a.eml {
        background: transparent;
        color: #0B0F20D6;
        font-weight: 400;
        text-decoration: underline;
    }

    .contacts-decktop {
        display: flex;
    }

    .contacts-mobile {
        display: none;
    }

    .contacts-maps {
        width: 100%;
        height: 400px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contacts-maps img {
        height: 100%;
        width: auto;
        object-fit: cover;
    }










    .main-res-left {
        max-width: 913px;
    }

    .main-res-information p {
        max-width: 640px;
    }

    .main-resources {
        padding: 200px 20px 0px 20px;
    }





    .resources {
        display: flex;
        justify-content: center;
        margin: 160px 0px 447px 0px;
    }

    .resources-container {
        width: 100%;
        max-width: 1380px;
        display: flex;
        flex-direction: column;
        gap: 160px;
        padding: 0px 20px 0px 20px;
    }

    .resources-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .resources-card {
        flex: 1 1 calc(50% - 20px);
        min-width: 300px;
        max-width: 680px;
        padding: 20px;
        border-radius: 6px;
        background-color: #FFFFFF;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        display: flex;
        flex-direction: column;
        text-decoration: none;
    }

    .resources-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
        margin: 10px 0px 5px 0px;
    }

    .resources-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    h4 {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 30px;
        line-height: 39px;
        color: #0B0F20;
        margin-bottom: 20px;
    }

    .h4-tm {
        margin-bottom: 20px;
    }

    .resources-cards2 {
        display: flex;
        gap: 20px;
    }

    .resources-block-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /*
    .resources-block-hidden {
        display: none;
    }
    */

    .resources-block-hidden span {
        margin: 10px 0px 0px 0px;
    }








    .services {
        display: flex;
        justify-content: center;
        margin: 200px 0px 160px 0px;
    }

    .services-container {
        width: 100%;
        max-width: 1380px;
        display: flex;
        flex-direction: column;
        padding: 0px 20px 0px 20px;
    }

    .services-cards {
        display: flex;
        flex-wrap: wrap;
    }

    .services-card {
        width: 100%;
        height: auto;
        background-color: #FFFFFF;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 6px;
    }

    .services-card {
        flex-basis: calc(33.33% - 20px);
        margin: 10px;
    }

    .services-information {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .services-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31px;
        color: #0B0F20D6;
    }

    .services-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .services-card a {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-decoration: none;
        transition: .2s ease;
        margin-top: 20px;
    }

    .services-card a:hover {
        text-decoration: underline;
    }

    .service-description {
        max-height: 9.5em;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        margin: 0;
    }

    .testimonials {
        display: flex;
        justify-content: center;
        margin: 200px 0px 160px 0px;
    }

    .testimonials-container {
        width: 100%;
        max-width: 1420px;
        display: flex;
        flex-direction: column;
        padding: 0px 20px 0px 20px;
    }

    .testimonials-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonials-card {
        width: 100%;
        max-width: 680px;
        height: auto;
        background-color: #fff;
        border-radius: 6px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        display: flex;
        flex-direction: column;
        padding: 20px;
        flex: 1 1 calc(50% - 10px);
        box-sizing: border-box;
    }

    .testimonials-card iframe {
        width: 100%;
        height: 340px;
        object-fit: cover;
    }


    .testimonials-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20D6;
        margin: 20px 0px 10px 0px;
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    .testimonials-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .testimonials-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 390px;
        height: 47px;
        background-color: #5D7CFF;
        border-radius: 100px;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border: none;
        z-index: 2;
        position: relative;
        cursor: pointer;
        transition: .3s ease;
        margin: 20px auto 20px auto;
        text-decoration: none;
    }

    #subscribe-btn {
        position: relative;
        z-index: 2;
    }

    .testimonials-button:hover {
        background-color: #244EFF;
    }








    .article {
        display: flex;
        justify-content: center;
        margin: 200px 0px 160px 0px;
    }

    .site-section-block {
        display: flex;
        justify-content: center;
        padding: 160px 0px 60px 0px;
    }

    .article-container {
        width: 100%;
        max-width: 1420px;
        display: flex;
        flex-direction: column;
        padding: 0px 20px 0px 20px;
    }

    .article-container h2 {
        max-width: 800px;
        margin: auto;
    }


    .article-container h2.oai-card-title {
        line-height: 27px;
    }

    .article-cards {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 100%;
        max-width: 1146px;
    }

    .article-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }

    .article-card-faqcartoon p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        /*max-width: 640px;*/
        margin: 0 auto;
    }

    .article-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 21px;
        line-height: 27px;
        color: #0B0F20;
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }

    .article-card h4 {
        text-align: center;
        margin: 40px 0px 40px;
    }

    .article-card-info {
        margin: 20px 0px 20px 0px;
    }

    .article-card-info2 {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .article-card-info3 {
        margin: 20px 0px 20px 0px;
    }

    .article-card-info4 {
        width: 100%;
        max-width: 640px;
        margin: 20px auto 40px auto;
        gap: 20px;
        display: flex;
        flex-direction: column;
    }

    .article-card-info5 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .article-card-info6 {
        width: 100%;
        max-width: 640px;
        gap: 20px;
        display: flex;
        flex-direction: column;
        margin: 40px auto 40px auto;
    }

    .article-card-info7 {
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
        gap: 20px;
        display: flex;
        flex-direction: column;
    }

    .article-dot {
        width: 5px;
        height: 5px;
        background-color: #0B0F20D6;
        border-radius: 50%;
        position: relative;
        top: 10px;
    }

    .article-title {
        font-family: 'Poppins';
        font-weight: 700;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }

    .article-card-block {
        display: flex;
        gap: 10px;
        position: relative;
        left: 10px;
    }

    .article-info h2 {
        width: 100%;
        max-width: 890px;
        margin-bottom: 30px;
    }

    .article-info button {
        max-width: 420px;
    }

    .article-card img {
        width: 100%;
        height: auto;
    }

    .article-button {
        margin-top: 30px;
    }

    .article-rating {
        margin-top: 380px;
    }

    .article-start {
        margin-bottom: 160px;
    }

    .article-choote {
        margin-top: 160px;
    }






    .checkout {
        display: flex;
        justify-content: center;
        margin: 60px 0px 160px 0px;
    }

    .checkout-container {
        width: 100%;
        max-width: 1420px;
        display: flex;
        flex-direction: column;
        padding: 0px 20px 0px 20px;
        gap: 40px;
    }

    .checkout-content1 {
        width: 100%;
        max-width: 1380px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        border-radius: 6px;
        padding: 20px;
    }

    .checkout-content2 {
        width: 100%;
        max-width: 450px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        border-radius: 6px;
        padding: 20px;
        margin: auto;
    }

    h5 {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31px;
        color: #0B0F20D6;
        margin: 10px 0px 10px 0px;
    }

    .checkout-blocks {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .checkout-block {
        display: flex;
        flex-direction: column;
    }

    .checkout-block span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        color: #0B0F20D6;
    }

    .checkout-title {
        margin-bottom: 10px;
    }

    .checkout-accept-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .checkout-accept-info p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }




    .checkout-accepts {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .country-block {
        cursor: pointer;
    }

    .checkout-accept {
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .checkout-accept2 {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .checkout-accept3 {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .checkout-block4 {
        display: flex;
        gap: 10px;
    }

    .checkout-block4 div {
        font-weight: 700;
        font-size: 21px;
        line-height: 27px;
    }

    .checkout-block5 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 510px;
    }

    .checkout-block5 p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }


    .checkout-block6 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 300px;
    }

    .checkout-cards {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .checkout-blocks2 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }


    .checkout-block5 button {
        width: 100%;
        max-width: 300px;
        height: 47px;
        background-color: #5D7CFF;
        border-radius: 100px;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border: none;
        z-index: 2;
        position: relative;
        cursor: pointer;
        transition: .3s ease;
        margin: 20px 0px 0px 0px;
    }

    .checkout-block5 button:hover {
        background-color: #244EFF;
    }


    .checkout-bank1 {
        width: 100%;
        max-width: 300px;
        height: 47px;
        border-radius: 6px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .3s ease;
    }

    .checkout-bank1::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }

    .checkout-bank1:hover {
        border: 1px solid #0B0F20D6;
    }

    .checkout-bank1 :focus {
        outline: none;
    }

    .checkout-bank2 {
        width: 100%;
        max-width: 130px;
        height: 47px;
        border-radius: 6px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .3s ease;
    }

    .checkout-bank2 ::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }

    .checkout-bank2 :hover {
        border: 1px solid #0B0F20D6;
    }

    .checkout-bank2 :focus {
        outline: none;
    }




    .checkbox {
        width: 16px;
        height: 16px;
        border: 2px solid #0B0F20D6;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
    }

    .inner-circle {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #0B0F20D6;
        position: absolute;
        opacity: 0;
        transition: opacity 0.2s;
    }

    .checkbox.checked .inner-circle {
        opacity: 1;
    }



    .checkout-inputs {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .checkout-input input {
        width: 100%;
        height: 47px;
        border-radius: 6px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .3s ease;
    }

    .checkout-input select {
        width: 100%;
        height: 47px;
        border-radius: 6px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .3s ease;
    }

    .checkout-input input::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }

    .checkout-input input:hover {
        border: 1px solid #0B0F20D6;
    }

    .checkout-input input:focus {
        outline: none;
    }

    .checkout-input select:hover {
        border: 1px solid #0B0F20D6;
    }

    .checkout-input select:focus {
        outline: none;
    }

    .checkout-info {
        max-width: 640px;
    }

    .checkout-subtitle {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        width: 100%;
        max-width: 640px;
    }

    .checkout-block2 {
        display: flex;
        flex-direction: row;
        gap: 5px;
    }

    .checkout-block2 span {
        position: relative;
        top: -5px;
        margin-bottom: -10px;
    }

    .checkout-adds {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 5px 0px 5px 0px;
    }

    .checkout-add {
        display: flex;
        gap: 10px;
        position: relative;
        left: 7px;
        width: 100%;
        max-width: 640px;
    }

    .checkout-dot {
        width: 5px;
        height: 5px;
        min-width: 5px;
        min-height: 5px;
        border-radius: 50%;
        background-color: #0B0F20D6;
        position: relative;
        top: 10px;
    }

    .checkout-add p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }



    .square-checkbox {
        width: 16px;
        height: 16px;
        border: 2px solid #0B0F20D6;
        border-radius: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
    }

    .inner-square {
        width: 8px;
        height: 8px;
        background-color: #0B0F20D6;
        position: absolute;
        opacity: 0;
        transition: opacity 0.2s;
    }

    .square-checkbox.checked .inner-square {
        opacity: 1;
    }





    .checkout-table {
        width: 100%;
        max-width: 940px;
        border: 1px solid #0B0F2038;
        display: flex;
        align-items: center;
    }

    .checkout-table span {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }

    .first {
        width: 100%;
        max-width: 400px;
        padding: 10px 20px 10px 20px;
    }

    .second {
        width: 100%;
        max-width: 640px;
        border-left: 1px solid #0B0F2038;
        padding: 10px 20px 10px 20px;
    }

    .checkout-table1 {
        border-radius: 6px 6px 0px 0px;
    }

    .checkout-table3 {
        border-radius: 0px 0px 6px 6px;
    }

    .checkout-table2 {
        border: 0px solid #0B0F2038;
        border-left: 1px solid #0B0F2038;
        border-right: 1px solid #0B0F2038;
    }

    .checkout-get {
        margin-top: 30px;
        max-width: 200px;
    }

    .pagination-number {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        text-decoration: none;
    }

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

    .text-left {
        text-align: left;
    }

    .text-right {
        text-align: right;
    }

    /* Media */
    @media (max-width: 1650px) {
        .main-slider-buttons {
            position: absolute;
            left: 590px;
            top: 350px;
            z-index: 2;
        }

        .case-container {
            padding: 150px 0px 130px 20px;
        }
    }

    @media (max-width: 1420px) {

        .process {
            padding: 0px 20px 0px 20px;
        }

        .process-content {
            display: none;
        }

        .process-start {
            font-size: 16px;
            line-height: 24px;
            margin: 40px auto 0 auto;
        }

        .process-content-mobile {
            display: flex;
        }

        #dropdown-cards {
            justify-content: center;
        }

        .actions h2 {
            text-align: center;
        }

        .actions-container {
            flex-direction: column;
        }

        .action-left {
            max-width: 100%;
            height: auto;
        }

        .action-information {
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
        }

        .action-rating {
            justify-content: center;
            margin-top: 40px;
        }

        .action-left p {
            max-width: 640px;
            text-align: left;
        }

        .action-left {
            padding: 0px 20px 0px 20px;
        }


        .actions-container {
            gap: 80px;
        }
    }


    @media (max-width: 1376px) {
        .faq-cards {
            max-width: 912px;
        }
    }

    @media (max-width: 1300px) {
        .main-content {
            flex-direction: column;
        }

        .main-rating {
            display: none;
        }

        .main-slide-people {
            display: none;
        }

        .main-left {
            top: 0px;
            margin-bottom: 30px;
        }

        .main-slider-decoration {
            display: none;
        }

        .main-slider-buttons {
            right: 20px;
            left: auto;
            top: -60px;
        }

        .main-slider-container {
            max-width: 100%;
        }

        .main-slider-slides {
            gap: 0px;
        }

        .main-block {
            flex-wrap: wrap;
        }



        nav {
            display: none;
        }

        .burger {
            display: flex;
        }

        .footer-contant {
            flex-direction: column-reverse;
            gap: 40px;
        }

        .footer-links {
            max-width: 100%;
            gap: 20px;
        }

        .footer-link240 {
            max-width: 293.33px;
        }

        .footer-link416 {
            max-width: 293.33px;
        }

        .footer-link300 {
            max-width: 293.33px;
        }

        .footer-link296 {
            max-width: 293.33px;
        }

        .choose-play1 {
            display: none;
        }

        .choose-play2 {
            display: flex;
        }

        .choose-card-right img {
            width: 100%;
            max-width: 920px;
            height: auto;
        }

        .slides {
            height: 525px;
        }

        .slide {
            flex: 0 0 685px;
            height: 525px;
            padding: 40px 20px 20px 20px;
        }

        .slide-container {
            flex-direction: column;
            gap: 20px;
        }

        .slide-decoration {
            display: none;
        }

        .slide-right {
            gap: 20px;
        }

        .slide-card {
            max-width: 100%;
        }

        .success-container {
            height: 563px;
            padding: 292px 20px 0px 20px;
            gap: 20px;
        }

        .success-block-center {
            position: absolute;
            top: 100px;
        }

        .success-block-left {
            text-align: center;
        }

        .success-block-right {
            text-align: center;
        }

        .footer-information {
            display: flex;
            gap: 20px;
        }

        .footer-texts-hidden1 {
            display: none;
        }

        .footer-texts-hidden2 {
            display: block;
        }

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

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

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

        .footer-information img {
            width: 293px;
        }

        .footer-information-container {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .footer-texts {
            margin: 0px 0px 0px 0px;
        }

        .indicators {
            left: 0px;
        }

        .reputation-decoration {
            display: none;
        }

        .choose-schedule {
            margin: 20px 0px 0px 0px;
        }

        .key-card-decoration {
            display: none;
        }

        .option-card-accepts {
            height: auto;
        }

        .option-card-accepts-container {
            height: auto;
        }

        .table-stats {
            display: none;
        }

        .solved-information {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;
        }

        .solved-information {
            width: 100%;
            max-width: 800px;
        }

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

    @media (max-width: 1100px) {

        header {
            margin-bottom: 40px;
        }

        main {
            padding: 126px 0px 0px 20px;
        }

        .main-company {
            margin: 70px 0px 70px 0px;
        }

        .main-decoration {
            width: 705px;
        }

        .reputation-container {
            padding: 70px 20px 80px 20px;
        }

        .calculator-container {
            padding: 70px 20px 80px 20px;
        }

        .calculator-main-container {
            padding-botoom: 50px;
        }

        .process {
            margin: 80px 0px 80px 0px;
        }

        .case-container {
            padding: 70px 0px 80px 20px;
        }

        .choose-container {
            padding: 70px 20px 80px 20px;
        }

        .reviews {
            margin: 80px 0px 70px 0px;
        }

        .reviews-talk {
            margin: 80px 0px 0px 0px;
        }

        .reviews-talk {
            margin: 80px 0px 0px 0px;
        }

        .consultation-talk {
            margin: 0px 0px 116px 0px;
        }

        .serve {
            margin: 0px 20px 70px 20px;
        }

        .key {
            margin-bottom: 80px;
        }

        .blog {
            margin-bottom: 116px;
        }

        .consultation-container {
            padding: 70px 80px 80px 80px;
        }

        .consultation {
            margin-bottom: 60px;
        }

        .consultation-decoration1 {
            display: none;
        }

        .footer-container {
            padding: 50px 20px 20px 20px;
        }

        h2 {
            font-size: 46px;
            line-height: 59.8px;
        }

        .modal-image {
            display: none;
        }

        .case-information {
            margin: 0 auto 20px 0;
        }

        .serve h2 {
            margin-bottom: 20px;
        }

        .serve-card {
            max-width: 450px;
        }

        .serve-start {
            margin-top: 40px;
            font-size: 18px;
            line-height: 24px;
            height: 44px;
        }

        .key h2 {
            margin-bottom: 40px;
        }

        .key {
            margin-bottom: 60px;
        }

        .key-start {
            margin-top: 40px;
        }

        .footer-decoration {
            display: none;
        }

        .reputation h2 {
            margin-bottom: 20px;
        }

        .reputation-start {
            margin-top: 20px;
        }

        .process h2 {
            margin-bottom: 40px;
        }

        .choose h2 {
            margin-bottom: 20px;
        }

        .main-talk-left {
            margin-bottom: 0px;
        }

        .main-company h2 {
            margin-bottom: 20px;
        }

        .main-company-cards {
            margin: 20px 0px 70px 0px;
        }

        .we {
            margin-top: 80px;
        }

        .us {
            margin: 70px 0px 70px 0px;
        }

        .us h2 {
            margin-bottom: 40px;
        }

        .us-card {
            height: 232px;
        }

        .we-blocks {
            gap: 20px;
        }

        .story h2 {
            margin-bottom: 40px;
        }

        .team-cards {
            gap: 20px;
        }

        .story {
            margin-bottom: 70px;
        }

        .team h2 {
            margin-bottom: 40px;
        }


        .faq {
            margin: 80px 0px 80px;
        }

        .faq-container {
            gap: 80px;
        }

        .faq-card {
            max-width: 450px;
        }

        .board-container {
            padding: 70px 0px 80px 80px;
        }

        .board-decoration1 {
            display: none;
        }

        .board-decoration2 {
            width: 360px;
        }

        .board {
            margin-bottom: 80px;
        }

        .modal-over {
            flex-direction: column;
            max-height: 100%;
        }

        .modal-over img {
            margin: 0 auto;
        }

        .modal-information {
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
        }

        .modal-container {
            max-height: 50vh;
            max-width: 100%;
        }

        .modal-content {
            padding: 40px 40px 40px 40px;
        }

        .table-title {
            max-width: 320px;
        }

        .table-title-tm {
            max-width: 70px;
        }

        .table-height1 {
            height: 68px;
        }

        .table-height1-tm {
            height: auto;
        }

        .table-information {
            margin-bottom: 40px;
        }

        .table {
            margin-bottom: 80px;
        }

        .should-information {
            flex-direction: column;
            justify-content: center;
            max-width: 100%;
            align-items: center;
            gap: 40px;
            padding: 70px 20px 80px 20px;
        }

        .should-right {
            display: flex;
            flex-direction: unset;
        }

        .should-left h2 {
            max-width: 920px;
            text-align: center;
        }

        .should-left p {
            max-width: 640px;
            text-align: center;
            margin: 0 auto;
        }

        .should-block {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .start-container {
            padding: 70px 80px 80px 80px;
        }

        .start-decoration1 {
            display: none;
        }

        .start-decoration2 {
            width: 360px;
        }

        .consultation-decoration2 {
            width: 360px;
        }

        .option {
            margin: 80px 0px 80px 0px;
        }

        .option-cards {
            display: none;
        }

        .option-card-accepts {
            max-width: 920px;
            flex-direction: unset;
        }

        .option-card-information {
            width: 100%;
            max-width: 471px;
        }

        .option-card-pay {
            width: 430px;
            min-width: 430px;
            height: 274px;
        }

        .option-mobile-cards {
            display: flex;
        }

        .strategies-container {
            padding: 70px 20px 80px 20px;
        }

        .strategies-information {
            flex-direction: column;
        }

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

        .strategies h2 {
            text-align: center;
        }

        .strategies-left p {
            text-align: center;
            margin: 0 auto;
        }

        .strategies-big span {
            font-family: 'Poppins';
            font-weight: 500;
            font-size: 64px;
            line-height: 83.2px;
            color: #FF8C4C;
        }

        .strategies-right {
            flex-direction: unset;
            gap: 80px;
            margin-top: 40px;
            flex-wrap: nowrap;
            max-width: 920px;
        }

        .solved-container {
            padding: 70px 20px 80px 20px;
        }

        .minor {
            margin: 70px 0px 80px 0px;
        }

        .action-rating {
            margin-top: 40px;
        }

        .actions {
            margin-bottom: 70px;
        }

        .packages-container {
            padding: 0px 0px 0px 0px;
        }

        .option h2 {
            margin-bottom: 40px;
        }

        .start-search-h2 {
            margin-bottom: 40px;
        }

        .inquiry-block {
            padding: 40px 20px 40px 20px;
        }

        .start-container-gold {
            justify-content: start;
            margin-top: 40px;
        }

        .faq-cards {
            max-width: 920px;
        }

        .office-case {
            margin-bottom: 80px;
        }

        .strategies-margin {
            margin-right: 0px;
        }

        .contacts-information {
            max-width: 293px;
            min-width: 293px;
        }

        .contacts-hidden {
            display: none;
        }

        .contacts {
            margin: 200px 0px 80px 0px;
        }

        .add h1 {
            margin-bottom: 160px;
            text-align: center;
        }

        .contacts-countrys {
            gap: 40px;
        }

        .main-resources {
            padding: 127px 20px 0px 20px;
        }

        .resources {
            margin: 80px 0px 80px 0px;
        }

        .resources-container {
            gap: 80px;
        }

        .resources-cards2 {
            flex-direction: column;
            gap: 40px;
        }

        h4 {
            margin-bottom: 0px;
        }

        .testimonials {
            margin: 200px 0px 80px 0px;
        }

        .checkout {
            margin: 80px 0px 80px 0px;
        }

        .article {
            margin: 200px 0px 80px 0px;
        }

        .services {
            margin: 200px 0px 80px 0px;
        }

        .resources-block-hidden {
            display: flex;
        }

        .services-card {
            flex-basis: calc(50% - 20px);
        }

        .article-button {
            margin-top: 20px;
        }

        .article-start {
            margin-bottom: 80px;
        }

        .article-choote {
            margin-top: 80px;
        }

        .checkout-get {
            margin-top: 20px;
        }
    }

    @media (max-width: 991px) {
        .spanbr {
            display: inline-block
        }
    }

    @media (max-width: 959px) {


        .success-block-center span {
            /*font-size: 110px;*/
            /*line-height: 80px;*/
        }

        .header-block {
            gap: 20px;
        }

        .header-block p:first-child {
            font-size: 16px;
            line-height: 24px;
        }

        .header-block p:last-child {
            font-size: 12px;
            line-height: 24px;
        }

        .message {
            height: 44px;
        }

        .message span {
            font-size: 16px;
        }

        .main-decoration {
            width: 499px;
        }

        .main-information {
            padding: 0px 20px 0px 0px;
        }

        .header-block a {
            font-size: 16px;
            line-height: 24px;
        }

        .mobile-card-block p {
            font-size: 16px;
            line-height: 24px;
        }

        .nav-free {
            font-size: 16px;
            line-height: 24px;
            width: 202px;
            height: 44px;
        }

        h1 {
            font-size: 50px;
            line-height: 65px;
        }

        .main-information p {
            font-size: 16px;
            line-height: 24px;
        }

        .main-buttons {
            width: 100%;
            max-width: 728px;
            gap: 20px;
        }

        .main-left {
            margin-bottom: 20px;
            max-width: 100%;
        }

        .main-register {
            width: 100%;
            max-width: 354px;
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .main-speak {
            width: 100%;
            max-width: 354px;
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .main-slider-buttons {
            top: 280px;
        }

        .main-slider-text p {
            font-size: 16px;
            line-height: 24px;
        }

        .main-slider-add span {
            font-size: 18px;
            line-height: 27px;
        }

        .main-slider-add p {
            font-size: 16px;
            line-height: 24px;
        }

        h2 {
            font-size: 30px;
            line-height: 39px;
        }

        .success-block-left span {
            /*font-size: 50px;*/
            font-size: 90px;
            /*line-height: 65px;*/
            line-height: 95px;
        }

        .success-block-left p {
            font-size: 16px;
            line-height: 24px;
        }

        .success-block-left2 p {
            font-size: 16px;
            line-height: 24px;
        }

        .success-block-right span {
            /*font-size: 50px;*/
            font-size: 90px;
            /*line-height: 65px;*/
            line-height: 95px;
        }

        .success-block-right p {
            font-size: 16px;
            line-height: 24px;
        }

        .success-block-right2 p {
            font-size: 16px;
            line-height: 24px;
        }

        .reputation h2 {
            margin-bottom: 0px;
        }

        .reputation-block-smalls {
            flex-direction: column;
        }

        .reputation-title span {
            font-size: 16px;
            line-height: 24px;
        }

        .reputation-title {
            font-size: 21px;
            line-height: 27.3px;
        }

        .reputation-subtitle {
            font-size: 16px;
            line-height: 24px;
        }

        .reputation-block-small {
            max-width: 100%;
        }

        .reputation-register {
            font-size: 16px;
            line-height: 24px;
            width: 100%;
            max-width: 197px;
        }

        .reputation-start {
            margin-top: 0px;
            max-width: 242px;
            font-size: 16px;
            line-height: 24px;
            height: 44px;
        }

        .process h2 {
            margin-bottom: 20px;
        }

        .process-card-mobile-information span {
            font-size: 21px;
            line-height: 27.3px;
        }

        .process-card-mobile-information p {
            font-size: 16px;
            line-height: 24px;
        }

        .process-start {
            margin: 20px auto 0 auto;
            height: 44px;
        }

        .indicators {
            margin: 0px 0px 0px 0px;
        }

        .case-information {
            margin: 0 auto 0px 0;
        }

        .slide-left p {
            font-size: 16px;
            line-height: 24px;
        }

        .slide-card span {
            font-size: 21px;
            line-height: 27.3px;
        }

        .slide-card p {
            font-size: 16px;
            line-height: 24px;
        }

        .slide {
            height: 480px;
        }

        .choose h2 {
            margin-bottom: 0px;
        }

        .choose-card-smalls {
            flex-direction: column;
            width: 100%;
        }

        .choose-card-small {
            max-width: 100%;
        }

        .choose-card-information p {
            font-size: 16px;
            line-height: 24px;
        }

        .choose-card-block span {
            font-size: 21px;
            line-height: 27.3px;
        }

        .choose-card-block p {
            font-size: 16px;
            line-height: 27.3px;
            width: 100%;
            max-width: 640px;
        }

        .choose-card-big {
            margin: 0px;
        }

        .reviews img {
            width: 100%;
            height: auto;
        }

        .serve h2 {
            margin-bottom: 20px;
        }

        .serve-card {
            width: 354px;
            height: auto;
        }

        .serve-card-information span {
            font-size: 16px;
            line-height: 24px;
        }

        .serve-card-information p {
            font-size: 21px;
            line-height: 27.3px;
        }

        .serve-card-subtitle {
            font-size: 16px;
            line-height: 24px;
        }

        .serve-start {
            margin-top: 20px;
        }

        .key h2 {
            margin-bottom: 20px;
        }

        .key-card-container {
            flex-direction: column;
        }

        .key-card {
            max-width: 100%;
        }

        .key-card-information span {
            font-size: 16px;
            line-height: 24px;
        }

        .key-card-information p {
            font-size: 21px;
            line-height: 27.3px;
        }

        .key-card-subtitle {
            font-size: 16px;
            line-height: 24px;
        }

        .key-start {
            margin-top: 20px;
        }

        .key-start {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
            max-width: 242px;
        }

        .blog {
            margin-bottom: 60px;
        }

        .consultation {
            margin-bottom: 40px;
        }

        .consultation-container {
            padding: 80px 80px 70px 80px;
        }

        .consultation-container p {
            font-size: 16px;
            line-height: 24px;
        }

        .consultation-container h2 {
            max-width: 608px;
        }

        .consultation-container p {
            max-width: 608px;
        }

        .consultation-get {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
            max-width: 244px;
        }

        .action-btn {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
            max-width: 244px;
        }


        .footer-information p {
            font-size: 16px;
            line-height: 24px;
        }

        .footer-contacts span {
            font-size: 21px;
            line-height: 27.3px;
        }

        .footer-link span {
            font-size: 21px;
            line-height: 27.3px;
        }

        .footer-link a {
            font-size: 16px;
            line-height: 24px;
        }

        .footer-links {
            gap: 20px;
        }

        .footer-link240 {
            width: 100%;
            max-width: 229.67px;
        }

        .footer-link416 {
            width: 100%;
            max-width: 229.67px;
        }

        .footer-link300 {
            width: 100%;
            max-width: 229.67px;
        }

        .footer-link296 {
            width: 100%;
            max-width: 229.67px;
        }

        .footer-information img {
            width: 229px;
        }

        .footer-down p {
            font-size: 16px;
            line-height: 24px;
        }

        .footer-down a {
            font-size: 16px;
            line-height: 24px;
        }

        .footer-contacts span {
            font-size: 21px;
            line-height: 27.3px;
        }

        .case-container {
            gap: 0px;
        }

        .main-talk-information span {
            font-size: 16px;
            line-height: 24px;
        }

        .main-company-cards {
            flex-wrap: wrap;
        }

        .main-company-card {
            max-width: 100%;
        }

        .main-company-card span {
            font-size: 21px;
            line-height: 27.3px;
        }


        .we-container {
            padding: 60px 20px 60px 20px;
        }

        .we-block span {
            font-size: 30px;
            line-height: 39px;
        }

        .we-block p {
            font-size: 16px;
            line-height: 24px;
        }

        .we-block {
            max-width: 354px;
        }

        .us {
            margin: 50px 0px 50px 0px;
        }

        .us h2 {
            margin-bottom: 20px;
        }

        .us-card span {
            font-size: 21px;
            line-height: 27.3px;
        }

        .us-card p {
            font-size: 16px;
            line-height: 24px;
        }

        .us-card {
            height: 243px;
        }

        h3 {
            font-size: 140px;
        }

        .story h2 {
            margin-bottom: 20px;
        }

        .story-card p {
            font-size: 16px;
            line-height: 24px;
        }

        .team-card button {
            font-size: 21px;
            line-height: 27.3px;
        }

        .team-card p {
            font-size: 16px;
            line-height: 24px;
        }

        .story {
            margin-bottom: 50px;
        }

        .team h2 {
            margin-bottom: 20px;
        }

        .main-why-information button {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
        }

        .faq {
            margin: 60px 0px 60px;
        }

        .faq-container {
            gap: 60px;
        }

        .faq-card-container span {
            font-size: 21px;
            line-height: 27px;
        }

        .faq-card-container a {
            font-size: 16px;
            line-height: 24px;
        }

        .faq-card-block .see-all {
            font-size: 16px;
            line-height: 24px;
        }

        .faq-card {
            max-width: 354px;
        }

        .board-container p {
            font-size: 16px;
            line-height: 24px;
        }

        .board-container span {
            font-size: 30px;
            line-height: 39px;
        }

        .board-block {
            margin: 20px 0px 20px 0px;
        }

        .board-block input {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .board-block input::placeholder {
            font-size: 16px;
            line-height: 24px;
        }

        .board-name {
            max-width: 100%;
        }

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

        .board-container button {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
            max-width: 150px;
        }

        .board-container {
            padding: 50px 60px 60px 60px;
        }

        .board {
            margin-bottom: 60px;
        }

        .faq-search {
            height: 44px;
        }

        .faq-search input {
            font-size: 16px;
            line-height: 24px;
        }

        .faq-search input::placeholder {
            font-size: 16px;
            line-height: 24px;
        }

        .modal-information p {
            font-size: 16px;
            line-height: 24px;
        }

        .modal-information span {
            font-size: 21px;
            line-height: 27px;
        }

        .modal-text p {
            font-size: 16px;
            line-height: 24px;
        }

        .styled-list li {
            font-size: 16px;
            line-height: 24px;
        }

        .modal-content {
            padding: 40px 20px 40px 20px;
        }

        .table-title {
            max-width: 210px;
        }

        .table-title-tm {
            max-width: 70px;
        }


        .table-add p {
            font-family: 'Poppins';
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #0B0F20D6;
        }

        .table-line1 p {
            font-family: 'Poppins';
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #0B0F20D6;
        }

        .table-line2 p {
            font-family: 'Poppins';
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #0B0F20D6;
        }

        .table-line2 p span {
            font-family: 'Poppins';
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #0B0F2038;
        }

        .table-height2 {
            height: 68px;
        }

        .table-flex {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .table-center {
            text-align: center;
        }

        .table-information {
            margin-bottom: 20px;
        }

        .table-information p {
            font-size: 16px;
            line-height: 24px;
        }

        .table {
            margin-bottom: 60px;
        }

        .should-left p {
            font-size: 16px;
            line-height: 24px;
        }

        .should-block span {
            font-size: 60px;
            line-height: 78px;
        }

        .should-block p {
            font-size: 16px;
            line-height: 24px;
            text-align: center;
        }

        .start-container {
            padding: 50px 60px 60px 60px;
        }

        .start-information p {
            font-size: 16px;
            line-height: 24px;
        }

        .start-information a {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
        }

        .option-card-information span {
            font-size: 21px;
            line-height: 27px;
        }

        .option-card-information p {
            font-size: 16px;
            line-height: 24px;
        }

        .option-card-pay-block span {
            font-size: 16px;
            line-height: 24px;
        }

        .option-card-pay-block p {
            font-size: 30px;
            line-height: 29px;
        }

        .option-card-pay-container a {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .option-card-pay {
            width: 300px;
            min-width: 300px;
            height: 226px;
        }

        .option-card-accepts-block p {
            font-size: 16px;
            line-height: 24px;
        }

        .option {
            margin: 60px 0px 60px 0px;
        }

        .strategies-left p {
            font-size: 16px;
            line-height: 24px;
        }

        .strategies-container {
            padding: 50px 20px 60px 20px;
        }

        .solved-card span {
            font-size: 21px;
            line-height: 27px;
        }

        .solved-card p {
            font-size: 16px;
            line-height: 24px;
        }

        .solved-line {
            height: 68px;
        }

        .solved-text {
            gap: 40px;
        }

        .solved-container {
            padding: 60px 20px 50px 20px;
        }

        .minor-content {
            flex-direction: column;
        }

        .minor-card {
            max-width: 640px;
        }

        .minor-card span {
            font-size: 21px;
            line-height: 27px;
        }

        .minor-card p {
            font-size: 16px;
            line-height: 24px;
        }

        .minor-card img {
            max-width: 200px;
        }

        .minor {
            margin: 50px 0px 50px 0px;
        }

        .action-left p {
            font-size: 16px;
            line-height: 24px;
        }

        .action-left a {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .action-left {
            margin-bottom: 40px;
        }

        .packages {
            margin-top: 120px;
        }

        .start-search {
            margin-top: 100px;
        }

        .input-container input {
            height: 44px;
            font-size: 16px;
            line-height: 25px;
        }

        .input-container input::placeholder {
            font-size: 16px;
            line-height: 25px;
        }

        .form-button {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
        }

        .faq-cards {
            max-width: 726px;
        }

        .office-case {
            margin-bottom: 60px;
        }

        .contacts {
            margin: 160px 0px 80px 0px;
        }

        .add h1 {
            margin-bottom: 80px;
        }

        .contacts-decktop {
            display: none;
        }

        .contacts-mobile {
            display: flex;
            margin: 20px auto;
        }

        .contacts-information span {
            font-size: 21px;
            line-height: 27px;
        }

        .contacts-information p {
            font-size: 16px;
            line-height: 24px;
        }

        .contacts-information {
            max-width: 229px;
            min-width: 229px;
        }

        .resources {
            margin: 60px 0px 60px 0px;
        }

        .resources-container {
            gap: 60px;
        }

        .resources-card span {
            font-size: 21px;
            line-height: 27px;
        }

        .resources-card p {
            font-size: 16px;
            line-height: 24px;
        }

        .testimonials-card {
            flex: 1 1 100%;
            max-width: 100%;
        }

        .testimonials-card span {
            font-size: 21px;
            line-height: 27px;
        }

        .testimonials-card p {
            font-size: 16px;
            line-height: 24px;
        }

        .testimonials {
            margin: 160px 0px 80px 0px;
        }

        .checkout {
            margin: 60px 0px 60px 0px;
        }

        .article {
            margin: 160px 0px 80px 0px;
        }

        .services {
            margin: 160px 0px 80px 0px;
        }

        .testimonials-button {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .contacts a {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .services-card span {
            font-size: 21px;
            line-height: 27px;
        }

        .services-card p {
            font-size: 16px;
            line-height: 24px;
        }

        .services-card a {
            font-size: 16px;
            line-height: 24px;
        }

        .article-card p {
            font-size: 16px;
            line-height: 24px;
        }

        .article-card-faqcartoon p {
            font-size: 16px;
            line-height: 24px;
        }

        .article-title {
            font-size: 16px;
            line-height: 24px;
        }

        .actions-container {
            gap: 20px;
        }

        .action-left {
            margin-top: 20px;
        }

        .actions-container {
            gap: 0px;
        }

        .article-start {
            margin-bottom: 60px;
        }

        .article-choote {
            margin-top: 120px;
        }

        h5 {
            font-size: 21px;
            line-height: 27px;
        }

        .checkout-block span {
            font-size: 16px;
            line-height: 24px;
        }

        .checkout-accept-info p {
            font-size: 16px;
            line-height: 24px;
        }

        .checkout-block4 div {
            font-size: 18px;
            line-height: 24px;
        }

        .checkout-block5 p {
            font-size: 16px;
            line-height: 24px;
        }

        .checkout-block5 button {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
        }

        .checkout-bank1 {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .checkout-bank1::placeholder {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .checkout-bank2 {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .checkout-bank2::placeholder {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .checkout-input input {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .checkout-input select {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .checkout-input input::placeholder {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }

        .checkout-subtitle {
            font-size: 16px;
            line-height: 24px;
        }

        .checkout-add p {
            font-size: 16px;
            line-height: 24px;
        }

        .checkout-table span {
            font-size: 16px;
            line-height: 24px;
        }

    }


    @media (max-width: 767px) {
        #block-993-v2 {
            display: block
        }

        #block-993-v1 {
            display: none
        }

        .consultation-buttons-container {
            flex-direction: column;
            /*align-items: center;*/
        }

        .consultation-get {
            max-width: 100%;
        }

        .phones {
            display: none
        }

        .mld-40 {
            margin-left: 0px !important;
        }


        .serve-card {
            width: 320px;
            height: auto;
        }

        .header-container {
            height: 66px;
        }

        .header-block p {
            display: none;
        }

        .main-decoration {
            display: none;
        }

        .main-slider-buttons {
            top: 390px;
        }

        main {
            padding: 86px 0px 0px 20px;
        }

        header {
            margin-bottom: 20px;
        }

        .call {
            display: flex;
        }

        .logo img {
            width: 158px;
        }

        .sing {
            display: none;
        }

        .nav-free {
            display: none;
        }

        .main-buttons {
            flex-direction: column;
            gap: 10px;
        }

        .main-register {
            max-width: 100%;
        }

        .main-speak {
            max-width: 100%;
        }

        .main-slider-slide {
            flex: 0 0 315px;
        }

        .main-block {
            gap: 15px;
        }

        .main-block img {
            width: 150px;
        }

        .success-container {
            height: 675px;
            /*padding: 292px 20px 20px 20px;*/
            padding: 0;
        }

        .success-block-center {
            top: 80px;
        }

        .success-decoration1 {
            display: none;
        }

        .success-decoration2 {
            display: none;
        }

        .success-block-center span {
            /*font-size: 110px;*/
            font-size: 90px;
            /*line-height: 80px;*/
            line-height: 95px;
        }

        .success-container {
            flex-wrap: wrap;
            gap: 20px;
        }

        h2 {
            font-size: 25px;
            line-height: 31.2px;
        }

        .reputation-title p {
            font-size: 18px;
            line-height: 24px;
            font-weight: 600;
        }

        .reputation-container {
            padding: 50px 20px 60px 20px;
        }

        .calculator-container {
            padding: 50px 20px 60px 20px;
        }

        .calculator-main-container {
            padding-bottom: 30px;
        }

        .process-card-mobile {
            flex-direction: column;
            align-items: center;
        }

        .process-card-mobile-information {
            align-items: center;
        }

        .process-card-mobile-information span {
            text-align: center;
            font-size: 18px;
            line-height: 24px;
            font-weight: 600;
        }

        .process-card-mobile-information p {
            text-align: center;
        }

        .reputation-start {
            max-width: 100%;
        }

        .process-start {
            max-width: 100%;
        }

        .case-container {
            padding: 50px 0px 60px 20px;
        }

        .slide {
            flex: 0 0 315px;
            height: 700px;
        }

        .slides {
            height: 700px;
            margin: 20px 0px 20px 0px;
        }

        .slide-brand1 {
            width: 275px;
        }

        .slide-brand2 {
            width: 275px;
        }

        .slide-brand3 {
            width: 275px;
        }

        .slide-card span {
            font-size: 18px;
            line-height: 24px;
            font-weight: 600;
        }

        .choose-container {
            padding: 50px 20px 60px 20px;
        }

        .choose-card-block span {
            font-size: 18px;
            line-height: 24px;
            font-weight: 600;
        }

        .reviews {
            margin: 60px 0px 60px 0px;
        }

        .reviews-talk {
            margin: 60px 0px 0px 0px;
        }

        .serve-card-information p {
            font-size: 18px;
            line-height: 24px;
            font-weight: 600;
        }

        .serve-start {
            font-size: 16px;
            line-height: 24px;
            max-width: 100%;
        }

        .key-card-information p {
            font-size: 18px;
            line-height: 25px;
        }

        .key-start {
            max-width: 100%;
        }

        .consultation-container h2 {
            text-align: center;
        }

        .consultation-container p {
            text-align: center;
        }

        .consultation-decoration2 {
            display: none;
        }


        .consultation-container {
            padding: 50px 20px 60px 20px;
        }

        .footer-links {
            flex-direction: column;
            max-height: 100%;
            gap: 40px;
        }

        .footer-information {
            flex-direction: column;
        }

        .footer-information-container {
            gap: 20px;
            margin: 0 auto;
        }

        .footer-information img {
            width: 229px;
        }

        .footer-text1 {
            margin-bottom: 20px;
        }

        .footer-contacts span {
            width: 100%;
            max-width: 335px;
            text-align: center;
        }

        .footer-socials {
            width: 100%;
            max-width: 335px;
            justify-content: space-between;
        }

        .footer-contant {
            margin-bottom: 20px;
        }

        .footer-down p {
            text-align: center;
        }

        .footer-down a {
            text-align: center;
        }

        .footer-down {
            flex-direction: column-reverse;
            gap: 20px;
        }

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

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

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

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

        h1 {
            font-size: 40px;
            line-height: 52px;
        }

        .us-card span {
            font-size: 18px;
            line-height: 24px;
        }

        .us-cards {
            flex-wrap: wrap;
        }

        .us-card {
            height: auto;
        }

        .we-content {
            flex-direction: column;
        }

        .we-block {
            max-width: 100%;
        }

        .main-why-information button {
            max-width: 100%;
        }

        .faq-card {
            max-width: 335px;

        }

        .faq-card-container span {
            font-size: 18px;
            line-height: 24px;
        }

        .board-container {
            padding: 50px 20px 60px 20px;
        }

        .board-container span {
            font-size: 24px;
            line-height: 27px;
        }

        .board-decoration2 {
            display: none;
        }

        .board-block {
            flex-direction: column;
        }

        .board-container button {
            max-width: 100%;
        }

        .modal-content {
            padding: 20px 20px 20px 20px;
        }

        .modal-information span {
            font-size: 18px;
            line-height: 24px;
        }

        .modal {
            padding: 0px 0px 0px 0px;
        }

        .modal-container {
            max-height: 70vh;
        }

        .modal-content {
            border-radius: 0px;
        }

        .table-line1 {
            display: flex;
            flex-direction: column;
        }

        .table-radius3 {
            border-radius: 0px 0px 0px 0px;
        }

        .table-line2 {
            display: flex;
            flex-direction: column;
        }

        .table-title {
            max-width: 100%;
            border: 1px solid #0B0F2038;
            display: flex;
            justify-content: center;
        }

        .table-title-tm {
            /*max-width: 100%;*/
            /*border: 1px solid #0B0F2038;*/
            display: flex;
            justify-content: center;
        }

        .table-block {
            padding: 0px 10px 0px 10px;
        }

        .table-block-tm {
            padding: 0px 10px 0px 10px;
        }

        .table-block-flag {
            padding: 10px 10px 0px 10px;
        }

        .table-add {
            padding: 0px 10px 0px 10px;
        }

        .table-add-tm {
            padding: 0px 10px 0px 10px;
        }

        .table-center {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
        }

        .table-height1 {
            height: auto;
        }

        .table-height1-tm {
            height: auto;
        }

        .table-height2 {
            height: auto;
        }

        .table44 {
            height: 44px;
            display: flex;
            justify-content: center;
        }

        .table44-tm {
            height: auto;
            display: flex;
            justify-content: left;
        }

        .table68 {
            height: 68px;
        }

        .table-radius4 {
            border-radius: 0px 0px 0px 0px;
        }

        .table-radius6 {
            border-radius: 0px 0px 0px 6px;
        }

        .table-gray1 {
            background-color: transparent;
        }

        .table-gray2 {
            background-color: #0B0F2008;
        }

        .table-information {
            margin-bottom: 0px;
        }

        .should-information {
            gap: 20px;
            padding: 50px 20px 60px 20px;
        }

        .should-block span {
            font-size: 50px;
            line-height: 65px;
        }

        .should-right {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 0px;
        }

        .start-decoration2 {
            display: none;
        }

        .start-information h2 {
            text-align: center;
        }

        .start-information p {
            text-align: center;
        }

        .start-information a {
            margin: 0 auto;
        }

        .start-container {
            padding: 50px 20px 60px 20px;
        }

        .option-card-accepts {
            display: none;
        }

        .option-card-block {
            flex-direction: column;
        }

        .option-card-pay {
            width: 100%;
            max-width: 100%;
        }

        .option-card-information {
            width: 100%;
            max-width: 100%;
        }

        .option-card-information span {
            font-size: 18px;
            line-height: 27px;
        }


        .option-card-pay-block p {
            font-size: 24px;
            line-height: 31px;
        }

        .action-left {
            padding: 0px 20px 0px 20px;
        }

        .action-rating {
            flex-wrap: wrap;
        }

        .action-left a {
            max-width: 100%;
        }

        .solved-lines {
            display: none;
        }

        .solved-information {
            gap: 20px;
        }

        .solved-text {
            gap: 20px;
        }

        .strategies-right p {
            font-size: 16px;
            line-height: 24px;
        }

        .solved-card span {
            font-size: 18px;
            line-height: 27px;
        }

        .minor-card span {
            font-size: 16px;
            line-height: 27px;
        }

        .strategies-right {
            flex-wrap: wrap;
            gap: 20px;
        }

        .strategies-big span {
            font-size: 50px;
            line-height: 65px;
        }

        .strategies-small span {
            font-size: 50px;
            line-height: 65px;
        }

        .option-filing {
            margin-top: 100px;
        }

        .option h2 {
            margin-bottom: 20px;
        }

        .start-search-h2 {
            margin-bottom: 20px;
        }

        .start-information a {
            max-width: 100%;
        }

        .overlay-form {
            padding: 0px;
        }

        .inquiry-block {
            height: 100%;
            padding: 60px 20px 60px 20px;
            border-radius: 0px;
        }

        .input-container {
            flex-direction: column;
        }

        .form-button {
            max-width: 100%;
        }

        .start-information p {
            text-align: start;
        }

        .start-monitoring-h2 {
            display: flex;
            justify-content: start;
            align-items: start;
        }

        .start-container-gold {
            justify-content: start;
            margin-top: 20px;
        }

        .faq-cards {
            max-width: 688px;
        }

        .table-add {
            border: 0px solid #0B0F2038;
            border-top: 1px solid #0B0F2038;
            border-left: 1px solid #0B0F2038;
            border-right: 1px solid #0B0F2038;
        }

        /*        .table-add-tm {
            border: 0px solid #0B0F2038;
            border-top: 1px solid #0B0F2038;
            border-left: 1px solid #0B0F2038;
            border-right: 1px solid #0B0F2038;
        }*/

        .start-information .start-button {
            max-width: 100%;
        }

        .contacts {
            margin: 130px 0px 60px 0px;
        }

        .add h1 {
            margin-bottom: 60px;
        }

        .contacts-countrys {
            gap: 20px;
        }

        .contacts a {
            max-width: 100%;
        }

        .contacts-information span {
            font-size: 18px;
            line-height: 24px;
        }

        .contacts-country {
            flex-direction: column;
            justify-content: start;
        }

        .contacts-information {
            height: auto;
            max-width: 100%;
            min-width: 100%;
        }

        .contacts-block {
            margin-bottom: -20px;
        }

        .resources-card {
            flex: 1 1 100%;
        }

        .main-resources {
            padding: 86px 20px 0px 20px;
        }

        .resources-card span {
            font-size: 18px;
            line-height: 24px;
        }

        h4 {
            font-size: 24px;
            line-height: 31px;
        }

        .testimonials {
            margin: 130px 0px 60px 0px;
        }

        .checkout {
            margin: 60px 0px 60px 0px;
        }

        .article {
            margin: 130px 0px 60px 0px;
        }

        .services {
            margin: 130px 0px 50px 0px;
        }

        .testimonials-card span {
            font-size: 18px;
            line-height: 24px;
        }

        .services-card {
            flex-basis: 100%;
        }

        .services-card span {
            font-size: 18px;
            line-height: 24px;
        }

        .article-card span {
            font-size: 18px;
            line-height: 27px;
        }

        .action-rating {
            margin-top: 20px;
        }

        h5 {
            font-size: 18px;
            line-height: 24px;
        }

        .checkout-table {
            flex-direction: column;
        }

        .second {
            border-left: 0px solid #0B0F2038;
            border-top: 1px solid #0B0F2038;
        }

        .first {
            display: flex;
            justify-content: start;
            text-align: start;
            width: 100%;
            max-width: 100%;
            background-color: #CFD9FF;
        }

        .checkout-block5 {
            flex-direction: column;
            width: 100%;
            max-width: 100%;
        }

        .checkout-block6 {
            max-width: 100%;
            gap: 37px;
        }

        .checkout-block7 {
            max-width: 100%;
            gap: 15.5px;
        }

        .checkout-bank1 {
            width: 100%;
            max-width: 100%;
        }

        .checkout-bank2 {
            width: 100%;
            max-width: 100%;
        }

        .checkout-block5 p {
            text-align: start;
            margin-bottom: 10px;
            width: 100%;
        }

        .checkout-line {
            width: 100%;
            max-width: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            top: 5px;
        }

        .checkout-block5 button {
            max-width: 100%;
        }

        .start-information .blog-start {
            max-width: 1100%;
        }
    }

    /*   pricing blocks */
    .pricing-section {
        display: flex;
        justify-content: center;
        align-items: center;
        /*min-height: 70dvh;*/
        font-family: 'Poppins';
        color: #0B0F20D6;
        margin-top: 30px;
    }

    .monitoring-section {
        display: flex;
        justify-content: center;
        align-items: center;
        /*min-height: 56vh;*/
        font-family: 'Poppins';
        color: #0B0F20D6;
        margin-top: 30px;
    }

    .gf-comment {
        margin-bottom: 160px;
    }

    .pricing-container {
        display: flex;
        gap: 20px;
        max-width: 900px;
        width: 100%;
        padding: 0 10px 0 10px;
    }

    .pricing-card {
        flex: 1;
        background: white;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .pricing-card.teams {
        background-color: #f8f9ff;
    }

    .card-header {
        margin-bottom: 24px;
    }

    .card-title {
        font-size: 23px;
        color: #333;
        margin-bottom: 16px;
    }

    .price {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .price-period {
        color: #666;
        font-size: 14px;
    }

    .description {
        color: #666;
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .get-started {
        display: block;
        width: 100%;
        padding: 12px;
        border-radius: 6px;
        text-align: center;
        text-decoration: none;
        margin-bottom: 24px;
        font-size: 18px;
    }

    .teams .get-started {
        background-color: #4F6FEF;
        color: white;
    }

    .teams .get-started:hover {
        background-color: #3b56c4;
    }

    .individuals .get-started {
        background-color: #e2e8f0;
        color: #333;
    }

    .individuals .get-started:hover {
        background-color: #cbd5e1;
    }

    .feature-list {
        list-style: none;
        margin-top: 24px;
    }

    .feature-item {
        display: grid;
        grid-template-columns: 24px 1fr;
        align-items: baseline;
        margin-bottom: 12px;
        font-size: 14px;
        color: #333;
    }

    .checkmark {
        color: #4F6FEF;
    }

    .trial-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #1a1f36;
        color: white;
        padding: 4px 8px;
        border-radius: 16px;
        font-size: 12px;
    }

    .plan-label {
        font-size: 14px;
        color: #666;
        margin-bottom: 16px;
        padding-bottom: 24px;
        border-bottom: 1px solid #E5E7EB;
        /* Add horizontal divider */
    }

    /*.gray{color:#0B0F2038 !important;}*/
    .gray {
        color: #666 !important;
    }

    .align-items-center {
        align-items: center
    }

    @media (max-width: 768px) {
        .gf-comment {
            margin-bottom: 60px;
        }

        .pricing-container {
            flex-direction: column;
        }

        .pricing-card.teams {
            order: -1;
        }
    }

/* City-specific styles for Portland */

    .container {
        display: flex;
        flex-direction: column;
        min-height: 70vh;
    }
    .reputation-main-subtitle {
        font-size: 18px;
        color: #FFFFFF;
        max-width: 900px;
        margin: 0 auto 60px;
        line-height: 1.6;
        text-align: center;
        font-family: 'Poppins';
        font-weight: normal;
    }
    .reputation-main-subtitle-white {
        font-size: 18px;
        /*color: #FFFFFF;*/
        max-width: 900px;
        margin: 0 auto 60px;
        line-height: 1.6;
        text-align: center;
        font-family: 'Poppins';
        font-weight: normal;
    }
    .reputation-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .reputation-card {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        transition: all 0.3s ease;
    }
    .reputation-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: #d1d5db;
    }
    .reputation-card-header {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .reputation-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: linear-gradient(135deg, #eff6ff, #dbeafe);
    }
    .reputation-card-icon.orange {
        background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    }
    .reputation-card-icon.red {
        background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    }
    .reputation-card-icon.yellow {
        background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
    }
    .reputation-card-icon.blue {
        background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    }
    .reputation-card-title {
        font-size: 20px;
        font-weight: 600;
        color: #1a1a1a;
        /*margin-bottom: 12px;*/
        line-height: normal;
    }
    .reputation-card-description {
        font-size: 16px;
        color: #6b7280;
        line-height: 1.6;
        margin: 0;
        font-family: 'Poppins';
    }
    @media (max-width: 1024px) {
        .reputation-cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }}
    @media (max-width: 640px) {
        .reputation {
            padding: 60px 16px;
        }
        .reputation-white {
            padding: 60px 16px;
            background-color: transparent;
        }
        .reputation-main-title {
            font-size: 28px;
        }
        .reputation-main-subtitle {
            font-size: 16px;
            margin-bottom: 40px;
        }
        .reputation-main-subtitle-white {
            font-size: 16px;
            margin-bottom: 40px;
        }
        .reputation-cards {
            grid-template-columns: 1fr;
            gap: 16px;
        }
        .reputation-card {
            padding: 20px;
        }}
    #block-993-v2 {
        display: none
    }
    .spanbr {
        display: block
    }
    .breadcrumbs {
        display: flex;
        justify-content: start;
        padding-bottom: 30px;
        background-color: transparent;
        /*    border-bottom: 1px solid #eee;*/
    }
    .breadcrumbs-container {
        width: 100%;
        max-width: 1146px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 14px;
        color: #0B0F20D6;
    }
    .breadcrumbs a {
        color: #5D7CFF;
        text-decoration: none;
    }
    .breadcrumbs a:hover {
        text-decoration: underline;
    }
    .breadcrumbs .separator {
        margin: 0 5px;
        color: #999;
    }
    .breadcrumbs .current {
        color: #0B0F20;
    }
    .logo img {
        width: 171px;
    }
    .header-hidden {
        top: -100px;
    }
    .person-img {
        border-radius: 50%;
        width: 208px;
        height: 208px;
    }
    .person-img-alt {
        border-radius: 50%;
        width: 200px;
        height: 200px;
    }
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1420px;
        height: 87px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        padding: 0px 20px 0px 20px;
        background-color: #fff;
        position: relative;
        border-radius: 0px 0px 6px 6px;
    }
    .header-content {
        display: flex;
        align-items: center;
        gap: 20px;
        position: relative;
    }
    .nav-link {
        position: relative;
        display: flex;
        align-items: center;
        height: 37px;
        padding: 5px 20px;
        gap: 5px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        border: none;
        background-color: transparent;
        text-wrap: nowrap;
        cursor: pointer;
        border-radius: 6px;
    }
    .nav-link:hover {
        background-color: #f0f0f0;
    }
    .nav-link .arrow {
        transition: transform 0.3s ease;
    }
    .nav-link.active .arrow {
        transform: rotate(180deg);
    }
    .nav-link .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        border-radius: 6px;
        box-shadow: 0px 4px 4px 0px #0B0F201A;
        padding: 40px 20px 20px 20px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        gap: 10px;
        z-index: -1;
    }
    .dropdown-more {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .nav-link .dropdown a {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20;
        text-decoration: none;
        width: 100%;
        text-align: start;
    }
    .nav-link .dropdown a:hover {
        text-decoration: underline;
    }
    .nav-link:hover .dropdown {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    #dropdown-cards {
        position: absolute;
        top: 95%;
        left: 0px;
        background-color: #fff;
        border-radius: 0px 0px 6px 6px;
        box-shadow: 0px 4px 4px 0px #0B0F201A;
        padding: 30px 20px 20px 20px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        gap: 10px;
        z-index: -3;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        max-width: 1420px;
    }
    .dropdown-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        max-width: 1420px;
    }
    .dropdown-add {
        width: 100%;
        height: 67px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        border-radius: 6px;
        text-decoration: none;
    }
    .dropdown-add:hover {
        background-color: #F9FAFF;
    }
    .dropdown-card {
        width: 100%;
        max-width: 446.67px;
        height: 138px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 5px;
        background-color: #fff;
        transition: .3s ease;
        border-radius: 6px;
    }
    .dropdown-other {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .dropdown-card:hover {
        background-color: #F9FAFF;
    }
    .dropdown-card {
        text-decoration: none;
    }
    .dropdown-card span {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .dropdown-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .nav-item {
        position: relative;
        margin-bottom: 10px;
    }
    .nav-item .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        border: 1px solid #ccc;
        padding: 10px;
        z-index: 1000;
    }
    .nav-item:hover .dropdown-content {
        display: block;
    }
    .nav-link {
        height: 37px;
        padding: 5px 20px 5px 20px;
        gap: 5px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        border: none;
        background-color: transparent;
        text-decoration: none;
    }
    .header-block {
        display: flex;
        align-items: center;
        gap: 40px;
    }
    .phones {
        display: flex;
        gap: 7px
    }
    .phones-icon {
        display: flex;
        align-items: center
    }
    .header-block p:first-child {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-align: center;
    }
    .header-block p:last-child {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        color: #0B0F20D6;
        text-align: center;
    }
    .header-block p:last-child a {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        color: #0B0F20D6;
        text-align: center;
    }
    .header-block a {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .3s ease;
    }
    .sing {
        text-decoration: none;
        transition: .3s ease;
    }
    .sing:hover {
        text-decoration: underline;
    }
    .nav-free {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20;
        width: 220px;
        height: 47px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #0B0F20D6;
        border-radius: 100px;
        background-color: transparent;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }
    .nav-free:hover {
        background-color: #CFD9FF;
        text-decoration: none;
    }
    .call {
        display: none;
        border: none;
        background-color: transparent;
    }
    .burger {
        display: none;
        border: none;
        background-color: transparent;
        cursor: pointer;
    }
    .header-mobile {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background-color: white;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        transform: translateY(-100%);
        opacity: 0;
        z-index: -2;
        pointer-events: none;
        padding: 100px 20px 20px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .header-mobile.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    body.no-scroll {
        overflow: hidden;
    }
    .mobile-block {
        border-bottom: 1px solid #0B0F2038;
    }
    .mobile-block button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: none;
        background-color: transparent;
    }
    .mobile-block button span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20D6;
    }
    .mobile-cards {
        display: flex;
        flex-direction: column;
        height: 0;
        overflow: hidden;
        transition: height 0.5s ease;
        gap: 10px;
    }
    .mobile-card {
        display: flex;
        align-items: center;
        text-decoration: none;
        justify-content: space-between;
        height: auto;
        padding: 10px 0px 10px 0px;
        gap: 10px;
    }
    .mobile-card svg {
        width: 36px;
        min-width: 36px;
        height: 36px;
        max-height: 36px;
    }
    .mobile-card-block {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .mobile-card-block span {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        max-width: 640px;
    }
    .mobile-card-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20;
        width: 100%;
        max-width: 640px;
    }
    .mobile-cards.open {
        height: auto;
    }
    .mobile-arrow {
        transition: transform 0.5s ease;
        cursor: pointer;
    }
    .rotate {
        transform: rotate(180deg);
    }
    .mobile-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        border-bottom: 1px solid #0B0F2038;
    }
    .mobile-title {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20D6;
        text-decoration: none;
    }
    .mobile-links a {
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 56px;
    }
    .mobile-links a span {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .mobile-free {
        width: 100%;
        height: 44px;
        min-height: 44px;
        background-color: #5D7CFF;
        border-radius: 100px;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
        border: none;
        cursor: pointer;
        transition: .3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        margin-bottom: 100px;
    }
    .mobile-free:hover {
        background-color: #244EFF;
    }
    .message {
        position: fixed;
        text-decoration: none;
        right: 40px;
        bottom: 40px;
        width: 193px;
        height: 47px;
        border-radius: 100px;
        background-color: #4DE060;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 30px 0px 30px;
        cursor: pointer;
        opacity: 1;
        transition: .3s ease;
    }
    .message.hidden {
        opacity: 0;

    }
    .message span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
    }
    .index {
        padding: 150px 0px 0px 20px;
    }
    .main-padding {
        padding: 0px;
    }
    .main-container {
        width: 100%;
        max-width: 1380px;
        position: relative;
        z-index: 5;
    }
    .main-decoration {
        position: absolute;
        top: 0;
        right: 0;
        z-index: -2;
        width: 900px;
    }
    .main-content {
        width: 100%;
        max-width: 1380px;
        display: flex;
        justify-content: space-between;
    }
    .main-left {
        width: 100%;
        max-width: 580px;
        position: relative;
        top: 90px;
        margin-bottom: 20px;
    }
    .main-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        max-width: 550px;
        margin: 10px 0px 20px 0px;
    }
    .main-buttons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .main-register {
        width: 100%;
        max-width: 280px;
        height: 47px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #5D7CFF !important;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff !important;
        border: none !important;
        transition: .3s ease;
        cursor: pointer;
        text-decoration: none;
    }
    .main-register:disabled {
        background-color: #ccc !important;
        cursor: not-allowed;
        opacity: 0.6;
    }
    .main-register:hover {
        background-color: #244EFF !important;
    }
    .main-speak {
        width: 100%;
        max-width: 280px;
        height: 47px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #0B0F20D6;
        background-color: #fff;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }
    .main-speak:hover {
        background-color: #CFD9FF;
    }
    .main-rating {
        display: flex;
        align-items: center;
        gap: 17.5px;
        margin-top: 180px;
    }
    .main-company {
        margin: 150px 0px 160px 0px;
        padding: 0px 20px 0px 0px;
    }
    .main-company h2 {
        color: #0B0F20;
        text-align: center;
        margin-bottom: 40px;
    }
    .main-block {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }
    .main-block img {
        width: 230px;
    }
    .main-right {
        position: relative;
    }
    .main-slide-people {
        margin-bottom: 0px;
        position: relative;
        left: 131px;
    }
    .main-slider-container {
        width: 100%;
        max-width: 680px;
        position: relative;
        overflow: hidden;
    }
    .main-slider-slides {
        display: flex;
        align-items: center;
        transition: transform 0.5s ease-in-out;
        position: relative;
        gap: 50px;
    }
    .main-slider-slide {
        flex: 0 0 680px;
        height: auto;
        opacity: 0.6;
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        background-color: transparent;
        position: relative;
        transform: scale(0.94);
    }
    .main-slide-content {
        background-color: #fff;
        border-radius: 6px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
    }
    .main-slider-slide.active {
        opacity: 1;
        transform: scale(1);
    }
    .main-slider-buttons {
        display: flex;
        align-items: center;
        gap: 10px;
        position: absolute;
        left: 700px;
        top: 407px;
    }
    .main-slider-prev-button,
    .main-slider-next-button {
        border: none;
        background-color: transparent;
        cursor: pointer;
    }
    .main-slider-text p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .main-slider-add {
        display: flex;
        flex-direction: column;
        align-items: end;
    }
    .main-slider-add span {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 22px;
        line-height: 33px;
        color: #0B0F20;
    }
    .main-slider-add p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .main-slider-decoration {
        position: absolute;
        left: 0px;
        bottom: 270px;
    }
    .txt-ucfirst {
        text-transform: capitalize;
    }
    .error {
        color: red;
    }
    .error_el {
        border: 1px solid red !important;
    }
    .error-text {
        display: none;
        margin-left: 15px;
        font-weight: bold;
        color: red;
        padding-top: 3px;
        font-family: 'Poppins';
        font-size: 12px;
    }
    .this-statement {
        text-decoration: underline;
        cursor: pointer;
        top: 0 !important;
    }
    #statement-full {
        font-size: 11px;
        display: none;
        width: 90%;
        max-width: 640px;
    }
    #statement-about {
        width: 100%
    }
    .hidden {
        display: none
    }
    .bg-transparent {
        background-color: transparent !important;
    }
    .pb-0 {
        padding-bottom: 0px !important;
    }
    .mb-0 {
        margin-bottom: 0px !important;
    }
    .mb-07 {
        margin-bottom: 7px !important;
    }
    .mb-10 {
        margin-bottom: 10px !important;
    }
    .mb-20 {
        margin-bottom: 20px !important;
    }
    .mb-30 {
        margin-bottom: 30px !important;
    }
    .mb-40 {
        margin-bottom: 40px !important;
    }
    .mb-60 {
        margin-bottom: 60px !important;
    }
    .mb-100 {
        margin-bottom: 100px !important;
    }
    .mt-30 {
        margin-top: 30px !important;
    }
    .ml-20 {
        margin-left: 20px !important;
    }
    .ml-40 {
        margin-left: 40px !important;
    }
    .mld-40 {
        margin-left: 40px !important;
    }
    .m-0 {
        margin: 0 !important;
    }
    .p-0 {
        padding: 0 !important;
    }
    .m-auto {
        margin: auto !important;
    }
    .w-100 {
        width: 100%;
    }
    .add-radius {
        border-radius: 6px 6px 0px 0px;
    }
    .faq-section-wrapper {
        display: flex;
        justify-content: center;
        padding: 60px 20px 0px;
        background-color: #F9FAFF;
    }
    .faq-section-container {
        width: 100%;
        max-width: 1146px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .faq-details {
        border: 1px solid #0B0F2038;
        border-radius: 6px;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        transition: all 0.3s ease;
    }
    .faq-details:hover {
        border-color: #0B0F20D6;
    }
    .faq-details[open] {
        border-color: #5D7CFF;
    }
    .faq-summary {
        cursor: pointer;
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        color: #0B0F20;
        outline: none;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
    }
    .faq-summary::after {
        content: '+';
        font-size: 28px;
        color: #5D7CFF;
        transition: transform 0.3s ease;
    }
    .faq-details[open] .faq-summary::after {
        content: '−';
        transform: rotate(180deg);
    }
    .faq-answer {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #0B0F2014;
    }
    .success {
        display: flex;
        justify-content: center;
    }
    .success-container {
        position: relative;
        width: 100%;
        max-width: 1920px;
        background-color: #FFAC7E;
        height: 518px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 39px;
        padding: 0px 20px 0px 20px;
        border-radius: 6px 6px 0px 0px;
        margin: 0 auto;
        overflow: hidden;
    }
    .success-radius {
        border-radius: 6px 6px 6px 6px;
    }
    .success-radius2 {
        border-radius: 0px 0px 6px 6px;
    }
    .add-radius {
        border-radius: 6px 6px 6px 6px;
    }
    .success-decoration1 {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
    }
    .success-decoration2 {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
    }
    .success-block-left {
        width: 100%;
        max-width: 390px;
        height: auto;
        /*text-align: right;*/
        text-align: center;
        z-index: 2;
    }
    .success-block-left span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 64px;
        /*font-size: 180px;*/
        line-height: 83.2px;
        /*line-height: 140px;*/
        color: #0B0F20;
    }
    .success-block-left p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .success-block-left2 p {
        margin: -10px 0px 10px 0px;
        text-transform: uppercase;
    }
    .success-block-center {
        width: 100%;
        max-width: 522px;
        height: 172px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 2;
        text-align: center;
    }
    .success-block-center span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 180px;
        /*font-size: 64px;*/
        color: #0B0F20;
        line-height: 140px;
        /*line-height: 83.2px;*/
        margin-bottom: -10px;
    }
    .success-block-center p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-transform: uppercase;
    }
    .success-block-right {
        width: 100%;
        max-width: 390px;
        height: auto;
        z-index: 2;
        text-align: center;
    }
    .success-block-right span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 64px;
        /*font-size: 180px;*/
        line-height: 83.2px;
        /*line-height: 140px;*/
        color: #0B0F20;
    }
    .success-block-right p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-align: center;
    }
    .success-block-right2 p {
        margin: -10px 0px 10px 0px;
        text-transform: uppercase;
    }
    .reputation {
        display: flex;
        justify-content: center;
    }
    .reputation h2 {
        color: #fff;
        width: 100%;
        max-width: 1380px;
        text-align: center;
        margin-bottom: 40px;
    }
    .reputation-container {
        width: 100%;
        max-width: 1920px;
        background-color: #323544;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 190px 20px 200px 20px;
        border-radius: 0px 0px 6px 6px;
    }
    .calculator-container {
        width: 100%;
        max-width: 1920px;
        background-color: #323544;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 100px 20px 200px 20px;
        border-radius: 0;
    }
    .calculator-main-container {
        padding-bottom: 80px;
    }
    .reputation-block-smalls {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .reputation-block-small {
        padding: 20px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        border-radius: 6px;
        width: 100%;
        max-width: 680px;
        height: auto;
        display: flex;
        flex-direction: column;
        height: 100%;
        gap: 5px;
    }
    .reputation-block-small svg {
        margin-bottom: 5px;
    }
    .reputation-title {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .reputation-title span {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        text-transform: uppercase;
    }
    .reputation-title p {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }
    .reputation-subtitle {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .reputation-block-big {
        padding: 20px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        border-radius: 6px;
        width: 100%;
        max-width: 1380px;
        height: auto;
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 5px;
    }
    .reputation-block-big svg {
        margin-bottom: 5px;
    }
    .reputation-register {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin-top: 10px;
        width: 100%;
        max-width: 221px;
        border: none;
        cursor: pointer;
        text-decoration: underline;
    }
    .reputation-block-big .reputation-subtitle {
        width: 100%;
        max-width: 640px;
    }
    .reputation-start {
        width: 100%;
        max-width: 265px;
        height: 47px;
        border-radius: 100px;
        /*background-color: #fff;*/
        background-color: #5D7CFF;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 40px;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }
    .reputation-start:hover {
        /*background-color: #CFD9FF;*/
        background-color: #244EFF !important;
        /*color: #A0A0A0;*/
    }
    .reputation-start.disabled {
        background-color: #E0E0E0;
        /* Light gray background */
        color: #A0A0A0;
        /* Gray text color */
        cursor: not-allowed;
        /* Change cursor to indicate disabled state */
        opacity: 0.7;
        /* Reduce opacity for a "disabled" effect */
        pointer-events: none;
        /* Prevent any click events */
    }
    .reputation-decoration {
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .process {
        display: flex;
        justify-content: center;
        margin: 100px 0px 160px 0px;
    }
    .process h2 {
        color: #0B0F20;
        text-align: center;
        margin-bottom: 60px;
    }
    .process-container {
        width: 100%;
        max-width: 1380px;
    }
    .process-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1380px;
    }
    .process-card img {
        width: 250px;
    }
    .process-card1 {
        position: relative;
        left: 10px;
    }
    .process-card3 {
        position: relative;
        left: 10px;
    }
    .process-card5 {
        position: relative;
        left: 10px;
    }
    .process-card7 {
        position: relative;
        left: 10px;
    }
    .process-card-left {
        padding: 0px 115px 0px 300px;
    }
    .process-card-right {
        padding: 0px 300px 0px 115px;
    }
    .process-card-information {
        width: 100%;
        max-width: 445px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .process-card-information span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }
    .process-card-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .wide-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .process-card-block {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 27.5px;
        position: relative;
    }
    .process-card-line {
        width: 2px;
        height: 100px;
        background-color: #0B0F200F;
    }
    .process-card-line-last {
        height: 218px;
    }
    .process-start {
        width: 100%;
        max-width: 265px;
        height: 47px;
        padding: 0px 30px 0px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #5D7CFF;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border-radius: 100px;
        margin: 60px auto 0 auto;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }
    .process-start:hover {
        background-color: #244EFF;
    }
    .oai-start {
        width: 100%;
        max-width: 322px;
        height: 47px;
        padding: 0px 30px 0px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #5D7CFF;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border-radius: 100px;
        margin: 60px auto 0 auto;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }
    .oai-start:hover {
        background-color: #244EFF;
    }
    .eoai-container {
        padding: 30px 0 0 0;
        background: #EFF0F1;
    }
    .eoai-start {
        width: 100%;
        max-width: 356px;
        height: 47px;
        padding: 0px 30px 0px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #5D7CFF;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border-radius: 100px;
        margin: 60px auto 0 auto;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }
    .eoai-start:hover {
        background-color: #244EFF;
    }
    .process-content-mobile {
        display: none;
        flex-direction: column;
        gap: 20px;
    }
    .process-card-mobile {
        background-color: #fff;
        border-radius: 6px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .process-card-mobile-information {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
        max-width: 660px;
    }
    .process-card-mobile-information svg {
        margin-bottom: 5px;
    }
    .process-card-mobile-information span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }
    .process-card-mobile-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .process-card-mobile img {
        width: 200px;
        height: 200px;
    }
    .case {
        display: flex;
        justify-content: center;
    }
    .office-case {
        margin-bottom: 160px;
    }
    .case h2 {
        color: #fff;
    }
    .case-container {
        width: 100%;
        max-width: 1920px;
        background-color: #323544;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 150px 0px 130px 270px;
        overflow: hidden;
        border-radius: 6px 6px 0px 0px;
    }
    .case-information {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1380px;
        margin: 0 auto 40px 0;
        padding: 0px 20px 0px 0px;
    }
    .slide-left {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 500px;
    }
    .slide-brand1 {
        width: 400px;
    }
    .slide-brand2 {
        width: 360px;
    }
    .slide-brand3 {
        width: 221px;
    }
    .slide-left p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .slide-right {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .slide-card {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 530px;
    }
    .slide-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }
    .slide-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .slide-decoration {
        position: absolute;
        left: 0;
        bottom: 0;
    }
    .slider-container {
        width: 100%;
        max-width: 1650px;
        position: relative;
        overflow: hidden;
    }
    .slides {
        display: flex;
        align-items: center;
        height: 500px;
        transition: transform 0.5s ease-in-out;
        position: relative;
    }
    .slide {
        flex: 0 0 1031px;
        height: 500px;
        margin-right: 0px;
        opacity: 0.4;
        transform: scale(.9);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        background-color: #fff;
        padding: 40px 40px 0px 40px;
        border-radius: 6px;
        position: relative;
        z-index: 1;
    }
    .slide.active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }
    .slide-container {
        display: flex;
        justify-content: space-between;
    }
    .slider-content {
        height: 100%;
        border: 1px solid #FFFFFF;
    }
    .slider-buttons {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .slider-button {
        border: none;
        background-color: transparent;
        cursor: pointer;
    }
    .indicators {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 60px 0px 0px 0px;
        position: relative;
        left: -130px;
    }
    .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        cursor: pointer;
        background-color: #6A6D77;
    }
    .indicator.active {
        background-color: #CACBCE;
    }
    .choose {
        display: flex;
        justify-content: center;
    }
    .choose h2 {
        color: #0B0F20;
        margin-bottom: 40px;
        text-align: center;
    }
    .choose-container {
        width: 100%;
        max-width: 1920px;
        background-color: #CFD9FF;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 150px 20px 160px 20px;
        overflow: hidden;
        border-radius: 0px 0px 6px 6px;
    }
    .choose-play2 {
        display: none;
    }
    .choose-card-smalls {
        display: flex;
        gap: 20px;
    }
    .choose-card-small {
        display: flex;
        flex-direction: column;
        gap: 5px;
        border-radius: 6px;
        padding: 20px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        width: 100%;
        max-width: 680px;
        background-color: #fff;
    }
    .choose-card-information {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .choose-card-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        text-transform: uppercase;
    }
    .choose-card-block {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .choose-card-block span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }
    .choose-card-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .choose-schedule {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin: 65px 0px 0px 0px;
        border: none;
        background-color: transparent;
        cursor: pointer;
        text-decoration: underline;
    }
    .choose-card-big {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        border-radius: 6px;
        padding: 20px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        width: 100%;
        max-width: 1380px;
        background-color: #fff;
        height: auto;
    }
    .choose-card-left {
        width: 100%;
        max-width: 640px;
    }
    .choose-card-right {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;

    }
    .choose-card-right img {
        width: 660px;
        height: 370px;
    }
    .choose-play {
        position: absolute;
    }
    .choose-play2 {
        display: none;
    }
    .reviews {
        display: flex;
        justify-content: center;
        margin: 160px 0px 160px 0px;
        padding: 0px 20px 0px 20px;
    }
    .reviews-talk {
        margin: 160px 0px 0px 0px;
    }
    .reviews-container {
        width: 100%;
        max-width: 908px;
    }
    .serve {
        display: flex;
        justify-content: center;
        margin: 0px 20px 160px 20px;
    }
    .serve h2 {
        text-align: center;
        margin-bottom: 20px;
        color: #0B0F20;
    }
    .serve-container {
        width: 100%;
        max-width: 1380px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .serve-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .serve-card {
        width: 446.67px;
        height: 318px;
        padding: 20px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        display: flex;
        flex-direction: column;
        border-radius: 6px;
        gap: 5px;
    }
    .serve-card-white {
        background-color: #fff;
    }
    .serve-card-blue {
        background-color: #CFD9FF;
    }
    .serve-card-orange {
        background-color: #FFDAC5;
    }
    .serve-card-information {
        display: flex;
        flex-direction: column;
    }
    .serve-card-information span {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        margin: 10px 0px 5px 0px;
        text-transform: uppercase;
    }
    .serve-card-information p {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }
    .serve-card-subtitle {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .serve-start {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 265px;
        height: 47px;
        background-color: #fff;
        border: 1px solid #0B0F20D6;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        border-radius: 100px;
        margin-top: 60px;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }
    .serve-start:hover {
        background-color: #CFD9FF;
    }
    .key {
        display: flex;
        justify-content: center;
        margin-bottom: 133px;
        padding: 0px 20px 0px 20px;
    }
    .key h2 {
        text-align: center;
        margin-bottom: 60px;
        color: #0B0F20;
    }
    .key-container {
        width: 100%;
        max-width: 1380px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .key-cards {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .key-card {
        width: 100%;
        max-width: 680px;
        padding: 20px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        background-color: #323544;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .key-card svg {
        margin-bottom: 5px;
    }
    .key-card-container {
        display: flex;
        gap: 20px;
    }
    .key-card-big {
        width: 100%;
        max-width: 1380px;
        padding: 20px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        background-color: #323544;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
    }
    .key-card-decoration {
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .key-card-information {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
        max-width: 620px;
    }
    .key-card-information span {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFF9C;
        text-transform: uppercase;
    }
    .key-card-information p {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #fff;
    }
    .key-card-subtitle {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
        width: 100%;
        max-width: 640px;
    }
    .key-start {
        width: 100%;
        max-width: 265px;
        height: 47px;
        border-radius: 100px;
        background-color: #5D7CFF;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 70px;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }
    .key-start:hover {
        background-color: #244EFF;
    }
    .blog {
        display: flex;
        justify-content: center;
        margin-bottom: 160px;
        padding: 0px 20px 0px 20px;
        width: 100%;
        height: auto;
    }
    .blog img {
        width: 100%;
        height: auto;
    }
    .blog-container {
        width: 100%;
        max-width: 908px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .consultation {
        display: flex;
        justify-content: center;
        margin-bottom: 160px;
        padding: 0px 20px 0px 20px;
    }
    .consultation-container {
        width: 100%;
        max-width: 1700px;
        display: flex;
        flex-direction: column;
        align-items: start;
        background-color: #5D7CFF;
        height: auto;
        border-radius: 6px;
        padding: 150px 160px 150px 160px;
        position: relative;
    }
    .consultation-content {
        width: 100%;
        max-width: 890px;
        z-index: 2;
    }
    .consultation-container h2 {
        width: 100%;
        max-width: 890PX;
        color: #FFF;
    }
    .consultation-container p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
        margin: 10px 0px 30px 0px;
        width: 100%;
        max-width: 640px;
        z-index: 2;
    }
    .consultation-get {
        width: 100%;
        max-width: 270px;
        height: 47px;
        border: 1px solid #0B0F20D6;
        background-color: #fff;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s ease;
        cursor: pointer;
        text-decoration: none;
    }
    .consultation-get:hover {
        background-color: #CFD9FF;
    }
    .action-btn {
        /*width: 270px;*/
        /*max-width: 270px;*/
        padding: 0 10px 0 10px;
        height: 47px;
        border: 1px solid #0B0F20D6;
        background-color: #fff;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        border-radius: 100px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: .3s ease;
        cursor: pointer;
        text-decoration: none;
    }
    .action-btn:hover {
        background-color: #CFD9FF;
    }
    .consultation-decoration1 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .consultation-decoration2 {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
    .consultation-buttons-container {
        display: flex;
        gap: 10px;
    }
    .footer-container {
        width: 100%;
        max-width: 1920px;
        background-color: #323544;
        padding: 160px 20px 30px 20px;
        position: relative;
    }
    .footer-width {
        width: 100%;
        max-width: 1380px;
        margin: 0 auto;
        z-index: 2;
        position: relative;
    }
    .footer-contant {
        display: flex;
        justify-content: space-between;
        height: auto;
        margin-bottom: 97px;
        gap: 20px;
    }
    .footer-decoration {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
    }
    .footer-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
    }
    .footer-information img {
        width: 450px;
    }
    .footer-texts {
        margin: 30px 0px 60px 0px;
    }
    .footer-texts-hidden2 {
        display: none;
    }
    .footer-text1 {
        width: 100%;
        max-width: 563px;
        margin-bottom: 60px;
    }
    .footer-text2 {
        width: 100%;
        max-width: 330px;
        margin-bottom: 20px;
    }
    .footer-text3 {
        width: 100%;
        max-width: 330px;
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .footer-contacts span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #FFFFFFD6;
    }
    .footer-socials {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 60px;
        width: 100%;
        max-width: 716px;
        max-height: 793px;
    }
    .footer-links-left {
        width: 100%;
        max-width: 240px;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .footer-links-right {
        width: 100%;
        max-width: 416px;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .footer-link {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .footer-link span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #FFFFFFD6;
    }
    .footer-link a {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
        transition: .3s ease;
        text-decoration: none;
    }
    .footer-link a:hover {
        text-decoration: underline;
    }
    .footer-link240 {
        width: 100%;
        max-width: 240px;
    }
    .footer-link416 {
        width: 100%;
        max-width: 416px;
    }
    .footer-link300 {
        width: 100%;
        max-width: 300px;
    }
    .footer-link296 {
        width: 100%;
        max-width: 300px;
    }
    .footer-down {
        display: flex;
        justify-content: space-between;
    }
    .footer-down p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFF9C;
    }
    .footer-down a {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFF9C;
        text-decoration: none;
    }
    .footer-down a:hover {
        text-decoration: underline;
    }
    .main-talk-left {
        max-width: 870px;
        top: 0px;
    }
    .main-talk-information p {
        margin: 0px 0px 10px 0px;
    }
    .main-talk-information span {
        font-family: 'Poppins';
        font-weight: 700;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    ;
    }
    .main-talk-info {
        text-transform: uppercase;
    }
    .main-talk-buttons {
        margin: 20px 0px 10px 0px;
        width: 100%;
        max-width: 580px;
    }
    .case-talk-container {
        padding: 150px 0px 130px 270px;
        background-color: transparent;
    }
    .case-talk-container h2 {
        color: #0B0F20;
    }
    .main-add-text {
        color: #0B0F209C;
    }
    .consultation-talk {
        margin: 0px 0px 160px 0px;
    }
    .main-company-cards {
        width: 100%;
        max-width: 1380px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin: 20px 0px 150px 0px;
    }
    .main-company-card {
        width: 100%;
        max-width: 447px;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        display: flex;
        flex-direction: column;
        gap: 5px;
        border-radius: 6px;
    }
    .main-company-card svg {
        margin-bottom: 5px;
    }
    .main-company-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20D6;
    }
    .main-company-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .main-talk-company {
        margin: 150px 0px 160px 0px;
    }
    .faq {
        display: flex;
        justify-content: center;
        margin: 160px 0px 160px 0px;
    }
    .faq-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 160px;
    }
    .main-faq-register {
        max-width: 340px;
        margin-top: 20px;
    }
    .faq-search {
        width: 100%;
        max-width: 680px;
        position: relative;
        height: 47px;
        padding: 0px 20px 0px 20px;
    }
    .faq-search input {
        width: 100%;
        max-width: 680px;
        height: 47px;
        border-radius: 6px;
        padding: 10px 60px 10px 20px;
        border: 1px solid #0B0F2038;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .3s ease;
    }
    .faq-search input::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }
    .faq-search input:hover {
        border: 1px solid #0B0F20D6;
    }
    .faq-search input:focus {
        outline: none;
    }
    .faq-search button {
        position: absolute;
        right: 40px;
        top: 27%;
        border: none;
        background-color: transparent;
    }
    .faq-cards {
        width: 100%;
        max-width: 1380px;
    }
    .faq-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }
    .faq-card {
        width: 100%;
        max-width: 447px;
        height: auto;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px;
    }
    .video-container {
        width: 100%;
    }
    .video-container iframe {
        width: 100%;
        aspect-ratio: 16/9;
        border: 0;
    }
    .thank-you-pop img {
        width: 76px;
        height: auto;
        margin: 0 auto;
        display: block;
        margin-bottom: 25px;
    }
    .results-card {
        width: 100%;
        /*max-width: 447px;*/
        height: auto;
        box-shadow: 14px 14px 14px 10px #aaa;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px;
    }
    .faq-card-last {
        background-color: transparent;
        box-shadow: none;
        margin-bottom: -40px;
    }
    .faq-card-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .faq-card-container span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20D6;
    }
    .faq-card-container a {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-decoration: none;
        transition: .2s ease;
    }
    .faq-card-container a:hover {
        text-decoration: underline;
    }
    .faq-card-block .see-all {
        border: none;
        background-color: transparent;
        cursor: pointer;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin-top: 20px;
        text-decoration: none;
        transition: .3s ease;
    }
    .faq-card-block .see-all:hover {
        text-decoration: underline;
    }
    .board {
        display: flex;
        justify-content: center;
        margin-bottom: 160px;
        padding: 0px 20px 0px 20px;
    }
    .board-container {
        width: 100%;
        max-width: 1700px;
        height: auto;
        padding: 150px 0px 150px 160px;
        background-color: #FFAC7E;
        border-radius: 6px;
        position: relative;
        overflow: hidden;
    }
    .board-decoration1 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .board-decoration2 {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
    .board-container p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        z-index: 2;
        position: relative;
    }
    .board-container span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 46px;
        line-height: 59.8px;
        color: #0B0F20;
        z-index: 2;
    }
    .board-information {
        width: 100%;
        max-width: 630px;
        z-index: 2;
        gap: 10px;
        display: flex;
        flex-direction: column;
    }
    .board-block {
        display: flex;
        width: 100%;
        max-width: 720px;
        gap: 20px;
        margin: 20px 0px 20px 0px;
        z-index: 2;
        position: relative;
    }
    .board-block input {
        border: 1px solid #0B0F2038;
        background-color: #fff;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        padding: 10px 20px 10px 20px;
        border-radius: 6px;
        height: 47px;
        transition: .3s ease;
    }
    .board-block input:hover {
        border: 1px solid #0B0F20D6;
    }
    .board-block input:focus {
        outline: none;
    }
    .board-block input::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }
    .board-name {
        width: 100%;
        max-width: 300px;
    }
    .board-email {
        width: 100%;
        max-width: 400px;
    }
    .board-container button {
        width: 100%;
        max-width: 150px;
        border: 1px solid #0B0F20D6;
        background-color: #fff;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        height: 47px;
        cursor: pointer;
        transition: .3s ease;
        z-index: 2;
    }
    .board-container button:hover {
        background-color: #CFD9FF;
    }
    .option {
        display: flex;
        justify-content: center;
        margin: 160px 0px 160px 0px;
    }
    .option h2 {
        color: #0B0F20;
        text-align: center;
        margin-bottom: 60px;
    }
    .option-container {
        width: 100%;
        max-width: 1460px;
    }
    .option-cards {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    .option-card {
        width: 100%;
        max-width: 1460px;
        padding: 40px;
        border-radius: 6px;
        height: auto;
    }
    .option-card-continer {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .option-card-information {
        width: 100%;
        max-width: 713px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .main-faq-information p {
        margin: 10px 0px 0px 0px;
    }
    .option-card-title {
        color: #0B0F209C;
        text-transform: uppercase;
    }
    .option-card-information span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }
    .option-card-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .option-card-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .option-card-accepts {
        display: flex;
        align-items: start;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        max-width: 720px;
    }
    .option-card-accepts.more {
        height: 138px;
    }
    .option-card-accepts-container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        height: 103px;
        gap: 10px;
        width: 100%;
        max-width: 795px;
    }
    .option-card-accepts3 {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .option-card-accepts-block {
        display: flex;
        gap: 10px;
    }
    .option-card-accepts-last {
        margin-top: 10px;
    }
    .option-card-accepts-block svg {
        min-width: 26px;
    }
    .option-card-accepts-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .option-card-pay {
        width: 450px;
        min-width: 450px;
        height: 295px;
        border-radius: 6px;
        padding: 20px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 6px;
    }
    .option-card-pay h2 {
        color: #0B0F20;
    }
    .option-card-pay-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .option-card-pay-block {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .option-card-pay-block span {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        /*color: #0B0F2038;*/
        color: #666;
    }
    .option-card-pay-block p {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 46px;
        line-height: 59.8px;
        color: #0B0F20;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .option-card-pay-container a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 47px;
        border: 1px solid #0B0F20D6;
        border-radius: 100px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        background-color: #fff;
        transition: .3s ease;
        cursor: pointer;
        text-decoration: none;
    }
    .option-card-pay-container a:hover {
        background-color: #CFD9FF;
    }
    .option-card-dark {
        background-color: #323544;
    }
    .option-card-dark .option-card-information span {
        color: #FFFFFF;
    }
    .option-card-dark .option-card-title {
        color: #FFFFFF9C;
    }
    .option-card-dark .option-card-information p {
        color: #FFFFFFD6;
    }
    .option-card-dark .option-card-accepts-block p {
        color: #FFFFFFD6;
    }
    .option-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .option-mobile-cards {
        padding: 20px;
        display: none;
        flex-direction: column;
        gap: 20px;
    }
    .option-mobile-cards-blue {
        background-color: #323544;
    }
    .option-mobile-cards-blue .option-card-information p {
        color: #FFFFFFD6;
    }
    .option-mobile-cards-blue .option-card-information span {
        color: #fff;
    }
    .option-mobile-cards-blue .option-card-accepts-block p {
        color: #FFFFFFD6;
    }
    .option-card-block {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .table {
        display: flex;
        justify-content: center;
        padding: 0px 20px 0px 20px;
        margin-bottom: 160px;
    }
    .table-container {
        width: 100%;
        max-width: 1380px;
    }
    .tables {
        width: 100%;
        max-width: 1380px;
        display: flex;
        flex-direction: column;
        align-items: end;
    }
    .table-add {
        width: 100%;
        max-width: 1380px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 47px;
        border: 1px solid #0B0F2038;
        padding: 0px 20px 0px 20px;

    }
    .table-add-tm {
        width: 100%;
        max-width: 1380px;
        display: flex;
        align-items: center;
        justify-content: left;
        height: 47px;
        border: 1px solid #0B0F2038;
        padding: 0px 20px 0px 20px;

    }
    .table-line1 {
        width: 100%;
        max-width: 1380px;
        display: flex;
        align-items: center;
        justify-content: end;
    }
    .table-line2 {
        width: 100%;
        max-width: 1380px;
        display: flex;
        align-items: center;
        justify-content: end;
    }
    .table-add p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .table-line1 p {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .table-line2 p {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .table-line2 p span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F2038;
    }
    .table-content {
        width: 100%;
        max-width: 1380px;
        display: flex;
        align-items: center;
    }
    .table-content-tm {
        width: 100%;
        max-width: 1380px;
        display: flex;
    }
    .table-title {
        width: 100%;
        max-width: 400px;
    }
    .table-title-tm {
        width: 100%;
        max-width: 70px;
    }
    .table-title-radius {
        border-radius: 0px 0px 6px 0px;
    }
    .table-title.hidden {
        border: none;
    }
    .table-block {
        width: 100%;
        height: 47px;
        padding: 0px 20px 0px 20px;
        display: flex;
        align-items: center;
    }
    .table-block-tm {
        width: 100%;
        height: auto;
        padding: 0px 20px 0px 20px;
        display: flex;
        align-items: center;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .table-block-flag {
        width: 100%;
        height: auto;
        padding: 15px 20px 0px 20px;
        display: flex;
        align-items: start;
    }
    .table-top {
        border-top: 1px solid #0B0F2038;
        border-left: 1px solid #0B0F2038;
    }
    .table-right {
        border-right: 1px solid #0B0F2038;
    }
    .table-block1 {
        border-left: 1px solid #0B0F2038;
    }
    .table-block2 {
        border-left: 1px solid #0B0F2038;
    }
    .table-block3 {
        border-left: 1px solid #0B0F2038;
    }
    .table-block4 {
        border-right: 1px solid #0B0F2038;
    }
    .table-block5 {
        border-left: 1px solid #0B0F2038;
    }
    .table-block6 {
        border-bottom: 1px solid #0B0F2038;
    }
    .table-radius1 {
        border-radius: 6px 0px 0px 0px;
    }
    .table-radius13 {
        border-radius: 6px 6px 0px 0px;
    }
    .table-radius2 {
        border-radius: 0px 6px 0px 0px;
    }
    .table-radius3 {
        border-radius: 6px 0px 0px 0px;
    }
    .table-radius4 {
        border-radius: 0px 0px 0px 6px;
    }
    .table-radius41 {
        border-radius: 6px 0px 0px 6px;
    }
    .table-radius5 {
        border-radius: 0px 0px 6px 0px;
    }
    .table-radius51 {
        border-radius: 0px 6px 6px 0px;
    }
    .table-radius45 {
        border-radius: 0px 0px 6px 6px;
    }
    .table-blue {
        background-color: #CFD9FF;
    }
    .table-gray1 {
        background-color: #0B0F2008;
    }
    .table-information {
        margin-bottom: 60px;
    }
    .table h2 {
        color: #0B0F20;
        text-align: center;
    }
    .table-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        max-width: 640px;
        text-align: center;
        margin: 0 auto;
    }
    .table-justify {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .table-stats {
        width: 100%;
        max-width: 124px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #5D7CFF;
        border-radius: 100px;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
    }
    .start {
        display: flex;
        justify-content: center;
        padding: 0px 20px 0px 20px;
    }
    .start-search-h2 {
        text-align: center;
        color: #0B0F20;
        margin-bottom: 60px;
    }
    .start-container {
        width: 100%;
        max-width: 1700px;
        height: auto;
        border-radius: 6px;
        padding: 142px 160px 141px 160px;
        background-color: #fff;
        position: relative;
        margin: 0 auto;
        overflow: hidden;
    }
    .start-container-gold {
        padding: 142px 160px 141px 0px;
        display: flex;
        justify-content: end;
        margin-top: 60px;
        border-radius: 6px;
        overflow: hidden;
    }
    .start-decoration1 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .start-decoration2 {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
    .start-information h2 {
        color: #0B0F20;
        z-index: 2;
        position: relative;
    }
    .start-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin: 10px 0px 30px 0px;
        width: 100%;
        max-width: 640px;
        z-index: 2;
        position: relative;
    }
    .start-information a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 260px;
        height: 47px;
        background-color: #5D7CFF;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border: none;
        z-index: 2;
        position: relative;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }
    .start-information .start-button {
        max-width: 200px;
    }
    .start-information a:hover {
        background-color: #244EFF;
    }
    .start-information .blog-start {
        max-width: 414px;
    }
    .should {
        display: flex;
        justify-content: center;
    }
    .should-container {
        display: flex;
        justify-content: center;
        background-color: #323544;
        width: 100%;
        max-width: 1920px;
        border-radius: 6px 6px 0px 0px;
    }
    .should-information {
        width: 100%;
        max-width: 1134px;
        padding: 140px 20px 160px 20px;
        display: flex;
        align-items: end;
        justify-content: space-between;
    }
    .should-left h2 {
        color: #fff;
        width: 100%;
        max-width: 610px;
    }
    .should-left p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
        width: 100%;
        max-width: 470px;
    }
    .should-block span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 64px;
        line-height: 83.2px;
        color: #FF8C4C;
    }
    .should-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
        text-transform: uppercase;
    }
    .should-right {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .case-why-container {
        padding: 150px 0px 130px 270px;
        background-color: #EFF0F1;
        border-radius: 6px;
    }
    .case-add {
        border-radius: 0px 0px 6px 6px;
    }
    .we {
        display: flex;
        justify-content: center;
        margin-top: 160px;
    }
    .we-container {
        width: 100%;
        max-width: 1920px;
        background-color: #323544;
        padding: 140px 20px 160px 20px;
        display: flex;
        justify-content: center;
        gap: 20px;
        border-radius: 6px 6px 0px 0px;
    }
    .we-blocks {
        width: 100%;
        max-width: 1380px;
        height: auto;
        gap: 60px;
        display: flex;
        flex-direction: column;
    }
    .we-content {
        display: flex;
        gap: 20px;
        justify-content: space-between;
    }
    .main-why-information button {
        width: 100%;
        max-width: 280px;
        height: 47px;
        background-color: #5D7CFF;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFF;
        border-radius: 100px;
        border: none;
    }
    .we-block {
        width: 100%;
        max-width: 640px;
    }
    .we-block span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 64px;
        line-height: 83.2px;
        color: #FF8C4C;
    }
    .we-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
    }
    .us {
        display: flex;
        justify-content: center;
        margin: 150px 0px 150px;
    }
    .us-container {
        width: 100%;
        max-width: 1380px;
        padding: 0px 20px 0px 20px;
    }
    .us h2 {
        color: #0B0F20;
        margin-bottom: 60px;
        text-align: center;
    }
    .us-cards {
        display: flex;
        gap: 20px;
    }
    .us-card-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .us-card {
        width: 100%;
        max-width: 680px;
        background-color: #fff;
        border-radius: 6px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        height: 205px;
    }
    .us-card svg {
        margin-bottom: 5px;
    }
    .us-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }
    .us-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .story {
        display: flex;
        justify-content: center;
        margin-bottom: 150px;
    }
    .story-container {
        width: 100%;
        max-width: 1146px;
    }
    .story h2 {
        color: #0B0F20;
        margin-bottom: 60px;
        text-align: center;
    }
    .story-cards {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 40px;
    }
    .story-card {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .story-card-block {
        width: 100%;
        max-width: 1146px;
        height: auto;
        aspect-ratio: 1146 / 640;
        background-color: #EFF0F1;
        border-radius: 6px;
    }
    .story-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
        padding: 0px 20px 0px 20px;
    }
    .team {
        display: flex;
        justify-content: center;
        margin-bottom: 60px;
    }
    .team h2 {
        color: #0B0F20;
        margin-bottom: 60px;
        text-align: center;
    }
    .team-container {
        width: 100%;
        max-width: 1160px;
        padding: 0px 20px 0px 20px;
    }
    .team-cards {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1160px;
        gap: 60px;
        justify-content: center;
    }
    .team-card {
        width: 100%;
        max-width: 200px;
        display: block;
        cursor: pointer;
        border: none;
        margin: 0 0 auto 0;
        background-color: transparent;
    }
    .team-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20D6;
        margin-top: 10px;
        border: none;
        background-color: transparent;
        width: 100%;
        text-align: center;
        cursor: pointer;
    }
    .team-card:hover span {
        text-decoration: underline;
    }
    .team-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-align: center;
        text-transform: uppercase;
        width: 100%;
        text-align: center;
    }
    .modal {
        display: none;
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(11, 15, 32, 0.61);
        justify-content: center;
        align-items: center;
        padding: 0px 20px 0px 20px;
    }
    .modal-content {
        width: 100%;
        max-width: 1380px;
        border-radius: 20px;
        background-color: #fff;
        padding: 80px 40px 80px 40px;
        position: relative;
        overflow: hidden;
    }
    .modal-close {
        position: absolute;
        border: none;
        background-color: transparent;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }
    .modal-over {
        display: flex;
        gap: 20px;
        justify-content: center;
        height: 100%;
        max-height: 701px;
    }
    .modal-image {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
        min-width: 447px;
        min-height: 223px;
        max-width: 447px;
        max-height: 223px;
    }
    .modal-over img {
        width: 200px;
        height: 200px;
    }
    .modal-container {
        width: 100%;
        max-width: 640px;
        position: relative;
        max-height: 59vh;
        overflow-y: auto;
        scrollbar-width: thin;
        padding-right: 20px;
    }
    .modal-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        text-transform: uppercase;
    }
    .modal-information span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }
    .modal-text {
        margin: 20px 0px 20px 0px;
    }
    .modal-text p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .styled-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .styled-list li {
        position: relative;
        padding-left: 15px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .styled-list li a {
        color: #0B0F20D6;
    }
    .styled-list li span {
        font-weight: 600;
    }
    .styled-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 12px;
        width: 4px;
        height: 4px;
        background-color: #0B0F20D6;
        border-radius: 50%;
    }
    .strategies {
        display: flex;
        flex-direction: column;
    }
    .strategies h2 {
        color: #fff;
    }
    .strategies-container {
        width: 100%;
        max-width: 1920px;
        background-color: #323544;
        padding: 160px 20px 160px 20px;
        margin: 0 auto;
        border-radius: 6px 6px 0px 0px;
    }
    .strategies-information {
        width: 100%;
        max-width: 1380px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .strategies-left {
        width: 100%;
        max-width: 680px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .strategies-left p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFFD6;
        width: 100%;
        max-width: 640px;
    }
    .strategies-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        width: 100%;
        max-width: 560px;
    }
    .strategies-block {
        display: flex;
        gap: 60px;
    }
    .strategies-right p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #FFFFFF9C;
        text-align: center;
        text-transform: uppercase;
    }
    .strategies-big span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 180px;
        line-height: 180px;
        color: #FF8C4C;
    }
    .strategies-small {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .strategies-margin {
        margin-right: 40px;
    }
    .strategies-small span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 64px;
        line-height: 83.2px;
        color: #FF8C4C;
    }
    .solved {
        display: flex;
        flex-direction: column;
        background-color: #FFC5A5;
    }
    .solved h2 {
        color: #0B0F20;
    }
    .solved-container {
        width: 100%;
        max-width: 1920px;
        background-color: #FFC5A5;
        padding: 160px 20px 160px 20px;
        margin: 0 auto;
    }
    .solved-information {
        width: 100%;
        max-width: 1380px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }
    .solved-left {
        width: 100%;
        max-width: 563px;
    }
    .solved-lines {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .solved-line {
        width: 2px;
        height: 100px;
        background-color: #0B0F200F;
        margin: 10px 0px 10px 0px;
    }
    .solved-line2 {
        width: 2px;
        height: 42px;
        background-color: #0B0F200F;
        margin: 10px 0px 10px 0px;
    }
    .solved-line3 {
        width: 2px;
        height: 97px;
        background-color: #0B0F200F;
        margin: 10px 0px 10px 0px;
    }
    .solved-line4 {
        width: 2px;
        height: 63px;
        background-color: #0B0F200F;
        margin: 10px 0px 10px 0px;
    }
    .solved-line5 {
        width: 2px;
        height: 86px;
        background-color: #0B0F200F;
        margin: 10px 0px 10px 0px;
    }
    .solved-right {
        width: 100%;
        max-width: 720px;
        display: flex;
        justify-content: space-between;
        gap: 40px;
    }
    .solved-text {
        display: flex;
        flex-direction: column;
        gap: 31px;
    }
    .solved-card {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
        max-width: 612px;
    }
    .solved-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }
    .solved-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .minor {
        display: flex;
        flex-direction: column;
        margin: 150px 0px 130px 0px;
    }
    .minor svg {
        min-width: 60px;
    }
    .minor h2 {
        color: #0B0F20;
        margin-bottom: 60px;
        text-align: center;
    }
    .minor-container {
        margin: 0 auto;
        width: 100%;
        max-width: 1380px;
        padding: 0px 20px 0px 20px;
    }
    .minor-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .minor-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 560px;
        background-color: #fff;
        border-radius: 6px;
        padding: 20px;
    }
    .minor-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
        margin: 20px 0px 5px 0px;
    }
    .minor-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-align: center;
    }
    .packages {
        display: flex;
        flex-direction: column;
    }
    .packages-information h2 {
        color: #0B0F20;
        margin-bottom: 40px;
        text-align: center;
        padding: 0px 20px 0px 20px;
    }
    .packages-container {
        margin: 0 auto;
        width: 100%;
        max-width: 1460px;
        padding: 0px 20px 0px 20px;
    }
    .packages-cards {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    .packages-card1 {
        background-color: #FFAC7E;
    }
    .packages-card2 {
        background-color: #323544;
    }
    .office-case h2 {
        color: #0B0F20;
    }
    .actions {
        display: flex;
        flex-direction: column;
        margin-bottom: 150px;
    }
    .actions h2 {
        color: #0B0F20;
    }
    .actions-container {
        display: flex;
        justify-content: space-between;
        align-items: end;
        margin: 0 auto;
        width: 100%;
        max-width: 1380px;
        gap: 140px;
    }
    .action-left {
        width: 100%;
        max-width: 563px;
        height: 540px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .action-left p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin: 10px 0px 30px 0px;
        width: 100%;
        max-width: 550px;
    }
    .action-left p span {
        font-weight: 700;
    }
    .action-rating {
        /* margin-top: 100px; */
        display: flex;
        align-items: center;
        gap: 17.5px;
        margin: auto auto 0 auto;
    }
    .start-search {
        display: flex;
        flex-direction: column;
    }
    .overlay-form {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #0B0F209C;
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        padding: 0px 20px 0px 20px;
    }
    .inquiry-block {
        position: relative;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 1380px;
        height: auto;
        padding: 110px 20px 110px 20px;
        overflow-y: auto;
    }
    .close-btn {
        position: absolute;
        width: 40px;
        height: 40px;
        background-color: transparent;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }
    .inputs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        gap: 20px;
        width: 100%;
        max-width: 720px;
        height: auto;
    }
    .inputs p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        z-index: 2;
        position: relative;
    }
    .input-container {
        display: flex;
        align-items: center;
        gap: 20px;
        height: auto;
        position: relative;
    }
    .input-container input {
        height: 47px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        border-radius: 6px;
        width: 100%;
        transition: .2s ease;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .input-container input::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }
    .input-container input:focus {
        outline: none;
    }
    .input-container input:hover {
        border: 1px solid #0B0F20D6;
    }
    .input-container button {
        height: 47px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        border-radius: 6px;
        width: 100%;
        transition: .2s ease;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        background-color: transparent;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    #country-button {
        position: relative;
        border-radius: 6px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border: 1px solid #0B0F2038;
        transition: border-radius 0.2s ease;
    }
    .country-list {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        position: absolute;
        top: 100%;
        left: -1px;
        right: -1px;
        width: calc(100% + 2px);
        max-height: 190px;
        overflow-y: auto;
        border: 1px solid #0B0F2038;
        border-radius: 0 0 6px 6px;
        background-color: white;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        text-align: start;
    }
    .country-list.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .country-item {
        padding: 5px 20px;
        cursor: pointer;
    }
    .country-item:hover {
        background-color: #f0f0f0;
    }
    .input-block-info {
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
    }
    .input-block-info svg {
        transition: transform 0.2s ease;
        position: absolute;
        right: 0;
    }
    .form-button {
        width: 100%;
        max-width: 260px;
        height: 47px;
        background-color: #5D7CFF;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border: none;
        z-index: 1000;
        position: relative;
        cursor: pointer;
        transition: .3s ease;
    }
    .form-button:hover {
        background-color: #244EFF;
    }
    .form-button {
        margin: 0 auto;
    }
    .inputs h2 {
        color: #0B0F20;
        margin-bottom: 40px;
        text-align: center;
    }
    .points-blocks {
        width: 100%;
        max-width: 640px;
    }
    .points-block {
        display: flex;
        margin-left: 10px;
        height: auto;
    }
    .points-block p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        margin: 10px 0px 10px 0px;
    }
    .points-block p span {
        font-weight: 700;
    }
    .points-block-last {
        margin-bottom: 20px;
    }
    .points-dot {
        width: 5px;
        height: 5px;
        background-color: #0B0F20D6;
        border-radius: 50%;
        position: relative;
        top: 20px;
        margin-right: 10px;
    }
    .contacts {
        display: flex;
        flex-direction: column;
        margin: 200px 0px 160px 0px;
    }
    .add h1 {
        margin-bottom: 160px;
    }
    .contacts-container {
        margin: 0 auto;
        width: 100%;
        max-width: 1420px;
        padding: 0px 20px 0px 20px;
    }
    .contacts-countrys {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    .contacts-country {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .contacts-information {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        max-width: 563px;
        min-width: 563px;
        height: 400px;
    }
    .contacts-information span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
    }
    .contacts-information p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .contacts a {
        width: 100%;
        max-width: 280px;
        height: 47px;
        background-color: #5D7CFF;
        border-radius: 100px;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border: none;
        z-index: 2;
        position: relative;
        cursor: pointer;
        transition: .3s ease;
        text-decoration: none;
    }
    .contacts a:hover {
        background-color: #244EFF;
    }
    .contacts a.eml {
        background: transparent;
        color: #0B0F20D6;
        font-weight: 400;
        text-decoration: underline;
    }
    .contacts-decktop {
        display: flex;
    }
    .contacts-mobile {
        display: none;
    }
    .contacts-maps {
        width: 100%;
        height: 400px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contacts-maps img {
        height: 100%;
        width: auto;
        object-fit: cover;
    }
    .main-res-left {
        max-width: 913px;
    }
    .main-res-information p {
        max-width: 640px;
    }
    .main-resources {
        padding: 200px 20px 0px 20px;
    }
    .resources {
        display: flex;
        justify-content: center;
        margin: 160px 0px 447px 0px;
    }
    .resources-container {
        width: 100%;
        max-width: 1380px;
        display: flex;
        flex-direction: column;
        gap: 160px;
        padding: 0px 20px 0px 20px;
    }
    .resources-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .resources-card {
        flex: 1 1 calc(50% - 20px);
        min-width: 300px;
        max-width: 680px;
        padding: 20px;
        border-radius: 6px;
        background-color: #FFFFFF;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        display: flex;
        flex-direction: column;
        text-decoration: none;
    }
    .resources-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20;
        margin: 10px 0px 5px 0px;
    }
    .resources-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .h4-tm {
        margin-bottom: 20px;
    }
    .resources-cards2 {
        display: flex;
        gap: 20px;
    }
    .resources-block-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .resources-block-hidden span {
        margin: 10px 0px 0px 0px;
    }
    .services {
        display: flex;
        justify-content: center;
        margin: 200px 0px 160px 0px;
    }
    .services-container {
        width: 100%;
        max-width: 1380px;
        display: flex;
        flex-direction: column;
        padding: 0px 20px 0px 20px;
    }
    .services-cards {
        display: flex;
        flex-wrap: wrap;
    }
    .services-card {
        width: 100%;
        height: auto;
        background-color: #FFFFFF;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 6px;
    }
    .services-card {
        flex-basis: calc(33.33% - 20px);
        margin: 10px;
    }
    .services-information {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .services-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31px;
        color: #0B0F20D6;
    }
    .services-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .services-card a {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        text-decoration: none;
        transition: .2s ease;
        margin-top: 20px;
    }
    .services-card a:hover {
        text-decoration: underline;
    }
    .service-description {
        max-height: 9.5em;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        margin: 0;
    }
    .testimonials {
        display: flex;
        justify-content: center;
        margin: 200px 0px 160px 0px;
    }
    .testimonials-container {
        width: 100%;
        max-width: 1420px;
        display: flex;
        flex-direction: column;
        padding: 0px 20px 0px 20px;
    }
    .testimonials-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }
    .testimonials-card {
        width: 100%;
        max-width: 680px;
        height: auto;
        background-color: #fff;
        border-radius: 6px;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        display: flex;
        flex-direction: column;
        padding: 20px;
        flex: 1 1 calc(50% - 10px);
        box-sizing: border-box;
    }
    .testimonials-card iframe {
        width: 100%;
        height: 340px;
        object-fit: cover;
    }
    .testimonials-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        color: #0B0F20D6;
        margin: 20px 0px 10px 0px;
        text-decoration: underline;
        text-underline-offset: 4px;
    }
    .testimonials-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .testimonials-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 390px;
        height: 47px;
        background-color: #5D7CFF;
        border-radius: 100px;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border: none;
        z-index: 2;
        position: relative;
        cursor: pointer;
        transition: .3s ease;
        margin: 20px auto 20px auto;
        text-decoration: none;
    }
    #subscribe-btn {
        position: relative;
        z-index: 2;
    }
    .testimonials-button:hover {
        background-color: #244EFF;
    }
    .article {
        display: flex;
        justify-content: center;
        margin: 200px 0px 160px 0px;
    }
    .site-section-block {
        display: flex;
        justify-content: center;
        padding: 160px 0px 60px 0px;
    }
    .article-container {
        width: 100%;
        max-width: 1420px;
        display: flex;
        flex-direction: column;
        padding: 0px 20px 0px 20px;
    }
    .article-container h2 {
        max-width: 800px;
        margin: auto;
    }
    .article-container h2.oai-card-title {
        line-height: 27px;
    }
    .article-cards {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 100%;
        max-width: 1146px;
    }
    .article-card p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }
    .article-card-faqcartoon p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        /*max-width: 640px;*/
        margin: 0 auto;
    }
    .article-card span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 21px;
        line-height: 27px;
        color: #0B0F20;
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }
    .article-card h4 {
        text-align: center;
        margin: 40px 0px 40px;
    }
    .article-card-info {
        margin: 20px 0px 20px 0px;
    }
    .article-card-info2 {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    .article-card-info3 {
        margin: 20px 0px 20px 0px;
    }
    .article-card-info4 {
        width: 100%;
        max-width: 640px;
        margin: 20px auto 40px auto;
        gap: 20px;
        display: flex;
        flex-direction: column;
    }
    .article-card-info5 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .article-card-info6 {
        width: 100%;
        max-width: 640px;
        gap: 20px;
        display: flex;
        flex-direction: column;
        margin: 40px auto 40px auto;
    }
    .article-card-info7 {
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
        gap: 20px;
        display: flex;
        flex-direction: column;
    }
    .article-dot {
        width: 5px;
        height: 5px;
        background-color: #0B0F20D6;
        border-radius: 50%;
        position: relative;
        top: 10px;
    }
    .article-title {
        font-family: 'Poppins';
        font-weight: 700;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }
    .article-card-block {
        display: flex;
        gap: 10px;
        position: relative;
        left: 10px;
    }
    .article-info h2 {
        width: 100%;
        max-width: 890px;
        margin-bottom: 30px;
    }
    .article-info button {
        max-width: 420px;
    }
    .article-card img {
        width: 100%;
        height: auto;
    }
    .article-button {
        margin-top: 30px;
    }
    .article-rating {
        margin-top: 380px;
    }
    .article-start {
        margin-bottom: 160px;
    }
    .article-choote {
        margin-top: 160px;
    }
    .checkout {
        display: flex;
        justify-content: center;
        margin: 60px 0px 160px 0px;
    }
    .checkout-container {
        width: 100%;
        max-width: 1420px;
        display: flex;
        flex-direction: column;
        padding: 0px 20px 0px 20px;
        gap: 40px;
    }
    .checkout-content1 {
        width: 100%;
        max-width: 1380px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        border-radius: 6px;
        padding: 20px;
    }
    .checkout-content2 {
        width: 100%;
        max-width: 450px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #0B0F200F;
        border-radius: 6px;
        padding: 20px;
        margin: auto;
    }
    .checkout-blocks {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .checkout-block {
        display: flex;
        flex-direction: column;
    }
    .checkout-block span {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        color: #0B0F20D6;
    }
    .checkout-title {
        margin-bottom: 10px;
    }
    .checkout-accept-info {
        display: flex;
        align-items: center;
        gap: 7px;
    }
    .checkout-accept-info p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .checkout-accepts {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .country-block {
        cursor: pointer;
    }
    .checkout-accept {
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 7px;
    }
    .checkout-accept2 {
        display: flex;
        align-items: center;
        gap: 7px;
    }
    .checkout-accept3 {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .checkout-block4 {
        display: flex;
        gap: 10px;
    }
    .checkout-block4 div {
        font-weight: 700;
        font-size: 21px;
        line-height: 27px;
    }
    .checkout-block5 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 510px;
    }
    .checkout-block5 p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .checkout-block6 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 300px;
    }
    .checkout-cards {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .checkout-blocks2 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .checkout-block5 button {
        width: 100%;
        max-width: 300px;
        height: 47px;
        background-color: #5D7CFF;
        border-radius: 100px;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        border: none;
        z-index: 2;
        position: relative;
        cursor: pointer;
        transition: .3s ease;
        margin: 20px 0px 0px 0px;
    }
    .checkout-block5 button:hover {
        background-color: #244EFF;
    }
    .checkout-bank1 {
        width: 100%;
        max-width: 300px;
        height: 47px;
        border-radius: 6px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .3s ease;
    }
    .checkout-bank1::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }
    .checkout-bank1:hover {
        border: 1px solid #0B0F20D6;
    }
    .checkout-bank1 :focus {
        outline: none;
    }
    .checkout-bank2 {
        width: 100%;
        max-width: 130px;
        height: 47px;
        border-radius: 6px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .3s ease;
    }
    .checkout-bank2 ::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }
    .checkout-bank2 :hover {
        border: 1px solid #0B0F20D6;
    }
    .checkout-bank2 :focus {
        outline: none;
    }
    .checkbox {
        width: 16px;
        height: 16px;
        border: 2px solid #0B0F20D6;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
    }
    .inner-circle {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #0B0F20D6;
        position: absolute;
        opacity: 0;
        transition: opacity 0.2s;
    }
    .checkbox.checked .inner-circle {
        opacity: 1;
    }
    .checkout-inputs {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .checkout-input input {
        width: 100%;
        height: 47px;
        border-radius: 6px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .3s ease;
    }
    .checkout-input select {
        width: 100%;
        height: 47px;
        border-radius: 6px;
        padding: 10px 20px 10px 20px;
        border: 1px solid #0B0F2038;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
        transition: .3s ease;
    }
    .checkout-input input::placeholder {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
    }
    .checkout-input input:hover {
        border: 1px solid #0B0F20D6;
    }
    .checkout-input input:focus {
        outline: none;
    }
    .checkout-input select:hover {
        border: 1px solid #0B0F20D6;
    }
    .checkout-input select:focus {
        outline: none;
    }
    .checkout-info {
        max-width: 640px;
    }
    .checkout-subtitle {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F209C;
        width: 100%;
        max-width: 640px;
    }
    .checkout-block2 {
        display: flex;
        flex-direction: row;
        gap: 5px;
    }
    .checkout-block2 span {
        position: relative;
        top: -5px;
        margin-bottom: -10px;
    }
    .checkout-adds {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 5px 0px 5px 0px;
    }
    .checkout-add {
        display: flex;
        gap: 10px;
        position: relative;
        left: 7px;
        width: 100%;
        max-width: 640px;
    }
    .checkout-dot {
        width: 5px;
        height: 5px;
        min-width: 5px;
        min-height: 5px;
        border-radius: 50%;
        background-color: #0B0F20D6;
        position: relative;
        top: 10px;
    }
    .checkout-add p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .square-checkbox {
        width: 16px;
        height: 16px;
        border: 2px solid #0B0F20D6;
        border-radius: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
    }
    .inner-square {
        width: 8px;
        height: 8px;
        background-color: #0B0F20D6;
        position: absolute;
        opacity: 0;
        transition: opacity 0.2s;
    }
    .square-checkbox.checked .inner-square {
        opacity: 1;
    }
    .checkout-table {
        width: 100%;
        max-width: 940px;
        border: 1px solid #0B0F2038;
        display: flex;
        align-items: center;
    }
    .checkout-table span {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #0B0F20D6;
    }
    .first {
        width: 100%;
        max-width: 400px;
        padding: 10px 20px 10px 20px;
    }
    .second {
        width: 100%;
        max-width: 640px;
        border-left: 1px solid #0B0F2038;
        padding: 10px 20px 10px 20px;
    }
    .checkout-table1 {
        border-radius: 6px 6px 0px 0px;
    }
    .checkout-table3 {
        border-radius: 0px 0px 6px 6px;
    }
    .checkout-table2 {
        border: 0px solid #0B0F2038;
        border-left: 1px solid #0B0F2038;
        border-right: 1px solid #0B0F2038;
    }
    .checkout-get {
        margin-top: 30px;
        max-width: 200px;
    }
    .pagination-number {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        text-decoration: none;
    }
    .text-center {
        text-align: center;
    }
    .text-left {
        text-align: left;
    }
    .text-right {
        text-align: right;
    }
    @media (max-width: 1650px) {
        .main-slider-buttons {
            position: absolute;
            left: 590px;
            top: 350px;
            z-index: 2;
        }
        .case-container {
            padding: 150px 0px 130px 20px;
        }}
    @media (max-width: 1420px) {
        .process {
            padding: 0px 20px 0px 20px;
        }
        .process-content {
            display: none;
        }
        .process-start {
            font-size: 16px;
            line-height: 24px;
            margin: 40px auto 0 auto;
        }
        .process-content-mobile {
            display: flex;
        }
        #dropdown-cards {
            justify-content: center;
        }
        .actions h2 {
            text-align: center;
        }
        .actions-container {
            flex-direction: column;
        }
        .action-left {
            max-width: 100%;
            height: auto;
        }
        .action-information {
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
        }
        .action-rating {
            justify-content: center;
            margin-top: 40px;
        }
        .action-left p {
            max-width: 640px;
            text-align: left;
        }
        .action-left {
            padding: 0px 20px 0px 20px;
        }
        .actions-container {
            gap: 80px;
        }}
    @media (max-width: 1376px) {
        .faq-cards {
            max-width: 912px;
        }}
    @media (max-width: 1300px) {
        .main-content {
            flex-direction: column;
        }
        .main-rating {
            display: none;
        }
        .main-slide-people {
            display: none;
        }
        .main-left {
            top: 0px;
            margin-bottom: 30px;
        }
        .main-slider-decoration {
            display: none;
        }
        .main-slider-buttons {
            right: 20px;
            left: auto;
            top: -60px;
        }
        .main-slider-container {
            max-width: 100%;
        }
        .main-slider-slides {
            gap: 0px;
        }
        .main-block {
            flex-wrap: wrap;
        }
        .burger {
            display: flex;
        }
        .footer-contant {
            flex-direction: column-reverse;
            gap: 40px;
        }
        .footer-links {
            max-width: 100%;
            gap: 20px;
        }
        .footer-link240 {
            max-width: 293.33px;
        }
        .footer-link416 {
            max-width: 293.33px;
        }
        .footer-link300 {
            max-width: 293.33px;
        }
        .footer-link296 {
            max-width: 293.33px;
        }
        .choose-play1 {
            display: none;
        }
        .choose-play2 {
            display: flex;
        }
        .choose-card-right img {
            width: 100%;
            max-width: 920px;
            height: auto;
        }
        .slides {
            height: 525px;
        }
        .slide {
            flex: 0 0 685px;
            height: 525px;
            padding: 40px 20px 20px 20px;
        }
        .slide-container {
            flex-direction: column;
            gap: 20px;
        }
        .slide-decoration {
            display: none;
        }
        .slide-right {
            gap: 20px;
        }
        .slide-card {
            max-width: 100%;
        }
        .success-container {
            height: 563px;
            padding: 292px 20px 0px 20px;
            gap: 20px;
        }
        .success-block-center {
            position: absolute;
            top: 100px;
        }
        .success-block-left {
            text-align: center;
        }
        .success-block-right {
            text-align: center;
        }
        .footer-information {
            display: flex;
            gap: 20px;
        }
        .footer-texts-hidden1 {
            display: none;
        }
        .footer-texts-hidden2 {
            display: block;
        }
        .footer-text1 {
            max-width: 100%;
        }
        .footer-text2 {
            max-width: 100%;
        }
        .footer-text3 {
            max-width: 100%;
        }
        .footer-information img {
            width: 293px;
        }
        .footer-information-container {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .footer-texts {
            margin: 0px 0px 0px 0px;
        }
        .indicators {
            left: 0px;
        }
        .reputation-decoration {
            display: none;
        }
        .choose-schedule {
            margin: 20px 0px 0px 0px;
        }
        .key-card-decoration {
            display: none;
        }
        .option-card-accepts {
            height: auto;
        }
        .option-card-accepts-container {
            height: auto;
        }
        .table-stats {
            display: none;
        }
        .solved-information {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;
        }
        .solved-information {
            width: 100%;
            max-width: 800px;
        }
        .solved-left {
            max-width: 100%;
        }}
    @media (max-width: 1100px) {
        .main-company {
            margin: 70px 0px 70px 0px;
        }
        .main-decoration {
            width: 705px;
        }
        .reputation-container {
            padding: 70px 20px 80px 20px;
        }
        .calculator-container {
            padding: 70px 20px 80px 20px;
        }
        .calculator-main-container {
            padding-botoom: 50px;
        }
        .process {
            margin: 80px 0px 80px 0px;
        }
        .case-container {
            padding: 70px 0px 80px 20px;
        }
        .choose-container {
            padding: 70px 20px 80px 20px;
        }
        .reviews {
            margin: 80px 0px 70px 0px;
        }
        .reviews-talk {
            margin: 80px 0px 0px 0px;
        }
        .reviews-talk {
            margin: 80px 0px 0px 0px;
        }
        .consultation-talk {
            margin: 0px 0px 116px 0px;
        }
        .serve {
            margin: 0px 20px 70px 20px;
        }
        .key {
            margin-bottom: 80px;
        }
        .blog {
            margin-bottom: 116px;
        }
        .consultation-container {
            padding: 70px 80px 80px 80px;
        }
        .consultation {
            margin-bottom: 116px;
        }
        .consultation-decoration1 {
            display: none;
        }
        .footer-container {
            padding: 50px 20px 20px 20px;
        }
        .modal-image {
            display: none;
        }
        .case-information {
            margin: 0 auto 20px 0;
        }
        .serve h2 {
            margin-bottom: 20px;
        }
        .serve-card {
            max-width: 450px;
        }
        .serve-start {
            margin-top: 40px;
            font-size: 18px;
            line-height: 24px;
            height: 44px;
        }
        .key h2 {
            margin-bottom: 40px;
        }
        .key {
            margin-bottom: 60px;
        }
        .key-start {
            margin-top: 40px;
        }
        .footer-decoration {
            display: none;
        }
        .reputation h2 {
            margin-bottom: 20px;
        }
        .reputation-start {
            margin-top: 20px;
        }
        .process h2 {
            margin-bottom: 40px;
        }
        .choose h2 {
            margin-bottom: 20px;
        }
        .main-talk-left {
            margin-bottom: 0px;
        }
        .main-company h2 {
            margin-bottom: 20px;
        }
        .main-company-cards {
            margin: 20px 0px 70px 0px;
        }
        .we {
            margin-top: 80px;
        }
        .us {
            margin: 70px 0px 70px 0px;
        }
        .us h2 {
            margin-bottom: 40px;
        }
        .us-card {
            height: 232px;
        }
        .we-blocks {
            gap: 20px;
        }
        .story h2 {
            margin-bottom: 40px;
        }
        .team-cards {
            gap: 20px;
        }
        .story {
            margin-bottom: 70px;
        }
        .team h2 {
            margin-bottom: 40px;
        }
        .faq {
            margin: 80px 0px 80px;
        }
        .faq-container {
            gap: 80px;
        }
        .faq-card {
            max-width: 450px;
        }
        .board-container {
            padding: 70px 0px 80px 80px;
        }
        .board-decoration1 {
            display: none;
        }
        .board-decoration2 {
            width: 360px;
        }
        .board {
            margin-bottom: 80px;
        }
        .modal-over {
            flex-direction: column;
            max-height: 100%;
        }
        .modal-over img {
            margin: 0 auto;
        }
        .modal-information {
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
        }
        .modal-container {
            max-height: 50vh;
            max-width: 100%;
        }
        .modal-content {
            padding: 40px 40px 40px 40px;
        }
        .table-title {
            max-width: 320px;
        }
        .table-title-tm {
            max-width: 70px;
        }
        .table-height1 {
            height: 68px;
        }
        .table-height1-tm {
            height: auto;
        }
        .table-information {
            margin-bottom: 40px;
        }
        .table {
            margin-bottom: 80px;
        }
        .should-information {
            flex-direction: column;
            justify-content: center;
            max-width: 100%;
            align-items: center;
            gap: 40px;
            padding: 70px 20px 80px 20px;
        }
        .should-right {
            display: flex;
            flex-direction: unset;
        }
        .should-left h2 {
            max-width: 920px;
            text-align: center;
        }
        .should-left p {
            max-width: 640px;
            text-align: center;
            margin: 0 auto;
        }
        .should-block {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .start-container {
            padding: 70px 80px 80px 80px;
        }
        .start-decoration1 {
            display: none;
        }
        .start-decoration2 {
            width: 360px;
        }
        .consultation-decoration2 {
            width: 360px;
        }
        .option {
            margin: 80px 0px 80px 0px;
        }
        .option-cards {
            display: none;
        }
        .option-card-accepts {
            max-width: 920px;
            flex-direction: unset;
        }
        .option-card-information {
            width: 100%;
            max-width: 471px;
        }
        .option-card-pay {
            width: 430px;
            min-width: 430px;
            height: 274px;
        }
        .option-mobile-cards {
            display: flex;
        }
        .strategies-container {
            padding: 70px 20px 80px 20px;
        }
        .strategies-information {
            flex-direction: column;
        }
        .strategies-left {
            max-width: 100%;
        }
        .strategies h2 {
            text-align: center;
        }
        .strategies-left p {
            text-align: center;
            margin: 0 auto;
        }
        .strategies-big span {
            font-family: 'Poppins';
            font-weight: 500;
            font-size: 64px;
            line-height: 83.2px;
            color: #FF8C4C;
        }
        .strategies-right {
            flex-direction: unset;
            gap: 80px;
            margin-top: 40px;
            flex-wrap: nowrap;
            max-width: 920px;
        }
        .solved-container {
            padding: 70px 20px 80px 20px;
        }
        .minor {
            margin: 70px 0px 80px 0px;
        }
        .action-rating {
            margin-top: 40px;
        }
        .actions {
            margin-bottom: 70px;
        }
        .packages-container {
            padding: 0px 0px 0px 0px;
        }
        .option h2 {
            margin-bottom: 40px;
        }
        .start-search-h2 {
            margin-bottom: 40px;
        }
        .inquiry-block {
            padding: 40px 20px 40px 20px;
        }
        .start-container-gold {
            justify-content: start;
            margin-top: 40px;
        }
        .faq-cards {
            max-width: 920px;
        }
        .office-case {
            margin-bottom: 80px;
        }
        .strategies-margin {
            margin-right: 0px;
        }
        .contacts-information {
            max-width: 293px;
            min-width: 293px;
        }
        .contacts-hidden {
            display: none;
        }
        .contacts {
            margin: 200px 0px 80px 0px;
        }
        .add h1 {
            margin-bottom: 160px;
            text-align: center;
        }
        .contacts-countrys {
            gap: 40px;
        }
        .main-resources {
            padding: 127px 20px 0px 20px;
        }
        .resources {
            margin: 80px 0px 80px 0px;
        }
        .resources-container {
            gap: 80px;
        }
        .resources-cards2 {
            flex-direction: column;
            gap: 40px;
        }
        .testimonials {
            margin: 200px 0px 80px 0px;
        }
        .checkout {
            margin: 80px 0px 80px 0px;
        }
        .article {
            margin: 200px 0px 80px 0px;
        }
        .services {
            margin: 200px 0px 80px 0px;
        }
        .resources-block-hidden {
            display: flex;
        }
        .services-card {
            flex-basis: calc(50% - 20px);
        }
        .article-button {
            margin-top: 20px;
        }
        .article-start {
            margin-bottom: 80px;
        }
        .article-choote {
            margin-top: 80px;
        }
        .checkout-get {
            margin-top: 20px;
        }}
    @media (max-width: 991px) {
        .spanbr {
            display: inline-block
        }}
    @media (max-width: 959px) {
        .success-block-center span {
            /*font-size: 110px;*/
            /*line-height: 80px;*/
        }
        .header-block {
            gap: 20px;
        }
        .header-block p:first-child {
            font-size: 16px;
            line-height: 24px;
        }
        .header-block p:last-child {
            font-size: 12px;
            line-height: 24px;
        }
        .message {
            height: 44px;
        }
        .message span {
            font-size: 16px;
        }
        .main-decoration {
            width: 499px;
        }
        .main-information {
            padding: 0px 20px 0px 0px;
        }
        .header-block a {
            font-size: 16px;
            line-height: 24px;
        }
        .mobile-card-block p {
            font-size: 16px;
            line-height: 24px;
        }
        .nav-free {
            font-size: 16px;
            line-height: 24px;
            width: 202px;
            height: 44px;
        }
        .main-information p {
            font-size: 16px;
            line-height: 24px;
        }
        .main-buttons {
            width: 100%;
            max-width: 728px;
            gap: 20px;
        }
        .main-left {
            margin-bottom: 20px;
            max-width: 100%;
        }
        .main-register {
            width: 100%;
            max-width: 354px;
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .main-speak {
            width: 100%;
            max-width: 354px;
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .main-slider-buttons {
            top: 280px;
        }
        .main-slider-text p {
            font-size: 16px;
            line-height: 24px;
        }
        .main-slider-add span {
            font-size: 18px;
            line-height: 27px;
        }
        .main-slider-add p {
            font-size: 16px;
            line-height: 24px;
        }
        .success-block-left span {
            /*font-size: 50px;*/
            font-size: 90px;
            /*line-height: 65px;*/
            line-height: 95px;
        }
        .success-block-left p {
            font-size: 16px;
            line-height: 24px;
        }
        .success-block-left2 p {
            font-size: 16px;
            line-height: 24px;
        }
        .success-block-right span {
            /*font-size: 50px;*/
            font-size: 90px;
            /*line-height: 65px;*/
            line-height: 95px;
        }
        .success-block-right p {
            font-size: 16px;
            line-height: 24px;
        }
        .success-block-right2 p {
            font-size: 16px;
            line-height: 24px;
        }
        .reputation h2 {
            margin-bottom: 0px;
        }
        .reputation-block-smalls {
            flex-direction: column;
        }
        .reputation-title span {
            font-size: 16px;
            line-height: 24px;
        }
        .reputation-title {
            font-size: 21px;
            line-height: 27.3px;
        }
        .reputation-subtitle {
            font-size: 16px;
            line-height: 24px;
        }
        .reputation-block-small {
            max-width: 100%;
        }
        .reputation-register {
            font-size: 16px;
            line-height: 24px;
            width: 100%;
            max-width: 197px;
        }
        .reputation-start {
            margin-top: 0px;
            max-width: 242px;
            font-size: 16px;
            line-height: 24px;
            height: 44px;
        }
        .process h2 {
            margin-bottom: 20px;
        }
        .process-card-mobile-information span {
            font-size: 21px;
            line-height: 27.3px;
        }
        .process-card-mobile-information p {
            font-size: 16px;
            line-height: 24px;
        }
        .process-start {
            margin: 20px auto 0 auto;
            height: 44px;
        }
        .indicators {
            margin: 0px 0px 0px 0px;
        }
        .case-information {
            margin: 0 auto 0px 0;
        }
        .slide-left p {
            font-size: 16px;
            line-height: 24px;
        }
        .slide-card span {
            font-size: 21px;
            line-height: 27.3px;
        }
        .slide-card p {
            font-size: 16px;
            line-height: 24px;
        }
        .slide {
            height: 480px;
        }
        .choose h2 {
            margin-bottom: 0px;
        }
        .choose-card-smalls {
            flex-direction: column;
            width: 100%;
        }
        .choose-card-small {
            max-width: 100%;
        }
        .choose-card-information p {
            font-size: 16px;
            line-height: 24px;
        }
        .choose-card-block span {
            font-size: 21px;
            line-height: 27.3px;
        }
        .choose-card-block p {
            font-size: 16px;
            line-height: 27.3px;
            width: 100%;
            max-width: 640px;
        }
        .choose-card-big {
            margin: 0px;
        }
        .reviews img {
            width: 100%;
            height: auto;
        }
        .serve h2 {
            margin-bottom: 20px;
        }
        .serve-card {
            width: 354px;
            height: auto;
        }
        .serve-card-information span {
            font-size: 16px;
            line-height: 24px;
        }
        .serve-card-information p {
            font-size: 21px;
            line-height: 27.3px;
        }
        .serve-card-subtitle {
            font-size: 16px;
            line-height: 24px;
        }
        .serve-start {
            margin-top: 20px;
        }
        .key h2 {
            margin-bottom: 20px;
        }
        .key-card-container {
            flex-direction: column;
        }
        .key-card {
            max-width: 100%;
        }
        .key-card-information span {
            font-size: 16px;
            line-height: 24px;
        }
        .key-card-information p {
            font-size: 21px;
            line-height: 27.3px;
        }
        .key-card-subtitle {
            font-size: 16px;
            line-height: 24px;
        }
        .key-start {
            margin-top: 20px;
        }
        .key-start {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
            max-width: 242px;
        }
        .blog {
            margin-bottom: 60px;
        }
        .consultation {
            margin-bottom: 60px;
        }
        .consultation-container {
            padding: 80px 80px 70px 80px;
        }
        .consultation-container p {
            font-size: 16px;
            line-height: 24px;
        }
        .consultation-container h2 {
            max-width: 608px;
        }
        .consultation-container p {
            max-width: 608px;
        }
        .consultation-get {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
            max-width: 244px;
        }
        .action-btn {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
            max-width: 244px;
        }
        .footer-information p {
            font-size: 16px;
            line-height: 24px;
        }
        .footer-contacts span {
            font-size: 21px;
            line-height: 27.3px;
        }
        .footer-link span {
            font-size: 21px;
            line-height: 27.3px;
        }
        .footer-link a {
            font-size: 16px;
            line-height: 24px;
        }
        .footer-links {
            gap: 20px;
        }
        .footer-link240 {
            width: 100%;
            max-width: 229.67px;
        }
        .footer-link416 {
            width: 100%;
            max-width: 229.67px;
        }
        .footer-link300 {
            width: 100%;
            max-width: 229.67px;
        }
        .footer-link296 {
            width: 100%;
            max-width: 229.67px;
        }
        .footer-information img {
            width: 229px;
        }
        .footer-down p {
            font-size: 16px;
            line-height: 24px;
        }
        .footer-down a {
            font-size: 16px;
            line-height: 24px;
        }
        .footer-contacts span {
            font-size: 21px;
            line-height: 27.3px;
        }
        .case-container {
            gap: 0px;
        }
        .main-talk-information span {
            font-size: 16px;
            line-height: 24px;
        }
        .main-company-cards {
            flex-wrap: wrap;
        }
        .main-company-card {
            max-width: 100%;
        }
        .main-company-card span {
            font-size: 21px;
            line-height: 27.3px;
        }
        .we-container {
            padding: 60px 20px 60px 20px;
        }
        .we-block span {
            font-size: 30px;
            line-height: 39px;
        }
        .we-block p {
            font-size: 16px;
            line-height: 24px;
        }
        .we-block {
            max-width: 354px;
        }
        .us {
            margin: 50px 0px 50px 0px;
        }
        .us h2 {
            margin-bottom: 20px;
        }
        .us-card span {
            font-size: 21px;
            line-height: 27.3px;
        }
        .us-card p {
            font-size: 16px;
            line-height: 24px;
        }
        .us-card {
            height: 243px;
        }
        .story h2 {
            margin-bottom: 20px;
        }
        .story-card p {
            font-size: 16px;
            line-height: 24px;
        }
        .team-card button {
            font-size: 21px;
            line-height: 27.3px;
        }
        .team-card p {
            font-size: 16px;
            line-height: 24px;
        }
        .story {
            margin-bottom: 50px;
        }
        .team h2 {
            margin-bottom: 20px;
        }
        .main-why-information button {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
        }
        .faq {
            margin: 60px 0px 60px;
        }
        .faq-container {
            gap: 60px;
        }
        .faq-card-container span {
            font-size: 21px;
            line-height: 27px;
        }
        .faq-card-container a {
            font-size: 16px;
            line-height: 24px;
        }
        .faq-card-block .see-all {
            font-size: 16px;
            line-height: 24px;
        }
        .faq-card {
            max-width: 354px;
        }
        .board-container p {
            font-size: 16px;
            line-height: 24px;
        }
        .board-container span {
            font-size: 30px;
            line-height: 39px;
        }
        .board-block {
            margin: 20px 0px 20px 0px;
        }
        .board-block input {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .board-block input::placeholder {
            font-size: 16px;
            line-height: 24px;
        }
        .board-name {
            max-width: 100%;
        }
        .board-email {
            max-width: 100%;
        }
        .board-container button {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
            max-width: 150px;
        }
        .board-container {
            padding: 50px 60px 60px 60px;
        }
        .board {
            margin-bottom: 60px;
        }
        .faq-search {
            height: 44px;
        }
        .faq-search input {
            font-size: 16px;
            line-height: 24px;
        }
        .faq-search input::placeholder {
            font-size: 16px;
            line-height: 24px;
        }
        .modal-information p {
            font-size: 16px;
            line-height: 24px;
        }
        .modal-information span {
            font-size: 21px;
            line-height: 27px;
        }
        .modal-text p {
            font-size: 16px;
            line-height: 24px;
        }
        .styled-list li {
            font-size: 16px;
            line-height: 24px;
        }
        .modal-content {
            padding: 40px 20px 40px 20px;
        }
        .table-title {
            max-width: 210px;
        }
        .table-title-tm {
            max-width: 70px;
        }
        .table-add p {
            font-family: 'Poppins';
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #0B0F20D6;
        }
        .table-line1 p {
            font-family: 'Poppins';
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #0B0F20D6;
        }
        .table-line2 p {
            font-family: 'Poppins';
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #0B0F20D6;
        }
        .table-line2 p span {
            font-family: 'Poppins';
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #0B0F2038;
        }
        .table-height2 {
            height: 68px;
        }
        .table-flex {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        .table-center {
            text-align: center;
        }
        .table-information {
            margin-bottom: 20px;
        }
        .table-information p {
            font-size: 16px;
            line-height: 24px;
        }
        .table {
            margin-bottom: 60px;
        }
        .should-left p {
            font-size: 16px;
            line-height: 24px;
        }
        .should-block span {
            font-size: 60px;
            line-height: 78px;
        }
        .should-block p {
            font-size: 16px;
            line-height: 24px;
            text-align: center;
        }
        .start-container {
            padding: 50px 60px 60px 60px;
        }
        .start-information p {
            font-size: 16px;
            line-height: 24px;
        }
        .start-information a {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
        }
        .option-card-information span {
            font-size: 21px;
            line-height: 27px;
        }
        .option-card-information p {
            font-size: 16px;
            line-height: 24px;
        }
        .option-card-pay-block span {
            font-size: 16px;
            line-height: 24px;
        }
        .option-card-pay-block p {
            font-size: 30px;
            line-height: 29px;
        }
        .option-card-pay-container a {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .option-card-pay {
            width: 300px;
            min-width: 300px;
            height: 226px;
        }
        .option-card-accepts-block p {
            font-size: 16px;
            line-height: 24px;
        }
        .option {
            margin: 60px 0px 60px 0px;
        }
        .strategies-left p {
            font-size: 16px;
            line-height: 24px;
        }
        .strategies-container {
            padding: 50px 20px 60px 20px;
        }
        .solved-card span {
            font-size: 21px;
            line-height: 27px;
        }
        .solved-card p {
            font-size: 16px;
            line-height: 24px;
        }
        .solved-line {
            height: 68px;
        }
        .solved-text {
            gap: 40px;
        }
        .solved-container {
            padding: 60px 20px 50px 20px;
        }
        .minor-content {
            flex-direction: column;
        }
        .minor-card {
            max-width: 640px;
        }
        .minor-card span {
            font-size: 21px;
            line-height: 27px;
        }
        .minor-card p {
            font-size: 16px;
            line-height: 24px;
        }
        .minor-card img {
            max-width: 200px;
        }
        .minor {
            margin: 50px 0px 50px 0px;
        }
        .action-left p {
            font-size: 16px;
            line-height: 24px;
        }
        .action-left a {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .action-left {
            margin-bottom: 40px;
        }
        .packages {
            margin-top: 120px;
        }
        .start-search {
            margin-top: 100px;
        }
        .input-container input {
            height: 44px;
            font-size: 16px;
            line-height: 25px;
        }
        .input-container input::placeholder {
            font-size: 16px;
            line-height: 25px;
        }
        .form-button {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
        }
        .faq-cards {
            max-width: 726px;
        }
        .office-case {
            margin-bottom: 60px;
        }
        .contacts {
            margin: 160px 0px 80px 0px;
        }
        .add h1 {
            margin-bottom: 80px;
        }
        .contacts-decktop {
            display: none;
        }
        .contacts-mobile {
            display: flex;
            margin: 20px auto;
        }
        .contacts-information span {
            font-size: 21px;
            line-height: 27px;
        }
        .contacts-information p {
            font-size: 16px;
            line-height: 24px;
        }
        .contacts-information {
            max-width: 229px;
            min-width: 229px;
        }
        .resources {
            margin: 60px 0px 60px 0px;
        }
        .resources-container {
            gap: 60px;
        }
        .resources-card span {
            font-size: 21px;
            line-height: 27px;
        }
        .resources-card p {
            font-size: 16px;
            line-height: 24px;
        }
        .testimonials-card {
            flex: 1 1 100%;
            max-width: 100%;
        }
        .testimonials-card span {
            font-size: 21px;
            line-height: 27px;
        }
        .testimonials-card p {
            font-size: 16px;
            line-height: 24px;
        }
        .testimonials {
            margin: 160px 0px 80px 0px;
        }
        .checkout {
            margin: 60px 0px 60px 0px;
        }
        .article {
            margin: 160px 0px 80px 0px;
        }
        .services {
            margin: 160px 0px 80px 0px;
        }
        .testimonials-button {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .contacts a {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .services-card span {
            font-size: 21px;
            line-height: 27px;
        }
        .services-card p {
            font-size: 16px;
            line-height: 24px;
        }
        .services-card a {
            font-size: 16px;
            line-height: 24px;
        }
        .article-card p {
            font-size: 16px;
            line-height: 24px;
        }
        .article-card-faqcartoon p {
            font-size: 16px;
            line-height: 24px;
        }
        .article-title {
            font-size: 16px;
            line-height: 24px;
        }
        .actions-container {
            gap: 20px;
        }
        .action-left {
            margin-top: 20px;
        }
        .actions-container {
            gap: 0px;
        }
        .article-start {
            margin-bottom: 60px;
        }
        .article-choote {
            margin-top: 120px;
        }
        .checkout-block span {
            font-size: 16px;
            line-height: 24px;
        }
        .checkout-accept-info p {
            font-size: 16px;
            line-height: 24px;
        }
        .checkout-block4 div {
            font-size: 18px;
            line-height: 24px;
        }
        .checkout-block5 p {
            font-size: 16px;
            line-height: 24px;
        }
        .checkout-block5 button {
            font-size: 16px;
            line-height: 24px;
            height: 44px;
        }
        .checkout-bank1 {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .checkout-bank1::placeholder {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .checkout-bank2 {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .checkout-bank2::placeholder {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .checkout-input input {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .checkout-input select {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .checkout-input input::placeholder {
            height: 44px;
            font-size: 16px;
            line-height: 24px;
        }
        .checkout-subtitle {
            font-size: 16px;
            line-height: 24px;
        }
        .checkout-add p {
            font-size: 16px;
            line-height: 24px;
        }
        .checkout-table span {
            font-size: 16px;
            line-height: 24px;
        }}
    @media (max-width: 767px) {
        #block-993-v2 {
            display: block
        }
        #block-993-v1 {
            display: none
        }
        .consultation-buttons-container {
            flex-direction: column;
            /*align-items: center;*/
        }
        .consultation-get {
            max-width: 100%;
        }
        .phones {
            display: none
        }
        .mld-40 {
            margin-left: 0px !important;
        }
        .serve-card {
            width: 320px;
            height: auto;
        }
        .header-container {
            height: 66px;
        }
        .header-block p {
            display: none;
        }
        .main-decoration {
            display: none;
        }
        .main-slider-buttons {
            top: 390px;
        }
        .call {
            display: flex;
        }
        .logo img {
            width: 158px;
        }
        .sing {
            display: none;
        }
        .nav-free {
            display: none;
        }
        .main-buttons {
            flex-direction: column;
            gap: 10px;
        }
        .main-register {
            max-width: 100%;
        }
        .main-speak {
            max-width: 100%;
        }
        .main-slider-slide {
            flex: 0 0 315px;
        }
        .main-block {
            gap: 15px;
        }
        .main-block img {
            width: 150px;
        }
        .success-container {
            height: 675px;
            /*padding: 292px 20px 20px 20px;*/
            padding: 0;
        }
        .success-block-center {
            top: 80px;
        }
        .success-decoration1 {
            display: none;
        }
        .success-decoration2 {
            display: none;
        }
        .success-block-center span {
            /*font-size: 110px;*/
            font-size: 90px;
            /*line-height: 80px;*/
            line-height: 95px;
        }
        .success-container {
            flex-wrap: wrap;
            gap: 20px;
        }
        .reputation-title p {
            font-size: 18px;
            line-height: 24px;
            font-weight: 600;
        }
        .reputation-container {
            padding: 50px 20px 60px 20px;
        }
        .calculator-container {
            padding: 50px 20px 60px 20px;
        }
        .calculator-main-container {
            padding-bottom: 30px;
        }
        .process-card-mobile {
            flex-direction: column;
            align-items: center;
        }
        .process-card-mobile-information {
            align-items: center;
        }
        .process-card-mobile-information span {
            text-align: center;
            font-size: 18px;
            line-height: 24px;
            font-weight: 600;
        }
        .process-card-mobile-information p {
            text-align: center;
        }
        .reputation-start {
            max-width: 100%;
        }
        .process-start {
            max-width: 100%;
        }
        .case-container {
            padding: 50px 0px 60px 20px;
        }
        .slide {
            flex: 0 0 315px;
            height: 700px;
        }
        .slides {
            height: 700px;
            margin: 20px 0px 20px 0px;
        }
        .slide-brand1 {
            width: 275px;
        }
        .slide-brand2 {
            width: 275px;
        }
        .slide-brand3 {
            width: 275px;
        }
        .slide-card span {
            font-size: 18px;
            line-height: 24px;
            font-weight: 600;
        }
        .choose-container {
            padding: 50px 20px 60px 20px;
        }
        .choose-card-block span {
            font-size: 18px;
            line-height: 24px;
            font-weight: 600;
        }
        .reviews {
            margin: 60px 0px 60px 0px;
        }
        .reviews-talk {
            margin: 60px 0px 0px 0px;
        }
        .serve-card-information p {
            font-size: 18px;
            line-height: 24px;
            font-weight: 600;
        }
        .serve-start {
            font-size: 16px;
            line-height: 24px;
            max-width: 100%;
        }
        .key-card-information p {
            font-size: 18px;
            line-height: 25px;
        }
        .key-start {
            max-width: 100%;
        }
        .consultation-container h2 {
            text-align: center;
        }
        .consultation-container p {
            text-align: center;
        }
        .consultation-decoration2 {
            display: none;
        }
        .consultation-container {
            padding: 50px 20px 60px 20px;
        }
        .footer-links {
            flex-direction: column;
            max-height: 100%;
            gap: 40px;
        }
        .footer-information {
            flex-direction: column;
        }
        .footer-information-container {
            gap: 20px;
            margin: 0 auto;
        }
        .footer-information img {
            width: 229px;
        }
        .footer-text1 {
            margin-bottom: 20px;
        }
        .footer-contacts span {
            width: 100%;
            max-width: 335px;
            text-align: center;
        }
        .footer-socials {
            width: 100%;
            max-width: 335px;
            justify-content: space-between;
        }
        .footer-contant {
            margin-bottom: 20px;
        }
        .footer-down p {
            text-align: center;
        }
        .footer-down a {
            text-align: center;
        }
        .footer-down {
            flex-direction: column-reverse;
            gap: 20px;
        }
        .footer-link240 {
            width: 100%;
            max-width: 100%;
        }
        .footer-link416 {
            width: 100%;
            max-width: 100%;
        }
        .footer-link300 {
            width: 100%;
            max-width: 100%;
        }
        .footer-link296 {
            width: 100%;
            max-width: 100%;
        }
        .us-card span {
            font-size: 18px;
            line-height: 24px;
        }
        .us-cards {
            flex-wrap: wrap;
        }
        .us-card {
            height: auto;
        }
        .we-content {
            flex-direction: column;
        }
        .we-block {
            max-width: 100%;
        }
        .main-why-information button {
            max-width: 100%;
        }
        .faq-card {
            max-width: 335px;

        }
        .faq-card-container span {
            font-size: 18px;
            line-height: 24px;
        }
        .board-container {
            padding: 50px 20px 60px 20px;
        }
        .board-container span {
            font-size: 24px;
            line-height: 27px;
        }
        .board-decoration2 {
            display: none;
        }
        .board-block {
            flex-direction: column;
        }
        .board-container button {
            max-width: 100%;
        }
        .modal-content {
            padding: 20px 20px 20px 20px;
        }
        .modal-information span {
            font-size: 18px;
            line-height: 24px;
        }
        .modal {
            padding: 0px 0px 0px 0px;
        }
        .modal-container {
            max-height: 70vh;
        }
        .modal-content {
            border-radius: 0px;
        }
        .table-line1 {
            display: flex;
            flex-direction: column;
        }
        .table-radius3 {
            border-radius: 0px 0px 0px 0px;
        }
        .table-line2 {
            display: flex;
            flex-direction: column;
        }
        .table-title {
            max-width: 100%;
            border: 1px solid #0B0F2038;
            display: flex;
            justify-content: center;
        }
        .table-title-tm {
            /*max-width: 100%;*/
            /*border: 1px solid #0B0F2038;*/
            display: flex;
            justify-content: center;
        }
        .table-block {
            padding: 0px 10px 0px 10px;
        }
        .table-block-tm {
            padding: 0px 10px 0px 10px;
        }
        .table-block-flag {
            padding: 10px 10px 0px 10px;
        }
        .table-add {
            padding: 0px 10px 0px 10px;
        }
        .table-add-tm {
            padding: 0px 10px 0px 10px;
        }
        .table-center {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
        }
        .table-height1 {
            height: auto;
        }
        .table-height1-tm {
            height: auto;
        }
        .table-height2 {
            height: auto;
        }
        .table44 {
            height: 44px;
            display: flex;
            justify-content: center;
        }
        .table44-tm {
            height: auto;
            display: flex;
            justify-content: left;
        }
        .table68 {
            height: 68px;
        }
        .table-radius4 {
            border-radius: 0px 0px 0px 0px;
        }
        .table-radius6 {
            border-radius: 0px 0px 0px 6px;
        }
        .table-gray1 {
            background-color: transparent;
        }
        .table-gray2 {
            background-color: #0B0F2008;
        }
        .table-information {
            margin-bottom: 0px;
        }
        .should-information {
            gap: 20px;
            padding: 50px 20px 60px 20px;
        }
        .should-block span {
            font-size: 50px;
            line-height: 65px;
        }
        .should-right {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 0px;
        }
        .start-decoration2 {
            display: none;
        }
        .start-information h2 {
            text-align: center;
        }
        .start-information p {
            text-align: center;
        }
        .start-information a {
            margin: 0 auto;
        }
        .start-container {
            padding: 50px 20px 60px 20px;
        }
        .option-card-accepts {
            display: none;
        }
        .option-card-block {
            flex-direction: column;
        }
        .option-card-pay {
            width: 100%;
            max-width: 100%;
        }
        .option-card-information {
            width: 100%;
            max-width: 100%;
        }
        .option-card-information span {
            font-size: 18px;
            line-height: 27px;
        }
        .option-card-pay-block p {
            font-size: 24px;
            line-height: 31px;
        }
        .action-left {
            padding: 0px 20px 0px 20px;
        }
        .action-rating {
            flex-wrap: wrap;
        }
        .action-left a {
            max-width: 100%;
        }
        .solved-lines {
            display: none;
        }
        .solved-information {
            gap: 20px;
        }
        .solved-text {
            gap: 20px;
        }
        .strategies-right p {
            font-size: 16px;
            line-height: 24px;
        }
        .solved-card span {
            font-size: 18px;
            line-height: 27px;
        }
        .minor-card span {
            font-size: 16px;
            line-height: 27px;
        }
        .strategies-right {
            flex-wrap: wrap;
            gap: 20px;
        }
        .strategies-big span {
            font-size: 50px;
            line-height: 65px;
        }
        .strategies-small span {
            font-size: 50px;
            line-height: 65px;
        }
        .option-filing {
            margin-top: 100px;
        }
        .option h2 {
            margin-bottom: 20px;
        }
        .start-search-h2 {
            margin-bottom: 20px;
        }
        .start-information a {
            max-width: 100%;
        }
        .overlay-form {
            padding: 0px;
        }
        .inquiry-block {
            height: 100%;
            padding: 60px 20px 60px 20px;
            border-radius: 0px;
        }
        .input-container {
            flex-direction: column;
        }
        .form-button {
            max-width: 100%;
        }
        .start-information p {
            text-align: start;
        }
        .start-monitoring-h2 {
            display: flex;
            justify-content: start;
            align-items: start;
        }
        .start-container-gold {
            justify-content: start;
            margin-top: 20px;
        }
        .faq-cards {
            max-width: 688px;
        }
        .table-add {
            border: 0px solid #0B0F2038;
            border-top: 1px solid #0B0F2038;
            border-left: 1px solid #0B0F2038;
            border-right: 1px solid #0B0F2038;
        }
        .start-information .start-button {
            max-width: 100%;
        }
        .contacts {
            margin: 130px 0px 60px 0px;
        }
        .add h1 {
            margin-bottom: 60px;
        }
        .contacts-countrys {
            gap: 20px;
        }
        .contacts a {
            max-width: 100%;
        }
        .contacts-information span {
            font-size: 18px;
            line-height: 24px;
        }
        .contacts-country {
            flex-direction: column;
            justify-content: start;
        }
        .contacts-information {
            height: auto;
            max-width: 100%;
            min-width: 100%;
        }
        .contacts-block {
            margin-bottom: -20px;
        }
        .resources-card {
            flex: 1 1 100%;
        }
        .main-resources {
            padding: 86px 20px 0px 20px;
        }
        .resources-card span {
            font-size: 18px;
            line-height: 24px;
        }
        .testimonials {
            margin: 130px 0px 60px 0px;
        }
        .checkout {
            margin: 60px 0px 60px 0px;
        }
        .article {
            margin: 130px 0px 60px 0px;
        }
        .services {
            margin: 130px 0px 50px 0px;
        }
        .testimonials-card span {
            font-size: 18px;
            line-height: 24px;
        }
        .services-card {
            flex-basis: 100%;
        }
        .services-card span {
            font-size: 18px;
            line-height: 24px;
        }
        .article-card span {
            font-size: 18px;
            line-height: 27px;
        }
        .action-rating {
            margin-top: 20px;
        }
        .checkout-table {
            flex-direction: column;
        }
        .second {
            border-left: 0px solid #0B0F2038;
            border-top: 1px solid #0B0F2038;
        }
        .first {
            display: flex;
            justify-content: start;
            text-align: start;
            width: 100%;
            max-width: 100%;
            background-color: #CFD9FF;
        }
        .checkout-block5 {
            flex-direction: column;
            width: 100%;
            max-width: 100%;
        }
        .checkout-block6 {
            max-width: 100%;
            gap: 37px;
        }
        .checkout-block7 {
            max-width: 100%;
            gap: 15.5px;
        }
        .checkout-bank1 {
            width: 100%;
            max-width: 100%;
        }
        .checkout-bank2 {
            width: 100%;
            max-width: 100%;
        }
        .checkout-block5 p {
            text-align: start;
            margin-bottom: 10px;
            width: 100%;
        }
        .checkout-line {
            width: 100%;
            max-width: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            top: 5px;
        }
        .checkout-block5 button {
            max-width: 100%;
        }
        .start-information .blog-start {
            max-width: 1100%;
        }}
    .pricing-section {
        display: flex;
        justify-content: center;
        align-items: center;
        /*min-height: 70dvh;*/
        font-family: 'Poppins';
        color: #0B0F20D6;
        margin-top: 30px;
    }
    .monitoring-section {
        display: flex;
        justify-content: center;
        align-items: center;
        /*min-height: 56vh;*/
        font-family: 'Poppins';
        color: #0B0F20D6;
        margin-top: 30px;
    }
    .gf-comment {
        margin-bottom: 160px;
    }
    .pricing-container {
        display: flex;
        gap: 20px;
        max-width: 900px;
        width: 100%;
        padding: 0 10px 0 10px;
    }
    .pricing-card {
        flex: 1;
        background: white;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .pricing-card.teams {
        background-color: #f8f9ff;
    }
    .card-header {
        margin-bottom: 24px;
    }
    .card-title {
        font-size: 23px;
        color: #333;
        margin-bottom: 16px;
    }
    .price {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 8px;
    }
    .price-period {
        color: #666;
        font-size: 14px;
    }
    .description {
        color: #666;
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    .get-started {
        display: block;
        width: 100%;
        padding: 12px;
        border-radius: 6px;
        text-align: center;
        text-decoration: none;
        margin-bottom: 24px;
        font-size: 18px;
    }
    .teams .get-started {
        background-color: #4F6FEF;
        color: white;
    }
    .teams .get-started:hover {
        background-color: #3b56c4;
    }
    .individuals .get-started {
        background-color: #f8f9ff;
        color: #333;
    }
    .individuals .get-started:hover {
        background-color: #e8ebf9;
    }
    .feature-list {
        list-style: none;
        margin-top: 24px;
    }
    .feature-item {
        display: grid;
        grid-template-columns: 24px 1fr;
        align-items: baseline;
        margin-bottom: 12px;
        font-size: 14px;
        color: #333;
    }
    .checkmark {
        color: #4F6FEF;
    }
    .trial-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #1a1f36;
        color: white;
        padding: 4px 8px;
        border-radius: 16px;
        font-size: 12px;
    }
    .plan-label {
        font-size: 14px;
        color: #666;
        margin-bottom: 16px;
        padding-bottom: 24px;
        border-bottom: 1px solid #E5E7EB;
        /* Add horizontal divider */
    }
    .gray {
        color: #666 !important;
    }
    .align-items-center {
        align-items: center
    }
    @media (max-width: 768px) {
        .gf-comment {
            margin-bottom: 60px;
        }
        .pricing-container {
            flex-direction: column;
        }}
    .faq-section-wrapper {
        /*margin-top: 160px !important;*/
    }
    .mt-7 {margin-top: 7px;}
    .canada-process {
        display: flex;
        justify-content: center;
        padding: 80px 20px;
        background: transparent;
        font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }
    .process-inner {
        width: 100%;
        max-width: 1380px;
        text-align: center;
    }
    .process-title {
        font-weight: 700;
        font-size: 42px;
        margin-bottom: 40px;
        color: #0B0F20;
    }
    .steps {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        padding: 0 40px;
        flex-wrap: nowrap;
    }
    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: calc((100% - 5 * 20px) / 6);
        min-width: 100px;
    }
    .step-circle {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: #C71E2B;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 600;
        font-size: 20px;
        box-shadow: 0 4px 8px rgba(11,15,32,0.06);
        margin-bottom: 18px;
    }
    .step-label {
        font-weight: 400;
        font-size: 16px;
        line-height: 1.25;
        color: #0B0F20D6;
        max-width: 140px;
        text-align: center;
        word-wrap: break-word;
        margin-top: 7px;
    }
    .post-image-wrapper {
        width: 100%;
        height: 200px;
        overflow: hidden;
        border-radius: 8px 8px 0 0;
        background: #f5f5f5;
        position: relative;
    }
    .post-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.3s ease;
    }
    .services-card:hover .post-image {
        transform: scale(1.05);
    }
    .post-placeholder {
        opacity: 0.7;
    }
    .services-card {
        overflow: hidden;
        border-radius: 8px;
    }
    .services-information {
        padding-top: 15px;
    }
    @media (max-width: 768px) {
        .post-image-wrapper {
            height: 180px;
        }}
    @media (max-width: 480px) {
        .post-image-wrapper {
            height: 150px;
        }}
    .dropdown-group-label {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 14px;
        color: #5D7CFF;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 15px;
        margin-bottom: 5px;
        display: block;
        width: 100%;
        text-align: start;
    }
    .dropdown-more > .dropdown-group-label:first-child {
        margin-top: 0;
    }
    .dropdown-more > a {
        margin-bottom: 5px;
    }
    .dropdown-more > a:last-child {
        margin-bottom: 0;
    }
    .decoder-trust-strip {
        background: #f8f9ff;
        padding: 30px 20px;
        text-align: center;
    }
    .decoder-trust-content {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }
    .decoder-trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #374151;
        font-size: 15px;
        font-family: 'Poppins', sans-serif;
    }
    .decoder-trust-item strong {
        color: #1a1a1a;
    }
    .decoder-trust-item svg {
        width: 24px;
        height: 24px;
        color: #5D7CFF;
    }
    @media (max-width: 768px) {
        .decoder-trust-content {
            flex-direction: column;
            gap: 20px;
        }}
    .hero-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin: 20px 0;
    }
    .hero-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 2px 16px;
        border: 1px solid #0B0F2038;
        border-radius: 100px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 12px;
        line-height: 21px;
        color: #0B0F209C;
        background-color: #E8EEFE;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }
    @media (max-width: 768px) {
        .hero-badges {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        .hero-badge {
            font-size: 10px;
            padding: 6px 14px;
        }}
    .index {
        padding: 100px 20px 60px 20px;
    }
    .main-content {
        align-items: flex-start;
        display: flex;
        gap: 24px;
        flex-wrap: nowrap;
    }
    .main-left {
        flex: 0 1 62%;
        max-width: 820px;
    }
    .main-right {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-top: 90px;
        width: 100%;
        flex: 1 1 38%;
    }
    .main-buttons {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        flex-wrap: nowrap;
    }
    .main-buttons .main-register,
    .main-buttons .main-speak {
        white-space: nowrap;
    }
    .main-register {max-width: 330px;}
    .main-container {
        margin-bottom: 30px;
    }
    @media (max-width: 767px) {
        .main-register {
            max-width: 100%;
        }
        .main-container {
            margin-right: 20px;
        }
        .main-left {
            margin-bottom: 0;
        }
        .main-container {
            margin-bottom: 0;
        }
        .index {padding-bottom: 0;padding-right: 0}}
    .hero-info-card {
        background: linear-gradient(145deg, #323544 0%, #3d4156 100%);
        border-radius: 6px;
        padding: 30px;
        position: relative;
        overflow: hidden;
        max-width: 520px;
        width: 100%;
        box-shadow: 0 10px 30px rgba(11,15,32,0.18);
    }
    .hero-info-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle at top right, rgba(93, 124, 255, 0.15), transparent 60%);
        pointer-events: none;
    }
    .hero-info-label {
        font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-weight: 600;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #FFFFFFCC;
        margin-bottom: 10px;
    }
    .hero-info-title {
        font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-weight: 600;
        font-size: 26px;
        line-height: 34px;
        color: #FFFFFF;
        margin: 0 0 18px 0;
    }
    .hero-info-list {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }
    .hero-info-list li {
        font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        color: #FFFFFFD6;
        margin-bottom: 12px;
        padding-left: 16px;
        position: relative;
    }
    .hero-info-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #5D7CFF;
        font-size: 14px;
    }
    .hero-info-list li:last-child {
        margin-bottom: 0;
    }
    .hero-info-footnote {
        font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        color: #FFFFFFB3;
        margin: 0;
        padding-top: 16px;
        border-top: 1px solid #FFFFFF1A;
    }
    @media (max-width: 1300px) {
        .main-right {
            margin-top: 0px;
        }}
    @media (max-width: 768px) {
        .main-content { gap: 16px; flex-wrap: wrap; }
        .main-left { flex: 1 1 100%; max-width: 100%; }
        .main-right { flex: 1 1 100%; }
        .main-buttons { flex-wrap: wrap; gap: 10px; }
        .hero-info-card {
            padding: 24px 20px;
            max-width: 100%;
        }
        .hero-info-title {
            font-size: 22px;
            line-height: 30px;
        }
        .hero-info-list li {
            font-size: 14px;
            line-height: 22px;
        }}
    .ny-competition-section {
        background-color: #323544;
        padding: 80px 20px;
        font-family: 'Poppins', sans-serif;
    }
    .ny-competition-container {
        max-width: 1180px;
        margin: 0 auto;
        text-align: left;
    }
    .ny-competition-subhead {
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #fff;
        margin: 0 0 16px 0;
        font-weight: 500;
        display: block;
    }
    .ny-competition-title {
        font-size: 38px;
        line-height: 1.25;
        color: #fff;
        margin: 0 0 30px 0;
        font-weight: 700;
    }
    .ny-competition-text p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 24px;
        color: #fff;
    }
    .ny-competition-text p:last-child {
        margin-bottom: 0;
    }
    @media (max-width: 768px) {
        .ny-competition-section {
            padding: 60px 20px;
        }
        .ny-competition-title {
            font-size: 28px;
            margin-bottom: 20px;
        }
        .ny-competition-text p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }}
    .ny-vs-federal-section {
        padding: 80px 20px;
        background-color: #F9FAFF;
        font-family: 'Poppins', sans-serif;
    }
    .ny-vs-federal-container {
        max-width: 1180px;
        margin: 0 auto;
    }
    .ny-header-block {
        margin-bottom: 50px;
        max-width: 900px;
    }
    .ny-eyebrow {
        display: block;
        font-size: 13px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #5D7CFF;
        font-weight: 600;
        margin-bottom: 12px;
    }
    .ny-main-title {
        font-size: 42px;
        line-height: 1.2;
        color: #0B0F20;
        margin-bottom: 24px;
        font-weight: 700;
    }
    .ny-subtitle {
        font-size: 18px;
        line-height: 1.6;
        color: #0B0F20D6;
        font-weight: 400;
    }
    .ny-subtitle strong {
        color: #0B0F20;
        font-weight: 600;
    }
    .ny-cards-grid {
        display: flex;
        gap: 30px;
        margin-bottom: 50px;
    }
    .ny-card {
        flex: 1;
        background: #FFFFFF;
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    .ny-card-badge {
        display: inline-block;
        padding: 6px 12px;
        background-color: #E8EEFE;
        color: #0B0F209C;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }
    .ny-card-badge::before {
        content: "•";
        color: #5D7CFF;
        margin-right: 6px;
        font-size: 14px;
    }
    .ny-card-title {
        font-size: 24px;
        color: #0B0F20;
        margin-bottom: 16px;
        font-weight: 600;
        line-height: 1.3;
    }
    .ny-card-desc {
        font-size: 16px;
        line-height: 1.6;
        color: #0B0F20D6;
        margin-bottom: 24px;
    }
    .ny-card-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .ny-card-list li {
        font-size: 16px;
        line-height: 1.6;
        color: #0B0F20D6;
        margin-bottom: 12px;
        padding-left: 20px;
        position: relative;
    }
    .ny-card-list li::before {
        content: "•";
        color: #0B0F20;
        position: absolute;
        left: 0;
        font-weight: bold;
    }
    .ny-table-wrapper {
        background: #FFFFFF;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #E5E7EB;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    .ny-comparison-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    .ny-comparison-table tbody tr:nth-child(even) {
        background-color: #F9FAFF;
    }
    .ny-comparison-table th {
        text-align: left;
        padding: 20px 24px;
        background-color: #F1F3F5;
        color: #6B7280;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        border-bottom: 1px solid #E5E7EB;
    }
    .ny-comparison-table th.col-criteria {
        width: 20%;
    }
    .ny-comparison-table td {
        padding: 20px 24px;
        border-bottom: 1px solid #E5E7EB;
        vertical-align: top;
        font-size: 16px;
        color: #0B0F20D6;
        line-height: 1.5;
    }
    .ny-comparison-table tr:last-child td {
        border-bottom: none;
    }
    .col-criteria-cell {
        font-weight: 500;
        color: #0B0F20;
    }
    @media (max-width: 1024px) {
        .ny-cards-grid {
            flex-direction: column;
        }}
    @media (max-width: 768px) {
        .ny-vs-federal-section {
            padding: 60px 20px;
        }
        .ny-main-title {
            font-size: 28px;
        }
        .ny-cards-grid {
            gap: 20px;
        }
        .ny-card {
            padding: 24px;
        }
        .ny-table-wrapper {
            overflow-x: auto;
        }
        .ny-comparison-table th,
        .ny-comparison-table td {
            padding: 16px;
            font-size: 14px;
        }}
    .ny-specifics-section {
        background-color: #323544;
        color: #ffffff;
        padding: 80px 20px;
        font-family: 'Poppins', sans-serif;
    }
    .ny-specifics-container {
        max-width: 1180px;
        margin: 0 auto;
    }
    .ny-specifics-header-block {
        margin-bottom: 50px;
        max-width: 900px;
    }
    .ny-specifics-eyebrow {
        display: block;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #FFFFFF9C;
        font-weight: 500;
        margin-bottom: 12px;
    }
    .ny-specifics-title {
        font-size: 38px;
        line-height: 1.25;
        color: #FFFFFF;
        margin: 0 0 20px 0;
        font-weight: 700;
    }
    .ny-specifics-desc {
        font-size: 18px;
        line-height: 1.6;
        color: #FFFFFFD6;
        max-width: 1000px;
    }
    .ny-specifics-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .ny-specifics-card {
        flex: 1;
        background: #FFFFFF;
        border: 1px solid #E5E7EB;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    .ny-specifics-card-title {
        font-size: 24px;
        font-weight: 700;
        color: #0B0F20;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    .ny-specifics-card-desc {
        font-size: 16px;
        line-height: 1.6;
        color: #0B0F20D6;
        margin-bottom: 20px;
    }
    .ny-specifics-card-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .ny-specifics-card-list li {
        font-size: 16px;
        line-height: 1.6;
        color: #0B0F20D6;
        margin-bottom: 16px;
        position: relative;
        padding-left: 24px;
    }
    .ny-specifics-card-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #0B0F20;
        font-weight: bold;
        font-size: 18px;
        line-height: 24px;
        top: 0;
    }
    @media (max-width: 768px) {
        .ny-specifics-grid {
            grid-template-columns: 1fr;
        }
        .ny-specifics-card {
            padding: 30px 20px;
        }
        .ny-specifics-title {
            font-size: 28px;
        }}
    .ny-coverage-section {
        padding: 80px 20px;
        background-color: #F9FAFF;
        font-family: 'Poppins', sans-serif;
    }
    .ny-coverage-container {
        max-width: 1180px;
        margin: 0 auto;
    }
    .ny-coverage-header {
        margin-bottom: 50px;
        max-width: 900px;
    }
    .ny-coverage-eyebrow {
        display: block;
        font-size: 13px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #0B0F209C;
        font-weight: 600;
        margin-bottom: 12px;
    }
    .ny-coverage-title {
        font-size: 42px;
        line-height: 1.2;
        color: #0B0F20;
        margin-bottom: 24px;
        font-weight: 700;
    }
    .ny-coverage-desc {
        font-size: 18px;
        line-height: 1.6;
        color: #0B0F20D6;
        max-width: 800px;
    }
    .ny-coverage-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .ny-coverage-card {
        background: #FFFFFF;
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    .ny-coverage-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-color: #5D7CFF;
    }
    .ny-coverage-city {
        font-size: 18px;
        font-weight: 600;
        color: #0B0F20;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    .ny-coverage-region {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #0B0F209C;
    }
    @media (max-width: 1200px) {
        .ny-coverage-grid {
            grid-template-columns: repeat(4, 1fr);
        }}
    @media (max-width: 900px) {
        .ny-coverage-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .ny-coverage-title {
            font-size: 32px;
        }}
    @media (max-width: 600px) {
        .ny-coverage-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .ny-coverage-section {
            padding: 60px 20px;
        }
        .ny-coverage-title {
            font-size: 28px;
        }
        .ny-coverage-card {
            padding: 16px;
        }
        .ny-coverage-city {
            font-size: 16px;
        }}
    @media (max-width: 400px) {
        .ny-coverage-grid {
            grid-template-columns: 1fr;
        }}
    .ny-how-it-works-section {
        padding: 80px 20px;
        background-color: #323544;
        font-family: 'Poppins', sans-serif;
    }
    .ny-how-it-works-container {
        max-width: 1180px;
        margin: 0 auto;
    }
    .ny-how-it-works-header {
        margin-bottom: 50px;
        max-width: 1000px;
    }
    .ny-how-it-works-eyebrow {
        display: block;
        font-size: 13px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #FFFFFF9C;
        font-weight: 600;
        margin-bottom: 12px;
    }
    .ny-how-it-works-title {
        font-size: 42px;
        line-height: 1.2;
        color: #FFFFFF;
        margin-bottom: 24px;
        font-weight: 700;
    }
    .ny-how-it-works-desc {
        font-size: 18px;
        line-height: 1.6;
        color: #FFFFFFD6;
        max-width: 800px;
        margin-bottom: 0;
    }
    .ny-how-it-works-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .ny-hiw-card {
        background: #FFFFFF;
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        height: 100%;
        transition: all 0.3s ease;
    }
    .ny-hiw-card-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .ny-hiw-number {
        width: 32px;
        height: 32px;
        border-radius: 50px;
        background-color: #E8EEFE;
        color: #0B0F20;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    .ny-hiw-card-title {
        font-size: 18px;
        font-weight: 700;
        color: #0B0F20;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    .ny-hiw-card-text {
        font-size: 15px;
        line-height: 1.6;
        color: #0B0F20D6;
        margin-bottom: 0;
    }
    .ny-hiw-card:hover {
        border-color: #5D7CFF;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    @media (max-width: 600px) {
        .ny-hiw-card {
            flex-direction: column;
            gap: 16px;
        }}
    @media (max-width: 1200px) {
        .ny-how-it-works-grid {
            flex-direction: column;
        }}
    @media (max-width: 900px) {
        .ny-how-it-works-grid {
            flex-direction: column;
        }
        .ny-how-it-works-title {
            font-size: 32px;
        }}
    @media (max-width: 600px) {
        .ny-how-it-works-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .ny-how-it-works-section {
            padding: 60px 20px;
        }
        .ny-how-it-works-title {
            font-size: 28px;
        }
        .ny-hiw-card {
            padding: 24px;
        }}
    .ny-why-choose-section {
        padding: 80px 20px;
        background-color: #F9FAFF;
        font-family: 'Poppins', sans-serif;
    }
    .ny-why-choose-container {
        max-width: 1180px;
        margin: 0 auto;
    }
    .ny-why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .ny-why-card {
        background: #FFFFFF;
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    .ny-why-card-title {
        font-size: 20px;
        font-weight: 700;
        color: #0B0F20;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    .ny-why-card-desc {
        font-size: 16px;
        line-height: 1.6;
        color: #0B0F20D6;
    }
    @media (max-width: 900px) {
        .ny-why-grid {
            grid-template-columns: 1fr;
        }}
    @media (max-width: 600px) {
        .ny-why-choose-section {
            padding: 60px 20px;
        }
        .ny-why-card {
            padding: 30px 20px;
        }}
    .faq-section-wrapper {
        padding: 30px 20px !important;
        background-color: #F9FAFF;
    }
    .faq-disclaimer {
        margin-top: 10px;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        line-height: 1.6;
        color: #0B0F209C;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    @media (max-width: 900px) {
        .faq-section-wrapper {
            padding: 20px 20px !important;
        }}
    .consultation-get {
        max-width: none !important;
        width: auto !important;
        padding: 0 32px !important;
        white-space: nowrap !important;
    }
    .consultation-buttons-container {
        flex-wrap: wrap;
        justify-content: left;
    }
    @media (max-width: 600px) {
        .consultation-get {
            font-size: 16px !important;
            padding: 0 20px !important;
        }}
    .ny-testimonials-section {
        padding: 80px 20px;
        background: transparent;
        font-family: 'Poppins', sans-serif;
    }
    .ny-testimonials-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
    .ny-testimonials-eyebrow {
        color: #5D7CFF;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        font-size: 12px;
        font-weight: 800;
        display: block;
        margin-bottom: 8px;
    }
    .ny-testimonials-title {
        font-size: clamp(28px, 3vw, 40px);
        color: #1a1a1a;
        line-height: 1.2;
        margin: 0 0 40px;
        font-weight: 700;
    }
    .ny-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .ny-testimonial-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 20px;
        padding: 28px;
        text-align: left;
        box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    }
    .ny-testimonial-text {
        font-size: 15px;
        color: #374151;
        line-height: 1.65;
        margin: 0 0 16px;
        font-style: italic;
    }
    .ny-testimonial-author {
        font-size: 13px;
        color: #9ca3af;
        margin: 0;
    }
    @media (max-width: 768px) {
        .ny-testimonials-grid {
            grid-template-columns: 1fr;
        }}

/* ── TYPOGRAPHY ── */
    .te-h1 {
      font-weight: 600; font-size: 42px; line-height: 1.2; color: #1a1a1a;
      font-family: 'Poppins', sans-serif;
    }
    .te-h2 {
      font-weight: 600; font-size: 36px; line-height: 1.3; color: #1a1a1a;
      font-family: 'Poppins', sans-serif;
    }
    .te-h3 {
      font-weight: 600; font-size: 20px; line-height: 1.4; color: #1a1a1a;
      font-family: 'Poppins', sans-serif;
    }
    .te-p {
      font-weight: 400; font-size: 16px; line-height: 1.6; color: #6b7280;
      font-family: 'Poppins', sans-serif;
    }
    .te-label {
      font-size: 14px; line-height: 1.5; color: #6b7280;
      font-family: 'Poppins', sans-serif;
    }
    .te-section-eyebrow {
      display: inline-block;
      font-size: 13px; font-weight: 600;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: #5D7CFF; margin-bottom: 12px;
      font-family: 'Poppins', sans-serif;
    }

    /* ── CONTAINERS ── */
    .te-container        { width: 100%; max-width: 1380px; margin: 0 auto; z-index: 3; }
    .te-container-narrow { width: 100%; max-width: 1146px; margin: 0 auto; }

    /* ── BUTTONS ── */
    .te-btn-primary {
      height: 47px; padding: 0 24px;
      background-color: #5D7CFF; color: #FFFFFF;
      border: none; border-radius: 100px;
      font-family: 'Poppins', sans-serif; font-weight: 500;
      font-size: 18px; line-height: 27px;
      cursor: pointer; transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .te-btn-primary:hover { background-color: #244EFF; text-decoration: none; }

    .te-btn-secondary {
      height: 47px; padding: 0 24px;
      background-color: #FFFFFF; color: #0B0F20D6;
      border: 1px solid #0B0F20D6; border-radius: 100px;
      font-family: 'Poppins', sans-serif; font-weight: 500;
      font-size: 18px; cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .te-btn-secondary:hover { background-color: #CFD9FF; text-decoration: none; }

    .te-btn-primary-full { width: 100%; max-width: 100%; }

    /* ── CARDS ── */
    .te-card {
      background-color: #FFFFFF;
      border-radius: 6px; padding: 24px;
      box-shadow: 0px 4px 4px 0px #0B0F200F;
      display: flex; flex-direction: column; gap: 8px;
      transition: all 0.3s ease;
    }
    .te-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    .te-card-icon {
      width: 56px; height: 56px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 4px; flex-shrink: 0;
    }
    .te-card-icon.blue   { background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%); }
    .te-card-icon.orange { background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%); }
    .te-card-icon.red    { background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%); }
    .te-card-icon.yellow { background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%); }
    .te-card-icon.green  { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
    .te-card-icon.purple { background: linear-gradient(135deg, #EDE7F6 0%, #D1C4E9 100%); }

    .te-card-title { font-weight: 600; font-size: 20px; color: #1a1a1a; font-family: 'Poppins', sans-serif; line-height: 1.4; }
    .te-card-desc  { font-size: 16px; color: #6b7280; line-height: 1.6; font-family: 'Poppins', sans-serif; }

    /* ── GRIDS ── */
    .te-cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .te-cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

    /* ── SECTIONS ── */
    .te-section-light {
      display: flex; justify-content: center;
      padding: 120px 20px;
      background-color: #F9FAFF;
    }
    .te-section-white {
      display: flex; justify-content: center;
      padding: 120px 20px;
      background-color: #FFFFFF;
    }
    .te-section-dark {
      display: flex; justify-content: center;
      padding: 120px 20px;
      background-color: #323544;
    }
    .te-section-dark .te-h1, .te-section-dark .te-h2, .te-section-dark .te-h3 { color: #FFFFFF; }
    .te-section-dark .te-p { color: rgba(255,255,255,0.8); }
    .te-section-dark .te-section-eyebrow { color: rgba(255,255,255,0.6); }
    .te-section-dark a { color: rgba(255,255,255,0.8); }
    .te-section-dark a:hover { text-decoration: underline; }

    /* ── HERO ── */
    .te-hero-section {
      background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFF 100%);
      border-bottom: 1px solid #0B0F2014;
      padding: 100px 20px 80px;
      display: flex; justify-content: center;
    }
    .te-hero-grid {
      display: grid; grid-template-columns: 1fr 480px;
      gap: 60px; align-items: center;
    }
    .te-hero-pill {
      display: inline-flex; gap: 10px; align-items: center;
      padding: 8px 16px; border-radius: 100px;
      background: #F0F2FF; border: 1px solid #CFD9FF;
      font-size: 14px; font-weight: 600; color: #5D7CFF;
      margin-bottom: 20px;
      font-family: 'Poppins', sans-serif;
    }
    .te-hero-pill span.sep { color: #CFD9FF; }
    .te-hero-kpis { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
    .te-kpi-item {
      padding: 12px 16px;
      background: #FFFFFF;
      border: 1px solid #0B0F2014;
      border-radius: 6px;
      box-shadow: 0px 2px 4px 0px #0B0F200A;
    }
    .te-kpi-item strong { display: block; font-size: 15px; font-weight: 600; color: #1a1a1a; font-family: 'Poppins', sans-serif; }
    .te-kpi-item span   { font-size: 13px; color: #6b7280; font-family: 'Poppins', sans-serif; }
    .te-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
    .te-hero-disclaimer { font-size: 13px; color: #6b7280; margin-top: 14px; font-family: 'Poppins', sans-serif; }

    /* hero callout card */
    .te-hero-callout {
      background: #FFFFFF;
      border-radius: 6px;
      padding: 28px;
      box-shadow: 0px 4px 20px 0px #0B0F2014;
      border: 1px solid #0B0F2014;
      display: flex; flex-direction: column; gap: 16px;
    }
    .te-callout-header { display: flex; gap: 14px; align-items: flex-start; }
    .te-callout-icon {
      width: 40px; height: 40px; border-radius: 12px;
      background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .te-callout-divider { height: 1px; background: #e5e7eb; }
    .te-callout-lsi {
      font-size: 13px; line-height: 1.6; color: #6b7280;
      font-family: 'Poppins', sans-serif;
    }

    /* ── CHECKLIST ── */
    .te-styled-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
    .te-styled-list li {
      position: relative; padding-left: 20px;
      font-size: 16px; line-height: 1.6; color: #6b7280;
      font-family: 'Poppins', sans-serif;
    }
    .te-styled-list li::before {
      content: ""; position: absolute; left: 0; top: 10px;
      width: 6px; height: 6px;
      background-color: #5D7CFF; border-radius: 50%;
    }
    .te-styled-list.check li::before {
      content: "✓"; width: auto; height: auto;
      background: none; color: #12b981;
      font-weight: 700; font-size: 14px; top: 4px;
    }

    /* ── STEP CARDS ── */
    .te-step-card { display: flex; gap: 16px; align-items: flex-start; }
    .te-step-num {
      width: 36px; height: 36px; border-radius: 100px;
      background: #5D7CFF; color: #FFFFFF;
      display: flex; align-items: center; justify-content: center;
      font-weight: 600; font-size: 16px; flex-shrink: 0; margin-top: 2px;
      font-family: 'Poppins', sans-serif;
    }

    /* ── WHY CARDS ── */
    .te-why-num {
      width: 44px; height: 44px; border-radius: 100px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,140,76,.14); border: 1px solid rgba(255,140,76,.3);
      color: #FF8C4C; font-weight: 700; font-size: 18px; margin-bottom: 12px;
      font-family: 'Poppins', sans-serif;
    }
    .te-why-tag {
      font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: #6b7280; margin-bottom: 6px;
      font-family: 'Poppins', sans-serif;
    }
    .te-why-title { font-size: 20px; font-weight: 600; color: #1a1a1a; margin-bottom: 10px; font-family: 'Poppins', sans-serif; line-height: 1.4; }
    .te-why-lsi { font-size: 13px; color: #6b7280; margin-top: 10px; line-height: 1.6; font-family: 'Poppins', sans-serif; }

    /* video placeholder */
    .te-video-box {
      background: #FFFFFF; border-radius: 6px;
      box-shadow: 0px 4px 4px 0px #0B0F200F;
      overflow: hidden; min-height: 300px;
      display: flex; align-items: stretch;
    }
    .te-video-inner {
      width: 100%; aspect-ratio: 16/9;
      background: linear-gradient(135deg, #323544 0%, #4a4f6a 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .te-play-btn {
      width: 72px; height: 72px; border-radius: 100px;
      background: rgba(255,255,255,.9);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 10px 30px rgba(0,0,0,.2);
      transition: transform 0.2s;
    }
    .te-play-btn:hover { transform: scale(1.08); }
    .te-play-tri {
      width: 0; height: 0;
      border-left: 16px solid #5D7CFF;
      border-top: 11px solid transparent;
      border-bottom: 11px solid transparent;
      margin-left: 5px;
    }

    /* ── FORM ── */
    .te-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .te-field { display: flex; flex-direction: column; }
    .te-field label {
      font-size: 14px; font-weight: 500;
      color: #0B0F20; font-family: 'Poppins', sans-serif;
    }
    .te-field input, .te-field textarea, .te-field select {
      width: 100%; height: 47px; padding: 10px 16px;
      border: 1px solid #0B0F2038; border-radius: 6px;
      font-family: 'Poppins', sans-serif;
      font-size: 16px; color: #0B0F20D6;
      background: #FFFFFF;
      transition: border-color 0.3s ease;
      box-sizing: border-box;
    }
    .te-field input::placeholder, .te-field textarea::placeholder { color: #9ca3af; }
    .te-field input:hover, .te-field textarea:hover { border-color: #6b7280; }
    .te-field input:focus, .te-field textarea:focus, .te-field select:focus {
      outline: none; border-color: #5D7CFF;
    }
    .te-field textarea { height: 160px; resize: vertical; width: 100%; max-width: none; }
    .te-field .te-help-text { font-size: 13px; color: #6b7280; font-family: 'Poppins', sans-serif; }
    .te-field-full { grid-column: 1 / -1; }
    .te-check-row {
      display: flex; gap: 10px; align-items: flex-start;
      grid-column: 1 / -1; padding: 4px 0;
    }
    .te-check-row input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: #5D7CFF; }
    .te-check-row label { font-size: 14px; color: #374151; line-height: 1.5; font-family: 'Poppins', sans-serif; }
    .te-form-note { font-size: 13px; color: #6b7280; text-align: center; margin-top: 12px; font-family: 'Poppins', sans-serif; }

    /* ── FAQ ── */
    .te-faq-item {
      border: 1px solid #0B0F2014;
      border-radius: 6px; padding: 20px 24px;
      background: #FFFFFF;
      box-shadow: 0px 2px 4px 0px #0B0F200A;
    }
    .te-faq-summary {
      cursor: pointer; font-weight: 600;
      font-size: 18px; line-height: 1.4; color: #1a1a1a;
      display: flex; justify-content: space-between; align-items: center;
      list-style: none; user-select: none;
      font-family: 'Poppins', sans-serif;
    }
    .te-faq-summary::-webkit-details-marker { display: none; }
    .te-faq-summary::after { content: '+'; font-size: 26px; color: #5D7CFF; flex-shrink: 0; margin-left: 16px; }
    .te-faq-item[open] .te-faq-summary::after { content: '−'; }
    .te-faq-answer {
      font-size: 16px; line-height: 1.7; color: #4b5563;
      margin-top: 14px; padding-top: 14px;
      border-top: 1px solid #e5e7eb;
      font-family: 'Poppins', sans-serif;
    }

    /* ── STICKY CTA ── */
    .te-sticky-cta {
      position: fixed; right: 20px; bottom: 20px; z-index: 60;
      display: flex; gap: 8px; align-items: center;
      background: #323544; color: #fff;
      padding: 10px 10px 10px 16px;
      border-radius: 100px;
      box-shadow: 0 12px 30px rgba(11,15,32,.22);
    }
    .te-sticky-cta-label {
      font-size: 13px; font-weight: 500; color: #FFFFFF9C;
      letter-spacing: .5px;
      font-family: 'Poppins', sans-serif;
    }
    .te-sticky-cta-btn {
      background: #5D7CFF; color: #fff;
      padding: 8px 16px; border-radius: 100px;
      font-size: 14px; font-weight: 500;
      text-decoration: none; transition: background 0.2s;
      font-family: 'Poppins', sans-serif;
    }
    .te-sticky-cta-btn:hover { background: #244EFF; text-decoration: none; }
    .te-sticky-cta-btn.ghost {
      background: rgba(255,255,255,.12);
    }
    .te-sticky-cta-btn.ghost:hover { background: rgba(255,255,255,.22); }

    /* ── DIVIDER ── */
    .te-divider { height: 1px; background: #0B0F2014; margin: 32px 0; }

    /* ── MOBILE ── */
    @media (max-width: 1024px) {
      .te-cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
      .te-hero-grid    { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .te-cards-grid-2, .te-cards-grid-3, .te-form-grid { grid-template-columns: 1fr; }
      .te-field-full { grid-column: 1; }
      .te-check-row  { grid-column: 1; }
    }
    @media (max-width: 640px) {
      .te-h1 { font-size: 28px; line-height: 1.2; }
      .te-h2 { font-size: 24px; line-height: 1.3; }
      .te-section-light, .te-section-white, .te-section-dark { padding: 60px 16px; }
      .te-hero-section { padding: 60px 16px 50px; }
      .te-btn-primary, .te-btn-secondary { width: 100%; }
      .te-hero-actions { flex-direction: column; }
      .te-sticky-cta { left: 16px; right: 16px; justify-content: space-between; }
    }

    /* ── FORM VALIDATION ── */
    .te-field input.te-invalid, .te-field select.te-invalid, .te-field textarea.te-invalid {
      border-color: #e55 !important;
    }
    .te-field .te-error-msg {
      color: #e55; font-size: 13px; margin-top: 2px; font-family: 'Poppins', sans-serif;
    }
    .te-check-row.te-invalid label { color: #e55; }

    /* ── LOADER OVERLAY ── */
    #te-loader-overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(255,255,255,0.85); z-index: 9999;
      display: none; align-items: center; justify-content: center;
    }
    .te-spinner {
      width: 40px; height: 40px;
      border: 4px solid #e5e7eb; border-top-color: #5D7CFF;
      border-radius: 50%; animation: te-spin 0.8s linear infinite;
    }
    @keyframes te-spin { to { transform: rotate(360deg); } }

    /* ── TM WATCH STAT GRID (section 3) ── */
    .te-statgrid { display: grid; gap: 28px; grid-template-columns: 1.2fr 0.8fr; align-items: center; }
    .te-darkstats { display: grid; gap: 22px; }
    .te-stat-big { font-weight: 950; letter-spacing: -1px; line-height: 1; color: #ff8a3d; font-family: 'Poppins', sans-serif; }
    .te-stat-big.one { font-size: 86px; }
    .te-stat-big.two { font-size: 52px; }
    .te-statlabel { margin-top: 10px; font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase; color: rgba(255,255,255,.75); font-family: 'Poppins', sans-serif; }
    .te-row3 { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }

    @media (max-width: 900px) {
      .te-statgrid { grid-template-columns: 1fr; }
      .te-row3 { grid-template-columns: 1fr; }
      .te-stat-big.one { font-size: 64px; }
    }

    /* ── Industry pages: atoms the site stylesheet has no class for ────────── */

    /* Lead paragraph inside the dark hero card. Matches .hero-info-list li. */
    .hero-info-lead {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        color: #FFFFFFD6;
        margin: 0 0 18px 0;
    }

    /* Number / class-code badge. Same tokens as .ny-card-badge, minus its
       leading bullet, so "01" and "42" read as codes rather than list items. */
    .ind-badge {
        display: inline-block;
        padding: 6px 14px;
        margin-bottom: 20px;
        background-color: #E8EEFE;
        color: #0B0F209C;
        border-radius: 100px;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    /* Coverage cards are <a> here (cross-links), not plain <div>. */
    a.ny-coverage-card {
        text-decoration: none;
        color: inherit;
    }
    a.ny-coverage-card .ny-coverage-region {
        color: #5D7CFF;
        font-size: 16px;
    }

    /* Eyebrow above the CTA heading, on the #5D7CFF consultation band. */
    .consultation-eyebrow {
        display: block;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #FFFFFFCC;
        margin-bottom: 10px;
    }
/* Industry landing page — packages container max-width */
.te-container {
    max-width: 1180px;
}
