/* ================================
   Web Fonts
================================ */


@font-face {
    font-family: 'Arial';
    src: url('../fonts/Arial-Bold.eot');
    src: url('../fonts/Arial-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Arial-Bold.woff2') format('woff2'),
        url('../fonts/Arial-Bold.woff') format('woff'),
        url('../fonts/Arial-Bold.ttf') format('truetype'),
        url('../fonts/Arial-Bold.svg#Arial-BoldMT') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arial';
    src: url('../fonts/Arial-Medium.eot');
    src: url('../fonts/Arial-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Arial-Medium.woff2') format('woff2'),
        url('../fonts/Arial-Medium.woff') format('woff'),
        url('../fonts/Arial-Medium.ttf') format('truetype'),
        url('../fonts/Arial-Medium.svg#Arial-Mdm') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arial';
    src: url('../fonts/Arial-Regular.eot');
    src: url('../fonts/Arial-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Arial-Regular.woff2') format('woff2'),
        url('../fonts/Arial-Regular.woff') format('woff'),
        url('../fonts/Arial-Regular.ttf') format('truetype'),
        url('../fonts/Arial-Regular.svg#ArialMT') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ================================
   Theme Variables
================================ */
:root {
    --font-primary: "Arial", Helvetica, sans-serif;

    --color-blue: #2C76BE;
    --color-blue-dark: #2A6BA9;
    --color-navy: #1d3155;
    --color-text: #050505;
    --color-muted: #a7a7a7;
    --color-soft: #EEF5FB;
    --color-white: #ffffff;
    --color-black: #000;
    --color-red: red;
    --shadow-card: 0 3px 12px rgb(0 0 0 / 20%);
}

/* ================================
   Base Reset
================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-primary);
    line-height: 1.25;
}

.brand,
.main-menu-link,
.btn-solid-link,
.btn-outline-link,
.service-card-link,
.footer-nav-link {
    color: inherit;
    text-decoration: none;
}

.brand,
.main-menu-link,
.btn-solid-link,
.btn-outline-link,
.service-card-link,
.footer-nav-link,
button {
    transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

button {
    font-family: inherit;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

input,
textarea,
select {
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}

h1 {
    font-weight: 700;
    font-size: 64px;
    line-height: 66px;
}

h2 {
    font-weight: 700;
    font-size: 58px;
    line-height: 100%;
}

h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
}

h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
}

h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
}

h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
}

p,
li {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
}

/* ================================
   Common Layout
================================ */
.lg-container {
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.sm-container {
    width: 100%;
    max-width: 995px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.section-kicker {
    margin-bottom: 16px;
    color: var(--color-muted);
}

.btn-solid-link,
.btn-outline-link {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 12px;
}

.btn-solid-link::before,
.btn-outline-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: var(--color-blue);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 320ms ease;
}

.btn-solid-link:hover::before,
.btn-solid-link:focus-visible::before,
.btn-outline-link:hover::before,
.btn-outline-link:focus-visible::before {
    transform: scaleX(1);
}

.btn-solid-link:active,
.btn-outline-link:active {
    transform: scale(.98);
}

.nav-contact .btn-solid-link:hover {
    transform: scale(1.04);
}

.btn-solid-link {
    background: var(--color-blue);
    color: var(--color-white);
}

/* .btn-solid-link:hover,
.btn-solid-link:focus-visible {
    box-shadow: 0 8px 18px rgb(29 49 85 / 18%);
} */

.btn-outline-link {
    min-width: 270px;
    height: 53px;
    border: 1.5px solid #000;
    background: var(--color-white);
    color: #000;
    font-size: 16px;
}

.btn-outline-link:hover,
.btn-outline-link:focus-visible {
    border-color: var(--color-white);
    color: var(--color-white);
}

.services-section h2,
.approach-section h2,
.cta-section h2 {
    color: #000;
}

/* ================================
   Header Section
================================ */
.site-header {
    position: relative;
    z-index: 100;
    height: 120px;
    background: var(--color-white);
    box-shadow: 0 0 0 rgb(0 0 0 / 0%);
    transition:height 0.3s ease, box-shadow 260ms ease;
}

.site-header.is-sticky {
    position: sticky;
    top: 0px;
    height:80px;
    box-shadow: 0 8px 28px rgb(0 0 0 / 10%);
}

.site-header>.lg-container {
    height: 100%;
}

.header-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.brand {
    flex: 0 0 380px;
    display: flex;
    align-items: center;
    width: max-content;
}

.brand img {
    width: 320px;
    height: auto;
    transition: 300ms all;
}

.site-header.is-sticky .brand img{
    width: 220px;
}

.header-inner .main-menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    gap: 58px;
    margin: 0;
    padding: 3px 0 0;
    list-style: none;
    font-size: 17px;
}

.header-inner .main-menu li.hide-desktop-menu {
    display: none;
}

.main-menu li,
.nav-contact li {
    list-style: none;
}

.nav-contact li:not(:first-child) {
    display: none;
}

.nav-contact li {
    width: 50%;
}
.site-header.is-sticky .header-inner .main-menu li a{
    font-size: 18px;
}
.menu-item-has-dropdown {
    position: relative;
}

.main-menu-link {
    position: relative;
    padding-bottom: 8px;
    color: var(--color-text);
}

.main-menu-link.has-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--color-blue);
    display: inline-block;
    transform: translateY(2px) rotate(0deg);
    transition: transform 260ms ease;
}

.menu-item-has-dropdown:hover .dropdown-arrow,
.menu-item-has-dropdown:focus-within .dropdown-arrow {
    transform: translateY(0px) rotate(180deg);
}

.main-menu-link:hover,
.main-menu-link:focus-visible {
    color: var(--color-blue);
}

.main-menu-link:hover::after,
.main-menu-link:focus-visible::after {
    transform: scaleX(1);
}

.services-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 20;
    min-width: 292px;
    margin: 0;
    padding: 12px;
    list-style: none;
    border: 1px solid rgb(29 49 85 / 10%);
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 0 18px 42px rgb(29 49 85 / 15%);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.menu-item-has-dropdown::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -22px;
    right: -22px;
    height: 22px;
}

.menu-item-has-dropdown:hover .services-dropdown,
.menu-item-has-dropdown:focus-within .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.services-dropdown-link {
    display: block;
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--color-navy);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    text-decoration: none;
}

.services-dropdown-link:hover,
.services-dropdown-link:focus-visible {
    background: rgb(238 245 251 / 90%);
    color: var(--color-blue);
}

.nav-panel {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-contact {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-contact .btn-solid-link {
    min-width: 153px;
    height: 58px;
    font-size: 17px;
    transition: all 0.3s ease-in-out;
}
.site-header.is-sticky .nav-contact .btn-solid-link{
    height: 45px;
}

.nav-contact .btn-solid-link:active,
.nav-toggle:active {
    transform: scale(.96);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 0px solid rgb(29 49 85 / 25%);
    border-radius: 0%;
    background: var(--color-white);
    cursor: pointer;
}

.nav-toggle span {
    width: 34px;
    height: 2px;
    display: block;
    border-radius: 0px;
    background: var(--color-navy);
    transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    border-color: var(--color-blue);
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ================================
   Hero Section
================================ */
.hero-section {
    position: relative;
    min-height: calc(100vh - 200px);
    overflow: hidden;
    display: flex;
    align-items: end;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-section>.lg-container {
    height: 100%;
}

.hero-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.hero-card {
    width: 710px;
    min-height: 350px;
    padding: 43px 31px 39px;
    background: var(--color-blue);
    color: var(--color-white);
}

.hero-card h6,
.sst-hero-card h6 {
    margin-bottom: 27px;
    color: rgb(255 255 255 / 60%);
}

.hero-card h1 {
    color: var(--color-white);
}

.hero-actions {
    display: flex;
    gap: 31px;
    margin-top: 43px;
}

.hero-actions .btn-outline-link:last-child {
    background: #dedede;
}

/* ================================
   Services Section
================================ */
.services-section,
.srvc-listing-inner-sec {
    padding: 82px 0 90px;
    background: var(--color-white);
}

.services-section .services-grid {
    margin-top: 34px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    width: 100%;
}

.service-card {
    flex: 0 1 calc((100% - 64px) / 3);
    min-height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    box-shadow: 0 3px 12px rgb(0 0 0 / 18%);
    transition: background-color 260ms ease, color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.service-card:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    aspect-ratio: 16 / 7;
    height: auto;
    object-fit: cover;
}

.service-content {
    position: relative;
    flex: 1;
    min-height: 236px;
    padding: 29px 23px 100px;
}

.service-content h3 {
    margin-bottom: 20px;
}

.service-card-link {
    position: absolute;
    right: 22px;
    bottom: 18px;
    font-size: 28px;
    line-height: 1;
}

.service-card-link svg path {
    transition: fill 260ms ease;
}

.service-card:hover .service-card-link svg path {
    fill: var(--color-white);
}

.service-card-link:hover,
.service-card-link:focus-visible {
    color: var(--color-navy);
    transform: translateX(8px);
}

.service-card.featured .service-card-link {
    color: var(--color-white);
}

.service-more {
    margin-top: 74px;
    text-align: center;
}

/* ================================
   Approach Section
================================ */
.approach-section {
    padding: 88px 0 92px;
    background: var(--color-soft);
}

.approach-grid {
    display: flex;
    gap: 32px;
}

.approach-copy {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 8px;
}

.approach-copy h2 {
    max-width: 665px;
}

.approach-copy h4 {
    margin: 52px 0 33px;
    color: var(--color-muted);
}

.approach-copy ul {
    display: flex;
    flex-direction: column;
    gap:42px 0;
    margin-bottom: 54px;
    list-style: none;
}

.approach-copy li {
    position: relative;
    padding-left: 50px;
    font-size: 24px;
    font-weight: 700;
}

.approach-copy li::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 3px;
    width: 29px;
    height: 25px;
    border-radius: 50%;
    background: var(--color-navy);
}

.approach-copy .btn-outline-link {
    min-width: 305px;
}

.approach-image {
    flex: 0 0 845px;
    min-width: 0;
    width: 100%;
    object-fit: cover;
}

/* ================================
   CTA Section
================================ */
.cta-section {
    padding: 50px 0;
    background: var(--color-blue);
    color: var(--color-white);
    text-align: center;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mail-icon {
    margin-bottom: 60px;
}

.cta-section h2 {
    color: var(--color-white);
}

.cta-section p {
    margin: 44px 0;
    color: rgb(255 255 255 / 62%);
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
}

.cta-inner .btn-outline-link {
    min-width: 230px;
}

/* ================================
   Contact Page Form Section
================================ */
.contact-form-section {
    padding: 144px 0 91px;
    background: var(--color-white);
}

.contact-form-wrapper {
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

.contact-form-card,
.contact-info-card {
    border: 1px solid #5f5f5f;
    background: var(--color-white);
    color: var(--color-black);
}

.contact-form-card {
    width: 52%;
    padding: 46px 64px 40px;
}

.contact-info-card {
    width: 48%;
    padding: 46px 46px 33px;
}

.contact-form-card h2,
.contact-info-card h2 {
    margin: 0;
    color: var(--color-black);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
}

.contact-form-card h2 {
    margin-bottom: 60px;
}
.contact-info-card h2 {
    margin-bottom: 54px;
}

.contact-page-form {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-field {
    min-width:100%;
    max-width: 100%;
}
.contact-field.field-width-25 {
    width: calc(25% - 25px);
    min-width: auto;
}
.contact-field.field-width-33 {
    width: calc(33.33% - 25px);
    min-width: auto;
}
.contact-field.field-width-50 {
    width: calc(50% - 25px);
    min-width: auto;
}
.contact-field.field-width-66 {
    width: calc(66.66% - 25px);
    min-width: auto;
}
.contact-field.field-width-75 {
    width: calc(75% - 25px);
    min-width: auto;
}
.contact-field.field-width-100 {
    width: calc(100% - 0px);
    min-width: auto;
}

.contact-field label, .contact-page-form label {
    display: block;
    margin: 0 0 18px 4px;
    color: var(--color-black);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}
.contact-field .error {
    color: #ff6666;
    margin-top: 8px;
}
.contact-page-form .success{
    color: #008000;
    margin-top: 8px;
}
.contact-field input::placeholder, .contact-field textarea::placeholder{
    font-size: 24px;
    font-weight: 300;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid var(--color-black);
    border-radius: 8px;
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
    -webkit-appearance: none;
    appearance: none;
}

.contact-field input,
.contact-field select {
    height: 62px;
    padding: 0 8px;
}

.contact-field textarea {
    min-height: 89px;
    resize: vertical;
    padding: 14px 8px;
}
.contact-field select{
    background-image: url("../images/dropdown-arrow.png");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 15px 15px;
    padding-right: 40px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #bcc6cf;
    opacity: 1;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 2px rgb(44 118 190 / 15%);
}

.contact-select-field {
    position: relative;
}

.contact-select-field::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 25px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--color-blue);
}

.contact-field select {
    padding-right: 36px;
    color: var(--color-black);
}

.contact-submit-button {
    width: 100%;
    height: 46px;
    margin-top: 4px;
    border: 1px solid #6f6f6f;
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-black);
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.contact-submit-button:hover,
.contact-submit-button:focus-visible {
    border-color: var(--color-blue);
    background: var(--color-blue);
    color: var(--color-white);
}

.contact-submit-button:active {
    transform: scale(.99);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-info-list li {
    display: flex;
    gap: 14px;
    align-items: start;
}

.contact-info-list li:nth-child(2) p a {
    text-decoration: none;
}

.contact-info-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    color: var(--color-blue);
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

.contact-info-list h3 {
    margin: 0 0 8px;
    color: var(--color-black);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.contact-info-list p,
.contact-info-list a {
    color: var(--color-black);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.contact-info-list a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-info-list a:hover,
.contact-info-list a:focus-visible {
    color: var(--color-blue);
}


/* ================================
   Footer Section
================================ */
.site-footer {
    background: var(--color-blue-dark);
    color: var(--color-white);
}

.footer-main {
    display: flex;
    gap: 120px;
    padding: 50px 0;
}

.footer-main> :nth-child(1) {
    flex: 1.35 1 0;
    min-width: 0;
}

.footer-main> :nth-child(2) {

    flex: 1.25 1 0;
    min-width: 0;
}

.footer-main> :nth-child(3) {
    flex: .85 1 0;
    min-width: 0;
}

.footer-main h4 {
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-main p {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    max-width: 466px;
    margin-bottom: 12px;
    color: rgb(255 255 255 / 83%);
}

.footer-main address {
    font-style: normal;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer-nav li,
.footer-nav-link {
    color: rgb(255 255 255 / 83%);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.18;
}

.footer-nav-link:hover,
.footer-nav-link:focus-visible {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 22px;
    padding-bottom: 24px;
    border-top: 1px solid rgb(255 255 255 / 55%);
}

.footer-bottom p {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
}


/* inside page */
.hero-pagination li {
    list-style-type: none;
    font-family: Arial;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    color: #FDFDFD66;
}

.hero-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.hero-pagination li a {
    text-decoration: none;
    color: #FFFFFFB2;
}

.hero-pagination li:not(:last-child)::after {
    content: '';
    position: relative;
    display: inline-block;
    height: 10px;
    width: 1px;
    background: rgb(255 255 255 / 60%);
    transform: translate(5px, 0px) rotate(18deg);
}

/* ================================
   Sante Securite Page
================================ */
.sst-page {
    background: #fff;
}

.sst-hero {
    padding: 0 0 0px;
}

.sst-hero-frame {
    position: relative;
    height: 435px;
    overflow: hidden;
    background: var(--color-blue);
}

.sst-hero .lg-container {
    max-width: none;
    padding: 0;
}

.sst-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% 40%;
}

.sst-hero-card {
    position: absolute;
    left: max(30px, calc((100vw - 1650px) / 2 + 23px));
    bottom: 0;
    width: 835px;
    min-height: 236px;
    padding: 30px 40px 30px;
    background: var(--color-blue);
    color: #fff;
}

.sst-hero-card h1 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 64px;
    line-height: .92;
}

.sst-hero-card p {
    max-width: 715px;
    color: rgb(255 255 255 / 88%);
    font-size: 24px;
    line-height: 1.16;
}

.sst-intro {
    padding: 80px 0 80px;
}

.sst-intro-grid {
    display: flex;
    gap: 0;
    box-shadow: 0 8px 24px rgb(0 0 0 / 14%);
}

.sst-panel {
    flex: 1 1 0;
    min-height: 320px;
    padding: 66px 76px 54px;
}

.sst-panel h2,
.sst-benefits h2,
.sst-method h2,
.sst-services h2 {
    margin-bottom: 18px;
    color: #080808;
    font-size: 58px;
    line-height: 1;
}

.sst-panel p {
    font-size: 24px;
    line-height: 1.16;
}

.sst-panel-light {
    background: #fff;
}

.sst-panel-blue {
    background: var(--color-blue);
    color: #fff;
}

.sst-panel-blue h2 {
    color: #fff;
}

.sst-panel-blue p {
    color: rgb(255 255 255 / 88%);
}

.sst-benefits {
    padding: 80px 0 80px;
}

.sst-kicker {
    margin-bottom: 8px;
    color: #7e8790;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 27px 48px;
}

.benefit-card {
    flex: 0 1 calc((100% - 48px) / 2);
    min-height: 160px;
    padding: 44px 52px;
    background: #fff;
    box-shadow: 0px 0px 16px 0px #00000040;
    transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}
.benefit-card h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

.method-item h3 {
    margin-bottom: 8px;
    color: var(--color-black);
    line-height: 1;
}

.service-tile h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.method-item h3 {
    margin-bottom: 25px;
}

.benefit-card p {
    font-size: 24px;
}

.method-item p {
    color: var(--color-black);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.service-tile p {
    font-size: 24px;
}

.benefit-card-primary h3,
.benefit-card-primary p {
    color: #fff;
}

.sst-method {
    padding: 80px 0 80px;
}

.sst-method h2 {
    margin-bottom: 70px;
    text-align: center;
}

.method-timeline {
    padding-top: 100px;
    position: relative;
    width: min(848px, 100%);
    margin: 0 auto;
    list-style: none;
    counter-reset: method-step;
}

.method-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    height: calc(90% + 5px);
    left: 50%;
    width: 9px;
    transform: translateX(-50%);
    background: var(--color-blue);
}

.method-item {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: flex-start;
}

.method-item::before {
    content: counter(method-step);
    counter-increment: method-step;
    position: absolute;
    top: -22px;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translateX(-50%);
    border: 0;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-blue);
    font-size: 24px;
    font-weight: 700;
}

.method-item article {
    width: 320px;
    min-height: 175px;
    padding: 24px 25px;
    background: var(--color-soft);
    box-shadow: 0px 0px 10px 2px #00000033;
    transition: opacity 520ms ease, box-shadow 260ms ease, transform 620ms cubic-bezier(.22, 1, .36, 1);
}

.method-reveal-ready .method-item article {
    opacity: 0;
    transform: translateX(-76px);
}

.method-reveal-ready .method-item:nth-child(even) article {
    transform: translateX(76px);
}

.method-reveal-ready .method-item.is-visible article {
    opacity: 1;
    transform: translateX(0);
}

.method-item:nth-child(odd) {
    justify-content: flex-start;
}

.method-item:nth-child(even) {
    justify-content: flex-end;
}

.sst-services {
    padding: 90px 0 90px;
    background: var(--color-soft);
}

.sst-services h2 {
    margin-bottom: 58px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-tile {
    flex: 0 1 calc((100% - 30px) / 2);
    min-height: 175px;
    padding: 42px 52px;
    background: #fff;
    box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
    transition: color 260ms ease, background-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.service-tile-primary h3,
.service-tile-primary p {
    color: #fff;
}

/* ================================
   About Page
================================ */
.about-page .about-hero .sst-hero-card {
    width: 835px;
}

.about-content-section {
    margin: 70px 0 70px;
    background: var(--color-white);
}

.about-intro {
    max-width: 1460px;
}

.about-intro h2,
.about-method h2,
.about-values h2,
.about-location h2 {
    color: var(--color-black);
}

.about-intro h2 {
    max-width: 1260px;
    margin-bottom: 22px;
}

.about-intro p {
    color: var(--color-black);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
}

.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 420px));
    gap: 32px;
    margin: 46px 0 0px;
    justify-content: space-between;
}

.about-stat-card {
    min-height: 221px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: 0 3px 12px rgb(0 0 0 / 18%);
    text-align: center;
}

.about-stat-card strong {
    display: block;
    font-size: 58px;
    font-weight: 700;
    line-height: .95;
}

.about-stat-card span {
    display: block;
    margin-top: 8px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
}
.about-stat-card-primary strong {
    font-size: 42px;
}

.about-method,
.about-values,
.about-location {
    margin:70px 0px;
}

.about-kicker {
    margin-bottom: 13px;
    color: var(--color-muted);
}

.about-method h2,
.about-values h2,
.about-location h2 {
    margin-bottom: 28px;
}

.about-method-grid,
.about-location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:45px;
}

.about-feature-card,
.about-value-card,
.about-location-card,
.about-map-card {
    background: var(--color-white);
    box-shadow: 0 3px 12px rgb(0 0 0 / 18%);
    min-width: 0;
}

.about-feature-card {
    min-height: 260px;
    padding: 50px 34px 50px;
}

.about-card-heading {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 34px;
}

.about-card-heading > div {
    min-width: 0;
}

.about-icon,
.about-mini-icon,
.about-map-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--color-blue);
    color: var(--color-white);
}

.about-icon {
    width: 91px;
    height: 91px;
}

.about-icon svg {
    width: 42px;
    height: 43px;
}

.about-icon-small {
    width: 68px;
    height: 68px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.about-feature-card h3,
.about-value-card h3,
.about-location-card h3,
.about-map-card h3 {
    color: var(--color-black);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.08;
}

.about-card-heading p {
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
}

.about-feature-card > p,
.about-location-card > p {
    color: var(--color-black);
    font-size: 24px;
    line-height: 1.25;
}

.about-check-list {
    display: grid;
    gap: 30px;
    margin-top: 22px;
    list-style: none;
}

.about-check-list li {
    position: relative;
    padding-left: 55px;
    color: var(--color-black);
    font-size: 24px;
    line-height: 1.2;
}

.about-check-list li::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-blue);
}
.about-check-list li::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 10px;
    width: 16px;
    height: 8px;
    border-left: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(-45deg);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 45px;
}

.about-value-card {
    min-height: 150px;
    padding: 24px 24px 28px;
}

.about-mini-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
}
.about-value-card h3 {
    margin-bottom: 12px;
}

.about-value-card p {
    color: var(--color-black);
    font-size: 24px;
    line-height: 1.2;
}

.about-location-card,
.about-map-card {
    min-height: 160px;
    padding: 28px 32px;
}

.about-location-card .about-card-heading {
    margin-bottom: 16px;
}
.about-map-icon img {
    width: 91px;
    height: 91px;
    object-fit: contain;
}
.about-map-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-map-icon {
    margin-bottom: 22px;
    background: transparent;
    color: var(--color-blue);
}

.about-map-card p {
    margin-top: 12px;
    color: var(--color-black);
    font-size: 24px;
    line-height: 1.2;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 12px 17px;
    margin-top: 25px;
}
.footer-links a img {
    filter: invert(1);
    max-width: 33px;
}
