/**

 * Theme Name: GrowthLab Demo
 * Template:   oceanwp
 * ...other header fields
 */

:root {
    --blue: #1e90ff;
    --white: #ffffff;
    --placeholdercolor: currentColor;
    --headingFont: "DM Serif Display", sans-serif;
    --bodyFont: "Geist", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    /* will-change: auto; */
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--bodyFont);
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.clear {
    clear: both;
}

body.layout-full {
    background-color: #fff;
}

.clear {
    clear: both;
}

.alignleft,
.alignright,
.aligncenter,
.alignnone {
    margin-bottom: 10px;
}

.alignleft,
.alignright,
.aligncenter {
    display: block;
    margin: 0 auto 20px auto;
}

@font-face {
    font-display: swap;
    font-family: 'Geist';
    font-style: normal;
    font-weight: 100;
    src: url('./fonts/geist-v3-latin-100.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Geist';
    font-style: normal;
    font-weight: 200;
    src: url('./fonts/geist-v3-latin-200.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Geist';
    font-style: normal;
    font-weight: 300;
    src: url('./fonts/geist-v3-latin-300.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Geist';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/geist-v3-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Geist';
    font-style: normal;
    font-weight: 500;
    src: url('./fonts/geist-v3-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Geist';
    font-style: normal;
    font-weight: 600;
    src: url('./fonts/geist-v3-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Geist';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/geist-v3-latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Geist';
    font-style: normal;
    font-weight: 800;
    src: url('./fonts/geist-v3-latin-800.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Geist';
    font-style: normal;
    font-weight: 900;
    src: url('./fonts/geist-v3-latin-900.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'DM Serif Display';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/dm-serif-display-v16-latin-regular.woff2') format('woff2');
}

@media screen and (min-width: 769px) {
    .alignleft {
        float: left;
        margin-right: 20px;
    }

    .alignright {
        float: right;
        margin-left: 20px;
    }

    .alignleft,
    .alignright {
        max-width: 50%;
        margin-top: 0;
    }
}

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

    .alignright,
    .alignleft {
        width: 100%;
        max-width: 600px;
        float: none;
        margin: 20px auto;
    }
}

iframe,
img {
    max-width: 100%;
    border: none;
    vertical-align: middle;
}

img {
    border: 0;
    height: auto;
    font-size: 0;
    display: block;
}

a {
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    color: inherit;
    text-decoration: none;
    transition: 0.5s;
}

a:focus {
    outline: 0 !important;
}

html {
    margin-top: 0 !important;
}

a#scroll-to-top {
    display: none;
}

.widget {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headingFont);
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: normal;
}

p,
li,
ul,
ol,
blockquote {
    font-family: var(--bodyFont);
    font-weight: normal;
    margin: 0 0 10px 0;
    padding: 0;
}

p:empty {
    display: none;
}

ul,
li {
    list-style: none;
}

a:visited {
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.w100p,
.wrapper {
    width: 100%;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: auto;
}


/* Common Styling */

a.cmn-btn {
    font-family: 'DM Serif Display';
    font-weight: 400;
    display: inline-block;
    text-transform: uppercase;
    font-size: 23px;
    line-height: 1;
    color: #000;
    background-color: #ffc002;
    text-decoration: none;
    padding: 23px 47px;
    border-radius: 50px;
    border: 1px solid #ffc002;
}

a.cmn-btn:hover {
    background-color: transparent;
    color: #fff;
}

.text-heading {
    font-size: 55px;
    font-family: 'DM Serif Display';
    font-weight: 400;
    color: #fff;
    line-height: 1.27;
    letter-spacing: 0;
    display: block;
    text-align: center;
    margin: 0 0 24px 0;
}

.text-heading strong {
    font-weight: inherit;
    color: #e9b107;
}

/* Common Styling */

/* Header Section Starts */

.header-sec .container {
    width: 100%;
    max-width: 1800px;
    margin: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.top-menu ul {
    margin: 0 !important;
}

.top-menu ul li:last-child {
    margin: 0;
}

.top-menu ul li {
    display: inline-block;
    margin: 0 50px 0 0;
    position: relative;
}

.top-menu ul li a {
    position: relative;
    font-weight: normal;
    font-style: normal;
    text-transform: none;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    font-family: var(--bodyFont);
    display: block;
    outline: 0;
    border: 0;
}

.top-menu ul li.current-menu-item>a,
.top-menu ul li:hover>a {
    color: #000;
}

.top-menu ul li ul.sub-menu {
    display: none;
    width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    background-color: #2f4163;
    padding: 0px 0;
    z-index: 999;
}

.top-menu ul li:hover ul.sub-menu {
    display: block;
}

.top-menu ul li:hover ul.sub-menu ul {
    display: none;
}

.top-menu ul li:hover ul.sub-menu li {
    position: relative;
}

.top-menu ul li:hover ul.sub-menu li:hover>ul {
    display: block;
    top: 0;
    left: 100%;
}

.top-menu .sub-menu li.current-menu-item a {
    color: #fff;
}

.top-menu .sub-menu li a:after {
    display: none;
}

.top-menu .sub-menu li {
    width: 100%;
    float: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
    padding: 0;
}

.top-menu .sub-menu li a {
    float: left;
    font-size: 15px;
    width: 100%;
    line-height: normal;
    padding: 9px 12px 8px;
    color: #fff;
    display: block;
    text-transform: capitalize;
}

.top-menu .sub-menu li a:hover {
    background-color: #21355a;
    color: #fff;
}

.header-sec {
    padding: 25px 0 10px 0;
    position: fixed;
    z-index: 999;
    width: 100%;
    border: 0;
}

header.header-sec.f-nav {
    background-color: #1f2430;
    border-bottom: 3px solid #fcbe03;
    padding: 20px 0 15px;
}

.top-call {
    padding: 10px 34px 10px 79px;
    border-right: 1px solid #34374d;
    border-left: 1px solid #34374d;
    position: relative;
}

.top-call a:before {
    position: absolute;
    content: "";
    width: 26px;
    height: 26px;
    background-image: url(./criminal-defence-lp-images/hm-sprites.webp);
    background-position: -20px -19px;
    left: 33px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.top-call p {
    font-family: "Geist", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0px;
    margin: 0;
    padding: 0;
    color: #fff;
}

.top-call p a {
    color: #ffc002;
}

.top-call p a:hover {
    color: #fff;
}

.header-btn a.cmn-btn {
    padding: 15px 45px;
}

.logo-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.lang-list {
    display: flex;
    gap: 10px;
    padding: 0 42px 0 0;
}

.lang-list img {
    display: none;
}

.lang-list #topswitchBox::before {
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2px;
    margin: auto;
    transition: all 0.5s ease-in-out;
    border-radius: 100%;
    background-color: #fec100;
}

.translated-ltr #topswitchBox::before {
    left: inherit;
    right: 2px;
}

.lang-list #topswitchBox {
    width: 36px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    border-radius: 30px;
    background-color: #fff;
    position: relative;
    display: block;
    transition: all 0.5s ease-in-out;
}

.lang-list .lang-en,
.lang-list .lang-es {
    line-height: 1;
}

.lang-list a {
    color: #fff;
    font-size: 18px;
    font-family: 'DM Serif Display';
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.5s;
}

.lang-list a.glink.gt-current-lang {
    font-weight: inherit;
    color: #ffc002;
}

.lang-list p {
    margin: 0;
}

.header-btn a.cmn-btn {
    padding: 15px 45px;
}

.top-call.right {
    border: 0;
}

.header-btn {
    margin: 0 0px 0 10px;
}

/* Mobile Menu Starts */

@media screen and (min-width: 1025px) {

    .logo-rit,
    .tab-call,
    .lang-list.mobile,
    .header-btn.mobile {
        display: none;
    }
}

.showhide {
    display: none;
    width: 110px;
    height: 28px;
    cursor: pointer;
    padding: 0;
    position: relative;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .showhide {
        display: block;
    }
}

.mobinav {
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    z-index: 99999995;
    background: #1f2430;
    width: 100%;
    max-width: 300px;
    height: 100%;
    min-height: 100vh;
    position: fixed;
    overflow: scroll;
    padding: 15px;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    display: flex;
    flex-direction: column;
}

.menu-top-menu-container {
    display: block;
    width: 100%;
}

.mobinav.open {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.mobinav ul {
    margin: 0 0 0 0;
    padding: 5px 0px;
    width: 100%;
}

.mobinav ul li {
    margin: 0;
    width: 100%;
    list-style: none;
    box-sizing: border-box;
    border: 0;
    margin: 0;
    padding: 0px;
    position: relative;
    font-family: var(--bodyFont);
}

.mobinav a {
    width: 100%;
    padding: 10px 0;
    display: block;
    line-height: normal;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.5px;
    font-family: var(--bodyFont);
    border: 0;
    margin: 0 0 0px 0;
    text-decoration: none;
}

.mobinav a:hover {
    color: #9b662a;
}

.mobinav ul li ul {
    padding: 0 0 0 15px;
}

.mobinav ul li ul li a {
    text-transform: capitalize;
}

.mobinav ul li .drop {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 37px;
    z-index: 5;
}

.mobinav ul li .drop.open {
    width: 20px;
}

.mobinav ul li .drop::before,
.mobinav ul li .drop.close::after {
    content: '';
    background-color: #fff;
    position: absolute;
}

.mobinav ul li .drop::before {
    width: 20px;
    height: 2px;
    top: 16px;
    right: 1px;
}

.mobinav ul li .drop.close::after {
    width: 2px;
    height: 20px;
    top: 7px;
    right: 10px;
}

.mobile-menu-button-container {
    display: block;
}


@media screen and (min-width: 768px) {
    .mobile-menu-button-container {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .tab-call {
        display: block;
        margin-left: auto;
    }
}

/* Mobile Menu Ends */


@media screen and (max-width: 1900px) {
    .header-sec .container {
        max-width: 1740px;
    }
}

@media screen and (max-width: 1800px) {
    .header-sec .container {
        max-width: 1650px;
    }

    .top-call {
        padding: 10px 30px 10px 70px;
    }

    .top-call a:before {
        left: 29px;
    }

    .top-call p {
        font-size: 23px;
    }

    .header-btn {
        margin: 0 0px 0 9px;
    }

    .header-btn a.cmn-btn {
        padding: 14px 41px;
        font-size: 22px;
    }

    .lang-list {
        padding: 0 39px 0 0;
    }

    .lang-list a {
        font-size: 17px;
    }

    .lang-list #topswitchBox {
        width: 34px;
        height: 17px;
    }

    .lang-list #topswitchBox::before {
        width: 13px;
        height: 13px;
    }

}

@media screen and (max-width: 1680px) {
    .header-sec .container {
        max-width: 1560px;
    }

    .lang-list {
        padding: 0 36px 0 0;
    }

    .top-call a:before {
        left: 31px;
        transform: scale(0.9);
        transform-origin: left center;
    }

    .top-call {
        padding: 10px 28px 10px 66px;
    }

    .top-call p {
        font-size: 21px;
    }

    .header-btn {
        margin: 0 0px 0 8px;
    }

    .header-btn a.cmn-btn {
        padding: 13px 37px;
        font-size: 20px;
    }

    .logo {
        width: 100%;
        max-width: 350px;
    }

}

@media screen and (max-width: 1600px) {
    .header-sec .container {
        max-width: 1480px;
    }

    .lang-list a {
        font-size: 16px;
    }

    .lang-list #topswitchBox {
        width: 32px;
        height: 15px;
    }

    .lang-list #topswitchBox::before {
        width: 12px;
        height: 12px;
    }

    .lang-list {
        padding: 0 34px 0 0;
    }

    .top-call {
        padding: 9px 26px 9px 62px;
    }

    .top-call a:before {
        left: 28px;
        transform: scale(0.85);
    }

    .top-call p {
        font-size: 20px;
    }

    .header-btn {
        margin: 0 0px 0 7px;
    }

}

@media screen and (max-width: 1550px) {
    .header-sec .container {
        max-width: 1430px;
    }

    .header-sec {
        padding: 22px 0 10px 0;
    }

    .header-btn a.cmn-btn {
        padding: 11px 32px;
        font-size: 18px;
    }

    .header-btn {
        margin: 0 0px 0 6px;
    }

    .top-call {
        padding: 9px 25px 9px 60px;
    }

    .lang-list {
        padding: 0 32px 0 0;
    }

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

}

@media screen and (max-width: 1480px) {
    .header-sec .container {
        max-width: 1370px;
    }

    .lang-list a {
        font-size: 15px;
    }

    .lang-list #topswitchBox {
        width: 30px;
        height: 15px;
    }

    .lang-list #topswitchBox::before {
        width: 11px;
        height: 11px;
    }

    .top-call {
        padding: 8px 24px 9px 58px;
    }

    .top-call a:before {
        left: 25px;
        transform: scale(0.8);
    }

    .top-call p {
        font-size: 19px;
    }

    .lang-list {
        padding: 0 30px 0 0;
        gap: 8px;
    }

}

@media screen and (max-width: 1440px) {

    .header-sec .container {
        max-width: 1320px;
    }

    .header-btn a.cmn-btn {
        font-size: 16px;
    }

    .header-btn {
        margin: 0 0px 0 5px;
    }

    .top-call p {
        font-size: 18px;
    }

    .top-call a:before {
        left: 25px;
        transform: scale(0.75);
    }

    .top-call p {
        font-size: 18px;
    }

}

@media screen and (max-width: 1366px) {

    .header-sec .container {
        max-width: 1250px;
    }

    .lang-list a {
        font-size: 14px;
    }

    .lang-list #topswitchBox {
        width: 28px;
        height: 14px;
    }

    .lang-list #topswitchBox::before {
        width: 10px;
        height: 10px;
    }

    .lang-list {
        padding: 0 27px 0 0;
        gap: 7px;
    }

    .top-call a:before {
        left: 23px;
        transform: scale(0.7);
    }

    .top-call {
        padding: 7px 22px 7px 52px;
    }

    .header-btn a.cmn-btn {
        font-size: 15px;
    }


}

@media screen and (max-width: 1280px) {
    .header-sec .container {
        max-width: 1190px;
        padding: 0 10px;
    }

    .header-sec {
        padding: 20px 0 10px 0;
    }

    .lang-list {
        padding: 0 25px 0 0;
        gap: 7px;
    }

    .top-call p {
        font-size: 16px;
    }

    .top-call a:before {
        left: 21px;
        transform: scale(0.65);
    }

    .top-call {
        padding: 6px 21px 6px 48px;
    }

    .header-btn a.cmn-btn {
        font-size: 15px;
    }

    .logo {
        width: 100%;
        max-width: 270px;
    }

}

@media screen and (max-width: 1200px) {
    .header-sec .container {
        max-width: 1100px;
        padding: 0 10px;
    }

    .lang-list {
        padding: 0;
        width: 100%;
        justify-content: flex-end;
        margin: 0 0 15px;
    }

    .logo-right {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .top-call {
        border-left: none;
    }

}

@media screen and (max-width: 1100px) {
    .header-sec .container {
        max-width: 1000px;
        padding: 0 10px;
    }
}

@media screen and (max-width:1024px) {
    .header-sec .container {
        max-width: 720px;
    }

    .lang-list,
    .header-btn {
        display: none;
    }

    .tab-call svg {
        width: 23px;
        height: 23px;
        margin: -2px 0;
    }

    .tab-call span.text {
        color: #fff;
        font-size: 23px;
        letter-spacing: 0.5px;
        font-family: var(--headingFont);
        display: inline-block;
    }

    button.showhide {
        background: #ffc002;
        border: none;
        width: 45px;
        height: 40px;
        padding: 0px 10px;
        border-radius: 5px;
    }

    .mobinav .top-rit {
        display: block;
    }

    span.menuBar.menuBar-3 {
        margin: 0;
    }

    button.showhide span {
        width: 100%;
        height: 3px;
        background-color: #fff;
        display: block;
        margin-bottom: 5px;
    }

    .header-sec {
        position: fixed;
        background-color: #2b3243;
        padding: 10px !important;
        width: 100%;
    }

    .logo img {
        max-width: 250px;
    }

    .logo {
        max-width: 280 !important;
        justify-content: space-between;
        align-items: center;
        display: flex;
        width: 100% !important;
        gap: 20px;
    }

    .head-sec .container {
        max-width: 100%;
        width: 100%;
        padding: 0px;
    }

    .mobinav button.menuClose {
        margin-left: auto;
        margin-bottom: 30px;
        width: 30px;
        height: 30px;
        border: none;
        background: #ffc002;
        line-height: 27px;
        font-size: 30px;
        text-align: center;
        color: #fff;
        cursor: pointer;
        padding: 0;
    }

    .head-sec.f-nav .logo {
        width: 100% !important;
    }

    .top-call {
        padding: 0;
    }

    .top-lft h5 {
        color: #fff;
    }

    .lang-list.mobile {
        display: flex;
        margin: 0;
        gap: 12px;
        justify-content: center;
    }

    .lang-list a {
        font-size: 16px;
    }

    .header-btn.mobile {
        display: block;
        margin: 0;
    }

    .mobile-logo-right {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .lang-list.main.mobile {
        flex-direction: column;
        gap: 11px;
        max-width: 152px;
    }

    .top-call a:before {
        left: -27px;
        transform: scale(0.65);
    }

    .logo-right {
        gap: 7px;
    }
}


@media screen and (max-width: 767px) {

    .logo-rit,
    .tab-call {
        display: none;
    }

    .mobile-menu-button-container {
        background: #1f2430;
        margin-top: 15px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border-bottom: 1px solid #ffc002;
        border-top: 1px solid #ffc002;
    }


    .logo {
        justify-content: center !important;
    }

    .mobile-menu-button-container a.mobi-call {
        width: 50%;
        justify-content: center;
        padding: 6px 8px;
        border-left: 1px solid #fff;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo img {
        max-width: 260px;
    }

    .mobile-menu-button-container button.mobileMenuToggle {
        border: none;
        background: transparent;
        width: 50%;
    }

    .mobile-menu-button-container button.mobileMenuToggle svg {
        width: 22px;
        height: 15px;
    }

    .mobile-menu-button-container a.mobi-call span.button-text,
    .mobile-menu-button-container span.menu-text {
        font-family: var(--bodyFont);
        font-weight: 500;
        font-size: 22px;
        line-height: 1;
        letter-spacing: -0.8px;
        color: #fff;
    }

    .mobile-menu-button-container span.svg-icon svg {
        width: 25px;
    }

    button.showhide {
        display: none;
    }

    .top-call p {
        font-size: 15px;
        padding-left: 10px;
    }

    .top-call a:before {
        left: -10px;
        transform: scale(0.65);
    }

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

    .mobile-logo-right {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .header-btn.mobile {
        width: 100%;
    }

    .lang-list.main.mobile {
        flex-direction: row;
        align-items: center;
        max-width: 322px;
    }

    .header-sec .container {
        max-width: 100%;
        padding: 0;
    }
    .header-sec {
        position: absolute;
    }

    .logo-right {
        gap: 7px;
        justify-content: center;
        gap: 45px;
    }
}

@media screen and (max-width: 480px) {
    .header-btn a.cmn-btn {
        font-size: 14px;
        padding: 11px 21px;
    }
    .logo-right {
        gap: 15px;
    }
    .lang-list.main.mobile{ text-align: center;}
}



/* Banner Section */

.criminal-defence-lp-banner-sec {
    padding: 314px 0 490px;
    background-image: url(./criminal-defence-lp-images/criminal-defence-banner-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.criminal-defence-lp-banner-sec::before {
    content: "";
    position: absolute;
    background: linear-gradient(to bottom, #181c26, transparent);
    width: 100%;
    height: 40%;
    top: 0;
    right: 0;
    left: 0;
    pointer-events: none;
}

.bnr-txt strong {
    font-family: 'DM Serif Display';
    font-size: 105px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    display: block;
    text-decoration: underline 6px;
    text-transform: capitalize;
    text-underline-offset: 10px;
    margin: -26px 0 0;
}

.bnr-txt {
    font-family: 'DM Serif Display';
    font-size: 65px;
    text-transform: uppercase;
    color: #ffc002;
    display: block;
    text-align: center;
}

/*responce*/

@media screen and (max-width:1550px) {
    .container {
        max-width: 1034px;
    }

    .criminal-defence-lp-banner-sec {
        padding: 252px 0 400px 0;
    }

    .bnr-txt {
        font-size: 52px;
    }

    .bnr-txt strong {
        font-size: 85px;
    }

}

@media screen and (max-width:1440px) {
    .container {
        max-width: 961px;
    }

    .criminal-defence-lp-banner-sec {
        padding: 240px 0 375px 0;
    }

    .bnr-txt strong {
        font-size: 78px;
        text-decoration: underline 5px;
        text-underline-offset: 9px;
    }

    .bnr-txt {
        font-size: 48px;
    }

}

@media screen and (max-width:1366px) {
    .container {
        max-width: 912px;
    }

    .bnr-txt {
        font-size: 46px;
    }

    .bnr-txt strong {
        font-size: 74px;
    }

    .criminal-defence-lp-criminal-defence-lp-banner-section {
        padding: 275px 0 210px 0;
    }
    .criminal-defence-lp-banner-sec {
        padding: 240px 0 275px 0;
    }
}

@media screen and (max-width:1280px) {
    .container {
        max-width: 860px;
    }

    .criminal-defence-lp-banner-sec {
        padding: 180px 0 275px 0;
    }

    .bnr-txt strong {
        font-size: 69px;
        margin: -12px 0 0;
        text-decoration: underline 4px;
        text-underline-offset: 8px;
    }

    .bnr-txt {
        font-size: 42px;
    }

}

@media screen and (max-width:1024px) {
    .container {
        max-width: 720px;
    }

    .criminal-defence-lp-banner-sec {
        padding: 150px 0 80px;
        background-image: url(./criminal-defence-lp-images/criminal-defence-banner-mob-img.webp);
    }

    .bnr-txt {
        font-size: 28px;
    }

    .bnr-txt strong {
        font-size: 45px;
        margin: -10px 0 0;
        text-decoration: underline 3px;
        text-underline-offset: 7px;
    }

}

@media screen and (max-width:767px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .criminal-defence-lp-banner-sec {
        padding: 190px 0 40px;
    }

    .bnr-txt strong {
        font-size: 35px;
        margin: -7px 0 0;
        text-decoration: underline 2px;
        text-underline-offset: 5px;
    }

    .bnr-txt {
        font-size: 23px;
    }

}

@media screen and (max-width:480px) {

    .criminal-defence-lp-banner-sec {
        padding: 220px 0 30px;
    }

    .bnr-txt {
        font-size: 18px;
    }

    .bnr-txt strong {
        font-size: 23px;
        margin: -3px 0 0;
        text-decoration: underline 1px;
        text-underline-offset: 4px;
    }

}

/*banner bottom Section Starts*/

.criminal-defence-lp-banner-btm-sec {
    background-color: #1f2430;
    padding: 50px 0 0;
}

.criminal-defence-lp-banner-btm-sec .lp-frm-sec p {
    font-size: 15px;
    font-family: "Geist", sans-serif;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    margin: 0 0 20px;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background-color: #2b3243;
    padding: 58px 80px 58px 75px;
    border: 1px solid #ffc002;
    position: relative;
    z-index: 22;
    margin: -280px 0 0px;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec::before {
    background-image: url(./criminal-defence-lp-images/bnr-btm-bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 93.8%;
    width: 17.62%;
    content: "";
    position: absolute;
    left: 0;
    top: 6%;
    margin: auto;
    z-index: -1;
    opacity: 10%;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .text-heading {
    line-height: 1.13;
    text-align: left;
    margin: 0 0 17px 0;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt {
    width: 33%;
    padding: 0 0px 52px 0px;
    margin: 0 0 57px;
    position: relative;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt::before {
    content: "";
    position: absolute;
    background-color: #f7f9fd;
    width: 33%;
    height: 2px;
    left: 0;
    bottom: 0;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec {
    width: 59.5%;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt p {
    font-family: "Geist", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: 0px;
    color: #fff;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt p:last-child {
    margin: 0;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield input.large {
    font-family: "Geist", sans-serif;
    font-weight: 400;
    font-size: 17px !important;
    line-height: 1.2 !important;
    border-radius: 0;
    padding: 16px 27px !important;
    color: #fff !important;
    border: 1px solid transparent;
    outline: 0;
    height: auto;
    background-color: #343d52;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield input::placeholder,
.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield textarea.large::placeholder {
    color: rgb(255, 255, 255, 0.8);
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield textarea.large {
    height: 120px !important;
    border-radius: 0;
    font-family: "Geist", sans-serif;
    font-weight: 400;
    font-size: 17px !important;
    padding: 20px !important;
    min-height: auto !important;
    color: #fff !important;
    border: 0;
    outline: 0;
    resize: none;
    background-color: #343d52;
    margin-bottom: 25px;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .formpopuptext {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    width: 100% !important;
    z-index: 2;
    background: #fff;
    padding: 15px;
    color: #000;
    text-align: center;
    font-family: 'Geist';
    font-weight: 400;
    border: none;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    transition: all 0.4s;
}

.criminal-defence-lp-banner-btm-sec .lp-frm-sec input::placeholder,
.lp-frm-sec textarea::placeholder {
    color: #fff;
    font-family: "Geist", sans-serif;
}

.criminal-defence-lp-banner-btm-sec .lp-frm-sec .form-links a,
.lp-frm-sec .form-links,
.lp-frm-sec .gfield-choice-input+label,
.lp-frm-sec .gfield.gfield_html button {
    font-family: var(--bodyFont) !important;
    font-weight: 400;
    font-size: 16px !important;
    line-height: 1;
    letter-spacing: 0px;
    color: #fff !important;
    cursor: pointer;
    margin: 0;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gform_wrapper .gfield.gfield_html button {
    background: transparent;
    border: none;
    padding: 0;
    line-height: 1;
    outline: none !important;
    display: inline-block;
    min-height: auto;
}

.criminal-defence-lp-banner-btm-sec .gchoice.gchoice_2_7_1 {
    line-height: 1 !important;
}

.criminal-defence-lp-banner-btm-sec .gfield-choice-input {
    background-color: #ffc002 !important;
    border: 0 !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 0 !important;
    margin: 2px 7px 0 0 !important;
    min-width: auto;
}

.criminal-defence-lp-banner-btm-sec .gform-theme--foundation .gform_fields {
    row-gap: 15px;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .form-links a {
    cursor: pointer;
    text-decoration: none;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield-choice-input+label {
    display: inline !important;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gform_footer input[type="submit"] {
    padding: 19px 50px !important;
    font-family: "DM Serif Display", serif !important;
    font-weight: 400 !important;
    font-size: 23px !important;
    border-radius: 55px !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    background: #ffc002 !important;
    border: 1px solid #ffc002;
    color: #000 !important;
    margin: 0 !important;
    outline: none !important;
    position: relative !important;
    z-index: 1 !important;
    cursor: pointer !important;
    transition: 0.3s !important;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gform_footer input[type="submit"]:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: #ffc002 !important;
}

.criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .gform_footer {
    margin: -46px 0 0 !important;
    padding: 0 !important;
    justify-content: end !important;
    display: flex
}

.criminal-defence-lp-banner-btm-sec .gform_wrapper .gfield {
    position: relative;
}

.criminal-defence-lp-banner-btm-sec .gform_wrapper .gfield .validation_message.gfield_validation_message,
.criminal-defence-lp-banner-btm-sec .gform_wrapper .gfield .instruction.validation_message {
    position: absolute;
    top: 7px;
    background: none;
    padding: 0px;
    line-height: 1;
    color: #ff0000;
    font-size: 13px;
    right: 10px;
    font-weight: 500;
    width: auto;
    border: none;
    pointer-events: none;
    margin: 0;
}

.criminal-defence-lp-banner-btm-sec .gform_wrapper .gfield .instruction.validation_message {
    top: 37px;
}

.criminal-defence-lp-banner-btm-sec .gfield--type-checkbox .gfield_description {
    right: inherit;
    left: 0;
    top: -14px !important;
}

.criminal-defence-lp-banner-btm-sec .gform_validation_errors {
    display: none !important;
}

@media screen and (max-width:1550px) {

    /* text-heading */
    .text-heading {
        font-size: 43px;
        margin: 0 0 21px 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec {
        margin: -230px 0 0px;
        padding: 42px 60px 42px 62px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .text-heading {
        margin: 0 0 15px 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt p {
        font-size: 16px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt {
        padding: 0 0px 40px 0px;
        margin: 0 0 46px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-frm-sec p {
        font-size: 14px;
        margin: 0 0 16px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield input.large {
        font-size: 16px !important;
        padding: 13px 24px !important;
    }

    .criminal-defence-lp-banner-btm-sec .gform-theme--foundation .gform_fields {
        row-gap: 14px;
        column-gap: 14px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield textarea.large {
        height: 100px !important;
        padding: 18px 20px !important;
        font-size: 16px !important;
        margin-bottom: 18px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-frm-sec .form-links a,
    .lp-frm-sec .form-links,
    .lp-frm-sec .gfield-choice-input+label,
    .lp-frm-sec .gfield.gfield_html button {
        font-size: 15px !important;
    }

    .criminal-defence-lp-banner-btm-sec .gfield.gfield--type-checkbox {
        margin: -4px 0 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gform_footer input[type="submit"] {
        padding: 14px 43px !important;
        font-size: 20px !important;
    }

}

@media screen and (max-width:1440px) {

    /* text-heading-responsive */
    .text-heading {
        font-size: 40px;
        margin: 0 0 19px 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec {
        margin: -220px 0 0px;
        padding: 39px 55px 39px 56px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .text-heading {
        margin: 0 0 13px 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt p {
        font-size: 15px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt {
        padding: 0 0px 37px 0px;
        margin: 0 0 43px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-frm-sec p {
        margin: 0 0 15px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield input.large {
        font-size: 15px !important;
        padding: 12px 20px !important;
    }

    .criminal-defence-lp-banner-btm-sec .gform-theme--foundation .gform_fields {
        row-gap: 13px;
        column-gap: 13px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield textarea.large {
        height: 95px !important;
        padding: 16px 20px !important;
        font-size: 15px !important;
        margin-bottom: 13px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-frm-sec .form-links a,
    .lp-frm-sec .form-links,
    .lp-frm-sec .gfield-choice-input+label,
    .lp-frm-sec .gfield.gfield_html button {
        font-size: 14px !important;
    }

    .criminal-defence-lp-banner-btm-sec .gfield-choice-input {
        width: 10px !important;
        height: 10px !important;
        margin: 2px 0px 0 0 !important;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield-choice-input+label {
        margin: 0 0 0 -3px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .gform_footer {
        margin: -37px 0 0 !important;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gform_footer input[type="submit"] {
        padding: 12px 37px !important;
        font-size: 19px !important;
    }

}

@media screen and (max-width:1366px) {

    /* text-heading responsive */
    .text-heading {
        font-size: 38px;
        margin: 0 0 17px 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec {
        margin: -215px 0 0px;
        padding: 35px 50px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .text-heading {
        margin: 0 0 11px 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt p {
        font-size: 14px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt {
        padding: 0 0px 34px 0px;
        margin: 0 0 40px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-frm-sec p {
        margin: 0 0 14px;
        font-size: 13px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield input.large {
        font-size: 14px !important;
        padding: 11px 17px !important;
    }

    .criminal-defence-lp-banner-btm-sec .gform-theme--foundation .gform_fields {
        row-gap: 12px;
        column-gap: 12px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield textarea.large {
        height: 90px !important;
        padding: 14px 17px !important;
        font-size: 15px !important;
        margin-bottom: 11px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-frm-sec .form-links a,
    .lp-frm-sec .form-links,
    .lp-frm-sec .gfield-choice-input+label,
    .lp-frm-sec .gfield.gfield_html button {
        font-size: 13px !important;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gform_footer input[type="submit"] {
        font-size: 17px !important;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .gform_footer {
        margin: -34px 0 0 !important;
    }
    .criminal-defence-lp-banner-btm-sec .gform_wrapper .gfield .validation_message.gfield_validation_message, .criminal-defence-lp-banner-btm-sec .gform_wrapper .gfield .instruction.validation_message {
    top: 3px;
    font-size: 11px;
}
.criminal-defence-lp-banner-btm-sec .gform_wrapper .gfield .instruction.validation_message {
    top: 29px;
}
.criminal-defence-lp-banner-btm-sec div#validation_message_2_7 {
    left: 80px;
}


}

@media screen and (max-width: 1280px) {

    /* text-heading responsive */
    .text-heading {
        font-size: 36px;
        margin: 0 0 16px 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec {
        margin: -205px 0 0px;
        padding: 33px 47px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .text-heading {
        margin: 0 0 10px 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-frm-sec p {
        margin: 0 0 13px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield input.large {
        font-size: 14px !important;
    }

    .criminal-defence-lp-banner-btm-sec .gform-theme--foundation .gform_fields {
        row-gap: 10px;
        column-gap: 10px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield textarea.large {
        height: 85px !important;
        padding: 13px 15px !important;
        font-size: 14px !important;
        margin-bottom: 10px;
    }

    .criminal-defence-lp-banner-btm-sec .gfield.gfield--type-checkbox {
        margin: -2px 0 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gform_footer input[type="submit"] {
        font-size: 16px !important;
    }

}

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

    /* text-heading responsive */
    .text-heading {
        font-size: 35px;
        margin: 0 0 15px 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec {
        flex-direction: column;
        padding: 30px;
        margin: 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt {
        width: 100%;
        padding: 0 0 15px;
        margin: 0 0 20px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec {
        width: 100%;
        padding: 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt p {
        font-size: 16px;
        text-align: center;
    }

    .criminal-defence-lp-banner-btm-sec .lp-frm-sec p {
        text-align: center;
        font-size: 14px;
        margin: 0 0 15px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-frm-sec p {
        text-align: center;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .text-heading {
        margin: 0 0 12px 0;
        text-align: center;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec::before {
        display: none;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt::before {
        width: 100%;
        height: 2px;
        right: 0;
        max-width: 150px;
        margin: 0 auto;
    }

}

@media screen and (max-width: 767px) {

    .criminal-defence-lp-banner-btm-sec {
        padding: 40px 0 0;
    }

    .text-heading {
        font-size: 27px;
        margin: 0 0 14px 0;
    }

    .criminal-defence-lp-banner-btm-sec .gform-theme--foundation .gform_fields {
        display: flex;
        flex-direction: column;
    }
        .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt p {
        font-size: 14px;
    }

}

@media screen and (max-width: 480px) {

    /* text-heading responsive  */
    .text-heading {
        font-size: 21px;
        margin: 0 0 14px 0;
    }

    .criminal-defence-lp-banner-btm-sec {
        padding: 30px 0 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec {
        flex-direction: column;
        padding: 15px;
        margin: 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .text-heading {
        margin: 0 0 10px 0;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt {
        padding: 0 0 14px;
        margin: 0 0 16px;
    }

    .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .gform_footer {
        margin: 15px 0 0 !important;
        justify-content: center !important;
    }

}

/*.criminal-defence-lp-banner-btm-sec Starts*/

/* criminal-defence-lp-protecting-sec */

.criminal-defence-lp-protecting-sec {
    padding: 145px 0 160px;
    background-color: #1f2430;
    position: relative;
}

.criminal-defence-lp-protecting-sec::before,
.criminal-defence-lp-protecting-sec::after {
    content: "";
    position: absolute;
    background-image: url(./criminal-defence-lp-images/crim-lp-protecting-bg-layer.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    width: 30.62%;
    height: 100%;
    top: -41%;
    opacity: 50%;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

.criminal-defence-lp-protecting-sec::after {
    background-image: url(./criminal-defence-lp-images/crim-lp-protecting-bg-layer.png);
    transform: rotate(180deg);
    right: inherit;
    left: 0;
    top: inherit;
    bottom: -37%;
}

.criminal-defence-lp-protecting-sec .protecting-lp-title {
    font-family: 'DM Serif Display';
    font-size: 70px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.2px;
    display: block;
    text-align: center;
    margin: 0 0 50px 0;
}

.criminal-defence-lp-protecting-sec .protecting-lp-title strong {
    font-weight: 400;
    color: #e9b107;
}

.criminal-defence-lp-protecting-sec .protecting-lp-main {
    display: flex;
    justify-content: space-between;
}

.criminal-defence-lp-protecting-sec .protecting-lp-left {
    width: 57.9%;
    padding: 33px 0 0 30px;
    position: relative;
}

.criminal-defence-lp-protecting-sec .protecting-lp-left::before {
    content: "";
    background-image: -webkit-linear-gradient(-90deg, rgb(255, 192, 2) 0%, rgba(255, 192, 2, 0) 100%);
    width: 63%;
    height: 63%;
    top: 0;
    left: 0;
    margin: auto;
    position: absolute;
}

.criminal-defence-lp-protecting-sec .protecting-lp-image {
    position: relative;
    z-index: 1;
    font-size: 0;
}

.criminal-defence-lp-protecting-sec .protecting-lp-image::before {
    content: "";
    background: linear-gradient(to left, black, transparent);
    width: 60%;
    height: 94.2%;
    top: 0;
    right: 3px;
    margin: auto;
    position: absolute;
    opacity: .3;
}

.criminal-defence-lp-protecting-sec .protecting-lp-image img {
    width: 100%;
    display: block;
}

.criminal-defence-lp-protecting-sec .federal-text {
    font-family: 'Geist';
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    display: block;
    position: absolute;
    right: 6%;
    bottom: 20.7%;
    z-index: 1;
    padding: 170px 0 22px;
}

.criminal-defence-lp-protecting-sec .federal-text::after {
    content: "";
    background-image: url(./criminal-defence-lp-images/protecting-left-after.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 58.6%;
    height: 65.4%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
}

.criminal-defence-lp-protecting-sec .federal-text:before {
    content: "";
    background-color: #e4a909;
    width: 80px;
    height: 5px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
}

.criminal-defence-lp-protecting-sec .protecting-lp-cnt {
    margin-top: 33px;
    width: 37.9%;
}

.criminal-defence-lp-protecting-sec .facing-federal-text {
    font-family: 'Geist';
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.63;
    color: #fff;
    margin-bottom: 41px;
    padding: 40px 0 0;
    position: relative;
}

.criminal-defence-lp-protecting-sec .facing-federal-text::before {
    content: "";
    background-color: #fff;
    width: 110px;
    height: 1px;
    top: 0;
    left: 0;
    margin: auto;
    position: absolute;
}

.criminal-defence-lp-protecting-sec .facing-federal-text strong {
    font-weight: 700;
}

/*responsive*/

@media screen and (max-width:1550px) {

    /* cmn btn responsive */
    a.cmn-btn {
        font-size: 20px;
        padding: 17px 36px;
    }

    .criminal-defence-lp-protecting-sec {
        padding: 100px 0;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 55px;
        margin: 0 0 40px 0;
    }

    .criminal-defence-lp-protecting-sec .federal-text {
        font-size: 21px;
        padding: 145px 0 19px;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-cnt {
        margin-top: 26px;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-left {
        padding: 25px 0 0 24px;
    }

    .criminal-defence-lp-protecting-sec .facing-federal-text {
        font-size: 18px;
        margin-bottom: 36px;
        padding: 36px 0 0;
    }

}

@media screen and (max-width:1440px) {

    /* cmn btn resp */

    a.cmn-btn {
        font-size: 19px;
        padding: 16px 33px;
    }

    .criminal-defence-lp-protecting-sec {
        padding: 70px 0;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 51px;
        margin: 0 0 37px 0;
    }


    .criminal-defence-lp-protecting-sec .protecting-lp-image::after {
        top: 65px;
        right: 60px;
    }

    .criminal-defence-lp-protecting-sec .facing-federal-text {
        font-size: 16px;
    }

    .criminal-defence-lp-protecting-sec .federal-text:before {
        height: 4px;
    }

}

@media screen and (max-width:1366px) {

    /* cmn btn responsive */
    a.cmn-btn {
        font-size: 18px;
        padding: 14px 28px;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 49px;
        margin: 0 0 35px 0;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-left {
        padding: 23px 0 0 22px;
    }

    .criminal-defence-lp-protecting-sec .facing-federal-text {
        font-size: 15px;
        padding: 28px 0 0;
        margin-bottom: 27px;
    }

    .criminal-defence-lp-protecting-sec .federal-text {
        font-size: 18px;
        padding: 135px 0 17px;
    }

}

@media screen and (max-width:1280px) {

    /* cmn btn responsive */
    a.cmn-btn {
        font-size: 16px;
    }

    .criminal-defence-lp-protecting-sec {
        padding: 60px 0;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 46px;
        margin: 0 0 32px 0;
    }

    .criminal-defence-lp-protecting-sec .federal-text {
        font-size: 18px;
        bottom: 60px;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-left {
        padding: 21px 0 0 21px;
    }

    .criminal-defence-lp-protecting-sec .federal-text {
        font-size: 17px;
        padding: 127px 0 15px;
    }

    .criminal-defence-lp-protecting-sec .federal-text:before {
        height: 3px;
    }

    .criminal-defence-lp-protecting-sec .facing-federal-text {
        font-size: 15px;
        padding: 25px 0 0;
        margin-bottom: 23px;
    }

}

@media screen and (max-width:1024px) {
    .criminal-defence-lp-protecting-sec {
        padding: 50px 0;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 35px;
        margin: 0 0 20px 0;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-main {
        flex-direction: column;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-left {
        padding: 13px 0 0 13px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 20px;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-cnt {
        width: 100%;
        margin: auto;
        max-width: 500px;
    }

    .criminal-defence-lp-protecting-sec .facing-federal-text {
        font-size: 15px;
        padding: 20px 0 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .criminal-defence-lp-protecting-sec .protecting-button {
        text-align: center;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-image::before {
        height: 92.2%;
    }

    .criminal-defence-lp-protecting-sec .facing-federal-text::before {
        right: 0;
    }

}

@media screen and (max-width:767px) {

    .criminal-defence-lp-protecting-sec {
        padding: 40px 0;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 25px;
    }
}

@media screen and (max-width:480px) {

    /* cmn btn responsive */
    a.cmn-btn {
        font-size: 15px;
        padding: 10px 22px;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 22px;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-image::before {
        display: none;
    }

    .criminal-defence-lp-protecting-sec .federal-text {
        font-size: 17px;
        padding: 110px 0 0;
        position: relative;
        display: block;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0px auto 0px;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-left::before {
        height: 41%;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-image img {
        margin: 0 0 20px;
    }

    .criminal-defence-lp-protecting-sec .federal-text:before {
        display: none;
    }

    .criminal-defence-lp-protecting-sec .protecting-lp-left {
        margin: 0 auto 15px;
        padding: 10px 0 0 10px;
    }

}

.criminal-defence-lp-why-choose-sec {
    padding: 0;
    background-color: #202532;
}

.criminal-defence-lp-why-choose-sec .container {
    max-width: 100%;
}

.criminal-defence-lp-why-choose-sec .text-heading {
    font-size: 50px;
    line-height: 1;
    letter-spacing: 1.1px;
    text-align: center;
    margin-bottom: 20px;
}

.criminal-defence-lp-why-choose-sec .text-heading strong {
    color: #e4a909;
    font-weight: 400;
}

.criminal-defence-lp-why-choose-sec .why-choose-sub-text {
    font-family: 'Geist';
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.9px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.criminal-defence-lp-why-choose-sec .why-choose-blks {
    display: flex;
    justify-content: space-between;
}

.criminal-defence-lp-why-choose-sec .why-choose-itm {
    padding: 146px 25px 40px;
    border: 1px #2b3240 solid;
    width: 20%;
    position: relative;
}

.criminal-defence-lp-why-choose-sec .why-choose-itm::before {
    content: "";
    background-image: url(./criminal-defence-lp-images/criminal-att-item-img.webp);
    background-repeat: no-repeat;
    width: 73px;
    height: 72px;
    top: 50px;
    left: 35px;
    margin: auto;
    position: absolute;
    background-color: #31394d;
    border-radius: 100%;
    padding: 9px 12px;
    background-position: center center;
}

.criminal-defence-lp-why-choose-sec .why-choose-itm:hover::after {
    content: "";
    position: absolute;
    background-image: url(./criminal-defence-lp-images/crim-lp-why-itm-bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 80%;
    height: 89%;
    top: 6%;
    left: 0;
    right: 0;
    opacity: 2%;
    margin: 0 auto;
}

.criminal-defence-lp-why-choose-sec .why-choose-itm:hover::before {
    background-color: #e9b107;
    background-image: url(./criminal-defence-lp-images/criminal-att-item-image-hover-img.webp);
}

.criminal-defence-lp-why-choose-sec .why-choose-itm-title {
    font-family: 'DM Serif Display';
    font-size: 23px;
    font-weight: 400;
    letter-spacing: -.1px;
    line-height: 1.3;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.criminal-defence-lp-why-choose-sec .why-choose-itm:hover .why-choose-itm-title {
    color: #e4a909;
}

.criminal-defence-lp-why-choose-sec .why-choose-itm-text {
    font-family: 'Geist';
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.8;
    color: #fff;
    margin: 0;
}

/*responce*/

@media screen and (max-width:1680px) {
    .criminal-defence-lp-why-choose-sec .text-heading {
        font-size: 45px;
    }
}

@media screen and (max-width:1550px) {
    .criminal-defence-lp-why-choose-sec .text-heading {
        font-size: 40px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm {
        padding: 120px 25px 35px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm-title {
        font-size: 18px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm-text {
        font-size: 14px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm::before {
        transform: scale(.9);
        transform-origin: top left;
        top: 37px;
        left: 19px;
    }
}

@media screen and (max-width:1440px) {
    .criminal-defence-lp-why-choose-sec .text-heading {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-sub-text {
        font-size: 17px;
        margin-bottom: 23px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm {
        padding: 103px 20px 30px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm::before {
        transform: scale(.8);
        top: 33px;
        left: 17px;
    }
}

@media screen and (max-width:1366px) {
    .criminal-defence-lp-why-choose-sec .text-heading {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm-title {
        font-size: 17px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm-text {
        font-size: 13px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm {
        padding: 100px 18px 25px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm::before {
        transform: scale(.75);
        top: 28px;
        left: 17px;
    }

}

@media screen and (max-width:1280px) {

    .criminal-defence-lp-why-choose-sec .text-heading {
        font-size: 32px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-sub-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm-text {
        font-size: 13px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm::before {
        transform: scale(.7);
        top: 27px;
        left: 18px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm {
        padding: 92px 15px 25px;
    }

}

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

    .criminal-defence-lp-why-choose-sec {
        padding: 10px 0 40px;
    }

    .criminal-defence-lp-why-choose-sec .text-heading {
        font-size: 30px;
        line-height: 1.3;
    }

    .criminal-defence-lp-why-choose-sec .container {
        max-width: 720px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm {
        padding: 70px 20px 20px;
        width: 100%;
        max-width: 350px;
        text-align: center;
        height: 100%;
        margin: 0 auto;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm-title {
        font-size: 17px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm-text {
        font-size: 14px;
        margin: 0;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm::before {
        transform: scale(.7);
        top: 12px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-itm:hover::after {
        width: 52%;
    }

    .why-choose-blks.owl-carousel .owl-stage {
        display: flex;
    }

    .why-choose-blks.owl-carousel .owl-item {
        padding: 0 2px;
    }

    .why-choose-blks.owl-carousel .owl-dots {
        text-align: center;
        margin: 20px auto 0;
    }

    .why-choose-blks.owl-carousel .owl-dots button {
        font-size: 0;
        background-color: #fff !important;
        width: 12px;
        height: 12px;
        margin-right: 8px;
        border-radius: 50px;
        text-align: center;
    }

    .why-choose-blks.owl-carousel .owl-dots button.owl-dot.active {
        background-color: #ffc002 !important;
        outline: 1px solid #ffc002;
        outline-offset: 2px;
    }

    .criminal-defence-lp-why-choose-sec .why-choose-blks {
        flex-direction: column;
    }


}

@media screen and (max-width:767px) {}

@media screen and (max-width:480px) {
    .criminal-defence-lp-why-choose-sec .text-heading {
        font-size: 21px;
    }

    .criminal-defence-lp-why-choose-sec {
        padding: 10px 0 30px;
    }

}

/* HomePage scroll Section starts */

.criminal-defence-lp-deacdes-sec {
    padding: 0;
    overflow: hidden;
    background-color: #2b3243;
}

.scroll-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroll-list {
    display: flex;
    align-items: center;
    gap: 85px;
    list-style: none;
    margin: 0 43px;
    padding: 0;
    animation: scrollLoop 30s linear infinite;
}

.criminal-defence-lp-deacdes-sec ul li:before {
    position: absolute;
    content: "";
    background-image: url(./criminal-defence-lp-images/star-img.webp);
    background-repeat: no-repeat;
    width: 28px;
    background-position: center;
    background-size: cover;
    height: 28px;
    top: 0;
    left: 0px;
    bottom: 0;
    margin: auto;
}

.criminal-defence-lp-deacdes-sec ul li {
    font-family: 'Geist';
    font-size: 26px;
    color: #fff;
    line-height: 1;
    margin: 0;
    letter-spacing: 4.68px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    padding: 47px 0 47px 135px;
}

/* keyframes moves whole set left continuously */

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

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

/* home scroll section responsive */

@media screen and (max-width:1680px) {
    .criminal-defence-lp-deacdes-sec ul li {
        font-size: 24px;
        letter-spacing: 4.08px;
        padding: 41px 0 41px 115px;
    }

    .scroll-list {
        gap: 70px;
        margin: 0 34px;
    }

    .criminal-defence-lp-deacdes-sec ul li:before {
        transform: scale(0.85);
        transform-origin: left center;
    }
}

@media screen and (max-width:1550px) {
    .criminal-defence-lp-deacdes-sec ul li {
        font-size: 23px;
        letter-spacing: 3.78px;
        padding: 38px 0 38px 110px;
    }

    .scroll-list {
        gap: 65px;
        margin: 0 30px;
    }
}

@media screen and (max-width:1440px) {
    .criminal-defence-lp-deacdes-sec ul li {
        font-size: 22px;
        letter-spacing: 3.48px;
        padding: 35px 0 35px 105px;
    }

    .scroll-list {
        gap: 60px;
        margin: 0 27px;
    }
}

@media screen and (max-width:1366px) {
    .criminal-defence-lp-deacdes-sec ul li {
        font-size: 21px;
        letter-spacing: 3.18px;
        padding: 32px 0 32px 100px;
    }

    .scroll-list {
        gap: 55px;
        margin: 0 24px;
    }
}

@media screen and (max-width:1280px) {

    .criminal-defence-lp-deacdes-sec ul li {
        font-size: 20px;
        letter-spacing: 2.78px;
        padding: 28px 0 28px 85px;
    }

    .scroll-list {
        gap: 50px;
        margin: 0 21px;
    }

    .criminal-defence-lp-deacdes-sec ul li:before {
        transform: scale(0.7);
    }
}

@media screen and (max-width:1024px) {
    .criminal-defence-lp-deacdes-sec ul li {
        font-size: 18px;
        letter-spacing: 2px;
        padding: 20px 0 20px 60px;
    }

    .scroll-list {
        gap: 36px;
        margin: 0 17px;
    }
}

@media screen and (max-width:767px) {
    .criminal-defence-lp-deacdes-sec ul li {
        font-size: 16px;
        letter-spacing: 1.5px;
        padding: 15px 0 15px 45px;
    }

    .scroll-list {
        gap: 25px;
        margin: 0 13px;
    }

    .criminal-defence-lp-deacdes-sec ul li:before {
        transform: scale(0.55);
    }
}

@media screen and (max-width:480px) {
    .criminal-defence-lp-deacdes-sec ul li {
        font-size: 14px;
        letter-spacing: 1px;
        padding: 14px 0 14px 40px;
    }

    .scroll-list {
        gap: 18px;
        margin: 0 11px;
    }

    .criminal-defence-lp-deacdes-sec ul li:before {
        transform: scale(0.45);
    }
}

/* HomePage scroll Section ends */

/* Practice Areas Section */

.criminal-defence-lp-parctice-areas-sec {
    padding: 155px 0 55px;
    position: relative;
    z-index: 2;
    background-color: #1f2430;
}

.criminal-defence-lp-parctice-areas-sec::before,
.criminal-defence-lp-parctice-areas-sec::after {
    content: "";
    position: absolute;
    background-image: url(./criminal-defence-lp-images/crim-lp-protecting-bg-layer.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    width: 30.62%;
    height: 91%;
    top: -5%;
    opacity: 50%;
    right: 0;
    z-index: 1;
    pointer-events: none;
}

.criminal-defence-lp-parctice-areas-sec::after {
    background-image: url(./criminal-defence-lp-images/crim-lp-protecting-bg-layer.png);
    transform: rotate(180deg);
    right: inherit;
    left: 0;
    top: inherit;
    bottom: -70%;
}

.criminal-defence-lp-parctice-areas-sec .text-heading strong {
    font-weight: 400;
    color: #ffc002;
}

.criminal-defence-lp-parctice-areas-sec .practice-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.criminal-defence-lp-parctice-areas-sec .practice-item {
    position: relative;
    width: 32%;
    border-bottom: 1px solid #6b707c;
}

.criminal-defence-lp-parctice-areas-sec .practice-item::before {
    content: "";
    position: absolute;
    background: linear-gradient(to top, #2b3243fa 32%, transparent);
    width: 100%;
    height: 70%;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.criminal-defence-lp-parctice-areas-sec .practice-item .prc-image img {
    width: 100%;
    display: block;
}

.criminal-defence-lp-parctice-areas-sec .practice-item p {
    font-family: 'Geist';
    font-weight: 500;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    display: none;
    text-align: center;
}

.criminal-defence-lp-parctice-areas-sec .practice-item:hover .practice-content {
    top: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.criminal-defence-lp-parctice-areas-sec .practice-item:hover .pract-title {
    color: #000;
    padding: 0;
    margin: 0 0 5px;
}

.criminal-defence-lp-parctice-areas-sec .practice-item:hover p {
    display: block;
}

.criminal-defence-lp-parctice-areas-sec .hover a {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    font-size: 0px;
    z-index: 10;
}

.practice-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.criminal-defence-lp-parctice-areas-sec .practice-item:hover::before {
    background-image: url(./criminal-defence-lp-images/parct-hvr-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 75%;
}

.criminal-defence-lp-parctice-areas-sec .practice-item .pract-title {
    font-family: 'DM Serif Display';
    font-weight: 400;
    font-size: 25px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #fff;
    margin: 0px;
    padding: 0 40px 25px;
    text-align: center;
    display: block;
}


@media screen and (max-width:1550px) {

    .criminal-defence-lp-parctice-areas-sec {
        padding: 80px 0 45px;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-list {
        gap: 18px;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-item .pract-title {
        font-size: 22px;
        padding: 0 40px 25px;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-item p {
        font-size: 14px;
    }

}

@media screen and (max-width:1440px) {

    .criminal-defence-lp-parctice-areas-sec {
        padding: 70px 0 40px;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-list {
        gap: 15px;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-item:hover .practice-content {
        padding: 10px 15px;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-item:hover .pract-title {
        margin: 0 0 4px;
        line-height: 1.2;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-item:hover .practice-content {
        top: 0;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-item .pract-title {
        font-size: 20px;
        padding: 0 24px 20px;
    }

}

@media screen and (max-width:1366px) {

    .criminal-defence-lp-parctice-areas-sec {
        padding: 60px 0 35px;
    }

}

@media screen and (max-width:1280px) {

    .criminal-defence-lp-parctice-areas-sec {
        padding: 90px 0 30px;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-item .pract-title {
        font-size: 17px;
        padding: 0px 25px 11px;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-item p {
        font-size: 13px;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-item:hover .practice-content {
        padding: 10px;
    }
}

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

    .criminal-defence-lp-parctice-areas-sec {
        padding: 40px 0;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-item {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .practice-list.owl-carousel .owl-dots {
        text-align: center;
        margin: 20px auto 0;
    }

    .practice-list.owl-carousel .owl-dots button {
        font-size: 0;
        background-color: #fff !important;
        width: 12px;
        height: 12px;
        margin-right: 8px;
        border-radius: 50px;
        text-align: center;
    }

    .practice-list.owl-carousel .owl-dots button.owl-dot.active {
        background-color: #ffc002 !important;
        outline: 1px solid #ffc002;
        outline-offset: 2px;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-list {
        gap: 0;
    }

    .criminal-defence-lp-parctice-areas-sec .practice-item .pract-title {
        font-size: 18px;
        padding: 0px 25px 16px;
    }

}

@media screen and (max-width:480px) {

    .criminal-defence-lp-parctice-areas-sec {
        padding: 30px 0;
    }

}

/* Criminal Defense build section starts */

.criminal-defence-lp-build-sec {
    padding: 92px 0 50px;
    background-color: #1f2430;
}

.criminal-defence-lp-build-sec .container {
    max-width: 1500px;
}

.criminal-defence-lp-build-sec .text-heading {
    text-align: center;
}

.build-itm-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0;
}

.build-itm {
    min-height: 392px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    margin: 0;
    width: 20%;
}

.build-itm:hover h4 {
    color: #e9b107;
    transition: all 0.4s;
}

.build-itm:nth-child(even) {
    padding: 0px 0 104px;
    justify-content: flex-end;
}

.build-itm-icon {
    border: 2px solid rgb(255 255 255 / 15%);
    border-radius: 50%;
    background-color: #242a38;
    padding: 12px;
    margin: 0 auto 35px;
    position: relative;
    width: 60%;
}

.build-itm-icon::before {
    content: "";
    position: absolute;
    background-image: url(./criminal-defence-lp-images/crim-lp-build-itm-arw.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 50%;
    height: 36.4%;
    top: 63%;
    right: -60%;
}

.build-itm:nth-child(even) .build-itm-icon::before {
    top: 1%;
    right: -60%;
    transform: rotate(-60deg);
    background-image: url(./criminal-defence-lp-images/crim-lp-build-itm-arw.webp);
}

.build-itm:hover .build-itm-icon {
    border-color: #ffc002;
    transition: all 0.4s;
}

.build-itm:last-child .build-itm-icon::before {
    display: none;
}

.build-itm:nth-child(even) .build-itm-icon {
    margin: 0 auto;
}

.build-itm-icon img {
    width: 100%;
    display: block;
    background-color: #2b3243;
    border-radius: 50%;
}

.build-itm h4 {
    font-size: 25px;
    font-family: 'DM Serif Display';
    line-height: 1.28;
    color: #fff;
    margin: 0 0 5px;
}

.build-itm:nth-child(even) h4 {
    margin: 0px 0 25px;
}

.build-itm p {
    font-size: 15px;
    font-family: 'Geist';
    line-height: 1.87;
    color: #fff;
}

.build-itm:nth-child(even) p {
    margin: 0 0 12px;
}

.build-itm p:last-child {
    margin: 0;
}

/* build responsive */

@media screen and (max-width: 1680px) {
    .criminal-defence-lp-build-sec .container {
        max-width: 1315px;
    }

    .criminal-defence-lp-build-sec {
        padding: 80px 0 43px;
    }

    .criminal-defence-lp-build-sec .text-heading {
        font-size: 47px;
        margin: 0 0 21px 0;
    }

    .build-itm p {
        font-size: 13px;
    }

    .build-itm:nth-child(even) p {
        margin: 0 0 11px;
    }

    .build-itm h4 {
        font-size: 23px;
    }

    .build-itm:nth-child(even) h4 {
        margin: 0px 0 23px;
    }

    .build-itm-icon {
        padding: 11px;
        margin: 0 auto 30px;
    }

    .build-itm {
        min-height: 346px;
    }

    .build-itm:nth-child(even) {
        padding: 0px 0 90px;
    }

}

@media screen and (max-width: 1550px) {
    .criminal-defence-lp-build-sec .container {
        max-width: 1212px;
    }

    .criminal-defence-lp-build-sec {
        padding: 73px 0 40px;
    }

    .build-itm p {
        font-size: 12px;
    }

    .build-itm:nth-child(even) p {
        margin: 0 0 10px;
    }

    .build-itm h4 {
        font-size: 21px;
    }

    .build-itm:nth-child(even) h4 {
        margin: 0px 0 20px;
    }

    .build-itm-icon {
        padding: 10px;
        margin: 0 auto 26px;
    }

    .build-itm {
        min-height: 318px;
    }

    .build-itm:nth-child(even) {
        padding: 0px 0 85px;
    }

}

@media screen and (max-width: 1440px) {
    .criminal-defence-lp-build-sec .container {
        max-width: 1126px;
    }

    .criminal-defence-lp-build-sec {
        padding: 65px 0 35px;
    }

    .build-itm:nth-child(even) p {
        margin: 0 0 9px;
    }

    .build-itm:nth-child(even) h4 {
        margin: 0px 0 19px;
    }

    .build-itm h4 {
        font-size: 19px;
    }

    .build-itm-icon {
        padding: 10px;
        margin: 0 auto 23px;
    }

    .build-itm {
        min-height: 300px;
    }

    .build-itm:nth-child(even) {
        padding: 0px 0 82px;
    }
}

@media screen and (max-width: 1366px) {
    .criminal-defence-lp-build-sec .container {
        max-width: 1068px;
    }

    .criminal-defence-lp-build-sec {
        padding: 60px 0 34px;
    }

    .criminal-defence-lp-build-sec .text-heading {
        font-size: 39px;
        margin: 0 0 18px 0;
    }

    .build-itm:nth-child(even) p {
        margin: 0 0 8px;
    }

    .build-itm:nth-child(even) h4 {
        margin: 0px 0 18px;
    }

    .build-itm h4 {
        font-size: 18px;
    }

    .build-itm-icon {
        padding: 10px;
        margin: 0 auto 21px;
    }

}

@media screen and (max-width: 1280px) {
    .criminal-defence-lp-build-sec .container {
        max-width: 970px;
    }

    .criminal-defence-lp-build-sec {
        padding: 58px 0 34px;
    }

    .criminal-defence-lp-build-sec .text-heading {
        font-size: 35px;
        margin: 0 0 16px 0;
    }

    .build-itm:nth-child(even) p {
        margin: 0 0 7px;
    }

    .build-itm:nth-child(even) h4 {
        margin: 0px 0 17px;
    }

    .build-itm h4 {
        font-size: 17px;
    }

    .build-itm:nth-child(even) {
        padding: 0px 0 96px;
    }

    .build-itm-icon {
        padding: 9px;
        margin: 0px auto 19px;
    }

}

@media screen and (max-width: 1024px) {
    .criminal-defence-lp-build-sec .container {
        max-width: 720px;
    }

    .criminal-defence-lp-build-sec {
        padding: 20px 0 40px;
    }

    .criminal-defence-lp-build-sec .text-heading {
        font-size: 31px;
        margin: 0 0 18px 0;
    }

    .build-itm {
        min-height: auto;
        height: 100%;
        width: 100%;
        max-width: 350px;
        padding: 20px;
        border: 1px solid #fff;
        flex-direction: column-reverse;
        justify-content: flex-end;
        border-radius: 15px;
        margin: 0 auto;
    }

    .build-itm-list.owl-carousel .owl-item:nth-child(even) .build-itm {
        flex-direction: column;
        justify-content: flex-start;
    }

    .build-itm.thor {
        flex-direction: column;
    }

    .build-itm h4 {
        font-size: 20px;
        margin: 0 0 7px;
    }

    .build-itm p {
        font-size: 14px;
    }

    .build-itm-icon {
        width: 100%;
        max-width: 150px;
        margin: 0 auto 15px;
    }


    .build-itm-list.owl-carousel .owl-stage {
        display: flex;
    }

    .build-itm-list.owl-carousel .owl-item {
        padding: 0 2px;
    }

    .build-itm-list.owl-carousel .owl-dots {
        text-align: center;
        margin: 20px auto 0;
    }

    .build-itm-list.owl-carousel .owl-dots button {
        font-size: 0;
        background-color: #fff !important;
        width: 12px;
        height: 12px;
        margin-right: 8px;
        border-radius: 50px;
        text-align: center;
    }

    .build-itm-list.owl-carousel .owl-dots button.owl-dot.active {
        background-color: #ffc002 !important;
        outline: 1px solid #ffc002;
        outline-offset: 2px;
    }

}

@media screen and (max-width: 480px) {
    .criminal-defence-lp-build-sec .text-heading {
        font-size: 23px;
        margin: 0 0 16px 0;
    }

    .build-itm-icon {
        max-width: 120px;
    }

}

/* Criminal Defense build section ends */

/* criminal-defence-criminal-defence-lp-faq-sec */

.crim-def-lp-faq-whl {
    position: relative;
}

.crim-def-lp-faq-whl::before,
.crim-def-lp-faq-whl::after {
    content: "";
    position: absolute;
    background-image: url(./criminal-defence-lp-images/crim-lp-protecting-bg-layer.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    width: 30.62%;
    height: 68.3%;
    top: -14%;
    opacity: 50%;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

.crim-def-lp-faq-whl::after {
    background-image: url(./criminal-defence-lp-images/crim-lp-protecting-bg-layer.png);
    transform: rotate(180deg);
    right: inherit;
    left: 0;
    top: inherit;
    bottom: -21%;
    z-index: 0;
}

.criminal-defence-lp-faq-sec {
    padding: 157px 0px 143px;
    background-color: #1f2430;
    position: relative;
    z-index: 2;
}

.criminal-defence-lp-faq-sec::before {
    content: "";
    background-image: url(./criminal-defence-lp-images/criminal-defence-faq-bg-img.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    width: 448px;
    height: 512px;
    top: 29%;
    left: 59px;
    opacity: 10%;
    z-index: -1;
}

.criminal-defence-lp-faq-sec .criminal-defence-faq-main {
    display: flex;
    justify-content: space-between;
}

.criminal-defence-lp-faq-sec .criminal-defence-faq-left {
    width: 51.6%;
}

.criminal-defence-lp-faq-sec .criminal-defence-faq-left-title {
    font-family: 'DM Serif Display';
    font-size: 55px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.1px;
    color: #fff;
    display: block;
    margin-bottom: 13px;
}

.criminal-defence-lp-faq-sec .criminal-defence-faq-left-title strong {
    font-weight: 400;
    color: #e4a909;
}

.criminal-defence-lp-faq-sec .accordion-section-content {
    font-family: 'Geist';
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0px;
    color: #fff;
    padding: 0 20px 25px 0;
}

.criminal-defence-lp-faq-sec .accordion-section:not(.accordien-active) .accordion-section-content {
    display: none;
}

.criminal-defence-lp-faq-sec .accordion-heading {
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.criminal-defence-lp-faq-sec .accordion-section-content p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0px;
}

.criminal-defence-lp-faq-sec .accordion-section {
    border-bottom: 1px #414c66 solid;
    /* padding: 25px 0; */
}

.criminal-defence-lp-faq-sec .accordion-section.accordien-active {
    border-color: #ffc002;
}

.criminal-defence-lp-faq-sec .accordion-section .accordion-heading {
    font-family: 'DM Serif Display';
    font-size: 23px;
    font-weight: 400;
    line-height: 1.39;
    color: #fff;
    margin: 0;
    position: relative;
    padding: 25px 25px 25px 0;
}
.criminal-defence-lp-faq-sec .acrdn-before {
    position: absolute;
    background-image: url(./criminal-defence-lp-images/plus.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    width: 20px;
    height: 20px;
    right: 0px;
    top: 30px;
}
.criminal-defence-lp-faq-sec .accordien-active .acrdn-before {
    background-image: url(./criminal-defence-lp-images/minus.webp);
    background-size: 25px 3px;
}
.criminal-defence-lp-faq-sec .accordion-section .accordion-heading:hover .acrdn-before{
    background-image: url(./criminal-defence-lp-images/plus-hover.webp);
}
.criminal-defence-lp-faq-sec .accordion-section.accordien-active .accordion-heading .acrdn-before{
    background-image: url(./criminal-defence-lp-images/minus-hover.webp);
}
.criminal-defence-lp-faq-sec .accordion-section .accordion-heading:hover {
    color: #e4a909;
}

.criminal-defence-lp-faq-sec .accordion-section.accordien-active .accordion-heading {
    border-radius: 5px 5px 0 0;
    color: #e4a909;
}

.criminal-defence-lp-faq-sec .criminal-defence-faq-right {
    width: 41.3%;
}

.criminal-defence-lp-faq-sec .criminal-defence-faq-image img {
    border: 2px #e4a909 solid;
    width: 100%;
}

.criminal-defence-lp-faq-sec .criminal-defence-faq-image {
    position: relative;
    z-index: 1;
    padding: 0px 33px 29px 0;
}

.criminal-defence-lp-faq-sec .criminal-defence-faq-image::before {
    content: "";
    background-image: -webkit-linear-gradient(90deg, rgb(255, 192, 2) 0%, rgba(255, 192, 2, 0) 100%);
    width: 73%;
    height: 50%;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}


@media screen and (max-width: 1550px) {

    .criminal-defence-lp-faq-sec {
        padding: 80px 0;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-left-title {
        font-size: 44px;
        letter-spacing: -1px;
        margin-bottom: 11px;
    }

    .criminal-defence-lp-faq-sec .accordion-section .accordion-heading {
        font-size: 18px;
        padding: 12px 30px 15px 0;
    }
    .criminal-defence-lp-faq-sec .acrdn-before {width: 17px;height: 17px;top: 20px;}

    .criminal-defence-lp-faq-sec .accordion-section-content {
        font-size: 15px;
        padding: 0 16px 15px 0;
    }

    .criminal-defence-lp-faq-sec::before {
        left: 30px;
        width: 382px;
        height: 416px;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-image {
        padding: 0px 28px 25px 0;
    }

}

@media screen and (max-width: 1440px) {

    .criminal-defence-lp-faq-sec {
        padding: 70px 0;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-left-title {
        font-size: 41px;
        letter-spacing: -0.8px;
        margin-bottom: 10px;
    }

    .criminal-defence-lp-faq-sec .accordion-section .accordion-heading {
        font-size: 17px;
    }

    .criminal-defence-lp-faq-sec::before {
        left: 15px;
        width: 367px;
        height: 376px;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-image {
        padding: 0px 25px 23px 0;
    }

    .criminal-defence-lp-faq-sec .accordion-section-content {
        font-size: 14px;
        padding: 0 14px 15px 0;
    }
    .criminal-defence-lp-faq-sec .acrdn-before {
        width: 15px;
        height: 15px;
        top: 18px;
    }

}

@media screen and (max-width: 1366px) {

    .criminal-defence-lp-faq-sec {
        padding: 60px 0;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-left-title {
        font-size: 39px;
        letter-spacing: -0.6px;
        margin-bottom: 9px;
    }

    .criminal-defence-lp-faq-sec .accordion-section-content {
        font-size: 13px;
        padding: 0 12px 15px 0;
    }
    .criminal-defence-lp-faq-sec .acrdn-before {
        top: 15px;
    }

    .criminal-defence-lp-faq-sec .accordion-section .accordion-heading {
        font-size: 16px;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-image {
        padding: 0px 23px 21px 0;
    }

}

@media screen and (max-width: 1280px) {

    .criminal-defence-lp-faq-sec {
        padding: 98px 0px 98px;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-left-title {
        font-size: 37px;
        letter-spacing: -0.5px;
        margin-bottom: 8px;
    }

    .criminal-defence-lp-faq-sec::before {
        left: 4px;
        width: 345px;
        height: 342px;
    }

    .criminal-defence-lp-faq-sec .accordion-section .accordion-heading {
        font-size: 15px;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-image {
        padding: 0px 21px 19px 0;
    }

}

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

    .criminal-defence-lp-faq-sec {
        padding: 40px 0;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-main {
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        gap: 25px;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-right {
        width: 100%;
        max-width: 400px;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-image {
        padding: 0px 18px 18px 0;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-left {
        width: 100%;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-left-title {
        font-size: 35px;
        letter-spacing: 0;
        margin-bottom: 8px;
    }

    .criminal-defence-lp-faq-sec .accordion-section .accordion-heading {
        font-size: 17px;
        padding: 12px 20px 15px 0;
    }

    .criminal-defence-lp-faq-sec::before {
        display: none;
    }

    .criminal-defence-lp-faq-sec .accordion-section-content {
        font-size: 14px;
        padding: 0 12px 15px 0;
    }

}

@media screen and (max-width: 480px) {
    .criminal-defence-lp-faq-sec .criminal-defence-faq-image {
        padding: 0px 12px 12px 0;
    }

    .criminal-defence-lp-faq-sec .criminal-defence-faq-left-title {
        font-size: 22px;
    }


}

/* .criminal-defence-lp-rgt-sec starts  */

.criminal-defence-lp-rgt-sec {
    padding: 0px 0 147px;
    background-color: #202531;
}

.criminal-defence-lp-rgt-sec .rights-future-title {
    font-family: 'DM Serif Display';
    font-size: 55px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    display: block;
}

.criminal-defence-lp-rgt-sec .rights-future-title strong {
    color: #e4a909;
    font-weight: 400;
}

.criminal-defence-lp-rgt-sec .rights-future-text {
    font-family: 'Geist';
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.criminal-defence-lp-rgt-sec .rights-future-main {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 50px;
}

.criminal-defence-lp-rgt-sec .rights-future-item {
    width: 33.3%;
    padding: 93px 76px 0;
    border-right: 1px #414c66 solid;
    position: relative;
}
.criminal-defence-lp-rgt-sec .rights-future-item:last-child{ border: none;}

.criminal-defence-lp-rgt-sec .rights-future-item::before {
    content: "";
    background-image: url(./criminal-defence-lp-images/future-rights-before.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 59px;
    height: 68px;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    position: absolute;
}

.criminal-defence-lp-rgt-sec .rights-future-item-title {
    font-family: 'DM Serif Display';
    font-size: 23px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0px;
    color: #fff;
    text-align: center;
    display: block;
    text-transform: capitalize;
}

.criminal-defence-lp-rgt-sec .rights-future-contect-txt {
    font-family: 'Geist';
    font-size: 22px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0px;
    color: #fff;
    text-align: center;
    margin-bottom: 47px;
}

.criminal-defence-lp-rgt-sec .rights-future-contect-txt a {
    color: #e4a909;
    text-decoration: none;
}

.criminal-defence-lp-rgt-sec .rights-future-contect-txt a:hover {
    color: #fff;
}

.criminal-defence-lp-rgt-sec .rights-future-btn {
    text-align: center;
}

/*responce-start*/

@media screen and (max-width:1550px) {

    .criminal-defence-lp-rgt-sec {
        padding: 0px 0 85px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-title {
        font-size: 47px;
        margin-bottom: 18px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-text {
        font-size: 20px;
        margin-bottom: 42px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item-title {
        font-size: 20px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-main {
        margin-bottom: 43px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item {
        padding: 85px 45px 0;
    }

    .criminal-defence-lp-rgt-sec .rights-future-contect-txt {
        font-size: 20px;
        margin-bottom: 42px;
    }

}

@media screen and (max-width:1440px) {
    /* .criminal-defence-lp-rgt-sec {
        padding: 0px 0 110px;
    } */

    .criminal-defence-lp-rgt-sec .rights-future-title {
        font-size: 44px;
        margin-bottom: 17px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-text {
        margin-bottom: 40px;
        font-size: 19px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item {
        padding: 67px 45px 0;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item::before {
        width: 51px;
        height: 48px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item-title {
        font-size: 18px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-main {
        margin-bottom: 40px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-contect-txt {
        font-size: 18px;
        margin-bottom: 36px;
    }

}

@media screen and (max-width:1366px) {
    .criminal-defence-lp-rgt-sec {
        padding: 0px 0 75px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-title {
        font-size: 41px;
        margin-bottom: 16px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-text {
        font-size: 18px;
        margin-bottom: 37px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item::before {
        width: 49px;
        height: 47px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item-title {
        font-size: 17px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item {
        padding: 64px 40px 0;
    }

    .criminal-defence-lp-rgt-sec .rights-future-contect-txt {
        font-size: 17px;
        margin-bottom: 32px;
    }

}

@media screen and (max-width:1280px) {

    /* .criminal-defence-lp-rgt-sec {padding: 0px 0 95px;} */

    .criminal-defence-lp-rgt-sec .rights-future-title {
        font-size: 37px;
        margin-bottom: 15px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-text {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item {
        padding: 63px 36px 0;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item::before {
        width: 46px;
        height: 44px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item-title {
        font-size: 17px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-main {
        margin-bottom: 37px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-contect-txt {
        font-size: 16px;
        margin-bottom: 28px;
    }

}

@media screen and (max-width:1024px) {
    .criminal-defence-lp-rgt-sec {
        padding: 20px 0 40px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        text-align: center;
        border: 1px #414c66 solid;
        border-radius: 15px;
        padding: 70px 20px 20px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item::before {
        top: 15px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-contect-txt {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-contect-txt br {
        display: none;
    }

    .criminal-defence-lp-rgt-sec .rights-future-item-title {
        line-height: 1.5;
        display: block;
    }

    .criminal-defence-lp-rgt-sec .rights-future-main {
        margin: 0 0 20px;
        flex-direction: column;
    }

    .rights-future-main.owl-carousel .owl-stage {
        display: flex;
    }

    .rights-future-main.owl-carousel .owl-item {
        padding: 0 2px;
    }

    .rights-future-main.owl-carousel .owl-dots {
        text-align: center;
        margin: 20px auto 0;
    }

    .rights-future-main.owl-carousel .owl-dots button {
        font-size: 0;
        background-color: #fff !important;
        width: 12px;
        height: 12px;
        margin-right: 8px;
        border-radius: 50px;
        text-align: center;
    }

    .rights-future-main.owl-carousel .owl-dots button.owl-dot.active {
        background-color: #ffc002 !important;
        outline: 1px solid #ffc002;
        outline-offset: 2px;
    }


}

@media screen and (max-width:767px) {
    .criminal-defence-lp-rgt-sec .rights-future-title {
        font-size: 23px;
        margin-bottom: 14px;
        line-height: 1.2;
    }
    .criminal-defence-lp-rgt-sec .rights-future-title strong {
    display: block;
}
}

@media screen and (max-width:480px) {

    .criminal-defence-lp-rgt-sec {
        padding: 10px 0 40px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-title {
        font-size: 20px;
        line-height: 1.3;
        margin: 0 0 12px;
    }

    .criminal-defence-lp-rgt-sec .rights-future-text {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

}

/* Footer Section */

.ftr-blks {
    display: flex;
    justify-content: space-between;
    padding: 0 0 62px;
    border-bottom: 1px solid #555b69;
}

.site-footer {
    padding: 110px 0;
    background: #2b3243;
}

.ftr-logo {
    width: 100%;
    margin: 0 0 60px;
    padding: 0 0 38px;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid #555b69;
}

.ftr-blocks {
    width: 100%;
    text-align: left;
    border: none;
    padding: 0;
}

.ftr-logo a {
    display: block;
}

.ftr-blk-lst {
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.ftr-call-num a:hover {
    color: #fff;
}

.ftr-loc-blks {
    margin: 0 0 20px;
}

.ftr-loc-blks:last-child {
    margin: 0;
}

.directions a {
    font-size: 14px;
    font-family: 'Geist';
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #ffc002;
}

.directions a:hover {
    color: #fff;
}

.ftr-blk-heading::before {
    position: absolute;
    content: "";
    width: 27px;
    height: 27px;
    left: 0px;
    top: 0px;
    background-image: url(./criminal-defence-lp-images/location-img.webp);
    background-repeat: no-repeat;
    background-size: contain;
}

.ftr-rgt-blk .ftr-blk-heading::before {
    background-image: url(./criminal-defence-lp-images/contact-img.webp);
}

.ftr-lft-blk .ftr-blk-heading,
.ftr-rgt-blk .ftr-blk-heading {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 20px;
    letter-spacing: 0;
    line-height: 1;
    position: relative;
    padding: 0 0 0 35px;
    display: block;
}

.ftr-call-num a {
    font-family: "Geist", sans-serif;
    font-weight: 600;
    font-size: 20px;
    display: inline-block;
    margin: 0;
    color: #ffc002;
    line-height: 1;
}

.ftr-loc-blks .ftr-blk-txt {
    font-family: "Geist", sans-serif;
    color: #fff;
    font-size: 20px;
    letter-spacing: 0;
    font-weight: 600;
    margin: 0 0 15px;
    line-height: 1;
}

.ftr-lft-blk {
    width: 50%;
    border-right: 1px solid #555b69;
}

.ftr-rgt-blk {
    width: 33%;
}

.directions {
    line-height: 1;
}

.ftr-lft-blk p {
    font-size: 18px;
    font-weight: 400;
    font-family: "Geist", sans-serif;
    letter-spacing: 0.36px;
    line-height: 1.67;
    text-align: left;
    margin: 0 0 3px;
}

/* Form */

.ftr-lft-itm {
    text-align: center;
    padding: 60px 38px;
    background: #d5a40f;
    width: 47.7%;
}

.ftr-rgt-itm {
    width: 44.5%;
}

.form-text-heading {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: 40px;
    text-transform: capitalize;
    color: #fff;
    margin: 0 0 27px;
    line-height: 1;
    letter-spacing: 0;
}

.ftr-lft-itm p {
    font-family: 'Geist';
    font-weight: 300;
    font-size: 18px;
    line-height: 1;
    margin: 0 0 29px;
    color: #fff;
}

.ftr-lft-itm .gfield input.large,
.ftr-lft-itm .gfield textarea.large {
    border: none;
    margin: 0px;
    width: 100% !important;
    color: #000 !important;
    outline: 0px;
    position: relative;
    border-radius: 0;
    background-color: #fff;
    font-size: 20px !important;
    font-family: "Geist", sans-serif !important;
    font-weight: 400;
    min-height: auto;
    height: 100%;
    padding: 27px 27px 27px 30px !important;
    transition: all 0.5s;
}

.ftr-lft-itm .gfield input::placeholder {
    color: #000 !important;
}

.ftr-lft-itm .gfield input:-ms-input-placeholder {
    color: #000 !important;
}

.ftr-lft-itm .gfield input::-ms-input-placeholder {
    color: #000 !important;
}

.ftr-lft-itm .gfield textarea::placeholder {
    color: #000 !important;
}

.ftr-lft-itm .gfield textarea:-ms-input-placeholder {
    color: #000 !important;
}

.ftr-lft-itm .gfield textarea::-ms-input-placeholder {
    color: #000 !important;
}

.ftr-lft-itm .gform_footer {
    margin: 0 !important;
    padding: 0;
    position: relative;
}

.ftr-lft-itm .gform_wrapper .gform_footer.top_label {
    padding: 0 !important;
    justify-content: end !important;
    display: flex;
    width: max-content;
    margin: -64px 0 0 auto !important;
    z-index: 3;
}

.ftr-lft-itm .top_label input[type="submit"] {
    outline: none !important;
    border: 2px solid transparent !important;
    cursor: pointer;
    transition-duration: 0.5s !important;
    height: auto !important;
    font-size: 22px !important;
    font-family: 'DM Serif Display' !important;
    color: #ffc002 !important;
    text-transform: uppercase !important;
    line-height: 1;
    font-weight: 400 !important;
    background-color: #2b3243 !important;
    margin: 0 !important;
    display: inline-block !important;
    width: max-content !important;
    padding: 19px 49px !important;
    letter-spacing: 0px !important;
    border-radius: 50px !important;
}

.ftr-lft-itm .form-links,
.ftr-lft-itm .form-links .formpopup,
.ftr-lft-itm .gfield-choice-input+label {
    padding: 0 !important;
    font-family: "Geist", sans-serif;
    font-weight: 400;
    font-size: 18px !important;
    line-height: 1 !important;
    color: #fff !important;
    font-weight: 400 !important;
    box-shadow: none !important;
    border: none !important;
    outline: 0;
    z-index: 1;
    position: relative;
    background-color: transparent !important;
    text-align: left;
    min-height: auto !important;
}

.ftr-lft-itm .gfield .formpopuptext {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    width: 100% !important;
    background: #fff;
    padding: 15px;
    color: #000;
    text-align: center;
    font-family: 'Geist';
    font-weight: 400;
    border: none;
    font-size: 14px;
    line-height: 1.7;
    z-index: 7;
    pointer-events: none;
    margin: 0;
    transition: all 0.4s;
}

.ftr-lft-itm .form-links .formpopup {
    padding: 0 !important;
}

.ftr-lft-itm .gfield.gfield--type-checkbox {
    margin: -13px 0 0;
}

.ftr-lft-itm .gfield-choice-input+label {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    width: max-content;
    cursor: pointer;
}

.ftr-lft-itm .gfield textarea.large {
    height: 150px !important;
    min-height: auto !important;
    outline: 0;
    resize: none;
    margin-bottom: 20px;
}

.ftr-lft-itm .gform-theme--foundation .gfield textarea.large {
    min-block-size: 18rem;
    min-height: auto;
}

.ftr-lft-itm .gfield input::placeholder,
.ftr-lft-itm .gfield textarea::placeholder {
    color: #000;
}

.ftr-lft-itm .form-links a {
    cursor: pointer;
    text-decoration: none;
}

.ftr-lft-itm .form-links a:hover {
    color: #eee;
}

.ftr-lft-itm .top_label input[type="checkbox"] {
    min-width: auto;
    margin: 0px 5px 0px 0 !important;
    width: 14px !important;
    height: 14px !important;
    border: none !important;
    border-radius: 0;
    background-color: #fff;
    z-index: 1;
}

.ftr-lft-itm .gform_fields {
    display: grid !important;
    grid-column-gap: 20px !important;
    grid-row-gap: 20px !important;
}

.ftr-lft-itm .form-links button:focus,
.ftr-lft-itm .form-links a:focus {
    outline: 0 !important;
    border: 0 !important;
}

.ftr-lft-itm .form-links button {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.ftr-lft-itm .gform_footer input[type="submit"]:hover {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #2b3243 !important;
}

.ftr-lft-itm .gchoice.gchoice_1_12_1 input {
    width: 15px;
    height: 15px;
}

.ftr-lft-itm .gform-theme--framework input[type=checkbox]::before {
    color: #e5b85d;
}

.ftr-lft-itm div#popup-container {
    position: relative;
}

.ftr-lft-itm div#validation_message_6_12 {
    left: 80px;
    top: 7px;
}

.ftr-lft-itm .gform_wrapper .gform_validation_errors {
    display: none;
}

.ftr-lft-itm .gform_wrapper .gfield {
    position: relative;
    text-align: left;
}

#myPopup.show {
    display: block;
    visibility: visible;
    z-index: 99;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.ftr-lft-itm .gform_wrapper .gfield .validation_message.gfield_validation_message,
.ftr-lft-itm .gform_wrapper .gfield .instruction.validation_message {
    position: absolute;
    top: 7px;
    background: none;
    padding: 0px;
    line-height: 1;
    color: #ff0000;
    font-family: 'Geist';
    font-size: 14px;
    right: 7px;
    font-weight: 400;
    width: auto;
    border: none;
    pointer-events: none;
    margin: 0;
}

.ftr-lft-itm .gfield.gfield--type-checkbox .validation_message {
    top: -14px !important;
    right: inherit;
    left: 0;
}

.ftr-lft-itm .gform_wrapper .gfield .instruction.validation_message {
    top: 55px;
}

.ftr-lft-itm .gform_wrapper .field_description_below .gfield_description {
    padding-top: 0
}

.ftr-lft-itm .popup {
    max-width: 100%;
}

.ftr-lft-itm .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 20px !important;
    grid-row-gap: 10px !important;
}

#myPopup.show {
    position: absolute;
    z-index: 5;
    padding: 10px;
    display: none;
    margin: 0;
}

.formpopuptext {
    font-family: 'Geist';
    font-weight: 400;
    transition: transform .15s ease-out .15s;
    pointer-events: none;
    text-align: center;
    background: #fff;
    border: 1px solid #00000066;
    font-size: 14px;
    color: #000 !important;
    line-height: 1.5;
    width: 100% !important;
    padding: 10px;
    position: absolute;
    z-index: 5;
    display: none;
}

.ftr-lft-itm .gform_wrapper .gfield.chk .gfield_description.validation_message.gfield_validation_message {
    right: inherit;
    left: 0;
    top: 20px;
}

/* Copyrights */

.copyrights {
    padding: 55px 0 0;
    text-align: center;
    background-color: #0000;
}

.copy-para,
.cpy-inr,
.ftrlink {
    display: inline-block;
}

.copyrightmenu ul {
    margin: 0;
}

.copyrightmenu ul li {
    display: inline-block;
    margin: 0;
}

.copyrights p,
.copyrights a {
    color: #a3aebc;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
}

.copyrightmenu ul li a {
    line-height: 1;
    border-right: 1px solid #fff;
}

.copyrightmenu ul li:last-child a {
    border: none;
}

.copyrights a {
    display: inline-block;
    padding: 0 8px;
}

.copyrights p,
.copyrightmenu ul {
    margin: 0 0 8px 0;
}

.copyrights p,
.copyrights a {
    color: #ffffff;
    font-family: "Geist", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0;
}

.copyrightmenu ul li a {
    line-height: 1;
    border-right: 1px solid #fff;
}

.copyrightmenu ul li:last-child a {
    border: none;
}

.copyrights a {
    display: inline-block;
    padding: 0 8px;
}

.copyrightmenu ul li a:hover {
    color: #ffc002;
}

.growthlab {
    margin: 9px 0 0;
}

.growthlab img {
    width: 100%;
    display: block;
}

.ftr-menu {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}


@media screen and (max-width:1550px) {

    .site-footer {
        padding: 90px 0;
    }

    .ftr-lft-itm {
        padding: 50px 32px;
    }

    .form-text-heading {
        font-size: 32px;
        margin: 0 0 21px;
    }

    .ftr-lft-itm p {
        font-size: 17px;
        margin: 0 0 22px;
    }

    .ftr-lft-itm .gfield input.large,
    .ftr-lft-itm .gfield textarea.large {
        font-size: 17px !important;
        padding: 21px 20px 21px 23px !important;
    }

    .ftr-lft-itm .gform_fields {
        grid-column-gap: 16px !important;
        grid-row-gap: 16px !important;
    }

    .ftr-lft-itm .form-links,
    .ftr-lft-itm .form-links .formpopup,
    .ftr-lft-itm .gfield-choice-input+label {
        font-size: 15px !important;
    }

    .ftr-lft-itm .gfield textarea.large {
        height: 120px !important;
        margin-bottom: 12px;
    }

    .ftr-lft-itm .gform_wrapper .gform_footer.top_label {
        margin: -46px 0 0 auto !important;
    }

    .ftr-lft-itm .top_label input[type="checkbox"] {
        width: 12px !important;
        height: 12px !important;
    }

    .ftr-lft-itm .gfield.gfield--type-checkbox {
        margin: -10px 0 0;
    }

    .ftr-lft-itm .top_label input[type="submit"] {
        font-size: 19px !important;
        padding: 14px 34px !important;
    }

    .ftr-logo {
        padding: 0 0 31px;
        margin: 0 0 45px;
    }

    .ftr-loc-blks {
        margin: 0 0 15px;
    }

    .ftr-lft-blk .ftr-blk-heading,
    .ftr-rgt-blk .ftr-blk-heading {
        font-size: 26px;
        margin: 0 0 14px;
        padding: 0 0 0 29px;
    }

    .ftr-blk-heading::before {
        width: 25px;
        height: 25px;
    }

    .ftr-lft-blk p {
        font-size: 15px;
    }

    .directions a {
        letter-spacing: 1.9px;
    }

    .ftr-loc-blks .ftr-blk-txt {
        font-size: 17px;
        margin: 0 0 15px;
    }

    .ftr-call-num a {
        font-size: 18px;
    }

    .ftr-blks {
        padding: 0 0 45px;
    }

    .copyrights {
        padding: 40px 0 0;
    }

    .copyrights p,
    .copyrights a {
        font-size: 14px;
    }

    .growthlab {
        margin: 7px auto 0;
        max-width: 200px;
    }
    .ftr-lft-itm .gform_wrapper .gfield .validation_message.gfield_validation_message, .ftr-lft-itm .gform_wrapper .gfield .instruction.validation_message{
        top: 5px;
        font-size: 12px;
    }
    .ftr-lft-itm .gform_wrapper .gfield .instruction.validation_message {
    top: 48px;
}

}

@media screen and (max-width:1440px) {

    .site-footer {
        padding: 84px 0;
    }

    .ftr-lft-itm {
        padding: 45px 29px;
    }

    .form-text-heading {
        font-size: 30px;
        margin: 0 0 19px;
    }

    .ftr-lft-itm p {
        font-size: 15px;
        margin: 0 0 20px;
    }

    .ftr-lft-itm .gfield input.large,
    .ftr-lft-itm .gfield textarea.large {
        font-size: 16px !important;
        padding: 19px 20px 19px 21px !important;
    }

    .ftr-lft-itm .gform_fields {
        grid-column-gap: 15px !important;
        grid-row-gap: 15px !important;
    }

    .ftr-lft-itm .gfield textarea.large {
        height: 112px !important;
        margin-bottom: 11px;
    }

    .ftr-lft-itm .form-links,
    .ftr-lft-itm .form-links .formpopup,
    .ftr-lft-itm .gfield-choice-input+label {
        font-size: 14px !important;
    }

    .ftr-lft-itm .top_label input[type="checkbox"] {
        width: 11px !important;
        height: 11px !important;
        margin: 2px 4px 0px 0 !important;
    }

    .ftr-lft-itm .gform_wrapper .gform_footer.top_label {
        margin: -43px 0 0 auto !important;
    }

    .ftr-lft-itm .top_label input[type="submit"] {
        font-size: 17px !important;
    }

    .ftr-logo {
        padding: 0 0 28px;
        margin: 0 0 42px;
    }

    .ftr-lft-blk .ftr-blk-heading,
    .ftr-rgt-blk .ftr-blk-heading {
        font-size: 25px;
        margin: 0 0 13px;
        padding: 0 0 0 29px;
    }

    .ftr-blk-heading::before {
        width: 23px;
        height: 23px;
    }

    .ftr-lft-blk p {
        font-size: 14px;
    }

    .directions a {
        letter-spacing: 1.6px;
        font-size: 13px;
    }

    .ftr-loc-blks .ftr-blk-txt {
        font-size: 16px;
        margin: 0 0 14px;
    }

    .ftr-call-num a {
        font-size: 17px;
    }

    .ftr-loc-blks {
        margin: 0 0 13px;
    }

    .copyrights {
        padding: 35px 0 0;
    }

    .copyrights p,
    .copyrights a {
        line-height: 1.5;
    }
    .ftr-rgt-itm {
    width: 46.5%;
}

}

@media screen and (max-width:1366px) {

        .site-footer .container {
        max-width: 1032px;
    }

    .site-footer {
        padding: 60px 0;
    }

    .ftr-lft-itm {
        padding: 44px 29px;
    }

    .form-text-heading {
        font-size: 29px;
        margin: 0 0 17px;
    }

    .ftr-lft-itm p {
        font-size: 15px;
        margin: 0 0 20px;
    }

    .ftr-lft-itm .gform_fields {
        grid-column-gap: 14px !important;
        grid-row-gap: 14px !important;
    }

    .ftr-lft-itm .gfield input.large,
    .ftr-lft-itm .gfield textarea.large {
        font-size: 15px !important;
        padding: 17px 17px 17px 18px !important;
    }

    .ftr-lft-itm .gfield textarea.large {
        height: 105px !important;
        margin-bottom: 10px;
    }

    .ftr-lft-itm .form-links,
    .ftr-lft-itm .form-links .formpopup,
    .ftr-lft-itm .gfield-choice-input+label {
        font-size: 13px !important;
    }

    .ftr-lft-itm .top_label input[type="checkbox"] {
        width: 10px !important;
        height: 10px !important;
        margin: 2px 5px 0px 0 !important;
    }

    .ftr-lft-itm .top_label input[type="submit"] {
        font-size: 16px !important;
    }

    .ftr-logo {
        padding: 0 0 26px;
        margin: 0 0 40px;
    }

    .ftr-lft-blk .ftr-blk-heading,
    .ftr-rgt-blk .ftr-blk-heading {
        font-size: 23px;
        margin: 0 0 11px;
        padding: 0 0 0 26px;
    }

    .ftr-blk-heading::before {
        width: 20px;
        height: 20px;
    }

    .ftr-loc-blks {
        margin: 0 0 10px;
    }

    .ftr-blks {
        padding: 0 0 42px;
    }

    .growthlab {
        margin: 6px auto 0;
        max-width: 185px;
    }

    .copyrights {
        padding: 33px 0 0;
    }
        .ftr-lft-itm .gform_wrapper .gfield .validation_message.gfield_validation_message, .ftr-lft-itm .gform_wrapper .gfield .instruction.validation_message {
        top: 5px;
        font-size: 12px;
    }
        .ftr-lft-itm .gform_wrapper .gfield .instruction.validation_message {
        top: 38px;
    }
    .ftr-lft-itm div#validation_message_3_7 {
    left: 100px;
}

}

@media screen and (max-width: 1280px) {

        .site-footer .container {
        max-width: 960px;
    }

    .site-footer {
        padding: 70px 0;
    }

    .ftr-lft-itm {
        padding: 40px 26px;
    }

    .form-text-heading {
        font-size: 27px;
        margin: 0 0 15px;
    }

    .ftr-lft-itm p {
        font-size: 14px;
        margin: 0 0 20px;
    }

    .ftr-lft-itm .gfield input.large,
    .ftr-lft-itm .gfield textarea.large {
        font-size: 14px !important;
        padding: 16px !important;
    }

    .ftr-lft-itm .gform_fields {
        grid-column-gap: 13px !important;
        grid-row-gap: 13px !important;
    }

    .ftr-lft-itm .gfield textarea.large {
        height: 100px !important;
    }

    .ftr-lft-itm .top_label input[type="submit"] {
        font-size: 15px !important;
        padding: 12px 27px !important;
    }

    .ftr-lft-itm .gform_wrapper .gform_footer.top_label {
        margin: -38px 0 0 auto !important;
    }

    .ftr-logo {
        padding: 0 0 23px;
        margin: 0 0 38px;
    }

    .ftr-lft-blk .ftr-blk-heading,
    .ftr-rgt-blk .ftr-blk-heading {
        font-size: 22px;
        margin: 0 0 10px;
        padding: 0 0 0 24px;
    }

    .ftr-blk-heading::before {
        width: 18px;
        height: 18px;
    }

    .ftr-lft-blk p {
        font-size: 13px;
    }

    .directions a {
        letter-spacing: 1px;
    }

    .ftr-loc-blks .ftr-blk-txt {
        font-size: 15px;
        margin: 0 0 12px;
    }

    .ftr-call-num a {
        font-size: 15px;
    }

    .ftr-loc-blks {
        margin: 0 0 9px;
    }

    .ftr-blks {
        padding: 0 0 38px;
    }

    .copyrights {
        padding: 30px 0 0;
    }

    .growthlab {
        margin: 5px auto 0;
        max-width: 170px;
    }
    .ftr-rgt-blk {
    width: 36%;
}

}

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

    .site-footer {
        padding: 50px 0 30px;
    }

    .ftr-blk-lst {
        justify-content: center;
        flex-direction: column;
        gap: 25px;
    }

    .ftr-lft-itm {
        padding: 25px;
        width: 100%;
        max-width: 420px;
    }

    .ftr-lft-blk p {
        font-size: 14px;
    }

    .directions a {
        letter-spacing: 0.5px;
        font-size: 14px;
    }
        .ftr-lft-itm .gform_wrapper .gfield .validation_message.gfield_validation_message, .ftr-lft-itm .gform_wrapper .gfield .instruction.validation_message {
        top: 5px;
        font-size: 12px;
    }
        .ftr-lft-itm .gform_wrapper .gfield .instruction.validation_message {
        top: 30px;
    }

    .ftr-rgt-itm {
        width: 100%;
    }

    .ftr-logo {
        padding: 0 0 20px;
        margin: 0 auto 25px;
        max-width: 280px;
    }

    .ftr-blks {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 0 25px;
        gap: 20px;
        border-bottom:none;
    }

    .ftr-lft-blk,
    .ftr-rgt-blk {
        width: 100%;
        border: 1px solid #555b69;
        padding: 20px;
        max-width: 300px;
    }

    .copyrights {
        padding: 25px 0 0;
        border-top: 1px solid #555b69;
    }

    .ftr-lft-itm .gfield.gfield--type-checkbox {
        margin: -7px 0 0;
    }

}

@media screen and (max-width: 767px) {
    .site-footer {
        padding: 40px 0 30px;
    }
}

@media screen and (max-width:480px) {

    .ftr-lft-itm {
        padding: 15px;
    }

    .form-text-heading {
        font-size: 19px;
        margin: 0 0 12px;
    }

    .ftr-lft-itm p {
        font-size: 14px;
        margin: 0 0 15px;
    }

    .ftr-lft-itm .gfield input.large,
    .ftr-lft-itm .gfield textarea.large {
        font-size: 14px !important;
        padding: 13px !important;
    }

    .ftr-lft-itm .gfield textarea.large {
        height: 90px !important;
        margin-bottom: 7px;
    }

    .ftr-lft-itm .gform_wrapper .gform_footer.top_label {
        margin: 16px auto 0 !important;
    }

    .ftr-logo {
        padding: 0 0 15px;
        margin: 0 auto 20px;
        max-width: 280px;
    }

    .ftr-blks {
        padding: 0 0 20px;
        gap: 15px;
    }

    .copyrights {
        padding: 20px 0 0;
    }

}

/* Spanish Version */

.translated-ltr .bnr-txt {
    font-size: 35px;
}

.translated-ltr .bnr-txt strong {
    font-size: 95px;
    margin: -10px 0 0;
}

.translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .text-heading {
    font-size: 50px;
}

.translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt p {
    font-size: 17px;
}

.translated-ltr .criminal-defence-lp-protecting-sec .protecting-lp-title {
    font-size: 60px;
}

.translated-ltr .criminal-defence-lp-protecting-sec .federal-text {
    font-size: 19px;
}

.translated-ltr .criminal-defence-lp-protecting-sec .facing-federal-text {
    font-size: 20px;
}

/* .translated-ltr a.cmn-btn {font-size: 21px;padding: 20px 40px;} */
.translated-ltr .text-heading {
    font-size: 45px;
}

.translated-ltr .build-itm:nth-child(even) h4 br {
    display: none;
}

/* .translated-ltr .criminal-defence-lp-faq-sec .criminal-defence-faq-left-title {font-size: 45px;} */
.translated-ltr .ftr-rgt-blk {
    width: 38%;
}

.translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield-choice-input+label {
    margin: 0 0 0 3px;
}

.translated-ltr .ftr-lft-itm .gform_wrapper .gform_footer.top_label {
    margin: 10px 0 0 !important;
}

@media screen and (max-width:1550px) {
    .translated-ltr .bnr-txt strong {
        font-size: 80px;
    }

    .translated-ltr .top-call p {
        font-size: 18px;
    }

    .translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .text-heading {
        font-size: 42px;
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 50px;
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .federal-text::after {
        transform: scale(0.9);
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .facing-federal-text {
        font-size: 17px;
    }

    .translated-ltr .text-heading {
        font-size: 40px;
    }

    /* .translated-ltr .ftr-lft-itm .form-links, .translated-ltr .ftr-lft-itm .form-links .formpopup, .translated-ltr .ftr-lft-itm .gfield-choice-input+label {font-size: 11px !important;} */
}

@media screen and (max-width:1440px) {
    .translated-ltr .bnr-txt {
        font-size: 30px;
    }

    .translated-ltr .bnr-txt strong {
        font-size: 70px;
    }

    .translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .text-heading {
        font-size: 39px;
    }

    .translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt p {
        font-size: 16px;
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 45px;
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .facing-federal-text {
        font-size: 15px;
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .federal-text {
        font-size: 17px;
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .federal-text::after {
        transform: scale(0.8);
        bottom: 30px;
    }

    .translated-ltr .text-heading {
        font-size: 35px;
    }

    .translated-ltr .criminal-defence-lp-parctice-areas-sec {
        padding: 80px 0 40px;
    }

    .translated-ltr .site-footer {
        padding: 80px 0 60px;
    }
}

@media screen and (max-width:1366px) {
    .translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .text-heading {
        font-size: 35px;
    }

    .translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt p {
        font-size: 15px;
    }
}

@media screen and (max-width:1280px) {
    .translated-ltr .top-call p {
        font-size: 16px;
    }

    .translated-ltr .bnr-txt {
        font-size: 26px;
    }

    .translated-ltr .bnr-txt strong {
        font-size: 60px;
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 41px;
    }

    .translated-ltr .text-heading {
        font-size: 30px;
    }

    .translated-ltr .criminal-defence-lp-parctice-areas-sec {
        padding: 60px 0 30px;
    }

    .translated-ltr .site-footer {
        padding: 60px 0 40px;
    }
}

@media screen and (max-width:1024px) {
    .translated-ltr .bnr-txt strong {
        font-size: 45px;
    }

    .translated-ltr .bnr-txt {
        font-size: 20px;
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 33px;
    }

    .translated-ltr .text-heading {
        font-size: 26px;
        letter-spacing: 0;
    }

    .translated-ltr .criminal-defence-lp-parctice-areas-sec {
        padding: 40px 0;
    }

    /* .translated-ltr .criminal-defence-lp-faq-sec .criminal-defence-faq-left-title {font-size: 35px;} */
    .translated-ltr .ftr-rgt-blk {
        width: 100%;
    }

    .translated-ltr .site-footer {
        padding: 50px 0 30px;
    }
}

@media screen and (max-width:767px) {
    .translated-ltr .bnr-txt strong {
        font-size: 34px;
        margin: 0;
    }

    .translated-ltr .bnr-txt {
        font-size: 15px;
        letter-spacing: 0;
    }

    .translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .text-heading {
        font-size: 26px;
    }

    .translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec {
        padding: 30px 20px;
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 22px;
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .federal-text {
        font-size: 15px;
    }

    .translated-ltr .text-heading {
        font-size: 22px;
    }

    /* .translated-ltr .criminal-defence-lp-faq-sec .criminal-defence-faq-left-title {font-size: 30px;} */
}

@media screen and (max-width:480px) {
    .translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-cnt p {
        font-size: 13px;
    }

    .translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec .lp-frm-sec .gfield-choice-input+label {
        font-size: 12px !important;
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .protecting-lp-title {
        font-size: 19px;
    }

    .translated-ltr .criminal-defence-lp-banner-btm-sec .lp-bnr-btm-sec {
        padding: 15px;
    }

    .translated-ltr .criminal-defence-lp-protecting-sec .facing-federal-text {
        font-size: 14px;
    }

    .translated-ltr .ftr-lft-itm .form-links,
    .translated-ltr .ftr-lft-itm .form-links .formpopup,
    .translated-ltr .ftr-lft-itm .gfield-choice-input+label {
        font-size: 12px !important;
    }
}