:root {
    --body-bg-color: #f9f9f9;
    --primary-black: #2A2A2A;
    --primary-red: #bc2027;
    --white-color: #fff;
    --whitish: #f1f1f1;
    --primary-grey: #808080;
    --font-family: 'Muli-ExtraLight', Arial, Helvetica, sans-serif;
    --font-family-black: 'Muli-Black', Arial, Helvetica, sans-serif;
    --font-family-semibold: 'Muli-SemiBold', Arial, Helvetica, sans-serif;
    --font-family-medium: 'Muli-Medium', Arial, Helvetica, sans-serif;
    --font-family-extrabold: 'Muli-ExtraBold', Arial, Helvetica, sans-serif;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    line-height: 1;
    background: var(--body-bg-color);
    /* font family needs to be changed */
    font: 16px/22px var(--font-family);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    color: var(--primary-red);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

section {
    padding: 80px 0;
    margin: 0 auto;
}

.btn-primary {
    transition: all 0.3s ease-in-out 0s;
    display: inline-block;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    background: var(--primary-red);
    border: 1px solid var(--primary-red);
    padding-left: 25px;
    padding-right: 25px;
    cursor: pointer;
    min-width: 120px;
    font: 14px/14px var(--font-family-semibold);
}

.btn-primary:hover {
    box-shadow: 0px 10px 30px -8px var(--primary-red);
    transform: translateY(-5px);
    background: var(--primary-red);
    border: 1px solid var(--primary-red);
}

.btn-primary.holo {
    border-color: var(--primary-black);
    color: var(--primary-black);
    background: transparent;
}

.btn-primary.holo:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white-color);
}

.section-title {
    color: var(--primary-red);
    font: 36px/38px var(--font-family-semibold);
    margin: 0 0 15px;
    text-align: center;
}

.description {
    font: 16px/20px var(--font-family);
    text-align: center;
    margin: 0 0 50px;
}

.holder {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
    width: 100%;
}

strong {
    font-family: var(--font-family-semibold);
}

input[type="text"],
input[type="number"],
input[type="email"] {
    width: 100%;
    border: 20px;
    height: 40px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--primary-black);
    margin: 0;
    font: 14px/1 var(--font-family);
    border-radius: 20px;
}


/* ==================================================
        Header Css
===================================================*/

.header {
    box-shadow: 0px 1px 0px #0000000D;
    background: var(--white-color);
    position: relative;
}

.header:after {
    display: block;
    clear: both;
    content: "";
}

.logo {
    display: block;
}

.logo a {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 50px;
}

.logo span {
    font-size: 24px;
    line-height: 1;
    margin: 10px 0 0 -8px;
    display: inline-block;
    vertical-align: middle;
}

.logo a img {
    display: block;
    width: 100%;
    height: auto;
}

.header .holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .nav-holder {
    display: flex;
    align-items: center;
}

.header nav {
    padding-right: 50px;
}

.header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.header nav li {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 10px;
}

.header nav li a {
    color: var(--primary-black);
    display: block;
    text-decoration: none;
    position: relative;
    padding: 26px 0;
}

.header nav li a:before {
    top: 0;
    position: absolute;
    background-color: var(--primary-red);
    content: "";
    width: 100%;
    left: 0;
    height: 0;
    border-radius: 0 0 10px 10px;
    transition: all 0.3s ease-in-out 0s;
}

.header nav li:hover a:before,
.header nav li.active a:before {
    height: 6px;
}

.header nav .menu {
    clear: both;
    transition: all 0.2s ease-in-out 0s;
    max-height: none;
}


/* menu icon */

.header nav .menu-icon {
    cursor: pointer;
    display: none;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header nav .menu-icon .navicon {
    background: var(--primary-black);
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header nav .menu-icon .navicon:before,
.header nav .menu-icon .navicon:after {
    background: var(--primary-black);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header nav .menu-icon .navicon:before {
    top: 5px;
}

.header nav .menu-icon .navicon:after {
    top: -5px;
}


/* menu btn */

.header nav .menu-btn {
    display: none;
}

.header nav .menu-btn:checked~.menu {
    max-height: 372px;
}

.header nav .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.header nav .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header nav .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header nav .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header nav .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
}


/* ==================================================
        Banner Css
===================================================*/

.banner {
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 40px #0000001A;
    background: var(--white-color);
    padding: 120px 0;
}

.banner .banner-holder {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.banner .banner-holder h5 {
    font: 18px/20px var(--font-family-extrabold);
    margin: 0 0 15px;
}

.banner .banner-holder h5 span {
    color: var(--primary-red);
}

.banner .banner-holder h1 span {
    color: var(--primary-red);
}

.banner .banner-holder h1 {
    font: 42px/42px var(--font-family-black);
    display: block;
    margin: 0 0 20px;
}

.banner .banner-holder p {
    font: 16px/22px var(--font-family);
    display: block;
    margin: 0 0 30px;
}


/* Services */

.banner.services .text-holder {
    margin: 0 auto;
    max-width: 1060px;
}

.banner.services h1 {
    font-size: 52px;
    margin: 0 0 20px;
    position: relative;
}

.banner.services h1:before {
    position: absolute;
    content: "";
    background: url(../images/img43.png) no-repeat;
    background-size: contain;
    left: -74px;
    top: -12px;
    width: 126px;
    height: 90px;
}

.banner.services.updated h1:before {
    background: none;
}

.banner.services.updated {
    background: transparent;
    box-shadow: none;
}

.banner.services.updated h1 {
    text-align: center;
    font: 42px/42px var(--font-family);
    color: var(--primary-black);
}

.banner.services.updated h1 strong {
    font-family: var(--font-family-black);
    color: var(--primary-black);
}

.banner.services.updated h1 span {
    font-family: var(--font-family-black);
    color: var(--primary-red);
}

.banner.services h1 strong {
    font-family: var(--font-family-black);
    color: var(--primary-red);
}

.banner.services .text-holder>strong {
    font-family: var(--font-family-extrabold);
    font-size: 20px;
}

.banner.client {
    padding: 100px 0;
}

.banner.client .content-holder {
    margin: 0 auto 120px;
    text-align: center;
    max-width: 950px;
}

.banner.client .content-holder h1 {
    font: 40px/48px var(--font-family-black);
    margin: 0 0 20px;
}

.banner.client .content-holder h1 span {
    color: var(--primary-red);
}

.banner.client .clients {
    text-align: center;
    /*display: flex;*/
}

.banner.client .clients figure {
    display: inline-block;
    vertical-align: top;
    padding: 0 15px;
    width: 16.666%;
}

.banner.client .clients figure img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.banner.client .clients figure:hover img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}


/* ==================================================
        Why Us Section
===================================================*/

.why-us {
    display: flex;
    align-items: center;
    text-align: center;
}

.why-us .section-title {
    margin: 0 0 50px;
}

.why-us .text-holder {
    max-width: 780px;
    margin: 0 auto 30px;
}

.why-us .col-holder {
    display: flex;
    position: relative;
    margin: 0 -5px;
}

.why-us .col {
    width: calc(100% / 3);
    padding: 0 5px;
}

.why-us .col article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 10px;
    position: relative;
    border: 1px solid #2A26281A;
    border-radius: 10px;
}

.why-us .col article:hover {
    background: var(--white-color);
}

.why-us .col article .img-holder {
    margin: 0 0 30px;
}

.why-us .col article:after,
.why-us .col article:before {
    content: " ";
    width: 20%;
    height: 20%;
    position: absolute;
    border: 0px solid #fff;
    transition: all 1s;
    opacity: 0;
    border-radius: 5px;
}

.why-us .col article:before {
    bottom: -4px;
    right: -4px;
    border-bottom: 5px solid black;
    border-right: 5px solid black;
}

.why-us .col article:after {
    top: -4px;
    left: -4px;
    border-top: 5px solid black;
    border-left: 5px solid black;
}

.why-us .col:hover article:before,
.why-us .col:hover article:after {
    width: 30%;
    height: 30%;
    opacity: 1;
}

.why-us .col article strong {
    display: block;
    color: var(--primary-black);
    font: 18px/22px var(--font-family-semibold);
    margin: 0 0 5px;
}

.why-us .col article span {
    display: block;
    color: var(--primary-black);
    font: 20px/20px var(--font-family-semibold);
    margin: 0 0 5px;
}

.why-us .col article p {
    font-size: 13px;
    line-height: 1.2;
}


/* ==================================================
        Timeline Section
===================================================*/

.timeline {
    box-shadow: 0px 0px 40px #0000001A;
    background: var(--white-color);
}

.timeline .column-holder {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    border: 1px solid #7070700D;
    background: var(--body-bg-color);
    border-radius: 10px;
    min-height: 260px;
}

.timeline .column-holder .column {
    width: calc(100%/3);
    text-align: center;
    padding: 0 15px;
}

.timeline .column-holder .column strong {
    color: var(--primary-red);
    display: block;
    font: 20px/22px var(--font-family-semibold);
    margin: 0 0 30px;
}

.timeline .column-holder .column h2 {
    font: 48px/52px var(--font-family-black);
    margin: 0 0 5px;
}

.timeline .column-holder .column h3 {
    font: 26px/28px var(--font-family-black);
    margin: 0 0 28px;
}

.timeline .column-holder .column span {
    display: block;
    font: 20px/20px var(--font-family-semibold);
}

.timeline .column-holder .column small {
    display: block;
    font: 12px/15px var(--font-family-semibold);
}

.timeline .column-holder .column small sub {
    color: var(--primary-red);
    bottom: 0;
    font-family: var(--font-family-extrabold);
}

.timeline-parcours {
    width: 100%;
    height: auto;
    min-height: 10px;
    margin: 100px auto 0;
}

.container-info {
    width: 100%;
    margin: 0 auto;
    height: auto;
    min-height: 260px;
    position: relative;
    overflow: hidden;
}

.timeline-section-tl {
    width: 16.666%;
    height: auto;
    min-height: 10px;
    float: left;
}

.container-info .timeline-section-tl {
    width: 100%;
    padding: 0;
    position: absolute;
}

.parcours-box {
    opacity: 0;
    -webkit-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.container-time-line {
    width: 100%;
    margin: auto;
    padding: 0 25px;
}

.time-line-parcours {
    width: 100%;
    height: 10px;
    background-color: var(--body-bg-color);
    margin: auto;
    border-radius: 10px;
}

.timeline-indicator {
    width: 0px;
    height: 10px;
    border-radius: 10px;
    background-color: var(--primary-red);
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.timeline-indicator:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-right-width: 15px;
    border-left-width: 15px;
    border-bottom: 25px solid var(--body-bg-color);
    right: -22px;
    bottom: -36px;
}

.tl-round {
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--white-color);
    box-shadow: 0px 5px 10px #0000001A;
    margin: 0 0 0 -3px;
    -webkit-transition: all 100ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.tl-round.round1 {
    background: var(--primary-red);
}

.container-bulle {
    margin-top: -15px;
    padding: 0 25px;
    margin-bottom: 25px;
    float: left;
    width: 100%;
}

.container-bulle .timeline-section-tl {
    position: relative;
}

.container-bulle .timeline-section-tl span {
    position: absolute;
    top: -25px;
    color: var(--primary-black);
    line-height: 1;
    left: -13px;
    font-family: var(--font-family-semibold);
}

.parcours-active {
    opacity: 1;
    -webkit-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    position: relative;
    z-index: 9;
}


/* ==================================================
        Our Process Section
===================================================*/

.our-process {
    display: flex;
    align-items: center;
    border: 1px solid #2A26281A;
    background-color: var(--body-bg-color);
}

.our-process .holder {
    overflow: hidden;
}

.our-process .boxes {
    position: relative;
    margin: 0 -8px;
    display: flex;
    padding: 30px 0;
}

.our-process .boxes .box {
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 16.6667%;
}

.our-process .box.down-ward {
    flex-direction: column-reverse;
}

.our-process .boxes .box.down-ward .figcaption {
    flex-direction: column-reverse;
    padding: 30px 15px 10px;
}

.our-process .boxes .box.down-ward figure {
    border-top: 0;
    border-bottom: 6px solid var(--primary-red);
}

.our-process .boxes .box figure {
    box-shadow: 0px 10px 20px #0000001A;
    background: var(--white-color);
    border-radius: 10px;
    border-top: 6px solid var(--primary-red);
    width: 100%;
    padding: 35% 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 20px #0000001A;
    position: relative;
}

.our-process .boxes .box figure img {
    height: 70px;
}

.our-process .boxes .box .figcaption {
    text-align: center;
    padding: 30px 10px;
    margin: -15px 0;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 10px;
    width: 100%;
}

.our-process .boxes .box:hover .figcaption {
    background-color: var(--whitish);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.our-process .boxes .box .figcaption strong {
    display: block;
    font: 20px/24px var(--font-family-semibold);
    color: var(--primary-black);
    margin: 0 0 20px;
    -webkit-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    position: relative;
}


/* .our-process .boxes .box:hover .figcaption strong {
    color: var(--white-color);
} */

.our-process .boxes .box .figcaption a {
    color: var(--primary-black);
}


/* .our-process .boxes .box:hover .figcaption a {
    color: var(--white-color);
} */

.our-process .boxes .box .figcaption a i {
    line-height: 24px;
    border: 1px solid var(--primary-black);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin: 0 0 0 10px;
}


/* .our-process .boxes .box:hover .figcaption a i{
    border-color: var(--white-color);
} */

.our-process .boxes .box .figcaption p {
    font: 16px/20px var(--font-family);
    -webkit-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    position: relative;
}


/* .our-process .boxes .box:hover .figcaption p {
    color: var(--white-color);
} */


/* design-process */

.our-process.design-process .boxes .box .figcaption {
    min-height: 158px;
}


/* ==================================================
        Industries Enabled Section
===================================================*/

.industries {
    padding: 100px 0;
    background: var(--white-color);
}

.industries .section-title {
    margin: 0 0 30px;
}

.industries .holder {
    max-width: 1364px;
}

.industries .holder .btn-primary {
    margin: 20px auto 0;
    display: block;
}

.industries .two-columns {
    display: flex;
    justify-content: center;
}

.industries .two-columns .column {
    padding: 0 8px;
    max-width: 600px;
    width: 100%;
}

.industries .column .cell {
    box-shadow: 0px 20px 40px #0000000D;
    border-radius: 20px;
    display: flex;
    margin: 0 0 40px;
}

.industries .column .cell figure {
    height: 100px;
    width: 108px;
    box-shadow: 0px 20px 40px #0000001A;
    border-right: 8px solid var(--primary-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries .column .cell figure img {
    display: block;
    width: 50px;
    height: 50px;
}

.industries .column .cell .figcaption {
    display: flex;
    align-items: center;
    padding: 0 0 0 20px;
    font: 26px/30px var(--font-family-semibold);
}


/* Services > We Deliver */

.industries.we-deliver p.text-center {
    color: var(--primary-red);
    margin: 20px 0 40px;
}


/* Updated Design */

.industries.updated .column .cell {
    border: 1px solid #2A26281A;
}

.industries.updated .column .cell:hover figure {
    background-color: var(--primary-grey);
    color: var(--white-color);
}

.industries.updated .column .cell svg .a {
    -webkit-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.industries.updated .column .cell:hover svg .a {
    fill: var(--white-color);
}

.industries.updated .column .cell figure {
    border-right: 0;
    border: 1px solid #2A26281A;
    box-shadow: none;
    -webkit-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}


/* ==================================================
        Technical Skill Set Section
===================================================*/

.skill-set {
    padding: 100px 0;
}

.skill-set .holder {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.skill-set .section-title {
    margin: 0 0 50px;
}

.skill-set .holder figure {
    height: auto;
    width: calc(100%/6);
    border-radius: 10px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.skill-set .holder figure:hover {
    background: var(--white-color);
    box-shadow: 0px 20px 40px #0000000D;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.skill-set .holder figure img {
    width: 100%;
    display: block;
    height: auto;
}

.skill-set.our-clients .holder figure {
    padding: 15px 0;
}


/* ==================================================
        Our TeaM Section
===================================================*/

.our-team {
    padding: 0 0 60px;
}

.our-team .section-title {
    margin: 0 0 50px;
}

.our-team .column-holder {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: 0 -8px;
}

.our-team .column-holder .column {
    padding: 0 8px;
    width: calc(100%/4);
}

.our-team .column-holder .box {
    border-radius: 20px;
    background: var(--white-color);
    margin: 0 0 30px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.our-team .column-holder .box:hover {
    box-shadow: 0px 20px 40px #0000000D;
    transform: translateY(-10px);
}

.our-team .column-holder .box figure {
    border-radius: 20px;
    overflow: hidden;
}

.our-team .column-holder .box figure img {
    display: block;
    width: 100%;
    height: auto;
}

.our-team .column-holder .box .figcaption {
    padding: 20px 15px;
    font: 18px/22px var(--font-family);
}

.our-team .column-holder .box .figcaption strong {
    display: block;
}

.our-team .column-holder .box .figcaption span {
    display: block;
    padding: 0 0 5px;
}

.our-team .column-holder .box .figcaption span a {
    color: var(--primary-black);
    text-decoration: none;
}


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

.footer .logo a {
    width: 100px;
}

.footer .get-quote {
    box-shadow: 0px 2px 0px #0000000D;
    position: relative;
    background: var(--white-color);
}

.footer .get-quote .holder {
    display: flex;
    justify-content: space-between;
    min-height: 160px;
    align-items: center;
}

.footer .get-quote .text h3 {
    font: 28px/32px var(--font-family-semibold);
    margin: 0 0 10px;
}

.footer .get-quote .text p {
    font: 16px/18px var(--font-family);
    margin: 0 0 10px;
}

.footer .get-quote .text p a {
    text-decoration: none;
    font-family: var(--font-family-semibold);
}

.footer .footer-links {
    background: var(--white-color);
    padding: 100px 0;
    box-shadow: 0px 0px 70px #0000001A;
}

.footer .footer-links .column-holder {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 -15px;
}

.footer .column-holder .column {
    width: 25%;
    padding: 0 15px;
    position: relative;
}

.footer .column-holder .column:before {
    position: absolute;
    content: "";
    left: 0;
    top: -15px;
    width: 1px;
    bottom: 0;
    background: #707070;
    opacity: 0.1;
}

.footer .column-holder .column:first-child:before {
    display: none;
}

.align-items-center {
    align-items: center;
    display: flex;
}

.footer .column-holder .column h4 {
    font: 28px/32px var(--font-family-semibold);
    margin: 0 0 12px;
}

.footer .column-holder .column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font: 100 17px/20px var(--font-family);
}

.footer .column-holder .column ul li {
    margin: 0 0 5px;
}

.footer .column-holder .column ul li a {
    color: var(--primary-black);
    text-decoration: none;
}

.footer .column-holder .column ul li a:hover {
    color: var(--primary-red);
}

.footer .column-holder .column ul li i {
    width: 20px;
}

.footer .column-holder .column ul li i.fa-mobile {
    font-size: 24px;
    vertical-align: bottom;
}

.footer .column-holder .column ul li i.fa-envelope {
    font-size: 14px;
}

.footer .footer-bar .holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 15px;
}

.footer .footer-bar .copyright {
    font-size: 13px;
}

.footer .footer-bar .copyright strong a {
    text-decoration: none;
}

.footer .footer-bar .copyright a {
    color: var(--primary-black);
}

.footer .footer-bar .copyright a:hover {
    color: var(--primary-red);
}

.footer .footer-bar .social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer .footer-bar .social-icons li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 10px;
}

.footer .footer-bar .social-icons li a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: var(--white-color);
    color: var(--primary-black);
    text-align: center;
    line-height: 40px;
    box-shadow: 0px 3px 6px #0000001A;
}

.footer .footer-bar .social-icons li a:hover {
    color: var(--primary-red);
}


/* =================================================
        Landing Page
===================================================*/

.banner.landing-page .img-holder img {
    width: 100%;
    display: block;
    height: auto;
}

.banner.landing-page h1 {
    font: 36px/52px var(--font-family);
    margin: 0 0 15px;
}

.banner.landing-page h1 strong {
    font: 40px/44px var(--font-family-black);
}

.banner.landing-page h1 strong span {
    color: var(--primary-red);
}

.banner.landing-page p {
    margin: 0 0 40px;
}


/* Updated Design */

.banner.landing-page.updated strong {
    font: 40px/44px var(--font-family-black);
    padding-right: 50px;
}

.banner.landing-page.updated .text-holder {
    border-left: 1px solid #2A26281A;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
}

.banner.landing-page.updated h1 span {
    color: var(--primary-red);
}

.banner.landing-page.updated h1 {
    font: 32px/36px var(--font-family-semibold);
    margin: 0 0 15px;
}

.banner.landing-page.updated p {
    margin: 0 0 20px;
}


/* =================================================
        Our Strategy
===================================================*/

.our-strategy .col-holder article {
    text-align: center;
    padding: 12% 13%;
    height: 100%;
}

.our-strategy .col-holder article:hover {
    background: var(--white-color);
    box-shadow: 0px 20px 40px #0000001A;
    transition: all 0.3s ease-in-out 0s;
}

.our-strategy .col-holder figure {
    margin: 0 auto 15px;
}

.our-strategy .col-holder figure img {
    width: auto;
    display: inline-block;
    height: 70px;
}

.our-strategy .col-holder article h2 {
    font: 26px/28px var(--font-family-semibold);
    margin: 0 0 10px;
}


/* =================================================
        Our Journey
===================================================*/

.our-journey {
    background: var(--white-color);
}

.our-journey article {
    padding-right: 50px;
}

.our-journey article>span {
    font-size: 16px;
    font-family: var(--font-family-medium);
    text-decoration: underline;
    display: inline-block;
    margin: 0 0 5px;
}

.our-journey article .section-title {
    text-align: left;
    color: var(--primary-black);
}

.our-journey article .section-title span {
    display: block;
    color: var(--primary-red);
}

.our-journey .cell {
    box-shadow: 0px 20px 40px #0000000D;
    border-radius: 20px;
    display: flex;
    margin: 0 0 40px;
    max-width: 85%;
}

.our-journey .cell:nth-child(2) {
    margin-left: 15%;
}

.our-journey .cell figure {
    height: 100px;
    width: 100px;
    box-shadow: 0px 20px 40px #0000001A;
    border-right: 8px solid var(--primary-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-journey .cell figure img {
    width: 50px;
    display: block;
    height: auto;
}

.our-journey .cell .figcaption {
    display: flex;
    align-items: center;
    padding: 0 0 0 20px;
    font: 40px/40px var(--font-family);
}

.our-journey .cell .figcaption strong {
    font: 46px/46px var(--font-family-black);
    margin: 0 10px 0 0;
}


/* start-with-idea */

.our-journey.start-with-idea {
    background: transparent;
    box-shadow: none;
}

.our-journey.start-with-idea .hero-img img {
    display: block;
    width: 100%;
    height: auto;
}

.our-journey.start-with-idea.revert .row {
    flex-direction: row-reverse;
}

.our-journey.start-with-idea ul {
    list-style: none;
}

.our-journey.start-with-idea.revert article {
    padding: 0 0 0 50px;
}


/* =================================================
        Our-Experties
===================================================*/

.our-experties article {
    text-align: center;
    padding: 15% 15px;
    background: var(--white-color);
    transition: all 0.3s ease-in-out 0s;
    border-radius: 10px;
}

.our-experties article:hover {
    box-shadow: 0px 20px 40px #0000001A;
}

.our-experties article figure {
    margin: 0 0 15px;
}

.our-experties article figure img {
    height: 50px;
    display: inline-block;
    width: auto;
}

.our-experties article h3 {
    margin: 0 0 10px;
    font: 20px/24px var(--font-family-semibold);
}

.our-experties article h3 a {
    color: var(--primary-black);
    text-decoration: none;
}

.our-experties article:hover h3 a {
    color: var(--primary-red);
}

.our-experties article p {
    margin: 0 0 10px;
    font-size: 12px;
}

.read-more {
    color: var(--primary-black);
    text-decoration: none;
    font: 12px/13px var(--font-family-semibold);
}

.read-more:hover {
    color: var(--primary-red);
    text-decoration: none;
}

.read-more:hover i {
    border-color: var(--primary-red);
}

.read-more i {
    border: 1px solid var(--primary-black);
    border-radius: 20px;
    height: 18px;
    width: 18px;
    line-height: 16px;
    text-align: center;
    margin: 0 0 0 5px;
}


/* Inherited in Services */

.our-experties.services article {
    height: 100%;
    background: transparent;
    border: 1px solid #2A26281A;
}

.our-experties.services article:hover {
    background: var(--white-color);
}

.our-experties.services article .read-more {
    display: none;
}

.our-experties.services article h3 {
    margin: 0 0 10px;
    font: 20px/24px var(--font-family);
}


/* =================================================
        Services > Partnered
===================================================*/

.partnered {
    background: var(--white-color);
    box-shadow: 0px 0px 40px #0000000D;
}

.partnered .column-six {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 30px 0 0;
}

.partnered .column-six .outer {
    padding: 0 3px;
    width: calc(100% / 6);
    display: flex;
}

.partnered .column-six .column {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #2A26281A;
    padding: 30% 10px;
    width: 100%;
}

.partnered .column-six .column .img-holder img {
    height: auto;
    width: 80%;
    display: inline-block;
}

.partnered .column-six .column h3 {
    position: absolute;
    bottom: 16%;
    font-family: var(--font-family-extrabold);
}


/* =================================================
        Our-Product
===================================================*/

.industries.our-products .two-columns .column {
    padding: 0 8px;
    max-width: 490px;
    width: 100%;
}


/* =================================================
        Our-Portfolio
===================================================*/

.our-portfolio {
    padding: 100px 0 0;
}

.our-portfolio figure {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.our-portfolio figure a {
    display: block;
    height: 100%;
    position: relative;
}

.our-portfolio figure a:after {
    transition: all 0.3s ease-in-out 0s;
    opacity: 0;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
}

.our-portfolio figure:hover a:after {
    opacity: 1;
}

.our-portfolio figure img {
    height: auto;
    display: block;
    width: 100%;
}

.our-portfolio .btn-primary {
    margin-top: 30px;
}


/* =================================================
        Our-Clients
===================================================*/

.skill-set.our-clients .section-title {
    margin: 0 0 30px;
}

.skill-set.our-clients p {
    margin: 0 0 50px;
}


/* =================================================
        Counter
===================================================*/

.counter-container .head h2 {
    font: 36px/36px var(--font-family-extrabold);
    color: var(--primary-red);
    margin: 0 0 20px;
}

.counter-container .head p {
    margin: 0 0 120px;
}

.counter-container .head p span {
    color: var(--primary-red);
}

.counter-box {
    display: block;
    background: var(--white-color);
    padding: 25% 20px;
    text-align: center;
    border-radius: 10px;
}

.counter {
    display: block;
    font: 42px/42px var(--font-family-extrabold);
    color: var(--primary-red);
    margin: 0 0 10px;
}

.counter-box span {
    font: 16px/20px var(--font-family-semibold);
    color: var(--primary-black);
}


/* =================================================
        Tabs
===================================================*/

.tabs-holder {
    box-shadow: 0px 10px 20px #0000001A;
    background: var(--white-color);
    padding: 15px 0;
    overflow-x: auto;
    display: flex;
}

#example-two {
    margin: 0 auto;
    list-style: none;
    position: relative;
    max-width: 960px;
    min-width: 660px;
    text-align: center;
}

#example-two li {
    display: inline-block;
    vertical-align: top;
}

#example-two li a {
    position: relative;
    z-index: 200;
    color: var(--primary-black);
    font-size: 16px;
    display: block;
    float: left;
    padding: 10px 20px;
    text-decoration: none;
}

#example-two li a.active {
    color: #cecece;
}

#example-two li a:hover {
    color: var(--white-color);
}

#magic-line-two {
    position: absolute;
    top: 0;
    left: 2.34375px;
    width: 100px;
    min-width: 80px;
    height: 100% !important;
    background: var(--primary-red);
    z-index: 100;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

.ie6 #example-two li,
.ie7 #example-two li {
    display: inline;
}


/* tab content */

#tabs-content .our-portfolio {
    padding-bottom: 60px;
    padding-top: 60px;
}

#tabs-content .tab-content {
    display: none;
}

#tabs-content .tab-content.active {
    display: block;
}


/* =================================================
        Contact
===================================================*/

.banner.contact {
    min-height: calc(100vh - 60px);
    position: relative;
    display: block;
    padding: 0;
}

.map-container {
    overflow: hidden;
    min-height: calc(100vh - 130px);
}

.map-container iframe{
    height: calc(100vh - 130px);
}

.map-container img {
    display: block;
    width: 100%;
    height: calC(100vh - 130px);
}

.map-overlay {
    position: absolute;
    width: 100%;
    min-height: 100%;
    z-index: 9;
    background: rgba(255, 255, 255, 0.8);
    padding-bottom: 100px;
    bottom: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.map-overlay.down {
    min-height: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.banner.contact .text-box {
    padding: 100px 0;
    text-align: center;
}

.banner.contact h1 {
    color: var(--primary-red);
    font: 36px/36px var(--font-family-semibold);
    margin: 0 0 10px;
}

.banner.contact p {
    margin: 0 0 50px;
}

.btn-holder .btn {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px;
}

.address-holder {
    width: 100%;
    position: absolute;
    bottom: 20px;
    z-index: 10;
}

.address-holder .inner {
    box-shadow: 0px 20px 40px #0000001A;
    border-radius: 70px;
    background: var(--white-color);
    padding: 20px;
    min-height: 70px;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.address-holder .contact-box {
    font: 14px/16px var(--font-family-semibold);
    display: flex;
    align-items: center;
}

.address-holder .contact-box i {
    font-size: 18px;
    margin: 0 10px 0 0;
    vertical-align: middle;
}

.address-holder .overlay-btn {
    position: absolute;
    left: 50%;
    bottom: 100%;
    margin: 0 0 0 -20px;
    background: var(--primary-red);
    height: 0;
    width: 34px;
    border-radius: 15px 15px 0 0;
    color: var(--white-color);
    font-size: 18px;
    line-height: 40px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    outline: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.address-holder .overlay-btn.up {
    height: 40px;
    visibility: visible;
    opacity: 1;
}

.address-holder .contact-box {
    padding: 0 15px;
}


/* Form */

.contact-form h2 {
    color: var(--primary-red);
    font: 32px/32px var(--font-family-semibold);
    margin: 0 0 30px;
}

.contact-form h3 {
    font: 16px/18px var(--font-family-semibold);
    margin: 0 0 15px;
}

.contact-form .form-holder .form-group {
    margin: 0 0 15px;
}

.btn_check {
    padding: 0 0 0 15px;
}

.btn_check input {
    display: none;
    opacity: 0;
}

.btn_check label {
    border-radius: 20px;
    padding: 6px 20px;
    border: 1px solid #2A2628;
    display: block;
    cursor: pointer;
    font-size: 14px;
}

.btn_check input:checked+label {
    color: var(--white-color);
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.contact-form textarea {
    background: transparent;
    border-radius: 20px;
    line-height: 20px;
    font-size: 14px;
    margin: 0;
    color: var(--primary-black);
    height: 180px !important;
    border: 1px solid var(--primary-black);
}


/* =================================================
        Client Page
===================================================*/

.testimonials-outer {
    background: var(--white-color);
    box-shadow: 0px 0px 40px #0000000D;
}

.testimonials .owl-item {
    background-color: #000;
    opacity: 0.3;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.testimonials .owl-item.active.center {
    opacity: 1;
    transform: scale(1.2);
}

.testimonials .owl-dots {
    text-align: center;
    display: block !important;
    margin: 30px 0 0;
}

.testimonials .owl-dots button.owl-dot {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 5px;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
}

.testimonials .owl-dots button.owl-dot.active {
    background: rgba(0, 0, 0, 1);
}

.testimonials .testimonial {
    background-color: var(--white-color);
    box-shadow: 10px 0px 20px #0000000D;
    padding: 40px 20px;
    display: flex;
    align-items: center;
}

.testimonials.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 40px;
    margin-bottom: 40px;
}

.testimonials .img-holder {
    display: flex;
    align-items: center;
    margin: 0 20px 0 0;
}

.testimonials .img-holder img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
}

.testimonials .img-holder .user {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 10px 0px 20px #0000001A;
    padding: 5px;
    background: var(--white-color);
    width: 130px;
}

.testimonials .img-holder .company {
    position: relative;
    margin: 0 0 0 -25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 10px 0px 20px #0000001A;
    padding: 5px;
    background: var(--white-color);
    width: 70px;
}

.testimonials .content {
    font: 11px/13px var(--font-family);
}

.testimonials .content h3 {
    font: 18px/20px var(--font-family-semibold);
    color: var(--primary-red);
    margin: 0 0 8px;
}

.testimonials .content p {
    margin: 0 0 8px;
}

.testimonials .content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 12px;
    color: var(--primary-red);
}

.testimonials .content ul li {
    margin: 0 10px 0 0;
    position: relative;
}

.testimonials .content ul li:first-child::before {
    display: none;
}

.testimonials .content ul li::before {
    position: absolute;
    content: "|";
    left: -7px;
    top: -1px;
}


/* =============================================
        Journey Timeline
===============================================*/

.journey-timeline .timeline-holder {
    position: relative;
    padding-left: 120px;
}

.journey-timeline .timeline-holder .progress-container {
    position: absolute;
    left: 75px;
    top: 7%;
    bottom: 8%;
    content: "";
    width: 10px !important;
    border-radius: 10px;
    box-shadow: 0px 0px 6px #0000000D;
    background: var(--white-color);
}

.journey-timeline .timeline-holder .progress-container .timeline-indicator {
    width: 10px !important;
}

.journey-timeline .journey-outer {
    position: relative;
    margin: 0 0 10px;
}

.journey-timeline .journey-outer a.scroll-to {
    position: absolute;
    left: -110px;
    top: 50%;
    margin: -20px 0 0;
    width: 65px;
    font-family: var(--font-family-semibold);
    text-decoration: none;
    color: var(--primary-black);
}

.journey-timeline .journey-outer a.scroll-to:after {
    position: absolute;
    content: "";
    right: -15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white-color);
    box-shadow: 0px 5px 10px #0000001A;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.journey-timeline .journey-outer:hover a.scroll-to:after,
.journey-timeline .journey-outer a.scroll-to.active:after {
    background: var(--primary-red);
}

.journey-timeline .owl-carousel {
    padding: 15px 10px 0;
    border-right: 10px;
    border: 1px solid #7070701A;
}

.journey-timeline .owl-carousel .owl-dots {
    text-align: center;
    display: block !important;
    margin: 20px 0 0;
}

.journey-timeline .owl-dots button.owl-dot {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 5px;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
}

.journey-timeline .owl-dots button.owl-dot.active {
    background: rgba(0, 0, 0, 1);
}

.journey-timeline .img-holder {
    border: 1px solid #7070701A;
    border-radius: 50%;
    overflow: hidden;
}

.journey-timeline .img-holder img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* =============================================
        Services 2
===============================================*/

.ui-section {
    position: relative;
    padding-left: 180px;
}

.ui-section .section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.ui-section .section .col-50 {
    width: 50%;
    display: flex;
    align-items: center;
}

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

.ui-section .section .content h2 {
    color: var(--primary-red);
    font: 28px/32px var(--font-family-semibold);
    margin: 0 0 15px;
}

.ui-section .section .content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ui-section .section .content ul li {
    position: relative;
    padding: 0 0 0 20px;
}

.ui-section .section .content ul li:before {
    left: 0;
    top: 6px;
    position: absolute;
    width: 10px;
    height: 10px;
    content: "";
    border-radius: 50%;
    border: 1px solid var(--primary-red)
}

.ui-section .section .img-holder {
    width: 100%;
}

.ui-section .section .img-holder img {
    display: block;
    width: 100%;
    height: auto;
}

.sidebar-sticky {
    min-height: 100vh;
    max-height: 100vh;
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    top: 0;
    width: 180px;
    z-index: 999;
    margin: 0 0 -100vh -180px;
    padding: 50px 0 0;
    background: var(--white-color);
    box-shadow: 0px 0px 40px #0000001A;
}

.sidebar-sticky ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-sticky ul li {
    display: block;
    position: relative;
    margin: 0 0 8px;
    border: 1px solid #0000000D;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.sidebar-sticky ul li:hover,
.sidebar-sticky ul li.active {
    margin-right: -15px;
    border-radius: 0 8px 8px 0;
    overflow: hidden;
    position: relative;
}

.sidebar-sticky ul li a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-black);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.sidebar-sticky ul li:hover a,
.sidebar-sticky ul li.active a {
    background: var(--primary-red);
    color: var(--white-color);
    text-decoration: none;
}

@media (max-width: 1023px) {
    .header .nav-holder {
        flex-direction: row-reverse;
    }
    .header nav {
        padding-right: 0;
        width: 50px;
    }
    .header nav .menu-btn:checked~.menu {
        box-shadow: 0px 0px 40px #0000001A;
        z-index: 99;
    }
    .header nav .menu {
        position: absolute;
        right: 0;
        width: 160px;
        max-height: 0;
        background: var(--white-color);
    }
    .header nav li {
        display: block;
        margin: 0;
    }
    .header nav li a {
        padding: 20px 30px;
    }
    .header nav .menu-icon {
        display: inline-block;
    }
    .section-title {
        font: 34px/38px var(--font-family-semibold);
    }
    /* =====================================
                Banner
    ===================================== */
    .banner h1 {
        font: 26px/30px var(--font-family);
    }
    .banner strong {
        font: 900 36px/38px var(--font-family);
    }
    /* =====================================
                Why Us
    ===================================== */
    .why-us .col-holder {
        flex-wrap: wrap;
        width: 50%;
        margin: 0 auto;
    }
    .why-us .col {
        width: 100%;
        margin: 0 0 15px;
    }
    /* =====================================
                Timeline
    ===================================== */
    /* ===================================== 
                Our Process
    ===================================== */
    .our-process .boxes {
        flex-wrap: wrap;
    }
    .our-process .boxes .box {
        width: 33.3334%;
        margin: 0 0 30px;
    }
    .our-process .box.down-ward {
        flex-direction: column;
    }
    .our-process .boxes .box .figcaption,
    .our-process .boxes .box.down-ward .figcaption {
        flex-direction: column;
        padding: 10px 15px 30px;
    }
    .our-process .boxes .box.down-ward figure {
        border-top: 6px solid var(--primary-red);
        border-bottom: 0;
    }
    /* ====================================
                Our Team
    ====================================== */
    .our-team .column-holder .column {
        width: calc(100%/2);
    }
    /* ====================================
                Client
    ====================================== */
    .testimonials .owl-item.active.center {
        transform: scale(1);
    }
    .banner.client .content-holder {
        margin: 0 auto 50px;
    }
    /* ====================================
                Footer
    ====================================== */
    .footer .column-holder .column {
        width: 50%;
        margin: 0 0 30px;
    }
    .timeline .column-holder .column:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }
    .footer .footer-links .column-holder {
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    /* ====================================
                Timeline
    ====================================== */
    .timeline .column-holder {
        flex-wrap: wrap;
        padding: 20px 0;
    }
    .container-info {
        min-height: 750px;
    }
    .timeline .column-holder .column {
        width: 100%;
        margin: 0 0 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #eee;
        min-height: 216px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    /* ====================================
                Indusries Enabled
    ====================================== */
    .industries .two-columns {
        flex-wrap: wrap;
    }
    .industries .two-columns .column {
        width: 100%;
        max-width: 100%;
    }
    .industries .column .cell {
        margin: 0 auto 40px;
        width: 50%;
    }
    /* ====================================
                Our Process
    ====================================== */
    .our-process .boxes .box .figcaption strong {
        font: 22px/24px var(--font-family-semibold);
        margin: 0 0 10px;
    }
    .our-process .boxes .box .figcaption p {
        font: 16px/20px var(--font-family);
    }
    /* ====================================
                our-Products
    ====================================== */
    .industries.our-products .two-columns .column {
        max-width: 100%;
    }
    /* ====================================
                our-clients
    ====================================== */
    .skill-set.our-clients p br {
        display: none;
    }
    .description br {
        display: none;
    }
    .our-journey article {
        margin: 0 0 30px;
    }
    .banner.landing-page {
        text-align: center;
    }
    .banner.landing-page .img-holder {
        margin-top: 30px;
    }
    .banner.landing-page .hero-holder {
        margin: 0 auto;
    }
    .our-strategy .col-holder article {
        padding: 20% 15px;
    }
    /* ====================================
                Client
    ====================================== */
    .testimonials .testimonial {
        padding: 20px 10px;
    }
    .testimonials .owl-item.active.center {
        transform: scale(1);
    }
    /* ====================================
                Footer
    ====================================== */
    .footer .footer-bar .holder {
        flex-wrap: wrap;
        text-align: center;
    }
    .footer .footer-bar .holder .copyright {
        width: 100%;
        margin: 0 0 15px;
    }
    .footer .footer-bar .social-icons {
        width: 100%;
    }
}

@media (max-width: 767px) {
    /* ====================================
                Why Us
    ====================================== */
    .why-us .col-holder {
        width: 90%;
    }
    /* ====================================
                Timeline
    ====================================== */
    .container-info {
        min-height: 750px;
    }
    .timeline .column-holder .column strong {
        font: 22px/24px var(--font-family-semibold);
        margin: 0 0 20px;
    }
    .timeline .column-holder .column h2 {
        font: 40px/44px var(--font-family-black);
    }
    .timeline .column-holder .column h3 br {
        display: none;
    }
    .timeline .column-holder .column span {
        font: 18px/20px var(--font-family-semibold);
    }
    .container-bulle {
        margin-bottom: 45px;
    }
    .timeline-indicator:after {
        bottom: -50px;
    }
    .timeline-section-tl:nth-child(2) span {
        top: auto;
        bottom: -21px;
    }
    .timeline-section-tl:nth-child(4) span {
        top: auto;
        bottom: -21px;
    }
    .timeline-section-tl:nth-child(6) span {
        top: auto;
        bottom: -21px;
    }
    .industries .column .cell {
        width: 100%;
    }
    .industries.our-products .column .cell .figcaption {
        font: 16px/20px var(--font-family-semibold);
    }
    .our-process .boxes .box {
        width: 60%;
        margin: 0 auto 30px;
    }
    .skill-set .holder figure {
        width: calc(100%/3);
    }
    .our-team .column-holder .column {
        width: 100%;
    }
    .our-journey {
        text-align: center;
    }
    .our-journey article .section-title {
        text-align: center;
    }
    .our-journey .cell {
        margin: 0 0 15px;
        max-width: 100%;
    }
    .our-journey .cell .figcaption strong {
        font: 26px/30px var(--font-family-black);
    }
    .our-journey .cell .figcaption {
        font: 22px/24px var(--font-family);
    }
    .our-journey .cell:nth-child(2) {
        margin-left: 0;
    }
    /* Client */
    .testimonials .img-holder .user {
        width: 90px;
    }
    .testimonials .img-holder .company {
        width: 50px;
    }
    .journey-timeline .timeline-holder {
        padding-left: 80px;
    }
    .journey-timeline .timeline-holder:before {
        left: 42px;
    }
    .journey-timeline .journey-outer a.scroll-to {
        left: -88px;
    }
    .journey-timeline .journey-outer a.scroll-to:after {
        right: 0px;
    }
    /* Footer */
    .footer .get-quote .text h3 {
        font: 20px/24px var(--font-family-semibold);
    }
    .footer .get-quote .holder {
        flex-wrap: wrap;
    }
    .footer .column-holder .column {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .partnered .column-six .outer {
        width: calc(100% / 3);
    }
}