:root {
    --page-bg: #F2F6F9;
    --active-red: #FF3131;
    --button-bg: #7F9FB6;
    --white: #ffffff;
    --black: #000000;
    /* --body-font-color: #757575; */
    --body-font-color: #575757;
    --heading-color: #000080;
    /* --heading2-color: #272727; */
    --heading2-color: #000080;
    --link-blue: #004aad;
    --dark-gray: #797b7d;
    --shadow-color: #c2c1c1;
    /* --input-bg: #C4D3DE; */
    --input-bg: #ffffff;
    --boxes-bg: #d0e3f1;
    --border-top-color: #57575779;
    --dark-green: #00aea7;
    --dark-orange: #ea6e3a;
    --purple: #974298;
    --dark-yellow: #f5b750;
    --light-pink: #fd7e95;
    --logo-green: #abd035;
}

html {
    font-size: 18px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--body-font-color);
}

ul,
li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
}

body {
    background: url(../images/pagebg.webp) top center no-repeat, url(../images/pagebg.webp) 0% 108% no-repeat;
    background-size: contain;
    /* background-color: var(--page-bg); */
}

main {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.header {
    margin-bottom: 0rem;
}

.header>nav {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.header>nav>ul {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-right: -10px;
}

.header>nav>ul>li {
    padding: 20px 2px;
    /* position: relative; */
    margin: 0 10px;

}

.header nav ul li a {
    position: relative;
    font-size: 1rem;
}

/* .header>  nav > ul > li:not(.current-menu-item) > a::after {
    content: "";
    width: 0;
    transition: all 0.25s ease-in-out;
    position: absolute;
    height: 5px;
    border-radius: 10px;
    background-color: var(--active-red);
    top: 100%;
    margin: auto;
    left: 0;
    right: 0;
} */

/* .header>nav>ul>li:not(.current-menu-item):hover > a::after {
    width: 100%;
} */
.header>nav>ul>li:not(.current-menu-item):hover>a {
    color: var(--active-red);
}

.header>nav>ul>li.current-menu-item>a::after {
    background-color: var(--active-red);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 5px;
    content: "";
    border-radius: 10px;
}



.header-logo-wrapper img {
    max-width: 300px;
}

.three-image-collage {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.three-image-collage+div {
    margin: 1rem 0 0 0;
}

.three-image-collage>div {
    flex: 0 0 50%;
    width: 23%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.three-image-collage figure {
    background-color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 0 5px var(--shadow-color);
    flex: 0 0 18%;
    width: 18%;
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    font-weight: 700;
}

.three-image-collage figure img {
    display: block;
    width: 100%;
    max-width: 100%;

}

.three-image-collage figure figcaption {
    padding: 8px 0px 12px;
    color: var(--heading-color);
    text-transform: uppercase;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-top: 2px solid #ffffff;
    font-weight: 600;
}

.three-image-collage figure .sub-section {
    position: absolute;
    background: var(--white);
    box-shadow: 0 0 5px var(--shadow-color);
    color: var(--body-font-color);
    left: 0;
    width: 480px;
    bottom: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 1s cubic-bezier(0, 1, 0, 1);
    border-radius: 3px;
    font-weight: 400;
}

.three-image-collage figure .sub-section.single-col {
    width: 250px;

    a {
        flex-basis: 100%;
    }
}

.three-image-collage figure:hover .sub-section {
    max-height: 500px;
    transition: max-height 1s ease-in-out;
}

.three-image-collage figure .sub-section>a {
    flex: 0 0 48%;
    margin: 0;
    padding: 0.3rem;
    font-size: 0.8rem;
    text-align: left;
    color: var(--body-font-color);
}

.three-image-collage figure .sub-section>a:hover {
    color: var(--active-red);
}

.footer {
    margin-top: 30px;
    padding: 0;
    position: relative;
}

.footer-menu1 a {
    color: var(--heading-color);
    /* font-weight: 700; */
}

/* .footer-menu2 a{
    color: var(--button-bg);
    font-weight: 700;
} */
.social-icons-wrapper {
    display: flex;
    justify-content: space-between;

    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

.social-icons-wrapper img {
    max-width: 54px;
}

.copyright-wrapper {
    border-top: 1px solid var(--body-font-color);
    font-size: 0.7rem;
    color: var(--body-font-color);
    margin-top: auto;
    opacity: 0.6;
    padding-top: 2rem;

}

.copyright-wrapper span {
    display: block;
}

main>section>div {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.intro-section {
    margin-bottom: 2rem;
}

.feel-free-section {
    margin-bottom: 3rem;
}

.intro-section>div {
    display: flex;
    /* align-items: flex-start; */
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 120px;

}

.intro-section>div>div {
    flex: 1 1 50%;
}

.intro-section>div>div.text-animation-wrapper {
    flex-basis: 45%;
    max-width: 45%;
}

.intro-section>div>div.right-col {
    flex-basis: 40%;
    flex-grow: 0;
}

.intro-section.home-page>div>div.right-col {
    align-self: flex-start;
    text-align: right;
}

.text-animation-wrapper>div {
    padding-top: 1.6rem;
}

.intro-section h1 {
    /* margin-top: 2rem; */
    font-size: 2.6rem;
}

h1 {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 2.9rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

h1 span {
    display: block;
    font-weight: 400;
    letter-spacing: 1px;
}

h2 {
    font-weight: 500;
    font-size: 1.9rem;
    color: var(--heading2-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h2.left-border {
    padding-left: 10px;
    position: relative;
}

h2.left-border::after {
    position: absolute;
    left: 0;
    top: 7px;
    bottom: 7px;
    width: 5px;
    border-radius: 10px;
    background-color: var(--active-red);
    content: "";
}

h2.align-center {
    text-align: center;
}

h2.align-center span {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: none;
    display: block;
}

h2.right-border {
    padding-right: 10px;
    position: relative;
    text-align: right;
}

h2.right-border::after {
    position: absolute;
    right: 0;
    top: 7px;
    bottom: 7px;
    width: 5px;
    border-radius: 10px;
    background-color: var(--active-red);
    content: "";
}

h2.right-border.no-border-color::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 28px;
    /* vertical-align: top; */
    border-radius: 3px;
    margin-top: 2px;
    background: var(--active-red);
    position: absolute;
    right: -2px;
    top: auto;
    bottom: 8px;

}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--heading2-color);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.red-color {
    color: var(--active-red) !important;
}

.w-30 {
    width: 30%;
}

.our-work-process>div {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.our-work-process h2 {
    margin-bottom: 0;
}

p {
    /* font-size: 1.2rem;
    line-height: 1.7rem; */
    font-size: 1rem;
    line-height: 1.4rem;
    margin: 0;
    padding: 0;
}

.button {
    background: var(--heading-color);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    display: inline-block;

    &:disabled {
        opacity: 0.5;
    }
}

.button:hover {
    color: var(--white);
    background: var(--button-bg);
}

.two-col-section>div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.two-col-section>div>div {
    flex: 1 1 50%;
}

.our-services.two-col-section>div>div.right-col {
    flex-basis: 30%;
}

.our-services.two-col-section>div>div.left-col {
    flex-basis: 68%;
}

.two-col-section p,
.intro-section p {
    margin-bottom: 1rem;
}

.two-col-section p a {
    color: var(--active-red);

    &:hover {
        text-decoration: underline;
    }
}

.two-col-section .left-col.full-width {
    width: 100%;
}

.right-col img {
    max-width: 100%;
}

.home-page .right-col img {
    max-height: 450px;
}

.our-services {
    margin-top: 1.5rem;
}

.our-services .right-col img {
    max-width: 90%;
}

.contact-image {
    text-align: right;

    img {
        max-width: 100%;
        height: 600px;
    }
}

.feel-free-section>div>div,
.featured-jobs>div>div {
    flex: 1 1 100%;
}

.footer>section {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.footer>section>div {
    flex: 1 1 23%;
    display: flex;
    flex-direction: column;
}

.footer>section ul a {
    display: inline-block;
    transition: 0.25s ease-in-out;
}

.footer>section ul a:hover {
    transform: scale(1.09);
    color: var(--black);

}

.footer-logo img {
    max-width: 100%;
}

.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-right: 7%;
}

.icons-wrapper {
    display: flex;
    margin-bottom: 0.2rem;
}

.icons-wrapper>div {
    flex: 0 0 50%;
}

.icons-wrapper>div figure {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.icons-wrapper>div figure img {
    width: 3rem;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 2px 2px 4px var(--shadow-color);
    margin-right: 1rem;
}

.icons-wrapper.icons-wrapper-header>div>figure:first-child img {
    width: 76px;
    box-shadow: 2px 2px 4px var(--shadow-color);
    border-radius: 50%;
}

.icons-wrapper>div:nth-child(1) {
    flex-basis: 40%;
    width: 40%;
}

.icons-wrapper.icons-wrapper-body {
    padding-left: 12px;
}

.icons-wrapper>div:nth-child(2) {
    flex-basis: 60%;
    width: 60%;

    .icons-wrapper.icons-wrapper-body {
        flex-direction: row;
        flex-wrap: wrap;

        figure {
            flex: 0 0 50%;
        }
    }
}

/* .icons-wrapper>figure:nth-child(odd) {
    width: 65%;
    flex-basis: 65%;
    flex-grow: 0;
    flex-shrink: 0;
}

.icons-wrapper>figure:nth-child(even) {
    width: 30%;
    flex-basis: 30%;
    flex-grow: 0;
    flex-shrink: 0;
} */

.icons-wrapper.icons-wrapper-header>figure {
    width: 50%;
    flex-basis: 50%;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.icons-wrapper.icons-wrapper-header figure {
    /* width: 40%;
    flex-basis: 40%; */
    display: flex;
    align-items: center;
}

/* .icons-wrapper.icons-wrapper-header figure  {
    width: 60%;
    flex-basis: 60%;
    display: flex;
    align-items: center;
} */

.icons-wrapper.icons-wrapper-header figure figcaption {
    margin-left: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--body-font-color);
    font-size: 1.1rem;
}

.icons-wrapper.icons-wrapper-body>div:first-child {
    width: 40%;
    flex-basis: 40%;
    padding-left: 14px;
}

.icons-wrapper.icons-wrapper-body>div:nth-child() {
    width: 60%;
    flex-basis: 60%;
    display: flex;
    flex-wrap: wrap;
    padding-left: 14px;
}

.icons-wrapper.icons-wrapper-body>div:nth-child(2)>figure {
    flex: 0 0 50%;
}

.icons-wrapper.icons-wrapper-body {
    margin-bottom: 1.5rem;
    flex-direction: column;
}

.fastest-growing-company {
    padding: 8rem 0 16rem;
    background: url(../images/world-map-2.webp) top center no-repeat;
    background-size: 80% auto;
    margin: 2rem 0;
}

.fastest-growing-company h2 span {
    margin-top: 1.5rem;
}

/* .second-page-bg {
    background: url(../images/pagebgbottom.webp) top center no-repeat;
    background-size: contain;    
} */
.four-value-wrapper {
    margin-top: 7rem;
    display: flex;
    justify-content: space-evenly;

}

.four-value-wrapper li {
    margin: 0 1rem;
}

.four-value-wrapper li span {
    text-align: center;
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--button-bg);
}

.four-value-wrapper li label {
    font-size: 1rem;
}

.featured-jobs .left-col {
    padding-right: 5rem;
}

.four-jobs-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.four-jobs-wrapper+div {
    margin-top: 3rem;
}

.four-jobs-wrapper>li {

    background-color: #ffffff;
    box-shadow: 0 0 5px var(--shadow-color);
    padding: 1rem 1.3rem;
    margin: 0 1.2rem 1.5rem 0;
    transition: all 0.3s ease-in;

    &:hover {
        background-color: var(--button-bg);
        color: var(--white);
    }
}

.four-jobs-wrapper>li>a {
    transition: 0.3s ease-in;
}

.four-jobs-wrapper>li>a:hover {
    letter-spacing: 1px;
}

.link-see-all {
    display: flex;
    align-items: center;
    justify-content: center;

    a {
        font-size: 1rem !important;
        text-transform: uppercase;
        color: var(--link-blue);
    }
}

.job-title {
    text-transform: uppercase;
    font-size: 1rem;
}

.four-jobs-wrapper span {
    display: block;
    font-size: 0.8rem;
}

.four-jobs-wrapper a {
    color: var(--link-blue);
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
}

.featured-jobs>div .four-jobs-wrapper+.button {
    display: none;
}

.jobs-para {
    a {
        color: var(--active-red);
        font-weight: 700;

        &:hover {
            text-decoration: underline;
        }
    }
}

.join-skill-essential {
    margin: 2rem 0 6rem;
}

.join-skill-essential-wrapper>div {
    display: flex;
    flex-direction: column;
    margin: 5rem auto 7rem;
}

.join-skill-essential-wrapper p+div {
    margin-top: 3rem;
}

.join-skill-essential {
    width: 938px;
    height: 600px;
    background: url(../images/join-skill-essential.webp) left top no-repeat;
    background-size: contain;
    color: var(--white);
    text-align: center;
    padding: 10rem 2rem 0;
}

.join-skill-essential h2 {
    color: var(--white);
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    justify-content: center;
}


.join-skill-essential h2 span {
    font-weight: 400;
}

.join-skill-essential h2 img {
    width: 11rem;
}

.join-skill-essential p {
    margin: 0 2rem 3rem;
}

.jobs-details-wrapper {
    position: relative;
    padding-bottom: 1.5rem;

    p+ul {
        margin-top: -1rem;
        margin-bottom: 1.5rem;
    }

    ul>li {
        position: relative;
        padding: 0 0 0 1rem;

        &::before {
            position: absolute;
            width: 0.4rem;
            height: 0.4rem;
            background: var(--active-red);
            content: "";
            left: 0;
            top: 8px;
            box-shadow: 2px 2px 0px var(--logo-green);
        }

        & li::before {
            border-radius: 50%;
            background-color: var(--logo-green);
            box-shadow: none;
        }
    }

    .upload-resume-wrapper {
        position: absolute;
        right: 0;
    }
}

.intro-logo-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    margin: 0;
    position: absolute;
    gap: 10px;
    /* flex-basis: 100% !important;
    justify-content: space-around; */
    /* left: 0; */
    width: 45%;
    bottom: 0rem;
    /* background-color: rebeccapurple; */

}

.intro-logo-wrapper figure {
    position: relative;
}

.intro-logo-wrapper figure img {
    max-width: 80px;
    /* filter: brightness(0.25) invert(1); */
    transition: all 0.3s ease-in-out;
}

.intro-logo-wrapper figure img.gray {
    position: absolute;
}

.intro-logo-wrapper figure img.normal {
    opacity: 0;
}

.intro-logo-wrapper figure:hover .gray {
    opacity: 0;
}

.intro-logo-wrapper figure:hover .normal {
    opacity: 1;
}

.intro-logo-wrapper figure img.landscape {
    max-width: initial;
    height: 80px;
}

.intro-logo-wrapper figure.women-owned-logo img {
    /* filter: grayscale(100%) invert(1); */
    max-width: 120px;
}

.intro-logo-wrapper figure.no-filter img {
    /* filter: none; */
}

.intro-logo-wrapper figure {
    margin-right: 1.5rem;
}

.intro-logo-wrapper figure.active img:hover {
    filter: none;
}

.intro-logo-wrapper figure img.gray.hide,
.intro-logo-wrapper figure img.normal.hide {
    opacity: 0;
}

.intro-logo-wrapper figure img.gray.show,
.intro-logo-wrapper figure img.normal.show {
    opacity: 1;
}


.footer h3 {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black);
}

.footer li {
    margin: 0.3rem 0;

}

.footer-menu3 div {
    line-height: 1.8rem;
}

.work-process-icons-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    width: 100%;
}

.work-process-icons-wrapper li {
    display: flex;
    height: 120px;
}

.work-process-icons-wrapper li:nth-child(even) {
    flex-direction: row-reverse;
}

.work-process-icons-wrapper li:nth-child(even) div {
    text-align: right;
}

.work-process-icons-wrapper li:nth-child(even) div span {
    margin-left: auto;
}

.work-process-icons-wrapper li figure {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
}

/* .work-process-icons-wrapper li figure::after {
    position: absolute;
    width: 100%;
    height: 38px;
    content: "";
    border-bottom-left-radius: 5px;
    left: 100%;
    border-bottom: 2px dashed;
    border-left: 2px dashed;
    top: 80%;
 
}
.work-process-icons-wrapper li.client-discovery figure::after {
width: 88px;
height: 34px;
left: 50%;
}
.work-process-icons-wrapper li.task-research figure::after{
left:auto;
right:0;
transform: scaleX(-1);
} */
.work-process-icons-wrapper li figure img {
    max-width: 80px;
    transform: scale(1.15);
    position: relative;
    z-index: 1;
    filter: brightness(0.25) invert(1);
    transition: all 0.25s ease-in-out;
}

/* .work-process-icons-wrapper.visible li figure img {
    filter: none;
} */
.work-process-icons-wrapper li figure.visible img {
    filter: none;
}

.work-process-icons-wrapper li div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    margin-right: 180px;
    position: relative;
}

.work-process-icons-wrapper li:nth-child(even) div {
    margin-right: 0;
    margin-left: 180px;
}

.work-process-icons-wrapper li div>* {
    display: block;
    padding: 0 0.3rem;
}

.work-process-icons-wrapper li div label {
    font-size: 1.3rem;
    font-weight: 600;

    span {
        color: var(--active-red);
    }
}

.work-process-icons-wrapper li div>span {
    width: 70%;
}

.strategy-develop>div {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border: 2px dashed #ced1d3;
    border-right: none;
    border-left: none;
    margin-right: 130px !important;
}

.strategy-develop>div::after {
    border-top-left-radius: 10px;
    border-left: 2px dashed #ced1d3;
    border-top: 2px dashed #ced1d3;
    content: "";
    position: absolute;
    left: -50px;
    top: -2px;
    width: 100px;
    height: 100px;
}

.strategy-develop>div::before {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-left: 2px dashed #ced1d3;
    border-bottom: 2px dashed #ced1d3;
    content: "";
    position: absolute;
    left: -50px;
    bottom: -2px;
    width: 100px;
    height: 100px;
}

.winning-trust>div {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top: 2px dashed #ced1d3;
    border-right: none;
    margin-right: 190px !important;
}

.winning-trust>div::after {
    border-top-left-radius: 10px;
    border-left: 2px dashed #ced1d3;
    border-top: 2px dashed #ced1d3;
    content: "";
    position: absolute;
    left: -30px;
    top: -2px;
    width: 100px;
    height: 100px;

}

.task-research>div {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: 2px dashed #ced1d3;
    /* border-right: 2px dashed #ced1d3; */
}

.task-research>div::after {
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-right: 2px dashed #ced1d3;
    border-top: 2px dashed #ced1d3;
    content: "";
    position: absolute;
    right: -80px;
    top: -2px;
    width: 100px;
    height: 100px;

}

.task-research>div::before {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right: 2px dashed #ced1d3;
    border-bottom: 2px dashed #ced1d3;
    content: "";
    position: absolute;
    right: -80px;
    bottom: -2px;
    width: 100px;
    height: 100px;

}

.client-discovery>div::after {
    border-bottom-left-radius: 10px;
    border-left: 2px dashed #ced1d3;
    border-bottom: 2px dashed #ced1d3;
    content: "";
    position: absolute;
    left: -60px;
    bottom: -2px;
    width: 100px;
    height: 100px;

}

.task-finalize>div::after {
    border-top-right-radius: 10px;
    /* border-right: 2px dashed #ced1d3; */
    border-top: 2px dashed #ced1d3;
    content: "";
    position: absolute;
    right: 0;
    top: -2px;
    width: 94px;
    height: 100px;
}

.task-finalize figure::after {
    position: absolute;
    right: 50%;
    top: -2px;
    bottom: -2px;
    width: 100px;
    border: 2px dashed #ced1d3;
    border-left: none;
    content: "";
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}



.work-process-icons-wrapper li:nth-child(odd)>figure {
    left: 30px;
}

.work-process-icons-wrapper li:nth-child(even)>figure {
    right: 30px;
}

.work-process-icons-wrapper li.strategy-develop>figure {
    left: 40px;
}

.work-process-icons-wrapper li.winning-trust figure {
    left: 48px;
}

.text-right {
    text-align: right !important;
}

.expanded-content-outer {
    display: flex;
    flex-direction: column !important;
    align-items: flex-end;
}

.expanded-content {
    height: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 1s cubic-bezier(0, 1, 0, 1)
}

.expanded-content.show {
    max-height: 500px;
    transition: max-height 1s ease-in;
}

.button.read-less {
    background-color: var(--button-bg);
}

/*menu*/
#menu-toggle {
    display: none;
}

.menu-button-container {
    position: absolute;
    right: 2rem;
    top: 0;
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: black;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button {
    top: 30px;
}

button::before,
.menu-button::after {
    display: block;
    background-color: black;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: "";
    margin-top: -8px;
}

.menu-button::after {
    content: "";
    margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(45deg);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-45deg);
}

/*scroll to top */
#scroll-to-top {
    position: fixed;
    right: 2rem;
    bottom: 1.2rem;
    border: 2px solid var(--body-font-color);
    transition: 0.2s;
    opacity: 0.5;
    cursor: pointer;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: white;

    &:hover {
        opacity: 1;
    }
}

#scroll-to-top a {
    display: block;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
}

#scroll-to-top a img {
    max-width: 60%;
}

/*dropdown*/
.header>nav>ul>li:has(.dropdown):hover>a::before {
    content: "";
    position: absolute;
    background-color: var(--button-bg);
    left: 0;
    right: 0;
    width: 2rem;
    margin: auto;
    height: 2rem;
    top: 130%;
    border-radius: 3px;
    transform: rotate(45deg);
    display: none;
    z-index: 999999;
}

.dropdown {
    position: absolute;
    width: 260px;
    top: 85%;
    min-height: 20px;
    background-color: var(--white);
    box-shadow: 0px 3px 5px var(--shadow-color);
    z-index: 99999;
    display: none;
    padding: 1.5rem 1.3rem;

    a {
        display: block;
    }

    li {
        position: relative;
    }

    li+li {
        margin-top: 0.5rem;
    }

    li:hover {
        color: var(--active-red);
    }

    ul {
        display: none;
        width: 240px;
        position: absolute;
        padding: 1.5rem 1.3rem;
        left: 80%;
        top: 4%;
        background-color: var(--white);
        z-index: 1;
        box-shadow: 0px 3px 5px var(--shadow-color);
        color: var(--body-font-color);
    }

    li:hover>ul {
        display: block;
    }
}

.dropdown>li>a::after {
    position: absolute;
    top: 0;
    right: 0;
    content: ">";
}

.dropdown>li:hover>a::after {
    transform: rotate(90deg);
}

.dropdown>li>a:only-child::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
}

.header nav ul li:hover .dropdown {
    display: block;
}

.dropdown>div {
    flex: 0 0 50%;
}

.dropdown>div.right-dropdown {
    flex-basis: 60%;
}

.dropdown>div.left-dropdown {
    flex: 0 0 40%;
}

.dropdown.open-left ul {
    right: 90%;
    left: auto;
}

.right-dropdown {
    background-color: var(--button-bg);
    padding: 1.55rem 2rem;
}

.right-dropdown>ul {
    display: flex;
    flex-wrap: wrap;
}

.header nav .right-dropdown>ul>li {
    flex: 0 0 32%;
    margin: 0 1% 1.5rem 0;
    transition: all 0.5s ease-in-out;
    color: var(--heading2-color);
    font-size: 0.9rem;
    white-space: nowrap;
    position: relative;
    /* background-color: rebeccapurple; */
}

.header nav .right-dropdown>ul>li>a {
    position: relative;
    z-index: 10;
}

.header nav .right-dropdown>ul>li:hover {
    /* transform: translateX(1rem); */
    color: var(--white);
}

.right-dropdown>ul ul {
    display: none;
    position: absolute;
    min-width: 200px;
    overflow: visible;
    top: 100%;
    left: 20%;
    background-color: var(--body-font-color);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    z-index: 11;
    opacity: 0.99;
    transform: translateX(-1rem);

}

.right-dropdown>ul ul li {
    font-size: 0.9rem;
}

.header nav .right-dropdown>ul>li:has(ul)>a::after {
    content: "⤸";
    display: inline-block;
    margin: 2px 0 0 5px;
}

.right-dropdown>ul ul li a {
    font-size: 0.8rem;
}

.right-dropdown>ul>li:hover>ul {
    display: block;
}

.icon-dropdown-menu {
    max-width: 4rem;
}

.left-dropdown {
    display: flex;
}

.dropdown>div.left-dropdown {
    align-items: flex-start;
    padding: 1rem 4rem;
}

.dropdown>div.left-dropdown>div {
    margin-left: 1rem;
    padding-right: 2rem;
}

.dropdown>div.left-dropdown label {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading2-color);
    display: block;
    margin-bottom: 0.5rem;
}

.dropdown>div.left-dropdown span {
    font-size: 0.8rem;
    line-height: 1.2rem;
    display: block;
}

/*end dropdown*/
.icons-text-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;

    a {
        color: var(--active-red);
    }
}

.icons-text-wrapper::before,
.icons-text-wrapper::after {
    content: "";
    position: absolute;
    width: 18%;
    height: 2px;
    top: 2rem;
    background-color: var(--dark-gray);
}

.icons-text-wrapper::before {
    left: 22%;
}

.icons-text-wrapper::after {
    right: 22%;
}

.icons-text-wrapper.two::before {
    left: 50%;
    transform: translateX(-50%);
}

.icons-text-wrapper.two::after {
    display: none;
}

.icons-text-wrapper>li {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.icons-text-wrapper>li figure {
    display: block;
    height: 4rem;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 0;
}

.icons-text-wrapper>li figure img {
    max-height: 3rem;
}

.icons-text-wrapper>li label {
    font-weight: 700;
    text-transform: uppercase;
}

.icons-text-wrapper>li span {
    display: block;
    text-align: center;
}

.icons-text-wrapper.two {
    justify-content: space-around;
}

.under-construction>div {
    height: 900px;
    background: url(../images/underconstruction-bg.webp) bottom center no-repeat;
    background-size: cover;
    margin-bottom: 3rem;
    margin-top: -5rem;
    padding-top: 6rem;
}

.under-construction h2 {
    width: 40%;
}

.icons-wrapper2 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    margin-top: 2rem;
    justify-content: space-between;

}

.icons-wrapper2>li {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 20%;
    flex-wrap: wrap;
}

.icons-wrapper2 figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border: 1.25rem solid;
    border-radius: 50%;
    /* box-shadow: 2px 2px 4px var(--shadow-color); */
    padding: 0;
}

.icons-wrapper2 figure>img {
    max-width: 100%;


}

.icons-wrapper2 label {
    display: block;
    text-align: center;
    text-transform: uppercase;
    padding: 0 1rem;
    position: relative;

}

.icons-wrapper2 label .sub-section {
    position: absolute;
    background: var(--white);
    box-shadow: 0 0 5px var(--shadow-color);
    color: var(--body-font-color);
    left: 0;
    width: 480px;
    bottom: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 1s cubic-bezier(0, 1, 0, 1);
    border-radius: 3px;
    font-weight: 400;
}

.icons-wrapper2 label .sub-section.single-col {
    width: 250px;

    a {
        flex-basis: 100% !important;
    }
}

.icons-wrapper2 li:hover .sub-section {
    max-height: 500px;
    transition: max-height 1s ease-in-out;
}

.icons-wrapper2 li:hover .sub-section>a {
    flex: 0 0 48%;
    margin: 0;
    padding: 0.3rem;
    font-size: 0.8rem;
    text-align: left;
    color: var(--body-font-color);
}

.icons-wrapper2 li:hover .sub-section>a:hover {
    color: var(--active-red);
}

.shadow-box-wrapper {
    display: flex;

}

.shadow-box-wrapper>li {
    padding: 1rem;
    box-shadow: 0px 0px 4px var(--shadow-color);
    background-color: var(--white);
    min-height: 150px;
    width: 250px;
    margin: 0 2rem 2rem 0;
}

.shadow-box-wrapper>li figure {
    width: 3rem;
    height: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.shadow-box-wrapper>li figure img {
    max-width: 100%;
    object-fit: contain;
}

.shadow-box-wrapper>li label {
    display: block;
    color: var(--black);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.shadow-box-wrapper>li p {
    font-size: 1rem;
    line-height: 1.2rem;
    margin: 0;
}

.form-wrapper {
    width: 80%;
    position: relative;
}

.form-wrapper .form-row {
    margin: 1rem 0;
}

.form-wrapper input[type=text],
.form-wrapper input[type=tel],
.form-wrapper input[type=email],
.form-wrapper textarea {
    width: 100%;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    background-color: var(--input-bg);
    border: 1px solid;
}

.form-wrapper textarea {
    height: 5.2rem;
    border-radius: 20px;
}

.form-wrapper a {
    text-decoration: underline;
    color: var(--heading-color)
}

.form-wrapper a:hover {
    text-decoration: none;
}

.checkbox-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.checkbox-wrapper input[type=checkbox] {
    cursor: pointer;
    margin-right: 10px;
    margin-top: 5px;
    background-color: var(--heading-color);
}

.text-animation-wrapper {
    position: relative;
    /* background-color: rgba(102, 51, 153, 0.438); */
    height: 420px;
    flex-grow: 0;
    flex-shrink: 0;
    align-self: flex-start;
}

.text-animation-wrapper>div {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.text-animation-wrapper>div.fade-in {
    opacity: 1;
}

.text-animation-wrapper>div.fade-out {
    opacity: 0;
}

.reset-section {
    margin-top: 6rem;
    margin-bottom: 3rem;

    p {
        margin-bottom: 2rem;

        label {
            font-weight: 700;
            display: block;
            color: var(--black);
            text-transform: uppercase;
        }
    }
}

.scrolling-image-container {
    overflow: hidden;
    /* margin: 6rem auto; */
}

.scrolling-logo-wrapper {
    display: flex;
}

.scrolling-logo-wrapper figure {
    position: relative;
    margin: 0 4rem;
}

.scrolling-logo-wrapper figure img {
    height: 80px;
    width: auto;
    /* filter: brightness(0.25) invert(1); */
    transition: all 0.3s ease-in-out;
}

.scrolling-logo-wrapper figure img.gray {
    position: absolute;
    opacity: 0;
    display: none;
}

.scrolling-logo-wrapper figure img.normal {
    opacity: 1;
}

.scrolling-logo-wrapper figure:hover .gray {
    opacity: 0;
    display: none;
}

.scrolling-logo-wrapper figure:hover .normal {
    opacity: 1;
}



.scrolling-image-container {
    overflow: hidden;
    margin-top: 1rem;
}

/* Inner container styles */
.scrolling-image-inner {
    display: flex;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
}

/* Text styles */
.scrolling-images {
    display: flex;
    margin-bottom: 3rem;
}



/* Apply the animation to the text items */
.scrolling-image-inner>div {
    animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.scrolling-image-container:hover .scrolling-image-inner>div {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

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

@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.naics-wrapper {
    img {
        width: 80px;
    }

    ul {
        display: flex;
        flex-wrap: wrap;
        border-top: 1px solid var(--border-top-color);
        justify-content: space-between;
    }

    li {
        margin: 0 1rem 0 0;
        flex: 0 0 60px;
        color: var(--body-font-color);
    }
}

.red-right-arrow {
    font-size: 2.7rem;
    line-height: 1.7rem;
    color: var(--active-red);
    letter-spacing: -6px;
}

.blue-text-bold {
    color: var(--heading-color);
    font-weight: 700;
}

.makes-us-unique {
    margin-top: 100px;
}

/*timeline*/
.timeline-wrapper {
    position: relative;
    padding: 15rem 0;
    margin-bottom: 0rem;

    .line {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%;
        height: 1px;
        border-top: 3px dashed var(--heading-color);

        &::before {
            content: "";
            position: absolute;
            background: var(--heading-color);
            left: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin-top: -2px;
        }

        &::after {
            content: "\01f892";
            position: absolute;
            color: var(--heading-color);
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            text-align: right;
            font-size: 3.4rem;
            width: 2px;
            margin-top: -5px;

        }
    }

    ul {
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: stretch;
        height: 10px;

        li {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            position: relative;
            transform: translateY(-50%);
            top: 50%;
            background: var(--heading-color);

            &::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                width: 20px;
                height: 20px;
                margin: auto;
                background-color: var(--logo-green);
                border-radius: 50%;
                animation: blink 4s linear infinite;
            }

            .timeline-text-wrapper {
                position: absolute;
                height: 200px;
                width: 180px;
                display: flex;
                flex-direction: column;
                align-items: center;
                top: 116%;
                left: 50%;
                transform: translateX(-50%);
            }

            .hand {
                width: 0;
                height: 100px;
                border-left: 3px dashed var(--heading-color);
                position: relative;

                &::after {
                    content: "";
                    width: 14px;
                    height: 14px;
                    position: absolute;
                    bottom: 0;
                    background-color: var(--white);
                    border-radius: 50%;
                    border: 3px solid var(--heading-color);
                    left: 50%;
                    transform: translate(-50%);
                    margin-left: -1px;
                }
            }

            label {
                font-weight: 700;
                color: var(--black);
                text-align: center;
                margin-bottom: 0;
            }

            span {
                text-align: center;
                font-size: 0.8rem;
            }

        }
    }
}

.timeline-wrapper li:nth-child(even) .timeline-text-wrapper {
    bottom: 116%;
    top: auto;
    flex-direction: column-reverse;
}

.timeline-wrapper li:nth-child(even) .hand::after {
    top: 0;
    bottom: auto;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
    }
}

.post-timeline-text {
    margin-bottom: 4rem;
}

/* timeline ends*/
.dark-green {
    background-color: var(--dark-green);
    border-color: var(--dark-green) !important;
}

.dark-orange {
    background-color: var(--dark-orange);
    border-color: var(--dark-orange) !important;
}

.purple {
    background-color: var(--purple);
    border-color: var(--purple) !important;
}

.light-pink {
    background-color: var(--light-pink);
    border-color: var(--light-pink) !important;
}

.dark-yellow {
    background-color: var(--dark-yellow);
    border-color: var(--dark-yellow) !important;
}

.icons-wrapper.icons-wrapper-body>div.corporate-services {
    flex-direction: column;
    flex-wrap: nowrap;
}

.icons-wrapper.icons-wrapper-body>div.corporate-services>figure {
    flex: 0 0 auto;
}

.logo-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0 4rem;

    li {
        flex: 0 1 auto;

        img {
            max-height: 50px;
        }
    }
}

.who-we-serve {
    margin-top: 1.5rem;
}

.who-we-serve h2 {
    margin-bottom: 2rem;
}

.who-we-serve~section p,
.careers-page~section p {
    margin-bottom: 1.5rem;

    a {
        color: var(--active-red);
    }
}

.who-we-serve~section.two-col-section.industries-we-serve {
    margin-top: 2rem;
}

.who-we-serve .right-col {
    text-align: right;

    img {
        max-width: 95%;
    }
}

.about-us {
    margin-top: 1.5rem;
}

.contact-us {
    margin-top: 1.5rem;
}

.upload-resume-wrapper {
    overflow: hidden;
    position: relative;
    background-color: var(--white);
    border: 2px dashed #ced1d3;
    padding: 1rem;
    display: flex;
    width: 100%;
    max-width: 500px;
    border-radius: 2.5rem;
    flex-direction: column;
    align-items: center;

    .file-upload-icon {
        width: 100px;
        margin-bottom: 5px;
    }

    input[type=file] {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        opacity: 0;
        cursor: pointer;
    }

    .fileinfo {
        font-size: 0.8rem;
        font-style: italic;
    }
}

.careers-page {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;

    .right-col {
        text-align: right;

        img {
            width: 470px;
        }
    }
}

.benefits-wrapper {
    display: flex;
    margin: 2rem 0 4rem;

    li {
        padding: 1rem 0.8rem;
        box-shadow: 0 0 5px var(--shadow-color);
        background-color: var(--white);
        margin: 0 2rem 0 0;
        display: flex;
        min-width: 350px;

        img {
            height: 3.5rem;
            margin-right: 0.8rem;
        }

        div {
            display: flex;
            flex-direction: column;
        }

        label {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--black);
        }

        a {
            color: var(--link-blue);
            font-weight: 600;
        }
    }
}

.required-text {
    color: var(--active-red);
    font-size: 0.8rem;
    display: block;
}

/*css loader */
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: var(--button-bg) #0000;
    animation: l16 1s infinite linear;
    position: absolute;
    z-index: -1;
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
}

.loader::before {
    border-color: var(--active-red) #0000;
    animation: inherit;
    animation-duration: .5s;
    animation-direction: reverse;
}

.loader::after {
    margin: 8px;
}

@keyframes l16 {
    100% {
        transform: rotate(1turn)
    }
}

#resume-loader-bg {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);

}

#resume-loader-bg+.loader {
    position: absolute;
    top: 40%;

}

#resume-submit-message {
    font-weight: 600;
}

#contact-response {
    position: absolute;
    bottom: -40px;
    font-weight: 600;
}

.loader.loader-contact {
    margin-left: 150px;
    bottom: 0;
    opacity: 0;
}

/*css switch*/
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch:has(input[disabled]) {
    opacity: 0.5;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    transform: translateX(24px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.static-content {
    p {
        margin-bottom: 1rem;
    }

    ul {
        list-style-position: outside;
        margin-left: 2rem;
        margin-bottom: 1rem;

        li {
            list-style-type: disc;
            margin: 0 0 0.5rem 0;
        }
    }

    a {
        color: var(--active-red);

        &:hover {
            text-decoration: underline;
        }
    }
}

/**/
#gdpr-cookies {
    background-color: var(--white);
    box-shadow: 0 0 5px var(--shadow-color);
    position: fixed;
    left: 1rem;
    right: 1rem;
    max-width: 600px;
    width: auto;
    bottom: 1rem;
    display: none;
    padding: 1rem;
    z-index: 111;

    &:hover {
        background-color: rgba(255, 255, 255, 1);
    }

    .close {
        position: absolute;
        right: 20px;
        top: 16px;
        font-size: 1.5rem;
        font-weight: 700;
        transform: rotate(45deg);
    }

    .cookie-button-wrapper {
        display: flex;
        justify-content: flex-end;
        margin-top: 1.5rem;

        a {
            border: 2px solid var(--heading-color);
            padding: 0.5rem 1rem;
            margin-left: 1.5rem;

            &.active {
                background-color: var(--heading-color);
                color: var(--white);
            }

            @media screen and (max-width: 768px) {
                padding: 0.5rem;
                white-space: nowrap;
            }
        }
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.3rem;
    }

}

#gdpr-customize-cookies {
    display: none;

    .overlay {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 112;
    }

    .cookie-container {
        background-color: var(--white);
        box-shadow: 0 0 5px var(--shadow-color);
        position: fixed;
        left: 0;
        top: 0;
        margin: auto;
        max-width: 760px;
        max-height: 560px;
        width: 90%;
        height: 80%;
        bottom: 0;
        right: 0;
        padding: 1rem;
        z-index: 113;

        h3+div {
            height: 400px;
            overflow-y: scroll;
        }

        .close {
            position: absolute;
            right: 20px;
            top: 16px;
            font-size: 1.5rem;
            font-weight: 700;
            transform: rotate(45deg);
        }

        .cookie-button-wrapper {
            display: flex;
            justify-content: flex-end;
            margin-top: 1.5rem;

            a {
                border: 2px solid var(--heading-color);
                padding: 0.5rem 1rem;
                margin-left: 1.5rem;

                &.active {
                    background-color: var(--heading-color);
                    color: var(--white);
                }

            }
        }

        h3 {
            font-size: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid;
        }

        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0;
        }

        p {
            font-size: 1rem;
            line-height: 1.3rem;
            margin-bottom: 1rem;
        }

        ul {
            border: 1px solid var(--border-top-color);
            margin-top: 1rem;

            li {
                display: flex;
                flex-direction: column;
                padding: 0.2rem 0.5rem;

                header {
                    display: flex;
                    align-items: center;

                    a {
                        font-weight: 700;
                        font-size: 1.6rem;
                        width: 1.5rem;
                        margin-right: 0.5rem;
                        text-align: center;

                        @media screen and (max-width: 768px) {
                            width: 1.2rem;
                            margin-right: 0;
                            text-align: left;
                        }
                    }
                }

                .switch {
                    margin-left: auto;
                }
            }

            li+li {
                border-top: 1px solid var(--border-top-color);
            }

            p {
                font-size: 0.9rem;
                line-height: 1.1rem;
                margin: 0;
                padding: 0;
                max-height: 0px;
                overflow: hidden;
                transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);

            }

            p.show {
                max-height: 500px;
                transition: max-height 0.5s ease-in-out;
            }
        }
    }
}

#accordion-tab-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 0;

    &>li {
        flex: 1;

        label {
            display: block;
            /* text-align: center; */
            justify-content: flex-start;
            background-color: #f1f1f1;
            cursor: pointer;
            margin-bottom: 0;
            padding: 0.5rem 1rem;
            border: 1px solid var(--body-font-color);

            &::after {
                content: "";
                position: absolute;
                width: 16px;
                height: 16px;
                background: url(../images/arrow-down.png) center center no-repeat;
                background-size: contain;
                right: 1rem;

            }
        }

        p {
            /* position: absolute; */
            left: 0;
            right: 0;
            top: 40px;
            overflow: hidden;
            display: none;
            padding: 1rem 1rem;
            transition: max-height 0.3s ease-in-out;
            border: 1px solid var(--body-font-color);
            border-top: none;
            margin-bottom: 0;
            background-color: white;
        }

        &.active>label {
            background-color: var(--heading2-color);
            color: var(--white);

        }

    }

    &>li.active label::after {
        filter: brightness(0) invert(1);
        transform: scaleY(-1);
    }

    @media (max-width:1280px) {
        align-items: stretch;


        &>li>label {
            height: 100%;
            display: flex;
            align-items: center;

        }

        & p {
            top: 70px !important;
        }
    }

    @media (max-width:1024px) {

        p {
            top: 35px !important;
        }
    }

    @media (max-width:1000px) {

        /* padding-bottom: 60px; */
        p {
            top: 55px !important;
        }
    }

    @media (max-width:600px) {
        flex-direction: column;

        p {
            position: static !important;
            margin-bottom: 0 !important;
            background-color: white;
        }

        label {
            justify-content: flex-start !important;
            padding: 0.5rem 1rem !important;
            position: relative;

            &::after {
                content: "";
                position: absolute;
                width: 16px;
                height: 16px;
                background: url(../images/arrow-down.png) center center no-repeat;
                background-size: contain;
                right: 1rem;

            }
        }

        & li.active label::after {
            filter: brightness(0) invert(1);
            transform: scaleY(-1);
        }
    }
}

.key-industries-wrapper {
    display: flex;
    margin-bottom: 1rem;
    align-items: stretch;
    justify-content: space-between;

    li {
        background-color: #f1f1f1;
        padding: 1rem;
        flex: 0 0 18%;
        border-radius: 10px;

        &>label {
            position: relative;
            padding: 0 1.5rem 0 1rem;
            left: -1rem;
            color: #ffffff;
            border-top-right-radius: 50px;
            border-bottom-right-radius: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            line-height: 1.2rem;
        }

        p {
            margin-bottom: 0;
        }

        &>label.red {
            background-color: #f45665;
        }

        &>label.golden {
            background-color: #e1b441;
        }

        &>label.green {
            background-color: #00d6a3;
        }

        &>label.blue {
            background-color: #3f5ed1;
        }

        &>label.purple {
            background-color: #9b59b6;
        }
    }
}

.forensics-steps-wrapper {
    padding: 1.5rem 0;

    h3 {
        color: var(--heading2-color);
        text-align: center;
        margin-bottom: 1.5rem;
    }
}

figure.infographics {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;

    &>img {
        max-width: 100%;
    }
}

.digital-forensics-wrapper {
    display: flex;
    justify-content: space-between;

    &>li {
        flex: 0 0 15%;

        div {
            position: relative;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #0f4067;
            border: 2px solid #4fc4b8;
            margin-bottom: 1rem;
            border-radius: 10px;

            figure {
                width: 100px;
                height: 56px;
                margin-bottom: 0.4rem;
                margin-top: 0.8rem;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

            label {
                text-align: center;
                color: var(--white);
            }

        }

        span {
            color: #0f4067;
        }
    }

    &>li:nth-child(-n+4) div:after {
        content: "";
        width: 50px;
        height: 16px;
        background: url(../images/icon-arrow.png) right center no-repeat;
        background-size: auto 16px;
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translate(0, -50%);
        font-size: 2rem;
    }
}

.normal-content {
    p {
        margin-bottom: 1.5rem;
    }
}

.full-width-image-wrapper {
    width: 100%;
    text-align: center;
    margin: 1rem auto;

    img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
}

.mobile {
    display: none;
}

.our-offerings-wrapper {
    position: relative;

    &>div {
        padding: 60px;
        margin: 40px auto;
    }

    h3 {
        text-transform: uppercase;
        width: 220px;
        height: 220px;
        box-sizing: border-box;
        font-weight: 700;
        border-radius: 50%;
        border: 10px solid #7f9fb6;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
        outline: 10px solid #92a019;
        outline-offset: 50px;
    }

    ul {
        li {
            height: 80px;
            width: 240px;
            position: absolute;
            z-index: 1;

            figure {
                display: block;
                width: 100%;
                height: 100%;

                img {
                    position: absolute;
                    width: 50px;
                    height: 50px;
                    object-fit: contain;
                    right: 15px;
                    top: 50%;
                    transform: translateY(-50%) scale(0.8);

                }

                figcaption {
                    width: 150px;
                    color: var(--white);
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    text-align: right;
                    font-size: 0.7rem;
                    font-weight: 600;
                }

                svg {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

            path#pa-stroke {
                fill: white;
            }

            path#pa-stroke-outer {
                stroke: white;
            }
        }

        li:nth-child(1) {
            left: 50%;
            top: 33px;
            transform: translateX(-310px);

            path {
                fill: #1d7cc9;
            }
        }

        li:nth-child(2) {
            left: 50%;
            top: 50%;
            transform: translate(-375px, -50%);

            path {
                fill: #15588d;
            }
        }

        li:nth-child(3) {
            left: 50%;
            bottom: 33px;
            transform: translateX(-310px);

            path {
                fill: #0f4067;
            }
        }

        li:nth-child(4) {
            right: 50%;
            top: 33px;
            transform: translateX(310px);

            path {
                fill: #9d405f;
            }

            svg {
                transform: scale(-1);
            }

            figcaption {
                text-align: left;
                right: 0;
                left: auto;
            }

            img {
                left: 15px;
                right: auto;
            }
        }

        li:nth-child(5) {
            right: 50%;
            top: 50%;
            transform: translate(375px, -50%);

            path {
                fill: #cb4b57;
            }

            svg {
                transform: scale(-1);
            }

            figcaption {
                text-align: left;
                right: 0;
                left: auto;
            }

            img {
                left: 15px;
                right: auto;
            }
        }

        li:nth-child(6) {
            right: 50%;
            bottom: 33px;
            transform: translateX(310px);

            path {
                fill: #f28300;
            }

            svg {
                transform: scale(-1);
            }

            figcaption {
                text-align: left;
                right: 0;
                left: auto;
            }

            img {
                left: 15px;
                right: auto;
            }
        }
    }
}

.ux-design-wrapper-outer-wrapper {
    margin: 2rem 0 0;

    h2 {
        margin-bottom: 0;
    }
}

.ux-design-wrapper {
    padding: 2rem 0;
}

.ux-design-wrapper>ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 400px;

    li {
        width: 150px;
        margin: 0 1rem;
        position: relative;
        display: flex;
        align-items: center;

        div {
            width: 150px;
            height: 100px;
            background: url(../images/ui-ux/ux_ui17.png) center center no-repeat;
            background-size: contain;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                max-width: 40px;
                height: auto;
            }
        }


        span {
            position: absolute;
            width: 190px;

            & label {
                display: block;
                margin-bottom: 0;
                left: -40%;
                position: relative;
                /* transform: translateX(50%); */
            }

            &::after {
                position: absolute;
                width: 16px;
                height: 52px;
                background: url(../images/ui-ux/ux_ui1.png) no-repeat bottom center;
                background-size: 100% auto;
                content: "";
            }
        }
    }

    li:nth-child(even) span::after {
        background-position: top center;
    }

    li:nth-child(odd) span::after {
        bottom: -25px;
        left: -8px;
        transform: scaleY(-1);
    }

    li:nth-child(even) span::after {
        top: -25px;
        left: -8px;
    }

    li:nth-child(odd) span {
        bottom: 0;
        left: 50%;
        bottom: 70%;
        padding-bottom: 30px;
    }

    li:nth-child(even) span {
        top: 0;
        left: 50%;
        top: 70%;
        padding-top: 30px;
        /* transform: translateX(-50%); */
    }

    li:nth-child(2) {
        &>div {
            background-image: url(../images/ui-ux/ux_ui14.png);
        }

        & span::after {
            background-image: url(../images/ui-ux/ux_ui15.png);
        }
    }

    li:nth-child(3) {
        &>div {
            background-image: url(../images/ui-ux/ux_ui13.png);
        }

        & span::after {
            background-image: url(../images/ui-ux/ux_ui12.png);
        }
    }

    li:nth-child(4) {
        &>div {
            background-image: url(../images/ui-ux/ux_ui8.png);
        }

        & span::after {
            background-image: url(../images/ui-ux/ux_ui9.png);
        }
    }

    li:nth-child(5) {
        &>div {
            background-image: url(../images/ui-ux/ux_ui6.png);
        }

        & span::after {
            background-image: url(../images/ui-ux/ux_ui5.png);
        }
    }

    li:nth-child(6) {
        &>div {
            background-image: url(../images/ui-ux/ux_ui2.png);
        }

        & span::after {
            background-image: url(../images/ui-ux/ux_ui4.png);
        }
    }

}

.our-values-outer-wrapper {
    & ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        &>li {
            flex: 0 0 29%;
            background-color: var(--white);
            box-shadow: 0 0 5px var(--shadow-color);
            /* padding: 1rem 1.3rem; */
            margin: 0 1.5rem 2.5rem;
            border-radius: 5px;
            overflow: hidden;

            label {
                display: block;
                padding: 0 1.3rem 0 0;
                background-color: var(--heading2-color);
                color: var(--white);
                height: 3rem;
                display: flex;
                align-items: center;

                code {
                    margin-right: 1rem;
                    flex: 0 0 2rem;
                    display: flex;
                    background-color: var(--active-red);
                    color: white;
                    align-items: center;
                    justify-content: center;
                    align-self: stretch;
                    font-weight: 700;
                    font-size: 32px;
                }
            }

            p {
                padding: 0 1.3rem 1.3rem;
            }

        }
    }
}

.quote {
    margin-bottom: 1rem;

    label {
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 1.5rem;
        color: var(--heading2-color);
        display: inline;

        &::before,
        &::after {
            content: open-quote;
            color: var(--active-red);
            font-size: 30px;
            font-weight: 700;
            display: inline;
        }

        &::after {
            content: close-quote;
        }
    }

    span {
        font-weight: 700;
    }
}

.number-lists-wrapper {
    counter-reset: lists;
    margin-bottom: 2rem;

    ul {
        li {
            position: relative;
            padding-left: 3rem;

            label {
                display: block;
                font-size: 1.2rem;
                font-weight: 600;
                margin-bottom: 0;
            }

            p {}

            &::before {
                counter-increment: lists;
                content: "0" counter(lists);
                font-size: 2rem;
                color: var(--active-red);
                position: absolute;
                left: 0;
                top: -5px;
            }
        }

        li+li {
            margin-top: 2rem;
        }
    }
}

.diversity-list {
    margin-bottom: 1.5rem;
    width: 100%;

    li {
        position: relative;
        padding: 0 0 0 1rem;

        &::before {
            position: absolute;
            width: 0.4rem;
            height: 0.4rem;
            background: var(--active-red);
            content: "";
            left: 0;
            top: 8px;
            box-shadow: 2px 2px 0px var(--logo-green);
        }

        & li::before {
            border-radius: 50%;
            background-color: var(--logo-green);
            box-shadow: none;
        }
    }
}

.women-empowered {
    .left-col {
        flex: 0 0 75%;

    }

    .right-col {
        flex: 0 0 20%;

    }
}

.women-empowered-picture-wrapper {
    &>div {
        display: flex;
        margin: 1.5rem auto;

        & .left-col {
            width: 30%;
            margin-right: 3rem;
            display: flex;
            justify-content: space-between;

            img {
                width: auto;
                max-height: 90px;

            }
        }

        & .right-col {
            width: 50%;
        }
    }

    h3 {
        color: var(--heading2-color);
        margin-bottom: 1rem;
    }

    p {
        margin-bottom: 1rem;
    }

    .capsule-button {
        background-color: var(--heading2-color);
        color: white;
        padding: 0.3rem 1rem;
        border-radius: 20px;
        display: inline-block;

    }
}

.team-members {
    &>ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 3rem;
        margin-top: 3rem;

        & li {
            position: relative;
            padding: 3.6rem 1.5rem 1.5rem;
            margin: 0 0 3rem;
            flex: 0 0 30%;
            border: 1px solid var(--border-top-color);
        }

        img {
            position: absolute;
            top: -2rem;
            left: 1.5rem;
            width: 100px;
            height: 100px;
            object-fit: contain;
            background: white;
        }

        figcaption {
            font-weight: 700;
            position: relative;
            font-size: 1.1rem;

            span {
                display: block;
                font-weight: 600;
                font-weight: 1rem;
                line-height: 1.3rem;
            }
        }

        section dl {
            margin: 0 0 0.5rem 0;
            position: relative;
            padding: 0 0 0 1rem;
            line-height: 1.3rem;

            &::before {
                position: absolute;
                width: 0.4rem;
                height: 0.4rem;
                background: var(--active-red);
                content: "";
                left: 0;
                top: 8px;
                box-shadow: 2px 2px 0px var(--logo-green);
            }
        }

    }
}

.reset-approach-inner .work-process-icons-wrapper li div {
    border: none;
}

.reset-approach-inner .work-process-icons-wrapper li:nth-child(even) {
    flex-direction: row;

    div {
        text-align: left;
        margin-left: 0;

        &>* {
            margin-left: 0;
        }
    }

    figure {
        left: 30px;
        right: auto;
    }
}

.reset-approach-inner>div {
    position: relative;
}

.reset-approach-inner .work-process-icons-wrapper::after {
    content: "";
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 1px;
    content: "";
    border-left: 1px dashed;
}

.reset-approach-inner ul>li>div::before,
.reset-approach-inner ul>li>div::after,
.reset-approach-inner ul>li figure::after,
.reset-approach-inner ul>li figure::before {
    display: none;
}

.reset-approach-inner .work-process-icons-wrapper li.winning-trust figure {
    left: 30px;
}

.infographic-image-wrapper {
    margin: 0 0 3rem;

    figure {
        margin: 0;
        padding: 0;

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

    div+div {
        margin-top: 2rem;
    }

    figure.three-quarter {
        max-width: 70%;
        margin: 0 auto 1.5rem;
    }

    figure.half {
        max-width: 50%;
        margin: 0 auto 1.5rem;
    }

    figure.quarter {
        max-width: 25%;
        margin: 0 auto 1.5rem;
    }
}

.four-col-box-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    &>li {
        flex: 0 0 23%;
        text-align: center;
        height: 300px;

        &>img {
            max-width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    @media screen and (max-width: 768px) {
        justify-content: center;

        &>li {
            flex: 0 0 46%;
            margin-bottom: 30px;
        }
    }

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

        &>li {
            flex: 0 0 100%;
            margin-bottom: 30px;
        }
    }
}

.hexagon {
    height: 200px;
    /* adjust to control the size  */
    aspect-ratio: cos(30deg);
    clip-path: polygon(-50% 50%, 50% 100%, 150% 50%, 50% 0);
    background: var(--boxes-bg);
}

.enterprise-system-list {
    counter-reset: item;

    &>li {
        margin-bottom: 1.5rem;
        counter-increment: item;
        display: flex;
        align-items: flex-start;

        &>div {
            display: flex;
        }

        h4 {
            font-size: 1.2rem;
            color: var(--heading2-color);
            font-weight: 700;
        }

        p+p {
            margin-top: 0.5rem;
        }

        & figure {
            width: 100px;
            flex: 0 0 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--active-red);
            margin-right: 1.5rem;

            &::before {
                content: "0" counter(item);
                font-size: 2rem;
                font-weight: 700;
            }
        }
    }
}

.sectors-we-serve {
    display: flex;
    align-items: center;
    justify-content: center;

    &>figure {
        flex: 0 0 550px;
        position: relative;
    }

    &>figure:nth-child(1) {
        &>img {
            max-height: 300px;
        }
    }

    &>figure:nth-child(2) {
        text-align: right;

        &>img {
            max-height: 370px;
        }
    }

    li {
        position: absolute;
        font-weight: 500;
    }

    .unique-entity {
        left: 310px;
        top: -3px;
    }

    .cage-code {
        left: 348px;
        top: 131px;
    }

    .capability-statement {
        left: 310px;
        top: 250px;
    }

    .financial-services {
        top: 10px;
        right: 235px;
    }

    .e-learning {
        top: 75px;
        right: 306px;
    }

    .healthcare {
        top: 160px;
        right: 330px;
    }

    .insurance {
        top: 268px;
        right: 310px;
    }

    .media {
        top: 333px;
        right: 234px;
    }
}

.header-logo-wrapper2 {
    display: flex;
    gap: 40px;
    justify-content: center;
    position: relative;

    &>img {
        max-height: 100px;
    }
}

.header-logo-wrapper2 .button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/pdf-icon.png);
    background-repeat: no-repeat;
    background-position: 90% center;
    padding-right: 50px;
    max-width: 180px;

}

.code-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 100px;
    align-items: center;
    background-color: #EBEAE9;
    margin: 30px 0;

    h3 {
        margin-bottom: 0;
    }
}

.small-section-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;

    &>li {
        flex: 0 0 45%;

        &>label {
            display: block;
            border-radius: 30px;
            padding: 10px 10px 10px 40px;
            background-color: #15588d;
            position: relative;
            color: white;
            font-weight: 600;

            &::before {
                position: absolute;
                left: -10px;
                top: 50%;
                transform: translateY(-50%);
                width: 40px;
                height: 40px;
                border-radius: 20px;
                background-color: #EBEAE9;
                border: 3px solid white;
                content: "";
            }
        }

        ul {
            margin-left: 60px;

            li {
                margin-bottom: 5px;

                em {
                    font-style: normal;
                    color: var(--link-blue);
                    font-weight: 600;
                }

                list-style-type: disc;
            }
        }
    }
}

.small-section-wrapper {
    &>li:nth-child(1)>label {
        background: linear-gradient(90deg, #5C8906 0%, #7FBD05 50%);
    }

    &>li:nth-child(2)>label {
        background: linear-gradient(90deg, #4770B6 0%, #4683C0 50%);
    }

    &>li:nth-child(3)>label {
        background: linear-gradient(90deg, #F88A13 0%, #FCA907 50%);
    }

    &>li:nth-child(4)>label {
        background: linear-gradient(90deg, #9C0708 0%, #D7191B 50%);
    }
}

.zip-code-wrapper {
    background-color: rgba(171, 208, 53, 0.5);
    display: flex;
    flex-direction: column;
    color: var(--heading-color);
    align-items: stretch;
    padding: 5px;
    margin-top: 20px;

    &>* {
        text-align: center;
    }
}

.testimonial-wrapper {
    overflow: hidden;
    position: relative;
    background-color: var(--white);
    border: 2px dashed #ced1d3;
    padding: 1rem;
    border-radius: 2.5rem;
    margin-top: 30px;
    min-height: 100px;
    display: flex;
    align-items: center;
    li {
        margin: 0 36px;
        padding-top: 20px;
        p {
            margin-bottom: 6px;
        }

        .person {
            font-style: italic;
            font-weight: 700;
            font-size: 16px;
            display: block;
            text-align: right;
            color: var(--active-red);
        }
    }
   
}

#testimonials .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;

    .owl-prev,
    .owl-next {
        height: 30px;
        width: 30px;

        display: block;

        span {
            display: block;
            font-size: 60px;
            line-height: 30px;
            color: #ced1d3;
            transition: all 0.3s ease-in-out;

            &:hover {
                color: var(--body-font-color);
            }
        }
    }
}
#testimonials .owl-dots {
    display: none;
}