* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(255, 255, 255);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(21, 21, 21, 0.8);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.cl_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cl_title,
h1,
h2,
h3,
.cl_h1,
.cl_h2 {
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    color: rgb(21, 21, 21);
    line-height: 1.2;
    letter-spacing: normal;
}

.cl_subtitle {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    font-family: 'Marcellus', sans-serif;
    line-height: 1.2;
    text-transform: uppercase;
}

.cl_text {
    color: rgba(21, 21, 21, 0.8);
    font-weight: 400;
}

.cl_block {
    background: #f0f2f1;
    border-radius: 15px;
    padding: 40px 32px;
}

.cl_btn {
    display: inline-block;
    background: #333333;
    border: 1px solid rgba(0, 0, 0, 0);
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    padding: 14px 40px;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: 0.25s ease;
    border-radius: 0px;
    font-family: 'Inter', sans-serif;
}

.cl_btn:hover {
    background: #1f1f1f;
    color: #fff;
}

.cl_btn-outline {
    background: transparent;
    color: #151515;
    border: 1px solid #151515;
}

.cl_btn-outline:hover {
    background: #151515;
    color: #fff;
}

.cl_icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 4px;
    flex-shrink: 0;
}

.cl_icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.cl_header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    transition: 0.3s;
}

.cl_header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px !important;
    flex-wrap: wrap;
}

.cl_logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Marcellus', sans-serif;
    font-size: 22px;
    color: #fff;
    letter-spacing: 0.02em;
}

.cl_logo img {
    height: 36px;
    width: auto;
    display: block;
}

.cl_nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.cl_nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: 0.2s;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}

.cl_nav a:hover {
    border-bottom-color: #fff;
}

.cl_nav .cl_btn {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 28px;
    background: transparent;
    font-size: 13px;
}

.cl_nav .cl_btn:hover {
    background: #eaeaea;
    color: #151515;
}

.cl_hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 6px 0;
}

.cl_hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.cl_hero {
    min-height: 100vh;
    width: 100%;
    background: #1a1a1a url('images/heroes.avif') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 24px 60px;
    position: relative;
}

.cl_hero:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(#0e1912, #0e191200 36%), linear-gradient(#0000 38%, #0006 57%, #000000de);
    z-index: 2;
}



.cl_hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.cl_hero-content .cl_subtitle {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.cl_hero-content h1 {
    font-size: clamp(3rem, 12vw, 5.8rem);
    color: #fff;
    line-height: 1.1;
    font-weight: 400;
    font-family: 'Marcellus', sans-serif;
    margin-bottom: 10px;
}

.cl_cta-row {
    display: flex;
    border-bottom: 1px solid rgba(21, 21, 21, 0.5);
    padding: 50px 0;
    margin-bottom: 40px;
}

.cl_cta-col {
    flex: 1;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.cl_cta-col:first-child {
    border-right: 1px solid rgba(21, 21, 21, 0.5);
}

.cl_cta-col .cl_subtitle {
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.cl_cta-col h2 {
    font-size: 48px;
    color: #151515;
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

.cl_cta-col .cl_text {
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cl_about {
    background: #f6f3ee;
    padding: 80px 0;
}

.cl_about .cl_subtitle {
    text-align: center;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

.cl_about h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 32px;
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
}

.cl_about-img {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

.cl_about-img img {
    width: 100%;
    display: block;
    height: auto;
}

.cl_about-text {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(21, 21, 21, 0.8);
}

.cl_about-text p+p {
    margin-top: 18px;
}

.cl_about .cl_btn-wrap {
    text-align: center;
}

.cl_indicators {
    display: flex;
    padding: 70px 0;
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

.cl_ind-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    border-right: 1px solid rgba(21, 21, 21, 0.15);
}

.cl_ind-item:last-child {
    border-right: 0;
}

.cl_ind-number {
    font-size: 44px;
    font-family: 'Marcellus', sans-serif;
    color: #151515;
    line-height: 1;
    white-space: nowrap;
    font-weight: 400;
}

.cl_ind-text {
    display: flex;
    flex-direction: column;
}

.cl_ind-text strong {
    font-size: 18px;
    color: #151515;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.cl_ind-text span {
    font-size: 14px;
    color: rgba(21, 21, 21, 0.7);
}

.cl_services {
    padding: 80px 0 50px 0;
}

.cl_services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.cl_services-header .cl_subtitle {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.04em;
}

.cl_services-header h2 {
    font-size: 46px;
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    margin: 4px 0 16px;
}

.cl_services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cl_service-card {
    background: #f0f2f1;
    border-radius: 15px;
    padding: 32px 28px;
    transition: 0.2s;
}

.cl_service-card .cl_icon-box {
    margin-bottom: 18px;
}

.cl_service-card h3 {
    font-family: 'Marcellus', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #151515;
    margin-bottom: 8px;
}

.cl_service-card p {
    color: rgba(21, 21, 21, 0.75);
    font-size: 15px;
    line-height: 1.5;
}

.cl_cta-img {
    background: #1f2a24 url('images/cta_img.avif') center/cover no-repeat;
    padding: 36px 0;
    margin: 30px 0 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
}

.cl_cta-img .cl_cta-left {
    max-width: 60%;
}

.cl_cta-img h2 {
    font-size: 38px;
    color: #fff;
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cl_cta-img .cl_text {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    font-size: 17px;
}

.cl_cta-img .cl_btn {
    background: #fff;
    color: #151515;
    border: 0;
    padding: 16px 48px;
}

.cl_cta-img .cl_btn:hover {
    background: #eaeaea;
}

.cl_footer {
    background: #15241b;
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

.cl_footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cl_footer-left {
    max-width: 340px;
}

.cl_footer-left h3 {
    font-family: 'Marcellus', sans-serif;
    font-size: 26px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 12px;
}

.cl_footer-left p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.cl_footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cl_footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

.cl_footer-menu a:hover {
    color: #fff;
}

.cl_footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
}

.cl_footer-contacts a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.cl_footer-contacts a:hover {
    color: #fff;
}

.cl_footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cl_footer-bottom-links {
    display: flex;
    gap: 28px;
}

.cl_footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: 0.2s;
}

.cl_footer-bottom-links a:hover {
    color: #fff;
}



.cl_contact-section {
    padding: 150px 0 80px;
    background: #fff;
}

.cl_contact-grid {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.cl_contact-info {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cl_contact-item {
    padding: 18px 0;
}

.cl_contact-label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(21, 21, 21, 0.35);
    margin-bottom: 4px;
}

.cl_contact-value {
    font-size: 18px;
    color: #151515;
    font-weight: 400;
    line-height: 1.4;
}

.cl_divider {
    width: 100%;
    height: 1px;
    background: rgba(21, 21, 21, 0.08);
}

.cl_contact-form {
    flex: 1;
}

.cl_contact-form h2 {
    font-size: 38px;
    margin-bottom: 32px;
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    color: #151515;
}

.cl_form-row {
    margin-bottom: 16px;
}

.cl_contact-form input,
.cl_contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f0f2f1;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: 0.2s;
    outline: none;
    color: #151515;
}

.cl_contact-form input:focus,
.cl_contact-form textarea:focus {
    border-color: #151515;
    background: #fff;
}

.cl_contact-form textarea {
    resize: vertical;
}

.cl_btn-submit {
    width: 100%;
    text-align: center;
    background: #333333;
    color: #fff;
    border: 0;
    padding: 16px;
    font-size: 15px;
    letter-spacing: 0.06em;
    cursor: pointer;
    border-radius: 0;
    margin-top: 6px;
}

.cl_btn-submit:hover {
    background: #151515;
}

.cl_thankyou {
    margin-top: 24px;
    padding: 18px 22px;
    background: #f0f2f1;
    border-radius: 10px;
    color: #15241b;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
}

.cl_thankyou span {
    font-size: 26px;
    color: #15241b;
}

@media (max-width: 768px) {
    .cl_contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cl_contact-info {
        flex: 1;
    }

    .cl_contact-form h2 {
        font-size: 30px;
    }
}

.cl_about-page {
    padding: 140px 0 80px;
    background: #f6f3ee;
}

.cl_about-header {
    text-align: center;
    margin-bottom: 48px;
}

.cl_about-header .cl_subtitle {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.cl_about-header h2 {
    font-size: 46px;
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    color: #151515;
    line-height: 1.2;
}

.cl_about-page-text {
    max-width: 920px;
    margin: 0 auto 56px;
    text-align: center;
}

.cl_about-page-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(21, 21, 21, 0.8);
    margin-bottom: 20px;
}

.cl_about-page-text p:last-child {
    margin-bottom: 0;
}

.cl_about-indicators {
    display: flex;
    padding: 50px 0 60px;
    border-top: 1px solid rgba(21, 21, 21, 0.08);
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
    margin-bottom: 60px;
}

.cl_about-indicators .cl_ind-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    border-right: 1px solid rgba(21, 21, 21, 0.12);
}

.cl_about-indicators .cl_ind-item:last-child {
    border-right: 0;
}

.cl_about-indicators .cl_ind-number {
    font-size: 44px;
    font-family: 'Marcellus', sans-serif;
    color: #151515;
    line-height: 1;
    white-space: nowrap;
    font-weight: 400;
}

.cl_about-indicators .cl_ind-text strong {
    font-size: 18px;
    color: #151515;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.cl_about-indicators .cl_ind-text span {
    font-size: 14px;
    color: rgba(21, 21, 21, 0.7);
}

.cl_about-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cl_advantage-card {
    background: #fff;
    border-radius: 15px;
    padding: 36px 28px 32px;
    transition: 0.2s;
}

.cl_advantage-card .cl_icon-box {
    margin-bottom: 18px;
    background: #f0f2f1;
}

.cl_advantage-card h3 {
    font-family: 'Marcellus', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #151515;
    margin-bottom: 8px;
}

.cl_advantage-card p {
    color: rgba(21, 21, 21, 0.75);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .cl_about-indicators {
        flex-wrap: wrap;
        gap: 20px 0;
    }

    .cl_about-indicators .cl_ind-item {
        flex: 1 1 45%;
        border-right: 0;
        border-bottom: 1px solid rgba(21, 21, 21, 0.08);
        padding: 12px 0;
    }

    .cl_about-indicators .cl_ind-item:nth-child(2n) {
        border-left: 1px solid rgba(21, 21, 21, 0.08);
        padding-left: 20px;
    }

    .cl_about-advantages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cl_about-page {
        padding: 120px 0 50px;
    }

    .cl_about-header h2 {
        font-size: 34px;
    }

    .cl_about-indicators .cl_ind-item {
        flex: 1 1 100%;
        border-left: 0 !important;
        border-bottom: 1px solid rgba(21, 21, 21, 0.08);
        padding: 10px 0;
    }

    .cl_about-advantages {
        grid-template-columns: 1fr;
    }

    .cl_about-page-text p {
        font-size: 16px;
    }
}


.cl_services-page {
    padding: 140px 0 80px;
    background: #ffffff;
}

.cl_services-page .cl_services-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.cl_services-page .cl_services-header .cl_subtitle {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.cl_services-page .cl_services-header h2 {
    font-size: 46px;
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    color: #151515;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cl_services-page .cl_services-header p {
    font-size: 17px;
    color: rgba(21, 21, 21, 0.75);
    line-height: 1.6;
}

.cl_services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.cl_service-page-card {
    background: #f0f2f1;
    border-radius: 15px;
    padding: 36px 32px 32px;
    transition: 0.25s ease;
}

.cl_service-page-card:hover {
    background: #e6e8e7;
}

.cl_service-page-card .cl_icon-box {
    margin-bottom: 18px;
}

.cl_service-page-card h3 {
    font-family: 'Marcellus', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #151515;
    margin-bottom: 8px;
}

.cl_service-page-card>p {
    font-size: 15px;
    color: rgba(21, 21, 21, 0.75);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cl_service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cl_service-list li {
    position: relative;
    padding: 5px 0 5px 22px;
    font-size: 14px;
    color: rgba(21, 21, 21, 0.8);
    line-height: 1.5;
    border-bottom: 1px solid rgba(21, 21, 21, 0.05);
}

.cl_service-list li:last-child {
    border-bottom: 0;
}

.cl_service-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #15241b;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .cl_services-page-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cl_services-page {
        padding: 120px 0 50px;
    }

    .cl_services-page .cl_services-header h2 {
        font-size: 34px;
    }

    .cl_services-page-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cl_service-page-card {
        padding: 28px 20px 24px;
    }

    .cl_service-page-card h3 {
        font-size: 21px;
    }
}



.cl_legal-page {
    padding: 130px 0 80px;
    background: #ffffff;
}

.cl_legal-header {
    text-align: center;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
    padding-bottom: 32px;
}

.cl_legal-header h1 {
    font-size: 48px;
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    color: #151515;
    margin-bottom: 10px;
}

.cl_legal-meta {
    font-size: 15px;
    color: rgba(21, 21, 21, 0.4);
    letter-spacing: 0.02em;
}

.cl_legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.cl_legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(21, 21, 21, 0.8);
    margin-bottom: 20px;
}

.cl_legal-content h2 {
    font-size: 26px;
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    color: #151515;
    margin-top: 40px;
    margin-bottom: 14px;
}

.cl_legal-content h3 {
    font-size: 19px;
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    color: #151515;
    margin-top: 24px;
    margin-bottom: 8px;
}

.cl_legal-content ul,
.cl_legal-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.cl_legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(21, 21, 21, 0.8);
    margin-bottom: 6px;
}

.cl_legal-address {
    font-style: normal;
    background: #f0f2f1;
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 12px;
    line-height: 1.8;
    font-size: 16px;
    color: rgba(21, 21, 21, 0.85);
}

@media (max-width: 768px) {
    .cl_legal-page {
        padding: 110px 0 60px;
    }

    .cl_legal-header h1 {
        font-size: 34px;
    }

    .cl_legal-content h2 {
        font-size: 22px;
    }

    .cl_legal-content p,
    .cl_legal-content li {
        font-size: 15px;
    }

    .cl_legal-address {
        padding: 18px 20px;
        font-size: 15px;
    }
}



































@media (max-width: 992px) {
    .cl_services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cl_indicators {
        flex-wrap: wrap;
        gap: 20px 0;
    }

    .cl_ind-item {
        flex: 1 1 45%;
        border-right: 0;
        border-bottom: 1px solid rgba(21, 21, 21, 0.08);
        padding: 12px 0;
    }

    .cl_ind-item:nth-child(2n) {
        border-left: 1px solid rgba(21, 21, 21, 0.08);
        padding-left: 20px;
    }

    .cl_cta-row {
        flex-direction: column;
        gap: 30px;
    }

    .cl_cta-col:first-child {
        border-right: 0;
        border-bottom: 1px solid rgba(21, 21, 21, 0.2);
        padding-bottom: 30px;
    }

    .cl_cta-img {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
    }

    .cl_cta-img .cl_cta-left {
        max-width: 100%;
    }

    .cl_footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cl_nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.85);
        padding: 20px 0;
        gap: 16px;
        margin-top: 12px;
        backdrop-filter: blur(4px);
    }

    .cl_nav.open {
        display: flex;
    }

    .cl_hamburger {
        display: flex;
    }

    .cl_header-inner {
        flex-wrap: wrap;
    }

    .cl_services-grid {
        grid-template-columns: 1fr;
    }

    .cl_hero-content h1 {
        font-size: 3.4rem;
    }

    .cl_about h2 {
        font-size: 36px;
    }

    .cl_cta-col h2 {
        font-size: 30px;
    }

    .cl_ind-item {
        flex: 1 1 100%;
        border-left: 0 !important;
        border-bottom: 1px solid rgba(21, 21, 21, 0.08);
        padding: 10px 0;
    }

    .cl_footer-bottom {
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .cl_container {
        padding: 0 16px;
    }

    .cl_btn {
        padding: 12px 28px;
        font-size: 13px;
    }

    .cl_hero-content h1 {
        font-size: 3rem;
    }

    .cl_ind-item {
        flex: auto;
    }

    .cl_services-header h2 {
        font-size: 38px;
    }

    .cl_cta-img h2 {
        font-size: 32px;
    }

    .cl_footer-bottom-links {
        gap: 15px 20px;
    }

}