/*
Theme Name:   Trujillo Gonzalez Landing Pages
Theme URI:    https://underscores.me/
Description:  A child theme for the Underscores theme
Author:       GrowthLab Seo
Author URI:   https://growthlabseo.com/
Template:     underscores
Version:      1.0.0
*/


/* literata-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Literata';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/literata-v40-latin-regular.woff2') format('woff2');
}

/* literata-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Literata';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/literata-v40-latin-700.woff2') format('woff2');
}

/* lato-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/lato-v25-latin-regular.woff2') format('woff2');
}

/* lato-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/lato-v25-latin-700.woff2') format('woff2');
}

/* frank-ruhl-libre-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Frank Ruhl Libre';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/frank-ruhl-libre-v23-latin-regular.woff2') format('woff2');
}



:root {
    --blue: #1e90ff;
    --white: #ffffff;
    --placeholdercolor: currentColor;
    --headingFont: 'Frank Ruhl Libre';
    --bodyFont: 'Lato';
}

* {
    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;
}

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

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

@media screen and (min-width: 1025px) {
    .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;
}

.widget {
    margin: 0;
}

.post,
.page {
    margin: 0 !important;
}

html {
    margin-top: 0 !important;
}

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;
}

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

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

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

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

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

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

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

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

/* Header Section Starts */

.header-sec {
    background-color: #ccc;
    padding: 10px 0;
    position: fixed;
    z-index: 999;
    width: 100%;
}


.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 !important;
    display: block;
    text-transform: capitalize;
}

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

/* Mobile Menu Starts */

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

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

}

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

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

.mobinav {
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    z-index: 99999995;
    background: #021f46;
    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: 769px) {
    .mobile-menu-button-container {
        display: none;
    }
}

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

/* Mobile Menu Ends */

/* Common Styling */


.text-heading {
    font-family: var(--headingFont);
    font-weight: 600;
    font-size: 66px;
    color: #043340;
    line-height: 1.09;
    margin: 0 0 40px 0;
}


.copy-para a:hover {
    color: #c9a326!important;
}


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

    .top-menu,
    .top-rit {
        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: #000;
        border: none;
        width: 45px;
        height: 40px;
        padding: 0px 10px;
        border-radius: 5px;
    }

    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: #ccc;
        padding: 10px 10px;
        width: 100%;
    }

    .logo {
        max-width: 100%;
        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: #ea4a16;
        line-height: 27px;
        font-size: 30px;
        text-align: center;
        color: #fff;
        cursor: pointer;
        padding: 0;
    }

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

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

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

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

    .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;
    }

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

    .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;
    }
}


/* Footer Section */

.site-footer {
    background: #1f1f1f;
    padding: 50px 0;
    color: #fff;
}

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

.ftr-logo a {
    display: inline-block;
}

.ftr-menu ul {
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin: 20px auto;
}

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

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

.ftr-menu ul li a {
    text-transform: uppercase;
    color: #fff;
    font-family: var(--bodyFont);
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0.8px;
}


.copyrights {
    background: #0a1f38;
    padding: 25px 0;
    text-align: center;
}

.copyrightmenu ul {
    margin: 0;
}

.copyrightmenu ul li {
    display: inline-block;
    margin: 0;
}

.copyrights p,
.copyrightmenu ul {
    margin: 0 0 8px 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;
}


.hm-banner-sec {
    position: relative;
    padding: 360px 0 210px;
    background-image: -webkit-linear-gradient(90deg, rgb(25, 52, 124) 0%, rgba(25, 52, 124, 0.01) 99%, rgb(25, 52, 124) 100%);
    background-color: #06194c;
    text-align: center;
}

.hm-bnr-btns-lst {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media screen and (max-width:1680px) {
    .hm-banner-sec {
        padding: 320px 0 190px;
    }

}

@media screen and (max-width:1550px) {
    .hm-banner-sec {
        padding: 285px 0 170px;
    }

}

@media screen and (max-width:1366px) {
    .hm-banner-sec {
        padding: 265px 0 150px;
    }

}

@media screen and (max-width:1280px) {
    .hm-banner-sec {
        padding: 235px 0 135px;
    }

    .hm-bnr-btns-lst {
        gap: 12px;
    }

}

@media screen and (max-width:1024px) {
    .hm-banner-sec {
        padding: 80px 0;
    }

    .hm-bnr-btns-lst {
        gap: 10px;
    }

}

@media screen and (max-width:768px) {
    .hm-banner-sec {
        padding: 70px 0;
    }

}

@media screen and (max-width:480px) {
    .hm-banner-sec {
        padding: 55px 0;
    }

}

/* landing page */




/* Header Section Starts */

.header-sec {
    background-color: #ccc;
    padding: 10px 0;
    position: fixed;
    z-index: 999;
    width: 100%;
}

.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 !important;
    display: block;
    text-transform: capitalize;
}

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

.work-lp-translater a {
    background-color: #c9a227;
    color: #ffffff;
    font-family: 'Lato';
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    display: inline-block;
    padding: 16px 52px 15px 22px;
    border: 1px solid #fff;
    position: relative;
}

header.work-lp.header-sec.f-nav {
    background-color: #06194c;
}

header.work-lp.header-sec.f-nav .work-lp-header-lft,
header.work-lp.header-sec.f-nav .work-lp-header-rit {
    padding: 0 0 25px;
}

header.work-lp.header-sec.f-nav .logo {
    width: 150px;
    top: 10px;
}

.work-lp-translater a:hover {
    background-color: #06194c;
}

.work-lp-translater a::after {
    position: absolute;
    content: "";
    background-image: url("images/btn-aft.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 8px;
    right: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.work-lp-header-rit p {
    font-family: 'Literata';
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    margin: 0;
}

.work-lp-header-rit {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: flex-end;
}

.work-lp-site-header {
    padding: 45px 0;
    position: absolute;
    z-index: 1;
    width: 100%;
}

.site-logo a {
    display: inline-block;
}

.site-logo img {
    display: block;
    width: 100%;
}

.logo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-logo {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: -30px;
    max-width: 189px;
}

.hdr-top-tel {
    display: flex;
    gap: 20px;
}

.hdr-top-tel a {
    font-family: 'Lato';
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.hdr-top-tel a:hover {
    color: #d0a624
}

.logo-section p {
    font-family: 'Literata';
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
    color: #b3922b;
    margin: 0;
}

.hdr-top-cnt {
    display: flex;
    gap: 48px;
    align-items: center;
}

.hdr-top-cnt .cmn-btn {
    padding: 16px 52px 15px 22px;
    border: 1px solid #fff;
    text-transform: capitalize;
    position: relative;
}

.hdr-top-cnt .cmn-btn::after {
    position: absolute;
    content: "";
    background-image: url("images/btn-aft.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 8px;
    right: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.hdr-top-cnt p {
    color: #fff;
}

.hdr-top-tel,
.hdr-top-cnt {
    padding: 0 0 50px;
    border-bottom: 1px solid #505d7a;
}


header.work-lp.header-sec {
    background-color: transparent;
    padding: 38px 0 20px;
}

header.work-lp.header-sec .container {
    max-width: 1500px;
}

header.work-lp.header-sec .logo {
    position: absolute;
    left: 0;
    right: 0;
    width: 190px;
    top: 18px;
    margin: auto;
}

header.work-lp.header-sec .top-rit {
    width: 100%;
}

.workplace-lp-top-rit {
    width: 100%;
}

.work-lp-header-lst {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.work-lp-header-lft,
.work-lp-header-rit {
    padding: 0 0 55px;
    border-bottom: 1px solid rgba(255 255 255 / 30%);
    width: 38.7%;
}

.work-lp-header-lft p {
    font-family: 'Literata';
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
    color: #c9a227;
    margin: 0;
}

.work-lp-header-lft p a {
    font-family: 'Lato';
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 0 15px;
    display: inline-block;
    text-transform: uppercase;
}

.work-lp-header-lft p a:hover {
    color: #c9a227;
}

.work-lp-translater .gtranslate_wrapper select {
    background-color: #c9a227;
    color: #ffffff;
    font-family: 'Lato';
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0;
    display: inline-block;
    padding: 16px 22px 15px;
    border: 1px solid #fff;
    position: relative;
    background-image: url(images/btn-aft.webp);
    background-position: center right 7px;
    background-repeat: no-repeat;
    background-size: 14px 8px;
    appearance: none;
    outline: 0;
}

.work-lp-translater .gtranslate_wrapper select option:first-child {
    display: none;
}

/*Responsive*/

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

    .work-lp-header-lft p {
        font-size: 28px;
    }

    .work-lp-header-lft p a {
        font-size: 30px;
        margin: 0 0 0 13px;
    }

    .work-lp-header-rit p {
        font-size: 26px;
    }

    .work-lp-header-rit {
        gap: 37px;
    }

    .work-lp-translater a {
        font-size: 18px;
        padding: 15px 50px 14px 21px;
    }

    .work-lp-header-lft,
    .work-lp-header-rit {
        padding: 0 0 38px;
    }

    header.work-lp.header-sec .logo {
        width: 170px;
        top: 15px;
    }

    .work-lp-translater .gtranslate_wrapper select {
        font-size: 18px;
        padding: 14px 16px 12px;
    }


}

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

    header.work-lp.header-sec {
        padding: 32px 0 18px;
    }

    .work-lp-header-lft p {
        font-size: 25px;
    }

    .work-lp-header-lft p a {
        font-size: 27px;
        margin: 0 0 0 11px;
    }

    .work-lp-header-rit p {
        font-size: 23px;
    }

    .work-lp-header-rit {
        gap: 35px;
    }

    .work-lp-translater a {
        font-size: 17px;
        padding: 14px 47px 13px 20px;
    }

    .work-lp-translater a::after {
        width: 13px;
        height: 7px;
        right: 16px;
    }

    .work-lp-header-lft,
    .work-lp-header-rit {
        padding: 0 0 34px;
    }

    header.work-lp.header-sec .logo {
        width: 155px;
        top: 10px;
    }

    header.work-lp.header-sec.f-nav .logo {
        /* width: 140px; */
        width: 125px;
        top: 8px;
    }

    .work-lp-translater .gtranslate_wrapper select {
        font-size: 17px;
        padding: 13px 16px 11px;
        background-size: 13px 7px;
    }

}

@media screen and (max-width: 1440px) {
    header.work-lp.header-sec .container {
        max-width: 1220px;
    }

    .work-lp-header-lft p {
        font-size: 23px;
    }

    .work-lp-header-lft p a {
        font-size: 26px;
        margin: 0 0 0 10px;
    }

    .work-lp-header-rit p {
        font-size: 22px;
    }

    .work-lp-header-rit {
        gap: 32px;
    }

    .work-lp-translater a {
        font-size: 16px;
    }

    header.work-lp.header-sec .logo {
        width: 150px;
    }

}

@media screen and (max-width: 1366px) {
    header.work-lp.header-sec .container {
        max-width: 1140px;
    }

    .work-lp-header-lft p {
        font-size: 21px;
    }

    .work-lp-header-lft p a {
        font-size: 25px;
        margin: 0 0 0 8px;
    }

    .work-lp-header-rit p {
        font-size: 20px;
    }

    .work-lp-header-rit {
        gap: 30px;
    }

    .work-lp-translater a {
        font-size: 15px;
        padding: 13px 44px 12px 18px;
    }

    .work-lp-header-lft,
    .work-lp-header-rit {
        padding: 0 0 30px;
    }

    header.work-lp.header-sec .logo {
        width: 145px;
    }

    /* header.work-lp.header-sec.f-nav .logo {
        width: 136px;
    } */

    .work-lp-translater .gtranslate_wrapper select {
        font-size: 15px;
        padding: 11px 15px 10px;
        background-size: 12px 7px;
    }

    header.work-lp.header-sec {
        padding: 30px 0 18px;
    }

}

@media screen and (max-width: 1280px) {
    header.work-lp.header-sec .container {
        max-width: 950px;
    }

    .work-lp-header-lft p {
        font-size: 19px;
    }

    .work-lp-header-lft p a {
        font-size: 23px;
        margin: 0 0 0 7px;
    }

    .work-lp-header-rit p {
        font-size: 15px;
    }

    .work-lp-header-rit {
        gap: 23px;
    }

    .work-lp-translater a {
        font-size: 14px;
        padding: 12px 40px 11px 16px;
    }

    .work-lp-translater a::after {
        width: 11px;
        height: 6px;
        right: 13px;
    }

    header.work-lp.header-sec {
        padding: 26px 0 16px;
    }

    .work-lp-header-lft,
    .work-lp-header-rit {
        padding: 0 0 26px;
    }

    header.work-lp.header-sec .logo {
        width: 125px;
    }

    header.work-lp.header-sec.f-nav .logo {
        /* width: 120px; */
        width: 110px;
        top: 6px;
    }

    .work-lp-translater .gtranslate_wrapper select {
        font-size: 14px;
    }

}

@media screen and (max-width: 1024px) {
    header.work-lp.header-sec {
        padding: 20px 0 !important;
        position: relative;
        background-color: #0a1a44;
        border-bottom: 1px solid #c9a227;
    }

    header.work-lp.header-sec .container {
        max-width: 720px;
    }

    header.work-lp.header-sec .logo {
        width: 100% !important;
        position: inherit;
        justify-content: center;
    }

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

    .work-lp-header-lft,
    .work-lp-header-rit {
        padding: 0;
        width: 100%;
        border: 0;
        text-align: center;
        max-width: max-content;
    }

    .work-lp-header-lst {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .work-lp-header-rit {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap-reverse;
    }

    header.work-lp.header-sec .top-rit {
        display: block;
    }

    .work-lp-header-lft p a {
        font-size: 18px;
    }

    header.work-lp.header-sec.f-nav .work-lp-header-lft,
    header.work-lp.header-sec.f-nav .work-lp-header-rit {
        padding: 0;
    }

}

@media screen and (max-width:768px) {
    header.work-lp.header-sec .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .work-lp-header-lst {
        flex-wrap: wrap;
    }

}

@media screen and (max-width:480px) {
    .work-lp-header-lft p {
        font-size: 17px;
    }

    .work-lp-header-lft p a {
        font-size: 19px;
        margin: 0 0 0 5px;
    }

}

/*Banner sec*/

.work-lp-banner-sec .container {
    max-width: 1500px;
}

.work-lp-banner-sec {
    background-image: url("images/banner-bg-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* padding: 255px 0 0; */
    padding: 260px 0 120px;
}

.work-lp-banner-list {
    display: flex;
    justify-content: flex-end;
}

.banner-title {
    font-family: 'Literata';
    font-weight: 700;
    font-size: 92px;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 30px;
    text-transform: uppercase;
}

.banner-title strong {
    color: #c9a227;
    font-weight: 700;
/*     display: block; */
}

/* .work-lp-banner-lft {
    width: 44%;
    padding: 25px 0 0;
} 
    
.work-lp-banner-rit {
    width: 57.6%;
    margin: 0 -34px 0 -100px;
}
*/

.work-lp-banner-lft {
	width: 100%;
	padding: 0;
	text-align: center;
	max-width: 1020px;
	margin: 0 auto;
}

.work-lp-banner-rit{display: none;}


.work-lp-banner-img img {
    width: 100%;
    display: block;
}

.banner-btn .cmn-btn,
.work-lp-inj-btn .cmn-btn,
.hm-bnr-btns-lst .cmn-btn {
    color: #fff;
}

.cmn-btn {
    font-size: 20px;
    font-family: 'Lato';
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    /*     color: #ffffff; */
    text-transform: uppercase;
    padding: 23px 47px 22px;
    background-color: #c9a227;
    display: inline-block;
    text-decoration: none;
}

.cmn-btn:hover {
    background-color: #06194c;
    color: #fff;
}

html[lang="en-US"] .banner-title {
    font-size: 73px;
}


/*Responsive*/

@media screen and (max-width:1680px) {
    .work-lp-banner-sec .container {
        max-width: 1400px;
    }

    .work-lp-banner-rit {
        margin: 0 -23px 0 -90px;
    }

    .work-lp-banner-sec {
        /* padding: 230px 0 0; */
        padding: 240px 0 100px;
    }

    .banner-title {
        font-size: 90px;
        margin: 0 0 28px;
    }

    .cmn-btn {
        font-size: 18px;
        padding: 21px 38px 20px;
    }

    html[lang="en-US"] .banner-title {
        font-size: 67px;
    }

}

@media screen and (max-width: 1550px) {
    .work-lp-banner-sec .container {
        max-width: 1300px;
    }

    .work-lp-banner-rit {
        margin: 0 -20px 0 -80px;
    }

    .banner-title {
        font-size: 82px;
        margin: 0 0 26px;
    }

    .cmn-btn {
        font-size: 17px;
        padding: 21px 35px 18px;
    }

    .work-lp-banner-sec {
        /* padding: 210px 0 0; */
        padding: 220px 0 90px;
    }

    html[lang="en-US"] .banner-title {
        font-size: 63px;
    }

}

@media screen and (max-width: 1440px) {
    .work-lp-banner-sec .container {
        max-width: 1220px;
    }

    .work-lp-banner-rit {
        margin: 0 -15px 0 -72px;
    }

    .banner-title {
        font-size: 78px;
        margin: 0 0 24px;
    }

    .cmn-btn {
        font-size: 16px;
        padding: 20px 33px 18px;
    }

    .work-lp-banner-sec {
        /* padding: 195px 0 0; */
        padding: 205px 0 80px;

    }

    html[lang="en-US"] .banner-title {
        font-size: 58px;
    }

}

@media screen and (max-width: 1366px) {
    .work-lp-banner-sec .container {
        max-width: 1140px;
    }

    .work-lp-banner-rit {
        margin: 0 -10px 0 -68px;
    }

    .banner-title {
        font-size: 70px;
        margin: 0 0 22px;
    }

    .work-lp-banner-sec {
        /* padding: 185px 0 0; */
        padding: 190px 0 70px;
    }

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

    html[lang="en-US"] .banner-title {
        font-size: 54px;
    }

}

@media screen and (max-width: 1280px) {
    .work-lp-banner-sec .container {
        max-width: 940px;
    }

    .work-lp-banner-rit {
        margin: 0 -5px 0 -45px;
    }

    .banner-title {
        font-size: 60px;
        margin: 0 0 20px;
    }

    .work-lp-banner-lft {
        padding: 10px 0 0;
    }

    .cmn-btn {
        font-size: 14px;
        padding: 18px 28px 16px;
    }

    .work-lp-banner-sec {
        /* padding: 165px 0 0; */
        padding: 150px 0 60px;
    }

    html[lang="en-US"] .banner-title {
        font-size: 46px;
    }

}

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

.work-lp-banner-sec {
    padding: 50px 0;
    text-align: center;
}

.work-lp-banner-rit {
    margin: 0 auto;
    width: 100%;
    max-width: 380px;
    border-bottom: 2px solid #c9a227;
    order: 2;
}

.work-lp-banner-lft {
    padding: 0;
    width: 100%;
    display: contents;
}

.banner-title {
    font-size: 38px;
    order: 1;
    margin: 0;
}

.banner-btn {
    order: 3;
}

.work-lp-banner-list {
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

    html[lang="en-US"] .banner-title {
        font-size: 40px;
    }

}

@media screen and (max-width:768px) {
    .work-lp-banner-sec .container {
        max-width: 100%;
        padding: 0 15px;
    }

    /* .work-lp-banner-sec {
        padding: 45px 0;
    } */

    .banner-title {
        font-size: 32px;
    }

    html[lang="en-US"] .banner-title {
        font-size: 32px;
    }

}

@media screen and (max-width:480px) {
    .banner-title {
        font-size: 29px;
    }

    .cmn-btn {
        font-size: 13px;
        padding: 16px 26px 15px;
    }

    html[lang="en-US"] .banner-title {
        font-size: 30px;
    }

}



.text-heading {
    font-family: 'Frank Ruhl Libre';
    font-weight: 400;
    font-size: 39px;
    line-height: 1;
    letter-spacing: 0;
    color: #d0a624;
    margin: 0 0 25px;
}

.text-heading strong {
    color: #c9a227;
    font-weight: 400;
}

.workplace-lp-tab-section {
    padding: 90px 0 125px;
}

.workplace-lp-tab-section .text-heading strong {
    display: block;
    margin: 7px 0 0;
}

.workplace-lp-tab-section {
    padding: 96px 0 125px;
    background-image: url(images/workplace-lp-tab-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}

.workplace-lp-tab-section p,
.workplace-lp-tab-section ul li {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 20px;
}

.workplace-lp-tab-section ul {
    margin: 0 0 20px;
}

.workplace-lp-tab-section ul li {
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 0 10px !important;
}

.workplace-lp-tab-section ul li:before {
    position: absolute;
    background-color: #d0a624;
    content: '';
    width: 8px;
    height: 8px;
    left: 0px;
    top: 10px;
}

.workplace-lp-tab-pane {
    display: none;
}

.workplace-lp-tab-pane.tab-pane-active {
    display: block;
    position: relative;
}

.workplace-lp-tab-pane.tab-pane-active::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 36px;
    background-color: #c9a227;
    top: -30px;
    bottom: auto;
    left: -37px;
    margin: auto;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.workplace-lp-tabs-block {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.workplace-lp-lft {
    width: 48.5%;
}

.workplace-lp-tab-content-area {
    width: 50%;
}

.workplace-lp-lft .text-heading {
    color: #fff;
}

.workplace-lp-tab-btn {
    font-family: 'Frank Ruhl Libre';
    font-weight: 400;
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: 0;
    color: #ffffff;
    padding: 17px 25px 20px;
    margin: 0 0 19px;
    border: 2px solid #8c7428;
    position: relative;
    cursor: pointer;
}

/* .workplace-lp-tab-btn.tab-btn-active::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 36px;
    background-color: #c9a227;
    top: 0;
    bottom: 0;
    right: -37px;
    margin: auto;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
} */



.workplace-lp-tab-btn-group {
    padding: 0px 14px 0 0;
    border-right: 4px solid #c9a227;
    margin: 45px 20px 0 0;
}

.workplace-lp-tab-btn.tab-btn-active,
.workplace-lp-tab-btn:hover {
    background-color: #c9a227;
    border-color: #ffc107;
}

.accordion.workplace-lp-tab-mbl {
    display: none;
}

/*Responsive*/

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

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

    .workplace-lp-tab-section p,
    .workplace-lp-tab-section ul li {
        font-size: 16px;
        margin: 0 0 18px;
    }

    .workplace-lp-tab-btn-group {
        margin: 32px 18px 0 0;
    }

    .workplace-lp-tab-btn {
        font-size: 27px;
        line-height: 1.15;
        padding: 17px 25px 20px;
        margin: 0 0 16px;
    }

    .workplace-lp-tab-section {
        padding: 80px 0 100px;
    }

}

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

    .workplace-lp-tab-section p,
    .workplace-lp-tab-section ul li {
        font-size: 15px;
        margin: 0 0 16px;
    }

    .workplace-lp-tab-btn-group {
        margin: 26px 16px 0 0;
        padding: 0px 13px 0 0;
        border-width: 3px;
    }

    .workplace-lp-tab-btn {
        font-size: 25px;
        padding: 15px 22px 18px;
        margin: 0 0 14px;
    }

    /* .workplace-lp-tab-btn.tab-btn-active::before {
        width: 16px;
        height: 31px;
        right: -33px;
    } */

    .workplace-lp-tab-pane.tab-pane-active::before {
        width: 16px;
        height: 31px;
        left: -33px;
    }

    .workplace-lp-tab-section {
        padding: 70px 0 85px;
    }

    .workplace-lp-tab-section ul li {
        padding: 0 0 0 16px;
    }

    .workplace-lp-tab-section ul li:before {
        top: 9px;
    }

}

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

    .workplace-lp-tab-section p,
    .workplace-lp-tab-section ul li {
        font-size: 15px;
        margin: 0 0 15px;
    }

    .workplace-lp-tab-btn-group {
        margin: 22px 15px 0 0;
        padding: 0px 12px 0 0;
    }

    .workplace-lp-tab-btn {
        font-size: 24px;
        padding: 14px 20px 16px;
        margin: 0 0 12px;
    }

    .workplace-lp-tab-section {
        padding: 60px 0 70px;
    }

    /* .workplace-lp-tab-btn.tab-btn-active::before {
        width: 15px;
        height: 26px;
        right: -31px;
    } */

    .workplace-lp-tab-pane.tab-pane-active::before {
        width: 15px;
        height: 26px;
        left: -31px;
    }

    .workplace-lp-tab-section ul li {
        padding: 0 0 0 15px;
    }

    .workplace-lp-tab-section ul li:before {
        width: 7px;
        height: 7px;
    }

    .workplace-lp-tab-section ul {
        margin: 0 0 18px;
    }

}

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

    .workplace-lp-tab-section p,
    .workplace-lp-tab-section ul li {
        line-height: 1.5;
        font-size: 14px;
    }

    .workplace-lp-tab-btn {
        font-size: 20px;
        padding: 14px 18px 13px;
        margin: 0 0 10px;
        border-width: 1px;
    }

    .workplace-lp-tab-btn-group {
        margin: 20px 13px 0 0;
        padding: 0px 10px 0 0;
        border-width: 2px;
    }

    /* .workplace-lp-tab-btn.tab-btn-active::before {
        width: 13px;
        height: 22px;
        right: -26px;
    } */

    .workplace-lp-tab-pane.tab-pane-active::before {
        width: 13px;
        height: 22px;
        left: -29px;
    }

    .workplace-lp-tab-section {
        padding: 50px 0 60px;
    }

    .workplace-lp-tab-section ul li:before {
        top: 8px;
    }

}

@media screen and (max-width: 1024px) {
    .workplace-lp-tabs-block {
        align-items: center;
        flex-direction: column;
        gap: 5px;
    }

    .workplace-lp-tab-btn-group {
        margin: 18px 0 0;
        padding: 0;
        border-width: 0;
        display: none;
    }

    .workplace-lp-lft {
        width: 100%;
    }

    .workplace-lp-tab-btn.tab-btn-active::before, .workplace-lp-tab-pane.tab-pane-active::before {
        display: none;
    }

    .workplace-lp-tab-content-area {
        width: 100%;
        display: none;
    }

    .workplace-lp-tab-section p,
    .workplace-lp-tab-section ul li {
        font-size: 15px;
    }

    .workplace-lp-tab-section {
        padding: 35px 0 30px;
        background-image: url(images/footer-bg-img.webp);
    }

    .accordion.workplace-lp-tab-mbl {
        display: block;
        max-width: 100%;
        width: 100%;
    }

    .accordion.workplace-lp-tab-mbl .accordion-heading {
        background-color: transparent;
        color: #fff;
        line-height: 1.15;
        border-radius: 0;
        font-size: 20px;
        padding: 14px 18px 13px;
    }

    .accordion.workplace-lp-tab-mbl .accordion-section-content {
        background-color: #c9a2274f;
    }

    .accordion.workplace-lp-tab-mbl .accordion-section-content p {
        font-size: 15px;
        margin: 0 0 16px;
    }

    .accordion.workplace-lp-tab-mbl .accordion-section {
        margin: 0 0 10px;
    }

    .accordion.workplace-lp-tab-mbl .accordion-section.accordien-active .accordion-heading,
    .accordion.workplace-lp-tab-mbl .accordion-section .accordion-heading:hover {
        background-color: #c9a227;
        border-color: #ffc107;
        border-radius: 0;
    }

}

@media screen and (max-width:768px) {
    .workplace-lp-tab-section {
        padding: 30px 0 20px;
    }

    .workplace-lp-tab-btn,
    .accordion.workplace-lp-tab-mbl .accordion-heading {
        font-size: 18px;
        padding: 14px 14px 13px;
    }

    .workplace-lp-tab-section p,
    .accordion.workplace-lp-tab-mbl .accordion-section-content p {
        margin: 0 0 12px;
    }

}

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



/* workplace-lp-injuries section */
.work-lp-injuries-sec {
    padding: 100px 0 50px;
    text-align: center;
    background-image: url("images/injury-bg-img.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.work-lp-injuries-sec .container {
    max-width: 1500px;
}

.work-lp-injuries-sec .text-heading {
    color: #d0a624;
}

.work-lp-injuries-sec p {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #242424;
    margin: 0 0 25px;
}

.work-lp-inj-cntblk {
    position: relative;
}

.work-lp-inj-topcnt {
    position: absolute;
    top: 20px;
    left: 0;
    width: 22.5%;
    text-align: left;
}

.work-lp-injuries-list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap-reverse;
    gap: 20px 30px;
    align-items: center;
}

.work-lp-injuries-item {
    width: 23.4%;
    border-bottom: 5px solid #c9a227;
    position: relative;
}

.work-lp-injuries-item::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(29, 41, 82, 0.15) 0%, rgba(29, 41, 82, 1) 100%);
    width: 100%;
    height: 100%;
    margin: auto;
}

.work-lp-injuries-img img {
    width: 100%;
    display: block;
}

.work-lp-injuries-title {
    font-family: 'Literata';
    font-weight: 400;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0 0 50px;
    position: relative;
    z-index: 1;
}

.work-lp-injuries-item:hover .work-lp-injuries-title::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    bottom: -25px;
    width: 152px;
    height: 1px;
    background-color: #ffffff;
}

.work-lp-injuries-sec .work-lp-injuries-cnt p {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
    display: none;
}

.work-lp-injuries-item:hover .work-lp-injuries-cnt p {
    display: block;
}

.work-lp-injuries-cnt {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    padding: 0 35px;
}

.work-lp-injuries-item:hover .work-lp-injuries-cnt {
    bottom: 75px;
}

.work-lp-injuries-item:hover .work-lp-injuries-img img {
    opacity: 0.2;
}

.work-lp-injuries-item:hover::after {
    display: none;
}

.work-lp-injuries-item:hover {
    background-color: #c9a227;
    border-bottom-color: #06194c;
}

/*Responsive*/

@media screen and (max-width:1680px) {
    .work-lp-injuries-sec .container {
        max-width: 1400px;
    }

    .work-lp-injuries-list {
        gap: 18px 28px;
    }

    .work-lp-injuries-sec p {
        font-size: 16px;
        margin: 0 0 22px;
    }

    .work-lp-injuries-title {
        font-size: 26px;
        margin: 0 0 46px;
    }

    .work-lp-injuries-cnt {
        padding: 0 30px;
    }

    .work-lp-injuries-item:hover .work-lp-injuries-cnt {
        bottom: 58px;
    }

    .work-lp-injuries-sec {
        padding: 90px 0 45px;
    }

}

@media screen and (max-width: 1550px) {
    .work-lp-injuries-sec .container {
        max-width: 1300px;
    }

    .work-lp-injuries-list {
        gap: 17px 27px;
    }

    .work-lp-injuries-sec {
        padding: 80px 0 45px;
    }

    .work-lp-injuries-title {
        font-size: 24px;
        margin: 0 0 42px;
    }

    .work-lp-injuries-item:hover .work-lp-injuries-cnt {
        bottom: 52px;
    }

    .work-lp-injuries-cnt {
        padding: 0 25px;
    }

    .work-lp-injuries-sec .work-lp-injuries-cnt p {
        font-size: 15px;
        line-height: 1.5;
    }

    html[lang="en-US"] .work-lp-injuries-sec .text-heading {
        font-size: 34px;
    }

    html[lang="en-US"] .work-lp-injuries-title {
        font-size: 22px;
    }

}

@media screen and (max-width: 1440px) {
    .work-lp-injuries-sec .container {
        max-width: 1220px;
    }

    .work-lp-injuries-list {
        gap: 16px 26px;
    }

    .work-lp-injuries-sec p {
        font-size: 15px;
        margin: 0 0 20px;
        line-height: 1.5;
    }

    .work-lp-injuries-title {
        font-size: 22px;
        margin: 0 0 38px;
    }

    .work-lp-injuries-cnt {
        padding: 0 22px;
    }

    .work-lp-injuries-item:hover .work-lp-injuries-cnt {
        bottom: 46px;
    }

    .work-lp-injuries-item:hover .work-lp-injuries-title::before {
        bottom: -16px;
        width: 125px;
    }

    .work-lp-injuries-sec {
        padding: 70px 0 40px;
    }

    html[lang="en-US"] .work-lp-injuries-sec .text-heading {
        font-size: 32px;
    }

    html[lang="en-US"] .work-lp-injuries-title {
        font-size: 20px;
    }

}

@media screen and (max-width: 1366px) {
    .work-lp-injuries-sec .container {
        max-width: 1140px;
    }

    .work-lp-injuries-list {
        gap: 15px 24px;
    }

    .work-lp-injuries-title {
        font-size: 20px;
        margin: 0 0 34px;
    }

    .work-lp-injuries-item {
        border-width: 4px;
    }

    .work-lp-injuries-item:hover .work-lp-injuries-title::before {
        bottom: -15px;
        width: 108px;
    }

    .work-lp-injuries-sec .work-lp-injuries-cnt p {
        font-size: 14px;
    }

    .work-lp-injuries-sec {
        padding: 60px 0 35px;
    }

    .work-lp-injuries-cnt {
        padding: 0 17px;
    }

    html[lang="en-US"] .work-lp-injuries-sec .text-heading {
        font-size: 30px;
    }

    html[lang="en-US"] .work-lp-injuries-title {
        font-size: 19px;
    }

}

@media screen and (max-width: 1280px) {
    .work-lp-injuries-sec .container {
        max-width: 950px;
    }

    .work-lp-injuries-list {
        gap: 14px 19px;
    }

    .work-lp-injuries-cnt {
        padding: 0 10px;
    }

    .work-lp-injuries-title {
        font-size: 18px;
        margin: 0 0 28px;
    }

    .work-lp-injuries-item:hover .work-lp-injuries-title::before {
        bottom: -12px;
        width: 92px;
    }

    .work-lp-injuries-sec .work-lp-injuries-cnt p {
        font-size: 13px;
        line-height: 1.3;
    }

    .work-lp-injuries-item:hover .work-lp-injuries-cnt {
        bottom: 26px;
    }

    .work-lp-injuries-sec .text-heading {
        font-size: 27px;
    }

    .work-lp-injuries-sec p {
        font-size: 14px;
    }

    .work-lp-injuries-sec {
        padding: 50px 0 30px;
    }

    .work-lp-injuries-item {
        border-width: 3px;
    }

    html[lang="en-US"] .work-lp-injuries-sec .text-heading {
        font-size: 25px;
    }

    html[lang="en-US"] .work-lp-injuries-title {
        font-size: 17px;
        margin: 0 0 23px;
    }

}

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

    .work-lp-inj-topcnt {
        position: inherit;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
    }

    .work-lp-injuries-item {
        width: 100%;
        max-width: 280px;
        margin: auto;
    }

    .work-lp-injuries-list.owl-carousel .owl-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        margin: 20px 0 0;
    }

    .work-lp-injuries-list.owl-carousel .owl-dots button.owl-dot {
        width: 10px;
        height: 10px;
        background: #092d8d;
        border-radius: 10px;
    }

    .work-lp-injuries-list.owl-carousel .owl-dots button.owl-dot.active {
        width: 13px;
        height: 13px;
        background: #d0a624;
    }

    .work-lp-injuries-sec {
        padding: 35px 0 25px;
    }

    .work-lp-injuries-sec p {
        font-size: 15px;
    }

    .work-lp-injuries-sec .work-lp-injuries-cnt p {
        font-size: 15px;
    }


}

@media screen and (max-width:768px) {
    .work-lp-injuries-sec .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .work-lp-injuries-sec {
        padding: 30px 0 20px;
    }

}

@media screen and (max-width:480px) {
    .work-lp-injuries-sec .text-heading {
        font-size: 26px;
    }

}

/*why-choose-sec*/


.work-lp-why-choose-sec {
    background-image: url("images/why-choose-bg-img.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 50px 0 125px;
}

.work-lp-why-choose-sec strong {
    color: #c9a227;
    display: block;
    font-weight: 400;
}

.work-lp-why-choose-sec .text-heading {
    color: #06194c;
    padding: 0 0 25px;
    position: relative;
    text-align: center;
}

.work-lp-why-choose-sec .text-heading::after {
    position: absolute;
    content: "";
    width: 474px;
    height: 2px;
    background-color: #d0a624;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.work-lp-why-choose-sec p {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #06194c;
    margin: 0 0 45px;
    text-align: center;
}

.work-lp-why-choose-lst {
    display: flex;
    justify-content: space-between;
}

.work-li-why-choose-itm {
    width: 50%;
    padding: 0 15px 0 27px;
    position: relative;
}

.work-lp-why-choose-rit .work-li-why-choose-itm {
    padding: 0 61px 0 0;
}

.work-li-why-choose-itm::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 190px;
    background-color: #c9a227;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.work-lp-why-choose-lft {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.work-lp-why-choose-rit {
    width: 51%;
    margin: 20px -130px 0 0;
}

.work-lp-why-choose-lst .sub-heading {
    font-family: 'Frank Ruhl Libre';
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0;
    color: #d0a624;
    margin: 0 0 15px;
}

.work-lp-why-choose-rit .sub-heading {
    color: #06194c;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
}

.work-lp-why-choose-sec .work-li-why-choose-itm p {
    text-align: start;
    margin: 0;
}

.work-lp-why-choose-rit .work-li-why-choose-itm::before {
    display: none;
}

.work-lp-why-choose-img {
    margin: -60px 0px 0px 38px;
}

.work-lp-why-choose-img img {
    width: 100%;
    display: block;
}

/*Responsive*/

@media screen and (max-width:1680px) {
    .work-lp-why-choose-rit {
        margin: 20px -115px 0 0;
    }

}

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

    .work-lp-why-choose-sec .text-heading {
        padding: 0 0 18px;
    }

    .work-lp-why-choose-sec p {
        margin: 0 0 28px;
        font-size: 15px;
        line-height: 1.5;
    }

    .work-lp-why-choose-rit {
        margin: 18px -106px 0 0;
    }

    .work-lp-why-choose-lst .sub-heading {
        font-size: 25px;
        margin: 0 0 14px;
    }

    .work-li-why-choose-itm::before {
        height: 180px;
    }

    .work-lp-why-choose-sec {
        padding: 50px 0 110px;
    }

}

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

    .work-lp-why-choose-sec .text-heading {
        padding: 0 0 16px;
    }

    .work-lp-why-choose-sec p {
        margin: 0 0 25px;
    }

    .work-lp-why-choose-lst .sub-heading {
        font-size: 23px;
        margin: 0 0 12px;
    }

    .work-li-why-choose-itm::before {
        height: 152px;
        width: 2px;
    }

    .work-li-why-choose-itm {
        padding: 0 14px 0 23px;
    }

    .work-lp-why-choose-sec {
        padding: 45px 0 95px;
    }

    .work-lp-why-choose-sec .text-heading::after {
        width: 456px;
    }

}

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

    .work-lp-why-choose-sec .text-heading::after {
        width: 425px;
    }

    .work-lp-why-choose-sec p {
        margin: 0 0 18px;
    }

    .work-lp-why-choose-lst .sub-heading {
        font-size: 21px;
    }

    .work-lp-why-choose-rit .work-li-why-choose-itm {
        padding: 0 44px 0 0;
    }

    .work-lp-why-choose-img {
        margin: -45px 0px 0px 35px;
    }

    .work-lp-why-choose-sec .work-li-why-choose-itm p {
        font-size: 14px;
    }

    .work-li-why-choose-itm::before {
        height: 136px;
    }

    .work-lp-why-choose-rit {
        margin: 18px -87px 0 0;
    }

    .work-lp-why-choose-sec {
        padding: 40px 0 75px;
    }

}

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

    .work-lp-why-choose-sec .text-heading {
        padding: 0 0 14px;
    }

    .work-lp-why-choose-sec .text-heading::after {
        width: 395px;
    }

    .work-lp-why-choose-sec p {
        font-size: 15px;
    }

    .work-lp-why-choose-sec p br,
    .work-lp-why-choose-sec .work-li-why-choose-itm p br {
        display: none;
    }

    .work-lp-why-choose-rit {
        margin: 16px -50px 0 0;
        width: 50%;
    }

    .work-lp-why-choose-lst .sub-heading {
        font-size: 20px;
    }

    .work-lp-why-choose-rit .work-li-why-choose-itm {
        padding: 0 20px 0 0;
    }

    .work-lp-why-choose-sec .work-li-why-choose-itm p {
        font-size: 14px;
    }

    .work-li-why-choose-itm {
        padding: 0 13px 0 19px;
    }

    .work-lp-why-choose-img {
        margin: -26px 0px 0px 32px;
    }

    .work-lp-why-choose-sec {
        padding: 35px 0 55px;
    }

}

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

    .work-lp-why-choose-sec {
        padding: 30px 0 35px;
    }

    .work-lp-why-choose-sec .text-heading {
        padding: 0 0 12px;
    }

    .work-lp-why-choose-sec .text-heading::after {
        width: 370px;
    }

    .work-lp-why-choose-lst {
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .work-lp-why-choose-sec p br,
    .work-li-why-choose-itm::before {
        display: none;
    }

    .work-lp-why-choose-rit {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .work-lp-why-choose-rit .work-li-why-choose-itm {
        padding: 0;
        width: 100%;
        margin: 0 0 20px;
    }

    .work-lp-why-choose-img {
        width: 100%;
        max-width: 360px;
        margin: auto;
    }

    .work-lp-why-choose-sec .work-li-why-choose-itm p {
        font-size: 14px;
        text-align: center;
    }

    .work-lp-why-choose-lft .work-li-why-choose-itm {
        padding: 15px;
        width: 100%;
        max-width: 350px;
        text-align: center;
        border: 1px solid #d0a624;
    }

    .work-lp-why-choose-lft {
        width: 100%;
        justify-content: center;
        align-items: initial;
        gap: 10px;
    }


}

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

    .work-lp-why-choose-sec .text-heading {
        padding: 0;
    }

    .work-lp-why-choose-sec .text-heading::after {
        display: none;
    }

    .work-lp-why-choose-lst .sub-heading {
        font-size: 19px;
    }

}

@media screen and (max-width:480px) {
    .work-lp-why-choose-sec {
        padding: 20px 0 30px;
    }


}


/* end */

.work-lp-typwrk-total {
    background-image: url(images/work-lp-typwrk-total-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.work-lp-trujillo-sec {
    padding: 100px 0px 70px;
    position: relative;
}

.work-lp-trujillo-sec .container {
    max-width: 1500px;
    margin: auto;
}

.trujillo-block {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    gap: 100px;
}

.trujillo-upper-image {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 24px 15px;
    background-color: #06194c;
    border: 4px solid #f9fafa;
    width: 36%;
}

.trujillo-upper-image img {
    display: block;
    width: 100%;

}

.trujillo-lef-blk {
    width: 38.2%;
    padding-right: 40px;
    position: relative;
}

.trujillo-lef-image img {
    width: 100%;
    display: block;
}

.trujillo-rig-cont {
    width: 48.1%;
}

.trujillo-rig-cont p {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 17px;
    line-height: 1.64;
    letter-spacing: 0px;
    color: #06194c;
    margin-bottom: 20px;
}

.trujillo-rig-cont p:last-child {
    margin: 0px;
}


/*Responsive*/

@media screen and (max-width:1680px) {
    .work-lp-trujillo-sec .container {
        max-width: 1400px;
    }

    .work-lp-trujillo-sec {
        padding: 95px 0px 65px;
    }

    .trujillo-rig-cont p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .trujillo-block {
        gap: 86px;
    }

    .trujillo-lef-blk {
        padding-right: 35px;
    }

}

@media screen and (max-width: 1550px) {
    .work-lp-trujillo-sec .container {
        max-width: 1300px;
    }

    .trujillo-block {
        gap: 78px;
    }

    .trujillo-lef-blk {
        padding-right: 32px;
    }

    .trujillo-upper-image {
        padding: 20px 12px;
        border-width: 3px;
    }

    .trujillo-rig-cont p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .work-lp-trujillo-sec {
        padding: 85px 0px 55px;
    }

}

@media screen and (max-width: 1440px) {
    .work-lp-trujillo-sec .container {
        max-width: 1220px;
    }

    .trujillo-block {
        gap: 72px;
    }

    .trujillo-lef-blk {
        padding-right: 28px;
    }

    .trujillo-rig-cont {
        width: 51.1%;
    }

    .trujillo-rig-cont p {
        line-height: 1.54;
    }

    .work-lp-trujillo-sec {
        padding: 75px 0px 50px;
    }

}

@media screen and (max-width: 1366px) {
    .work-lp-trujillo-sec .container {
        max-width: 1140px;
    }

    .trujillo-block {
        gap: 65px;
    }

    .trujillo-lef-blk {
        padding-right: 24px;
    }

    .trujillo-rig-cont p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .trujillo-upper-image {
        padding: 18px 10px;
        border-width: 2px;
    }

    .work-lp-trujillo-sec {
        padding: 65px 0px 45px;
    }


}

@media screen and (max-width: 1280px) {
    .work-lp-trujillo-sec .container {
        max-width: 950px;
    }

    .trujillo-block {
        gap: 38px;
    }

    .trujillo-rig-cont p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .trujillo-lef-blk {
        padding-right: 22px;
        width: 42%;
    }

    .trujillo-rig-cont {
        width: 53.8%;
    }

    .trujillo-upper-image {
        padding: 16px 9px;
        bottom: 0px;
    }

    .work-lp-trujillo-sec {
        padding: 55px 0px 35px;
    }

}

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

    .trujillo-block {
        gap: 20px;
        flex-direction: column;
    }

    .trujillo-lef-blk {
        padding-right: 22px;
        width: 100%;
        max-width: 400px;
        margin: auto;
    }

    .trujillo-rig-cont {
        width: 100%;
        text-align: center;
    }

    .trujillo-upper-image {
        bottom: 0;
    }

    .trujillo-rig-cont p {
        font-size: 15px;
    }

    .work-lp-trujillo-sec {
        padding: 35px 0px 25px;
    }

}

@media screen and (max-width:768px) {
    .work-lp-trujillo-sec .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .work-lp-trujillo-sec {
        padding: 30px 0px 25px;
    }

    .trujillo-rig-cont p {
        font-size: 14px;
    }

}

@media screen and (max-width:480px) {
    .trujillo-upper-image {
        bottom: 0;
        width: 110px;
        padding: 14px 4px;
    }

    .trujillo-lef-blk {
        padding-right: 4px;
    }

}

/* work-lp-texas-sec */

.hm-work-lp-texas-work-iju-sec {
    padding: 117px 0px 60px;
    background-image: url('./images/workplace-injury-trujillo-sec-bg.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    background-color: #f9fafa;
}

.hm-work-lp-texas-work-iju-top-cont {
    display: flex;
    justify-content: space-between;
    margin: 0px 0px 70px;
    align-items: flex-start;
}

.hm-work-lp-texas-work-iju-top-cont .text-heading {
    margin-bottom: 19px;
    color: #c9a227;
}

.texas-work-iju-left-image {
    width: 38.6%;
    padding: 5px;
    border: 2px solid #c9a227;


}

.texas-work-iju-left-image img {
    display: block;
    width: 100%;
}

.texas-work-iju-right-cont {
    width: 54.5%;
}

.texas-work-iju-right-cont p:last-child {
    margin-bottom: 0px;

}

.texas-work-iju-right-cont p {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 17px;
    line-height: 1.64;
    letter-spacing: 0px;
    color: #333333;
    margin-bottom: 25px;

}

.texas-work-iju-list-cont li {
    padding-left: 20px;
    list-style: none;
    font-family: 'Lato';
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0px;
    color: #333333;
    margin-bottom: 25px;
    position: relative;

}

.texas-work-iju-list-cont li::before {
    position: absolute;
    background-color: #d0a624;
    content: '';
    width: 8px;
    height: 8px;
    left: 0px;
    top: 4px;
}

.hm-work-lp-texas-work-iju-btm-cont {
    display: flex;
    justify-content: space-between;
}

.hm-work-lp-texas-work-iju-btm-cont-lft {
    width: 57%;
}

.hm-work-lp-texas-work-iju-btm-cont-lft p {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 17px;
    line-height: 1.64;
    letter-spacing: 0px;
    color: #333333;
    margin-bottom: 25px;

}

.hm-work-lp-texas-work-iju-btm-cont-lft p:last-child {
    margin: 0px;
}

.texas-work-iju-rigth-image {
    width: 39.7%;
    padding: 5px;
    border: 2px solid #c9a227;
}

.texas-work-iju-rigth-image img {
    display: block;
    width: 100%;
}

.hm-work-lp-texas-work-iju-btm-cont .text-heading {
    padding-bottom: 49px;
    border-bottom: 1px solid #d0a624;
    margin-bottom: 30px;
    color: #c9a227;
}


/*Responsive*/

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

@media screen and (max-width: 1550px) {
    .texas-work-iju-right-cont p {
        font-size: 16px;
        line-height: 1.54;
        margin-bottom: 20px;
    }

    .texas-work-iju-list-cont li {
        padding-left: 18px;
        font-size: 16px;
    }

    .hm-work-lp-texas-work-iju-top-cont {
        margin: 0px 0px 60px;
    }

    .hm-work-lp-texas-work-iju-btm-cont .text-heading {
        padding-bottom: 38px;
        margin-bottom: 28px;
    }

    .hm-work-lp-texas-work-iju-sec {
        padding: 90px 0px 50px;
    }


}

@media screen and (max-width: 1440px) {
    .texas-work-iju-right-cont {
        width: 55.8%;
    }

    .texas-work-iju-right-cont p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .texas-work-iju-list-cont li {
        padding-left: 18px;
        font-size: 15px;
        margin-bottom: 23px;
    }

    .texas-work-iju-left-image {
        padding: 4px;
    }

    .hm-work-lp-texas-work-iju-top-cont {
        margin: 0px 0px 55px;
    }

    .hm-work-lp-texas-work-iju-btm-cont .text-heading {
        padding-bottom: 30px;
        margin-bottom: 26px;
    }

    .hm-work-lp-texas-work-iju-sec {
        padding: 75px 0px 45px;
    }

}

@media screen and (max-width: 1366px) {
    .texas-work-iju-right-cont p br {
        display: none;
    }

    .texas-work-iju-list-cont li {
        margin-bottom: 20px;
    }

    .hm-work-lp-texas-work-iju-top-cont {
        margin: 0px 0px 45px;
    }

    .hm-work-lp-texas-work-iju-btm-cont-lft p {
        font-size: 16px;
        line-height: 1.54;
        margin-bottom: 23px;
    }

    .hm-work-lp-texas-work-iju-sec {
        padding: 60px 0px 41px;
    }

}

@media screen and (max-width: 1280px) {
    .texas-work-iju-right-cont {
        width: 56.4%;
    }

    .texas-work-iju-right-cont p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .texas-work-iju-list-cont li {
        padding-left: 14px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .texas-work-iju-list-cont li::before {
        width: 7px;
        height: 7px;
        top: 3px;
    }

    .texas-work-iju-left-image,
    .texas-work-iju-rigth-image {
        padding: 3px;
    }

    .hm-work-lp-texas-work-iju-btm-cont .text-heading {
        padding-bottom: 24px;
        margin-bottom: 22px;
    }

    .hm-work-lp-texas-work-iju-btm-cont-lft p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hm-work-lp-texas-work-iju-top-cont .text-heading,
    .hm-work-lp-texas-work-iju-btm-cont .text-heading {
        font-size: 28px;
    }

    .hm-work-lp-texas-work-iju-sec {
        padding: 50px 0px 35px;
    }

}

@media screen and (max-width: 1024px) {
    .hm-work-lp-texas-work-iju-sec {
        padding: 35px 0px 0;
    }

    .hm-work-lp-texas-work-iju-top-cont {
        margin: 0px 0px 30px;
        flex-direction: column;
        gap: 20px;
    }

    .texas-work-iju-left-image,
    .texas-work-iju-rigth-image {
        padding: 2px;
        width: 100%;
        max-width: 350px;
        margin: auto;
    }

    .texas-work-iju-right-cont,
    .hm-work-lp-texas-work-iju-btm-cont-lft {
        width: 100%;
    }

    .hm-work-lp-texas-work-iju-btm-cont {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .texas-work-iju-right-cont p {
        font-size: 15px;
    }

    .texas-work-iju-list-cont li {
        font-size: 15px;
    }

    .hm-work-lp-texas-work-iju-btm-cont-lft p {
        font-size: 15px;
    }

    .hm-work-lp-texas-work-iju-btm-cont .text-heading {
        padding-bottom: 15px;
        margin-bottom: 18px;
    }

    .texas-work-iju-list-cont li::before {
        top: 4px;
    }

}

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

    .hm-work-lp-texas-work-iju-top-cont .text-heading,
    .hm-work-lp-texas-work-iju-btm-cont .text-heading {
        font-size: 25px;
    }

    .hm-work-lp-texas-work-iju-top-cont .text-heading {
        margin-bottom: 15px;
    }



}

@media screen and (max-width:480px) {
    .hm-work-lp-texas-work-iju-sec {
        padding: 30px 0px 0;
    }

    .hm-work-lp-texas-work-iju-top-cont .text-heading,
    .hm-work-lp-texas-work-iju-btm-cont .text-heading {
        font-size: 23px;
    }

}






/* end */




/* work-lp-typework */

/* why texas section */

.work-lp-why-texas-sec .container {
    max-width: 1500px;
}

.work-lp-why-texas-sec {
    padding: 80px 0 85px;
    background-image: url(images/why-texas-bg-img.webp);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
    width: 100%;
}

.work-lp-why-texas-blk {
    margin: 0 0 0 auto;
    padding: 0 145px 0 0;
    width: 51.3%;
}

.work-lp-why-texas-sec .text-heading {
    line-height: 1.1;
}

.sec-cnt,
.mid-cnt {
    margin: 0 0 25px !important;
}

.work-lp-why-texas-cnt {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0 0 15px;

}


/*Responsive*/

@media screen and (max-width:1680px) {
    .work-lp-why-texas-sec .container {
        max-width: 1400px;
    }

    .work-lp-why-texas-cnt {
        font-size: 16px;
        line-height: 1.5;
        margin: 0 0 14px;
    }

    .work-lp-why-texas-blk {
        padding: 0 110px 0 0;
    }

    .work-lp-why-texas-sec {
        padding: 75px 0 80px;
    }

}

@media screen and (max-width: 1550px) {
    .work-lp-why-texas-sec .container {
        max-width: 1300px;
    }

    .work-lp-why-texas-blk {
        padding: 0 72px 0 0;
    }

    .work-lp-why-texas-cnt {
        font-size: 16px;
    }

    .work-lp-why-texas-sec {
        padding: 65px 0 60px;
    }

}

@media screen and (max-width: 1440px) {
    .work-lp-why-texas-sec .container {
        max-width: 1220px;
    }

    .work-lp-why-texas-blk {
        padding: 0 32px 0 0;
    }

    .work-lp-why-texas-cnt {
        font-size: 15px;
        margin: 0 0 13px;
    }

}

@media screen and (max-width: 1366px) {
    .work-lp-why-texas-sec .container {
        max-width: 1140px;
    }

    .work-lp-why-texas-blk {
        padding: 0 22px 0 0;
    }

    .work-lp-why-texas-sec {
        padding: 60px 0 55px;
    }

}

@media screen and (max-width: 1280px) {
    .work-lp-why-texas-sec .container {
        max-width: 950px;
    }

    .work-lp-why-texas-sec .text-heading {
        font-size: 28px;
    }

    .work-lp-why-texas-cnt {
        font-size: 14px;
        margin: 0 0 12px;
    }

    .work-lp-why-texas-sec {
        padding: 50px 0 45px;
        background-position: center;
    }

}

@media screen and (max-width: 1024px) {
    .work-lp-why-texas-sec .container {
        max-width: 720px;
    }

    .work-lp-why-texas-blk {
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .work-lp-why-texas-sec {
        padding: 35px 0 30px;
        background-position: left center;
        position: relative;
        z-index: 1;
    }

    .work-lp-why-texas-sec:before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: #081a44;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        opacity: 65%;
        z-index: -1;
    }

    .work-lp-why-texas-sec .text-heading br {
        display: none;
    }

    .sec-cnt,
    .mid-cnt {
        margin: 0 0 18px !important;
    }

    .work-lp-why-texas-cnt {
        font-size: 15px;
    }

    .work-lp-why-texas-sec .text-heading {
        font-size: 25px;
    }

    .sec-cnt,
    .mid-cnt {
        margin: 0 0 15px !important;
    }

}

@media screen and (max-width:768px) {
    .work-lp-why-texas-sec .container {
        max-width: 100%;
        padding: 0 15px;
    }


}

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


/* type of work section */

.work-lp-typwrk-sec {
    padding: 45px 0 90px;
    background-color: #f9fafa;
}

.work-lp-typwrk-sec .text-heading {
    text-align: center;
    margin: 0 0 10px;
}

.work-lp-typwrk-cnt {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #181818;
    margin: 0 auto 40px;
    text-align: center;
    width: 65.6%;
}

.work-lp-typwrk-lst {
    display: flex;
    justify-content: space-between;
    margin: 0 0 45px;
}

.work-lp-typwrk-itm {
    position: relative;
    width: 16%;
    padding: 50px 16px 60px;
    background-color: #f6f8ff;
    box-shadow: inset 0px 0px 21px 0px rgba(47, 46, 46, 0.05);
    z-index: 1;
}

.work-lp-typwrk-itm::before,
.work-lp-typwrk-itm::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 73px;
    z-index: -1;
}

.work-lp-typwrk-itm::before {
    right: 0;
    top: 0;
    border-top: 3px solid #092d8d;
    border-right: 3px solid #092d8d;
}

.work-lp-typwrk-itm::after {
    border-bottom: 3px solid #092d8d;
    border-left: 3px solid #092d8d;
    bottom: 0;
    left: 0;
}

.work-lp-typwrk-img {
    width: 47%;
    background-color: #d0a624;
    border-radius: 50%;
    padding: 20px;
    margin: 0 auto 20px;
}

.work-lp-typwrk-itm:hover .work-lp-typwrk-img {
    background-color: #06194c;
}

.work-lp-typwrk-img img {
    width: 100%;
    display: block;
}

.work-lp-typwrk-itm-cnt {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0;
    color: #181818;
    text-align: center;
}

.work-lp-typwrk-sec .btm-cnt {
    width: 70%;
    margin: 0 auto 0;
}

.work-lp-typwrk-sec .container {
    max-width: 1500px;
}


/*Responsive*/

@media screen and (max-width:1680px) {
    .work-lp-typwrk-sec .container {
        max-width: 1400px;
    }

    .work-lp-typwrk-sec {
        padding: 40px 0 80px;
    }

    .text-heading {
        font-size: 37px;
        margin: 0 0 22px;
    }

    .work-lp-typwrk-cnt {
        font-size: 16px;
        margin: 0 auto 36px;
    }

    .work-lp-typwrk-itm {
        padding: 45px 15px 50px;
    }

    .work-lp-typwrk-itm-cnt {
        font-size: 18px;
    }

    .work-lp-typwrk-img {
        padding: 18px;
        margin: 0 auto 18px;
    }

    .work-lp-typwrk-itm::before,
    .work-lp-typwrk-itm::after {
        width: 63px;
        height: 65px;
    }

    .work-lp-typwrk-lst {
        margin: 0 0 40px;
    }

}

@media screen and (max-width: 1550px) {
    .work-lp-typwrk-sec .container {
        max-width: 1300px;
    }

    .work-lp-typwrk-sec {
        padding: 35px 0 70px;
    }

    .text-heading {
        font-size: 35px;
        margin: 0 0 20px;
    }

    .work-lp-typwrk-cnt {
        margin: 0 auto 32px;
    }

    .work-lp-typwrk-itm {
        padding: 38px 15px 40px;
    }

    .work-lp-typwrk-img {
        padding: 17px;
        margin: 0 auto 16px;
        width: 46%;
    }

    .work-lp-typwrk-itm-cnt {
        font-size: 16px;
    }

    .work-lp-typwrk-itm::before,
    .work-lp-typwrk-itm::after {
        width: 58px;
        height: 61px;
        border-width: 2px;
    }

    .work-lp-typwrk-lst {
        margin: 0 0 35px;
    }

}

@media screen and (max-width: 1440px) {
    .work-lp-typwrk-sec .container {
        max-width: 1220px;
    }


}

@media screen and (max-width: 1366px) {
    .work-lp-typwrk-sec .container {
        max-width: 1140px;
    }

    .work-lp-typwrk-sec {
        padding: 30px 0 65px;
    }

    .text-heading {
        font-size: 32px;
        margin: 0 0 18px;
    }

    .work-lp-typwrk-cnt {
        margin: 0 auto 28px;
        font-size: 15px;
    }

    .work-lp-typwrk-itm {
        padding: 34px 14px 35px;
    }

    .work-lp-typwrk-img {
        padding: 15px;
        margin: 0 auto 15px;
    }

    .work-lp-typwrk-itm-cnt {
        font-size: 14px;
    }

    .work-lp-typwrk-itm::before,
    .work-lp-typwrk-itm::after {
        width: 55px;
        height: 58px;
    }

    .work-lp-typwrk-lst {
        margin: 0 0 30px;
    }

}

@media screen and (max-width: 1280px) {
    .work-lp-typwrk-sec .container {
        max-width: 950px;
    }

    .work-lp-typwrk-sec {
        padding: 25px 0 55px;
    }

    .text-heading {
        font-size: 30px;
        margin: 0 0 16px;
    }

    .work-lp-typwrk-cnt {
        margin: 0 auto 24px;
        font-size: 14px;
        width: 69.6%;
    }

    .work-lp-typwrk-itm {
        padding: 28px 13px 30px;
        width: 16.3%;
    }

    .work-lp-typwrk-img {
        padding: 12px;
        width: 47%;
        margin: 0 auto 13px;
    }

    .work-lp-typwrk-itm-cnt {
        font-size: 12px;
    }

    .work-lp-typwrk-lst {
        margin: 0 0 25px;
    }

    .work-lp-typwrk-sec .btm-cnt {
        width: 77%;
    }

}

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

    .text-heading {
        font-size: 28px;
        margin: 0 0 15px;
    }

    .work-lp-typwrk-cnt {
        margin: 0 auto 20px;
        width: 100%;
    }

    .work-lp-typwrk-itm {
        padding: 28px 18px 30px;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .work-lp-typwrk-img {
        width: 80px;
        margin: 0 auto 14px;
    }

    .work-lp-typwrk-itm-cnt {
        font-size: 15px;
    }

    .work-lp-typwrk-lst.owl-carousel .owl-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        margin: 20px 0 0;
    }

    .work-lp-typwrk-lst.owl-carousel .owl-dots button.owl-dot {
        width: 10px;
        height: 10px;
        background: #092d8d;
        border-radius: 10px;
    }

    .work-lp-typwrk-lst.owl-carousel .owl-dots button.owl-dot.active {
        width: 13px;
        height: 13px;
        background: #d0a624;
    }

    .work-lp-typwrk-sec .btm-cnt {
        width: 100%;
        font-size: 15px;
    }

    .work-lp-typwrk-lst {
        margin: 0 0 20px;
    }

    .work-lp-typwrk-sec {
        padding: 20px 0 35px;
    }


}

@media screen and (max-width:768px) {
    .work-lp-typwrk-sec .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .work-lp-typwrk-sec {
        padding: 20px 0 30px;
    }

    .text-heading {
        font-size: 26px;
    }

    .work-lp-typwrk-sec .btm-cnt {
        font-size: 14px;
    }

}

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


/* /////////////////////////////// */

.workplace-lp-testimonials {
    padding: 50px 0 0;
    margin-bottom: -480px;
    position: relative;
    z-index: 1;
}

.workplace-lp-testimonials .text-heading,
.work-lp-injury-sec .text-heading {
    text-align: center;
    position: relative;
}

.workplace-lp-testi-item {
    width: 100%;
    padding: 45px 31px 90px 31px;
    background-color: #06194c;
    position: relative;
    border-bottom: 3px solid #c9a227;
}

.workplace-lp-star-rat {
    background: url(images/testi-stars.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 134px;
    height: 22px;
    margin: 0 auto 24px;
}

.workplace-lp-testi-item p {
    font-size: 17px;
    font-family: 'Lato';
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    margin: 0 0 15px;
}

.workplace-lp-testi-item .workplace-lp-author {
    position: absolute;
    bottom: 55px;
    right: 0;
    left: 0;
    font-size: 25px;
    font-family: 'Lato';
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item {
    background-image: -webkit-linear-gradient(90deg, rgb(25, 52, 124) 0%, rgba(25, 52, 124, 0.01) 99%, rgb(25, 52, 124) 100%);
    padding-bottom: 130px;
}

.workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item .workplace-lp-author {
    bottom: 95px;
}

.workplace-lp-testi-blk.owl-carousel .owl-dots .owl-dot {
    background-color: #06194c;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    margin: 0 3px;
}

.workplace-lp-testi-blk.owl-carousel .owl-dots .owl-dot.active {
    background-color: #c9a227;
}

.workplace-lp-testi-blk.owl-carousel .owl-dots {
    text-align: center;
    margin: 30px 0 0;
}

/*Responsive*/

@media screen and (max-width:1680px) {
    .workplace-lp-testimonials {
        margin-bottom: -430px;
    }


}

@media screen and (max-width: 1550px) {
    .workplace-lp-testi-item {
        padding: 38px 28px 80px;
    }

    .workplace-lp-star-rat {
        width: 126px;
        height: 22px;
        margin: 0 auto 20px;
    }

    .workplace-lp-testi-item p {
        font-size: 16px;
        line-height: 1.6;
    }

    .workplace-lp-testi-item .workplace-lp-author {
        bottom: 54px;
        font-size: 22px;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item {
        padding-bottom: 120px;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item .workplace-lp-author {
        bottom: 88px;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-dots {
        margin: 25px 0 0;
    }

    .workplace-lp-testimonials {
        margin-bottom: -400px;
        padding: 45px 0 0;
    }

}

@media screen and (max-width: 1440px) {
    .workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item {
        padding-bottom: 115px;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item .workplace-lp-author {
        bottom: 85px;
    }

    .workplace-lp-testimonials {
        margin-bottom: -375px;
    }

}

@media screen and (max-width: 1366px) {
    .workplace-lp-testi-item {
        padding: 33px 23px 70px;
    }

    .workplace-lp-star-rat {
        width: 118px;
        height: 19px;
        margin: 0 auto 18px;
    }

    .workplace-lp-testi-item p {
        font-size: 15px;
        line-height: 1.5;
        margin: 0 0 14px;
    }

    .workplace-lp-testi-item .workplace-lp-author {
        bottom: 45px;
        font-size: 20px;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item {
        padding-bottom: 100px;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item .workplace-lp-author {
        bottom: 75px;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-dots {
        margin: 20px 0 0;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-dots .owl-dot {
        height: 11px;
        width: 11px;
        margin: 0 2px;
    }

    .workplace-lp-testimonials {
        margin-bottom: -352px;
        padding: 40px 0 0;
    }


}

@media screen and (max-width: 1280px) {
    .workplace-lp-testi-item {
        padding: 28px 20px 60px;
    }

    .workplace-lp-testi-item p {
        font-size: 15px;
    }

    .workplace-lp-testi-item .workplace-lp-author {
        bottom: 38px;
        font-size: 18px;
    }

    .workplace-lp-star-rat {
        width: 105px;
        height: 17px;
        margin: 0 auto 16px;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item {
        padding-bottom: 86px;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item .workplace-lp-author {
        bottom: 62px;
    }

    .workplace-lp-testimonials {
        margin-bottom: -280px;
        padding: 35px 0 0;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-dots {
        margin: 18px 0 0;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-dots .owl-dot {
        height: 10px;
        width: 10px;
    }

}

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

    .workplace-lp-testi-item,
    .workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item {
        padding: 25px 18px 54px;
        width: 100%;
        max-width: 450px;
        margin: auto;
    }

    .workplace-lp-testi-item p {
        font-size: 15px;
        line-height: 1.4;
    }

    .workplace-lp-testi-item .workplace-lp-author,
    .workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item .workplace-lp-author {
        bottom: 32px;
        font-size: 18px;
    }

    .workplace-lp-testi-blk.owl-carousel .owl-dots {
        margin: 15px 0 0;
    }

    .workplace-lp-testimonials {
        margin-bottom: 0;
        padding: 30px 0;
    }

}

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

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

    .workplace-lp-testi-item,
    .workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item {
        padding: 22px 16px 48px;
    }

    .workplace-lp-testi-item .workplace-lp-author,
    .workplace-lp-testi-blk.owl-carousel .owl-item.center .workplace-lp-testi-item .workplace-lp-author {
        bottom: 28px;
        font-size: 17px;
    }

}



/* injury-section */


.work-lp-injury-sec {
    position: relative;
}

.work-lp-injury-cnt {
    position: absolute;
    bottom: 130px;
    right: 0;
    left: 0;
    margin: 0;
}

.work-lp-injury-sec p {
    font-size: 17px;
    font-family: 'Lato';
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.work-lp-inj-btm {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

.work-lp-contact {
    padding-left: 90px;
    position: relative;
}

.work-lp-contact a::before {
    content: "";
    position: absolute;
    background: url(images/telephone-call.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 37px;
    height: 37px;
    left: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}

.work-lp-contact a::after {
    content: "";
    position: absolute;
    background-color: #06194c;
    background-repeat: no-repeat;
    width: 71px;
    height: 65px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.work-lp-injury-sec .work-lp-contact p {
    font-size: 20px;
    font-family: 'Frank Ruhl Libre';
    font-weight: 400;
    line-height: 1;
    text-align: start;
    letter-spacing: 0;
    color: #c9a227;
    margin: 0;
}

.work-lp-contact a {
    font-size: 33px;
    font-family: 'Lato';
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    display: block;
    text-decoration: none;
}

.work-lp-contact a:hover {
    color: #c9a227;
}

.workplace-lp-testimonials:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(249, 250, 250, 1) 0%, rgba(249, 250, 250, 0.15) 50%, rgba(249, 250, 250, 0) 100%);
    background-size: cover;
    background-position: top center;
    pointer-events: none;
    top: 0;
    left: 0;
}




/*Responsive*/

@media screen and (max-width:1680px) {
    .work-lp-contact a::before {
        width: 32px;
        height: 32px;
    }

    .work-lp-injury-sec p {
        line-height: 1.5;
        margin-bottom: 35px;
    }

    .work-lp-contact a::after {
        width: 64px;
        height: 59px;
    }

    .work-lp-contact {
        padding-left: 80px;
    }

    .work-lp-injury-sec .work-lp-contact p {
        font-size: 18px;
    }

    .work-lp-contact a {
        font-size: 30px;
    }

    .work-lp-inj-btm {
        gap: 40px;
    }

    .work-lp-injury-cnt {
        bottom: 110px;
    }

}

@media screen and (max-width: 1550px) {
    .work-lp-injury-sec p {
        margin-bottom: 30px;
        font-size: 16px;
    }

    .work-lp-contact a::after {
        width: 60px;
        height: 56px;
    }

    .work-lp-contact a::before {
        width: 29px;
        height: 29px;
    }

    .work-lp-contact {
        padding-left: 75px;
    }

    .work-lp-injury-sec .work-lp-contact p {
        font-size: 17px;
    }

    .work-lp-contact a {
        font-size: 28px;
    }

    .work-lp-inj-btm {
        gap: 34px;
    }

    .work-lp-injury-cnt {
        bottom: 95px;
    }


}

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

@media screen and (max-width: 1366px) {
    .work-lp-injury-sec p {
        margin-bottom: 26px;
    }

    .work-lp-contact a::after {
        width: 57px;
        height: 53px;
    }

    .work-lp-contact a::before {
        width: 27px;
        height: 27px;
        left: 14px;
    }

    .work-lp-contact {
        padding-left: 71px;
    }

    .work-lp-inj-btm {
        gap: 30px;
    }

}

@media screen and (max-width: 1280px) {
    .work-lp-injury-sec p {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.4;
        letter-spacing: -0.1px;
    }

    .work-lp-contact a::after {
        width: 54px;
        height: 48px;
    }

    .work-lp-contact a::before {
        width: 25px;
        height: 25px;
    }

    .work-lp-contact {
        padding-left: 66px;
    }

    .work-lp-injury-sec .work-lp-contact p {
        font-size: 16px;
    }

    .work-lp-contact a {
        font-size: 26px;
    }

    .work-lp-inj-btm {
        gap: 26px;
    }

    .work-lp-injury-cnt {
        bottom: 75px;
    }

}

@media screen and (max-width: 1024px) {
    .work-lp-injury-cnt {
        bottom: auto;
        top: 0;
        background-color: #081c52;
        padding: 35px 0;
        position: inherit;
        background-image: -webkit-linear-gradient(90deg, rgb(25, 52, 124) 0%, rgba(25, 52, 124, 0.01) 99%, rgb(25, 52, 124) 100%);
    }

    .work-lp-injury-sec p {
        margin-bottom: 20px;
    }

    .work-lp-inj-btm {
        gap: 15px;
        flex-wrap: wrap-reverse;
    }

    .work-lp-injury-sec .text-heading br {
        display: none;
    }

    .work-lp-injury-sec .widget {
        display: flex;
        flex-direction: column-reverse;
    }

    .work-lp-injury-bg img {
        width: 100%;
        display: block;
        height: 430px;
        object-fit: cover;
        object-position: bottom center;
    }

}

@media screen and (max-width:768px) {
    .work-lp-injury-bg img {
        height: 380px;
    }

}

@media screen and (max-width: 680px) {
    .work-lp-injury-bg img {
        height: 340px;
    }

}

@media screen and (max-width:580px) {
    .work-lp-injury-bg img {
        height: 290px;
    }

}

@media screen and (max-width:480px) {
    .work-lp-contact a::after {
        width: 50px;
        height: 44px;
    }

    .text-heading {
        font-size: 25px;
    }

    .work-lp-contact a::before {
        width: 23px;
        height: 23px;
        left: 13px;
    }

    .work-lp-contact {
        padding-left: 62px;
    }

    .work-lp-injury-bg img {
        height: 240px;
    }

}


/* testimonials end */


/* footer section */

.work-lp-ftr-sec .container {
    max-width: 1500px;
}

.work-lp-ftr-sec {
    padding: 100px 0 30px;
    background-image: url(images/footer-bg-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
}

.work-lp-ftr-sec::before {
    content: "";
    position: absolute;
    background-image: url(images/footer-bfr-image.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    width: 27.6%;
    height: 74.4%;
    bottom: 0;
    right: 0px;
    opacity: 5%;
    pointer-events: none;
}

.work-lp-ftr-lst {
    display: flex;
    justify-content: space-between;
    padding: 0 0 25px 110px;
}

.work-lp-ftr-lft {
    width: 48%;
}

.work-lp-ftr-rgt {
    width: 46.8%;
    padding: 40px 40px 60px;
    background-color: #ffffff;
}

.work-lp-ftr-rgt .text-heading {
    text-align: center;
    margin: 0 0 5px;
    color: #c9a227;
    text-transform: capitalize;
}

.work-lp-ftr-rgt p {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    color: #898989;
    text-align: center;
    margin: 0 0 30px;
}

.work-lp-ftr-logo-lst {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 45px;
    padding: 0 0 0 60px;
}

.work-lp-ftr-logo-lft img {
    display: block;
    width: 100%;
}

.work-lp-ftr-logo-rgt {
    width: 60%;
    padding: 0 0 0 85px;
    position: relative;
}

.work-lp-ftr-logo-rgt a::before {
    content: "";
    position: absolute;
    background-image: url(images/footer-call-logo.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 71px;
    height: 65px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.work-lp-logo-title {
    font-family: 'Frank Ruhl Libre';
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
    color: #c9a227;
}

.work-lp-logo-cnt a {
    font-family: 'Lato';
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0;
    color: #f9f9f9;
    text-decoration: none;
}

.work-lp-logo-cnt a:hover {
    color: #c9a227;
}

.work-lp-ftr-form .gform_wrapper .gfield input.large,
.work-lp-ftr-form .gform_wrapper .gfield textarea.large {
    background-color: #e5e5e5 !important;
    font-family: 'Lato' !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    color: #090909 !important;
    padding: 20px 25px !important;
    border: 0;
    outline: 0;
    margin: 0;
    height: auto;
    box-shadow: none;
}

.work-lp-ftr-form .gform_wrapper .gfield {
    position: relative;
}

.work-lp-ftr-form .gform_wrapper .gfield.leave-blank {
    display: none;
}

.work-lp-ftr-form .gform_wrapper .gfield .validation_message.gfield_validation_message,
.work-lp-ftr-form .gform_wrapper .gfield .instruction.validation_message {
    position: absolute;
    top: 4px;
    font-family: 'Lato' !important;
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
    color: #ff0000;
    pointer-events: none;
}

.work-lp-ftr-form .gform_wrapper .gfield .instruction.validation_message {
    bottom: 8px;
    top: inherit !important;
}

.work-lp-ftr-form .gform_wrapper .gform_fields {
    gap: 8px;
}

.work-lp-ftr-form .gform_wrapper .gfield textarea {
    height: 110px !important;
    resize: none;
    margin: 0 0 10px !important;
}

.work-lp-ftr-form .gform_wrapper .form-links a,
.work-lp-ftr-form .gform_wrapper .form-links,
.work-lp-ftr-form .gfield-choice-input+label {
    font-family: 'Lato' !important;
    font-weight: 400;
    font-size: 16px !important;
    line-height: 1;
    letter-spacing: 0;
    color: #090909 !important;
    margin: 0;
}

.work-lp-ftr-form .gform_wrapper .form-links a:hover {
    color: #c9a227 !important;
}

.work-lp-ftr-form .gform_wrapper .top_label .gchoice .gfield-choice-input {
    margin: 3px 8px 0px 0px !important;
    width: 12px !important;
    height: 12px !important;
    background-color: #06194c !important;
    border-radius: 0px !important;
}

.work-lp-ftr-form .gform_wrapper .gform_footer input {
    font-size: 20px !important;
    font-family: 'Lato' !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-align: center;
    color: #ffffff !important;
    text-transform: uppercase !important;
    padding: 22px 80px !important;
    background-color: #c9a227 !important;
    display: inline-block;
    text-decoration: none;
    border-radius: 0px !important;
    border: 0 !important;
    outline: 0 !important;
}

.work-lp-ftr-form .gform_wrapper .gform_footer input:hover {
    background-color: #06194c !important;
}

.work-lp-ftr-form .gform_wrapper .gform_footer {
    padding: 0 !important;
    margin: 30px 0 0 !important;
    display: flex;
    justify-content: center;
}

.work-lp-ftr-form .gform-theme--framework .gform_validation_errors {
    display: none;
}

.work-lp-ftr-form .gform-theme--framework .gfield--type-choice .gchoice {
    display: inline-grid;
    text-align: right;
    justify-content: flex-end;
}

.work-lp-ftr-itm-lst {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 60px;
}

.work-lp-ftr-itm {
    width: 50%;
    text-align: center;
    padding: 20px 42px 10px;
}
.lp-fter-translate {
    text-align: center;
    margin-top: 30px;
}

.work-lp-ftr-itm-title {
    font-family: 'Frank Ruhl Libre';
    font-weight: 400;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0;
    color: #c9a227;
    margin: 0 0 5px;

}

.work-lp-ftr-itm-txt {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #ffffff;
    text-align: center;
    margin: 0px;
}

.work-lp-ftr-itm-btn a {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    color: #c9a227;
    text-align: center;
    margin: 0;
    text-transform: capitalize;
    text-decoration: underline;

}

.work-lp-ftr-itm-btn a:hover {
    color: #fff;
}

.ftr-first-item {
    padding-left: 0;
    border-right: 1px solid;
    border-color: rgba(255, 255, 255, 0.2);
}

.work-lp-ftr-rgt .gform-theme--framework .gfield--type-choice .gfield_checkbox {
    display: block !important;
}

.work-lp-ftr-cpyrghts {
    padding: 30px 0 0;
}

.work-lp-ftr-cpyrghts p {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #ffffff;
    text-align: center;
}

.work-lp-ftr-cpyrghts-lst,
.copyrightmenu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.work-lp-ftr-fb-img img {
    width: 100%;
    display: block;
}

.work-lp-ftr-cpyrghts p.copy-para {
    margin: 0;
    color: #fff;
}

.ftr-logo {
    width: 174px;
}

.work-lp-ftr-fb-img {
    width: 1%;
    position: relative;
    margin: auto;
}


.work-lp-ftr-social-icons {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.work-lp-ftr-social-icons::before,
.work-lp-ftr-social-icons::after {
    content: "";
    position: absolute;
    background-color: #384770;
    width: 48%;
    height: 1px;
    bottom: 15px;
}

.work-lp-ftr-social-icons::before {
    left: 0px;
}

.work-lp-ftr-social-icons::after {
    right: 0px;
}

.work-lp-ftr-social-icons a {
    background-image: url(images/ftr-fb-img.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 30px;
    font-size: 0;

}

.work-lp-ftr-social-icons a:hover {
    background-image: url(images/ftr-fb-img-hvr.webp);
}

.form-list {
    margin: 0 0 20px;
}

.form-list ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 8px;
    gap: 8px;
}

.form-list ul li {
    width: 49%;
}

.form-list ul li input {
    padding: 20px 25px;
    width: 100%;
    background-color: #e5e5e5;
    border: none;
}

.form-list ul li input::placeholder,
.form-list ul textarea::placeholder {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    color: #090909;
}

.form-list ul textarea {
    width: 100%;
    padding: 18px 20px 10px;
    background-color: #e5e5e5;
    border: none;
}

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

.policy p,
.policy p a {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    color: #090909;
    text-decoration: none;

}

.form-btn {
    text-align: center;

}

.form-btn a.cmn-btn {
    font-family: 'Lato';
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    padding: 23px 70px;
    background-color: #c9a227;
    display: inline-block;
    text-decoration: none;
}

.form-btn a.cmn-btn:hover {
    background-color: #06194c;
}


/*Responsive*/

@media screen and (max-width:1680px) {
    .work-lp-ftr-sec .container {
        max-width: 1400px;
    }

    .work-lp-ftr-sec {
        padding: 85px 0 30px;
    }

    .work-lp-ftr-logo-lst {
        margin: 0 0 36px;
        padding: 0 0 0 54px;
    }

    .work-lp-ftr-logo-rgt a::before {
        left: -3px;
        transform: scale(0.9);
    }

    .work-lp-logo-title {
        font-size: 27px;
        margin: 0 0 -2px;
    }

    .work-lp-logo-cnt a {
        font-size: 37px;
    }

    .work-lp-ftr-logo-rgt {
        padding: 0 0 0 80px;
    }

    .work-lp-ftr-itm {
        padding: 18px 38px 10px;
    }

    .work-lp-ftr-lst {
        padding: 0 0 23px 90px;
    }

    .work-lp-ftr-itm-title {
        font-size: 31px;
    }

    .work-lp-ftr-itm-txt {
        font-size: 16px;
        margin: 0 0 14px;
    }

    .work-lp-ftr-itm-lst {
        row-gap: 54px;
    }

    .work-lp-ftr-rgt {
        padding: 35px 36px 52px;
    }

    .work-lp-ftr-rgt p {
        margin: 0 0 27px;
    }

    .work-lp-ftr-form .gform_wrapper .gfield input.large,
    .work-lp-ftr-form .gform_wrapper .gfield textarea.large {
        font-size: 15px !important;
        padding: 19px 21px !important;
    }

    .work-lp-ftr-form .gform_wrapper .gform_fields {
        grid-row-gap: 14px;
    }

    .work-lp-ftr-form .gform_wrapper .gform_footer input {
        font-size: 18px !important;
        padding: 20px 70px !important;
    }

    .work-lp-ftr-cpyrghts {
        padding: 28px 0 0;
    }

    .work-lp-ftr-cpyrghts p {
        font-size: 17px;
    }

}

@media screen and (max-width: 1550px) {
    .work-lp-ftr-sec .container {
        max-width: 1300px;
    }

    .work-lp-ftr-sec {
        padding: 70px 0 26px;
    }

    .work-lp-ftr-lst {
        padding: 0 0 20px 55px;
    }

    .ftr-logo {
        width: 162px;
    }

    .work-lp-ftr-logo-rgt a::before {
        left: -5px;
        transform: scale(0.85);
    }

    .work-lp-ftr-logo-rgt {
        padding: 0 0 0 77px;
    }

    .work-lp-logo-title {
        font-size: 24px;
    }

    .work-lp-logo-cnt a {
        font-size: 34px;
    }

    .work-lp-ftr-logo-lst {
        margin: 0 0 32px;
        padding: 0 0 0 55px;
    }

    .work-lp-ftr-itm {
        padding: 16px 34px 10px;
    }

    .work-lp-ftr-itm-title {
        font-size: 28px;
    }

    .work-lp-ftr-itm-txt {
        font-size: 15px;
        margin: 0 0 12px;
    }

    .work-lp-ftr-itm-btn a {
        font-size: 15px;
    }

    .work-lp-ftr-itm-lst {
        row-gap: 48px;
    }

    .work-lp-ftr-rgt {
        padding: 30px 32px 48px;
    }

    .work-lp-ftr-rgt p {
        margin: 0 0 24px;
    }

    .work-lp-ftr-form .gform_wrapper .gfield input.large,
    .work-lp-ftr-form .gform_wrapper .gfield textarea.large {
        font-size: 14px !important;
        padding: 18px 19px !important;
    }

    .work-lp-ftr-form .gform_wrapper .gform_fields {
        grid-row-gap: 12px;
    }

    .work-lp-ftr-form .gform_wrapper .gfield textarea {
        height: 100px !important;
    }

    .work-lp-ftr-form .gform_wrapper .form-links a,
    .work-lp-ftr-form .gform_wrapper .form-links,
    .work-lp-ftr-form .gfield-choice-input+label {
        font-size: 15px !important;
    }

    .work-lp-ftr-form .gform_wrapper .gform_footer input {
        font-size: 17px !important;
        padding: 18px 60px !important;
    }

    .work-lp-ftr-form .gform_wrapper .gform_footer {
        margin: 26px 0 0 !important;
    }

    .work-lp-ftr-social-icons a {
        width: 14px;
        height: 28px;
    }

    .work-lp-ftr-cpyrghts {
        padding: 25px 0 0;
    }

    .work-lp-ftr-cpyrghts p {
        font-size: 16px;
    }

    .work-lp-ftr-form .gform_wrapper .gfield .validation_message.gfield_validation_message,
    .work-lp-ftr-form .gform_wrapper .gfield .instruction.validation_message {
        font-size: 12px;
    }

    .work-lp-ftr-form .gform_wrapper .top_label .gchoice .gfield-choice-input {
        margin: 2px 8px 0px 0px !important;
    }

}

@media screen and (max-width: 1440px) {
    .work-lp-ftr-sec .container {
        max-width: 1220px;
    }


}

@media screen and (max-width: 1366px) {
    .work-lp-ftr-sec .container {
        max-width: 1140px;
    }

    .work-lp-ftr-sec {
        padding: 60px 0 24px;
    }

    .work-lp-ftr-logo-lst {
        margin: 0 0 28px;
        padding: 0 0 0 48px;
    }

    .work-lp-ftr-logo-rgt a::before {
        left: -8px;
        transform: scale(0.75);
    }

    .work-lp-ftr-logo-rgt {
        padding: 0 0 0 70px;
    }

    .work-lp-logo-title {
        font-size: 21px;
    }

    .work-lp-logo-cnt a {
        font-size: 31px;
    }

    .work-lp-ftr-itm {
        padding: 15px 28px 10px;
    }

    .work-lp-ftr-itm-txt {
        font-size: 14px;
        margin: 0 0 10px;
    }

    .work-lp-ftr-itm-lst {
        row-gap: 44px;
    }

    .work-lp-ftr-rgt {
        padding: 28px 30px 40px;
    }

    .work-lp-ftr-rgt p {
        margin: 0 0 20px;
        font-size: 14px;
    }

    .work-lp-ftr-form .gform_wrapper .gfield input.large,
    .work-lp-ftr-form .gform_wrapper .gfield textarea.large {
        font-size: 14px !important;
        padding: 17px 17px !important;
    }

    .work-lp-ftr-form .gform_wrapper .gfield textarea {
        height: 95px !important;
    }

    .work-lp-ftr-form .gform_wrapper .form-links a,
    .work-lp-ftr-form .gform_wrapper .form-links,
    .work-lp-ftr-form .gfield-choice-input+label {
        font-size: 14px !important;
    }

    .work-lp-ftr-form .gform_wrapper .gform_footer input {
        font-size: 16px !important;
        padding: 17px 50px !important;
    }

    .work-lp-ftr-social-icons a {
        width: 12px;
        height: 25px;
    }

    .work-lp-ftr-cpyrghts-lst,
    .copyrightmenu {
        gap: 18px;
    }

    .work-lp-ftr-form .formpopuptext {
        font-size: 13px;
        line-height: 1.4;
    }

    .work-lp-ftr-form .gform_wrapper .top_label .gchoice .gfield-choice-input {
        margin: 2px 7px 0px 0px !important;
    }

}

@media screen and (max-width: 1280px) {
    .work-lp-ftr-sec .container {
        max-width: 900px;
    }

    .work-lp-ftr-sec {
        padding: 50px 0 22px;
    }

    .work-lp-ftr-lst {
        padding: 0 0 20px 0px;
    }

    .work-lp-ftr-logo-lst {
        margin: 0 0 24px;
        padding: 0 0 0 25px;
    }

    .ftr-logo {
        width: 142px;
    }

    .work-lp-ftr-logo-rgt a::before {
        left: -10px;
        transform: scale(0.7);
    }

    .work-lp-ftr-logo-rgt {
        padding: 0 0 0 65px;
    }

    .work-lp-logo-cnt a {
        font-size: 27px;
    }

    .work-lp-logo-title {
        font-size: 19px;
    }

    .work-lp-ftr-itm-title {
        font-size: 24px;
    }

    .work-lp-ftr-itm {
        padding: 13px 21px 10px;
    }

    .work-lp-ftr-lft {
        width: 52.4%;
    }

    .work-lp-ftr-itm-txt {
        font-size: 14px;
    }

    .work-lp-ftr-rgt {
        padding: 26px 20px 32px;
    }

    .work-lp-ftr-rgt p {
        margin: 0 0 18px;
        font-size: 13px;
    }

    .work-lp-ftr-form .gform_wrapper .gfield input.large,
    .work-lp-ftr-form .gform_wrapper .gfield textarea.large {
        font-size: 13px !important;
        padding: 15px 15px !important;
    }

    .work-lp-ftr-form .gform_wrapper .gform_fields {
        grid-row-gap: 8px;
    }

    .work-lp-ftr-form .gform_wrapper .gfield textarea {
        height: 90px !important;
    }

    .work-lp-ftr-form .gform_wrapper .top_label .gchoice .gfield-choice-input {
        margin: 0px 4px 0px 7px !important;
    }

    .work-lp-ftr-form .gform_wrapper .gform_footer input {
        font-size: 15px !important;
        padding: 16px 40px !important;
    }

    .work-lp-ftr-social-icons a {
        width: 10px;
        height: 23px;
    }

    .work-lp-ftr-cpyrghts {
        padding: 20px 0 0;
    }

    .work-lp-ftr-cpyrghts p {
        font-size: 15px;
    }

    .work-lp-ftr-form .gform_wrapper .gfield .validation_message.gfield_validation_message,
    .work-lp-ftr-form .gform_wrapper .gfield .instruction.validation_message {
        font-size: 11px;
    }

    .work-lp-ftr-form .gform_wrapper .form-links a,
    .work-lp-ftr-form .gform_wrapper .form-links,
    .work-lp-ftr-form .gfield-choice-input+label {
        font-size: 13px !important;
    }

    .work-lp-ftr-form .gform_wrapper .gfield .instruction.validation_message {
        bottom: 4px;
        top: inherit !important;
    }

    .work-lp-ftr-form .gform_wrapper .gfield-choice-input+label {
        max-width: 100%;
    }

    .work-lp-ftr-form .formpopuptext {
        font-size: 12px;
    }

}

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

    .work-lp-ftr-sec {
        padding: 35px 0 20px;
    }

    .work-lp-ftr-lst {
        flex-direction: column-reverse;
        gap: 20px
    }

    .work-lp-ftr-rgt {
        width: 100%;
    }

    .work-lp-ftr-rgt p {
        font-size: 15px;
    }

    .work-lp-ftr-logo-lst {
        margin: 0 0 20px;
        padding: 0;
        justify-content: center;
        gap: 15px;
        flex-direction: column;
    }

    .work-lp-ftr-logo-rgt {
        width: fit-content;
    }

    .work-lp-ftr-lft {
        width: 100%;
    }

    .work-lp-ftr-itm-txt {
        font-size: 14px;
    }

    .work-lp-ftr-itm-lst {
        row-gap: 20px;
    }

    .work-lp-ftr-cpyrghts {
        padding: 16px 0 0;
    }

    .ftr-logo {
        width: auto;
    }

    .work-lp-ftr-form .gform_wrapper .gfield input.large,
    .work-lp-ftr-form .gform_wrapper .gfield textarea.large {
        font-size: 14px !important;
    }

    .work-lp-ftr-form .gform_wrapper .form-links a,
    .work-lp-ftr-form .gform_wrapper .form-links,
    .work-lp-ftr-form .gfield-choice-input+label {
        font-size: 14px !important;
    }


}

@media screen and (max-width:768px) {
    .work-lp-ftr-sec .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .work-lp-ftr-itm {
        padding: 13px 21px 10px;
        width: 100%;
        max-width: 250px;
        border: 1px solid #384770;
    }

    .work-lp-ftr-itm-lst {
        row-gap: 10px;
        gap: 10px;
        justify-content: center;
    }

    .work-lp-ftr-form .ginput_container.ginput_container_checkbox {
        margin: 0;
    }

    .work-lp-ftr-form .gform_wrapper .top_label .gchoice .gfield-choice-input {
        margin: 0px 8px 0 0 !important;
    }

    .work-lp-ftr-form .gchoice {
        text-align: left;
        margin: 0;
    }

    fieldset .gfield_description.validation_message.gfield_validation_message {
        right: auto !important;
        left: 20px;
    }

    .work-lp-ftr-form .gform_wrapper .gfield.gfield--width-half {
        grid-column: span 12;
    }

    .work-lp-ftr-form .gform-theme--framework .gfield--type-choice .gchoice {
        text-align: left;
        justify-content: flex-start;
    }

}

@media screen and (max-width:480px) {
    .work-lp-ftr-rgt {
        padding: 23px 15px 28px;
    }

    .work-lp-ftr-form .gform_wrapper .gform_footer input {
        font-size: 14px !important;
        padding: 15px 30px !important;
    }

    .work-lp-ftr-form .gform_wrapper .gform_footer {
        margin: 20px 0 0 !important;
    }

    .work-lp-ftr-cpyrghts {
        padding: 14px 0 0;
    }

    .work-lp-ftr-cpyrghts p {
        font-size: 14px;
    }

}


/* Car Accident Lp Personal Injury Section */

.car-accident-lp-text-heading {
    font-size: 39px;
    font-family: "FrankRuhlLibre";
    font-weight: 400;
    margin: 0 0 30px 0;
    line-height: 1;
    color: #13244f;
    text-transform: capitalize;
    text-align: center;
    position: relative;
}

.car-accident-lp-personal-injury-section .container {
    max-width: 1500px;
}

.car-accident-lp-personal-injury-section {
    background-color: #0a142c;
    padding: 95px 0 85px;
}

.car-accident-lp-personal-injury-section .car-accident-lp-text-heading {
    text-align: center;
    color: #fff;
    margin: 0 0 55px;
    letter-spacing: 0;
}

.car-accident-lp-personal-injury-itm {
    width: 100%;
    text-align: center;
    border-left: 1px solid rgb(201, 162, 39, 20%);
    padding: 0 17px 0 48px;
}

.car-accident-lp-prsnl-injr-price {
    font-size: 70px;
    font-family: "FrankRuhlLibre";
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #fefefe;
    padding: 0 0 15px;
    margin: 0 0 20px;
    position: relative;
}

.car-accident-lp-prsnl-injr-price::before {
    position: absolute;
    content: '';
    width: 67px;
    height: 9px;
    background-image: url(./car-accident-images/car-lp-pract-border.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.car-accident-lp-prsnl-injr-cases {
    color: #c9a227;
    font-size: 22px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

.car-accident-lp-personal-injury-blk.owl-carousel .owl-nav {
    z-index: -1;
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    left: -100px;
    right: -100px;
    top: 0;
    bottom: 0;
    margin: auto;
    max-height: max-content;
}

.car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-prev,
.car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-next {
    font-size: 0;
    width: 50px;
    height: 50px;
    background-image: url('./car-accident-images/car-lp-prsnl-injr-next.webp');
    background-repeat: no-repeat;
    background-size: contain;
    border: 0 !important;
    outline: 0 !important;
}

.car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-prev {
    background-image: url(./car-accident-images/car-lp-prsnl-injr-prev.webp);
}

.car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-prev:hover,
.car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-next:hover {
    background-color: #fff;
}

/*Responsive*/

@media screen and (max-width:1800px) {
    .car-accident-lp-personal-injury-section .container {
        padding: 0 20px;
    }

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-prev,
    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-next {
        width: 46px;
        height: 46px;
    }

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav {
        left: -90px;
        right: -90px;
    }

}

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

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-prev,
    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-next {
        width: 44px;
        height: 43px;
    }

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav {
        left: -86px;
        right: -86px;
    }

}

@media screen and (max-width:1680px) {
    .car-accident-lp-personal-injury-section .container {
        max-width: 1400px;
    }

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-prev,
    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
    }

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav {
        left: -71px;
        right: -71px;
    }

    .car-accident-lp-personal-injury-section {
        padding: 85px 0 75px;
    }

    .car-accident-lp-text-heading {
        font-size: 36px;
        margin: 0 0 28px;
    }

    .car-accident-lp-personal-injury-section .car-accident-lp-text-heading {
        margin: 0 0 45px;
    }

    .car-accident-lp-personal-injury-itm {
        padding: 0 18px 0 42px;
    }

    .car-accident-lp-prsnl-injr-price {
        font-size: 57px;
        padding: 0 0 13px;
        margin: 0 0 18px;
    }

    .car-accident-lp-prsnl-injr-price::before {
        width: 63px;
        height: 8px;
    }

    .car-accident-lp-prsnl-injr-cases {
        font-size: 20px;
    }


}

@media screen and (max-width: 1550px) {
    .car-accident-lp-personal-injury-section .container {
        max-width: 1300px;
    }

    .car-accident-lp-personal-injury-section {
        padding: 70px 0 65px;
    }

    .car-accident-lp-text-heading {
        font-size: 33px;
        margin: 0 0 26px;
    }

    .car-accident-lp-personal-injury-section .car-accident-lp-text-heading {
        margin: 0 0 35px;
    }

    .car-accident-lp-personal-injury-itm {
        padding: 0 16px 0 38px;
    }

    .car-accident-lp-prsnl-injr-price {
        font-size: 50px;
        padding: 0 0 12px;
        margin: 0 0 16px;
    }

    .car-accident-lp-prsnl-injr-price::before {
        width: 52px;
        height: 7px;
    }

    .car-accident-lp-prsnl-injr-cases {
        font-size: 18px;
    }

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-prev,
    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-next {
        width: 36px;
        height: 36px;
    }

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav {
        left: -63px;
        right: -63px;
    }

}

@media screen and (max-width: 1440px) {
    .car-accident-lp-personal-injury-section .container {
        max-width: 1220px;
    }

    .car-accident-lp-text-heading {
        font-size: 32px;
        margin: 0 0 25px;
    }

    .car-accident-lp-personal-injury-section .car-accident-lp-text-heading {
        margin: 0 0 32px;
    }

    .car-accident-lp-personal-injury-itm {
        padding: 0 15px 0 35px;
    }

    .car-accident-lp-prsnl-injr-price {
        font-size: 45px;
        margin: 0 0 15px;
    }

    .car-accident-lp-prsnl-injr-cases {
        font-size: 17px;
    }


}

@media screen and (max-width: 1366px) {
    .car-accident-lp-personal-injury-section .container {
        max-width: 1140px;
    }

    .car-accident-lp-personal-injury-section {
        padding: 60px 0 55px;
    }

    .car-accident-lp-text-heading {
        font-size: 30px;
        margin: 0 0 22px;
    }

    .car-accident-lp-personal-injury-section .car-accident-lp-text-heading {
        margin: 0 0 30px;
    }

    .car-accident-lp-personal-injury-itm {
        padding: 0 14px 0 32px;
    }

    .car-accident-lp-prsnl-injr-price {
        font-size: 38px;
        margin: 0 0 14px;
        padding: 0 0 11px;
    }

    .car-accident-lp-prsnl-injr-price::before {
        width: 46px;
        height: 6px;
    }

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-prev,
    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-next {
        width: 33px;
        height: 33px;
    }

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav {
        left: -60px;
        right: -60px;
    }

}

@media screen and (max-width: 1280px) {
    .car-accident-lp-personal-injury-section .container {
        max-width: 950px;
    }

    .car-accident-lp-text-heading {
        font-size: 28px;
        margin: 0 0 20px;
    }

    .car-accident-lp-personal-injury-section .car-accident-lp-text-heading {
        margin: 0 0 26px;
    }

    .car-accident-lp-personal-injury-itm {
        padding: 0 13px 0 23px;
    }

    .car-accident-lp-prsnl-injr-price {
        font-size: 33px;
        margin: 0 0 13px;
        padding: 0 0 10px;
    }

    .car-accident-lp-prsnl-injr-cases {
        font-size: 14px;
    }

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-prev,
    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav button.owl-next {
        width: 28px;
        height: 28px;
    }

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav {
        left: -42px;
        right: -42px;
    }

}

@media screen and (max-width: 1024px) {
    .car-accident-lp-personal-injury-section .container {
        max-width: 720px;
    }

    .car-accident-lp-personal-injury-section {
        padding: 35px 0 35px;
    }

    .car-accident-lp-personal-injury-itm {
        padding: 20px 10px;
        max-width: 280px;
        border: 1px solid rgba(201, 162, 39, 20%);
        margin: auto;
    }

    .car-accident-lp-personal-injury-blk.owl-carousel .owl-nav {
        left: 0;
        right: 0;
        position: inherit;
        justify-content: center;
        gap: 10px;
        margin: 20px 0 0;
    }

    .car-accident-lp-text-heading {
        font-size: 26px;
        margin: 0 0 18px;
    }

    .car-accident-lp-personal-injury-section .car-accident-lp-text-heading {
        margin: 0 0 20px;
    }

    .car-accident-lp-prsnl-injr-cases {
        font-size: 16px;
    }

}

@media screen and (max-width:768px) {
    .car-accident-lp-personal-injury-section .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .car-accident-lp-text-heading {
        font-size: 24px;
        margin: 0 0 16px;
    }

}

@media screen and (max-width:480px) {
    .car-accident-lp-personal-injury-section {
        padding: 30px 0 30px;
    }

}