/* =========================================================
   TRADE LICENSE PAGE
   BLUE PROFESSIONAL SERVICE THEME
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --tl-blue: #1763c5;
    --tl-blue-dark: #062a5c;
    --tl-blue-deep: #031f46;
    --tl-blue-light: #4f9cff;
    --tl-blue-soft: #eef5ff;

    --tl-text: #17365d;
    --tl-text-light: #64748b;

    --tl-white: #ffffff;

    --tl-border: #e2e8f0;

    --tl-bg: #ffffff;
    --tl-bg-light: #f7faff;

    --tl-shadow:
        0 12px 40px rgba(15, 58, 110, 0.08);

    --tl-shadow-hover:
        0 20px 55px rgba(15, 58, 110, 0.14);

}


/* =========================================================
   GLOBAL
========================================================= */

.tl-section {

    padding: 100px 0;

    background: var(--tl-white);

}


.tl-light-section {

    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #f1f6fd
        );

}


.tl-blue-soft {

    background:
        linear-gradient(
            135deg,
            #eef5ff,
            #f8fbff
        );

}


.tl-container {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    padding-left: 24px;

    padding-right: 24px;

}


.tl-section p {

    font-family: "Poppins", sans-serif;

}


.tl-section h2 {

    font-family:
        "Playfair Display",
        serif;

    color: var(--tl-text);

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.15;

    margin: 0 0 20px;

}


.tl-section h2 span {

    color: var(--tl-blue);

}


/* =========================================================
   SECTION HEADING
========================================================= */

.tl-heading-center {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;

}


.tl-heading-center p {

    max-width: 680px;

    margin: 0 auto;

    color: var(--tl-text-light);

    font-size: 15px;

    line-height: 1.8;

}


.tl-label {

    display: inline-block;

    margin-bottom: 14px;

    color: var(--tl-blue);

    font-family: "Cinzel", serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

}


.tl-divider {

    width: 65px;

    height: 3px;

    margin: 20px 0 25px;

    background:
        linear-gradient(
            90deg,
            var(--tl-blue),
            var(--tl-blue-light)
        );

    border-radius: 10px;

}


.tl-divider.center {

    margin-left: auto;

    margin-right: auto;

}


/* =========================================================
   INTRODUCTION
========================================================= */

.tl-introduction {

    padding-top: 110px;

}


.tl-two-column {

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 70px;

    align-items: center;

}


.tl-content h2 {

    max-width: 650px;

}


.tl-content p {

    color: var(--tl-text-light);

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 18px;

}


.tl-primary-btn {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 15px;

    padding: 15px 24px;

    background:
        linear-gradient(
            135deg,
            #3184e8,
            #1763c5
        );

    color: white;

    text-decoration: none;

    border-radius: 5px;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;

}


.tl-primary-btn:hover {

    color: white;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(23,99,197,0.22);

}


/* =========================================================
   FEATURE PANEL
========================================================= */

.tl-feature-panel {

    padding: 35px;

    border-radius: 14px;

    background: white;

    border: 1px solid #e4ebf5;

    box-shadow: var(--tl-shadow);

}


.tl-panel-header {

    display: flex;

    align-items: center;

    gap: 18px;

    padding-bottom: 25px;

    margin-bottom: 20px;

    border-bottom: 1px solid var(--tl-border);

}


.tl-panel-header > span {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: var(--tl-blue-soft);

    color: var(--tl-blue);

    font-size: 22px;

}


.tl-panel-header small {

    color: var(--tl-blue);

    font-family: "Cinzel", serif;

    font-size: 10px;

    letter-spacing: 1.5px;

}


.tl-panel-header h3 {

    margin: 4px 0 0;

    color: var(--tl-text);

    font-family: "Playfair Display", serif;

    font-size: 21px;

}


.tl-feature {

    display: flex;

    gap: 14px;

    padding: 17px 0;

}


.tl-feature > i {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #eaf3ff;

    color: var(--tl-blue);

    font-size: 12px;

}


.tl-feature strong {

    display: block;

    color: var(--tl-text);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    margin-bottom: 4px;

}


.tl-feature p {

    margin: 0;

    color: var(--tl-text-light);

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   BUSINESS CARDS
========================================================= */

.tl-business-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.tl-business-card {

    padding: 32px 27px;

    background: white;

    border: 1px solid #e5ebf3;

    border-radius: 10px;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.tl-business-card:hover {

    transform: translateY(-8px);

    border-color: #bcd5f5;

    box-shadow: var(--tl-shadow-hover);

}


.tl-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #eaf3ff,
            #dcecff
        );

    color: var(--tl-blue);

    font-size: 20px;

}


.tl-business-card h3 {

    color: var(--tl-text);

    font-family: "Playfair Display", serif;

    font-size: 20px;

    margin: 0 0 9px;

}


.tl-business-card p {

    margin: 0;

    color: var(--tl-text-light);

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   PROCESS
========================================================= */

.tl-process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.tl-process-card {

    position: relative;

    padding: 32px 25px;

    border: 1px solid var(--tl-border);

    border-radius: 10px;

    background: white;

    text-align: center;

    overflow: hidden;

    transition: .35s ease;

}


.tl-process-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--tl-shadow);

}


.tl-process-number {

    position: absolute;

    top: 14px;

    right: 17px;

    color: #d9e7f8;

    font-family: "Playfair Display", serif;

    font-size: 34px;

    font-weight: 700;

}


.tl-process-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 12px;

    background: var(--tl-blue-soft);

    color: var(--tl-blue);

    font-size: 22px;

}


.tl-process-card h3 {

    margin: 0 0 10px;

    color: var(--tl-text);

    font-family: "Playfair Display", serif;

    font-size: 19px;

}


.tl-process-card p {

    margin: 0;

    color: var(--tl-text-light);

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================================
   DOCUMENTS
========================================================= */

.documents-layout {

    align-items: stretch;

}


.tl-lead {

    max-width: 600px;

    color: var(--tl-text-light);

    font-size: 15px;

    line-height: 1.8;

}


.tl-document-list {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin-top: 30px;

}


.tl-document-list div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--tl-text);

    font-size: 13px;

    font-weight: 500;

}


.tl-document-list i {

    color: var(--tl-blue);

}


.tl-document-box {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 45px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #0b4d9a,
            #1763c5
        );

    color: white;

    box-shadow:
        0 18px 50px rgba(20,80,150,.18);

}


.tl-document-box-icon {

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 12px;

    background: rgba(255,255,255,.12);

    font-size: 24px;

}


.tl-document-box h3 {

    margin: 0 0 15px;

    font-family: "Playfair Display", serif;

    font-size: 27px;

}


.tl-document-box p {

    color: rgba(255,255,255,.8);

    font-size: 13px;

    line-height: 1.8;

}


.tl-white-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    width: fit-content;

    margin-top: 15px;

    padding: 13px 20px;

    background: white;

    color: var(--tl-blue);

    border-radius: 5px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

}


/* =========================================================
   WHY CHOOSE
========================================================= */

.tl-why-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.tl-why-card {

    padding: 30px;

    background: white;

    border: 1px solid var(--tl-border);

    border-radius: 10px;

    transition: .35s ease;

}


.tl-why-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--tl-shadow);

}


.tl-why-card > i {

    color: var(--tl-blue);

    font-size: 27px;

    margin-bottom: 18px;

}


.tl-why-card h3 {

    color: var(--tl-text);

    font-family: "Playfair Display", serif;

    font-size: 18px;

    margin: 0 0 8px;

}


.tl-why-card p {

    color: var(--tl-text-light);

    font-size: 12px;

    line-height: 1.75;

    margin: 0;

}


/* =========================================================
   RISK
========================================================= */

.tl-risk-section {

    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #eef5fd
        );

}


.red-label {

    color: #d14b4b;

}


.tl-risk-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.tl-risk-card {

    padding: 32px;

    background: white;

    border: 1px solid #f0dada;

    border-top: 3px solid #d95b5b;

    border-radius: 10px;

}


.tl-risk-card i {

    color: #d95b5b;

    font-size: 25px;

    margin-bottom: 18px;

}


.tl-risk-card h3 {

    color: var(--tl-text);

    font-family: "Playfair Display", serif;

    font-size: 20px;

    margin: 0 0 10px;

}


.tl-risk-card p {

    color: var(--tl-text-light);

    font-size: 13px;

    line-height: 1.7;

    margin: 0;

}


/* =========================================================
   CASE STUDY
========================================================= */

.tl-case-study {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    background: white;

    border-radius: 14px;

    overflow: hidden;

    box-shadow: var(--tl-shadow);

}


.tl-case-image {

    min-height: 500px;

}


.tl-case-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.tl-case-content {

    padding: 45px;

}


.tl-case-badge {

    display: inline-block;

    padding: 7px 14px;

    margin-bottom: 17px;

    border-radius: 30px;

    background: #eaf3ff;

    color: var(--tl-blue);

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;

}


.tl-case-content h3 {

    color: var(--tl-text);

    font-family: "Playfair Display", serif;

    font-size: 25px;

    margin: 0 0 25px;

}


.tl-case-block {

    padding-left: 16px;

    margin-bottom: 22px;

    border-left: 3px solid;

}


.tl-case-block small {

    display: block;

    margin-bottom: 6px;

    font-family: "Cinzel", serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;

}


.tl-case-block p {

    margin: 0;

    color: var(--tl-text-light);

    font-size: 12px;

    line-height: 1.7;

}


.tl-case-block.challenge {

    border-color: #df5757;

}


.tl-case-block.challenge small {

    color: #c73f3f;

}


.tl-case-block.approach {

    border-color: var(--tl-blue);

}


.tl-case-block.approach small {

    color: var(--tl-blue);

}


.tl-case-block.result {

    border-color: #239b67;

}


.tl-case-block.result small {

    color: #239b67;

}


.tl-case-stats {

    display: flex;

    gap: 35px;

    padding-top: 18px;

    border-top: 1px solid var(--tl-border);

}


.tl-case-stats div {

    display: flex;

    flex-direction: column;

}


.tl-case-stats strong {

    color: var(--tl-blue);

    font-family: "Playfair Display", serif;

    font-size: 27px;

}


.tl-case-stats span {

    color: var(--tl-text-light);

    font-size: 10px;

}


/* =========================================================
   FAQ
========================================================= */

.tl-faq {

    max-width: 860px;

    margin: auto;

}


.tl-faq-item {

    margin-bottom: 10px;

    border: 1px solid var(--tl-border);

    border-radius: 8px;

    overflow: hidden;

    background: white;

}


.tl-faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 21px 24px;

    border: 0;

    background: white;

    color: var(--tl-text);

    text-align: left;

    cursor: pointer;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

}


.tl-faq-question i {

    color: var(--tl-blue);

    transition: .3s ease;

}


.tl-faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .4s ease;

}


.tl-faq-answer p {

    padding: 0 24px 22px;

    margin: 0;

    color: var(--tl-text-light);

    font-size: 13px;

    line-height: 1.8;

}


.tl-faq-item.active
.tl-faq-answer {

    max-height: 300px;

}


.tl-faq-item.active
.tl-faq-question i {

    transform: rotate(180deg);

}


/* =========================================================
   TESTIMONIALS
========================================================= */

.tl-testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.tl-testimonial {

    padding: 30px;

    border: 1px solid var(--tl-border);

    border-radius: 10px;

    background: white;

    transition: .35s ease;

}


.tl-testimonial:hover {

    transform: translateY(-6px);

    box-shadow: var(--tl-shadow);

}


.tl-stars {

    margin-bottom: 15px;

    color: #2f80ed;

    letter-spacing: 3px;

}


.tl-testimonial p {

    color: var(--tl-text-light);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 20px;

}


.tl-testimonial strong {

    display: block;

    color: var(--tl-text);

    font-size: 14px;

}


.tl-testimonial span {

    color: #8290a4;

    font-size: 11px;

}


/* =========================================================
   RELATED SERVICES
========================================================= */

.tl-related-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.tl-related-card {

    padding: 28px 23px;

    background: white;

    border: 1px solid var(--tl-border);

    border-radius: 10px;

    text-decoration: none;

    transition: .35s ease;

}


.tl-related-card:hover {

    transform: translateY(-7px);

    border-color: #b9d3f5;

    box-shadow: var(--tl-shadow);

}


.tl-related-card > i {

    margin-bottom: 18px;

    color: var(--tl-blue);

    font-size: 28px;

}


.tl-related-card h3 {

    margin: 0 0 8px;

    color: var(--tl-text);

    font-family: "Playfair Display", serif;

    font-size: 17px;

}


.tl-related-card p {

    margin: 0 0 18px;

    color: var(--tl-text-light);

    font-size: 11px;

    line-height: 1.7;

}


.tl-related-card span {

    color: var(--tl-blue);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .5px;

}


.tl-related-card span i {

    margin-left: 5px;

}


/* =========================================================
   CLIENTS
========================================================= */

.tl-clients-section {

    padding: 70px 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #031f46,
            #083c7c
        );

}


.tl-clients-label {

    margin-bottom: 35px;

    text-align: center;

    color: rgba(255,255,255,.65);

    font-family: "Cinzel", serif;

    font-size: 11px;

    letter-spacing: 2px;

}


.tl-client-track-wrap {

    overflow: hidden;

    margin-bottom: 18px;

}


.tl-client-track {

    display: flex;

    align-items: center;

    gap: 18px;

    width: max-content;

    animation:
        tlClientScroll 35s linear infinite;

}


.tl-client-track.reverse {

    animation:
        tlClientScrollReverse 42s linear infinite;

}


.tl-client-track span {

    padding: 13px 22px;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 5px;

    background: rgba(255,255,255,.04);

    color: rgba(255,255,255,.76);

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    white-space: nowrap;

}


@keyframes tlClientScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


@keyframes tlClientScrollReverse {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}


/* =========================================================
   FINAL CTA
========================================================= */

.tl-final-cta {

    position: relative;

    padding: 105px 0;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #031f46,
            #0b4d9a,
            #1763c5
        );

}


.tl-final-cta::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: -300px;

    right: -180px;

    border-radius: 50%;

    background:
        rgba(96,165,250,.12);

}


.tl-final-content {

    position: relative;

    z-index: 2;

    text-align: center;

}


.tl-final-label {

    color: #8ec5ff;

    font-family: "Cinzel", serif;

    font-size: 11px;

    letter-spacing: 2px;

}


.tl-final-content h2 {

    margin: 18px 0;

    color: white;

    font-family: "Playfair Display", serif;

    font-size:
        clamp(34px, 5vw, 58px);

    line-height: 1.15;

}


.tl-final-content h2 span {

    color: #60a5fa;

}


.tl-final-divider {

    width: 65px;

    height: 3px;

    margin: 25px auto;

    background: #60a5fa;

}


.tl-final-content p {

    max-width: 650px;

    margin: auto auto 30px;

    color: rgba(255,255,255,.76);

    font-size: 15px;

    line-height: 1.8;

}


.tl-final-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

}


.tl-final-primary,
.tl-final-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 55px;

    padding: 0 28px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

}


.tl-final-primary {

    background: white;

    color: var(--tl-blue);

}


.tl-final-outline {

    border: 1px solid rgba(255,255,255,.4);

    color: white;

    background: rgba(255,255,255,.05);

}


.tl-final-content small {

    display: block;

    margin-top: 30px;

    color: rgba(255,255,255,.4);

    font-size: 10px;

}


/* =========================================================
   BLOG
========================================================= */

.tl-blog-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.tl-blog-card {

    overflow: hidden;

    background: white;

    border: 1px solid var(--tl-border);

    border-radius: 10px;

    transition: .35s ease;

}


.tl-blog-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--tl-shadow);

}


.tl-blog-card > img {

    width: 100%;

    height: 210px;

    display: block;

    object-fit: cover;

}


.tl-blog-body {

    padding: 25px;

}


.tl-blog-body > span {

    color: var(--tl-blue);

    font-family: "Cinzel", serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.2px;

}


.tl-blog-body h3 {

    margin: 10px 0;

    color: var(--tl-text);

    font-family: "Playfair Display", serif;

    font-size: 19px;

    line-height: 1.4;

}


.tl-blog-body p {

    color: var(--tl-text-light);

    font-size: 12px;

    line-height: 1.7;

}


.tl-blog-body a {

    color: var(--tl-blue);

    font-size: 10px;

    font-weight: 600;

    text-decoration: none;

    letter-spacing: 1px;

}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.tl-floating-whatsapp {

    position: fixed;

    right: 22px;

    bottom: 100px;

    z-index: 9990;

}


.tl-floating-whatsapp a {

    width: 57px;

    height: 57px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 27px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.2);

    transition: .3s ease;

}


.tl-floating-whatsapp a:hover {

    transform: scale(1.08);

}


/* =========================================================
   FLOATING CALL
========================================================= */

.tl-floating-call {

    position: fixed;

    right: 22px;

    bottom: 30px;

    z-index: 9990;

}


.tl-floating-call a {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--tl-blue);

    color: white;

    font-size: 20px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.18);

}


/* =========================================================
   STICKY CONSULTATION
========================================================= */

.tl-sticky-consultation {

    position: fixed;

    left: 0;

    bottom: 0;

    z-index: 9980;

}


.tl-sticky-consultation a {

    display: block;

    padding: 12px 22px;

    background: var(--tl-blue);

    color: white;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    border-radius: 0 5px 0 0;

    box-shadow:
        0 -5px 20px rgba(0,0,0,.1);

}


/* =========================================================
   POPUP
========================================================= */

.tl-consultation-popup {

    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(3,31,70,.75);

    backdrop-filter: blur(7px);

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;

}


.tl-consultation-popup.show {

    opacity: 1;

    visibility: visible;

}


body.popup-open {

    overflow: hidden;

}


.tl-consultation-box {

    position: relative;

    width: 100%;

    max-width: 760px;

    max-height: 90vh;

    overflow-y: auto;

    background: white;

    border-radius: 14px;

    box-shadow:
        0 25px 80px rgba(0,0,0,.3);

}


.tl-popup-close {

    position: absolute;

    top: 15px;

    right: 18px;

    z-index: 2;

    width: 38px;

    height: 38px;

    border: 0;

    border-radius: 50%;

    background: #eef5ff;

    color: var(--tl-blue);

    font-size: 24px;

    cursor: pointer;

}


.tl-popup-content {

    padding: 45px;

}


.tl-popup-content h2 {

    margin: 0 0 12px;

    color: var(--tl-text);

    font-family: "Playfair Display", serif;

    font-size: 34px;

}


.tl-popup-content h2 span {

    color: var(--tl-blue);

}


.tl-popup-content > p {

    margin-bottom: 28px;

    color: var(--tl-text-light);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   FORM
========================================================= */

.tl-form-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

}


.tl-form-group {

    display: flex;

    flex-direction: column;

}


.tl-form-group.full {

    grid-column: 1 / -1;

}


.tl-form-group label {

    margin-bottom: 7px;

    color: var(--tl-text);

    font-size: 11px;

    font-weight: 600;

}


.tl-form-group input,
.tl-form-group select,
.tl-form-group textarea {

    width: 100%;

    padding: 13px 14px;

    border: 1px solid #dbe4ef;

    border-radius: 5px;

    outline: none;

    background: #fbfdff;

    color: var(--tl-text);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    transition: .25s ease;

}


.tl-form-group textarea {

    resize: vertical;

}


.tl-form-group input:focus,
.tl-form-group select:focus,
.tl-form-group textarea:focus {

    border-color: var(--tl-blue);

    box-shadow:
        0 0 0 3px rgba(47,128,237,.08);

}


.tl-form-submit {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 22px;

    padding: 15px;

    border: 0;

    border-radius: 5px;

    background:
        linear-gradient(
            135deg,
            #3184e8,
            #1763c5
        );

    color: white;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

}


.tl-form-note {

    margin: 12px 0 0;

    text-align: center;

    color: #8a97a8;

    font-size: 10px;

}


/* =========================================================
   REVEAL
========================================================= */

.reveal,
.tl-business-card,
.tl-process-card,
.tl-why-card,
.tl-testimonial,
.tl-related-card,
.tl-blog-card {

    opacity: 0;

    transform: translateY(25px);

}


.revealed {

    opacity: 1;

    transform: translateY(0);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .tl-two-column {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .tl-process-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .tl-related-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .tl-business-grid,
    .tl-why-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .tl-case-study {

        grid-template-columns: 1fr;

    }


    .tl-case-image {

        min-height: 350px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .tl-section {

        padding: 70px 0;

    }


    .tl-container {

        padding-left: 18px;

        padding-right: 18px;

    }


    .tl-heading-center {

        margin-bottom: 38px;

    }


    .tl-section h2 {

        font-size: 31px;

    }


    .tl-business-grid,
    .tl-process-grid,
    .tl-why-grid,
    .tl-risk-grid,
    .tl-testimonial-grid,
    .tl-related-grid,
    .tl-blog-grid {

        grid-template-columns: 1fr;

    }


    .tl-document-list {

        grid-template-columns: 1fr;

    }


    .tl-document-box {

        padding: 30px;

    }


    .tl-case-content {

        padding: 30px 22px;

    }


    .tl-case-image {

        min-height: 260px;

    }


    .tl-case-stats {

        gap: 20px;

    }


    .tl-case-stats strong {

        font-size: 23px;

    }


    .tl-form-grid {

        grid-template-columns: 1fr;

    }


    .tl-form-group.full {

        grid-column: auto;

    }


    .tl-popup-content {

        padding: 32px 20px;

    }


    .tl-popup-content h2 {

        font-size: 28px;

    }


    .tl-final-cta {

        padding: 75px 0;

    }


    .tl-final-buttons {

        flex-direction: column;

    }


    .tl-final-primary,
    .tl-final-outline {

        width: 100%;

    }


    .tl-floating-whatsapp {

        right: 15px;

        bottom: 90px;

    }


    .tl-floating-call {

        right: 15px;

        bottom: 25px;

    }


    .tl-sticky-consultation {

        display: none;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .tl-feature-panel {

        padding: 24px 18px;

    }


    .tl-panel-header h3 {

        font-size: 17px;

    }


    .tl-business-card,
    .tl-process-card,
    .tl-why-card,
    .tl-testimonial {

        padding: 25px 20px;

    }


    .tl-case-stats {

        flex-wrap: wrap;

    }


    .tl-faq-question {

        padding: 18px;

        font-size: 12px;

    }


    .tl-faq-answer p {

        padding-left: 18px;

        padding-right: 18px;

        font-size: 12px;

    }

}