@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --color-primary: #0000ff;
    --color-primary-500: #002975;
    --color-primary-400: #002f86; 
    --color-primary-300: #0043c0;
    --color-primary-200: #2b63cb;
    --color-primary-100: #6b92da;
    --color-primary-75: #96b2e5;
    --color-primary-50: #e6ecf9;
    --color-secondary-500: #011022;
    --color-secondary-400: #011327;
    --color-secondary-300: #011b38;
    --color-secondary-200: #2c425a;
    --color-secondary-100: #6c7b8c;
    --color-secondary-75: #97a2ad;
    --color-secondary-50: #e6e8eb;
    --color-natural-500: #101010;
    --color-natural-400: #131313;
    --color-natural-300: #1b1b1b;
    --color-natural-200: #424242;
    --color-natural-100: #7b7b7b;
    --color-natural-75: #a2a2a2;
    --color-natural-50: #e8e8e8;
    --header-gradient: linear-gradient(276.65deg, #1B4899 47.77%, #0F62FE 98.86%);
    --card-shadow: 0px 0px 24px #00327C1F;
    --header-shadow: 0px 4px 16px 0px #0043C01F;
    --sub-header-shadow: 0px 0px 24px 0px #0043C052;
    --news-card-shadow: 0px 0px 24px 0px #00327C14;
    --button-hover-shadow: 0px 8px 16px 0px #011B383D;
    --footer-bg: #011B38;
    --font-roboto: 'Roboto', sans-serif;
}   
body{
    font-family: var(--font-roboto);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-natural-500);
}
body.no-scroll{
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6{
    color: var(--color-natural-300);
    font-weight: 400;
    line-height: normal;
}
h1{
    font-size: 56px;
}
h2{
    font-size: 48px;
}
h3{
    font-size: 40px;
}
h4{
    font-size: 36px;
}
h5{
    font-size: 32px;
}
h6{
    font-size: 28px;
}
a{
    text-decoration: none;
    color: var(--color-primary-300);
}
p{
    font-weight: 300;
}
.mb-12{
    margin-bottom: 12px !important;
}
.mb-2-rem{
    margin-bottom: 2rem !important;
}
.mb-2-5-rem{
    margin-bottom: 2.5rem !important;
}
.mb-4-rem{
    margin-bottom: 4rem !important;
}
.mt-2-rem{
    margin-top: 2rem !important;
}
.mt-4-rem{
    margin-top: 4rem !important;
}
.block-title{
    font-size: 32px;
    color: var(--color-primary-300);
    margin-bottom: 16px;
}
.page-title{
    font-size: 40px;
    color: var(--color-natural-300);
    margin-bottom: 32px;
}
.field--name-body table td{
    border: 1px solid var(--color-natural-500);
}

/* ------------ Primary Button with Icon ------------ */

.hero-banner-wrapper .field--type-link a,
.btn-primary-with-icon,
.heading-description-cta-img .field--type-link a,
form input[type="submit"].btn-primary{
    padding: 16px 32px;
    background: var(--color-primary-300);
    border-color: var(--color-primary-300);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    transition: all 0.3s ease-in-out;
}
.hero-banner-wrapper .field--type-link a::after,
.btn-primary-with-icon::after,
.heading-description-cta-img .field--type-link a::after{
    content: '';
    display: inline-block;
    height: 24px;
    width: 24px;
    background: url(../images/arrow-right-white.svg) center/contain no-repeat;
    margin-left: 12px;
}
.hero-banner-wrapper .field--type-link a:hover,
.btn-primary-with-icon:hover,
.heading-description-cta-img .field--type-link a:hover,
form input[type="submit"].btn-primary:hover{
    background: var(--color-primary-400);
    border-color: var(--color-primary-400);
    box-shadow: var(--button-hover-shadow);
}
.hero-banner-wrapper .field--type-link a:active,
.btn-primary-with-icon:active,
.heading-description-cta-img .field--type-link a:active,
form input[type="submit"].btn-primary:active{
    background: var(--color-secondary-300);
    border-color: var(--color-secondary-300);
}

/* ----------------- Primary Button ----------------- */

.btn-primary{
    padding: 16px 42px;
    background: var(--color-primary-300);
    border-color: var(--color-primary-300);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    height: 56px;
}
.btn-primary:hover{
    background: var(--color-primary-400);
    border-color: var(--color-primary-400);
    box-shadow: var(--button-hover-shadow);
}
.btn-primary:active{
    background: var(--color-secondary-300);
    border-color: var(--color-secondary-300);
}

/* --------------- Secondary Button --------------- */

.btn-secondary{
    display: inline-flex;
    align-items: center;
    padding: 16px 42px;
    background: #FFFFFF;
    color: var(--color-primary-300);
    border: 1px solid var(--color-primary-300);
    font-size: 18px;
    font-weight: 400;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    height: 56px;
}
.btn-secondary:hover{
    background: var(--color-secondary-300);
    color: #FFFFFF;
    border-color: var(--color-secondary-300);
    box-shadow: var(--button-hover-shadow);
}
.btn-secondary:active{
    background: var(--color-primary-400);
    border-color: var(--color-primary-400);
}

a.btn-edit, button.btn-edit, .btn-edit > a{
    background: var(--color-primary-300);
    color: #FFFFFF;
    border-radius: 2px;
    padding: 4px 10px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 4px;
    transition: all 0.3s ease-in-out;
}
a.btn-edit:hover, button.btn-edit:hover, .btn-edit > a:hover{
    background: var(--color-primary-400);
}

/* ------------- CTA Link right aligned ------------- */

.cta-link-right-aligned > a,
a.cta-link-right-aligned{
    display: inline-flex !important;
    align-items: center;
    padding: 11px 0px 11px 40px;
    font-size: 18px;
    font-weight: 300;
    color: var(--color-primary-300);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}
.cta-link-right-aligned > a::after,
a.cta-link-right-aligned::after{
    content: '';
    display: inline-block;
    height: 24px;
    width: 24px;
    background: url(../images/double-arrow-right-primary.svg) center/contain no-repeat;
    margin-left: 12px;
}
.cta-link-right-aligned > a:hover,
a.cta-link-right-aligned:hover{
    padding-left: 20px;
    padding-right: 20px;
    border-color: var(--color-primary-300);
}

/* ---------------- CTA Link left aligned ---------------- */

.cta-link-left-aligned > a,
a.cta-link-left-aligned,
.paragraph--type--list-content .field--name-field-cta a,
.view-search-result .views-field-view-node .field-content a{
    color: var(--color-primary-300);
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
    display: inline-flex !important;
    align-items: center;
    padding: 10px 0;
    padding-right: 40px;
    border-bottom: 1px solid transparent;
}
.cta-link-left-aligned > a::after,
a.cta-link-left-aligned::after,
.paragraph--type--list-content .field--name-field-cta a::after,
.view-search-result .views-field-view-node .field-content a::after{
    content: '';
    display: inline-block;
    height: 24px;
    width: 24px;
    background: url(../images/arrow-right-primary.svg) center/contain no-repeat;
    margin-left: 12px;
}
.cta-link-left-aligned > a:hover,
a.cta-link-left-aligned:hover,
.paragraph--type--list-content .field--name-field-cta a:hover,
.view-search-result .views-field-view-node .field-content a:hover{
    padding-left: 20px;
    padding-right: 20px;
    border-color: var(--color-primary-300);
}

/* --------------- Image Card Layout --------------- */

.image-card .image{
    margin-bottom: 16px;
}
.image-card .image img{
    width: 100%;
    object-fit: cover;
}
.image-card .icon-image.card-shadow{
    box-shadow: var(--card-shadow);
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 30px;
}
.image-card .content .title,
.image-card .content .title > a{
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--color-natural-300);
}
.image-card .title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* min-height: 3em;  */
    line-height: 1.5em; 
    white-space: normal; 
}

.image-card .content .description{
    font-size: 16px;
    font-weight: 300;
    color: var(--color-natural-200);
}

.view:not(.view-insight) .image-card .content .description {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 3em;
	line-height: 1.5em;
	white-space: normal;
    margin-bottom: 10px;
}

/* ------------- Basic Tile Card Layout --------------- */

.basic-tile-card .title{
    font-size: 40px;
    margin-bottom: 12px;
}
.basic-tile-card .description{
    color: var(--color-natural-200);
    font-size: 20px;
    font-weight: 300;
}
.basic-tile-card .description :is(h2,h3,h4,h5,h6){
    font-size: 24px;
    color: var(--color-natural-200);
    margin-bottom: 24px;
}
.basic-tile-card .description p strong{
    font-weight: 400;
}

/* --------with shade----------- */
.basic-tile-card.with-shade{
    padding: 36px 32px 24px;
    border-radius: 4px;
    background: #FFFFFF;
    box-shadow: var(--card-shadow);
}
.basic-tile-card.with-shade .title{
    font-size: 56px;
    color: var(--color-natural-200);
}
.basic-tile-card.with-shade .description{
    font-size: 18px;
    font-weight: 300;
    color: var(--color-natural-200);
}
.basic-tile-card.with-shade .description p:last-child{
    margin-bottom: 0;
}

/* ---------------- Pagination ---------------- */

ul.pagination li a{
    border: none;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--color-natural-200);
    font-size: 18px;
    line-height: 25px;
}
ul.pagination li.active a{
    color: var(--color-primary-400);

}
ul.pagination li.pager__item--next,
ul.pagination li.pager__item--previous,
ul.pagination li.pager__item--last,
ul.pagination li.pager__item--first{
    display: none;
}

/* --------------- Form Elements -------------------- */

#main-content .form-control{
    color: var(--color-natural-200);
    font-weight: 300;
    padding: 10px 16px;
    border-radius: 2px;
    border: 1px solid var(--color-natural-75);
}
#main-content .form-control:not(textarea){
    height: 44px;
}
#main-content .form-control:focus{
    box-shadow: unset;
    border-color: var(--color-primary-400);
    border-bottom-width: 2px;
}
#main-content form label{
    color: var(--color-natural-300);
    font-size: 20px;
}
#main-content form input[type="submit"].btn-primary{
    min-width: 262px;
    background: var(--color-primary-300) url(../images/arrow-right-white.svg) no-repeat;
    background-position: right 32px center;
    background-size: 24px 24px;
    line-height: 1;
}
#main-content form input[type="submit"].btn-primary:hover{
    background: var(--color-primary-400) url(../images/arrow-right-white.svg) no-repeat;
    background-position: right 32px center;
    background-size: 24px 24px;
}
#main-content form input[type="submit"].btn-primary:active{
    background: var(--color-secondary-300) url(../images/arrow-right-white.svg) no-repeat;
    background-position: right 32px center;
    background-size: 24px 24px;
}
#main-content form .form-actions{
    margin-top: 32px;
}

/* ---------------- Contact Us Form ---------------- */

#main-content:has(form.webform-submission-contact-us-form) h1.page-title,
body.page-node-id-245 h1.page-title{
    color: var(--color-primary-300);
}
#main-content .webform-submission-contact-us-form{
    max-width: 652px;
}

.office-locations-wrapper{
    padding: 56px 0 40px;
}

.office-locations-wrapper a.phone,
a.phone-primary,
a.email-primary{
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
a.phone-primary,
a.email-primary{
    color: var(--color-natural-300);
}
.office-locations-wrapper a.phone:hover,
a.phone-primary:hover,
a.email-primary:hover{
    text-decoration: underline;
}
.office-locations-wrapper a.phone::before,
a.phone-primary::before,
a.email-primary::before{
    content: '';
    display: inline-block;
    height: 24px;
    width: 24px;
}
.office-locations-wrapper a.phone::before,
a.phone-primary::before{
    background: url(../images/phone-icon-primary.svg) center/contain no-repeat;
}
a.email-primary::before{
    background: url(../images/email-icon-primary.svg) center/contain no-repeat;
}

body:has(.webform-submission-contact-us-form) .office-locations-wrapper{
    background: var(--color-natural-50);
}



/*========================== Header Styling =========================== */

header#site-header{
    background: #FFFFFF;
    color: var(--color-natural-300);
    box-shadow: 0px 4px 16px 0px #0043C01F;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 499;
}
.toolbar-horizontal header#site-header{
    top: 39px;
}
.toolbar-horizontal.toolbar-tray-open header#site-header{
    top: 80px;
}
header#site-header .navbar-brand img{
    width: 100%;
    max-width: 192px;
    height: auto;
    margin: 0;
}
header#site-header .navigation-wrapper{
    display: flex;
    justify-content: end;
    align-items: center;
}
header#site-header .site-navigation ul.navbar-nav{
    display: flex;
    flex-direction: row;
    column-gap: 12px;
}
header#site-header .site-navigation ul.navbar-nav > li{
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    padding: 16px 10px;
}
header#site-header .site-navigation ul.navbar-nav > li a{
    color: var(--color-natural-300);
}
header#site-header .site-navigation ul.navbar-nav > li > a{
    padding: 0;
    font-size: 18px;
    line-height: 22px;
}
header#site-header .site-navigation ul.navbar-nav > li > a.dropdown-toggle::after{
    display: none;
}
header#site-header .site-navigation ul.navbar-nav > li > .dropdown-menu-toggle{
    display: inline-block;
    height: 16px;
    width: 16px;
    background: url(../images/arrow-down-blue.svg) center/contain no-repeat;
    cursor: pointer;
    margin-left: 8px;
}
header#site-header .site-navigation ul.navbar-nav > li > a.dropdown-toggle.show::after{
    transform: rotate(180deg);
}

header#site-header .site-navigation ul.navbar-nav > li:hover,
header#site-header .site-navigation ul.navbar-nav > li:has(.show){
    border-bottom: 2px solid var(--color-primary-400);
}
header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul{
    display: none;
    position: absolute;
    width: max-content;
    max-width: 640px;
    min-width: 358px;
    padding: 32px 36px 20px;
    left: unset !important;
    top: 84px !important;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #FFFFFF;
    box-shadow: 0px 0px 24px 0px #0043C052;
    transform: unset !important;
    border-radius: 4px;
    border: none;
}
header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul.show{
    display: flex;
}
header#site-header .site-navigation ul.navbar-nav > li:first-child > ul{
    width: 640px;
}
header#site-header .site-navigation ul.navbar-nav > li:nth-child(3) > ul{
    left: 50% !important;
    transform: translateX(-50%) !important;
}
header#site-header .site-navigation ul.navbar-nav > li:last-child > ul{
    right: 0px !important;
}
header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul > li{
    width: 45%;
    max-width: 248px;
}
header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul > li:not(:last-child){
    margin-bottom: 8px;
}
header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul > li > a{
    display: inline-block;
    padding: 8px 40px 9px 8px;
    position: relative;
    border-bottom: 1px solid transparent;
    font-weight: 300;
    line-height: 24px;
    white-space: wrap;
}
header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul > li > a::after{
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    background: url(../images/arrow-right-natural.svg) center/contain no-repeat;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul > li > a :is(span, strong){
    font-weight: 400;
}
header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul > li > a:hover{
    color: var(--color-primary-400);
    border-color: var(--color-natural-400);
    background-color: unset;
}
header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul > li a:is(:active, .active){
    color: var(--color-primary-400);
    background-color: unset;
}

#site-header #nav-toggle{
    height: 32px;
    width: 32px;
    display: inline-block;
    background: url(../images/hamberger-blue.svg) center/contain no-repeat;
    cursor: pointer;
}



/* ------------- Search Form ---------------- */

header#site-header .search-form-wrapper{
    position: relative;
}
header#site-header .search-form-toggle{
    line-height: 22px;
    padding: 16px 20px 16px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
    font-size: 0;
}
header#site-header .search-form-toggle::after{
    content: '';
    display: inline-block;
    height: 16px;
    width: 16px;
    background: url(../images/search-icon-blue.svg) center/contain no-repeat;
    margin-left: 8px;
}
header#site-header .search-form-toggle.active::after,
header#site-header .search-form-toggle:hover::after{
    background: url(../images/search-icon-blue-active.svg) center/contain no-repeat;
}
header#site-header .site-search-form{
    display: none;
    position: absolute;
    top: 84px;
    right: 0;
    width: 640px;
    background: #FFFFFF;
    box-shadow: 0px 0px 24px 0px #0043C052;
    padding: 16px;
    border-radius: 4px;
}
header#site-header .site-search-form.active{
    display: block;
    z-index: 999;
}
header#site-header .site-search-form form .form--inline,
#views-exposed-form-search-result-page-1 .form--inline{
    display: flex;
}
header#site-header .site-search-form form .form--inline .form-actions,
#views-exposed-form-search-result-page-1 .form--inline .form-actions{
    margin: 0px;
}
header#site-header .site-search-form form .form-item,
#views-exposed-form-search-result-page-1 .form-item{
    width: 100%;
    margin: 0px;
    
}
header#site-header .site-search-form form .form-item input,
#views-exposed-form-search-result-page-1 .form-item input{
    border: 1px solid var(--color-primary-300);
    border-radius: 0;
    padding: 14px 25px 14px 14px;
    line-height: 20px;
    font-weight: 300;
    color: var(--color-natural-100);
    height: 48px;
    border-radius: 2px 0 0 2px;
}
header#site-header .site-search-form form .form-item input:focus{
    box-shadow: unset;
}
header#site-header .site-search-form form .form-actions input[type="submit"],
#views-exposed-form-search-result-page-1 .form-actions input[type="submit"].btn-primary{
    background: var(--color-primary-300) url(../images/search-icon-white.svg) center/24px 24px no-repeat;
    border: 1px solid var(--color-primary-300);
    border-radius: 0;
    height: 48px;
    width: 48px;
    padding: 0;
    font-size: 0;
    border-radius: 0 2px 2px 0;
    min-width: unset;
}
.path-search-result #main-content form input[type="submit"].btn-primary:hover,
.path-search-result #main-content form input[type="submit"].btn-primary:active{
    background: var(--color-primary-300) url(../images/search-icon-white.svg) center / 24px 24px no-repeat;
    background-position: center;
    background-size: inherit;
}
/* ================ Search page ================= */
.path-search-result h1.page-title {
    font-size: 30px;
    color: var(--color-primary-300);
    margin-top: 40px;
}
.view-search-result .view-content{
    padding: 35px;
    box-shadow: var(--card-shadow);
}
.view-search-result .views-row {
    margin-bottom: 35px;
}
.view-search-result .views-field-title a {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--color-natural-300);
    display: block;
}
.view-search-result .views-field-body .field-content {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-natural-200);
}
.view-search-result ul.pagination li.pager__item--next, 
.view-search-result ul.pagination li.pager__item--previous{
    display: inline;
}
.view-search-result .page-item.active a::after {
    content: "";
    width: 16px;
    height: 2px;
    background: var(--color-primary-400);
    display: block;
    transform: translateX(-3px);
}

/* ================ Breadcrumb ================= */

.region-breadcrumb ol.breadcrumb{
    margin-top: 28px;
    margin-bottom: 40px;
}
.region-breadcrumb ol.breadcrumb li:last-child {
    font-weight: 400;
}
.region-breadcrumb ol.breadcrumb :is(li, li > a){
    font-size: 14px;
    font-weight: 300;
    color: #000000;
}
.region-breadcrumb ol.breadcrumb .breadcrumb-item + .breadcrumb-item{
    padding-left: 5px;
}
.region-breadcrumb ol.breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    content: '>';
    padding-right: 5px;
}

/* ========================== Main Contents ========================== */

#main-content .field--name-field-add-section > .field__item:not(:last-child){
    margin-bottom: 80px;
}
#block-labusa-digitaltransformationsecuritycomplianceaipoweredsolutions .heading-description-cta-img .field--name-body{
    max-width: 450px;
}

/* ------------ Solutions -------------- */

#block-labusa-views-block-solutions-block-1{
    margin-bottom: 105px;
}

/* ----------- Latest News ---------------- */

:is(.view-latest-news, .view-insight) .view-header ul.pagination{
    padding: 0;
    margin: 0;
}

/* ---------- Procurement solutions ----------- */

.tile-card.procurement{
    min-height: 280px;
    padding: 24px;
}
.tile-card.procurement::after{
    height: 44px;
    width: 44px;
    right: 24px;
    bottom: 24px;
}
.tile-card.procurement .description{
    font-size: 16px;
}
.tile-card.procurement .image-icon{
    margin-top: auto;
}
/* ----------- Real world solutions ----------- */

.view-real-world-solutions .views-view-responsive-grid--horizontal{
    row-gap: 72px !important;
}


/* -------------- Next Step ------------ */

#block-labusa-nextstep .heading-description-cta-img h5{
    color: var(--color-primary-300);
}
#block-labusa-nextstep .heading-description-cta-img .field--name-body{
    font-size: 18px;
    max-width: unset;
}
#block-labusa-nextstep .heading-description-cta-img .field--type-link a{
    min-width: 240px;
    justify-content: center;
}

/* ----------------------------- Job Listing ------------------------------------- */

.job-item{
    margin-bottom: 40px;
}
.job-item h4.job-title{
    font-size: 24px;
    margin-bottom: 10px;
}
.job-item .job-description{
    font-size: 18px;
    color: var(--color-natural-200);
    margin-bottom: 10px;
}
.job-item .job-description p:last-child{
    margin-bottom: 0;
}
.job-item .job-meta-description{
    font-size: 16px;
    font-weight: 400;
    color: var(--color-natural-200);
    margin-bottom: 10px;
}

/* ============== Job detail page ================= */

.job-detail-page .job-information{
    max-width: 484px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: var(--color-natural-200);
}
.job-detail-page .job-banner.no-image{
    width: 100%;
    height: 100%;
    background: #C4C4C4;
}
.job-detail-page .job-information h6{
    font-size: 20px;
    margin-bottom: 8px;
}
.job-detail-page .job-details-wrapper{
    font-size: 18px;
    font-weight: 300;
    color: var(--color-natural-200);
}
.job-detail-page .job-details-wrapper h4.heading{
    font-size: 24px;
    margin-bottom: 32px;
}
.job-detail-page .job-details-wrapper ul,
.paragraph--type--simple-paragraph .field--name-field-description ul{
    list-style: none;
    padding: 0;
}
.job-detail-page .job-details-wrapper ul li,
.paragraph--type--simple-paragraph .field--name-field-description ul li{
    position: relative;
    padding-left: 36px;
}
.job-detail-page .job-details-wrapper ul li::before,
.paragraph--type--simple-paragraph .field--name-field-description ul li::before{
    content: '';
    position: absolute;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    top: 6px;
    left: 6px;
    background: var(--color-primary-300);
}
.job-detail-page .job-details-wrapper ul li:not(:last-child),
.paragraph--type--simple-paragraph .field--name-field-description ul li:not(:last-child){
    margin-bottom: 32px;
}

/* ============ Solutions Listing Page =========== */

.view-solutions.view-display-id-block_2 .views-view-responsive-grid--horizontal{
    row-gap: 80px;
}
.view-solutions .tile-card .description{
    min-height: 67px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.view-solutions .tile-card .image-icon{
    min-height: 56px;
}
.view-solutions .image-card .icon-image.card-shadow{
    height: 80px;
    width: 80px;
}
/* ================= SOlutons Detail Page ================ */

.solution-detail-page .paragraph--type--explore-services .field--name-field-heading{
    font-size: 32px;
    color: var(--color-natural-300);
    margin-bottom: 40px;
}

/* =============== Contract Listing Page ==================== */

.view-procurement-solutions.view-display-id-block_2 .views-view-responsive-grid--horizontal{
    row-gap: 80px;
}

/* =================== Contract Detail Page =========================== */

.contract-detail-page .heading-description-cta-img h5:not(.description h5){
    font-size: 40px;
    color: var(--color-natural-300);
}
.contract-detail-page .heading-description-cta-img :is(.field--name-body, .field--name-field-description){
    font-size: 16px;
    font-weight: 300;
}


/* =============== Insight Detail Page ==================== */

#main-content:has(.insight-detail-page) h1.page-title{
    margin-bottom: 16px;
    color: var(--color-primary-300);
}
.insight-detail-page .insight-meta{
    font-size: 14px;
}
.insight-detail-page .insight-tags,
.insight-detail-page .insight-tags a{
    font-size: 14px;
    font-weight: 300;
    color: var(--color-natural-100);
}
.insight-detail-page .insight-tags a:hover{
    text-decoration: underline;
}
.insight-detail-page .insight-image img{
    width: 100%;
    border-radius: 4px;
}
.insight-detail-page .insight-image.no-image{
    background: #C4C4C4;
    width: 100%;
    height: auto;
    aspect-ratio: 2/1;
    border-radius: 4px;
}
.insight-detail-page .insight-content{
    font-weight: 300;
}

#main-content:has(.insight-detail-page) #block-labusa-aboutlabusa{
    margin-bottom: 80px;
}

/* ---------- Insight Listing Card Styles -------------- */

.view-insight .image-card.news-card-shadow{
    box-shadow: var(--news-card-shadow);
    border-radius: 2px;
}
.view-insight .image-card.news-card-shadow .image{
    margin-bottom: 0;
}
.view-insight .image-card.news-card-shadow .image img{
    border-radius: 2px 2px 0 0;
}
.view-insight .image-card.news-card-shadow .content{
    padding: 24px 24px 10px 24px;
}
.view-insight .image-card.news-card-shadow .content .title{
    min-height: 60px;
}
.view-insight .image-card.news-card-shadow .content .description{
    min-height: 200px;
}

/* ===================== Service Detail Page ====================== */

.service-detail-page .heading-description-cta-img h5{
    font-size: 40px;
}

/* ===================== About Us Page ======================= */

.page-node-id-454 .paragraph--type--explore-services .field--name-field-add-item{
    grid-template-columns: 1fr 1fr 1fr;    
}
.page-node-id-454 .paragraph--type--list-content .field--name-field-heading-description > .field__item::before{
    content: '';
    height: 24px;
    width: 24px;
    top: 0;
    left: 0;
    background: url(../images/check-icon-primary.svg) center/contain no-repeat;
}

/* ================= Footer Styling ================= */

footer#site-footer{
    background: var(--footer-bg);
    color: #EBEBEB;
    padding: 0;
    font-weight: 300;
    line-height: 24px;
}
footer#site-footer a{
    color: #EBEBEB;
}
footer#site-footer .footer-top{
    padding: 56px 0 0 0;
}
footer#site-footer .footer-top .block h5,
footer#site-footer .footer-top .block h2{
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    margin-bottom: 14px;
    color: #FFFFFF;
}
footer#site-footer .footer-top .block h5{
    margin-bottom: 8px;
}
footer#site-footer .footer-top ul.navbar-nav li a{
    padding: 6px 0;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid transparent;
    display: inline-block;
}
footer#site-footer .footer-top ul.navbar-nav li a:hover{
    padding-left: 8px;
    border-bottom: 1px solid #FFFFFF;
}
footer#site-footer .footer-top .region-footer-top-6 ul.navbar-nav{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}
footer#site-footer .footer-top .region-footer-top-6 ul.navbar-nav li{
    width: 45%;
}

footer#site-footer .footer-top #block-labusa-engagewithlabusa a.phone,
footer#site-footer .footer-top #block-labusa-engagewithlabusa a.email{
    display: flex;
    align-items: center;
    gap: 8px;
}
footer#site-footer .footer-top #block-labusa-engagewithlabusa a.phone:hover,
footer#site-footer .footer-top #block-labusa-engagewithlabusa a.email:hover{
    text-decoration: underline;
}
footer#site-footer .footer-top #block-labusa-engagewithlabusa a.phone::before,
footer#site-footer .footer-top #block-labusa-engagewithlabusa a.email::before{
    content: '';
    display: inline-block;
    height: 24px;
    width: 24px;
}
footer#site-footer .footer-top #block-labusa-engagewithlabusa a.phone::before{
    background: url(../images/phone-icon-white.svg) center/contain no-repeat;
}
footer#site-footer .footer-top #block-labusa-engagewithlabusa a.email::before{
    background: url(../images/email-icon-white.svg) center/contain no-repeat;
}

footer#site-footer .footer-bottom{
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
}
.socials{
    display: flex;
    align-items: center;
    gap: 16px;
}
.socials a.social-item{
    font-size: 0;
}
.socials a.social-item::before{
    content: '';
    display: inline-block;
    height: 24px;
    width: 24px;
}
.socials a.social-item.facebook::before{
    background: url(../images/facebook-icon-white.svg) center/contain no-repeat;
}
.socials a.social-item.twitter::before{
    background: url(../images/twitter-icon-white.svg) center/contain no-repeat;
}
.socials a.social-item.linkedin::before{
    background: url(../images/linkedin-icon-white.svg) center/contain no-repeat;
}
.socials a.social-item.youtube::before{
    background: url(../images/youtube-icon-white.svg) center/contain no-repeat;
}
.socials a.social-item.instagram::before{
    background: url(../images/instagram-icon-white.svg) center/contain no-repeat;
}

/* ============================================ Media Query =========================================== */

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

}
@media only screen and (max-width: 991px){
    header#site-header{
        padding-top: 24px;
        padding-bottom: 24px;
    }
    header#site-header .navigation-wrapper{
        position: fixed;
        width: 75%;
        height: calc(100vh - 77px);
        overflow-y: auto;
        top: 77px;
        right: -80%;
        background: #FFFFFF;
        flex-direction: column;
        justify-content: start;
        align-items: stretch;
        transition: right 0.3s ease-in-out;
        padding: 16px 24px 0 0;
        z-index: 999;
        box-shadow: 0px 0px 24px 0px #0043C052;
        border-radius: 4px;
    }
    header#site-header .navigation-wrapper.active{
        right: 0;
    }
    header#site-header .navigation-wrapper.active:has(.site-search-form.active){
        flex-direction: column-reverse;
    }
    header#site-header .site-navigation ul.navbar-nav{
        flex-direction: column;
    }
    header#site-header .site-navigation ul.navbar-nav > li{
        width: 100%;
        padding-left: 24px;
        flex-wrap: wrap;
        border-color: transparent !important;
    }
    header#site-header .site-navigation ul.navbar-nav > li > a.dropdown-toggle{
        justify-content: start;
    }
    header#site-header .site-navigation ul.navbar-nav > li > a.dropdown-toggle.show{
        border-bottom: 1px solid var(--color-primary-300);
    }
    header#site-header .site-navigation ul.navbar-nav > li > a:hover{
        border-color: transparent;
    }
    header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul{
        position: unset !important;
        box-shadow: unset;
        flex-direction: column;
        padding: 24px 0;
        width: auto;
        max-width: 100%;
        min-width: unset;
        transform: unset !important;
        border-radius: 0;
        width: 100%;
    }
    header#site-header .site-navigation ul.navbar-nav > li.dropdown:last-child > ul > li{
        width: max-content;
    }
    header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul > li{
        max-width: unset;
        width: 100%;
    }
    header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul > li:not(:last-child){
        margin-bottom: 16px;
    }
    header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul > li > a{
        padding: 0 40px 0 16px;
    }
    header#site-header .site-navigation ul.navbar-nav > li.dropdown > ul > li > a:hover{
        border-color: transparent;
    }
    
    header#site-header .search-form-toggle{
        padding: 17px 24px;
        font-size: 18px;
    }
    header#site-header .site-search-form{
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0 0 0 24px;
    }
    header#site-header:has(.navigation-wrapper.active) #header-overlay{
        opacity: 1;
        visibility: visible;
    }
    .region-breadcrumb ol.breadcrumb{
        margin-top: 0;
        margin-bottom: 30px;
    }
    .page-node-id-454 .paragraph--type--explore-services .field--name-field-add-item{
        grid-template-columns: 1fr 1fr;    
    }   
    #main-content .webform-submission-contact-us-form{
        max-width: unset;
    } 
    
}
@media only screen and (max-width: 767px){
    .footer-top .region-footer-top-1 {
        padding-right: 0px !important;
    }
    header#site-header{
        padding-bottom: 8px;
    }
    #site-footer .footer-top .row .col-12:first-child{
        order: 1;
    }   
    #site-footer .footer-top .row .col-12:nth-child(2){
        order: 3;
    }
    #site-footer .footer-top .row .col-12:nth-child(3){
        order: 4;
    }
    #site-footer .footer-top .row .col-12:nth-child(4){
        order: 6;
    }
    #site-footer .footer-top .row .col-12:nth-child(5){
        order: 2;
    }
    #site-footer .footer-top .row .col-12:nth-child(6){
        order: 5;
    }
    #site-footer .footer-top .row .col-12:nth-child(7){
        order: 7;
    }
    footer#site-footer .footer-top .row .col-12:has(.block-menu){
        margin-top: 0;
    }
    footer#site-footer .footer-top .block-menu h5{
        padding: 18px 8px 18px 0;
        margin-bottom: 0;
        border-bottom: 1px solid var(--color-secondary-200);
        position: relative;
        padding-right: 24px;
        cursor: pointer;
    }
    footer#site-footer .footer-top .block-menu h5.active{
        border-color: #FFFFFF;
        margin-bottom: 16px;
    }
    footer#site-footer .footer-top .block-menu h5::after{
        content: '';
        position: absolute;
        height: 16px;
        width: 16px;
        background: url(../images/angle-arrow-down-white.svg) center/contain;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
    }
    footer#site-footer .footer-top .block-menu h5.active::after{
        transform: translateY(-50%) rotate(180deg);
    }
    footer#site-footer .footer-top .block-menu ul.nav{
        display: none;
        padding-left: 10px;
    }
    footer#site-footer .footer-top .block-menu ul.nav.open{
        display: flex;
    }
    footer#site-footer .footer-top .block-menu ul.nav li:not(:last-child){
        margin-bottom: 8px;
    }
    footer#site-footer .footer-top .block-menu ul.nav > li a{
        padding: 10px 0;
        position: relative;
        padding-right: 32px;
        display: block;
    }
    footer#site-footer .footer-top .block-menu ul.nav > li a::after{
        content: '';
        position: absolute;
        height: 16px;
        width: 16px;
        background: url(../images/arrow-right-white.svg) center/contain;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* -------------- Main Contents ------------ */

    h1{
        font-size: 48px;
    }
    h2{
        font-size: 40px;
    }
    h3{
        font-size: 36px;
    }
    h4{
        font-size: 32px;
    }
    h5{
        font-size: 20px;
    }
    h6{
        font-size: 16px;
    }

    .hero-banner-wrapper .field--type-link a, 
    .btn-primary-with-icon, 
    .heading-description-cta-img .field--type-link a{
        font-size: 16px;
        padding: 14px 30px;
    }
    .btn-primary,
    .btn-secondary{
        padding: 14px 42px;
        font-size: 16px;
    }
    .cta-link-left-aligned > a, a.cta-link-left-aligned, .paragraph--type--list-content .field--name-field-cta a,
    .cta-link-right-aligned > a, a.cta-link-right-aligned{
        font-size: 16px;
    }
    .cta-link-left-aligned > a::after, a.cta-link-left-aligned::after, .paragraph--type--list-content .field--name-field-cta a::after{
        height: 20px;
        width: 20px;
    }
    .page-title,
    .contract-detail-page .heading-description-cta-img h5:not(.description h5){
        font-size: 24px;
    }
    .block-title{
        font-size: 20px;
        margin-bottom: 12px;
    }
    .region-breadcrumb ol.breadcrumb{
        margin-bottom: 20px;
    }
    #main-content .field--name-field-add-section > .field__item:not(:last-child),
    #main-content .field--name-field-add-section > .field__item:has(.paragraph--type--simple-paragraph):not(:last-child){
        margin-bottom: 40px;
    }
    #main-content form label{
        font-size: 16px;
    }
    .basic-tile-card.with-shade{
        padding: 16px 12px 12px;
        min-height: 165px;
    }
    .basic-tile-card.with-shade .title{
        line-height: 1;
    }
    .basic-tile-card.with-shade .description{
        font-size: 14px;
    }

    .basic-tile-card.with-shade .title {
        font-size: 40px;
    }
    .moble-cta-btn{
        text-align: center;
    }
    .moble-cta-btn a{
        padding: 20px 0px 11px 0px !important;
    }

    .basic-tile-card .title,
    .job-item h4.job-title{
        font-size: 20px;
    }
    .job-detail-page .job-details-wrapper h4.heading,
    .solution-detail-page .paragraph--type--explore-services .field--name-field-heading{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .basic-tile-card .description,
    .job-item .job-description{
        font-size: 16px;
    }
    .job-item .job-meta-description,
    .job-detail-page .job-information,
    .job-detail-page .job-details-wrapper,
    .paragraph--type--simple-paragraph .field--name-field-description{
        font-size: 14px;
        line-height: 1.6;
    }
    .basic-tile-card .description :is(h2,h3,h4,h5,h6),
    .job-detail-page .job-information h6,
    .paragraph--type--simple-paragraph .field--name-field-heading,
    .paragraph--type--icon-title-description .field--name-field-title{
        font-size: 18px;
    }

    .tile-card .title{
        font-size: 16px;
    }
    .tile-card .description{
        display: none;
    }
    .image-card .content .title{
        font-size: 18px;
    }

    .capability-statement-description .field--name-field-heading-description{
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }
    /* .capability-statement-description .field--name-field-heading-description .field__item:not(:first-child, :nth-child(2)){
        display: none;
    } */
    .heading-description-cta-img .field--name-body{
        font-size: 16px;
    }
    .service-detail-page .heading-description-cta-img h5{
        font-size: 24px;
    }
    .view-solutions .views-view-responsive-grid--horizontal{
        --views-responsive-grid--column-count: 2 !important;
        --views-responsive-grid--layout-gap: 15px !important;
    }
    .view-latest-news .views-view-responsive-grid--horizontal{
        --views-responsive-grid--column-count: 1 !important;
        --views-responsive-grid--layout-gap: 15px !important;
    }
    .view-latest-news .tile-card{
        min-height: 128px;
    }
    .view-latest-news .view-header a{
        color: var(--color-natural-200);
    }
    .view-procurement-solutions .views-view-responsive-grid--horizontal{
        --views-responsive-grid--column-count: 1 !important;
        --views-responsive-grid--layout-gap: 15px !important;
    }
    .view-procurement-solutions .tile-card{
        min-height: 208px;
    }
    .view-real-world-solutions .views-view-responsive-grid--horizontal{
        --views-responsive-grid--column-count: 1 !important;
        column-gap: 40px !important;
    }
    .view-procurement-solutions .tile-card::after{
        height: 24px;
        width: 24px;
        right: 16px;
        bottom: 16px;
    }
    #block-labusa-nextstep .heading-description-cta-img .field--type-link a{
        min-width: unset;
    }  
    .view-services .views-view-responsive-grid--horizontal{
        --views-responsive-grid--column-count: 1 !important;
        --views-responsive-grid--layout-gap: 40px !important;
    }
    .view-insight .views-view-responsive-grid--horizontal,
    .view-taxonomy-term .views-view-responsive-grid--horizontal{
        --views-responsive-grid--column-count: 1 !important;
        --views-responsive-grid--layout-gap: 40px !important;
    }
    .view-solutions.view-display-id-block_2 .views-view-responsive-grid--horizontal{
        --views-responsive-grid--column-count: 1 !important;
        --views-responsive-grid--layout-gap: 40px !important;
    }
    .page-node-id-454 .paragraph--type--explore-services .field--name-field-add-item{
        grid-template-columns: 1fr;    
    }
    .view-solutions.view-display-id-block_2 .views-view-responsive-grid--horizontal,
    .view-procurement-solutions.view-display-id-block_2 .views-view-responsive-grid--horizontal{
        row-gap: 40px;
    }
    /* ---------------social link footer--------------- */
    .menu--social .navbar-nav{
        gap: 0px !important;
    }
    
}
@media only screen and (max-width: 575px){
    header#site-header .navbar-brand img{
        max-width: 151px;
        padding: 9.5px 11px;
    }
    footer#site-footer .footer-top .region-footer-top-6 ul.navbar-nav{
        flex-direction: column;
    }
    footer#site-footer .footer-top .region-footer-top-6 ul.navbar-nav li{
        width: 100%;
    }
    .hero-banner-wrapper .field--name-body{
        font-size: 16px;
        max-width: 300px;
    }
    .heading-description-cta-img .field--type-image{
        text-align: center;
    }
    .heading-description-cta-img .field--type-image img{
        width: auto;
    }
}



/* _________________social link footer______________________________ */

.menu--social .navbar-nav{
    display: flex !important;
    flex-direction: row;
    padding: 0px !important;
    gap: 16px;
}
.menu--social .navbar-nav .nav-item a{
    font-size: 0px;
}

.menu--social .navbar-nav .nav-item a::before {
    content: '';
    display: inline-block;
    height: 24px;   
    width: 24px;
}
.menu--social .navbar-nav .nav-item a::after {
    content: unset !important;
    
}

.menu--social .navbar-nav .nav-item a[gva_class="social-item linkedin"]::before {
    background: url(../images/linkedin-icon-white.svg) center/contain no-repeat;
}
.menu--social .navbar-nav .nav-item a[gva_class="social-item facebook"]::before{
    background: url(../images/facebook-icon-white.svg) center/contain no-repeat;
}
.menu--social .navbar-nav .nav-item a[gva_class="social-item twitter"]::before{
    background: url(../images/twitter-icon-white.svg) center/contain no-repeat;
}
.menu--social .navbar-nav .nav-item a[gva_class="social-item youtube"]::before{
    background: url(../images/youtube-icon-white.svg) center/contain no-repeat;
}
.menu--social .navbar-nav .nav-item a[gva_class="social-item instagram"]::before{
    background: url(../images/instagram-icon-white.svg) center/contain no-repeat;
}

footer#site-footer .footer-top .menu--social ul.navbar-nav .nav-item a:hover {
    padding-left: 0px;
    border-bottom: unset !important;
}
/* _________________social link end______________________________ */
footer#site-footer .footer-top .menu--social h5{
    border: 0 !important;
}

.heading-description-cta-img h5 .field__item{
    color: var(--color-primary-300);
}
footer#site-footer .footer-top .menu--social h5::after {
    content: unset !important;
}
.field--name-field-select-resources .field__items{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 16px;
}
.field--name-field-select-resources .field__label {
    font-size: 32px;
    font-family: var(--font-roboto);
    color: var(--color-natural-300);
    font-weight: 400;
    line-height: normal;
    margin: 4rem 0 1rem 0;
}
.field--name-field-select-resources .field__items .field__item {
    background: #FFFFFF;
    box-shadow: var(--card-shadow);
    border-radius: 4px;
    position: relative;
    transition: all 0.1s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column
}
.field--name-field-select-resources .field__items .field__item:hover {
    background: var(--color-primary-300);
}
.field--name-field-select-resources .field__items .field__item:hover a{
    color: #FFFFFF;
}
.field--name-field-select-resources .field__items .field__item::after {
    content: '';
    position: absolute;
    right: 16px;
    bottom: 16px;
    height: 24px;
    width: 24px;
    background: url(../images/arrow-right-primary.svg) center/contain no-repeat;
    cursor: pointer;
}
.field--name-field-select-resources .field__items .field__item:hover::after {
    background: url(../images/arrow-right-white.svg) center/contain no-repeat;
}
.field--name-field-select-resources .field__items .field__item a {
	color: #000;
	font-size: 18px;
	margin-bottom: 8px;
	height: 100%;
	padding: 16px;
	margin: 0;
}

/* Description below title */

.paragraph.description-below-title {
	display: flex;
	flex-direction: column;

    .field--name-field-heading {
        order: 0;
    }
    .field--name-field-description-text {
        order: 1;
        margin-bottom: 30px !important;
    }
   .field--name-field-heading-description {
        order: 2;
        margin-bottom: 30px !important;
    }
    .field--name-field-cta {
        order: 5;
    }
}
.image-card .tags_text{

    margin-bottom: .7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3.2em; 
    line-height: 1.6em; 
    white-space: normal;
    word-wrap: break-word;
}

.related-article{
    display: grid;
    grid-template-columns: 1FR 3FR;
    gap: 1rem;
    font-size: 12px;
    margin-bottom: 10px;
    color: var(--color-natural-100);
}
.related-article .title a{
    font-size: 14px !important;
    color: var(--color-natural-300);
    font-weight: 400;
}
.related-article .tags a{
    color: var(--color-primary-100);
}
.related-article .tags a:hover{
    text-decoration: underline;
}