/*
 *---------------------------------------------------------------
 * LAYOUT & UTILITIES
 *---------------------------------------------------------------
 *
 */

html {
    box-sizing: border-box;
    height: 100%;
    font-size: 100%;
}

body {
    font-family: aktiv-grotesk, sans-serif;
    font-style: normal;
    font-weight: 400;
    /*font-variation-settings:*/
    /*        "wdth" 100;*/
    /*font-size: 0.75em;*/ /*12px*/
    font-size: 0.875em; /*14px*/
    /*font-size: 1em;*/ /*16px*/
    color: #1a321a;
}

::selection {
    background-color:#333;
    color:#fff;
}

*, *:before, *:after {
    box-sizing: inherit;
}

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

.clear:before, .clear:after {
    content:'';
    display:table;
}

.clear:after {
    clear:both;
}

.fl {
    float:left;
}

.fr {
    float:right;
}

.w_90 {
    width:90%;
}

.w_80 {
    width:80%;
}

.w_70 {
    width:70%;
}

.w_60 {
    width:60%;
}

.w_50, .half {
    width:50%;
}

.w_40 {
    width:40%;
}

.w_33_3, .third {
    width:33.3333333%;
}

.w_30 {
    width:30%;
}

.w_25, .quarter {
    width:25%;
}

.w_20, .fifth {
    width:20%;
}

.w_16_6, .sixth {
    width:16.6666666%;
}

.w_12_5, .eighth {
    width:12.5%;
}

.w_10, .tenth {
    width:10%;
}

.text_center {
    text-align: center;
}

/*
 *---------------------------------------------------------------
 * SITE LINKS
 *---------------------------------------------------------------
 *
 */

a:link {
    font-family: aktiv-grotesk, sans-serif;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    /*color:#2c82c9;*/
}

a:hover {
    /*text-decoration: underline;*/
    /*color: #bb1cc9;*/
}

a:active {
    /*text-decoration: underline;*/
}

/* Stop iPhone changing numbered links to telephone numbers */

a[href^=tel] {
    text-decoration:inherit;
    color: inherit;
}

/*
 *---------------------------------------------------------------
 * TEXT COLOURS
 *---------------------------------------------------------------
 *
 */

p {
    font-family: aktiv-grotesk, sans-serif;
    font-style: normal;
    font-weight: 400;
}

h1 {
    color:#2c82c9;
}

h2 {
    font-family: aktiv-grotesk, sans-serif;
    font-style: normal;
    font-weight: 700;
}

h3 {
    font-family: aktiv-grotesk, sans-serif;
    font-style: normal;
    font-weight: 700;
}

.c_1 {
    color: #000;
}

.c_2 {
    color: #fff;
}

.c_3 {
    color:#2c82c9;
}

.c_4 {
    color: #bb1cc9;
}

.c_5 {
    color: #13c975;
}

.c_6 {
    color: #c92a12;
}

/*
 *---------------------------------------------------------------
 * BACKGROUND COLOURS
 *---------------------------------------------------------------
 *
 */

.bg_c_1 {
    background-color: #000;
}

.bg_c_2 {
    background-color: #fff;
}

.bg_c_3 {
    background-color: #2c82c9;
}

.bg_c_4 {
    background-color: #bb1cc9;
}

.bg_c_5 {
    background-color: #13c975;
}

.bg_c_6 {
    background-color: #c92a12;
}

/*
 *---------------------------------------------------------------
 * FORMS
 *---------------------------------------------------------------
 *
 */

fieldset {
    border: none;
    padding: 0;
}

label {
    padding: 0.5em 0;
    display: inline-block;
}

input, select, textarea {
    border:1px solid #d1d1d1;
    width:100%;
    padding: 0.5em;
    outline: none;
    transition: box-shadow 0.30s ease-in-out;
    /*transition: border 0.30s ease-in-out;*/
}

textarea {
    resize: none;
}

select {
    background: transparent url('../assets/down_arrow.svg') no-repeat right;
    background-size: contain;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 2px rgba(81, 203, 238, 1);
    /*border:1px solid rgba(81, 203, 238, 1);*/
}

input[type="submit"] {
    width:20%;
    margin-top: 0.2em;
    background-color:#2c82c9;
    color: #fff;
    transition: background-color 0.8s ease;
}

input[type="submit"]:hover {
    background-color: #bb1cc9;
}

::-webkit-input-placeholder {
    color: #d1d1d1;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

::-moz-placeholder {
    color: #d1d1d1;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
    color: transparent;
}

:-ms-input-placeholder {
    color: #d1d1d1;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    color: transparent;
}

.error input, .error textarea {
    background-color: #b8312f;
    color: #fff;
}

/*
 *---------------------------------------------------------------
 * TABLES
 *---------------------------------------------------------------
 *
 */

table {
    padding:0.4em;
}

tr:nth-child(odd) {
    background: #f9f9f9;
}

th, td {
    border: 1px solid #d1d1d1;
    padding:0.6em;
    vertical-align: top;
}

/*
 *---------------------------------------------------------------
 * LIVE SEARCH
 *---------------------------------------------------------------
 *
 */

.search_box {
    background-color: #666;
    width:100%;
    text-align: center;
    display: none;
    height:54px;
    opacity: 0.8;
    position: fixed;
    z-index: 999;
}
.search_box input {
    width:60%;
    margin: 10px auto;
    padding: 6px;
}

.close_search {
    float:right;
    padding:10px 20px;
    margin: 2px;
    cursor: pointer;
}

.live_search {
    background-color: #666;
    left: -9999px;
    min-height: auto;
    position: relative;
    top:54px;
    z-index: 999;
}

.live_search.active {
    background-color: #666;
    overflow: scroll;
    min-height: 100%;
    left: auto;
    opacity: 0.9;
}

/*
 *---------------------------------------------------------------
 * WRAPPERS & CONTAINERS
 *---------------------------------------------------------------
 *
 */

.wrapper {
    position: relative;
    overflow: hidden;
}

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

.container-two {
    max-width: 1270px;
    width: 100%;
    margin: 0 auto;
}

/*
 *---------------------------------------------------------------
 * NAV WRAPPER
 *---------------------------------------------------------------
 *
 */

.wrapnav {
    position: fixed;
    /*max-height: 72px;*/
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
}

.menuIcon {
    position: absolute;
    right: 20px;
    top: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menuIcon:hover span {
    color: var(--yellow);
}

.navbar {
    /*display: flex;*/
    /*justify-content: space-between;*/
    align-items: center;
    background: #fff;
    padding: 15px 30px;
}

.logo {
    /*margin-bottom: 15px;*/;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 30px;
}

/*
 *---------------------------------------------------------------
 * MAIN MENU
 *---------------------------------------------------------------
 *
 */

.nav-links ul {
    display: none;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links ul.on {
    display: flex;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 24px;
    font-size: 16px;
    font-weight: 300;
    border:1px solid black;
    background: var(--black);
}


.nav-links a:hover {
    border:1px solid var(--yellow);
    background: var(--yellow);
    /*border-radius: 3px;*/
    color: var(--black);
}

.nav-links  a.contact-btn {
    background: var(--yellow);
    border:1px solid var(--yellow);
}

.nav-links ul li ul a:hover {
    background: var(--yellow);
    border:2px solid var(--yellow);
}

.nav-links ul li {
    margin-top: 15px;
}

.nav-links ul li a {
    /*position: relative;*/
    /*border: 1px solid var(--white);*/
}

.nav-links ul.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    min-width: 160px;
    z-index: 1000;
    padding: 0;
}

.nav-links ul .dropdown li {
    display: block;
}

.dropdown li a {
    padding: 10px 15px;
    var(--white)-space: nowrap;
}

/*.material-symbols-outlined {*/
/*    vertical-align: middle;*/
/*    font-size: 18px;*/
/*}*/

.subwrapper {
    position: absolute;
    display: none;
    width: 100%;
    top: 55px;
    padding-top: 15px;
    left: 0;
}

.subwrapper > div {
    background: black;
    border-bottom: 1px solid #444444;
}

.subwrapper .container > div {
    padding: 3em;
}

.subwrapper li .subwrapper {
    outline: red solid 1px;
    /*position: relative;*/
}

.mainMenu .subwrapper .container {
    max-width: 1300px;
}

.subNavWrap ul.mainMenu {
    position: relative;
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));*/

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    flex-wrap: nowrap;
    /*gap: 2rem;*/
    list-style: none;
    padding: 3rem 0 0 0;
    margin: 2rem 0;
    background: #000;
}


.subNavWrap ul.mainMenu {
    flex-wrap: wrap;
}

.subNavWrap ul.mainMenu li {
    flex: 1 0 25%; /* explanation below */
    padding-left: 10%;
}

.subNavWrap #mn2.mainMenu:after {
    position: absolute;
    display: block;
    background: url("../assets/s.svg") no-repeat left center;
    content: 'Sectors';
    color: var(--white);
    font-weight: bold;
    padding-left: 40px;
    font-size: 2em;
    left: 0;
    top: 0;
}

.subNavWrap #mn4.mainMenu:after {
    position: absolute;
    display: block;
    background: url("../assets/s.svg") no-repeat left center;
    content: 'About';
    color: var(--white);
    font-weight: bold;
    padding-left: 40px;
    font-size: 2em;
    left: 0;
    top: 0;
}

.subNavWrap ul li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 20px;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    padding:  0.4rem;
    text-align: left;
    border: 2px solid transparent;
    position: relative;
    background-color: #000;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Highlighted (yellow) version */
.subNavWrap ul li a:hover {
    background-color: #FAE153;
    color: black;
}

/* Optional hover effect */
.subNavWrap ul li a:hover {
    transform: scale(1.05);
}

/* Icons via pseudo-elements */
.subNavWrap ul li a::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    min-width: 50px;
    /*margin-bottom: 1rem;*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.subNavWrap ul li a::after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    min-width: 50px;
    /*margin-bottom: 1rem;*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    position: absolute;
    z-index: 1;
    opacity: 0;
}

.subNavWrap ul li a:hover::before {
    opacity: 0;
}
.subNavWrap ul li a:hover::after {
    opacity: 1;
}

/* Individual icon assignment */
.menuLink7::before { background-image: url('../assets/Surface_Refined v2-30.png'); }
.menuLink8::before { background-image: url('../assets/Surface_Refined v2-28.png'); }
.menuLink9::before { background-image: url('../assets/Surface_Refined v2-27.png'); }
.menuLink10::before { background-image: url('../assets/Surface_Refined v2-29.png'); }
.menuLink11::before { background-image: url('../assets/Surface_Refined v2-23.png'); }
.menuLink12::before { background-image: url('../assets/Surface_Refined v2-24.png'); }
.menuLink13::before { background-image: url('../assets/industrial-b.svg'); }
.menuLink18::before { background-image: url('../assets/people_1.png'); }


.menuLink7::after { background-image: url('../assets/Surface_Refined v2-19.png'); }
.menuLink8::after { background-image: url('../assets/Surface_Refined v2-21.png'); }
.menuLink9::after { background-image: url('../assets/Surface_Refined v2-17.png'); }
.menuLink10::after { background-image: url('../assets/Surface_Refined v2-20.png'); }
.menuLink11::after { background-image: url('../assets/Surface_Refined v2-14.png'); }
.menuLink12::after { background-image: url('../assets/Surface_Refined v2-15.png'); }
.menuLink13::after { background-image: url('../assets/industrial-a.svg'); }
.menuLink18::after { background-image: url('../assets/people_2.png'); }
/*NAV END*/

/*
 *---------------------------------------------------------------
 * HERO SLIDER
 *---------------------------------------------------------------
 *
 */

/* Hero STARTS */

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    position: absolute;
    bottom: 6%;
    left: 5%;
    color: var(--white);
}

.overlay h1 {
    font-family: acumin-variable, sans-serif;
    font-variation-settings: "slnt" 0, "wdth" 50, "wght" 800;
    font-size: 40px;
    color: var(--white);
    margin: 0;
}

.overlay img.icon {
    width: 80px;
    margin-bottom: 20px;
}

/*.overlay img.svg {*/
/*    width: 60px;*/
/*    margin-bottom: 30px;*/
/*    outline: red solid 1px;*/
/*}*/

/* Hero STARTS */

/*
 *---------------------------------------------------------------
 * SAM INTRO ABOUT US
 *---------------------------------------------------------------
 *
 */

.about-section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    min-height: 500px;
}

.about-image {
    position: relative;
    flex: 1 1 50%;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*position: absolute;*/
    top: auto;
    bottom: 40px;
}

.about-text {
    flex: 1 1 50%;
    background-color: #000;
    color: #fff;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
    color: #FFFFFF;
}

.about-text p {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.5;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
    color: #FFFFFF;
}

.about-text ul li {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-yellow {
    background-color: var(--popyellow);
    color: #000;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 2px;
    max-width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.btn-yellow:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-yellow.white {
    background-color: var(--white);
    color: var(--black);
}
.btn-yellow.white:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-yellow.black {
    background-color: var(--popyellow);
    color: var(--black);
}
.btn-yellow.black:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-yellow .material-symbols-outlined {
    font-size: 24px;
    margin-left: 10px;
    line-height: 24px;
}


/*
 *---------------------------------------------------------------
 * PAGE CONTENT 2
 *---------------------------------------------------------------
 *
 */

.content_2-section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    min-height: 500px;
}

.content_2-image {
    position: relative;
    /*flex: 1 1 50%;*/
}
.content_2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*position: absolute;*/
    top: auto;
    bottom: 40px;
}

.content_2-text {
    flex: 1 1 50%;
    background-color: #000;
    color: #fff;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content_2-text h2 {
    font-size: 22px;
    margin-bottom: 20px;
    /*font-weight: bold;*/
    line-height: 1.4;
    color: var(--yellow);
}

.content_2-text p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.5;
}

.content_2-text h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
    color: var(--yellow);
}

.content_2-text ul li {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1.5;
}

.content_2-text ul {
    padding-left: 20px;
}

/*
 *---------------------------------------------------------------
 * SAM INTRO TABLET SECTION HOMEPAGE
 *---------------------------------------------------------------
 *
 */

.sam-section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    background-color: var(--gray);
    padding: 60px 40px;
    align-items: center;
}

.sam-text-box {
    /*outline: red solid 1px;*/
    /*flex: 1 1 70%;*/
    /*padding: 40px;*/
}

.sam-image {
    flex: 1 1 30%;
    text-align: center;
}

.sam-image img {
    max-width: 100%;
    height: auto;
    transform: rotate(-5deg);
}


.sam-text-box img {
    max-width: 60%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sam-text-box img.sam_logo {
    margin-bottom: 20px;
}

.sam-text-box h3 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
    color: #000;
}

.sam-text-box > div {
    padding-right: 20%;
}



.sam-text-box p {
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
}

.sam-text-box > div p {
    font-size: 1rem;

}

.sam-text-box.light-text h3,
.sam-text-box.light-text p {
    color: #FFFFFF;
}






.angle-box {
    background: #fff;

    padding: 40px;


    z-index: 2;
    position: relative;
}





.ipad_content .content-box h2 {
    color: var(--black);
    font-size: 25px;
    font-weight: 700;
}

.ipad_content .content-box p {
    color: var(--black);
    font-size: 18px;
    line-height: 1.5;
}


.sam_section_3 {
    background-color: var(--gray);
    padding: 40px;
    text-align: center;
}

.sam_section_3 > div {
    display: flex;
    flex-direction:column;
    gap: 40px;
}

.sam_section_3 .text-block {
}

.sam_section_3 div > div {
    min-height: 300px;
    clip-path: polygon(10% 0%, 100% 0, 100% 90%, 90% 100%, 0 100%, 0% 10%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

/*.sam_section_3 div > div:nth-child(1) {*/
/*    background-color: var(--yellow);*/
/*}*/

/*.sam_section_3 div > div:nth-child(2)  {*/
/*    background-color: var(--black);*/
/*}*/

/*.sam_section_3 div > div:nth-child(2) p {*/
/*    background-color: var(--black);*/
/*    color: var(--yellow);*/
/*}*/


.sam_tm {
    background-image: url('/application/themes/default/assets/sam-stone.jpg')
}
/*
 *---------------------------------------------------------------
 * SERVICES SLIDER
 *---------------------------------------------------------------
 *
 */

.services-section {
    background-color: var(--gray);
    padding: 40px;
    text-align: center;
}

.services-container {
    display: flex;
    /*outline: red solid 1px;*/
    /*overflow-x: auto;*/
    gap: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    justify-content: center;
}

.service-card {
    /*background: url("../assets/box_background.svg") no-repeat center;*/
    background-size: contain;
    padding: 0;
    border-radius: 8px;
    /*min-width: 250px;*/
    width: 450px;
    /*height: 500px;*/
    /*flex: 0 0 auto;*/
    /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);*/
    text-align: left;
    /*outline: red solid 1px;*/
    display: flex;
    align-items: start;
    justify-content: center;
    /*outline: #0c9ee2 solid 1px;*/
}

.service-card > div {
    /*padding: 30px;*/
    display: flex;
    flex-direction: column;
    min-width: 100px;
    /*outline: red solid 1px;*/
}

.service-card .icon {
    /*max-width: 70%;*/
    font-size: 30px;
    margin-bottom: 10px;
}

.service-card .icon img  {
    /*max-width: 70%;*/
    max-width: 150px;
    width: 100%;
}

.service-card h3 {
    margin: 20px 0;
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
}

.service-card h3 a {
    color: var(--black);
}

.service-card h3 a:hover {
    color: var(--yellow);
}

.service-card p {
    font-weight: lighter;
    font-size: 18px;
    line-height: 1.5;
}

.cta-section h2 {
    margin: 40px auto 40px auto;
    font-size: 48px;
    color: var(--black);
}

.cta-section h2.trusted {
    text-align: center;
    font-size: 28px;
}

.cta-section a {
    background: var(--popyellow);
    color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 32px;
    cursor: pointer;
    margin: 20px auto 20px auto;
    transition: background 0.3s;
}

.cta-section button:hover {
    background: var(--yellow);
}

/*
 *---------------------------------------------------------------
 * LOGOS
 *---------------------------------------------------------------
 *
 */

/*.logo-carousel {*/
/*    overflow: hidden;*/
/*    width: 100%;*/
/*    background: #fff;*/
/*    padding: 120px 0;*/
/*}*/

/*.logo-track {*/
/*    display: inline-block;*/
/*    white-space: nowrap;*/
/*    animation: scroll-left 40s linear infinite;*/
/*    gap: 70px;*/
/*}*/

/*.logo-track img {*/
/*    height: 90px;*/
/*    margin: 0 30px;*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*}*/

/*@keyframes scroll-left {*/
/*    0% {*/
/*        transform: translateX(0);*/
/*    }*/
/*    100% {*/
/*        transform: translateX(-50%);*/
/*    }*/
/*}*/

/*.marquee {*/
/*    display: flex;*/
/*    block-size: var(--marquee-item-height);*/
/*    margin-block: var(--marquee-item-height);*/
/*    position: relative;*/
/*    overflow-x: hidden;*/
/*    mask-image: linear-gradient(*/
/*            to right,*/
/*            hsl(0 0% 0% / 0),*/
/*            hsl(0 0% 0% / 1) 20%,*/
/*            hsl(0 0% 0% / 1) 80%,*/
/*            hsl(0 0% 0% / 0)*/
/*    );*/
/*}*/

/*.marquee--8 {*/
/*    --marquee-item-width: 100px;*/
/*    --marquee-item-height: 100px;*/
/*    --marquee-duration: 36s;*/
/*    --marquee-items: 10;*/
/*}*/

/*.marquee--3 {*/
/*    --marquee-item-width: 150px;*/
/*    --marquee-item-height: 150px;*/
/*    --marquee-duration: 24s;*/
/*    --marquee-items: 3;*/
/*}*/

/*.marquee--6 {*/
/*    --marquee-item-width: 166px;*/
/*    --marquee-item-height: 100px;*/
/*    --marquee-duration: 32s;*/
/*    --marquee-items: 6;*/
/*}*/

/*.marquee__item {*/
/*    --marquee-item-offset: max(*/
/*            calc(var(--marquee-item-width) * var(--marquee-items)),*/
/*            calc(100% + var(--marquee-item-width))*/
/*    );*/
/*    --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);*/
/*    position: absolute;*/
/*    inset-inline-start: var(--marquee-item-offset);*/
/*    transform: translateX(-50%);*/
/*    animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;*/
/*}*/

/*.marquee__item:nth-child(4n) {*/
/*    border-top-right-radius: 1rem;*/
/*}*/

/*.marquee__item:nth-child(4n + 1) {*/
/*    border-bottom-right-radius: 1rem;*/
/*}*/

/*.marquee__item:nth-child(4n + 2) {*/
/*    border-bottom-left-radius: 1rem;*/
/*}*/

/*.marquee__item:nth-child(4n + 3) {*/
/*    border-top-left-radius: 1rem;*/
/*}*/

/*.marquee--8 .marquee__item:nth-of-type(1) {*/
/*    --marquee-item-index: 1;*/
/*}*/

/*.marquee--8 .marquee__item:nth-of-type(2) {*/
/*    --marquee-item-index: 2;*/
/*}*/

/*.marquee--8 .marquee__item:nth-of-type(3) {*/
/*    --marquee-item-index: 3;*/
/*}*/

/*.marquee--8 .marquee__item:nth-of-type(4) {*/
/*    --marquee-item-index: 4;*/
/*}*/

/*.marquee--8 .marquee__item:nth-of-type(5) {*/
/*    --marquee-item-index: 5;*/
/*}*/

/*.marquee--8 .marquee__item:nth-of-type(6) {*/
/*    --marquee-item-index: 6;*/
/*}*/

/*.marquee--8 .marquee__item:nth-of-type(7) {*/
/*    --marquee-item-index: 7;*/
/*}*/

/*.marquee--8 .marquee__item:nth-of-type(8) {*/
/*    --marquee-item-index: 8;*/
/*}*/

/*.marquee--8 .marquee__item:nth-of-type(9) {*/
/*    --marquee-item-index: 9;*/
/*}*/

/*.marquee--8 .marquee__item:nth-of-type(10) {*/
/*    --marquee-item-index: 10;*/
/*}*/

/*.marquee--3 .marquee__item:nth-of-type(1) {*/
/*    --marquee-item-index: 1;*/
/*}*/

/*.marquee--3 .marquee__item:nth-of-type(2) {*/
/*    --marquee-item-index: 2;*/
/*}*/

/*.marquee--3 .marquee__item:nth-of-type(3) {*/
/*    --marquee-item-index: 3;*/
/*}*/

/*.marquee--6 .marquee__item:nth-of-type(1) {*/
/*    --marquee-item-index: 1;*/
/*}*/

/*.marquee--6 .marquee__item:nth-of-type(2) {*/
/*    --marquee-item-index: 2;*/
/*}*/

/*.marquee--6 .marquee__item:nth-of-type(3) {*/
/*    --marquee-item-index: 3;*/
/*}*/

/*.marquee--6 .marquee__item:nth-of-type(4) {*/
/*    --marquee-item-index: 4;*/
/*}*/

/*.marquee--6 .marquee__item:nth-of-type(5) {*/
/*    --marquee-item-index: 5;*/
/*}*/

/*.marquee--6 .marquee__item:nth-of-type(6) {*/
/*    --marquee-item-index: 6;*/
/*}*/

/*@keyframes go {*/
/*    to {*/
/*        inset-inline-start: calc(var(--marquee-item-width) * -1);*/
/*    }*/
/*}*/


:root {
    --items-per-page: 9;
}

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.carousel-container {
    /* Prevent logos from wrapping to the next line */
    white-space: nowrap;
}

.carousel-item {
    display: inline-block;
    min-width: calc(100% / var(--items-per-page));
    box-sizing: border-box;
    text-align: center;
    /*background-color: #f2f2f2;*/
    /*border: 1px solid #ccc;*/
    padding: 10px 20px;
}

.carousel-item > div {
    /*background: red;*/
    height: 80px;
    width: auto;
    display: flex;
    justify-content: center;
}

.carousel-item > div img {
    display: flex;
}








/*
 *---------------------------------------------------------------
 * STATIC LOGOS (SEE NUCLEAR)
 *---------------------------------------------------------------
 *
 */

.logos {
    width: 100%;
    padding: 40px 0;
}

.logos-container {

    display: flex;
    justify-content: center;
    /*display: flex;*/
    /*align-content: center;*/
    /*justify-content: center;*/
    flex-wrap: wrap;
    gap:40px;
}

.logos-item {
    box-sizing: border-box;
    text-align: center;

}

.logos-item > div {
    width: auto;
    display: flex;
    justify-content: center;
    /*gap:20px;*/
}

.logos-item > div img {
    display: flex;
    height: 80px;
}

/*.test {*/
/*    display: flex;*/
/*    justify-content: space-evenly;*/
/*}*/

/*.test div {*/
/*    !*height: 20px;*!*/
/*}*/

/*.test img {*/
/*    height: 100px;*/
/*    width: auto;*/
/*}*/

/*
 *---------------------------------------------------------------
 * OUR CONSULTANCY SERVICE
 *---------------------------------------------------------------
 *
 */

.our-consultancy-wrap {
    background: var(--white);
    overflow: hidden !important;
}

.consultancy-section {
    padding: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultancy-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    background: var(--gray);
}

.consultancy-content > div {
    display: flex;
    flex-direction: column;
    max-width: 1250px;
}

.consultancy-content .text-box-wrap .text-block {
    /*width: 100%;*/
    display: flex;
    align-content: center;
    justify-content: end;
    flex-direction: column;
    position: relative;
}

.arrow,
.swiper-button-next.arrow,
.swiper-button-prev.arrow {
    background: var(--yellow);
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    color: var(--black);
    width: 40px;
}

.swiper-button-next.arrow:after,
.swiper-button-prev.arrow:after  {
    display: none;
}

.text-block {
    background: var(--gray);
    padding: 40px;
    flex: 1;
}

.text-block h4 {

    color: var(--black);
    font-size: 24px;
    margin: 0;
}

.text-block h2 {
    color: var(--black);
    font-size: 40px;
    margin: 0;
}

.text-block p {
    font-size: 18px;
}

.image-block {
    width: 100%;
}

.image-block img {
    /*width: 400px;*/
    object-fit: cover;
}

.cta-button {
    background: var(--yellow);
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--black);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--yellow);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*
 *---------------------------------------------------------------
 * OUR ACCREDITATIONS
 *---------------------------------------------------------------
 *
 */

.accreditations {
    padding: 60px 20px;
    background-color: var(--gray);
    text-align: center;
}

.accreditations h2 {
    text-align: center;
    font-size: 48px;
    color: var(--black);
    margin: 0 0 20px 0;
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.logo-row img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    /*filter: grayscale(100%);*/
    transition: filter 0.3s ease;
    flex: 0 1 calc(15%); /* <-- adjusting for margin */
}

.logo-row.logo_five img {
    flex: 0 1 calc(10%); /* <-- adjusting for margin */
}

.logo-row img:hover {
    filter: grayscale(0%);
}

/*
 *---------------------------------------------------------------
 * NEWS SECTION
 *---------------------------------------------------------------
 *
 */


.blog.news-section {
    /*padding-top: 200px;*/
    background: var(--gray);
}

.news-section {
    background: var(--yellow);
    padding: 60px 40px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.news-header h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin: 0;
}

.view-all-btn {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #000;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: #000;
    color: #fff;
}

.news-cards {
    display: grid;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*flex-direction: column;*/
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.form-grid-3 {
}



.news-card {
    background: var(--yellow);
    /*width: 33%;*/
    /*max-width: 350px;*/
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border: 10px solid var(--yellow);
}


.news-card.white {
    background: #fff;
    border: 10px solid var(--white);
}

.news-card.black {
    background: var(--black);
    border: 10px solid var(--black);
}

.news-card.black:hover {
    background: var(--yellow);
    border: 10px solid var(--yellow);
}


.news-card .image_holder {
    width: 100%;
    overflow: hidden;
}

.news-card img {
    width: 100%;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #000;
}

.news-content span.title {
    margin-top: 25px;
    margin-bottom: 15px;
    width: 100%;
    display: block;
    height: 110px;

}

.news-content span.title a {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    width:100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-card.black .news-content span.title a {
    color: var(--white);
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #000;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-card.black .tag {
    border: 1px solid white;
    color: var(--white);
}

.news-card.black:hover .tag{
    border: 1px solid var(--black);
    color: var(--black);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date {
    background: #fff;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 1rem;
}

.date.var(--black) {
    background: #000;
    color: var(--yellow);
}

.arrow {
    background: #fff;
    /*padding: 10px 15px;*/
    font-size: 1.5rem;
    text-decoration: none;
    color: #000;
    font-weight: bold;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.arrow.black {
    background: var(--black);
    color: #fff;
}

.news-card:hover,
.news-card.white:hover {
    background: var(--black);
    border: 10px solid var(--black);
    color: var(--white);
}

.news-card.black {
    background: var(--black);
    border: 10px solid var(--black);
    color: var(--black);
}

.news-card:hover span.title a,
.news-card:hover h3,
.news-card.white:hover h3  {
    color: var(--white);
}

.news-card.black:hover span.title a,
.news-card:hover .date,
.news-card.white:hover .date  {
    color: var(--black);
}


.blog_article h1 {
    font-size: 2.5rem;
    color: var(--black);
    margin: 0;
}

.blog_article .container {
    max-width: 800px;
}

.blog_article p {
    font-size: 1rem;
}

.blog_article img {
    width: 100%;
    height: auto;
    margin: 40px 0;
}

.blog_article hr {
    border: 0;
    border-top: 1px solid #ccc;
}

/*
 *---------------------------------------------------------------
 * NEWS SECTION
 *---------------------------------------------------------------
 *
 */

.content-section {
    background: var(--black);
    padding: 60px 40px;
}

.content-section.white {
    background: var(--gray);
}

.content-cards {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    /*gap: 30px;*/
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.content-card {
    background: var(--black);
    width: 100%;
    /*max-width: 350px;*/
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border: 20px solid var(--black);
}

.content-card span {
    color: var(--white);
    font-size: 68px;
}

.content-section.white .content-card span {
    color: var(--black);
}

.content-card img {
    display: none !important;
    width: 100%;
    height: auto;
    object-fit: cover;
    clip-path: polygon(0 20%, 20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}

.content-content {
    padding: 20px 0;
}

.content-section h2 {
    margin: 40px auto 40px auto;
    text-align: center;
    font-size: 48px;
    color: var(--white);
}

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

.content-content h3,
h3.h3_styling {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--yellow);
}

.content-section.white h3.h3_styling {
    color: var(--black);
}

.h3_styling {
    text-align: center;
}

.content-section.white .content-content h3,
.content-section.white .content-content h3.h3_styling {
    color: var(--black);
}

.content-content h3,
.content-section.white .content-content h3 {
    background: url("../assets/s_2.svg") no-repeat;
    background-size: 30px;
    padding: 0 0 20px 40px;
    background-position: left top 4px;
}

.content-section.yellow_bg .content-content h3 {
    background: none;
    padding: 0;
}

.content-content p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.5;
}

.content-section.white .content-content p {
    color: var(--black);
}

.content-card.white:hover {
    background: var(--black);
    border: 20px solid var(--black);
    color: var(--white);
}

.content-section.white .content-card {
    background: var(--gray);
    border: 20px solid var(--gray);
}

.content-card:hover, .content-card.white:hover {

}



/*
 *---------------------------------------------------------------
 * OUR PEOPLE
 *---------------------------------------------------------------
 *
 */

.our-people-section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    min-height: 500px;
}

.our-image {
    flex: 1 1 50%;
}
.our-people-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-text {
    flex: 1 1 50%;
    background-color: var(--white);
    color: var(--black);
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
    color: var(--black);
}

.our-text p {
    font-size: 22px;
}

/*
 *---------------------------------------------------------------
 * SUBSCRIBE
 *---------------------------------------------------------------
 *
 */

.subscribe-section {
    padding: 60px 40px 60px 40px;
}

.subscribe-section h2 {
    text-align: center;
    font-size: 48px;
    color: var(--black);
    margin: 0 0 20px 0;
}

.subscribe-section .btn-yellow {
    margin: 0 auto;
}

.signup-form {
    max-width: 100%;
    color: #333;
    padding: 20px 0;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #777;
    border-radius: 2px;
    font-size: 1rem;
    min-width: 200px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    /*max-width: 800px;*/
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.form-consent a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

/*
 *---------------------------------------------------------------
 * FOOTER
 *---------------------------------------------------------------
 *
 */

.site-footer {
    background-color: #000;
    color: #fff;
    padding: 40px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.footer-left {
    flex: 2 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
    margin-right: 20px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-nav a {
    text-decoration: none;
    color: var(--yellow);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 24px;
    font-weight: 700;
}

.footer-nav a:hover {
    background: var(--yellow);
    border-radius: 3px;
    color: var(--black);
}

.footer-nav a.box_bac {
    background-color: var(--yellow);
    color: var(--white);
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 3px;
    display: inline-block;
}

.footer-nav a.btn-link {
    color: transparent !important;
    background: url("../assets/link-a.svg") no-repeat center;
    background-size: 20px;
    width: 40px;
    font-size: 0em;
}

.footer-nav a.btn-x {
    color: transparent !important;
    background: url("../assets/X_logo_a.svg") no-repeat center;
    background-size: 20px;
}

.footer-nav a.btn-in {
    color: transparent !important;
    background: url("../assets/instagram-a.svg") no-repeat center;
    background-size: 20px;
    max-width: 60px;
}

.footer-nav a.btn-you {
    color: transparent !important;
    background: url("../assets/youtube-a.svg") no-repeat center;
    background-size: 30px;
    width: 40px;
    font-size: 0em;
}

.footer-nav a.btn-link:hover {
    background: var(--yellow) url("../assets/link-b.svg") no-repeat center;
    background-size: 20px;
    border-radius: 3px;
    color: var(--black);
}

.footer-nav a.btn-x:hover {
    background: var(--yellow) url("../assets/X_logo_b.svg") no-repeat center;
    background-size: 20px;
    border-radius: 3px;
    color: var(--black);
}


.footer-nav a.btn-in:hover {
    background: var(--yellow) url("../assets/instagram-b.svg") no-repeat center;
    background-size: 20px;
    border-radius: 3px;
    color: var(--black);
}

.footer-nav a.btn-you:hover {
    background: var(--yellow) url("../assets/youtube-b.svg") no-repeat center;
    background-size: 30px;
    border-radius: 3px;
    color: var(--black);
}


.footer-right {
    flex: 1 1 50%;
    display: flex;
    gap: 40px;
    justify-content: flex-end;
    flex-direction: column;
}

.office p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.office a {
    color: #fff;
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid #444;
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    margin: 0 5px;
}

/*
 *---------------------------------------------------------------
 * BOOK DEMO SECTION
 *---------------------------------------------------------------
 *
 */

.book-demo * {
    box-sizing: border-box;
}

.book-demo {
    background: #f2f2f2;
    padding: 40px 20px;
}

.book-demo .demo-section {
    background: #fff;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.book-demo .demo-header {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.book-demo .demo-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 30px;
    height: 30px;
    background: url("../assets/sam-icon.svg") no-repeat center;
    background-size: contain;


}

.book-demo .demo-header h2 {
    color: var(--black);
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 15px;
}

.book-demo .demo-header p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.book-demo .demo-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.book-demo form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.book-demo input[type="text"],
.book-demo input[type="email"],
.book-demo input[type="tel"] {
    padding: 14px;
    font-size: 14px;
    border: none;
    background: #f1f1f1;
    width: 100%;
}

.book-demo ::-webkit-input-placeholder {
    color: var(--black);
}

.book-demo .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #444;
    margin-top: 10px;
}

.book-demo .checkbox input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #FAE153;
    background: white;
    cursor: pointer;
    position: relative;
}

.book-demo .checkbox input[type="checkbox"]:checked {
    background-color: #FAE153;
}

.book-demo .checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.book-demo button {
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
    color: #000;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 2px;
    max-width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}
.book-demo button:hover {
    background-color: var(--black);
    border: 1px solid var(--black);
    color: var(--white);
}




.sam-faq {
    background: #fff;
    padding: 40px 20px;
    /*max-width: 800px;*/
    margin: 0 auto;
}

.sam-faq h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--black);
}

.sam-faq .accordion-item {
    border-top: 1px solid #ddd;
}

.sam-faq .accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 20px;
    font-weight: 300;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.sam-faq .accordion-header:hover {
    background: #f9f9f9;
}

.sam-faq .accordion-icon {
    transition: transform 0.3s ease;
}

.sam-faq .accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.sam-faq .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-weight: 600;
    padding: 0 16px;
}


.sam-faq .accordion-content a {
    color: var(--black);
    text-decoration: underline;
}

.sam-faq .accordion-content p {
    font-size: 18px;
}

.sam-faq .accordion-content ul {
    padding-left: 20px;
}

.sam-faq .accordion-content ul li {
    font-weight: 300;
    font-size: 18px;
}

.sam-faq .accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 16px;
}






.degradation-module {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    background: #fff;
}

.degradation-text {
    order: 2;
}

.degradation-text h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--black);
}

.degradation-text p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.yellow-button {
    display: inline-block;
    background: #FAE153;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
}

.yellow-button .arrow {
    margin-left: 0.5rem;
}

.degradation-image {
    order: 1;
}

.degradation-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}





.counter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
    background: var(--white);
}

.counter-section.black {
    background: var(--black);
    color: var(--white);
}

.counter-section.yellow {
    background: var(--yellow);
    color: var(--black);
}

.counter-section.yellow .counter p {
    color: var(--black);
}

.counter-section.black .counter p {
    color: var(--yellow);
}

.counter > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter span {
    font-size: 4em;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 10px 0;
}

.counter p {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: 400;
    /*color: #666;*/
}

.outer {
    background: var(--black);
}

/*
 *---------------------------------------------------------------
 * Timeline CSS
 *---------------------------------------------------------------
 *
 */

.timeline_wrap {
    /*background: var(--black);*/
}

/* Timeline container - mobile default */
.timeline_wrap .timeline {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

/* Vertical line on the left for mobile */
.timeline_wrap .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #444444;
    top: 0;
    bottom: 0;
    left: 31px;
    /*z-index: -1;*/
}

/* Container around content - full width on mobile */
.timeline_wrap .container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    margin: 0;
    max-width: 100%;
}

/* The circles on the timeline */
.timeline_wrap .container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    left:22px;
    /*background-color: #444444;*/
    border: 4px solid #444444;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* All containers behave like 'left' by default on mobile */
.timeline_wrap .container::before {
    content: " ";
    position: absolute;
    top: 22px;
    left: 60px;
    border: medium solid black;
    border-width: 10px 10px 10px 0;
    border-color: transparent #444444 transparent transparent;
}

/* Content box */
.timeline_wrap .content {
    padding: 20px 30px;
    border: 1px solid #444444;
    position: relative;
    border-radius: 6px;
}

.timeline_wrap .content p {
    font-size: 18px;
    color: var(--white);
    /*margin-bottom: 30px;*/
    line-height: 1.5;
}

.timeline_wrap .content h2 {
    color: var(--yellow);
}

/*
 *---------------------------------------------------------------
 * BOX SLIDER
 *---------------------------------------------------------------
 *
 */

.box-slider {
    background: var(--gray);
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
}

.box-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    object-fit: cover;
    height: 100%;
}

.box-slider:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: url("../assets/lines.svg") no-repeat left 20px center;
    background-size: 40%;
    content: '';
    z-index: 1;
    top: 0;
    left: 0;
    bottom:0;
}

.box-slides img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

.box-prev, .box-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.box-prev { left: 10px; }
.box-next { right: 10px; }

/*
 *---------------------------------------------------------------
 * PEOPLE
 *---------------------------------------------------------------
 *
 */

.content_2-section.people {
    min-height: 600px;
}

.content_2-section.gray p a {
    color: var(--black);
    text-decoration: underline;
}

.content_2-section.black p a {
    color: var(--white);
    text-decoration: underline;
}

.people .content_2-image {
    background-size: cover;
    background-position: center;
}

.content_2-section.gray .content_2-text {
    background: var(--gray);
}


.content_2-section.gray .content_2-text  h2,
.content_2-section.gray .content_2-text p {
    color: var(--black);
}

.content_2-section.people h3 {
    font-size: 1.2em;
    color: var(--black);
}

.content_2-section.black .content_2-text {
    background: var(--black);
}

.content_2-section.gray .content_2-text h3 {
    color: var(--black);
}

.content_2-section.black .content_2-text h2 {
    color: var(--white);
}

.content_2-section.black .content_2-text h3 {
    color: var(--white);
}

.linkedin {
    display: block;
    background: url("../assets/link-a.svg") no-repeat center;
    font-size: 0;
    color: transparent;
    width: 40px;
    height: 40px;
}

h2.sam_icon {
    background: url("../assets/s.svg") no-repeat left center;
    padding-left: 45px;
}

.content_2-section.people .polyclip {
    max-width: 60%;
    display: block;
}

.polyclip {
    clip-path: polygon(0 20%, 20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%);

}

.step {
    width: 100%;
    justify-content: space-between;
    display: none;
}


.sam-privacy {
    background: var(--black);
}

.sam-privacy > div {
    padding: 60px 40px;
    max-width: 960px;
}

.sam-privacy > div h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
    color: var(--yellow);
}


.sam-privacy > div p, .sam-privacy > div li  {
    font-size: 18px;
    color: var(--white);
}

.sam-privacy > div li  {
    margin-bottom: 20px;
}

.sam-privacy > div ul,
.sam-privacy > div ol {
    padding-left: 25px;
}

.sam-privacy > div h2 {
    color: var(--yellow);
}

.sam-privacy > div h3 {
    color: var(--white);
    text-decoration: underline;
}

.con {
    background: var(--black);
    padding: 2em !important;
    max-width: 95%;
}

.con p {
    margin: 0;
    padding: 0;
}

.con a {
    color: var(--yellow);
}
/*
 *---------------------------------------------------------------
 * RESPONSIVE WIDTH 400px OR LESS
 *---------------------------------------------------------------
 *
 * To adjust responsive width change the setting in database and
 * also below...
 *
 */

@media (min-width: 400px) {

    .service-card {
        width: auto;
    }
}



/* Responsive for larger screens */
@media (min-width: 768px) {

    .sam-section {
        flex-direction: row;
    }

    .consultancy-content > div {
        flex-direction: row;
    }



}

@media (min-width: 960px) {

    .step {
        width: 100%;
        justify-content: space-between;
        display: flex;
    }

    .step > div {
        width: 50%;
        height: 60px;
    }

    .content_2-section.people img.polyclip {
        display: none;
    }

    .timeline_wrap .timeline {
        max-width: 1200px;
        padding: 20px 20px;
    }


    .timeline_wrap .timeline::after {
        left: 50%;
        margin-left: -3px;
    }

    .timeline_wrap .container {
        width: 50%;
        padding: 0;
    }

    .timeline_wrap .left {
        left: 0;
        padding-right: 100px;
    }

    .timeline_wrap .right {
        left: 50%;
        padding-left: 100px;
    }

    .timeline_wrap .left::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        right: 30px;
        border: medium solid white;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent white;
    }

    .timeline_wrap .right::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        left: 30px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .timeline_wrap .right::after {
        left: -16px;
    }

    .timeline_wrap .left::after {
        right: -17px;
        left: auto;
    }

    .timeline_wrap .container::before {
        display: none;
    }


    .timeline_wrap .container::after {
        width: 100px;
        height: 100px;
        border-radius: 0;
        border: 0;
        background-color: #444444;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 70px;
        position: absolute;
        z-index: 2;
        clip-path: polygon(0 20%, 20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
    }

    .outer {
        background: none;
        position: relative;
        padding: 60px 0;
    }

    .outer::after {
        content: '';
        position: absolute;
        width: 100%;
        background-color: var(--black);
        top: 0;
        bottom: 0;
        /*left: 31px;*/
        height: 100%;
        z-index: -2;
    }

    .outer::after {
        /*left: 50%;*/
        /*margin-left: -3px;*/
    }


    .timeline_wrap .container.one::after {
        background-image: url("../assets/storage.svg");
    }

    .timeline_wrap .container.two::after {
        background-image: url("../assets/gesture.svg");
    }

    .timeline_wrap .container.three::after {
        background-image: url("../assets/autorenew.svg");
    }

    .timeline_wrap .container.four::after {
        background-image: url("../assets/encrypted.svg");
    }

    .timeline_wrap .left::after {
        right: -50px;
    }

    .timeline_wrap .right::after {
        left: -50px;
    }

    .timeline_wrap .content:after {
        /*background: red;*/
        /*width: 100px;*/
        /*height: 5px;*/
        /*content: '';*/
        /*display: block;*/
        /*position: absolute;*/
        /*right: -100px;*/
        /*top: 0;*/
    }

    .timeline_wrap .container::before {
        background: #444444;
        width: 50px;
        height: 5px;
        content: '';
        display: block;
        position: absolute;
        border: 0;
        z-index: 1;

        right: 40px;
        left: auto;

        top: 65px;
    }

    .timeline_wrap .container.right::before {
        background: #444444;

        left: 40px;
        right: auto;

        top: 65px;
    }


    .timeline_wrap .timeline::after {
        z-index: -1;
    }







    .wrapnav {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .logo {
        margin-bottom: 0;
    }

    .logo, .logo img {
        height: 42px;
    }

    span.menuIcon {
        display: none;
    }


    .nav-links ul {
        display: flex ;
        flex-direction: row;
    }

    .nav-links ul li {
        margin-top: 0;
    }

    .nav-links ul li a {
        /*position: relative;*/
        border: 1px solid var(--white);
        background: var(--white);
        color: var(--black);

    }

    .navbar {
        display: flex;
        justify-content: space-between;
    }

    .nav-links ul {
        gap: 15px;
    }


    .nav-links li:hover .subwrapper,
    .nav-links li:focus-within .subwrapper {
        display: block;
    }

    .subNavWrap ul li a {
        font-size: 1.4em;
        gap: 10px;
        background: var(--black);
        border: 0;
    }

    .nav-links ul li a.menuLink4 {
        min-width: 190px;
        background: var(--yellow);
        border: 1px solid var(--yellow);
        /*padding-left: 0;*/
        /*padding-right: 0;*/
    }

    .nav-links ul li a.menuLink4:hover {
        background: var(--black);
        border: 1px solid var(--black);
        color: var(--yellow);
    }

    .nav-links ul li ul a {
        color: var(--white);
    }

    .subNavWrap ul li a:hover, .nav-links ul li ul a:hover {
        border: 0;
    }

    .overlay {
        width: 50%;
    }

    .overlay h1 {
        font-size: 100px;
        line-height: 0.9;
    }

    .overlay img {
        width: 80%;
        margin-bottom: 0px;
        padding-left: 5px;
    }



    .consultancy-content .text-box-wrap .text-block, .image-block {
        width: 50%;
    }

    .consultancy-section {
        padding: 60px 60px;
    }



    .news-cards {
        /*flex-direction: row;*/
        grid-template-columns: 1fr 1fr 1fr;

    }

    .blog .news-cards {
        gap: 20px;
    }

    /*.news-card {*/
    /*    width: 33%;*/
    /*}*/

    .content-cards {
        flex-direction: row;
    }

    .content-card {
        width: 25%;
    }

    .form-row {
        flex-direction: row;
    }

    .footer-left {
        flex-direction: row;
    }

    .footer-right {
        flex-direction: row;
    }

    .footer-top {
        flex-direction: row;
    }

    .sam-text-box {
        padding: 40px;
    }

    .our-people-section {
        flex-direction: row;
    }

    .our-text {
        padding: 60px 60px;
    }

    .about-text {
        padding: 60px 60px;
    }

    .about-section {
        flex-direction: row;
    }

    .content_2-section {
        flex-direction: row;
    }



    .content_2-text h2,
    .content_2-text h3 {
        font-size: 28px;
    }

    .content_2-text > div {
        padding: 60px;
    }









    .ipad_content .section {
        flex-direction: row;
        margin-right: -60px;
    }

    .book-demo {
        padding: 160px 60px 60px 60px;
    }

    .book-demo .demo-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 60px;
    }

    .book-demo .demo-text {
        flex: 1;
    }

    .book-demo form {
        flex: 1;
    }

    .sam-faq {
        padding: 60px 20px;
    }

    .sam-faq h2 {
        font-size: 28px;
    }
    .sam-faq .accordion-header {
        font-size: 22px;
        padding: 32px 22px;
    }

    .degradation-module {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .degradation-text {
        flex: 1;
        order: 1;
        padding-right: 2rem;
    }

    .degradation-image {
        flex: 1;
        order: 2;
    }

    .degradation-text h2 {
        font-size: 2.4rem;
    }

    .degradation-text p {
        font-size: 1.125rem;
    }

    .footer-nav a {
        font-size: 1.3em;
    }

    .counter-section {
        padding: 80px 0 80px 0;
    }

    .counter {
        flex-basis: 33%;
    }

    .counter-section .container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;

    }

    .counter-number {
        min-width: 300px;
    }

    /*.main_menu {*/
    /*    display: none;*/
    /*}*/

    /*.main_menu li {*/
    /*    display: block;*/
    /*    width: 100%;*/
    /*}*/

    /*.menu_link {*/
    /*    width: 20px;*/
    /*    position: absolute;*/
    /*    top:0.5em;*/
    /*    right: 1em;*/
    /*    padding: 0.5em 1.5em;*/
    /*    cursor: pointer;*/
    /*    font-weight: bold;*/
    /*}*/

    /*.toggled {*/
    /*    display: block;*/
    /*}*/

    /*.rsp_title, .rsp_nav, .rsp_nav_sub {*/
    /*    display: block;*/
    /*}*/

    .people .content_2-image {
        min-height: 800px;
    }

    .content_2-image {
        flex: 1 1 50%;
    }

    .angle-box {
        padding: 80px 80px;
        clip-path: polygon(20% 0%, 100% 0, 100% 80%, 80% 100%, 0 100%, 0% 20%);
        /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);*/
    }

    .sam_tm {
        background-image: url('/application/themes/default/assets/sam-stone-xl.jpg')
    }

    .sam-text-box img {
        max-width: 90%;
    }

    .sam-text-box > div p {
        font-size: 1.2rem;
    }
}


@media (min-width: 100px)  {

    .text-block h4 {
        /*position: absolute;*/
        /*left: 40px;*/
        /*top: 40px;*/
        margin-bottom: 40px;
    }

}

@media (min-width: 1200px) {

    .overlay h1 {
        font-size: 128px;
    }

    .counter-section .container {
        /*width: 60%;*/

    }

    .people .content_2-image {
        min-height: 1000px;
    }

    .logo, .logo img {
        height: 70px;
    }

    .subwrapper {
        padding-top: 45px;
    }

    .subNavWrap ul.mainMenu {
        flex-wrap: nowrap;
    }


    .nav-links ul {
        gap: 25px;
    }
    .subNavWrap ul.mainMenu li {
        padding-left: 0;
        flex: none;
    }

    .nav-links ul li a {
        font-size: 1.3em;
    }

    .services-container {
        justify-content: space-between;
    }


    .sam-text-box {
        /*outline: red solid 1px;*/
        flex: 1 1 50%;
        /*padding: 40px;*/
    }

    .sam-image {
        flex: 1 1 50%;
        text-align: center;
    }

    .sam_section_3 div {
        display: flex;
        flex-direction:row;
    }

}

@media (min-width: 1500px) {

    .people .content_2-image {
        min-height: 1500px;
    }

    .sam-text-box {
        /*outline: red solid 1px;*/
        flex: 1 1 40%;
        /*padding: 40px;*/
    }

    .sam-image {
        flex: 1 1 60%;
        text-align: center;
    }




}