:root {
    
    --body-font: "Lato", sans-serif;
    --menu-font: "Poppins", sans-serif;
    --page-bg: #ffffff;
    --body-color: rgb(0, 0, 0);
    /* --logo-blue: #1CB9DA; */
    --logo-blue: #049bbb;
    --logo-orange: #EA5835;
    --logo-green: #479079;
    --logo-yellow: #DDD512;
    --header-nav-bg: #b83a3a;
    --footer-bg: #1C293F;
    --footer-color: #ffffff;
    --sub-heading-color: #113347;
    --tab-border-color: #B5B5B5;
    --border-radius-large: 15px;
    --border-radius-small: 5px;
    --border-radius-thin: 3px;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --border-color: #BBBBBB;
    --toggle-button-color: #69626e;
    --color0: rgba(0, 0, 0, 0.8);
    --color1: rgba(229, 63, 89, 0.4);
    --color2: rgba(71, 144, 121, 0.2);
    --color3: rgba(0, 123, 255, 0.7);
    --color4: rgba(215, 190, 0, 1);
    --color5: #282828;
    --color6: #441171;
    --color7: #671AAA;
    --light-gray: #f7f7f7;
    --error-color: #cc0000;
    --jobs-color1: #010825;
    --jobs-color2: #1a064c;
    --jobs-color3: #250574;
    --jobs-section-bg: rgba(217, 217, 217, 0.1);
    --jobs-section-bg-hover: rgba(217, 217, 217, 0.3);
    --resources-bg: #261868;
    --team-bg: #35627b;
    --header-menu-active-color: #049bbb;
    --logo-blue-light-bg:#ebfbff;
    --logo-orange-light-bg:#ffeeea;
    --logo-green-light-bg: #e1fff5;
    --logo-yellow-light-bg: #fffedb;
}

input {
    outline: none;
    border: 1px solid;
}

img {
    border: none;
}

html,
body,
p,
div,
h1,
h2,
h3,
figure {
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    box-sizing: border-box;
}

ul,
li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
    outline: none;
}

/* end normalize*/
html {
    font-size: 16px;
    margin-top: 0 !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 1rem;
    color: var(--body-color);
    overflow-x: hidden;
}

html,
body,
body>main {
    min-height: 100vh;
    height: 100%;
}

body>main {
    display: flex;
    flex-direction: column;
}

body>main>header {
    position: static;
    width: 100%;
    left: 0;
    right: 0;
    top: -87px;
    transition: top 0.3s ease-in-out;

    &.sticky {
        top: 0;
        position: fixed;
        z-index: 100;
        box-shadow: 0 0 7px var(--shadow-color);
        background-color: white;
        backdrop-filter: blur(0);
    }
}

body>main>section>div,
body>main>header>div,
body>main>footer>div {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

body>main>footer {
    margin-top: auto;
    padding: 2.5rem 0 1rem;
    background-color: var(--footer-bg);
    color: var(--footer-color);

    &>div {
        display: flex;
        /* justify-content: space-between; */
        flex-wrap: wrap;
    }

    .copyright-text {
        width: 100%;
        text-align: center;
        opacity: 0.4;
        font-size: 0.9rem;
    }

    .footer-left {
        border-right: 1px solid var(--border-color);
        padding-right: 2rem;
        display: flex;
        flex-direction: column;
        max-width: 30%;

        figure {
            width: 200px;
            margin-bottom: 2rem;

            img {
                width: 100%;
                height: auto;
                object-fit: contain;
            }
        }

        p {
            margin-bottom: 1.2rem;
        }

        p:empty {
            display: none;
        }

        .footer-social-icons-wrapper {
            display: flex;

            a {
                margin-right: 1.5rem;
                height: 30px;
                border: 2px solid white;
                border-radius: var(--border-radius-small);
                transform: rotate(45deg);
                transition: transform 0.3s ease-in-out;

                img {
                    height: 100%;
                    width: auto;
                    object-fit: contain;
                    transform: rotate(-45deg) scale(0.6);
                    transition: transform 0.3s ease-in-out;
                }

                &:hover {
                    transform: rotate(0deg);

                    img {
                        transform: rotate(0deg) scale(0.6);
                    }
                }
            }
        }
    }

    .footer-right {
        margin-left: 4rem;
        display: flex;
        justify-content: space-between;
        flex: 1;

        &>div {
            flex: 1;

            label {
                font-weight: 700;
                font-size: 1.2rem;
                display: block;
                margin-bottom: 1.2rem;
            }

            li {
                margin-bottom: 1.2rem;

                a {
                    transition: left 0.3s ease-in-out;
                    left: 0;
                    position: relative;
                }

                &:hover a {
                    left: 10px;
                }

            }
        }

    }
}

body>main>header {
    background-color: rgba(255, 255, 255, .65);
    backdrop-filter: blur(7px);
    border-radius: 0;
    padding: 0.5rem 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 11;

    &>div {
        display: flex;
        justify-content: space-between;
        align-items: center;

        figure {
            width: 250px;
            display: flex;
            align-items: center;
            flex: 0 0 250px;

            img {
                width: 100%;
                height: auto;
                object-fit: contain;
            }
        }

        .header-menu {
            position: relative;
            z-index: 100;
        }

        .header-menu>ul {
            display: flex;
            font-family: var(--menu-font);

            &>li {
                margin: 0 0.6rem;
                font-size: 1.1rem;
                font-weight: 400;
                position: relative;

                &>a {
                    transition: all 0.3s ease-in;
                    position: relative;

                    &::after {
                        position: absolute;
                        content: "";
                        left: 0;
                        right: 0;
                        width: 0;
                        margin: auto;
                        top: 90%;
                        width: 0;
                        overflow: hidden;
                        height: 2px;
                        border-radius: var(--border-radius-large);
                        background-color: var(--logo-blue);
                        transition: all 0.3s ease-in;
                    }

                }

                &:hover ul {
                    max-height: 500px;
                    padding: 1rem;
                    left: 0;
                }

                ul {
                    background-color: rgba(255, 255, 255, .95);
                    backdrop-filter: blur(7px);
                    border-radius: var(--border-radius-large);
                    padding: 0 1rem;
                    position: absolute;
                    left: -0.8rem;
                    width: 300px;
                    top: 100%;
                    max-height: 0;
                    overflow: hidden;
                    transition: all 0.3s ease-in;
                    font-size: 1rem;

                    li {
                        padding: 0.5rem 0;

                        a {
                            transition: left 0.3s ease-in-out;
                            position: relative;
                            left: 0;

                            &:hover {
                                left: 10px;

                            }
                        }
                    }
                }

                &.current-menu-item,
                &.current-menu-parent {
                    &>a {
                        color: var(--header-menu-active-color);

                        &::after {

                            width: 100%;
                        }
                    }

                }

                &>a:hover {
                    color: var(--header-menu-active-color);

                    &::after {
                        width: 100%;
                    }
                }
            }
        }
    }
}

h1 {
    font-size: 70px;
    font-weight: 600;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;

}

h2 {
    font-size: 41px;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--sub-heading-color);
}

h2+p {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.static-content h2+p {
    font-weight: 400;
}

.static-content ul {
    margin-bottom: 2rem;
    list-style-position: inside;

    li {
        margin-bottom: 0;
        list-style-type: disc;
    }
}

.home-banner-outer-wrapper>div {
    width: 100%;
    margin: 0;
    max-width: 100%;
    position: relative;
}

.home-banner-wrapper {
    width: 100%;
    height: calc(100vh - 150px);
    overflow: hidden;
    position: relative;
    min-height: 500px;

    &>li {
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.7s ease-in-out;

        figure {
            z-index: 1;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;

            &>img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            &>video {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        &>div {
            position: relative;
            z-index: 2;
            color: White;
            width: 100%;
            max-width: 1600px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            padding-right: 40%;
            margin: 0 auto;
            box-sizing: border-box;

            p {
                font-size: 24px;
                font-weight: 500;
                margin: 1rem 0 4rem;
                transition: max-height 0.7s 3s ease-in-out;
                overflow: hidden;
                max-height: 0;
                display: none;
            }

            a {
                display: inline-block;
                border-radius: 30px;
                background-color: var(--logo-blue);
                color: white;
                font-weight: 600;
                font-size: 24px;
                padding: 1rem 2.6rem;
                transition: transform 0.5s 2.2s ease-in-out;
                transform: translateX(-100rem);
                /* &:hover {
                    transform: scale(1.05);
                } */
            }
        }

        &.active {
            opacity: 1;
            z-index: 1;
        }
    }

    h1 {
        /* font-family: "Orbitron", sans-serif; */
    }
}

.home-banner-wrapper li.active div p {
    max-height: 200px;
    display: none;
}

.home-banner-wrapper li.active div .readmore {
    transform: translateX(0rem);
}

#homeBannerNav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.5rem;
    display: flex;
    justify-content: center;
    z-index: 10;

    &>dt {
        height: 0.5rem;
        width: 2rem;
        padding: 0;
        transition: all 0.3s ease-in-out;
        border-radius: var(--border-radius-thin);
        background-color: white;
        margin: 0 0.5rem;
        cursor: pointer;

        &.active {
            padding: 0 1rem;
            background-color: var(--logo-blue);
        }
    }
}

.align-center {
    text-align: center;
}

.sub-heading-para {
    text-transform: uppercase;
    font-size: 31px;
    font-weight: 500;
    margin-bottom: 2rem;
}


.color-white {
    color: white !important;
}

.explore-solutions {
    padding: 3rem 0;
}

.our-blog-wrapper {
    padding: 3rem 0;
    background: linear-gradient(130deg, #f1f1f1 0%, #ebebeb 50%, #fafafa 100%);

    h2 {
        margin-bottom: 3rem;
    }
}

.case-studies {
    padding: 3rem 0;
    background: url(../images/case-studies.jpg) top center no-repeat;
    background-size: cover;
}

.tab-wrapper {
    width: 100%;

    header {
        display: flex;
        /* padding-left: 2rem; */
        position: relative;

        a {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 10px 10px 0 0;
            margin: 0 2rem 0 0;
            color: #000;
            border: 1px solid var(--tab-border-color);
            font-weight: 600;
            font-size: 19px;
            position: relative;
            overflow: hidden;

            span {
                position: relative;
                z-index: 2;
            }

            &.active {
                background-color: var(--header-menu-active-color);
                color: #fff;
                border-color: transparent;
            }

            &::after {
                position: absolute;
                content: "";
                left: 0;
                right: 0;
                bottom: 0;
                height: 0;
                background-color: var(--header-menu-active-color);
                z-index: 1;
                transition: height 0.3s ease;
            }

            &:not(.active):hover::after {
                height: 100%;
            }
        }

        &::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            height: 2px;
            width: 0;
            background-color: var(--logo-blue);
            transition: all 0s;
            z-index: 1;
        }

        &.active::before {
            width: 100%;
            transition: none;
            transition: all 2.5s 1s ease-in-out;
        }
    }

    section {

        padding: 2rem 0;
        border-top: 1px solid var(--tab-border-color);
        overflow: hidden;

        &>ul {
            overflow: hidden;
            display: flex;

            &>li {
                display: flex;
                justify-content: space-between;
                flex: 1 0 100%;
                overflow: hidden;
                transition: all 0.5s ease-in-out;
                cursor: pointer;

                &>div {
                    flex: 0 0 30%;
                    height: 300px;
                    border-radius: var(--border-radius-large);
                    overflow: hidden;
                    background-color: #113347;
                    position: relative;

                    figure {
                        width: 100%;
                        height: 100%;

                        img {
                            width: 100%;
                            height: auto;
                            object-fit: cover;
                        }
                    }

                    a {
                        position: absolute;
                        left: 0;
                        right: 0;
                        top: 62%;
                        bottom: 20px;
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        overflow: hidden;
                        transition: all 0.3s ease-in-out;

                        p {
                            max-height: 0;
                            overflow: hidden;
                            transition: max-height 0.3s ease-in;
                        }

                        dd {
                            margin: 0;
                            padding: 0;
                            position: absolute;
                            left: 0;
                            right: 0;
                            top: 0;
                            bottom: 0;
                            background-color: rgba(255, 255, 255, .35);
                            backdrop-filter: blur(7px);
                            border-radius: 0;
                        }

                        &>div {
                            position: relative;
                            width: 100%;
                            display: flex;
                            flex-direction: column;
                            align-items: flex-start;
                            padding: 1rem;

                            img {
                                width: 30px;
                                height: 30px
                            }

                            label {
                                font-size: 22px;
                                font-weight: 600;
                                margin: 0.7rem 0 0.8rem;
                                white-space: nowrap;
                            }
                        }

                        &.bigg {
                            top: 50%;

                            div label {
                                white-space: normal;
                            }
                        }
                    }

                    &:hover {
                        a {
                            bottom: 0;
                            top: 0;
                            padding-top: 2rem;

                            dd {
                                border-radius: var(--border-radius-large);
                            }

                            p {
                                max-height: 200px;
                            }
                        }
                    }
                }

            }

            &>li.active {
                width: 0;
                flex-basis: 0;
            }
        }
    }
}

#dv-tab-wrapper {
    transition: opacity 0.5s 0.3s ease-in-out, transform 1s 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
}

#dv-tab-wrapper.reveal-transition {
    opacity: 1;
    transform: translateY(0);
}

.case-studies-outer-wrapper {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    margin: 0;
}

.case-studies-wrapper {

    margin-left: 10rem;
    width: 1000rem;
    transition: margin 1s ease-in-out;

    &>ul:not(.case-studies-navigation) {
        width: 1000rem;
        display: flex;
        height: 470px;

        &>li {
            background-color: #fff;
            border-radius: var(--border-radius-large);
            width: 860px;
            height: 100%;
            margin: 0 4rem 0 0;
            border: 7px solid transparent;
            display: flex;
            align-items: stretch;

            &>.content {
                flex: 1;
                padding-right: 2rem;
                display: flex;
                flex-direction: column;

                h3 {
                    margin-top: 0rem;
                    font-size: 27px;
                    /* color: var(--sub-heading-color); */
                    color: #049bbb;
                    font-weight: 600;
                    margin-bottom: 1.5rem;
                }

                p {
                    margin-bottom: 1.5rem;
                    font-size: 19px;
                    padding-right: 1.5rem;
                }

                &>a {
                    color: white;
                    /* text-decoration: underline; */
                    font-size: 19px;
                    align-self: flex-start;
                    text-decoration: none;
                    background-image: linear-gradient(currentColor, currentColor);
                    background-position: 0% 100%;
                    background-repeat: no-repeat;
                    background-size: 0% 2px;
                    transition: background-size 0.5s;
                    /* background-color: var(--logo-blue); */
                    background-color: #EA5835;
                    padding: 0.3rem 1rem;
                    border-radius: var(--border-radius-thin);
                    margin-bottom: 2rem;

                    &:hover {
                        text-decoration: none;
                        /* background-size: 100% 2px; */
                        /* color: var(--logo-blue); */

                    }
                }

                h4 {
                    font-size: 19px;
                    margin: auto 0 0.5rem;
                    opacity: 0.5;
                    transform: translateY(-3px);
                    font-weight: 600;
                }
            }

            .technology-icons {
                margin-top: auto;

                h4 {
                    max-height: 0;
                    white-space: nowrap;
                    overflow: hidden;
                    padding-bottom: 5px;
                    margin-right: 1.5rem;
                    border-bottom: 1px solid var(--body-color);
                    transition: max-height 0.7s 0.7s ease-in-out;
                }

                ul {
                    display: flex;

                    li {
                        width: 50px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        margin-right: 1.2rem;
                        opacity: 0;
                        transition: all 0.3s ease-in-out;

                        img {
                            max-width: 80%;
                            height: auto;
                        }

                        label {
                            font-weight: 300;
                            font-size: 0.6rem;
                            text-align: center;
                            display: block;
                        }
                    }
                }
            }

            &>.pic {
                flex: 0 0 40%;
                width: 40%;
                border-radius: var(--border-radius-large);
                margin-right: 1.5rem;
                overflow: hidden;

                figure {
                    width: 100%;
                    height: 100%;

                    img {
                        display: block;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }
            }
        }
    }
}

.case-studies-wrapper ul li.current {
    .technology-icons {
        h4 {
            max-height: 2.5rem;
        }

        li {
            opacity: 1 !important;
        }

        li:nth-child(1) {
            transition-delay: 1s;
        }

        li:nth-child(2) {
            transition-delay: 1.5s;
        }

        li:nth-child(3) {
            transition-delay: 2s;
        }

        li:nth-child(4) {
            transition-delay: 2.5s;
        }

        li:nth-child(5) {
            transition-delay: 3s;
        }

        li:nth-child(6) {
            transition-delay: 3.5s;
        }

        li:nth-child(7) {
            transition-delay: 4s;
        }
    }
}

.case-studies-navigation {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    li {
        width: 30px;
        height: 15px;
        background-color: white;
        margin: 0 6px;
        border-radius: var(--border-radius-small);
        transition: all 0.3s ease-in;

        &.current {
            background-color: var(--logo-orange);
            padding: 0 1rem;
        }

        &.next {
            width: 15px;
            height: 15px;
            background: transparent url(../images/icon-right-arrow.png) no-repeat center center;
            background-size: 100% auto;
        }

        &.previous {
            width: 15px;
            height: 15px;
            background: transparent url(../images/icon-left-arrow.png) no-repeat center center;
            background-size: 100% auto;
        }
    }

}

.our-blog-items-wrapper {
    display: flex;
    justify-content: space-between;

    &>li {
        flex: 0 0 30%;

        figure {
            border-radius: var(--border-radius-large);
            background-color: white;
            /* padding: 10px; */
            width: 100%;
            height: 350px;
            /* box-shadow: 2px 2px 5px var(--shadow-color); */
            margin-bottom: 1rem;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: var(--border-radius-large);
                transition: transform .7s ease;
            }

            &:hover img {
                transform: scale(1.1);
            }
        }

        p {
            font-size: 22px;
            line-height: 28px;
            font-weight: 500;

            span {
                text-decoration: none;
                background-image: linear-gradient(currentColor, currentColor);
                background-position: 0% 100%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                transition: background-size 1s;
            }
        }

        &:hover p span {
            background-size: 100% 2px;
            color: var(--logo-blue);
        }
    }
}

.inner-page-banner-wrapper {
    margin: 0;
    width: 100%;
    /* height: calc(100vh - 100px); */
    height: 500px;

    &>div {
        max-width: 100%;
        height: 100%;
        padding: 0;
        position: relative;

        .banner-content {
            position: absolute;
            left: 100px;
            right: 100px;
            top: 50%;
            transform: translateY(-50%);
            text-align: center;
            color: white;
        }

        h1 {
            font-weight: 500;
            font-size: 80px;
        }

        h1.small {
            font-size: 64px;
        }

        p {
            font-size: 24px;
        }

        &>figure {
            width: 100%;
            height: 100%;

            img,
            video {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }
}

.inner-page-banner-wrapper.contact-page {
    height: auto;
    background: url(../images/contact-bg.jpg) top center no-repeat;
    background-size: cover;
}

.contact-page>div {
    padding: 5rem 0;
}
.static-content {
    margin-top: 3rem;
}
.inner-intro-wrapper {
    padding: 3rem 0 0;
    &>div {
       padding: 1.6rem 2rem 0.9rem;
        box-sizing: border-box;
        background: linear-gradient(130deg, #ffffff 0%, #f3f3f3 50%, #ffffff 100%);
        border: 1px solid var(--shadow-color);
        border-radius: var(--border-radius-large);
        box-shadow: 5px 5px 7px var(--shadow-color);
        position: relative;
        z-index: 1;
        margin: -7rem auto 0;

        .heading-label {
            font-weight: 600;
            text-align: center;
            display: block;
            margin-top: 1.5rem;
            margin-bottom: 2.2rem;
            font-size: 22px;
        }
        ul:not(.wp-block-list) {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            
            & > li {
                flex: 0 0 28%;
                border-radius: var(--border-radius-large);
                border:1px solid var(--logo-blue);
                background-color: var(--logo-blue-light-bg);
                padding: 1rem;
                margin-bottom: 1.5rem;
                box-sizing: border-box;
            }
            &>li:empty{
                visibility: hidden;
            }
            & > li>strong:first-child {
                display: block;
                font-size: 22px;
                font-weight: 600;
                margin-bottom: 16px;
            }
            & > li:nth-child(4n+1){
                background-color: var(--logo-blue-light-bg);
                border-color: var(--logo-blue);
            }
            & > li:nth-child(4n+2){
                background-color: var(--logo-green-light-bg);
                border-color: var(--logo-green);
            }
            & > li:nth-child(4n+3){
                background-color: var(--logo-orange-light-bg);
                border-color: var(--logo-orange);
            }
            & > li:nth-child(4n+4){
                background-color: var(--logo-yellow-light-bg);
                border-color: var(--logo-yellow);
            }
        }
        .sep-in-intro {
            height:1px;
            background-color: var(--border-color);
            margin-bottom: 2rem;
            margin-top: 1rem;
            
        }
        p + .sep-in-intro {
            margin-top: 1.8rem;
        }
        ul.two > li  {
            flex-basis: 46%;
        }
    }
}

p {
    font-size: 19px;
    margin-bottom: 1rem;
}

.inner-intro-wrapper {
    p {
        font-size: 19px;
        margin-bottom: 1rem;

        &>br {
            display: none;
        }
    }

    li {
        font-size: 19px;
        margin-bottom: 1rem;

        br {
            display: none;
        }
    }

}

h3 {
    font-size: 27px;
    font-weight: 600;
}

.center-seperator {
    position: relative;

    &::after {
        height: 2px;
        content: "";
        width: 30%;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--border-color);
    }
}

.our-endeavours {
    padding: 3rem 0;

    h2 {
        text-align: center;
    }
}

.endaevour-wrapper-outer {
    &>ul {
        display: flex;
        flex-direction: column;
        width: 100%;

        &>li {
            height: 400px;
            margin-bottom: 1rem;
            align-items: stretch;
            justify-content: space-between;
            display: flex;

            &>article {
                width: 65%;
                flex: 1 1 65%;
                border-radius: var(--border-radius-large);
                padding: 1.5rem 2.5rem;
                color: white;

                &>div {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    height: 100%;

                    &>span {
                        margin-bottom: 2rem;
                    }

                    &>h3 {
                        margin-bottom: 2rem;
                    }

                    &>p {
                        margin-bottom: 2rem;
                    }

                    &>a {
                        margin-top: auto;
                        align-self: flex-end;
                    }
                }
            }

            &>figure {
                flex: 0 1 35%;
                overflow: hidden;
                border-radius: var(--border-radius-large);

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }

        &>li:nth-child(odd) {
            flex-direction: row-reverse;

            &>figure {
                margin-left: 1rem;
            }
        }

        &>li:nth-child(even) {

            &>figure {
                margin-right: 1rem;
            }
        }

        &>li:nth-child(4n+1)>article {
            background: linear-gradient(135deg, var(--color0), var(--color1));
        }

        &>li:nth-child(4n+2)>article {
            background: linear-gradient(135deg, var(--color0), var(--color2));
        }

        &>li:nth-child(4n+3)>article {
            background: linear-gradient(135deg, var(--color0), var(--color3));
        }

        &>li:nth-child(4n)>article {
            background: linear-gradient(135deg, var(--color0), var(--color4));
        }
    }
}

.value-propositions {
    padding: 3rem 0;
    background: linear-gradient(130deg, #f1f1f1 0%, #ebebeb 50%, #fafafa 100%);

    h2 {
        text-align: center;
        margin-bottom: 3rem;
    }

    div>ul {
        display: flex;
        justify-content: space-between;

        &>li {
            width: 270px;
            height: 220px;
            background: url(../images/circuit-bg.png) top right no-repeat;
            background-size: 70px auto;
            background-color: white;
            border: 1px solid var(--shadow-color);
            border-radius: var(--border-radius-large);
            box-shadow: 5px 5px 7px var(--shadow-color);
            transition: transform 0.3s ease-in-out;

            &:nth-child(even) {
                margin-top: 130px;
            }

            a {
                display: flex;
                flex-direction: column;
                height: 100%;
                padding: 2rem 1rem;

                box-sizing: border-box;

                figure {
                    width: 70px;
                    height: 70px;
                    margin-bottom: 2rem;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }
            }
        }
    }
}

.value-propositions li:nth-child(odd):hover {
    transform: scale(1.1) rotate(-10deg);
}

.value-propositions li:nth-child(even):hover {
    transform: scale(1.1) rotate(10deg);
}

.purple-gradient-bg {
    background: linear-gradient(135deg, var(--color5) 0%, var(--color7) 16%, var(--color6) 37%, var(--color5) 100%);
}

.faq-outer-wrapper {

    padding: 3rem 0;

    h2 {
        text-align: center;
        color: white;
        margin-bottom: 3rem;
    }

    &>div {
        display: flex;
        height: 700px;

        &>figure {
            width: 40%;
            flex: 0 0 40%;
            border-radius: var(--border-radius-large);
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        &>ul {
            margin-left: 1rem;
            flex: 1 1 60%;
            width: 60%;
            height: 100%;
            overflow: auto;

            &>li {
                border-radius: var(--border-radius-large);
                padding: 1.5rem;
                background-color: rgba(255, 255, 255, .35);
                backdrop-filter: blur(7px);
                color: white;
                margin-bottom: 1rem;
                position: relative;

                span {
                    position: absolute;
                    width: 2.5rem;
                    height: 2.5rem;
                    right: 1rem;
                    top: 1rem;
                    border-radius: 50%;
                    overflow: hidden;
                    background: url(../images/icon-up-arrow.png) center center no-repeat;
                    background-size: 1.1rem auto;
                    background-color: var(--toggle-button-color);
                    transform: rotate(180deg);
                    transition: all 0.3s ease-in-out;
                }

                dt {
                    font-size: 27px;
                    font-weight: 600;
                    padding-right: 2rem;
                    cursor: pointer;
                }

                dd {
                    font-size: 19px;
                    max-height: 0;
                    transition: all 0.3s ease-in-out;
                    overflow: hidden;
                    margin: 0;

                }

                &.active dt {
                    span {
                        transform: rotate(0deg);
                    }
                }

                &.active dt+dd {
                    max-height: 500px;
                    padding: 1rem 0;
                }
            }
        }
    }
}

.faq-wrapper::-webkit-scrollbar {
    width: 0.5em;
}

.faq-wrapper::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.faq-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    /* outline: 1px solid slategrey; */
}


.two-col-layout-outer-wrapper {
    padding: 3rem 0;

    .two-col-layout {
        display: flex;
        justify-content: space-between;

        &>div {
            flex: 0 0 48%;
            overflow: hidden;
        }

        figure {
            max-height: 410px;
            overflow: hidden;
            width: auto;
            border-radius: var(--border-radius-large);

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        p {
            margin-bottom: 2rem;
        }

        h2+p {
            font-weight: 400;
            font-size: 19px;
        }

        h2 span {
            display: block;
        }

        &.right {
            flex-direction: row-reverse;
        }
    }

    .two-col-layout+.two-col-layout {
        margin-top: 3rem;
    }

    .full-height-image {
        max-height: 100%;

        figure {
            max-height: 100%;
            height: 100%;

            img {
                object-fit: cover;
            }
        }
    }
}

.button {
    display: inline-block;
    border: none;
    border-radius: var(--border-radius-thin);
    background-color: var(--logo-blue);
    color: white;
    font-weight: 500;
    font-size: 24px;
    padding: 1rem 2.6rem;
    transition: padding 0.3s ease-in-out;

    &:hover {
        padding: 1rem 2.8rem;
        color: white;
    }
}

.career-banner-wrapper>div {
    height: 500px;
}

.explore-jobs-outer-wrapper {
    padding: 3rem 0;
    background: linear-gradient(130deg, var(--jobs-color1) 0%, var(--jobs-color2) 50%, var(--jobs-color3) 100%);
    color: white;

    h2 {
        color: white;
    }
}

.jobs-filter {
    margin-bottom: 2rem;
}

.jobs-listings>ul>li {

    h3 {
        font-size: 32px;
        font-weight: 500;
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;

        label {
            padding: 0.3rem 0.7rem;
            background-color: var(--logo-yellow);
            color: black;
            font-size: 16px;
            border-radius: 50px;
            margin-left: 1rem;
            font-weight: 400;
        }
    }

    li {
        padding: 1.5rem 2rem;
        border-radius: var(--border-radius-large);
        background-color: var(--jobs-section-bg);
        margin-bottom: 2rem;

        h4 {
            margin: 0;
            font-size: 24px;
            font-weight: 500;
            display: flex;
            align-items: center;
            text-align: left;
            justify-content: space-between;
            margin-bottom: 1.5rem;

            span {
                color: white;
                font-size: 16px;
                border-radius: 50px;
                margin-left: 1rem;
                font-weight: 400;
                text-align: right;
                flex: 0 0 110px;
                align-self: flex-start;
            }
        }

        div {
            display: flex;
            font-size: 16px;

            a {
                margin-left: auto;
                font-weight: 500;
                background-image: linear-gradient(currentColor, currentColor);
                background-position: 0% 100%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                transition: background-size 1s;

            }


            label {
                position: relative;
                display: flex;
                align-items: center;
                margin-right: 1rem;

                &::before {
                    display: block;
                    width: 5px;
                    height: 5px;
                    content: "";
                    border-radius: var(--border-radius-large);
                    background-color: white;
                    margin-right: 0.5rem;
                }
            }
        }

        &:hover {
            background-color: var(--jobs-section-bg-hover);
            cursor: pointer;


            div a {
                background-size: 100% 2px;
                color: var(--logo-blue);
            }

        }
    }
}

.cant-find-section,
.life-at-cloudcraftz,
.explore-jobs-outer-wrapper {
    padding: 3rem 0;
    text-align: center;
}

.life-at-cloudcraftz {
    background-color: var(--light-gray);
}

.job-details {
    padding: 3rem 0;

    h2 {
        text-align: center;
    }
}

.job-details-section {
    display: flex;
    justify-content: space-between;
    position: relative;

    .details {
        flex: 0 0 70%;

        ul {
            font-size: 19px;
            margin-bottom: 1rem;

            li {
                margin-bottom: 0.3rem;
                position: relative;

                /* padding-left:1.2rem; */
                &::before {
                    /* position: absolute; */
                    width: 0.6rem;
                    height: 0.6rem;
                    color: var(--logo-orange);
                    content: "⮚";
                    left: 0;
                    top: 2px;
                    position: relative;
                    font-size: 24px;
                    margin-right: 0.3rem;
                    /* box-shadow: 2px 2px 0px var(--logo-orange); */
                    border-radius: var(--border-radius-thin);
                }
            }

        }
    }

    .job-section-headings {
        margin-bottom: 1rem;
    }

    .upload-wrapper {
        flex: 0 0 25%;

        .drag-drop-upload {
            position: sticky;
            top: 100px;
            border: 2px dashed var(--border-color);
            box-sizing: border-box;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-radius: var(--border-radius-large);
            overflow: hidden;

            .icon {
                width: 70px;
                height: auto;

            }

            label {
                font-size: 13px;
            }

            p {
                margin-top: 2rem;
                font-size: 16px;
                text-align: center;

                span {
                    display: block;
                }
            }



            input[type=file] {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                cursor: pointer;
                opacity: 0;
                z-index: 1;
            }

            #drag-drop-loader-wrapper {
                z-index: 2;
                position: absolute;
                display: none;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                background: rgba(255, 255, 255, .75);
            }
        }

        .file-info {
            text-align: center;
            font-size: 13px;
            font-style: italic;
            display: block;
            margin-top: 0.5rem;
        }

        .file-info2 {
            text-align: center;
            font-size: 16px;
            display: block;
            margin-top: 0.5rem;
            color: red;

            &.success {
                color: green;
                font-weight: 500;
            }
        }
    }
}

.job-details-header {
    display: flex;
    font-size: 19px;
    align-items: center;
    margin-bottom: 1.5rem;

    span {
        margin: 0 1.5rem 0 0;
        display: flex;
        align-items: center;
        font-weight: 600;
    }

    img {
        width: 1.2rem;
        height: auto;
        margin: 0 0.3rem 0 0;
    }
}

.similar-jobs-wrapper {
    padding: 3rem 0;
    background-color: var(--light-gray);

    h2 {
        text-align: center;
    }

    ul {
        display: flex;
        /* justify-content: space-between; */
        flex-wrap: wrap;

        li {
            flex: 0 0 30%;
            background-color: white;
            border-radius: var(--border-radius-large);
            padding: 2rem;
            box-sizing: border-box;
            margin:0 1.5rem 1.5rem 0;
            overflow: hidden;

            h3 {
                margin-bottom: 1.5rem;
                text-overflow: ellipsis;
                overflow: hidden;
                white-space: nowrap;
            }

            a {
                color: var(--logo-blue);
                background-image: linear-gradient(currentColor, currentColor);
                background-position: 0% 100%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                transition: background-size 1s;
                font-size: 19px;
                font-weight: 600;

                &:hover {
                    background-size: 100% 2px;
                    color: var(--logo-blue);
                }
            }

            div {
                display: flex;
                flex-direction: column;
                font-size: 19px;
                align-items: center;
                margin-bottom: 1.2rem;
                align-items: flex-start;

                span {
                    margin: 0 0 1rem 0;
                    display: flex;
                    align-items: center;
                    font-weight: 600;
                }

                img {
                    width: 1.2rem;
                    height: auto;
                    margin: 0 0.4rem 0 0;
                }
            }
        }
    }

    .button-wrapper {
        text-align: center;
    }

}

.upload-resume-wrapper {
    position: relative;
    display: inline-block;

    input[type=file] {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        cursor: pointer;
        opacity: 0;
    }
}

#file-info-wrapper {
    display: none;
    align-items: center;
    flex-direction: column;

    span {
        margin-right: 1rem;
    }
}

.auto-image-slider-wrapper {
    width: 100%;
    display: grid;
    grid-template: 'con1 con2 con5 con4'
        'con1 con2 con5 con6'
        'con1 con3 con5 con6'
    ;
    gap: 1.5rem;
    height: 480px;

    &>div {
        overflow: hidden;
        border-radius: var(--border-radius-large);
        position: relative;

        figure {
            display: flex;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .slider-wrapper-horizontal {
            animation: scrollHorizontal 10s linear infinite;
            /* display: flex;
            width: 400%;
            min-width: max-content;
            max-width: 2000px; */
        }

        .slider-wrapper-vertical {
            animation: scrollVertical 10s linear infinite;
            height: 400%;

            figure {
                height: 25%;
            }
        }

    }

    .con1 {
        grid-area: con1;

        .slider-wrapper-vertical {
            animation-duration: 8s;
        }
    }

    .con2 {
        grid-area: con2;

    }

    .con3 {
        grid-area: con3;

        .slider-wrapper-horizontal {
            animation-duration: 8s;
        }
    }

    .con4 {
        grid-area: con4;

    }

    .con5 {
        grid-area: con5;

    }

    .con6 {
        grid-area: con6;

    }

    /* .vertical figure:nth-child(1) {
        z-index: 4;
    }

    .vertical figure:nth-child(2) {
        z-index: 3;
    }

    .vertical figure:nth-child(3) {
        z-index: 2;
    }

    .vertical figure:nth-child(4) {
        z-index: 1;
    }

    .vertical figure:nth-child(1) {
        animation: moveup 10s  infinite;
    }

    .vertical figure:nth-child(2) {
        animation: moveup 10s 2s infinite;
    } */


    .horizontal {
        display: flex;

        figure {
            flex: 0 0 100%;
        }
    }



}

@keyframes scrollHorizontal {
    0% {
        /* transform: translateX(0); */
        margin-left: 0;
    }

    25% {
        /* transform: translateX(-25%); */
        margin-left: -100%;
    }

    50% {
        /* transform: translateX(-25%); */
        margin-left: -100%;
    }

    75% {
        /* transform: translateX(-50%); */
        margin-left: -200%;
    }

    100% {
        /* transform: translateX(-50%); */
        margin-left: -200%;
    }
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
        /* margin-top:0; */
    }

    25% {
        transform: translateY(-25%);
        /* margin-top:-100%; */
    }

    50% {
        transform: translateY(-25%);
        /* margin-top:-100%; */
    }

    75% {
        transform: translateY(-50%);
        /* margin-top:-200%; */
    }

    100% {
        transform: translateY(-50%);
        /* margin-top:-200%; */
    }
}


.filter-row {
    display: flex;
    justify-content: space-between;

    .form__group {
        width: 100%;
    }

    .button-flat {
        white-space: nowrap;
        padding: 1rem 1.2rem;
        margin-left: 1.5rem;
        border-radius: var(--border-radius-small);
        border: none;
        background-color: transparent;
        border: 1px solid var(--border-color);
        color: var(--border-color);
        font-size: 19px;
        cursor: pointer;

        &:disabled {
            opacity: 0.5;
            cursor: auto;
        }

        &:hover:not(:disabled) {
            background-color: var(--logo-blue);
            border-color: var(--logo-blue);
            color: white;
        }
    }

    .select {
        flex: 0 0 30%;
    }
}

/*form fields*/
.captcha-wrapper{
    position: relative;
    input[type=text] {
        width: 100%;
        border: 0;
        border-bottom: 1px solid var(--border-color);
        outline: 0;
        font-size: 16px;
        color: var(--border-color);
        padding: 7px 0;
        background: transparent;
        transition: border-color 0.2s;
    }
    .wpcf7-captchac {
        position: absolute;
        left: 130px;
        top: 0;
    }
}
.form__group {
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;


    .form__field {
        width: 100%;
        border: 0;
        border-bottom: 1px solid var(--border-color);
        outline: 0;
        font-size: 16px;
        font-family: var(--body-font);
        color: var(--border-color);
        padding: 7px 0;
        background: transparent;
        transition: border-color 0.2s;
    }

    .form__field::placeholder {
        color: transparent;
    }

    .form__field:placeholder-shown~.form__label {
        font-size: 18px;
        cursor: text;
        top: 20px;
    }

    label,
    .form__field:focus~.form__label {
        position: absolute;
        top: 0;
        display: block;
        transition: 0.2s;
        font-size: 14px;
        color: var(--border-color);
    }

    .form__field:focus~.form__label {
        color: var(--border-color);
    }

    .form__field:focus {
        padding-bottom: 6px;
        border-bottom: 2px solid var(--border-color);
    }

    /* .wrap {
    position: absolute;
    right: 0;
    top: 40%;
    width: 350px;
    left: 0;
    margin: 0 auto;
  } */
}

.error input {
    border-color: var(--error-color) !important;

}

.error label {
    color: var(--error-color) !important;
}

/* select starting stylings ------------------------------*/
.select {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.select-text {
    position: relative;
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    padding: 10px 10px 10px 0;
    font-size: 18px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    color: var(--border-color);
}

.select-text option {
    color: var(--body-color);
}

.select-text option:first-child {
    display: none;
}

/* Remove focus */
.select-text:focus {
    outline: none;
    border-bottom: 1px solid var(--border-color);
}

/* Use custom arrow */
.select .select-text {
    appearance: none;
    -webkit-appearance: none
}

.select:after {
    position: absolute;
    top: 18px;
    right: 10px;
    /* Styling the down arrow */
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--border-color);
    pointer-events: none;
}


/* LABEL ======================================= */
.select-label {
    color: var(--border-color);
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 10px;
    transition: 0.2s ease all;
}

/* active state */
.select-text:focus~.select-label,
.select-text:valid~.select-label {
    color: var(--border-color);
    top: -20px;
    transition: 0.2s ease all;
    font-size: 14px;
}

/* BOTTOM BARS ================================= */
.select-bar {
    position: relative;
    display: block;

}

.select-bar:before,
.select-bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: var(--border-color);
    transition: 0.2s ease all;
}

.select-bar:before {
    left: 50%;
}

.select-bar:after {
    right: 50%;
}

/* active state */
.select-text:focus~.select-bar:before,
.select-text:focus~.select-bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/****/
.our-story {
    padding: 8rem 0 3rem;
    background: url(../images/5.jpg) center center no-repeat;
    background-size: cover;

    &>div {
        max-width: 1300px;
        background-color: rgba(19, 30, 61, 0.7);
        /* backdrop-filter: blur(7px); */
        padding: 3rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        border-radius: var(--border-radius-large);

        &>* {
            flex: 0 0 48%;
        }
    }

    h1 {
        font-size: 104px;
        padding: 0 10%;
        margin: 0 auto;
    }
}

.leadership-team {
    padding: 3rem 0;
    background: url(../images/12.png) no-repeat center center;
    background-size: cover;

    h2 {
        text-align: center;
        color: white;
    }
}

#leadership-bio-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 450px;
    overflow: hidden;
    position: relative;

    .pic-wrapper {
        flex: 0 0 25%;
        overflow: hidden;
        width: 100%;
        position: relative;
        visibility: hidden;

    }

    .bio-wrapper {
        flex: 0 0 70%;
        color: white;
        border-radius: var(--border-radius-large);
        overflow: hidden;
        padding: 2rem;
        background-color: var(--team-bg);

        ul {
            max-height: 100%;
            overflow: hidden;
            width: 106%;
        }

        li {

            height: 400px;
            margin-right: 6%;
            opacity: 0;
            transition: opacity 1s ease-in-out;

            &.show {
                opacity: 1;
            }
        }


        article {

            .linked-in {
                /* position: absolute; */
                /* right: 1rem;
                top: 1rem; */
                display: inline-block;
                width: 24px;
                height: 24px;
                background: url(../images/icon-linkedin.svg);
                background-size: 100% auto;
                margin-left: 0.6rem;

            }

            label {
                font-weight: 600;
                display: flex;
                align-items: center;
                font-size: 27px;
                margin-bottom: 0.5rem;
            }

            span {
                font-size: 17px;
                display: block;
                margin-bottom: 0.5rem;
                display: flex;
                align-items: flex-end;
            }

        }

        figure {
            width: 25%;
            height: 100%;
            overflow: hidden;
            border-radius: var(--border-radius-large);
            position: absolute;
            left: 0;
            top: 0;

            img {
                width: 100%;
                height: auto;
                object-fit: contain;
                position: relative;
                /* left: 50%;
                transform: translateX(-50%); */
                border-radius: var(--border-radius-large);
            }

        }
    }

}

.bio-nav {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;

    a {
        width: 1.8rem;
        height: 1.8rem;
        border-radius: 50%;
        overflow: hidden;
        background: url(../images/icon-up-arrow.png) center center no-repeat;
        background-size: 0.8rem auto;
        border: 2px solid var(--toggle-button-color);
        transition: all 0.3s ease-in-out;
        transform: rotate(90deg);
        opacity: 0.5;
        margin: 0 0 0 1rem;

        &.previous {
            transform: rotate(-90deg);
        }

        &:hover {
            opacity: 1;
        }
    }
}

.team-wrapper-outer-wrapper {

    ul {
        display: flex;
        position: relative;
        height: 400px;
        align-items: stretch;
        justify-content: space-between;

        li {

            height: 100%;
            flex: 0 0 23%;

            figure {
                width: 100%;
                height: 100%;
                overflow: hidden;
                border-radius: var(--border-radius-large);

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }


            div {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
                position: absolute;
                bottom: 0%;
                left: 0;
                right: 0;
                border-radius: 10px;
                background: white;
                /* padding: 1rem; */
                z-index: 10;

                p {
                    font-size: 17px;
                    overflow: auto;
                    margin: 1rem;
                }
            }

            /* &:hover article {
                top: 0;
                bottom: 0;
                border-radius: var(--border-radius-large);

                div {
                    max-height: calc(100% - 50px);
                    overflow: auto;
                }
            } */
            &>section {
                height: 100%;
                position: relative;
                overflow: hidden;
            }

            &:hover div {
                max-height: 600px;
            }
        }
    }

    nav {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin: 3rem auto 0;

        a {
            width: 3.6rem;
            height: 3.6rem;
            border: 1px solid var(--border-color);
            border-radius: 50%;
            margin: 0 0 0 1rem;
            position: relative;
            overflow: hidden;

            &.previous {
                transform: scaleX(-1);
            }


        }
    }
}

.our-partners {
    padding: 3rem 0;

    h2 {
        text-align: center;
    }

    &>div {
        max-width: initial;
        padding: 0 !important;
    }
}

.our-values-wrapper {
    padding: 3rem 0;
    background: url(../images/our-value-bg.jpg) no-repeat top center;
    background-size: cover;
    position: relative;

    .our-values-figure {
        max-width: 45%;

        figure {
            width: 100%;

            img {
                width: 100%;
            }
        }
    }

    .our-value-text-wrapper {
        margin-top: 3rem;
        display: flex;
        justify-content: space-between;

        h2 {
            position: absolute;
            color: white;
            left: 50%;
            top: 9rem;
            font-size: 72px;

        }

        &>div {
            flex: 0 0 48%;
            background-color: rgba(19, 30, 61, 0.7);
            border-radius: var(--border-radius-large);
            padding: 2rem 1rem;
            color: white;
            position: relative;



            figure {
                display: flex;
                height: 1.5rem;
                align-items: center;
                margin-bottom: 1rem;

                img {
                    height: 100%;
                    object-fit: contain;
                    margin-right: 0.5rem;
                }

                figcaption {
                    font-size: 21px;
                    font-weight: 600;
                    letter-spacing: 1px;
                }
            }

            p {
                margin-bottom: 0;
                font-weight: 300;
            }

            p+p {
                margin-top: 1rem;
            }
        }
    }
}

/*scrolling partners*/
.scrolling-image-container {
    overflow: hidden;
    /* margin: 6rem auto; */
}

.scrolling-logo-wrapper {
    display: flex;
}

.scrolling-logo-wrapper figure {
    position: relative;
    margin: 0 2rem;
}

.scrolling-logo-wrapper figure img {
    height: 60px;
    width: auto;
    filter: brightness(0.25) grayscale(0.5);
    opacity: 0.25;
    transition: all 0.3s ease-in-out;
}




.scrolling-logo-wrapper figure:hover .normal {
    opacity: 1;
    filter: none;
}



.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;

}



/* 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%);
    }
}

/**/

.world-map-wrapper {
    background: url(../images/world-map.jpg) no-repeat top center;
    min-height: 1032px;
    overflow: hidden;

    /* height: auto !important; */
    div {
        height: 100% !important;
        position: relative;
        width: 1920px;
        max-width: 1920px;
        left: 50%;
        transform: translateX(-50%);
    }

    .location>span {
        position: absolute;

        label {
            left: 50%;
            transform: translateX(-50%) translateY(-20px);
            position: absolute;
            width: 300px;
            border-radius: var(--border-radius-large);
            padding: 0 1rem 1rem;
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            opacity: 0;
            transition: all 0.3s ease-in-out;

            h4 {
                margin-bottom: 0.5rem;
            }
        }

        figure {
            width: 50px;
            height: 70px;
            cursor: pointer;

            img {
                width: auto;
                height: 100%;
                object-fit: contain;
            }

            &:hover+label {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
        }

        &.kolkata {
            left: 1220px;
            top: 343px;
        }

        &.bangalore {
            left: 930px;
            top: 600px;
        }

        &.singapore {
            left: 1567px;
            top: 828px;
        }

    }
}

.contact-form-wrapper {
    /* position: absolute; */
    max-width: 1600px;
    left: 0;
    right: 0;
    margin: auto;
    top: 150px;
    bottom: 60px;
    display: flex;
    align-items: center;
    padding: 0 3rem;

    &>div {
        flex: 0 0 50%;
    }

    input[type=tel],
    input[type=text],
    input[type=email] {
        color: var(--body-color);
    }

    .contact-data {
        padding-right: 5rem;
        color: white;

        h1,
        p {
            margin-bottom: 4rem;
        }
    }

    .contact-icons-wrapper>a {
        display: flex;

        figure {
            width: 3rem;
            height: 3rem;
            margin-right: 0.8rem;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        section {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        label {
            font-weight: 600;
        }

        &+a {
            margin-top: 2rem;
        }
    }
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    position: relative;
    z-index: 1;
    form {
        position: relative;
        padding-bottom: 1px;
    }
    .form-row+.form-row {
        margin-top: 1.5rem;
    }

    .button {
        width: 100%;
        cursor: pointer;
    }

    a {
        color: var(--color3);
        text-decoration: underline;
        font-weight: 500;

        &:hover {
            text-decoration: none;
        }
    }


}

.wpcf7 .wpcf7-submit:disabled {
    opacity: 0.4 !important;
}

.resources-wrapper-details {
    padding: 3rem 0;

    ul {
        margin-bottom: 1rem;
        padding-left: 1.5rem;

        & li {
            list-style-type: disc;
            list-style-position: outside;
            padding: initial;
            font-size: 19px;
            margin-left: 1rem;
        }
    }

    ol {
        margin-bottom: 1rem;
        padding-left: 1.5rem;

        & li {
            list-style-type: decimal;
            list-style-position: outside;
            padding: initial;
            font-size: 19px;
            margin-left: 1rem;
        }
    }

    figure {
        margin-bottom: 1rem;

        &.left {
            text-align: left;
        }

        &.right {
            text-align: right;
        }

        &.center {
            text-align: center;
        }
    }
}

.single-post-banner>div {
    height: 500px;
}

.inner-page-banner-wrapper.single-post-banner {
    background: url(../images/case-studies.jpg) top center no-repeat;
    background-size: cover;
}

.inner-page-banner-wrapper.single-post-banner {
    height: auto;
    padding: 5rem 3rem 2rem;
    height: auto;
    box-sizing: border-box;
    &>div {
        height: auto;
        display: flex;
        align-items: center;
        min-height: 300px;
        box-sizing: border-box;
    }
    .banner-content {
        position: static !important;
        transform: none !important;
        h1 {
            margin-bottom: 0;
        }
    }
}

.post-details-author-wrapper {
    .user-pic-wrapper {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;

        figure {
            width: 3rem;
            height: 3rem;
            overflow: hidden;
            border-radius: 50%;
            margin-right: 0.5rem;
            margin-bottom: 0;
            background-color: lightgrey;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
        }

        article {
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            span {
                font-weight: 500;
            }

            label {
                font-size: 13px;
            }
        }
    }
}

.resources-banner {
    padding: 8rem 0 16rem;
    /* background-color: var(--resources-bg); */

    background-size: cover;
    color: white;

    &:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background: url(../images/resources.jpg) top center no-repeat;
        transform: rotate(180deg);
    }

    &>div {
        text-align: center;
    }

    p {
        margin-bottom: 3rem;
    }

    .search-wrapper {
        border-radius: 50px;
        border: 1px solid var(--border-color);
        width: 80%;
        max-width: 900px;
        margin: 2rem auto 3rem;
        display: flex;
        align-items: center;

        input {
            background-color: transparent;
            border: none;
            padding: 1rem 1.5rem;
            width: 90%;
            font-size: 19px;
            color: var(--border-color);
        }

        button {
            align-self: stretch;
            border-radius: 50px;
            margin: 1px;
            padding: 0 3rem;
            background-color: var(--color3);
            color: white;
            font-size: 19px;
            border: none;
            cursor: pointer;
        }
        #btn_reset {
            padding: 0 0.5rem;
            background: transparent;
        }
    }

    .search-text-wrapper {
        display: flex;
        justify-content: space-between;
        color: var(--border-color);

        select {
            border: none;
            background: transparent;
            color: var(--border-color);
            border: none;
            outline: none;
            cursor: pointer;

            option {
                background-color: transparent;
                color: var(--border-color);
            }
        }
    }
}
.no-posts {
    position: absolute;
    left:0;
    right:0;
    text-align: center;
    margin: 2rem 0 0 0;
    color: var(--border-color);
    
}

.resources-wrapper-outer {
    background-color: var(--light-gray);

    &>div {
        position: relative;
        z-index: 1;
        margin-top: -13rem;
    }
}

.resources-wrapper .content {
    background-color: white;

    figure {
        width: 100%;
        height: auto;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    article {
        padding: 0 1rem 2rem;
    }

    h2 {
        margin: 1.5rem 0;
        font-size: 34px;
    }

    .read-more-outer {
        display: flex;
        align-items: center;

        label {
            cursor: pointer !important;
            margin-right: 0.5rem;

        }
    }

    .read-more {
        display: inline-block;
        width: 3rem;
        height: 3rem;
        border: 1px solid var(--border-color);
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
        border-radius: 50%;

        /* padding: 2rem;
        background: url(../images/icon-right-arrow2.png) no-repeat center center;
        background-size: 2rem auto; */
        /* filter: brightness(0) invert(70%) grayscale(100%) ; */
        span {
            position: absolute;
            left: 0;
            top: 0;
        }

        &::after {
            content: "";
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            margin-left: 0;
            position: absolute;
            width: 40%;
            height: 40%;
            background: url(../images/icon-right-arrow2.png) center center no-repeat;
            background-size: 100% auto;
            transition: margin 0s;
            filter: brightness(0) invert(70%) grayscale(100%);
        }

        &::before {
            content: "";
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            margin-left: -60px;
            position: absolute;
            width: 40%;
            height: 40%;
            background: url(../images/icon-right-arrow2.png) center center no-repeat;
            background-size: 100% auto;
            transition: margin 0s, background-color 0s;
            filter: brightness(0) invert(70%) grayscale(100%);
        }


    }

    .read-more-outer:hover {
        .read-more {
            /* border-color: var(--body-color); */
            background-color: var(--logo-yellow);
        }

        label {
            text-decoration: underline;
        }

        .read-more::after {
            margin-left: 60px;
            transition: margin 0.7s ease-in-out, background-color 0.7s ease-in-out;
            filter: brightness(1) invert(100%);
        }

        .read-more::before {
            margin-left: 0;
            transition: margin 0.7s ease-in-out, background-color 0.7s ease-in-out;
            ;
            filter: brightness(1) invert(100%);
        }
    }
}

/*masonary*/
.grid {
    display: column;
    columns: 3;
    gap: 1em;
}

.grid>* {
    break-inside: avoid;
    margin-bottom: 1em;
}

@supports (grid-template-rows: masonry) {
    .grid {
        display: grid;
        grid-template-columns: repeat(var(--columns), 1fr);
        grid-template-rows: masonry;
        grid-auto-flow: dense;
        /* align-tracks: stretch; */
    }

    .grid>* {
        margin-bottom: 0em;
    }
}



.flow>*+* {
    margin-top: var(--flow-space, var(--spacer));
}

/* -- end masonary --*/
/*menu*/
#menu-toggle {
    display: none;
}

.menu-button-container {
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    width: 30px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: var(--footer-bg);
    ;
    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: var(--footer-bg);
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
    z-index: 1;
}

.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);
}

.our-location-wrapper {
    display: none;
    padding: 3rem 0;
    background: linear-gradient(130deg, #f1f1f1 0%, #ebebeb 50%, #fafafa 100%);
   &>div>h2 {
    display: none;
   }
    & ul {
        display: flex;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        justify-content: space-between;
        align-items: stretch;

        &>li {
            flex: 0 0 30%;
            height: auto;
            box-sizing: border-box;
            border-radius: var(--border-radius-large);
            background: white;
            display: flex;
            flex-direction: column;
            /* justify-content: center; */
            align-items: center;
            padding-top: 1.5rem;
            figure {
                width: 100%;
                height: 80px;
                overflow: hidden;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

            label {
                font-size: 21px;
                font-weight: 500;
                text-align: center;
                /* padding: 1.3rem 2.6rem 0; */
                padding: 0;
            }
            span {
                display: block;
                text-align: left;
                font-size: 16px;
                margin: 1.5rem;
            }
            a {
                color: var(--logo-blue);
                font-weight: 600;
                margin:0 1.5rem 1.5rem;
                align-self: flex-start;
            }
        }
        &>li:not(.location_kol) {
            padding-left: 2.6rem;
            padding-right: 2.6rem;
        }
        
    }
}
.world-map-wrapper2 {
    position: relative;
    background: url(../images/world_map_contact_page.png) no-repeat center center;
    background-size: 1000px auto;
    &>div {
        padding: 0;
        width: 1000px;
        height: 600px;
        position: relative;
        
    }
    .pointer-image {
        position: absolute;
        width: 20px;
        height: 30px;
        bottom:0px;
        left:50%;
        transform: translateX(-50%);
        background: url(../images/icon-map-pointer.png) no-repeat top center;
        background-size: 100% auto;
    }
    .location {
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%;
        
        position: absolute;
        &.kolkata {
            top: 300px;
            left: 735px;
            .con {
                top:-80px;
                width: 280px;
                & > div {
                    pointer-events: all;
                }
                & > div > * {
                    display: block;
                    pointer-events: all;
                }
                a {
                    color: var(--logo-blue);
                    margin-top: 10px;
                }
            }
        }
        &.bangalore {
            top: 337px;
            left: 703px;
        }
        &.singapore {
            top: 374px;
            left: 780px;
        }
    }
}
.we-are-here {
    padding:3rem 0 0;
}


.ripples {
    pointer-events: none;
    width:100px;
    height: 30px;
    position: relative;
    transform: translate(-50%,-50%);
    left:50%;
    top:50%;
    > div {
      animation: growAndFade 3s infinite ease-out;
      background-color: var(--logo-blue);
      border-radius: 50%;
      height: 100%;
      opacity: 0;
      position: absolute;
      width: 100%;
    }
    
    .circles{
      animation-delay: 1s;    
    }
   
  }
  .con {
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    position: absolute;
    width: auto;
    border-radius: var(--border-radius-large);
    padding:  1rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    div{
        margin:0;
    }
}
.location .pointer-image:hover .con {
    transform: translateX(-50%) translateY(-55px);
    opacity: 1;
}
  
  @keyframes growAndFade {
    0% {
      opacity: .5;
      transform: scale(0);
    }
    100% {
      opacity: 0;
      transform: scale(1);
    }
  }
  /* .location.kolkata .con {
    top: -34px;
  }
  .location.bangalore .con {
    top: -34px;
  }
  .location.singapore .con {
    top: -34px;
  }
 */


/*scroll to top */
#scroll-to-top {
    position: fixed;
    right: 2rem;
    bottom: 1.2rem;
    background-color: var(--logo-blue);
    border: 2px solid white;
    transition: 0.2s;
    opacity: 0.5;
    cursor: pointer;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    z-index: 1;
    &: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%;
    background: url(../images/icon-up-arrow.png) no-repeat center center;
    background-size: 1.5rem auto;
    filter: invert(1);

}

/* scroll to top */



/*contact form 7 */
.wpcf7-spinner {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* top: 20px; */
}

.wpcf7-list-item-label {
    color: var(--body-color);
}

.wpcf7-response-output {
    margin: 0 !important;
    position: absolute;
    left: 20px;
    right: 20px;
}

.wpcf7 form.invalid .wpcf7-response-output {
    padding: 0;
    color: red;
    border: none;
    /* bottom: 2rem; */
    bottom:0;
    left:0;
}

.wpcf7 form.sent .wpcf7-response-output {
    padding: 0;
    color: #46b450;
    font-weight: 600;
    border: none;
    bottom:0;
    left:0;
}

.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 0.7rem !important;
}

.wpcf7-list-item {
    margin-left: 0 !important;
}

/**/

/*checkbox*/
.pure-material-checkbox2,
.pure-material-checkbox3 {
    display: block;
    width: 100%;

    label {
        display: block;
        width: 100%;
        position: relative;
    }

    br {
        display: none;
    }
}

.pure-material-checkbox3 .wpcf7-list-item-label {
    color: white;
}

.pure-material-checkbox {
    z-index: 0;
    position: relative !important;
    display: inline-block;

    /* color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87); */
    label {
        display: block;
        width: 100%;
    }
}

/* Input */
.pure-material-checkbox>input {
    display: none;
}

/* Span */
.pure-material-checkbox>span {
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

/* Box */
.pure-material-checkbox>span::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 3px 11px 3px 1px;
    border: solid 2px var(--border-color);
    /* border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6); */
    border-radius: 2px;
    width: 18px;
    height: 18px;
    vertical-align: top;
    transition: border-color 0.2s, background-color 0.2s;
}

/* Checkmark */
.pure-material-checkbox>span::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 1px;
    width: 10px;
    height: 5px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}

/* Checked, Indeterminate */
/* .pure-material-checkbox > input:checked,
.pure-material-checkbox > input:indeterminate {
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
} */

.pure-material-checkbox>input:checked+span::before,
.pure-material-checkbox>input:indeterminate+span::before {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox>input:checked+span::after,
.pure-material-checkbox>input:indeterminate+span::after {
    border-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
}

.pure-material-checkbox>input:indeterminate+span::after {
    border-left: none;
    transform: translate(4px, 3px);
}

/* Hover, Focus */
.pure-material-checkbox:hover>input {
    opacity: 0.04;
}

.pure-material-checkbox>input:focus {
    opacity: 0.12;
}

.pure-material-checkbox:hover>input:focus {
    opacity: 0.16;
}

/* Active */
.pure-material-checkbox>input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.pure-material-checkbox>input:active+span::before {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox>input:checked:active+span::before {
    border-color: transparent;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}

/* Disabled */
.pure-material-checkbox>input:disabled {
    opacity: 0;
}

.pure-material-checkbox>input:disabled+span {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    cursor: initial;
}

.pure-material-checkbox>input:disabled+span::before {
    border-color: currentColor;
}

.pure-material-checkbox>input:checked:disabled+span::before,
.pure-material-checkbox>input:indeterminate:disabled+span::before {
    border-color: transparent;
    background-color: currentColor;
}

/* loader */
.loader {
    width: 2rem;
    aspect-ratio: 1;
    --_g: no-repeat radial-gradient(farthest-side, var(--logo-green) 94%, #0000);
    --_g2: no-repeat radial-gradient(farthest-side, var(--logo-orange) 94%, #0000);
    --_g3: no-repeat radial-gradient(farthest-side, var(--logo-blue) 94%, #0000);
    --_g4: no-repeat radial-gradient(farthest-side, var(--logo-yellow) 94%, #0000);

    background:
        var(--_g) 0 0,
        var(--_g2) 100% 0,
        var(--_g3) 100% 100%,
        var(--_g4) 0 100%;
    background-size: 40% 40%;
    animation: l38 0.5s infinite;
}

@keyframes l38 {
    100% {
        background-position: 100% 0, 100% 100%, 0 100%, 0 0
    }
}

/* cookie popup */
#gdpr-cookies {
    position: fixed;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(7px);
    left: 0;
    right: 0;
    bottom: -320px;
    transition: bottom 0.5s ease-in;
    max-height: 300px;
    overflow: auto;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    z-index: 11;

    &.active {
        bottom: 0;
    }

    .cookie-content {

        h3,
        p {
            margin-bottom: 0.5rem;
        }
    }



    .cookie-button-wrapper {
        display: flex;
        align-items: flex-end;
        min-width: 300px;
        justify-content: flex-end;

        .button {
            padding: 0.5rem 1rem;
            font-size: 19px;
            margin: 0 0 0 1rem;
            cursor: pointer;
            border: 2px solid var(--logo-blue);

            &.customize {
                background-color: transparent;
                color: var(--body-color);
            }
        }
    }

    .close {
        width: 1rem;
        height: 1rem;
        position: absolute;
        right: 1rem;
        top: 1rem;
        background: url(../images/icon-cross.png) no-repeat center center;
        background-size: 100% auto;
    }
}

#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: white;
        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;
        border: 2px solid var(--border-color);
        border-radius: var(--border-radius-large);
        overflow: auto;

        h3+div {
            height: 400px;
            overflow-y: scroll;
        }

        .close {
            width: 1rem;
            height: 1rem;
            position: absolute;
            right: 1rem;
            top: 1rem;
            background: url(../images/icon-cross.png) no-repeat center center;
            background-size: 100% auto;
        }

        .cookie-button-wrapper {
            display: flex;
            justify-content: flex-end;
            margin-top: 1.5rem;

            .button {
                padding: 0.5rem 1rem;
                font-size: 19px;
                margin: 0 0 0 1rem;
                cursor: pointer;
                border: 2px solid var(--logo-blue);

                &.customize {
                    background-color: transparent;
                    color: var(--body-color);
                }
            }

            a {
                border: 2px solid var(--logo-blue);
                padding: 0.5rem 1rem;
                margin-left: 1.5rem;

                &.active {
                    background-color: var(--logo-blue);
                    color: white;
                }

            }
        }

        h3 {
            font-size: 19px;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid;
        }

        h4 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 0;
            margin-top: 0;
        }

        p {
            font-size: 16px;
            line-height: 1.3rem;
            margin-bottom: 1rem;
            margin-top: 0.5rem;
        }

        ul {
            border: 1px solid var(--border-color);
            margin-top: 1rem;

            li {
                display: flex;
                flex-direction: column;
                padding: 0.2rem 0.5rem;

                header {
                    display: flex;
                    align-items: center;
                    margin:1rem 0;
                    a {
                        font-weight: 700;
                        font-size: 25px;
                        width: 1.5rem;
                        margin-right: 0.5rem;
                        text-align: center;
                        outline: 2px solid;

                        @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-color);
            }

            p {
                font-size: 14px;
                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;
            }
        }
    }
}

#chat-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .35);
    backdrop-filter: blur(15px);
    z-index: 11;
    display: none;
}

#get-in-touch-wrapper {
    position: fixed;
    right: -20px;
    top: 50%;
    z-index: 12;

    #btn-get-in-touch {
        width: 2.5rem;
        height: auto;
        background-color: var(--header-menu-active-color);
        color: white;
        font-size: 21px;
        font-weight: 600;
        letter-spacing: 0px;
        left: 100%;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease-in;
        text-orientation: mixed;
        writing-mode: vertical-lr;
        white-space: nowrap;
        padding: 0.5rem;
        border-radius: var(--border-radius-small);
        transition: all 0.3s ease-in-out;
        border: 2px solid white;

        &>span {
            width: 2rem;
            height: 2rem;
            background: url(../images/icon-get-in-touch.png) center center no-repeat;
            background-size: 1.5rem auto;
            position: static;
            top: 100%;
            left: 0;
            display: inline-block;
            margin: 0.5rem 0 0 0;
            transition: all 0.3s ease-in-out;
            transform: rotate(270deg);
        }

        &.show {
            left: -4rem;
        }

        &:hover {
            letter-spacing: 1px;

            span {
                transform: rotate(630deg);
            }
        }
    }

    #get-in-touch-form {
        background: linear-gradient(130deg, var(--jobs-color1) 0%, var(--jobs-color2) 50%, var(--jobs-color3) 100%);
        width: 500px;
        top: 50%;
        transform: translateY(-50%);
        box-sizing: border-box;
        padding: 1.5rem 3rem 1.5rem 1.5rem;
        color: white;
        border-radius: var(--border-radius-large);
        position: absolute;
        right: -1000px;
        transition: all 0.5s 0.4s ease-in;
        max-height: 80vh;
        overflow: auto;

        &.show {
            right: -4px;
        }

        .button {
            padding: 0.6rem 1.6rem;
            width: 100%;
            box-sizing: border-box;
            cursor: pointer;
        }
        form {
            position: relative;
            padding-bottom: 1px;
        }

        h3 {
            margin-bottom: 1.5rem;
        }

        .close {
            width: 1rem;
            height: 1rem;
            position: absolute;
            right: 2.2rem;
            top: 1.2rem;
            background: url(../images/icon-cross.png) no-repeat center center;
            background-size: 100% auto;
            filter: brightness(0) invert(80%) grayscale(100%);
        }

        .form-row+.form-row {
            margin-top: 1.5rem;
        }

        .form-row {
            a {
                color: var(--logo-blue);
                text-decoration: underline;

                &:hover {
                    text-decoration: none;
                }
            }
        }
    }

    .wpcf7-spinner {
        top: -35px !important;
        transform: translateX(16px) !important;
    }
}

.nav-single {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;

    &>span {
        flex: 0 0 40%;
    }

    a {
        color: var(--logo-blue);
        font-size: 19px;
        font-weight: 500;

    }
.mobile {
    display: none;
}
    .nav-next {
        text-align: right;
    }
}

/*wp*/
#wpadminbar {
    display: none;
}

/*code snippet*/
.wp-block-code {
    margin: 0;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #333;
    color: white;
    border-radius: var(--border-radius-large);
}

/*sitemap links*/
.static-content .wp-block-list {
    font-size: 1.2rem;
    li > a {
        margin-left: -10px;
        text-decoration: none;
        background-image: linear-gradient(currentColor, currentColor);
        background-position: 0% 100%;
        background-repeat: no-repeat;
        background-size: 0% 2px;
        transition: background-size 1s;
        &:hover {
            background-size: 100% 2px;
            color: var(--logo-blue);
        }
    }
    li > ul {
        margin-left: 1rem;
    }
}