/* @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
    font-family: "DIN Condensed";
    src: url("fonts/DINCondensed-Bold.eot");
    src:
        url("fonts/DINCondensed-Bold.eot?#iefix") format("embedded-opentype"),
        url("fonts/DINCondensed-Bold.woff2") format("woff2"),
        url("fonts/DINCondensed-Bold.woff") format("woff"),
        url("fonts/DINCondensed-Bold.ttf") format("truetype"),
        url("fonts/DINCondensed-Bold.svg#DINCondensed-Bold") format("svg");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

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

/*

font-family: "Josefin Sans", sans-serif;
font-family: 'impact', sans-serif;
font-family: 'DIN Condensed', sans-serif;
font-family: "Inter", sans-serif;
font-family: "Montserrat", sans-serif;

*/

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
    } */

:root {
    scroll-behavior: inherit;
    --black: #000000;
    --white: #ffffff;
    --josefinSans: "Josefin Sans", sans-serif;
    --impact: "Impact", sans-serif;
    --dinCondensed: "DIN Condensed", sans-serif;
    --inter: "Inter", sans-serif;
    --montserrat: "Montserrat", sans-serif;
    --blueColor: #000dff;
    --blueSecndColor: #6201ff;
    --grayColor: #494e59;
    --lightGrayColor: #b2bdd9;
    --pinkColor: #ff0098;
    --purpleColor: #b700ff;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--inter);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: var(--grayColor);
    font-size: 24px;
    line-height: 1.6;
    background-color: #f0f0f0;
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px 0;
    padding: 0;
    font-family: var(--impact);
    font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1,
.h1-title {
    font-weight: 700;
    font-size: 120px;
    line-height: 1;
}

h2,
.h2-title {
    font-weight: 700;
    font-size: 60px;
    line-height: 1.33;
}

h3,
.h3-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
}

h4,
.h4-title {
    font-size: 30px;
    line-height: 1.2;
}

h5,
.h5-title {
    font-size: 26px;
    line-height: 1.2;
}

a {
    margin: 0;
    padding: 0;
    display: inline-block;
    text-decoration: none !important;
    outline: none !important;
    color: var(--blueColor);
    -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;
}

a:hover {
    color: var(--purpleColor);
}

img {
    max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.7);
    height: 58px;
    padding: 0 16px;
    outline: none !important;
}

textarea {
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    width: 100%;
    color: #000;
    height: 158px;
    outline: none !important;
}

select {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
    padding: 0 11px;
    background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: #eab71e;
    color: #000000;
    height: 58px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;

    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background: #000;
    color: #eab71e;
}

::-webkit-input-placeholder {
    opacity: 0.7;
    color: #000;
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: #000;
}

::-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

:-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}

/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 40px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    border: 1px solid #3e3e42;
    background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: "";
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
    position: fixed;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    width: 55px;
    height: 55px;
    background-color: var(--lightGrayColor);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    line-height: 68px;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.4);
    -moz-box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.4);
    box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.4);
    z-index: 9;
    transition: 0.5s all;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#scroll.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: all;
}

#scroll:hover {
    background: var(--blueColor);
}

#scroll i {
    color: #fff;
    font-size: 44px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#scroll:hover i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
    padding: 15px;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blueColor);
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    position: relative;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    margin: 0 15px;
    padding: 20px 0;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li:first-child {
    margin-left: 0;
}

.navbar-nav>li>a {
    position: relative;
    font-weight: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--lightGrayColor);
}

.navbar-nav>li>a:after {
    content: "";
    display: none;
    width: 0;
    height: 2px;
    background: #3b61dc;
    /* opacity: 0; */
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
    color: var(--white) !important;
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
}

/* navbar submenu*/

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: 140px;
    padding: 0;
}

.sub-menu>li>a {
    color: #000;
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    background: #eab71e;
    color: #fff;
}

.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}

/* for push-menu */
#navoverlay {
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

/* for push-menu end*/

/* navbar*/
.navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
}

.navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.sub-menu>li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.navbar-nav>li.menu-item-has-children {
    padding-right: 20px;
}

.sub-menu>li.menu-item-has-children>a {
    padding-right: 20px;
}

.sub-menu.show {
    display: block;
}

.navbar-nav>li {
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:after,
.navbar-nav>li.menu-item-has-children>a:after {
    width: 100%;
    opacity: 0;
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
    opacity: 1;
}

/* navbar end*/

/* navbar*/
.navbar-toggler {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 7px;
    flex: 0 0 auto;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
}

.navbar-toggler img {
    transition: 0.3s all;
}

.navbar-toggler:hover img {
    filter: brightness(0) invert(1);
}

.navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.sub-menu,
.navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
}

.navbar-nav>li.menu-item-has-children {
    padding-right: 0;
}

.navbar-nav>li {
    margin: 0;
    padding: 16px;
    line-height: 1;
}

.navbar-nav>li>a {
    padding: 0;
    display: inline-block;
    width: 100%;
}

.navbar-nav li.menu-item-has-children>a {
    padding-right: 30px;
}

.sub-menu>li>a {
    padding-left: 40px;
}

.sub-menu .sub-menu>li>a {
    padding-left: 60px;
}

.sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 80px;
}

.navbar-nav>li>a:after {
    bottom: 0;
}

/* navbar end*/

/* push nav */

.navbar-collapse {
    background: var(--blueColor);
    position: fixed;
    top: 0;
    height: auto;
    max-height: 100%;
    width: 100%;
    overflow-y: auto;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
    z-index: 100;
    opacity: 0;
}

/* .navbar-collapse.collapsing, */
.navbar-collapse.show {
    display: block !important;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0;
    -webkit-transition: all 0.5s ease-in-out !important;
    transition: all 0.5s ease-in-out !important;
}

.navbar-collapse .navbar-nav {
    margin: 0;
    padding: 0;
}

.navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
}

#navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

body.open-nav,
html.open-nav {
    overflow: hidden;
}

/* push nav end */

.navbar-expand-lg .navbar-nav {
    flex-direction: column;
}

.main-head {
    padding: 59px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

.stiky-header-btn-innr {
    display: flex;
    justify-content: flex-end;
}

.stiky-header-btn-wrppr {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
}

.main-head.fixed .main-head-innr {
    display: block;
    pointer-events: all;
}

.main-head.fixed .stiky-header-btn-wrppr {
    display: none;
}

.main-head.fixed.hideNav .main-head-innr {
    display: none;
}

.main-head.fixed {
    pointer-events: none;
}

.main-head.fixed .navbar-toggler {
    pointer-events: all;
}

body.open-nav .main-head.fixed .main-head-innr {
    display: block;
}

body.open-nav .main-head.fixed .stiky-header-btn-wrppr {
    display: none;
}

.main-head.fixed.hideNav .stiky-header-btn-wrppr {
    display: flex;
    position: static;
    pointer-events: all;
}

.main-head-innr {
    padding: 11px 0;
    position: relative;
    z-index: 100;
}

.main-head-innr::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: var(--blueColor);
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    z-index: -2;
    pointer-events: none;
}

.main-head-innr::after {
    position: absolute;
    width: 100%;
    height: 28px;
    bottom: 0;
    left: 0;
    content: "";
    background-color: var(--blueSecndColor);
    clip-path: polygon(0 72%, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
    pointer-events: none;
}

.navbar-brand-wrppr {
    max-width: 184px;
    width: 100%;
    height: 184px;
    flex: 0 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.fake-navbar-wrppr {
    flex: 0 0 auto;
    margin-left: auto;
    padding-right: 64px;
    padding-left: 53px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.fake-navbar-wrppr ul {
    display: flex;
    width: auto;
    flex-grow: 1;
    list-style: none;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.fake-navbar-wrppr li {
    padding: 0 16px;
    margin: 0 16px;
    position: relative;
}

.fake-navbar-wrppr li:first-child {
    padding-left: 0;
    margin-left: 0;
}

.fake-navbar-wrppr li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.fake-navbar-wrppr li a {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--lightGrayColor);
}

.fake-navbar-wrppr li.current_page_item a {
    color: #ffffff;
}

.fake-navbar-wrppr li a:hover,
.fake-navbar-wrppr li.current a {
    color: var(--white);
}

.bnnr-sec {
    background-color: var(--black);
    /* min-height: 900px; */
    height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 184px;
    z-index: 1;
    overflow: hidden;
}

.bnnr-shpe-main {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.bnnr-each-shpe.one {
    width: 100%;
    height: 32vh;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.bnnr-each-shpe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
}

.bnnr-img-each {
    position: absolute;
    z-index: -2;
}

.bnnr-img-each.one {
    top: 23vh;
    right: 4.9vw;
    width: 63.5vh;
}

.bnnr-img-each img {
    width: 100%;
}

.bnnr-content-main {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.bnnr-content-all {
    position: relative;
    width: 100%;
    height: 100%;
}

.bnnr-each-content {
    position: absolute;
    color: var(--white);
}

.bnnr-each-content.one {
    width: 75.5vh;
    top: 12.3vh;
    left: 0;
    padding-left: 8.5vh;
}

.bnnr-each-content h1,
.bnnr-each-content .h1-title {
    /* font-size: 120px; */
    font-size: 13.34vh;
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.75;
}

.bnnr-each-content h1 span,
.bnnr-each-content .h1-title span {
    /* font-size: 70px; */
    font-size: 7.78vh;
    font-family: var(--dinCondensed);
    color: var(--lightGrayColor);
}

.bnnr-txt-wrppr {
    display: flex;
    align-items: flex-start;
}

.bnnr-txt-wrppr .h1-title {
    margin-bottom: 0;
    margin-right: 20px;
    flex: 0 0 auto;
}

.bnnr-txt-wrppr p {
    margin-bottom: 0;
    line-height: 1.25;
    /* font-size: 20px; */
    font-size: 2.23vh;
    flex: 1 1 auto;
}

.hme-service-sec {
    /* padding-top: 53px; */
    padding-bottom: 61px;
    position: relative;
    z-index: 2;
}

.cmn-head-wrppr {
    margin-bottom: 84px;
}

.cmn-head-wrppr h2 {
    font-family: var(--inter);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.05em;
    position: relative;
    padding-top: 14px;
    padding-bottom: 4px;
}

.hme-service-sec .cmn-head-wrppr h2 {
    font-weight: 700;
}

.cmn-head-btn {
    font-size: 30px;
    line-height: 1.5;
    text-decoration: underline !important;
    text-transform: uppercase;
    color: var(--blueColor);
}

.cmn-head-wrppr h2::before {
    position: absolute;
    content: "";
    left: calc(((100vw - 1224px) / 2) * -1);
    right: calc(((100vw - 1224px) / 2) * -1);
    top: 0;
    height: 100%;
    background-color: var(--blueColor);
    z-index: -2;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.cmn-head-wrppr h2::after {
    position: absolute;
    content: "";
    left: calc(((100vw - 1224px) / 2) * -1);
    right: calc(((100vw - 1224px) / 2) * -1);
    bottom: 0;
    height: 18px;
    background-color: var(--blueSecndColor);
    z-index: -1;
    clip-path: polygon(0 78%, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.sec-head-main {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px 30px;
}

.sec-head-title {
    width: 50%;
    padding: 0 25px;
}

.sec-head-title h2 {
    text-transform: uppercase;
    line-height: 1.33;
    color: var(--grayColor);
}

.sec-head-txt {
    width: 50%;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.cmn-btn,
.stiky-header-btn-innr .navbar-toggler {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--grayColor);
    width: auto;
    min-width: 191px;
    height: inherit;
    padding: 17px 16px 13px 16px;
    background-color: var(--white);
    border: 1px solid var(--blueColor);
    border-radius: 8px;
    transition: 0.3s all;
    pointer-events: all;
}

.cmn-btn:hover,
.stiky-header-btn-innr .navbar-toggler:hover {
    background-color: var(--pinkColor) !important;
    border-color: var(--pinkColor) !important;
    color: var(--white);
}

.services-wraper {
    display: flex;
    grid-column-gap: 5px;
}

.services-each {
    display: flex;
    align-items: center;
    padding: 32px;
    position: relative;
    z-index: 1;
    width: 25%;
    height: 550px;
    flex-grow: 1;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -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;
    cursor: pointer;
}

.services-each.active {
    width: 66%;
    flex: 0 0 auto;
    transition: all 0.3s ease-in-out;
    -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;
}

.services-each.one {
    background-color: var(--blueColor);
}

.services-each.two {
    background-color: var(--blueSecndColor);
}

.services-each.three {
    background-color: var(--pinkColor);
}

.services-each.four {
    background-color: var(--purpleColor);
}

.services-each-img-wrppr {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    transition: 0.3s all;
}

.services-each.one .services-each-img-wrppr {
    top: 50%;
    left: 20%;
    width: 504px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-each-img-inrr {
    width: 100%;
    animation: rotate 8s linear infinite;
}

.services-each-img-extra {
    width: 100%;
    height: 100%;
    animation: fade 4s linear infinite;
}

.services-each.four .services-each-img-wrppr::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    background-color: var(--purpleColor);
    animation: fade 3s ease-in-out infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

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

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.services-each.one.active .services-each-img-wrppr,
.services-each.two .services-each-img-wrppr {
    left: 50%;
    transform: translate(-50%, -50%);
}

.services-each.two .services-each-img-wrppr {
    width: 467px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: color-dodge;
}

.services-each.three .services-each-img-wrppr {
    width: 100px;
    height: 100%;
    top: 0;
    right: 0;
    opacity: 0.5;
}

.services-each.four .services-each-img-wrppr {
    width: 347px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: saturation;
}

.services-each.three.active .services-each-img-wrppr {
    width: 350px;
}

.services-each.one .services-each-img-wrppr img,
.services-each.two .services-each-img-wrppr img,
.services-each.four .services-each-img-wrppr img {
    width: 100%;
}

.services-each.three .services-each-img-wrppr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.services-each .ovrlay-line {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: color-dodge;
    pointer-events: none;
    transition: 0.3s all;
    opacity: 0;
}

.services-each.active .ovrlay-line {
    opacity: 1;
}

.services-each .ovrlay-line img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-each .h2-title {
    color: var(--white);
    text-transform: uppercase;
    opacity: 0;
    transition: 0.3s all;
    min-width: 640px;
}

.services-each.active .h2-title {
    opacity: 1;
}

.hme-solution-sec {
    padding-bottom: 110px;
    margin-top: -15px;
    position: relative;
    z-index: 2;
}

.hme-solution-sec::before,
.white-bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: -3;
    left: 0;
    top: 20px;
    pointer-events: none;
}

.hme-solution-sec .cmn-head-wrppr {
    margin-bottom: 147px;
}

.hme-solution-rw {
    --bs-gutter-x: 28px;
}

.hme-solution-card-wrppr {
    position: relative;
    padding: 60px 30px;
    min-height: 581px;
    display: flex;
    align-items: center;
}

.hme-solution-card-wrppr .card-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hme-solution-card-wrppr.one .card-img {
    padding: 26px 23px 26px 36px;
    opacity: 0.4;
    mix-blend-mode: multiply;
}

.hme-solution-card-wrppr.two .card-img {
    padding: 26px 10px;
    opacity: 0.4;
    mix-blend-mode: hue;
}

.hme-solution-card-wrppr.three .card-img {
    padding: 26px 10px;
    mix-blend-mode: soft-light;
    opacity: 1;
}

.hme-solution-card-wrppr .card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hme-solution-card-content {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.hme-solution-card-content h3 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-bottom: 75px;
    margin-bottom: 75px;
}

.hme-solution-card-content h3::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    background-color: var(--white);
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.hme-teams-sec {
    padding-bottom: 180px;
    position: relative;
    z-index: 2;
}

.hme-teams-sec::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 52%;
    bottom: 0;
    left: 0;
    background-color: var(--purpleColor);
    z-index: -2;
    clip-path: polygon(0 47%, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.hme-teams-sec::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(52% - 86px);
    bottom: -1px;
    left: 0;
    background-color: var(--white);
    z-index: -1;
    clip-path: polygon(0 52%, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.sec-head-txt .sub-title-head {
    font-family: var(--dinCondensed);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--grayColor);
}

.home-team-head-outtr {
    max-width: 1116px;
    width: 100%;
    margin-bottom: 135px;
}

.home-team-head-info-innr {
    position: relative;
}

.home-team-head .men-img {
    max-width: 233px;
    width: 100%;
    position: absolute;
    top: calc(100% + 45px);
    right: 0;
}

.home-team-head .line-purple {
    position: absolute;
    width: 100vw;
    height: 77px;
    top: 80%;
    right: 53%;
    z-index: -1;
    background-color: var(--purpleColor);
    transform: rotate(350deg);
}

.hme-teams-card-wrppr {
    width: 100%;
    height: 460px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform-origin: center;
}

.hme-teams-card-wrppr .front-part {
    padding: 26px 54px 26px 26px;
    border: 1px solid var(--white);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 24px;
    overflow: hidden;
    z-index: -1;
    display: flex;
    align-items: flex-end;
    transform: perspective(600px) rotateY(0deg);
    backface-visibility: hidden;
    transition: transform 0.5s linear 0s;
    pointer-events: none;
}

.hme-teams-card-wrppr .hme-teams-card-img {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 24px;
    right: 24px;
    border-radius: 16px;
    mix-blend-mode: lighten;
    overflow: hidden;
}

.hme-teams-card-col:nth-child(1) .hme-teams-card-img {
    opacity: 0.7;
}

.hme-teams-card-wrppr .hme-teams-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hme-teams-card-wrppr h3 {
    font-family: var(--inter);
    font-weight: 400;
    font-size: 47px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    z-index: 1;
    pointer-events: all;
}

.hme-teams-card-wrppr .back-part {
    position: absolute;
    transform: perspective(600px) rotateY(180deg);
    color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 40px;
    display: flex;
    align-items: center;
    backface-visibility: hidden;
    transition: transform 0.5s linear 0s;
    border-radius: 24px;
    border: 1px solid var(--white);
    pointer-events: none;
}

.hme-teams-card-wrppr .back-part p {
    font-size: 30px;
    line-height: 1.47;
    text-transform: uppercase;
    color: var(--white);
    pointer-events: all;
}

.hme-teams-card-wrppr:hover>.front-part {
    transform: perspective(600px) rotateY(-180deg);
}

.hme-teams-card-wrppr:hover>.back-part {
    transform: perspective(600px) rotateY(0deg);
}

.hme-teams-card-rw {
    --bs-gutter-x: 0;
    flex-wrap: nowrap;
    justify-content: center;
}

.hme-teams-card-rw-outtr {
    max-width: 1140px;
    margin: 0 auto;
}

.hme-teams-card-col:nth-child(1) .hme-teams-card-wrppr {
    transform: rotate(10deg);
}

.hme-teams-card-col:nth-child(2) .hme-teams-card-wrppr {
    transform: rotate(-5deg);
}

.hme-teams-card-col:nth-child(3) .hme-teams-card-wrppr {
    transform: rotate(5deg);
}

.process-sec {
    padding-bottom: 85px;
    position: relative;
    z-index: 2;
    background-color: var(--white);
}

.process-rw {
    --bs-gutter-x: 0;
}

.process-card-wrppr {
    background-color: var(--blueColor);
    border: 1px solid var(--white);
    width: 100%;
    position: relative;
    padding-top: 100%;
}

.process-card-wrppr img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process-card-innr-info {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--blueColor);
    transition: 0.3s all;
}

.process-card-innr-info h3 {
    font-family: var(--inter);
    font-weight: 400;
    font-size: 40px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0;
}

.process-card-innr-info p {
    display: none;
    font-size: 30px;
    line-height: 1.33;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 70px;
}

.process-card-wrppr.hover-card {
    transition: 0.3s all;
}

.process-card-wrppr.hover-card:hover .process-card-innr-info {
    width: 200%;
    height: 200%;
    z-index: 1;
    transform-origin: top left;
}

.process-card-wrppr.hover-card.three .process-card-innr-info,
.process-card-wrppr.hover-card.four .process-card-innr-info {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
}

/* .process-card-wrppr.hover-card.three:hover .process-card-innr-info,
.process-card-wrppr.hover-card.four:hover .process-card-innr-info {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
} */

.process-card-wrppr.hover-card:hover .process-card-innr-info p {
    display: block;
}

.process-card-col:nth-child(6n + 2) .process-card-innr-info {
    background-color: var(--purpleColor);
}

.process-card-col:nth-child(6n + 4) .process-card-innr-info {
    background-color: var(--blueSecndColor);
}

.process-card-col:nth-child(6n + 6) .process-card-innr-info {
    background-color: var(--blueSecndColor);
}

.process-sec .cmn-head-wrppr {
    margin-bottom: 75px;
}

.our-partners-sec {
    padding-bottom: 47px;
    position: relative;
    z-index: 1;
}

.our-partners-sec::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30%;
    z-index: -1;
    background-color: var(--white);
    top: 0;
    left: 0;
}

.our-partners-innr {
    position: relative;
    padding: 67px 0;
    z-index: 1;
}

.our-partners-innr::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--blueColor);
    z-index: -2;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.our-partners-innr::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 28px;
    bottom: 0;
    left: 0;
    background-color: var(--blueSecndColor);
    z-index: -1;
    clip-path: polygon(0 45%, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.our-partners-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 -15px;
}

.each-partners-logo-wrppr {
    flex: 0 0 auto;
    padding: 0 15px;
}

.testimonial-sec .cmn-head-wrppr {
    margin-bottom: 58px;
}

.testimonial-outtr {
    max-width: 955px;
    width: 100%;
    margin: 0 auto;
}

.slider-quote-wrppr {
    width: 100%;
    position: relative;
    padding: 32px 23px 24px 31px;
}

.testimonial-slider {
    background-color: var(--blueSecndColor);
    padding: 77px 130px 80px 170px;
    border-radius: 40px 150px 40px 150px;
}

.testimonial-item p {
    font-weight: 400;
    font-size: 36px;
    line-height: 1.67;
    color: var(--white);
}

.feed-quote {
    position: absolute;
    padding: 32px;
    background-color: var(--pinkColor);
    z-index: 1;
    pointer-events: none;
}

.feed-quote.one {
    top: 0;
    left: 0;
    border-radius: 80px 8px 8px;
}

.feed-quote.two {
    bottom: 0;
    right: 0;
    padding: 24px;
    border-radius: 8px 8px 80px;
}

.testimonial-cmn-arrw-wrppr {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-cmn-arrw {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: 0.3s all;
    opacity: 0.5;
}

.feed-cmn-arrw img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feed-cmn-arrw:hover {
    opacity: 1;
}

.feed-cmn-arrw.prev {
    margin-right: 8px;
}

.testimonial-sec {
    padding-bottom: 50px;
}

.hme-certification-sec {
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
}

.hme-certification-sec::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 20px;
    left: 0;
    background-color: var(--pinkColor);
    z-index: -3;
    pointer-events: none;
}

.hme-certification-sec .cmn-head-wrppr {
    margin-bottom: 0;
}

.hme-certification-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 56px;
    overflow: hidden;
}

.hme-certify-slider {
    width: 100%;
}

.hme-certify-slider .slick-list {
    margin: 0 -60px;
}

.each-hme-certify {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
}

.each-certification-label {
    width: 206px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 20px 123px;
    position: relative;
    z-index: 1;
    margin: 0 25px;
    flex: 0 0 auto;
}

.each-certification-label::before {
    position: absolute;
    content: "";
    width: 146px;
    height: 146px;
    bottom: 0;
    left: 0;
    background-color: var(--pinkColor);
    z-index: 1;
    pointer-events: none;
    transform: translate(-50%, 50%) rotate(45deg);
    transform-origin: center;
}

.each-certification-label::after {
    position: absolute;
    content: "";
    width: 146px;
    height: 146px;
    bottom: 0;
    right: 0;
    background-color: var(--pinkColor);
    z-index: 1;
    pointer-events: none;
    transform: translate(50%, 50%) rotate(45deg);
    transform-origin: center;
}

.certification-info {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.certification-info h3 {
    font-family: var(--inter);
    font-weight: 400;
    font-size: 40px;
    line-height: 1.225;
    color: var(--white);
    margin-bottom: 0;
}

.certification-info p {
    color: var(--white);
}

.certification-box {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 177px;
    background-color: var(--blueColor);
    z-index: -2;
}

.certification-box::before {
    position: absolute;
    content: "";
    top: 6px;
    left: 7px;
    right: 7px;
    bottom: 0;
    border: 1px dashed var(--white);
    border-bottom: none;
}

.certification-box .bttm-part {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 146px;
    height: 146px;
    background-color: var(--blueColor);
    transform: translate(-50%, -50%) rotate(45deg);
    transform-origin: center;
    z-index: -1;
}

.certification-box .bttm-part::before {
    position: absolute;
    content: "";
    top: 0;
    left: 7px;
    right: 7px;
    bottom: 7px;
    border-right: 1px dashed var(--white);
    border-bottom: 1px dashed var(--white);
}

.certification-box .bttm-part::after {
    content: "";
    position: absolute;
    width: 192px;
    height: 192px;
    background: linear-gradient(180deg,
            rgba(0, 10, 204, 0.6) 0%,
            rgba(0, 13, 255, 0.6) 100%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -2;
}

.certification-btn-wrppr {
    text-align: center;
    position: relative;
    z-index: 2;
}

.certification-btn-wrppr .cmn-btn:hover {
    background-color: var(--blueColor) !important;
    border-color: var(--blueColor) !important;
}

.newsletter-sec {
    background-color: var(--blueColor);
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.newsletter-innr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-innr h2 {
    font-size: 45px;
    margin-bottom: 0;
    color: var(--white);
    text-transform: uppercase;
}

footer.footer {
    padding-top: 81px;
    padding-bottom: 106px;
}

.fttr-rw {
    --bs-gutter-x: 113px;
    --bs-gutter-y: 40px;
}

.fttr-rw>* {
    width: 33.33%;
    flex: 0 0 auto;
}

.fttr-head p {
    margin-bottom: 0;
    font-family: var(--impact);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.88;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--grayColor);
}

.fttr-head {
    margin-bottom: 30px;
}

.locate-fttr-innr>p {
    font-size: 24px;
    line-height: 2.04;
    color: var(--grayColor);
}

.explore-fttr-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.explore-fttr-col li:not(:last-child) {
    margin-bottom: 5px;
}

.explore-fttr-col li a {
    font-size: 24px;
    color: var(--grayColor);
}

.explore-fttr-col li a:hover {
    color: var(--blueSecndColor);
}

.social-fttr-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.social-fttr-col ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 0 20px;
    list-style: none;
}

.social-fttr-col li:not(:last-child) {
    margin-right: 24px;
}

.social-fttr-col li a {
    width: 28px;
    height: 28px;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.social-fttr-col li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s all;
}

.social-fttr-col li a:hover {
    background-color: var(--blueSecndColor);
}

.social-fttr-col li a:hover img {
    filter: brightness(0) invert(1);
}

.social-fttr-col>a {
    color: var(--grayColor);
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.blog-sec {
    padding-bottom: 25px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.blog-sec .cmn-head-wrppr {
    margin-bottom: 70px;
}

.blog-each-itm {
    padding: 0 12px;
}

.blog-slider .slick-list {
    margin: 0 -12px;
    padding-right: 200px;
    overflow: visible;
}

.blog-each-itm-wrppr {
    background-color: var(--white);
    padding: 24px;
}

.blog-itm-img-wrppr {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 100%;
}

.blog-itm-img-wrppr .blog-itm-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 24px;
    overflow: hidden;
}

.blog-itm-img-wrppr .blog-itm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s all;
}

.blog-itm-img-wrppr .white-arrw {
    position: absolute;
    width: 57px;
    height: 57px;
    bottom: 0;
    right: 0;
    background-color: var(--grayColor);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: 0.3s all;
}

.blog-date-cetagories-wrppr {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
}

.blog-date-cetagories-wrppr p {
    padding: 12px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 113px;
    background-color: var(--grayColor);
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 1px;
}

.blog-content-wrppr {
    padding-top: 36px;
}

.blog-itm-img-wrppr:hover .blog-itm-img img {
    transform: scale(1.1);
}

.blog-itm-img-wrppr:hover .white-arrw {
    background-color: var(--pinkColor);
}

.blog-content-wrppr h3 {
    font-family: var(--inter);
    font-weight: 600;
    font-size: 25px;
    line-height: 1.44;
    margin-bottom: 61px;
}

.blog-content-wrppr h3 a {
    color: var(--grayColor);
}

.blog-content-wrppr h3 a:hover {
    color: var(--blueSecndColor);
}

.blog-content-wrppr p {
    font-weight: 400;
    font-size: 25px;
    color: #7e7e7e;
}

.blog-content-wrppr p span {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-arrw-wrppr {
    padding-top: 24px;
    display: flex;
}

.feed-cmn-arrw.prev-blg {
    margin-right: 8px;
}

main.main-wrapper {
    overflow-x: hidden;
}

.bnnr-each-shpe.two {
    width: 100%;
    height: 65vh;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.bnnr-each-shpe.three {
    width: 100%;
    height: 65vh;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.bnnr-each-shpe.four {
    width: 100%;
    height: 65vh;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.bnnr-each-shpe.five {
    width: 100%;
    height: 65vh;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.bnnr-img-each.two {
    top: 25vh;
    left: 3vh;
    width: 85vh;
}

.bnnr-img-each.three {
    top: 23vh;
    right: 9.4vw;
    width: 37.5vw;
}

.bnnr-img-each.four {
    top: 12vh;
    left: 62vh;
    width: 48vh;
}

.bnnr-img-each.five {
    top: 30vh;
    right: 18vh;
    width: 76vh;
}

.bnnr-each-content.two {
    width: 50vh;
    top: 18vh;
    right: 15vw;
}

.bnnr-each-content.three {
    width: 60vh;
    top: 30vh;
    left: 14.4vw;
}

.bnnr-each-content.four {
    width: 113vh;
    top: 12vh;
    left: 16vh;
}

.bnnr-each-content.five {
    /* width: 88vh;
    top: 12vh; */
    left: 16vh;
    width: 91vh;
    top: 10vh;
}

.bnnr-each-content.two .h1-title {
    line-height: 1.2;
    margin-bottom: 10px;
}

.bnnr-each-content.two .h1-title span,
.bnnr-each-content.three .h1-title span,
.bnnr-each-content.four .h1-title span,
.bnnr-each-content.five .h1-title span {
    display: block;
}

.bnnr-each-content.three .h1-title {
    line-height: 1;
}

.bnnr-each-content.four .h1-title {
    line-height: 1;
    margin-bottom: 20px;
}

.bnnr-each-content.four .h1-title span,
.bnnr-each-content.five .h1-title span {
    margin-top: 15px;
}

.bnnr-each-content.four .bnnr-txt-wrppr {
    max-width: 300px;
    width: 100%;
}

.bnnr-each-content.five .h1-title {
    width: 50%;
    line-height: 1;
}

.bnnr-each-shpe img:not(:first-child) {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.bnnr-img-each img:not(:first-child) {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.bnnr-each-content:not(:first-child) {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* CUSTOM MENU */

.menu-open-innr,
.capabilities-card-innr {
    max-width: 1254px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.menu-open-top-wrppr {
    padding: 33px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-innr-brand {
    max-width: 220px;
    width: 100%;
}

.menu-innr-brand img {
    width: 100%;
}

.navbar-collapse .navbar-toggler {
    position: static;
    width: 62px;
    height: 62px;
    padding: 18px;
    border-radius: 8px;
    transition: 0.3s all;
}

.navbar-collapse .navbar-toggler:hover {
    background-color: var(--pinkColor);
}

.navbar-collapse .navbar-toggler:hover img {
    filter: inherit;
}

.navbar-nav-outtr {
    padding: 60px 16px;
    max-width: 1023px;
    width: 100%;
    margin: 0 auto;
}

.all-navlist-col {
    width: 28%;
}

.nav-service-col {
    width: 38%;
}

.nav-gettouch-col {
    width: 34%;
    padding: 16px 0;
}

.nav-head-wrppr {
    padding: 16px;
}

.nav-head-wrppr p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--white);
}

.nav-gettouch-col p {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.33;
    letter-spacing: 0.05em;
    color: var(--white);
    max-width: 225px;
    width: 100%;
}

.nav-gettouch-col>*:not(:last-child) {
    margin-bottom: 24px;
}

.nav-gettouch-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-gettouch-col li:not(:last-child) {
    margin-right: 24px;
}

.nav-gettouch-col li a {
    width: 20px;
    height: 20px;
    display: block;
}

.nav-gettouch-col li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: 0.3s all;
}

.nav-gettouch-col li a:hover {
    transform: scale(1.2);
    filter: brightness(0) invert(1);
}

.navbar-collapse::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 96px;
    background-color: var(--blueSecndColor);
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
}

/* Technology Service page */

.technology-service-bnnr {
    background-color: var(--grayColor);
}

.technology-service-bnnr .services-wraper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.technology-service-bnnr .services-wraper::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--grayColor);
    opacity: 0.4;
    z-index: 2;
    pointer-events: none;
}

.technology-service-bnnr .services-each .ovrlay-line {
    opacity: 1;
}

.technology-service-bnnr .services-each {
    height: 100%;
}

.technology-service-bnnr .services-each.active {
    width: 55%;
}

.technology-service-bnnr .services-each.one .services-each-img-wrppr {
    width: 640px;
}

.technology-service-bnnr .services-each.two .services-each-img-wrppr {
    width: 540px;
}

.technology-service-bnnr .services-each.four .services-each-img-wrppr {
    width: 450px;
}

.bnnr-content-main.technology-service-bnnr-innr {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.technology-service-bnnr-content {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-left: 85px;
}

.technology-service-bnnr-content h1,
.technology-service-bnnr-content .h1-title {
    font-weight: 400;
    font-size: 120px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0;
    width: 61%;
    pointer-events: all;
}

.technology-service-bnnr-content h1 span,
.technology-service-bnnr-content .h1-title span {
    font-family: var(--dinCondensed);
    font-weight: 700;
    line-height: 0.85;
    display: inline-block;
    margin-bottom: -15px;
    color: var(--lightGrayColor);
}

.technology-service-bnnr-content p {
    width: 39%;
    padding-left: 35px;
    font-size: 24px;
    line-height: 1;
    color: var(--white);
    max-width: 360px;
    pointer-events: all;
}

.what-we-do-sec {
    padding-top: 50px;
    padding-bottom: 100px;
}

.what-we-do-sec .cmn-head-wrppr {
    margin-bottom: 100px;
    margin-top: -15px;
}

.card-group-rw {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.card-group-col {
    flex: 0 0 auto;
    width: 33.33%;
}

.card-group-each {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: var(--grayColor);
    min-height: 610px;
}

.card-group-each h3 {
    text-transform: uppercase;
    color: var(--white);
    font-size: 60px;
    line-height: 1.33;
}

.card-group-each p {
    color: var(--white);
    font-size: 28px;
    line-height: 1.43;
    margin-top: auto;
}

.card-group-col.half .card-group-each {
    min-height: 469px;
}

.card-group-col.half {
    width: 50%;
}

.card-group-col.full {
    width: 100%;
}

.card-group-col.full .card-group-each {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    min-height: inherit;
}

.card-group-col.full .card-group-each h3 {
    width: 52%;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.card-group-col.full .card-group-each p {
    flex: 1;
    padding-left: 57px;
    margin-top: 0;
}

.service-capabilities-sec {
    position: relative;
    z-index: 1;
}

.service-capabilities-sec::before,
.what-we-offer-sec::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--white);
    top: 20px;
    left: 0;
    z-index: -2;
    pointer-events: none;
}

.service-capabilities-sec .cmn-head-wrppr {
    margin-bottom: 0;
}

.capabilities-card-wrppr {
    width: 100%;
    padding: 60px 0;
}

.capabilities-card-wrppr:hover {
    background-color: var(--purpleColor);
}

.capabilities-card-innr {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}

.capabilities-card-innr h3 {
    font-weight: 400;
    font-size: 60px;
    line-height: 1.33;
    text-transform: uppercase;
    color: var(--grayColor);
    margin-bottom: 0;
    flex: 0 0 auto;
    width: 57%;
    padding-right: 57px;
    transition: 0.3s all;
}

.capabilities-card-innr p {
    font-size: 28px;
    line-height: 1.43;
    color: var(--grayColor);
    margin-bottom: 0;
    flex: 0 0 auto;
    width: 41%;
    transition: 0.3s all;
}

.capabilities-card-wrppr:hover h3,
.capabilities-card-wrppr:hover p {
    color: var(--white);
}

.service-team-sec {
    position: relative;
    z-index: 2;
    padding-bottom: 89px;
}

.service-team-sec .cmn-head-wrppr {
    margin-bottom: 112px;
}

.service-team-count-main {
    display: flex;
    flex-wrap: wrap;
}

.service-team-count-col {
    width: 50%;
    flex: 0 0 auto;
}

.service-team-count-wrppr {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-bottom: 2px solid var(--black);
    border-right: 2px solid var(--black);
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hover-service-card {
    position: relative;
    transition: 0.3s all;
    min-height: 580px;
}

.service-team-count-innr .hover-service-card {
    min-height: inherit;
}

.hover-service-card .icon {
    position: absolute;
    z-index: 1;
    transition: 0.3s all;
    pointer-events: none;
}

.hover-service-card .icon.one {
    bottom: -96px;
    left: 121px;
    min-width: 904px;
    transform: translate(-20px, -20px);
    opacity: 0;
    visibility: hidden;
}

.hover-service-card .icon.two {
    min-width: 608px;
    top: -86px;
    left: -234px;
    transform: translate(20px, 20px) rotate(-105deg);
    opacity: 0;
    visibility: hidden;
}

.hover-service-card .icon.three {
    min-width: 695px;
    bottom: 0;
    right: 171px;
    transform: translate(20px, 20px);
    opacity: 0;
    visibility: hidden;
}

.hover-service-card .icon.four {
    min-width: 712px;
    right: 12px;
    top: 34px;
    transform: translate(-20px, -20px);
    opacity: 0;
    visibility: hidden;
}

.hover-service-card .icon.five {
    min-width: 716px;
    bottom: 188px;
    left: 113px;
    transform: translate(20px, 20px);
    opacity: 0;
    visibility: hidden;
}

.hover-service-card h3,
.hover-service-card p {
    transition: 0.3s all;
    position: relative;
    z-index: 2;
}

.hover-service-card p {
    margin-bottom: 0;
}

.hover-service-card:hover {
    background-color: var(--blueColor);
    border-color: var(--blueColor);
}

.hover-service-card:hover h3,
.hover-service-card:hover p {
    color: var(--white);
    z-index: 4;
}

.hover-service-card:hover .icon {
    z-index: 3;
}

.hover-service-card:hover .icon.one,
.hover-service-card:hover .icon.three,
.hover-service-card:hover .icon.four,
.hover-service-card:hover .icon.five {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.hover-service-card:hover .icon.two {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0) rotate(-105deg);
}

.service-team-count-col:nth-child(even) .service-team-count-wrppr {
    border-right: none;
}

.service-team-count-innr {
    height: 100%;
}

.service-team-count-innr-col {
    height: 50%;
}

.service-team-count-wrppr h3 {
    font-size: 80px;
    font-weight: 600;
    font-family: var(--inter);
    line-height: 1.2;
    color: var(--grayColor);
    margin-bottom: 45px;
}

.service-team-count-wrppr p {
    font-size: 25px;
    line-height: 2;
    text-align: center;
    color: var(--grayColor);
}

.capabilities-tab-sec .cmn-head-wrppr {
    margin-bottom: 88px;
}

.capabilities-tab-sec {
    padding-bottom: 112px;
}

.capabilities-tab-main {
    display: flex !important;
    flex-wrap: wrap;
    margin: 0 -4px;
}

.capabilities-tab-list-col {
    width: 54.2%;
    flex: 0 0 auto;
    padding: 0 4px;
}

.capabilities-tab-content-col {
    width: 45.8%;
    flex: 0 0 auto;
    padding: 0 4px;
}

.capabilities-tab-list-col ul {
    list-style: none;
    padding: 0;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.capabilities-tab-list-col ul li {
    font-size: 30px;
    line-height: 1;
    color: var(--grayColor);
    width: 100%;
    padding: 24px;
    background-color: var(--white) !important;
    border: none !important;
    margin-bottom: 2px;
    transition: 0.3s all;
    cursor: pointer;
    flex: 1;
}

.capabilities-tab-list-col ul li:hover,
.capabilities-tab-list-col ul li.resp-tab-active {
    color: var(--white);
    background-color: var(--blueColor) !important;
}

.each-capabilities-tab-innr {
    border: none !important;
    width: 100%;
    height: 100%;
}

h2.resp-accordion {
    display: none;
}

.each-capabilities-tab-content.resp-tab-content {
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
}

.each-capabilities-tab-content.resp-tab-content.resp-tab-content-active {
    display: flex !important;
}

.each-capabilities-tab-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    flex: 0 0 auto;
}

.each-capabilities-tab-content li {
    border-bottom: 2px solid var(--blueColor);
}

.each-capabilities-tab-content li:last-child {
    border-bottom: none;
}

.each-capabilities-tab-content li a {
    font-size: 30px;
    line-height: 1;
    color: var(--grayColor);
    width: 100%;
    padding: 24px;
    background-color: var(--white);
}

.each-capabilities-tab-content li a:hover {
    background-color: var(--blueColor);
    color: var(--white);
}

.each-capabilities-tab-imf-wrppr {
    flex-grow: 1;
    position: relative;
}

.each-capabilities-tab-imf-wrppr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
}

.each-capabilities-tab-imf-wrppr.blue {
    background-color: var(--blueColor);
}

.case-study-sec {
    position: relative;
    z-index: 1;
    padding-bottom: 175px;
    overflow: hidden;
}

.case-study-sec .cmn-head-wrppr {
    margin-bottom: 325px;
}

.case-studies-img-main {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 0;
    z-index: -2;
}

.case-studies-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-slider-outtr {
    max-width: 665px;
}

.each-case-study-item p {
    font-size: 30px;
    line-height: 1.23;
    color: var(--white);
    margin-bottom: 74px;
    font-family: var(--montserrat);
}

.each-case-study-item h3 {
    font-size: 50px;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 0;
    font-family: var(--montserrat);
}

.case-study-slider {
    margin-bottom: 85px;
}

.case-study-arrw-wrppr {
    display: flex;
}

.case-study-arrw-wrppr .feed-cmn-arrw {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.case-study-arrw-wrppr .feed-cmn-arrw:first-child {
    margin-right: 8px;
}

.case-study-arrw-wrppr .feed-cmn-arrw:hover {
    filter: inherit;
}

.who-we-work-sec {
    position: relative;
    z-index: 2;
    padding-bottom: 75px;
}

.who-we-work-sec .cmn-head-wrppr {
    margin-bottom: 80px;
}

.who-we-work-main>p {
    font-size: 30px;
    line-height: 1.5;
    color: var(--grayColor);
    margin-bottom: 50px;
}

.who-we-work-rw {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
    margin-bottom: 78px;
}

.who-we-work-wrppr {
    width: 100%;
    height: 100%;
    display: flex;
    /* flex-wrap: wrap; */
    padding: 24px;
    background-color: var(--white);
    border-radius: 24px;
    border-width: 1px;
    border-style: solid;
}

.who-we-work-img-wrppr {
    width: 145px;
    flex: 0 0 auto;
    height: 100%;
}

.who-we-work-img-wrppr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-work-info {
    flex: 1;
    padding-left: 20px;
}

.who-we-work-wrppr h3 {
    font-size: 53px;
    line-height: 1.06;
    text-transform: uppercase;
    color: var(--grayColor);
    margin-bottom: 20px;
}

.who-we-work-wrppr p {
    font-weight: 400;
    font-size: 25px;
    line-height: 1.43;
    color: var(--grayColor);
    border-color: var(--blueSecndColor);
}

.explore-more-rw {
    display: flex;
    flex-wrap: wrap;
}

.each-explore-more-col {
    padding: 70px 105px;
    width: 50%;
    flex: 0 0 auto;
    border-right: 2px solid #f0f0f0;
}

.each-explore-more-col:first-child {
    padding-left: 0;
}

.each-explore-more-col:last-child {
    padding-right: 0;
    border-right: none;
}

.explore-more-wrppr {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.explore-more-wrppr h3 {
    font-weight: 400;
    font-size: 80px;
    line-height: 1.25;
    color: var(--grayColor);
}

.explore-more-wrppr h3 a {
    color: var(--grayColor);
}

.explore-more-wrppr h3 a:hover {
    color: var(--blueColor);
}

.explore-more-wrppr p {
    font-family: var(--inter);
    font-weight: 400;
    font-size: 25px;
    line-height: 1.2;
    color: var(--grayColor);
}

.explore-more-wrppr>*:not(:last-child) {
    margin-bottom: 47px;
}

/* Business support service page */

.business-service-bnnr figure {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.business-service-bnnr figure::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: radial-gradient(218.36% 218.36% at 50% 50%,
            #000000 0%,
            #666666 100%);
    opacity: 0.7;
}

.business-service-bnnr figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.innr-bnnr-info {
    flex: 1;
    padding-left: 13px;
}

.technology-service-bnnr-content .innr-bnnr-info p {
    max-width: 85%;
    padding-left: 0;
    width: 100%;
    font-size: 24px;
    line-height: 1;
}

.technology-service-bnnr-content.business-service h1 {
    text-align: right;
}

.technology-service-bnnr-content.business-service h1 span {
    font-size: 85px;
    line-height: 1.33;
    color: #d4cec5;
    display: block;
}

.what-we-offer-sec {
    margin-top: -15px;
    position: relative;
    z-index: 1;
    padding-bottom: 135px;
}

.service-capabilities-sec.how-it-sec::before {
    display: none;
}

.service-capabilities-sec.how-it-sec .cmn-head-wrppr {
    margin-bottom: 84px;
}

.how-it-innr p {
    font-size: 28px;
    line-height: 1.43;
    color: var(--grayColor);
}

.how-it-wrk-innr {
    position: relative;
    z-index: 1;
}

.how-it-wrk-right {
    padding-top: 110px;
    padding-bottom: 30px;
    width: 61%;
    margin-left: auto;
}

.how-it-wrk-right p {
    font-size: 28px;
    line-height: 1.43;
}

.how-it-wrk-left {
    position: absolute;
    width: 34%;
    top: -10px;
    left: 5%;
}

.how-it-wrk-left img {
    width: 100%;
}

.how-it-wrk-shpe {
    width: 100%;
    margin-bottom: -15px;
}

.how-it-wrk-shpe img {
    width: 100%;
}

.capabilities-tab-sec.stack {
    position: relative;
    z-index: 1;
    padding-bottom: 155px;
}

.expertise-head-main {
    margin-bottom: 68px;
}

.expertise-head-main .cmn-head-wrppr {
    margin-bottom: 80px;
}

.expertise-head-main>p {
    font-size: 28px;
    line-height: 1.43;
}

.brand-single-slider {
    max-width: 1004px;
    width: 100%;
    margin: 0 auto 78px;
    background-color: var(--blueColor);
    border-radius: 43px;
    padding: 50px;
}

.brand-single-itm {
    text-align: center;
}

.brand-single-logo-wrppr {
    width: 100%;
    max-width: 290px;
    min-height: 335px;
    background-image: url(images/label-shpe.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    padding-top: 24px;
    padding-bottom: 75px;
    text-align: center;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.brand-single-logo-wrppr img {
    max-width: 155px;
    width: 100%;
    margin: auto;
}

.brand-single-logo-wrppr p {
    font-family: var(--inter);
    font-weight: 600;
    font-size: 25px;
    line-height: 1.19;
    text-align: center;
    letter-spacing: 0.04px;
}

.brand-single-itm p {
    font-family: var(--inter);
    font-weight: 600;
    font-size: 25px;
    line-height: 1.19;
    text-align: center;
    letter-spacing: 0.04px;
}

.brand-single-itm>p {
    color: var(--white);
}

.brand-multiple-itm {
    padding: 0 15px;
}

.brand-multiple-wrppr {
    width: 100%;
    max-width: 235px;
    height: 270px;
    background-image: url(images/label-shpe.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px 10px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin: 0 auto;
    /* transition: 0.3s all; */
    cursor: pointer;
}

.brand-multiple-wrppr p {
    font-family: var(--inter);
    font-weight: 600;
    font-size: 25px;
    line-height: 1.19;
    text-align: center;
    letter-spacing: 0.04px;
    margin-top: 25px;
}

.brand-multiple-slider .slick-list {
    overflow: visible;
    padding-left: 130px !important;
    padding-right: 0 !important;
}

.brand-multiple-slider .slick-track {
    margin-left: -190px !important;
}

.expertise-sec {
    overflow: hidden;
    padding-bottom: 50px;
}

.brand-multiple-itm.slick-current .brand-multiple-wrppr {
    background-image: url(images/label-active.svg);
}

.who-we-work-sec.brand-bridge-team .cmn-head-wrppr {
    margin-bottom: 70px;
}

.who-we-work-sec.brand-bridge-team {
    padding-bottom: 77px;
}

.who-we-work-sec.brand-bridge-team .who-we-work-rw {
    margin-bottom: 0;
}

/* Expertise page */

.technology-service-bnnr-content.expertise {
    padding-left: 0;
}

.technology-service-bnnr-content.expertise h1 {
    text-align: left;
    width: 53%;
}

.technology-service-bnnr-content.expertise h1 span {
    color: #dae2f7;
}

.technology-service-bnnr-content.expertise .innr-bnnr-info p {
    max-width: 441px;
}

.card-group-each.certification-card {
    position: relative;
    z-index: 1;
}

.card-group-each.certification-card .card-grup-img-wrppr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.card-group-each.certification-card .card-grup-img-wrppr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-group-col.full .card-group-each.certification-card {
    min-height: 470px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.card-group-col.full .card-group-each.certification-card h3,
.card-group-col.full .card-group-each.certification-card p {
    width: 100%;
    padding-left: 0;
}

.what-we-offer-sec.certification::before {
    display: none;
}

.service-capabilities-sec.specialism .cmn-head-wrppr {
    margin-bottom: 75px;
}

.service-capabilities-sec.specialism .how-it-innr {
    margin-bottom: 20px;
}

.service-capabilities-sec.specialism .capabilities-card-innr {
    align-items: center;
}

.service-capabilities-sec.specialism .capabilities-card-innr h3 {
    width: auto;
}

.capabilities-card-innr span {
    display: flex;
    line-height: 0;
    width: 88px;
}

.capabilities-card-innr span img {
    width: 100%;
}

.sec-innr-head {
    margin-bottom: 43px;
}

.sec-innr-head h3 {
    font-size: 60px;
    line-height: 1.33;
    text-transform: uppercase;
    color: var(--grayColor);
    margin-bottom: 20px;
}

.sec-innr-head p {
    font-weight: 400;
    font-size: 33px;
    line-height: 1.2;
}

/* ABOUT page */

.technology-service-bnnr-content h1 span.smll,
.technology-service-bnnr-content .h1-title span.smll {
    font-size: 85px;
    margin-bottom: 0;
    display: block;
    margin-top: 15px;
}

.technology-service-bnnr-content.about-bnnr-content {
    padding-left: 130px;
}

.business-service-bnnr.about-bnnr figure::before {
    background: linear-gradient(137.75deg,
            rgba(0, 0, 0, 0.7) 26.4%,
            rgba(255, 255, 255, 0) 101.05%);
    mix-blend-mode: darken;
}

.white-bg {
    position: relative;
    z-index: 1;
}

.about-img-txt-sec {
    margin: -15px 0;
    position: relative;
    z-index: 1;
    padding-top: 30px;
}

.about-img-txt-sec .cmn-head-wrppr {
    margin-bottom: 70px;
}

.about-img-txt-sec figure {
    width: 100%;
    margin-bottom: 0;
}

.about-img-txt-sec figure img {
    width: 100%;
}

.about-para-main {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-para-wrppr {
    max-width: 930px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.about-para-wrppr p,
.about-infow-rppr p {
    font-size: 28px;
    line-height: 1.43;
}

.about-slider-sec {
    margin-top: -15px;
    position: relative;
    z-index: 1;
    padding-bottom: 135px;
}

.about-infow-rppr {
    max-width: 555px;
}

.about-slider-sec .cmn-head-wrppr {
    margin-bottom: 100px;
}

.about-slider-outtr {
    width: 100%;
    max-width: 456px;
    position: relative;
}

.about-slider {
    width: 100%;
}

/* .about-slide-item-outtr {
    height: inherit !important;
    padding: 0 15px;
} */

.about-slide-item {
    /* padding-top: 43px; */
    /* padding-bottom: 56px; */
    background-color: #232323;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.about-user-wrppr {
    display: flex;
    flex-wrap: wrap;
    padding: 43px 29px 20px;
    /* margin-bottom: 70px; */
    /* position: relative; */
    z-index: 1;
    flex: 0 0 auto;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.about-user-img {
    width: 69px;
    height: 69px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
}

.about-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abut-user-info {
    flex: 1;
    padding-left: 16px;
    position: relative;
}

.abut-user-info h3 {
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.22;
    color: var(--white);
    margin-bottom: 0;
}

.abut-user-info p {
    font-size: 25px;
    line-height: 1;
    color: #969696;
}

.abut-user-info>span {
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 25px;
    line-height: 1;
    color: #969696;
    position: absolute;
    right: -12px;
    top: 10px;
}

.abut-full-img-wrppr {
    width: 100%;
    padding-top: 162%;
    position: relative;
    /* flex-grow: 1; */
}

/* .abut-full-img-wrppr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.abut-full-img-wrppr video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.about-slider .slick-list {
    margin: 0 -15px;
}

.about-slider .slick-track {
    display: flex !important;
}

.progressbar {
    position: absolute;
    top: 16px;
    left: 13px;
    right: 16px;
    height: 6px;
    border-radius: 8px;
    background-color: #747474;
    overflow: hidden;
    z-index: 1;
}

.progressbar .inprogress {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--blueColor);
    transition: all 0s linear;
}

.progressbar .inprogress:not(.active) {
    width: 0%;
}

.progress-itm-innr {
    position: relative;
    width: 55px;
    height: 55px;
    margin: auto;
    transition: 0.3s all;
    cursor: pointer;
}

.progress-itm-innr svg {
    width: 100%;
    height: 100%;
}

.progress-itm-innr circle {
    fill: none;
    stroke-width: 12;
}

.progress-itm-innr circle:first-child {
    stroke: #d9d9d9;
}

.progress-itm-innr .progress {
    stroke: var(--blueColor);
    stroke-dashoffset: 500;
    stroke-dasharray: 500;
    transition: stroke-dashoffset 0.5s linear;
}

.progress-itm-innr figure {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
    transition: 0.3s all;
}

.progress-itm-innr figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.progress-slide-itm.active .progress-itm-innr {
    width: 93px;
    height: 93px;
}

.progress-slide-itm.active .progress-itm-innr figure {
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 7px;
    right: 7px;
}

.progress-slider {
    width: 225px;
    transform: rotate(-90deg) translateY(calc(-100% - 28px));
    transform-origin: right top;
    /* height: 220px; */
}

.progress-slide-itm {
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-itm-innr {
    transform: rotate(90deg);
}

.progress-slide-itm:not(:last-child) {
    margin-right: 10px;
}

.progress-arrw-main {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    position: absolute;
    padding-top: 48px;
    top: 0;
    right: -135px;
    width: 200px;
    overflow: hidden;
}

.progress-arrw-wrppr {
    display: flex;
    align-items: center;
}

.progress-arrw-wrppr>*:first-child {
    margin-right: 13px;
}

/* Solution page */

.bnnr-sec.business-service-bnnr {
    height: inherit;
    min-height: 100vh;
}

.business-service-bnnr.solution-bnnr figure::before {
    background: var(--grayColor);
    opacity: 0.4;
}

.solution-bnnr .bnnr-content-main.technology-service-bnnr-innr {
    padding-top: 75px;
    align-items: flex-start;
}

.solution-bnnr .technology-service-bnnr-content {
    padding-left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}

.solution-bnnr .technology-service-bnnr-content h1 {
    width: 100%;
    max-width: 1011px;
    margin: 0 auto 20px;
    text-align: left;
}

.solution-bnnr .technology-service-bnnr-content h1 span {
    font-size: 85px;
    color: #d4cec5;
    margin: 0;
    display: inline;
}

.solution-bnnr .technology-service-bnnr-content h1 span.block-line {
    display: block;
    text-align: right;
}

.solution-bnnr .technology-service-bnnr-content h1 span.gap-span {
    margin-left: 93px;
}

.solution-bnnr .innr-bnnr-info {
    padding-left: 0;
    max-width: 922px;
    width: 100%;
    margin: 0 auto;
}

.solution-bnnr .innr-bnnr-info p {
    max-width: 100%;
}

.after-bnnr {
    padding-top: 0 !important;
    margin-top: -15px;
    position: relative;
    z-index: 1;
}

.new-card-left-col {
    width: 37%;
    flex: 0 0 auto;
}

.new-card-right-col {
    width: 63%;
    flex: 0 0 auto;
}

.hme-solution-card-wrppr.solution {
    overflow: hidden;
    height: 100%;
}

.hme-solution-card-wrppr.solution .hme-solution-card-content h3::after {
    height: 3px;
}

.hme-solution-card-wrppr.solution .hme-solution-card-content h3 span {
    font-size: 60px;
    display: block;
}

/* .hme-solution-card-wrppr.solution .card-img {
    padding: 0 !important;
} */

.hme-solution-card-wrppr.solution .hme-solution-card-content h3 {
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.three-card-grup-wrppr .card-group-each {
    min-height: 305px;
}

.three-card-grup-wrppr .card-group-each:not(:last-child) {
    margin-bottom: 24px;
}

.solution-card-group-rw-outtr .card-group-rw:not(:last-child) {
    margin-bottom: 30px;
}

.what-we-do-sec.solution {
    padding-top: 0;
    /* padding-bottom: 60px; */
    padding-bottom: 0;
}

.service-team-count-wrppr.solution h3 {
    font-size: 50px;
    text-align: left;
    margin-bottom: 30px;
}

.service-team-count-wrppr.solution p {
    font-size: 25px;
    font-family: var(--inter);
    line-height: 1.2;
    text-align: left;
}

.case-study-sec.solution .case-studies-img-main::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--blueColor);
    opacity: 0.6;
    pointer-events: none;
}

.case-study-sec.solution .case-study-slider-outtr {
    max-width: 870px;
}

.case-study-sec.solution .case-study-arrw-wrppr .feed-cmn-arrw:hover {
    filter: brightness(0);
}

.col-lg-12.who-we-work-col .who-we-work-img-wrppr {
    width: 320px;
}

.col-lg-12.who-we-work-col .who-we-work-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-we-work-main>p:last-child {
    margin-bottom: 0;
}

/* Case Studies page */

.bnnr-sec.case-studies-bnnr {
    background-color: var(--white);
    min-height: inherit;
}

.bnnr-sec.case-studies-bnnr .technology-service-bnnr-content {
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.bnnr-sec.case-studies-bnnr .bnnr-content-main.technology-service-bnnr-innr {
    padding: 75px 0;
}

.bnnr-sec.case-studies-bnnr .technology-service-bnnr-content h1 {
    width: 100%;
    margin-bottom: 60px;
}

.bnnr-sec.case-studies-bnnr .technology-service-bnnr-content h1 span {
    line-height: 1.12;
    display: block;
    color: var(--blueColor);
    font-size: 80px;
}

.each-case-stuies {
    padding: 141px 0;
}

.each-case-stuies-rw {
    align-items: center;
}

.each-case-stuies-content .subtitle {
    font-family: var(--dinCondensed);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.17;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 86px;
    display: block;
}

.each-case-stuies-content h3 {
    font-size: 60px;
    line-height: 1.33;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 86px;
}

.each-case-stuies-img-outtr {
    position: relative;
}

.each-case-stuies-img-outtr.one {
    padding-bottom: 67px;
}

.each-case-stuies-img-outtr.two {
    padding-bottom: 117px;
}

.each-case-stuies-img-outtr.three {
    padding-bottom: 60px;
}

.each-case-stuies-img-wrppr,
.each-case-stuies-img-wrppr img {
    width: 100%;
}

.each-case-stuies-img-outtr>span {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.each-case-stuies-img-outtr>span img {
    width: 100%;
}

.each-case-stuies-img-outtr.one>span {
    bottom: 0;
    left: -120px;
    width: 380px;
}

.each-case-stuies-img-outtr.two>span {
    bottom: 0;
    left: -123px;
    width: 370px;
}

.each-case-stuies-img-outtr.three>span {
    bottom: 0;
    right: 160px;
    width: 185px;
}

.each-case-stuies-img-outtr.four>span {
    bottom: 57px;
    left: -155px;
    width: 214px;
}

.each-case-stuies .cmn-btn:hover {
    background-color: var(--grayColor) !important;
    border-color: var(--grayColor) !important;
    color: var(--white);
}

/* Blog page */

.bnnr-sec.blog-bnnr {
    background-color: #f9f9f1;
    height: 100vh;
}

.bnnr-sec.blog-bnnr .technology-service-bnnr-content {
    padding-left: 0;
}

.bnnr-sec.blog-bnnr .technology-service-bnnr-content h1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.bnnr-sec.blog-bnnr .technology-service-bnnr-content h1 span {
    color: var(--blueColor);
    margin: 0;
}

.bnnr-sec.blog-bnnr .blg-bnnr-img-wrppr {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -9%;
    left: 0;
    z-index: -1;
}

.bnnr-sec.blog-bnnr .blg-bnnr-img-wrppr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-sec.blog-page {
    padding-bottom: 50px;
}

.blog-sec.blog-page::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 15px;
    left: 0;
    z-index: -2;
    background-color: var(--pinkColor);
}

.blog-sec.blog-page .cmn-head-wrppr {
    margin-bottom: 70px;
}

.blog-cetagories-sec {
    margin-top: -15px;
    position: relative;
    padding-bottom: 100px;
    z-index: 1;
}

.blog-cetagories-list-wrppr {
    margin-bottom: 115px;
}

.blog-cetagories-list-wrppr form {
    width: 100%;
}

.blog-cetagories-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -19px;
}

.each-blog-cetagories {
    margin-bottom: 19px;
}

.each-blog-cetagories:not(:last-child) {
    margin-right: 19px;
}

.each-blog-cetagories input[type="checkbox"] {
    display: none;
}

.each-blog-cetagories span {
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    padding: 10px 16px;
    background-color: var(--white);
    border: 1px solid var(--grayColor);
    transition: 0.3s all;
    cursor: pointer;
}

.each-blog-cetagories input[type="checkbox"]:checked+span {
    border-color: var(--blueColor);
    background-color: var(--blueColor);
    color: var(--white);
}

.blog-each-itm-wrppr.blog-cetagories {
    padding: 0;
    background-color: transparent;
}

.blog-each-itm-wrppr.blog-cetagories .blog-content-wrppr h3 {
    font-weight: 600;
    line-height: 1.96;
    margin-bottom: 0;
}

.blog-each-itm-wrppr.blog-cetagories .blog-content-wrppr p {
    color: var(--grayColor);
}

.blog-each-itm-wrppr.blog-cetagories .blog-content-wrppr p span {
    font-weight: bold;
}

.blog-cetagories-rw {
    --bs-gutter-x: 80px;
    --bs-gutter-y: 80px;
}

.blog-load-btn-wrppr {
    padding-top: 100px;
    text-align: center;
}

/* contact page */

.bnnr-sec.contact-bnnr figure::before {
    background: linear-gradient(137.75deg,
            rgba(0, 0, 0, 0.7) 26.4%,
            rgba(255, 255, 255, 0) 101.05%);
    mix-blend-mode: darken;
}

.technology-service-bnnr-content.contact {
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 1115px;
}

.technology-service-bnnr-content.contact h1 {
    /* max-width: 590px; */
    width: 100%;
    margin-bottom: 30px;
}

.technology-service-bnnr-content.contact h1 span {
    font-size: 80px;
    color: var(--white);
}

.technology-service-bnnr-content.contact p {
    padding-left: 0;
    font-family: var(--dinCondensed);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    width: 100%;
    max-width: 100%;
    line-height: 1.2;
}

.contact-info-main {
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.contact-rw {
    width: auto !important;
    display: flex !important;
    --bs-gutter-x: 35px;
    margin-top: calc(-1 * var(--bs-gutter-y)) !important;
    margin-right: calc(-0.5 * var(--bs-gutter-x)) !important;
    margin-left: calc(-0.5 * var(--bs-gutter-x)) !important;
}

.contact-info-col {
    width: 45%;
}

.contact-map-col {
    width: 55%;
}

.contact-map-wrppr {
    border: 2px solid var(--blueColor);
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(10%);
    transition: 0.3s all;
}

.contact-map-wrppr.resp-tab-content-active {
    transform: translateY(0);
    pointer-events: all;
    visibility: visible;
    z-index: 1;
}

.contact-map-wrppr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-map-wrppr iframe {
    width: 100%;
    height: 100%;
}

.contact-location-all-wrppr {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.each-contact-location {
    padding: 30px;
    border-radius: 2px;
    border: 2px solid var(--lightGrayColor) !important;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: transparent !important;
    transition: 0.3s all;
}

.each-contact-location:not(:last-child) {
    margin-bottom: 10px;
}

.each-contact-location>p {
    font-size: 60px;
    line-height: 1.17;
    font-family: var(--impact);
    text-transform: uppercase;
    color: var(--grayColor);
    transition: 0.3s all;
    margin-bottom: 0;
}

.each-contact-location.resp-tab-active {
    flex-grow: 1;
    color: var(--white);
    background-color: var(--blueColor) !important;
    border-color: var(--blueColor) !important;
}

.each-contact-location.resp-tab-active>p {
    color: var(--lightGrayColor);
}

.each-contact-location-txt p {
    margin-bottom: 15px;
}

.each-contact-location-txt a {
    color: var(--white);
    text-decoration: underline !important;
    text-underline-offset: 6px;
}

.each-contact-location-txt a:hover {
    color: var(--black);
}

.contact-all-map-main {
    position: relative;
    height: 1080px;
}

.each-contact-location-txt {
    display: none;
}

.each-contact-location.resp-tab-active .each-contact-location-txt {
    display: block;
    color: var(--white);
}

.contact-page-footer .row.fttr-rw {
    justify-content: space-between;
}

.contact-page-footer .social-fttr-col {
    align-items: flex-end;
}

/* Sitecore Page */

.partner-logo-bnnr figure {
    opacity: 0.3;
}

.partner-logo-bnnr figure::before {
    display: none;
}

.partner-logo-bnnr .technology-service-bnnr-content {
    padding-left: 75px;
}

.partner-logo-bnnr .innr-wrppr {
    width: 100%;
}

.partner-logo-bnnr .prev-arrw-span {
    display: block;
    width: 22px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    pointer-events: all;
    line-height: 0;
}

.partner-logo-bnnr .prev-arrw-span img {
    width: 100%;
}

.partner-logo-bnnr .prev-arrw-span:hover {
    opacity: 0.5;
}

.partner-logo-bnnr .technology-service-bnnr-content h1 {
    width: 100%;
}

.partner-logo-bnnr .technology-service-bnnr-content h1 span {
    font-size: 85px;
    display: block;
    margin: 20px 0 0;
}

.partner-logo-bnnr .innr-bnnr-info {
    padding-top: 15px;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}

.logo-each-wrppr {
    flex: 0 0 auto;
    padding: 5px 15px;
    background-color: var(--white);
    border-radius: 8px;
    height: inherit;
}

.partner-logo-bnnr .innr-bnnr-info p {
    flex: 1;
    padding-left: 20px;
}

.card-group-each.partner {
    min-height: 457px;
}

.card-group-col.full .card-group-each.partner {
    min-height: inherit;
}

.card-group-col.full .card-group-each.partner h3 {
    width: 100%;
}

.card-group-each.partner h3 span {
    font-family: var(--dinCondensed);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.17;
    text-transform: uppercase;
    color: var(--white);
    display: block;
}

.card-group-rw.partner-rw:not(:last-child) {
    margin-bottom: 60px;
}

.what-we-do-sec.partner .cmn-head-wrppr {
    margin-bottom: 65px;
}

.card-group-main.partner>p {
    font-size: 28px;
    line-height: 1.43;
    margin-bottom: 40px;
}

.card-group-main.partner>p:last-child {
    margin-bottom: 0;
}

.card-group-main.partne {
    padding-bottom: 115px;
}

.service-capabilities-sec.partner {
    padding-bottom: 50px;
}

.service-capabilities-sec.partner::before {
    display: none;
}

.service-capabilities-sec.partner .cmn-head-wrppr {
    margin-bottom: 84px;
}

.service-capabilities-sec.partner .capabilities-card-innr h3 {
    width: 62%;
}

.service-capabilities-sec.partner .capabilities-card-innr p {
    width: 38%;
}

.team-partner-head-outtr {
    margin-bottom: 64px;
}

.team-partner-head-outtr .cmn-head-wrppr {
    margin-bottom: 80px;
}

.service-team-sec.partner .service-team-count-wrppr {
    min-height: 583px;
    padding-right: 90px;
}

.service-capabilities-sec.partner-part .each-explore-more-col {
    min-height: 530px;
}

/* Office Location page */

.each-location-office-wrppr {
    padding-bottom: 130px;
    display: flex;
    flex-wrap: wrap;
}

.each-location-office-wrppr:first-child {
    padding-top: 130px;
}

.each-location-office-wrppr:last-child {
    padding-bottom: 0;
}

.each-location-office-info {
    width: 366px;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.each-location-office-info h3 {
    font-weight: 400;
    font-size: 120px;
    line-height: 0.8;
    text-transform: uppercase;
    color: var(--blueColor);
    margin-bottom: 25px;
}

.each-location-office-info p {
    margin-bottom: 15px;
}

.each-location-office-info a {
    color: var(--grayColor);
}

.each-location-office-info a:hover {
    color: var(--blueColor);
}

.each-location-office-col {
    flex: 1;
}

.each-location-office-img-wrppr {
    width: auto;
    margin-right: calc(((100vw - 1225px) / 2) * -1);
}

.each-location-office-img-wrppr img {
    width: 100%;
}

.office-loaction-sec {
    overflow: hidden;
    padding-bottom: 30px;
}

.office-loaction-sec .cmn-head-wrppr {
    margin-bottom: 0;
}

.each-location-office-wrppr:nth-child(even) {
    flex-direction: row-reverse;
}

.each-location-office-wrppr:nth-child(even) .each-location-office-img-wrppr {
    margin-right: 0;
    margin-left: calc(((100vw - 1225px) / 2) * -1);
}

.each-location-office-wrppr:nth-child(even) .each-location-office-info {
    padding-left: 40px;
}

.each-location-office-wrppr:nth-child(even) .each-location-office-info h3 {
    margin-left: -50px;
}

/* Timberland page */

.bnnr-sec.land-bnnr figure::before {
    display: none;
}

.bnnr-sec.land-bnnr .technology-service-bnnr-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    max-width: 700px;
    width: 100%;
}

.bnnr-sec.land-bnnr .prev-arrw-span {
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
    display: block;
    line-height: 0;
    pointer-events: all;
}

.bnnr-sec.land-bnnr .subtitle-land {
    font-family: var(--dinCondensed);
    font-size: 50px;
    line-height: 1.2;
    color: var(--white);
    padding-left: 0;
    margin-bottom: 75px;
}

.bnnr-sec.land-bnnr .technology-service-bnnr-content h1 {
    width: 100%;
    font-size: 60px;
    line-height: 1.33;
}

.bnnr-sec.land-bnnr .bnnr-content-main.technology-service-bnnr-innr {
    padding: 150px 0;
}

.industry-loaction-sec {
    position: relative;
    z-index: 1;
    background-color: var(--white);
}

.industry-loaction-top-part {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.industry-loaction-main {
    padding: 32px 57px;
    background-color: var(--white);
    display: flex;
    flex-wrap: wrap;
}

.each-industry-loaction-info {
    width: 33.33%;
    padding: 28px;
    flex: 0 0 auto;
    border-right: 1px solid #b2bdd9;
}

.each-industry-loaction-info p {
    text-align: center;
    font-family: var(--dinCondensed);
    font-weight: 700;
    font-size: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--grayColor);
}

.each-industry-loaction-info:last-child {
    border-right: none;
}

.industry-loaction-sec {
    background-color: var(--white);
}

.industry-content-innr {
    padding: 165px 0;
}

.industry-content-innr p {
    font-family: var(--dinCondensed);
    font-weight: 700;
    font-size: 60px;
    line-height: 1.33;
    text-transform: uppercase;
    color: var(--blueColor);
}

.project-sec {
    position: relative;
    z-index: 1;
}

.project-sec::before {
    position: absolute;
    content: "";
    background-color: #312638;
    width: 100%;
    height: 100%;
    top: 15px;
    left: 0;
    z-index: -2;
}

.project-sec .cmn-head-wrppr {
    margin-bottom: 147px;
}

.project-details-wrppr {
    max-width: 530px;
    width: 100%;
    padding-top: 135px;
}

.project-details-wrppr p {
    font-size: 30px;
    line-height: 1.63;
    color: var(--white);
}

.project-rw {
    justify-content: space-between;
}

.project-txt-col {
    width: 64%;
    flex: 0 0 auto;
}

.project-img-col {
    width: 36%;
    flex: 0 0 auto;
}

.project-img-wrppr {
    width: 100%;
    margin-bottom: -15px;
}

.project-img-wrppr img {
    width: 100%;
}

.industry-solution-sec {
    position: relative;
    z-index: 2;
}

.industry-solution-sec .industry-content-innr p {
    font-family: var(--inter);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.63;
    color: var(--black);
    text-transform: inherit;
}

.partner-page-screenshot-main figure:not(:last-child) {
    margin-bottom: 120px;
}

.partner-page-screenshot-main figure,
.partner-page-screenshot-main figure img {
    width: 100%;
    margin: 0;
}

.future-sec {
    position: relative;
    z-index: 2;
    padding-bottom: 150px;
}

.future-sec .cmn-head-wrppr {
    margin-bottom: 120px;
}

.future-content {
    margin-bottom: 140px;
}

.future-content p {
    font-size: 30px;
    line-height: 1.63;
    color: var(--black);
}

.future-summary-col {
    width: 68%;
    flex: 0 0 auto;
}

.future-service-col {
    width: 32%;
    flex: 0 0 auto;
}

.future-summary-service-rw {
    --bs-gutter-x: 100px;
}

.future-summary-service-wrppr h3 {
    font-family: var(--dinCondensed);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.25;
    color: var(--blueColor);
    margin-bottom: 40px;
}

.future-summary-service-wrppr ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.future-summary-service-wrppr li {
    font-size: 30px;
    line-height: 1.63;
    color: var(--black);
    padding-left: 30px;
    position: relative;
}

.future-summary-service-wrppr li::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    left: 0;
    top: 18px;
    background-color: var(--blueColor);
}

.techonology-sec {
    padding-bottom: 135px;
}

.techonology-sec .cmn-head-wrppr {
    margin-bottom: 125px;
}

.technology-logo-list {
    padding: 0;
    margin: 0 -40px -50px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.technology-logo-list li {
    padding: 0 40px 50px;
}

.technology-logo-wrppr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.technology-logo-wrppr span {
    width: 40px;
    flex: 0 0 auto;
}

.technology-logo-wrppr span img {
    width: 100%;
}

.technology-logo-wrppr p {
    flex: 1;
    padding-left: 20px;
    font-family: var(--inter);
    font-weight: 400;
    font-size: 25px;
    line-height: 1.95;
    color: var(--black);
    margin-bottom: 0;
}

.partner-logo-bnnr.microsoft .innr-bnnr-info p {
    max-width: 410px;
    width: 100%;
    padding-left: 33px;
}

#parentVerticalTab .resp-tabs-list {
    height: auto;
}

#parentVerticalTab .each-capabilities-tab-imf-wrppr {
    height: 160px;
}

.bnnr-sec.adobe .logo-each-wrppr {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 79%;
    width: 383px;
    padding: 10px 15px;
    height: inherit;
}

.bnnr-sec.adobe.partner-logo-bnnr .innr-wrppr {
    width: 54%;
}

.partner-bnnr-title-wrppr {
    position: relative;
}

.service-capabilities-sec.partner.adobe {
    padding-bottom: 168px;
}

/* Step form */

.header-step-btn {
    width: auto !important;
    height: auto !important;
    padding: 17px 16px 13px 16px !important;
    border-radius: 8px !important;
}

.step-frm-main {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(30px);
    transition: 0.5s all;
}

.step-frm-main.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0px);
}

.step-frm-outtr {
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.step-frm-header-part {
    width: 100%;
    background-color: var(--blueColor);
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
}

.step-frm-header-part::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 52%;
    left: 0;
    top: 0;
    background-color: var(--blueSecndColor);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
    pointer-events: none;
}

.step-hdr-innr {
    padding: 33px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-close-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border-radius: 8px;
}

.step-close-btn:hover {
    background-color: var(--pinkColor);
}

.step-frm-content-main {
    flex-grow: 1;
}

.step-frm-content-innr {
    padding: 100px 0;
}

.step-form {
    width: 100%;
    display: block;
}

.step-form fieldset:not(:first-of-type) {
    display: none;
}

.step-frm-head .subtitle-step {
    font-family: var(--dinCondensed);
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--blueColor);
    margin-bottom: 10px;
}

.step-frm-head h2 {
    font-size: 80px;
    line-height: 1.12;
    text-transform: uppercase;
    color: var(--blueColor);
}

.step-frm-head {
    margin-bottom: 70px;
}

.step-field-wrppr {
    max-width: 1000px;
    width: 100%;
    margin-bottom: 40px;
}

.step-field-wrppr input[type="text"],
.step-field-wrppr input[type="email"],
.step-field-wrppr textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    font-family: var(--inter);
    font-size: 30px;
    line-height: 1.5;
    color: var(--black);
    padding: 10px;
}

.step-field-wrppr input[type="text"]::placeholder,
.step-field-wrppr input[type="email"]::placeholder,
.step-field-wrppr textarea::placeholder {
    color: #a5a5a5;
}

.step-frm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 16px 11px;
    min-width: 191px;
    background: var(--white) !important;
    border: 1px solid var(--blueColor) !important;
    border-radius: 8px !important;
    font-size: 20px !important;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #494e59 !important;
    transition: 0.3s all !important;
    height: inherit !important;
    font-weight: 400 !important;
}

.step-frm-btn:hover {
    background-color: var(--blueColor) !important;
    color: var(--white) !important;
}

.step-radiobtn-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.step-radiobtn-list label {
    margin-right: 20px;
    margin-bottom: 20px;
}

.step-radiobtn-list label input[type="radio"] {
    display: none;
}

.step-radiobtn-list label span {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--grayColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 16px 13px;
    border: 1px solid var(--blueColor);
    border-radius: 8px;
    transition: 0.3s all;
    cursor: pointer;
}

.step-radiobtn-list label span:hover,
.step-radiobtn-list label input[type="radio"]:checked+span {
    background-color: var(--blueColor);
    color: var(--white);
}

.prev-step-btn {
    padding: 0;
    border: none;
    background: transparent;
    filter: grayscale(1);
    transition: 0.3s all;
}

.prev-step-btn:hover {
    filter: none;
}

.step-btn-wrppr {
    display: flex;
    align-items: center;
}

.step-btn-wrppr>*:first-child {
    margin-right: 30px;
}

.bnnr-sec.contact-bnnr {
    min-height: inherit;
}

[data-pin-anim] {
    position: relative;
    min-height: 100vh;
}

[data-pin-anim] .card-group-rw {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: #f0f0f0;
    --bs-gutter-y: 0;
}

[data-pin-anim] .card-group-each h3 {
    font-size: 44px;
}

[data-pin-anim] .three-card-grup-wrppr .card-group-each {
    min-height: 255px;
}

[data-pin-anim] .card-group-each p {
    font-size: 28px;
}

.hide-seo {
    display: none;
}

/* support starts 13.05.2025  */
.project-img-wrppr,
.partner-page-screenshot-main {
    overflow: hidden;
}

.project-img-wrppr img,
.partner-page-screenshot-main figure img {
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-img-wrppr img:hover,
.partner-page-screenshot-main figure img:hover {
    transform: scale(1.03);
}

.each-location-office-info a {
    text-decoration: underline !important;
}

.service-team-count-wrppr.solution {
    transition: all 0.3s ease-in-out;
}

.service-team-count-wrppr.solution:hover {
    background-color: var(--purpleColor);
}

.service-team-count-wrppr.solution:hover h3,
.service-team-count-wrppr.solution:hover p {
    color: var(--white);
}

.process-card-col:nth-child(6) .process-card-wrppr.hover-card .process-card-innr-info,
.process-card-col:nth-child(8) .process-card-wrppr.hover-card .process-card-innr-info {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
}

/* support ends 13.05.2025  */

/* S.Mv Css Satrt 14-05-25 */
.single-post {
    padding-top: 230px;
}

.single-post-outer figure {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.pub-date-wpr {
    margin-bottom: 20px;
}

.pub-date-wpr ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
    padding: 0;
    align-items: center;
}

.single-post-outer .pub-date-wpr ul li {
    padding: 5px;
    line-height: 1;
    margin-bottom: 0;
}

.single-post .pub-date-wpr ul li::after {
    display: none;
}

.single-post-outer img {
    width: 100%;
}

.blg-dtls-date {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: var(--blueColor);
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.blg-dtls-date img {
    width: 20px;
    margin-right: 5px;
}

.blg-dtls-date span {
    line-height: 1;
}

.blg-dtls-tag-link {
    padding: 8px 10px;
    border-radius: 5px;
    background-color: var(--blueSecndColor);
    display: inline-block;
    font-size: 14px;
    color: var(--white);
    line-height: 1;
}

.blg-dtls-tag-link:hover {
    background-color: var(--black);
    color: var(--white);
}

.single-post-outer h1 {
    font-size: 45px;
    line-height: 1.1;
}

.single-post-outer h2 {
    font-size: 40px;
}

.single-post-outer h3 {
    font-size: 36px;
}

.single-post-outer h4 {
    font-size: 32px;
}

.single-post-outer h5 {
    font-size: 30px;
}

.single-post-outer h6 {
    font-size: 24px;
}

.single-post-outer ul {
    list-style: none;
    padding: 0;
}

.single-post-outer ul li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.single-post .single-post-outer ul li:after {
    position: absolute;
    content: "";
    top: 5px;
    left: 0;
    background: url(images/post-li-icon.svg) no-repeat top left;
    background-size: 20px;
    width: 21px;
    height: 21px;
}

.error-page-sec {
    padding-top: 150px;
}

.error-page-outer figure {
    max-width: 600px;
    margin: 0 auto 10px;
}

.error-page-outer figure img {
    mix-blend-mode: darken;
}

.error-page-outer {
    text-align: center;
}

.single-post-outer {
    padding-bottom: 100px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* S.Mv Css End 14-05-25 */

/* 21.05.2025 start */

.bnnr-each-content.two p {
    font-size: 20px;
    max-width: 343px;
    line-height: 1.3;
}

.bnnr-each-content.three .bnnr-txt-wrppr .h1-title {
    font-size: 70px;
    font-family: var(--dinCondensed);
    color: var(--lightGrayColor);
}

.bnnr-each-content.three>.h1-title {
    margin-bottom: 10px;
}

.bnnr-each-content.three .bnnr-txt-wrppr p {
    padding-right: 20px;
}

.certification-info p {
    font-size: 20px;
}

.card-group-main>p {
    font-size: 28px;
}

.service-team-sec.solution .service-team-count-wrppr h3 {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-team-sec.solution .service-team-count-wrppr p {
    line-height: 1.2;
    text-align: left;
}

/* 21.05.2025 end */

/* 26.05.2025 start */

.service-team-count-wrppr.solution:hover {
    background-color: var(--blueColor);
    border-color: var(--blueColor);
}

/* .service-team-count-wrppr {
    position: relative;
}

.service-team-count-wrppr h3,
.service-team-count-wrppr p{
    position: relative;
    z-index: 2;
} */

/* .service-team-count-wrppr .icon {
    position: absolute;
    z-index: 1;
    transition: .3s all;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.service-team-count-wrppr .icon{
    bottom: -96px;
    left: 121px;
    min-width: 904px;
    transform: translate(-20px, -20px);
}

.service-team-count-wrppr:hover .icon {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
} */

/* 26.05.2025 end */

/* 03.11.25 start */

.hme-teams-sec .cmn-head-wrppr {
    margin-top: -15px;
}

.hme-service-sec .cmn-head-wrppr {
    margin-bottom: 57px;
}

.what-we-do-sec.new-v2 {
    padding-top: 0;
    position: relative;
    z-index: 1;
}

.what-we-do-sec.new-v2 .cmn-head-wrppr h2 {
    font-weight: bold;
}

.new-tech-case-study-sec {
    position: relative;
    z-index: 1;
}

.case-studie-new-ovrly {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 0;
    z-index: -3;
    pointer-events: none;
}

.new-tech-case-study-sec .each-case-stuies {
    padding-top: 0;
    padding-bottom: 110px;
}

.new-tech-case-study-sec .cmn-head-wrppr {
    margin-bottom: 141px;
}

.each-case-stuies-txt-col {
    width: 44%;
    flex: 0 0 auto;
}

.each-case-stuies-img-col {
    width: 56%;
    flex: 0 0 auto;
}

.explore-more-wrppr a span {
    display: block;
    width: 44px;
    line-height: 0;
    margin-bottom: 6px;
    transition: 0.5s all;
}

.explore-more-wrppr a span img {
    width: 100%;
}

.explore-more-wrppr a:hover span {
    opacity: 0.5;
}

.each-explore-more-col:last-child .explore-more-wrppr a h3 {
    margin-bottom: 0;
}

.each-explore-more-col:last-child .explore-more-wrppr a span {
    margin: 0;
    transform: rotateY(180deg);
}

/* 03.11.25 end */

/* 04.11.25 start */

.solution-bnnr .technology-service-bnnr-content h1 span.block-line.top-gap {
    line-height: 1;
    margin-top: 20px;
}

.each-case-stuies-img-outtr.one.new>span {
    bottom: -5px;
    left: -75px;
}

.about-img-txt-sec.new-v2 {
    padding-top: 0px;
}

.new-about-para-main .cmn-head-wrppr {
    margin-bottom: 0;
}

.about-img-txt-sec.new-v2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 20px;
    left: 0;
    z-index: -3;
    background-color: #3c7cd9;
    pointer-events: none;
}

.new-meet-about-main {
    position: relative;
    width: 100%;
    max-width: 1107px;
    margin: 0 auto;
}

.new-abut-content-outtr {
    position: relative;
    padding-bottom: 27%;
    padding-top: 37%;
    width: 100%;
}

.custmabut-sphe {
    display: block;
    width: 100%;
    line-height: 0;
}

.custmabut-sphe img {
    width: 100%;
}

.new-abut-cntnt-innr {
    position: relative;
    z-index: 1;
    padding: 40px 124px;
    text-align: center;
}

.new-abut-cntnt-innr img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.new-abut-cntnt-innr p {
    font-size: 28px;
    line-height: 1.43;
    color: #494e59;
    margin-bottom: 0;
}

.new-abut-bg-wrppr {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 94%;
    transform: translate(-50%, -50%);
}

.new-abut-bg-wrppr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.new-team-sec {
    position: relative;
}

.new-team-sec::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 20px;
    left: 0;
    background-color: #e6377b;
    z-index: -3;
    pointer-events: none;
}

.new-team-sec .cmn-head-wrppr h2 {
    font-weight: 700;
}

.new-team-rw {
    --bs-gutter-x: 6px;
    --bs-gutter-y: 14px;
}

.new-team-card-wrppr {
    width: 100%;
    height: 100%;
    border: 10px solid var(--white);
    background-color: var(--white);
    overflow: hidden;
    position: relative;
    transition: 0.5s all;
}

.new-team-card-wrppr figure {
    width: 100%;
    position: relative;
    padding-top: 100%;
    /* height: 100%; */
    margin-bottom: 0;
}

.new-team-card-wrppr figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s all;
}

.new-team-card-wrppr figure .nrml-img {
    opacity: 1;
}

.new-team-card-wrppr figure .hover-img {
    opacity: 0;
}

.new-team-card-info {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    padding: 0 16px 16px;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    transition: 0.5s all;
}

.new-team-card-info h3 {
    font-family: var(--impact);
    font-weight: 400;
    /* font-size: 42px; */
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    -webkit-text-stroke: 2px #000000;
    margin-bottom: 0;
    margin-top: -12px;
    transition: 0.5s all;
}

.new-team-card-info p {
    font-family: var(--dinCondensed);
    font-weight: 700;
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
}

.new-team-listing-outtr {
    padding-bottom: 80px;
}

.new-team-card-wrppr:hover figure .nrml-img {
    opacity: 0;
}

.new-team-card-wrppr:hover figure .hover-img {
    opacity: 1;
}

.new-team-card-wrppr:hover .new-team-card-info p {
    display: none;
}

/* 04.11.25 end */

/* 05.11.25 start */

/* .capabilities-main {
    padding-top: 20px;
} */

.capabilities-main.expertise {
    padding-top: 0;
}

.capabilities-main.expertise .capabilities-each:not(:last-child) {
    margin-bottom: 20px;
}

.bnnr-sec.new-case-studies-bnnr {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bnnr-sec.new-case-studies-bnnr .bnnr-content-main {
    padding: 100px 0;
}

.bnnr-sec.new-case-studies-bnnr .technology-service-bnnr-content {
    min-height: 297px;
}

.bnnr-sec.new-case-studies-bnnr .subtitle-land {
    text-transform: capitalize;
    margin-bottom: 24px;
}

.bnnr-sec.new-case-studies-bnnr .technology-service-bnnr-content h1 {
    margin-bottom: 24px;
}

.new-case-studies-banner-btm-wrap a {
    font-family: var(--dinCondensed);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--white);
    display: inline-flex;
    align-items: center;
}

.new-case-studies-banner-btm-wrap a img {
    width: 22px;
    margin-right: 8px;
}

.new-case-studies-banner-btm-wrap a:hover {
    opacity: 0.5;
}

.new-case-studies-bnnr figure::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg,
            rgba(166, 166, 166, 0.6) 21.63%,
            rgba(0, 0, 0, 0.6) 100%);
    mix-blend-mode: darken;
    z-index: 1;
    pointer-events: none;
    display: block !important;
}

.project-sec.new-case-study {
    padding-bottom: 158px;
}

.project-sec.new-case-study .project-rw {
    align-items: center;
}

.project-sec.new-case-study .project-txt-col {
    width: 45%;
}

.project-sec.new-case-study .project-img-col {
    width: 55%;
}

.main-wrapper.new-microsoft-page .technology-service-bnnr-content h1 span {
    color: #dae2f7;
    line-height: 1;
    margin: 10px 0 0 0;
}

.main-wrapper.new-microsoft-page .partner-logo-bnnr .innr-bnnr-info {
    padding-top: 6px;
}

.page-id-702 .main-wrapper.new-microsoft-page .bnnr-content-main.technology-service-bnnr-innr {
    padding: 140px 0 200px;
}

.main-wrapper.new-microsoft-page .what-we-do-sec.partner.after-bnnr .cmn-head-wrppr h2 {
    font-weight: 700;
}

.main-wrapper.new-microsoft-page .service-team-sec.partner .team-partner-head-outtr>p {
    font-size: 28px;
}

.main-wrapper.new-microsoft-page .capabilities-tab-sec .cmn-head-wrppr h2 {
    font-family: var(--josefinSans);
}

.main-wrapper.new-microsoft-page .case-study-sec .cmn-head-wrppr {
    margin-bottom: 174px;
}

.page-id-702 .main-wrapper.new-microsoft-page .case-study-sec {
    padding-bottom: 100px;
}

.main-wrapper.new-microsoft-page .who-we-work-sec .who-we-work-wrppr p {
    font-size: 28px;
}

.main-wrapper.new-microsoft-page .who-we-work-sec .who-we-work-main>p:last-child {
    font-size: 33px;
}

.main-wrapper.new-microsoft-page .who-we-work-rw {
    margin-bottom: 60px;
}

.main-wrapper.new-microsoft-page .who-we-work-sec {
    padding-bottom: 50px;
}

.main-wrapper.new-microsoft-page .service-capabilities-sec.explore-more-sec.partner-part .cmn-head-wrppr h2 {
    font-family: var(--josefinSans);
}

.main-wrapper.new-microsoft-page .each-explore-more-col:last-child .explore-more-wrppr a span {
    margin: 16px 0 0;
}

.main-wrapper.new-microsoft-page .partner-logo-bnnr .technology-service-bnnr-content h1 span {
    color: #dae2f7;
}

.main-wrapper.new-microsoft-page .service-team-sec.partner .service-team-count-wrppr {
    padding-right: 50px;
}

.main-wrapper.new-microsoft-page .partner-logo-bnnr .technology-service-bnnr-content h1 span {
    color: #dae2f7;
}

.page-id-722 .main-wrapper.new-microsoft-page .technology-service-bnnr-content .innr-bnnr-info p {
    max-width: 74%;
}

.page-id-722 .main-wrapper.new-microsoft-page .what-we-do-sec.partner.after-bnnr .cmn-head-wrppr h2 {
    font-family: var(--josefinSans);
}

.page-id-722 .main-wrapper.new-microsoft-page .service-capabilities-sec.partner .cmn-head-wrppr {
    margin-bottom: 36px;
}

.page-id-722 .main-wrapper.new-microsoft-page .service-capabilities-sec.partner {
    padding-bottom: 160px;
}

.each-case-stuies-content {
    max-width: 536px;
}

.each-case-stuies-col:first-child {
    width: 44%;
}

.each-case-stuies-col:last-child {
    width: 56%;
}

#case-studies-categories {
    max-width: 550px;
    border: 1px solid var(--blueColor);
    border-radius: 8px;
    font-family: var(--inter);
    letter-spacing: 0.05em;
    color: var(--grayColor);
    text-transform: uppercase;
    font-size: 20px;
    background: url(images/drop-arr.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    cursor: pointer;
}

.each-case-stuies.case-study-1 .each-case-stuies-img-outtr>span {
    width: 26.319vw;
    left: -8vw;
}

.each-case-stuies.case-study-2 .each-case-stuies-img-outtr>span {
    width: 25.694vw;
    left: -5vw;
}

.each-case-stuies.case-study-3 .each-case-stuies-img-outtr>span {
    width: 12.847vw;
    left: auto;
    right: 3vw;
}

.each-case-stuies.case-study-4 .each-case-stuies-img-outtr>span {
    width: 14.861vw;
    bottom: 9vw;
    left: -6.7vw;
}

.each-case-stuies.case-study-5 .each-case-stuies-img-outtr>span {
    width: 14.306vw;
    bottom: 9vw;
    left: -7vw;
}

.each-case-stuies.case-study-6 .each-case-stuies-img-outtr>span {
    width: 26.319vw;
    left: 7vw;
    bottom: -4vw;
}

.each-case-stuies.case-study-7 .each-case-stuies-img-outtr>span {
    width: 15.972vw;
    left: 3vw;
    bottom: 3vw;
}

.each-case-stuies.case-study-8 .each-case-stuies-img-outtr>span {
    width: 12.847vw;
    left: auto;
    right: 3vw;
}

.each-case-stuies.case-study-9 .each-case-stuies-img-outtr>span {
    width: 14.861vw;
    bottom: 8vw;
}

.each-case-stuies.case-study-10 .each-case-stuies-img-outtr>span {
    width: 14.306vw;
    left: auto;
    right: 2vw;
    bottom: 2vw;
}

.each-case-stuies-rw {
    align-items: flex-start;
}

.page-id-863 .bnnr-content-main.technology-service-bnnr-innr {
    pointer-events: all;
}

/* 11.11.25 start */

.fake-hdr-get-btn-wrppr {
    padding-left: 64px;
    flex: 0 0 auto;
}

.new_get_in_touch_btn {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--lightGrayColor);
    padding: 0 !important;
}

.new_get_in_touch_btn.extra {
    color: var(--grayColor);
    padding: 17px 16px 13px 16px !important;
    text-align: center;
    min-width: auto;
}

.new_get_in_touch_btn:hover {
    color: var(--white);
}

/* single case studies*/
.single-our-case-studies .future-content ul li {
    list-style: none;
    position: relative;
    margin-bottom: 10px;
}

.single-our-case-studies .future-content ul li:last-child {
    margin-bottom: 0;
}

.single-our-case-studies .future-content ul li::before {
    content: "";
    position: absolute;
    height: 8px;
    width: 8px;
    background-color: #000dff;
    left: -19px;
    top: 0.6em;
}

#blog-filter-form .blog-cetagories-list input {
    width: 0;
}

.each-blog-cetagories input[type="radio"]:checked+span {
    border-color: var(--blueColor);
    background-color: var(--blueColor);
    color: var(--white);
}

.top-padding {
    padding-top: 10rem;
}

.step-form input:focus {
    color: var(--blueColor) !important;
}

/* 14.4.26 */
[data-pin-anim] .card-group-rw {
    position: static;
}

.btn-srw {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-srw .ar-slike {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: transparent;
    border: 1px solid var(--blueColor);
}

.btn-srw .ar-slike:hover {
    background-color: var(--blueColor);
    border-color: var(--white);
}

.btn-srw .ar-slike:hover svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(95%) saturate(20%) hue-rotate(341deg) brightness(105%) contrast(104%);
}

[data-pin-anim] {
    min-height: auto;
}

/* 14.4.26 */
/* 15.4.26 */
.case-study-sec.solution .case-study-arrw-wrppr .feed-cmn-arrw.slick-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.hme-teams-card-wrppr .back-part {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.hme-teams-card-wrppr .back-part .cmn-btn img {
    filter: brightness(0) saturate(100%) invert(29%) sepia(8%) saturate(885%) hue-rotate(183deg) brightness(92%) contrast(86%);
}

.hme-teams-card-wrppr .back-part .cmn-btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7450%) hue-rotate(159deg) brightness(92%) contrast(106%);
}

#gform_1 textarea.small,
#gform_1 .ginput_container input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #a5a5a5;
    padding: 10px 10px;
    font-size: 30px;
    font-weight: 400;
    color: #a5a5a5;
    height: 66px;
    min-height: 66px;
    box-shadow: none;
    border-radius: 0;
}

#gform_1 .gform-page-footer input {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 16px 11px;
    min-width: 191px;
    background: var(--white) !important;
    border: 1px solid var(--blueColor) !important;
    border-radius: 8px !important;
    font-size: 20px !important;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #494e59 !important;
    transition: 0.3s all !important;
    height: inherit !important;
    font-weight: 400 !important;
}

#gform_1 .gform-page-footer input:hover {
    background: #000dff !important;
    color: var(--white) !important;
}

#gform_1 .gchoice label {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--grayColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 16px 13px;
    border: 1px solid var(--blueColor);
    border-radius: 8px;
    transition: 0.3s all;
    cursor: pointer;
}

#gform_1 .ginput_container input[type="radio"] {
    visibility: hidden;
    display: none;
}

#gform_1 .gchoice input[type="radio"]:checked+label {
    border: 1px solid #000dff;
    background: #000dff;
    color: #fff;
}

#gform_1 .gfield_radio {
    flex-wrap: wrap;
    flex-direction: inherit;
}

#gform_1 .gform-page-footer input[type="image"] {
    border: none !important;
    box-shadow: none;
    min-width: auto;
    font-size: 0 !important;
    letter-spacing: 0;
    height: auto !important;
    padding: 0;
    margin-right: 30px;
    width: 33px;
    /* filter: brightness(0) saturate(100%) invert(0%) sepia(12%) saturate(7469%) hue-rotate(39deg) brightness(93%) contrast(97%); */
    background: transparent !important;
    font-weight: inherit !important;
    width: 26px;
}

.step-frm-head h2 {
    font-family: var(--impact);
}

.header-step {
    font-size: 30px !important;
    margin-bottom: 10px !important;
    color: var(--blueColor) !important;
    font-family: var(--dinCondensed) !important;
}

/* 15.4.26 */
/* 17.4.26 */
.hme-teams-card-wrppr .front-part {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.hme-teams-sec .home-flip-card-front .hme-teams-card-col:nth-child(2) .cmn-btn,
.home-flip-card-front .cmn-btn {
    color: #fff;
    background-color: transparent;
    border: 1px solid transparent !important;
    border-radius: 0;
    padding: 10px 0;
}

.home-flip-card-front .cmn-btn:hover {
    background-color: transparent !important;
    border-color: transparent !important;
}

.hme-teams-sec .hme-teams-card-col .cmn-btn {
    color: #fff;
    background-color: transparent;
    border: 1px solid transparent !important;
    border-radius: 0;
    padding: 10px 0;
}

.hme-teams-sec .hme-teams-card-col .cmn-btn:hover {
    border-color: transparent !important;
    background-color: transparent !important;
}

.hme-teams-card-wrppr .back-part .cmn-btn img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7450%) hue-rotate(159deg) brightness(92%) contrast(106%);
}

/* 17.4.26 */

.service-team-count-col.col_odd_12 {
    width: 100%;
}

.service-team-count-col.col_odd_12 .service-team-count-wrppr {
    border-left: none;
    border-right: none;
}

/* Support start */

.aws-main .bnnr-sec,
.ai-auto-main .bnnr-sec {
    background-color: transparent;
}

.aws-main .partner-logo-bnnr figure,
.ai-auto-main .partner-logo-bnnr figure {
    opacity: 1;
}

.aws-main .bnnr-sec.adobe .logo-each-wrppr {
    width: 236px;
    margin: 0;
    position: static;
    line-height: 1;
    transform: translateY(-23px);
    height: 95px;
    margin-bottom: -10px;
}

.aws-main .bnnr-sec.adobe.partner-logo-bnnr .innr-wrppr {
    width: 84%;
}

.aws-main .technology-service-bnnr-content {
    position: relative;
}

.aws-main .partner-logo-bnnr .innr-bnnr-info {
    width: 32%;
    display: block;
    margin-left: -210px;
    margin-bottom: -135px;
}

.aws-main .service-team-sec.partner .service-team-count-wrppr,
.ai-auto-main .service-team-sec.partner .service-team-count-wrppr {
    /* min-height: 200px; */
}

.aws-main .case-study-sec.solution .case-study-slider-outtr {
    max-width: 992px;
}


.aws-main .who-we-work-sec .cmn-head-wrppr {
    margin-top: -15px;
}

.ai-auto-main .bnnr-sec.adobe.partner-logo-bnnr .innr-wrppr {
    width: 84%;
}

.ai-auto-main .innr-bnnr-info {
    margin-left: -470px;
    margin-bottom: 13px;
}

.ai-auto-main .service-capabilities-sec.partner .capabilities-card-innr h3 {
    width: 100%;
}

.each-partners-logo-wrppr {
    padding: 15px;
}

.our-partners-main {
    margin: -15px;
    justify-content: center;
}

.aws-main .bnnr-sec.business-service-bnnr {
    min-height: 92vh;
}

.aws-main .bnnr-content-main.technology-service-bnnr-innr {
    padding-bottom: 200px;
    padding-top: 40px;
}

.each-partners-logo-wrppr img {
    max-height: 90px;
    object-fit: contain;
    max-width: 100px;
}


.front-part.home-flip-card-front .cmn-btn span img {
    /* filter: brightness(0.8); */
    width: 30px;
}


.hme-teams-card-wrppr .back-part .cmn-btn img {
    width: 21px;
    margin-top: -1px;
}

.hme-teams-sec .hme-teams-card-col .cmn-btn {
    padding-left: 0 !important;
}

/* Support end */
/* 22-apr-2026  */

.no-rotate .hme-teams-card-wrppr h3 {
    font-family: var(--impact);
    margin-bottom: 10px;
    z-index: 3;
}

.arr-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* .hme-teams-card-wrppr .hme-teams-card-img {
    mix-blend-mode: hard-light;
} */

/* .hme-teams-card-wrppr .front-part {
    border: initial;
} */

.arr-btn i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    flex: 0 0 auto;
}

.arr-btn i svg {
    width: 20px;
}

.icon-back {
    max-width: 60px;
    margin-bottom: 15px;
}

.no-rotate .hme-teams-card-wrppr .back-part h3 {
    font-size: 38px;
}

.head-line {
    width: 35px;
    height: 2px;
    margin-bottom: 15px;
}

.no-rotate .hme-teams-card-wrppr .back-part p {
    font-size: 18px;
    text-transform: initial;
}

.arr-btn.rev i {
    background: transparent;
    border: 2px solid var(--white);
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.arr-btn.rev i img {
    filter: initial;
    max-width: 16px;
}

.hme-teams-card-wrppr .back-part {
    padding: 26px;
    border: initial;
}

.arr-btn.rev:hover i {
    background: var(--white);
}

.arr-btn.rev:hover svg path {
    fill: #000;
}

.hme-teams-card-wrppr .back-part {
    pointer-events: initial;
}

.arr-btn.rev:hover {
    color: var(--white);
}

.ecomm-page-main .bnnr-sec::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(248.71deg, rgba(183, 0, 255, 0.5) 28.13%, #6E0099 96.7%);
}

.ai-auto-main.ecomm-page-main .bnnr-sec.adobe.partner-logo-bnnr .innr-wrppr {
    width: 85%;
}

/* .no-rotate .hme-teams-card-wrppr .hme-teams-card-img {
    top: 0;
    bottom: auto;
    left: 20px;
    border-radius: 0;
    right: auto;
} */

/* .no-rotate .hme-teams-card-col .front-part::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
} */

.no-rotate .hme-teams-card-col:nth-child(1) .front-part::before {
    background: linear-gradient(180deg, rgba(183, 0, 255, 0) 0, #000C79 90%);
}

.no-rotate .hme-teams-card-col:nth-child(2) .front-part::before {
    background: linear-gradient(180deg, rgba(183, 0, 255, 0) 0, #C8034D 90%);
}

.no-rotate .hme-teams-card-col:nth-child(3) .front-part::before {
    background: linear-gradient(180deg, rgba(183, 0, 255, 0) 0, #1E0463 90%);
}

.ai-auto-main.ecomm-page-main .innr-bnnr-info {
    margin-left: 372px;
    margin-bottom: 0;
    color: #fff;
    max-width: 440px;
    margin-top: -102px;
    line-height: 1;
}




/* 22-apr-2026  */


/* ========== responsive css =========== */

@media (min-width: 1025px) {

    /* navbar*/
    .navbar-nav .clickD {
        display: none;
    }

    .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }
}

@media (min-width: 1400px) {
    .blog-cetagories-main {
        min-width: 1251px;
    }
}

@media (min-width: 1441px) {

    .container,
    .capabilities-card-innr {
        max-width: 1254px;
        width: 100%;
        padding: 0 15px;
    }

    /* .bnnr-each-content h1,
    .bnnr-each-content .h1-title {
        font-size: 115px;
        line-height: 0.65;
    } */

    /* .bnnr-each-content h1 span,
    .bnnr-each-content .h1-title span {
        font-size: 70px;
    } */

    /* .bnnr-txt-wrppr p {
        font-size: 20px;
    } */

    .bnnr-each-content.one {
        width: 690px;
        padding-left: 77px;
    }

    .bnnr-each-content.two {
        width: 54vh;
        top: 6vh;
        /* right: 22vw; */
        right: 6vw;
    }

    .bnnr-each-content.three {
        width: 70vh;
        top: 16vh;
        left: 8.4vw;
    }

    .bnnr-each-content.four {
        width: 63vw;
        top: 6vh;
        left: 16vh;
    }

    .bnnr-each-content.five {
        left: 16vh;
        width: 51vw;
        top: 2vh;
    }

    .bnnr-each-content.five .h1-title {
        width: 60%;
    }

    [data-pin-anim] .card-group-each h3 {
        font-size: 40px;
    }

    [data-pin-anim] .three-card-grup-wrppr .card-group-each {
        min-height: 220px;
    }

    [data-pin-anim] .card-group-each p {
        font-size: 25px;
    }

    .each-case-stuies.case-study-1 .each-case-stuies-img-outtr>span {
        width: 367px;
        left: -101px;
    }

    .each-case-stuies.case-study-2 .each-case-stuies-img-outtr>span {
        width: 370px;
        left: -58px;
    }

    .each-case-stuies.case-study-3 .each-case-stuies-img-outtr>span {
        width: 150px;
        right: 40px;
    }

    .each-case-stuies.case-study-4 .each-case-stuies-img-outtr>span {
        width: 200px;
        bottom: 170px;
        left: -60px;
    }

    .each-case-stuies.case-study-5 .each-case-stuies-img-outtr>span {
        width: 160px;
        bottom: 90px;
        left: -80px;
    }

    .each-case-stuies.case-study-6 .each-case-stuies-img-outtr>span {
        width: 300px;
        left: 120px;
        bottom: -10px;
    }

    .each-case-stuies.case-study-7 .each-case-stuies-img-outtr>span {
        width: 200px;
        left: 37px;
        bottom: 40px;
    }

    .each-case-stuies.case-study-8 .each-case-stuies-img-outtr>span {
        width: 170px;
        right: 60px;
    }

    .each-case-stuies.case-study-9 .each-case-stuies-img-outtr>span {
        width: 190px;
        bottom: 130px;
        left: -50px;
    }

    .each-case-stuies.case-study-10 .each-case-stuies-img-outtr>span {
        width: 190px;
        right: 40px;
    }
}

@media (min-width: 1600px) {

    .bnnr-each-content h1,
    .bnnr-each-content .h1-title {
        font-size: 110px;
    }

    .bnnr-each-content h1 span,
    .bnnr-each-content .h1-title span {
        font-size: 70px;
    }

    .bnnr-txt-wrppr p {
        font-size: 20px;
    }

    .bnnr-each-content.one {
        width: 750px;
        padding-left: 30px;
    }

    .bnnr-each-content.three {
        width: 640px;
        left: 18vh;
        top: 25vh;
    }

    .bnnr-each-content.four {
        width: 1050px;
        top: 7vh;
    }

    .bnnr-each-content.five {
        width: 870px;
    }

    .bnnr-each-content.five .bnnr-txt-wrppr {
        max-width: 600px;
    }

    .bnnr-each-content.four .bnnr-txt-wrppr {
        max-width: 22vw;
    }

    .bnnr-img-each.four {
        left: 71vh;
    }
}

@media (min-width: 1900px) {
    /* .bnnr-each-content h1,
    .bnnr-each-content .h1-title {
        font-size: 130px;
    }

    .bnnr-each-content h1 span,
    .bnnr-each-content .h1-title span {
        font-size: 80px;
    } */

    /* .bnnr-txt-wrppr p {
        font-size: 28px;
    } */

    .home-team-head .line-purple {
        top: 96%;
        right: 50%;
    }

    .bnnr-img-each.one {
        top: 22vh;
        right: 7vw;
        width: 33vw;
    }

    .bnnr-each-content.three {
        width: 740px;
        left: 15vh;
        top: 17vh;
    }

    .bnnr-each-content.four {
        width: 1160px;
    }

    .bnnr-img-each.four {
        left: 88vh;
    }

    .bnnr-each-content.five {
        width: 1100px;
        top: 8vh;
    }

    .bnnr-each-content.five .h1-title span {
        margin-top: 30px;
        line-height: 0.8;
    }

    .bnnr-each-content.two {
        width: 54vh;
        top: 18vh;
        right: 6vw;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    body {
        font-size: 1.67vw;
    }

    p {
        margin: 0 0 1.53vw 0;
    }

    h1,
    .h1-title {
        font-size: 8.33vw;
    }

    h2,
    .h2-title {
        font-size: 4.17vw;
    }

    h3,
    .h3-title {
        font-size: 2.78vw;
    }

    h4,
    .h4-title {
        font-size: 2.08vw;
    }

    h5,
    .h5-title {
        font-size: 1.81vw;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 1.74vw;
    }

    p:last-child,
    h1:last-child,
    h2:last-child,
    h3:last-child,
    h4:last-child,
    h5:last-child,
    h6:last-child {
        margin-bottom: 0;
    }

    /* back to top */

    #scroll {
        right: 2.08vw;
        bottom: 2.08vw;
        width: 3.82vw;
        height: 3.82vw;
        -webkit-box-shadow: 0px 0px 1.39vw 0px rgba(255, 255, 255, 0.4);
        -moz-box-shadow: 0px 0px 1.39vw 0px rgba(255, 255, 255, 0.4);
        box-shadow: 0px 0px 1.39vw 0px rgba(255, 255, 255, 0.4);
        transform: translateY(1.39vw);
    }

    .container,
    .menu-open-innr,
    .capabilities-card-innr {
        max-width: 87.08vw;
        width: 100%;
        padding: 0 1.04vw;
    }

    .navbar-brand-wrppr {
        max-width: 12.78vw;
        height: 12.78vw;
    }

    .navbar-brand {
        padding: 1.04vw;
    }

    .fake-navbar-wrppr {
        padding-right: 4.44vw;
        padding-left: 3.68vw;
    }

    .fake-navbar-wrppr li {
        padding: 0 1.11vw;
        margin: 0 1.11vw;
    }

    .fake-navbar-wrppr li a {
        font-size: 1.39vw;
    }

    .navbar-toggler {
        width: 3.06vw;
        height: 3.06vw;
        padding: 0.49vw;
    }

    .main-head-innr {
        padding: 0.76vw 0;
    }

    .main-head-innr::after {
        height: 1.94vw;
    }

    .main-head {
        padding: 4.1vw 0;
    }

    .bnnr-sec {
        padding-top: 12.78vw;
    }

    .bnnr-each-content h1,
    .bnnr-each-content .h1-title {
        font-size: 8.33vw;
    }

    .bnnr-each-content h1 span,
    .bnnr-each-content .h1-title span {
        font-size: 4.86vw;
    }

    .bnnr-txt-wrppr p {
        font-size: 1.39vw;
    }

    .bnnr-each-content.one {
        width: 47.92vw;
        padding-left: 5.35vw;
    }

    .hme-service-sec {
        /* padding-top: 3.68vw; */
        padding-bottom: 4.24vw;
    }

    .cmn-head-wrppr {
        margin-bottom: 5.83vw;
    }

    .cmn-head-btn {
        font-size: 2.08vw;
    }

    .cmn-head-wrppr h2 {
        font-size: 2.08vw;
        padding-top: 0.97vw;
        padding-bottom: 0.28vw;
    }

    .sec-head-main {
        margin: 0 -1.74vw 2.08vw;
    }

    .sec-head-title,
    .sec-head-txt {
        padding: 0 1.74vw;
    }

    .cmn-btn,
    .stiky-header-btn-innr .navbar-toggler {
        font-size: 1.39vw;
        min-width: 13.26vw;
        padding: 1.18vw 1.11vw 0.9vw 1.11vw;
        border: 0.07vw solid var(--blueColor);
        border-radius: 0.56vw;
    }

    .cmn-head-wrppr h2::before {
        left: calc(((100vw - 85vw) / 2) * -1);
        right: calc(((100vw - 85vw) / 2) * -1);
    }

    .cmn-head-wrppr h2::after {
        height: 1.25vw;
        left: calc(((100vw - 85vw) / 2) * -1);
        right: calc(((100vw - 85vw) / 2) * -1);
    }

    .services-wraper {
        grid-column-gap: 0.35vw;
    }

    .services-each {
        padding: 2.22vw;
        height: 38.19vw;
    }

    .services-each.one .services-each-img-wrppr {
        width: 35vw;
    }

    .services-each.two .services-each-img-wrppr {
        width: 32.43vw;
    }

    .services-each.three .services-each-img-wrppr {
        width: 6.94vw;
    }

    .services-each.four .services-each-img-wrppr {
        width: 24.1vw;
    }

    .services-each.three.active .services-each-img-wrppr {
        width: 24.31vw;
    }

    .services-each .h2-title {
        min-width: 44.44vw;
    }

    .hme-solution-sec .cmn-head-wrppr {
        margin-bottom: 10.21vw;
    }

    .hme-solution-rw {
        --bs-gutter-x: 1.94vw;
    }

    .hme-solution-card-wrppr {
        padding: 4.17vw;
        min-height: 40.35vw;
    }

    .hme-solution-card-wrppr.one .card-img {
        padding: 1.81vw 1.6vw 1.81vw 2.5vw;
    }

    .hme-solution-card-wrppr.two .card-img {
        padding: 1.81vw 0.69vw;
    }

    .hme-solution-card-content h3 {
        font-size: 2.78vw;
        padding-bottom: 5.21vw;
        margin-bottom: 5.21vw;
    }

    .hme-solution-card-content h3::after {
        height: 0.69vw;
    }

    .hme-solution-sec {
        padding-bottom: 7.64vw;
        margin-top: -1.04vw;
    }

    .hme-solution-sec::before,
    .white-bg::before {
        top: 1.39vw;
    }

    .hme-teams-sec {
        padding-bottom: 12.5vw;
    }

    .hme-teams-sec::after {
        height: calc(52% - 5.97vw);
    }

    .home-team-head-outtr {
        max-width: 77.5vw;
        margin-bottom: 9.38vw;
    }

    .home-team-head .men-img {
        max-width: 16.18vw;
        top: calc(100% + 3.13vw);
    }

    .home-team-head .line-purple {
        height: 5.35vw;
    }

    .sec-head-txt .sub-title-head {
        font-size: 2.78vw;
    }

    .hme-teams-card-rw-outtr {
        max-width: 79.17vw;
    }



    .hme-teams-card-wrppr .front-part {
        height: 100%;
        border-radius: 1.67vw;
        padding: 1.81vw 3.75vw 1.81vw 1.81vw;
    }

    .hme-teams-card-wrppr .hme-teams-card-img {
        top: 1.81vw;
        bottom: 1.81vw;
        left: 1.81vw;
        right: 1.81vw;
        border-radius: 1.11vw;
    }

    .hme-teams-card-wrppr .back-part {
        padding: 2.78vw;
        border-radius: 1.67vw;
        height: 100%;
    }

    .hme-teams-card-wrppr .back-part p {
        font-size: 2.08vw;
    }

    .hme-teams-card-wrppr h3 {
        font-size: 2.78vw;
    }

    .process-card-innr-info {
        padding: 0 3.75vw;
    }

    .process-card-innr-info h3 {
        font-size: 2.78vw;
    }

    .process-sec {
        padding-bottom: 5.9vw;
    }

    .our-partners-sec {
        padding-bottom: 3.26vw;
    }

    .our-partners-innr {
        padding: 4.65vw 0;
    }

    .our-partners-innr::after {
        height: 1.94vw;
    }

    .our-partners-main {
        margin: 0 -1.04vw;
    }

    .each-partners-logo-wrppr {
        padding: 0 1.04vw;
    }

    .testimonial-sec {
        padding-bottom: 3.47vw;
    }

    .testimonial-sec .cmn-head-wrppr {
        margin-bottom: 4.03vw;
    }

    .testimonial-outtr {
        max-width: 66.32vw;
    }

    .slider-quote-wrppr {
        padding: 2.22vw 1.6vw 1.67vw 2.15vw;
    }

    .feed-quote {
        padding: 2.22vw;
    }

    .feed-quote.one {
        border-radius: 5.56vw 0.56vw 0.56vw;
    }

    .feed-quote.two {
        padding: 1.67vw;
        border-radius: 0.56vw 0.56vw 5.56vw;
    }

    .testimonial-slider {
        padding: 5.35vw 9.03vw 5.56vw 11.81vw;
        border-radius: 2.78vw 10.42vw 2.78vw 10.42vw;
    }

    .testimonial-item p {
        font-size: 2.5vw;
    }

    .feed-cmn-arrw {
        width: 2.78vw;
        height: 2.78vw;
        padding: 0.42vw;
    }

    .feed-cmn-arrw.prev {
        margin-right: 0.56vw;
    }

    .hme-certification-sec::before {
        top: 1.39vw;
    }

    .hme-certification-main {
        margin-bottom: 3.89vw;
    }

    .hme-certify-slider .slick-list {
        margin: 0 -4.17vw;
    }

    .each-certification-label {
        width: 14.31vw;
        height: 19.44vw;
        padding: 1.39vw 1.39vw 8.54vw;
        margin: 0 1.74vw;
    }

    .each-certification-label::before,
    .each-certification-label::after {
        width: 10.14vw;
        height: 10.14vw;
    }

    .certification-box {
        height: 12.29vw;
    }

    .certification-box::before {
        top: 0.42vw;
        left: 0.49vw;
        right: 0.49vw;
        border-width: 0.07vw;
    }

    .certification-box .bttm-part {
        width: 10.14vw;
        height: 10.14vw;
    }

    .certification-box .bttm-part::before {
        left: 0.49vw;
        right: 0.49vw;
        bottom: 0.49vw;
        border-width: 0.07vw;
    }

    .certification-box .bttm-part::after {
        width: 13.33vw;
        height: 13.33vw;
    }

    .certification-info h3 {
        font-size: 2.78vw;
    }

    .blog-sec {
        padding-bottom: 1.74vw;
    }

    .blog-sec .cmn-head-wrppr {
        margin-bottom: 4.86vw;
    }

    .blog-slider .slick-list {
        margin: 0 -0.83vw;
        padding-right: 13.89vw;
    }

    .blog-each-itm {
        padding: 0 0.83vw;
    }

    .blog-each-itm-wrppr {
        padding: 1.67vw;
    }

    .blog-itm-img-wrppr .blog-itm-img {
        border-radius: 1.67vw;
    }

    .blog-itm-img-wrppr .white-arrw {
        width: 3.96vw;
        height: 3.96vw;
    }

    .blog-date-cetagories-wrppr p {
        padding: 0.83vw 1.11vw;
        min-width: 7.85vw;
        font-size: 1.39vw;
        margin-bottom: 0.07vw;
    }

    .blog-content-wrppr {
        padding-top: 2.5vw;
    }

    .blog-content-wrppr h3 {
        font-size: 1.74vw;
        margin-bottom: 4.24vw;
    }

    .blog-content-wrppr p {
        font-size: 1.74vw;
    }

    .feed-cmn-arrw.prev-blg {
        margin-right: 0.56vw;
    }

    .newsletter-sec {
        padding: 3.47vw 0;
    }

    footer.footer {
        padding-top: 5.63vw;
        padding-bottom: 7.36vw;
    }

    .fttr-rw {
        --bs-gutter-x: 7.85vw;
        --bs-gutter-y: 2.78vw;
    }

    .fttr-head {
        margin-bottom: 2.08vw;
    }

    .fttr-head p {
        font-size: 1.81vw;
    }

    .explore-fttr-col li:not(:last-child) {
        margin-bottom: 0.35vw;
    }

    .explore-fttr-col li a {
        font-size: 1.67vw;
    }

    .locate-fttr-innr>p {
        font-size: 1.67vw;
    }

    .social-fttr-col li:not(:last-child) {
        margin-right: 1.67vw;
    }

    .social-fttr-col li a {
        width: 1.94vw;
        height: 1.94vw;
        padding: 0.21vw;
        border-radius: 0.35vw;
    }

    .social-fttr-col>a {
        text-underline-offset: 0.21vw;
    }

    .bnnr-each-content.two {
        width: 28.3vw;
    }

    .bnnr-each-content.three {
        width: 37.5vw;
    }

    .bnnr-each-content.five {
        width: 97vh;
        top: 12vh;
    }

    /* CUSTOM MENU */

    .navbar-collapse::before {
        height: 6.67vw;
    }

    .menu-open-top-wrppr {
        padding: 2.29vw 0;
    }

    .menu-innr-brand {
        max-width: 15.28vw;
    }

    .navbar-collapse .navbar-toggler {
        width: 4.31vw;
        height: 4.31vw;
        padding: 1.25vw;
        border-radius: 0.56vw;
    }

    .navbar-nav-outtr {
        padding: 4.17vw 1.11vw;
        max-width: 71.04vw;
    }

    .navbar-nav>li,
    .nav-head-wrppr {
        padding: 1.11vw;
    }

    .navbar-nav>li>a,
    .nav-head-wrppr p {
        font-size: 1.39vw;
    }

    .nav-gettouch-col {
        padding: 1.11vw 0;
    }

    .nav-gettouch-col>*:not(:last-child) {
        margin-bottom: 1.67vw;
    }

    .nav-gettouch-col p {
        font-size: 2.08vw;
        max-width: 15.63vw;
    }

    .nav-gettouch-col li:not(:last-child) {
        margin-right: 1.67vw;
    }

    .nav-gettouch-col li a {
        width: 1.39vw;
        height: 1.39vw;
    }

    /* Technology Service page */

    .technology-service-bnnr .services-each.one .services-each-img-wrppr {
        width: 44.44vw;
    }

    .technology-service-bnnr .services-each.two .services-each-img-wrppr {
        width: 37.5vw;
    }

    .technology-service-bnnr .services-each.four .services-each-img-wrppr {
        width: 31.25vw;
    }

    .bnnr-content-main.technology-service-bnnr-innr {
        padding: 6.94vw 0;
    }

    .technology-service-bnnr-content {
        padding-left: 5.9vw;
    }

    .technology-service-bnnr-content h1,
    .technology-service-bnnr-content .h1-title {
        font-size: 8.33vw;
    }

    .technology-service-bnnr-content p {
        padding-left: 2.43vw;
        font-size: 1.67vw;
        max-width: 25vw;
    }

    .what-we-do-sec {
        padding-top: 3.47vw;
        padding-bottom: 6.94vw;
    }

    .what-we-do-sec .cmn-head-wrppr {
        margin-bottom: 6.94vw;
        margin-top: -1.04vw;
    }

    .card-group-rw {
        --bs-gutter-x: 1.67vw;
        --bs-gutter-y: 1.67vw;
    }

    .card-group-each {
        padding: 1.6vw;
        min-height: 42.36vw;
    }

    .card-group-each h3 {
        font-size: 4.17vw;
    }

    .card-group-each p {
        font-size: 1.94vw;
    }

    .card-group-col.half .card-group-each {
        min-height: 32.57vw;
    }

    .card-group-col.full .card-group-each p {
        padding-left: 3.96vw;
    }

    .service-capabilities-sec::before,
    .what-we-offer-sec::before {
        top: 1.39vw;
    }

    .capabilities-card-wrppr {
        padding: 4.17vw 0;
    }

    .capabilities-card-innr h3 {
        font-size: 4.17vw;
        padding-right: 3.96vw;
    }

    .capabilities-card-innr p {
        font-size: 1.94vw;
    }

    .service-team-sec {
        padding-bottom: 6.18vw;
    }

    .service-team-sec .cmn-head-wrppr {
        margin-bottom: 7.78vw;
    }

    .service-team-count-wrppr {
        border-bottom: 0.14vw solid var(--black);
        border-right: 0.14vw solid var(--black);
        padding: 3.47vw;
    }

    .hover-service-card {
        min-height: 40.28vw;
    }

    .hover-service-card .icon.one {
        bottom: -6.67vw;
        left: 8.4vw;
        min-width: 62.78vw;
        transform: translate(-1.39vw, -1.39vw);
    }

    .hover-service-card .icon.two {
        min-width: 42.22vw;
        top: -5.97vw;
        left: -16.25vw;
        transform: translate(1.39vw, 1.39vw) rotate(-105deg);
    }

    .hover-service-card .icon.three {
        min-width: 48.26vw;
        right: 11.88vw;
        transform: translate(1.39vw, 1.39vw);
    }

    .hover-service-card .icon.four {
        min-width: 49.44vw;
        right: 0.83vw;
        top: 2.36vw;
        transform: translate(-1.39vw, -1.39vw);
    }

    .hover-service-card .icon.five {
        min-width: 49.72vw;
        bottom: 13.06vw;
        left: 7.85vw;
        transform: translate(1.39vw, 1.39vw);
    }

    .service-team-count-wrppr h3 {
        font-size: 5.56vw;
        margin-bottom: 3.13vw;
    }

    .service-team-count-wrppr p {
        font-size: 1.74vw;
    }

    .capabilities-tab-sec .cmn-head-wrppr {
        margin-bottom: 6.11vw;
    }

    .capabilities-tab-sec {
        padding-bottom: 7.78vw;
    }

    .capabilities-tab-main {
        margin: 0 -0.28vw;
    }

    .capabilities-tab-list-col,
    .capabilities-tab-content-col {
        padding: 0 0.28vw;
    }

    .capabilities-tab-list-col ul li {
        font-size: 2.08vw;
        padding: 1.67vw;
        margin-bottom: 0.14vw;
    }

    .each-capabilities-tab-content li {
        border-bottom: 0.14vw solid var(--blueColor);
    }

    .each-capabilities-tab-content li a {
        font-size: 2.08vw;
        padding: 1.67vw;
    }

    .case-study-sec {
        padding-bottom: 12.15vw;
    }

    .case-study-sec .cmn-head-wrppr {
        margin-bottom: 22.57vw;
    }

    .case-studies-img-main {
        top: 1.39vw;
    }

    .case-study-slider-outtr {
        max-width: 46.18vw;
    }

    .each-case-study-item p {
        font-size: 2.08vw;
        margin-bottom: 5.14vw;
    }

    .each-case-study-item h3 {
        font-size: 3.47vw;
    }

    .case-study-slider {
        margin-bottom: 5.9vw;
    }

    .case-study-arrw-wrppr .feed-cmn-arrw:first-child {
        margin-right: 0.56vw;
    }

    .who-we-work-sec {
        padding-bottom: 5.21vw;
    }

    .who-we-work-sec .cmn-head-wrppr {
        margin-bottom: 5.56vw;
    }

    .who-we-work-main>p {
        font-size: 2.08vw;
        margin-bottom: 3.47vw;
    }

    .who-we-work-rw {
        --bs-gutter-x: 2.78vw;
        --bs-gutter-y: 2.78vw;
        margin-bottom: 5.42vw;
    }

    .who-we-work-wrppr {
        padding: 1.67vw;
        border-radius: 1.67vw;
        border-width: 0.07vw;
    }

    .who-we-work-img-wrppr {
        width: 10.07vw;
    }

    .who-we-work-info {
        padding-left: 1.39vw;
    }

    .who-we-work-wrppr h3 {
        font-size: 3.68vw;
        margin-bottom: 1.39vw;
    }

    .who-we-work-wrppr p {
        font-size: 1.74vw;
    }

    .each-explore-more-col {
        padding: 4.86vw 7.29vw;
        border-right: 0.14vw solid #f0f0f0;
    }

    .explore-more-wrppr h3 {
        font-size: 5.56vw;
    }

    .explore-more-wrppr p {
        font-size: 1.74vw;
    }

    .explore-more-wrppr>*:not(:last-child) {
        margin-bottom: 3.26vw;
    }

    /* Business support service page */

    .innr-bnnr-info {
        padding-left: 0.9vw;
    }

    .technology-service-bnnr-content .innr-bnnr-info p {
        font-size: 1.67vw;
    }

    .technology-service-bnnr-content.business-service h1 span {
        font-size: 5.9vw;
    }

    .what-we-offer-sec {
        margin-top: -1.04vw;
        padding-bottom: 9.38vw;
    }

    .service-capabilities-sec.how-it-sec .cmn-head-wrppr {
        margin-bottom: 5.83vw;
    }

    .how-it-innr p {
        font-size: 1.94vw;
    }

    .how-it-wrk-right {
        padding-top: 7.64vw;
        padding-bottom: 2.08vw;
    }

    .how-it-wrk-right p {
        font-size: 1.94vw;
    }

    .how-it-wrk-left {
        top: -0.69vw;
    }

    .how-it-wrk-shpe {
        margin-bottom: -1.04vw;
    }

    .capabilities-tab-sec.stack {
        padding-bottom: 10.76vw;
    }

    .expertise-head-main {
        margin-bottom: 4.72vw;
    }

    .expertise-head-main .cmn-head-wrppr {
        margin-bottom: 5.56vw;
    }

    .expertise-head-main>p {
        font-size: 1.94vw;
    }

    .brand-single-slider {
        max-width: 69.72vw;
        margin: 0 auto 5.42vw;
        border-radius: 2.99vw;
        padding: 3.47vw;
    }

    .brand-single-logo-wrppr {
        max-width: 20.14vw;
        padding-top: 1.67vw;
        padding-bottom: 5.21vw;
        margin: 0 auto 2.78vw;
        min-height: 23.26vw;
    }

    .brand-single-logo-wrppr img {
        max-width: 10.76vw;
    }

    .brand-single-logo-wrppr p,
    .brand-single-itm p,
    .brand-multiple-wrppr p {
        font-size: 1.74vw;
        letter-spacing: 0.04px;
    }

    .brand-multiple-itm {
        padding: 0 0.97vw;
    }

    .brand-multiple-wrppr {
        max-width: 16.32vw;
        height: 18.75vw;
        padding: 1.39vw 0.69vw 5.56vw;
    }

    .brand-multiple-wrppr p {
        margin-top: 1.74vw;
    }

    .brand-multiple-slider .slick-list {
        padding-left: 9.03vw !important;
    }

    .brand-multiple-slider .slick-track {
        margin-left: -13.19vw !important;
    }

    .expertise-sec {
        padding-bottom: 3.47vw;
    }

    .who-we-work-sec.brand-bridge-team .cmn-head-wrppr {
        margin-bottom: 4.86vw;
    }

    .who-we-work-sec.brand-bridge-team {
        padding-bottom: 5.35vw;
    }

    /* Expertise page */

    .technology-service-bnnr-content.expertise .innr-bnnr-info p {
        max-width: 30.63vw;
    }

    .card-group-col.full .card-group-each.certification-card {
        min-height: 32.64vw;
    }

    .service-capabilities-sec.specialism .cmn-head-wrppr {
        margin-bottom: 5.21vw;
    }

    .service-capabilities-sec.specialism .how-it-innr {
        margin-bottom: 1.39vw;
    }

    .capabilities-card-innr span {
        width: 6.11vw;
    }

    .sec-innr-head {
        margin-bottom: 2.99vw;
    }

    .sec-innr-head h3 {
        font-size: 4.17vw;
        margin-bottom: 1.39vw;
    }

    .sec-innr-head p {
        font-size: 2.29vw;
    }

    /* ABOUT page */

    .technology-service-bnnr-content h1 span.smll,
    .technology-service-bnnr-content .h1-title span.smll {
        font-size: 5.9vw;
        margin-top: 1.04vw;
    }

    .technology-service-bnnr-content.about-bnnr-content {
        padding-left: 9.03vw;
    }

    .about-img-txt-sec {
        margin: -1.04vw 0;
        padding-top: 2.08vw;
    }

    .about-img-txt-sec .cmn-head-wrppr {
        margin-bottom: 4.86vw;
    }

    .about-para-wrppr {
        max-width: 64.58vw;
    }

    .about-para-wrppr p,
    .about-infow-rppr p {
        font-size: 1.94vw;
    }

    .about-slider-sec {
        margin-top: -1.04vw;
        padding-bottom: 9.38vw;
    }

    .about-infow-rppr {
        max-width: 38.54vw;
    }

    .about-slider-sec .cmn-head-wrppr {
        margin-bottom: 6.94vw;
    }

    .about-slider-outtr {
        max-width: 31.67vw;
    }

    /* .about-slide-item-outtr {
        padding: 0 1.04vw;
    } */

    .about-slide-item {
        /* padding-top: 2.99vw;
        padding-bottom: 3.89vw; */
        border-radius: 0.56vw;
    }

    .about-user-wrppr {
        padding: 2.99vw 2.01vw 1.39vw;
        /* margin-bottom: 4.86vw; */
    }

    .about-user-img {
        width: 4.79vw;
        height: 4.79vw;
    }

    .abut-user-info {
        padding-left: 1.11vw;
    }

    .abut-user-info h3 {
        font-size: 2.5vw;
    }

    .abut-user-info p {
        font-size: 1.74vw;
    }

    .abut-user-info>span {
        font-size: 1.74vw;
        right: -0.83vw;
        top: 0.69vw;
    }

    /* .about-slider .slick-list {
        margin: 0 -1.04vw;
    } */

    .progressbar {
        position: absolute;
        top: 1.11vw;
        left: 0.9vw;
        right: 1.11vw;
        height: 0.42vw;
        border-radius: 0.56vw;
    }

    .progress-itm-innr {
        width: 3.82vw;
        height: 3.82vw;
    }

    .progress-itm-innr circle {
        stroke-width: 0.83vw;
    }

    .progress-itm-innr figure {
        top: 0.21vw;
        bottom: 0.21vw;
        left: 0.21vw;
        right: 0.21vw;
    }

    .progress-slide-itm.active .progress-itm-innr {
        width: 6.46vw;
        height: 6.46vw;
    }

    .progress-slide-itm.active .progress-itm-innr figure {
        top: 0.49vw;
        bottom: 0.49vw;
        left: 0.49vw;
        right: 0.49vw;
    }

    .progress-slide-itm:not(:last-child) {
        margin-bottom: 0.69vw;
    }

    .progress-arrw-main {
        padding-top: 3.33vw;
        right: -9.15vw;
    }

    .progress-arrw-wrppr>*:first-child {
        margin-right: 0.9vw;
    }

    /* Solution page */

    .solution-bnnr .bnnr-content-main.technology-service-bnnr-innr {
        padding-top: 5.21vw;
    }

    .solution-bnnr .technology-service-bnnr-content h1 {
        max-width: 70.21vw;
        margin: 0 auto 1.39vw;
    }

    .solution-bnnr .technology-service-bnnr-content h1 span {
        font-size: 5.9vw;
    }

    .solution-bnnr .technology-service-bnnr-content h1 span.gap-span {
        margin-left: 6.46vw;
    }

    .solution-bnnr .innr-bnnr-info {
        max-width: 64.03vw;
    }

    .after-bnnr {
        margin-top: -1.04vw;
        padding-top: 0 !important;
    }

    .hme-solution-card-wrppr.solution .hme-solution-card-content h3::after {
        height: 0.21vw;
    }

    .hme-solution-card-wrppr.solution .hme-solution-card-content h3 span {
        font-size: 3.93vw;
    }

    /* .hme-solution-card-wrppr.solution .card-img {
        padding: 0 !important;
    } */

    .hme-solution-card-wrppr.solution .hme-solution-card-content h3 {
        font-size: 4.17vw;
    }

    .three-card-grup-wrppr .card-group-each {
        min-height: 21.18vw;
    }

    .three-card-grup-wrppr .card-group-each:not(:last-child) {
        margin-bottom: 1.67vw;
    }

    .solution-card-group-rw-outtr .card-group-rw:not(:last-child) {
        margin-bottom: 2.08vw;
    }

    /* .what-we-do-sec.solution {
        padding-bottom: 4.17vw;
    } */

    .service-team-count-wrppr.solution h3 {
        font-size: 3.47vw;
        margin-bottom: 2.08vw;
    }

    .service-team-count-wrppr.solution p {
        font-size: 1.74vw;
    }

    .case-study-sec.solution .case-study-slider-outtr {
        max-width: 60.42vw;
    }

    .col-lg-12.who-we-work-col .who-we-work-img-wrppr {
        width: 22.22vw;
    }

    /* Case Studies page */

    .bnnr-sec.case-studies-bnnr .bnnr-content-main.technology-service-bnnr-innr {
        padding: 5.21vw 0;
    }

    .bnnr-sec.case-studies-bnnr .technology-service-bnnr-content h1 {
        margin-bottom: 4.17vw;
    }

    .bnnr-sec.case-studies-bnnr .technology-service-bnnr-content h1 span {
        font-size: 5.56vw;
    }

    .each-case-stuies {
        padding: 9.79vw 0;
    }

    .each-case-stuies-content .subtitle {
        font-size: 3.33vw;
        margin-bottom: 5.97vw;
    }

    .each-case-stuies-content h3 {
        font-size: 4.17vw;
        margin-bottom: 5.97vw;
    }

    .each-case-stuies-img-outtr.one {
        padding-bottom: 4.65vw;
    }

    .each-case-stuies-img-outtr.two {
        padding-bottom: 8.13vw;
    }

    .each-case-stuies-img-outtr.three {
        padding-bottom: 4.17vw;
    }

    .each-case-stuies-img-outtr.one>span {
        left: -8vw;
        width: 26.39vw;
    }

    .each-case-stuies-img-outtr.two>span {
        left: -8.54vw;
        width: 25.69vw;
    }

    .each-case-stuies-img-outtr.three>span {
        right: 11.11vw;
        width: 12.85vw;
    }

    .each-case-stuies-img-outtr.four>span {
        bottom: 3.96vw;
        left: -10.76vw;
        width: 14.86vw;
    }

    /* Blog page */

    .blog-sec.blog-page {
        padding-bottom: 3.47vw;
    }

    .blog-sec.blog-page::before {
        top: 1.04vw;
    }

    .blog-sec.blog-page .cmn-head-wrppr {
        margin-bottom: 4.86vw;
    }

    .blog-cetagories-sec {
        margin-top: -1.04vw;
        padding-bottom: 6.94vw;
    }

    .blog-cetagories-list-wrppr {
        margin-bottom: 7.99vw;
    }

    .blog-cetagories-list {
        margin-bottom: -1.32vw;
    }

    .each-blog-cetagories {
        margin-bottom: 1.32vw;
    }

    .each-blog-cetagories:not(:last-child) {
        margin-right: 1.32vw;
    }

    .each-blog-cetagories span {
        font-size: 1.39vw;
        padding: 0.69vw 1.11vw;
        border: 0.07vw solid var(--grayColor);
    }

    .blog-cetagories-rw {
        --bs-gutter-x: 5.56vw;
        --bs-gutter-y: 5.56vw;
    }

    .blog-load-btn-wrppr {
        padding-top: 6.94vw;
    }

    /* contact page */

    .technology-service-bnnr-content.contact {
        max-width: 77.43vw;
    }

    .technology-service-bnnr-content.contact h1 {
        /* max-width: 40.97vw; */
        margin-bottom: 2.08vw;
    }

    .technology-service-bnnr-content.contact h1 span {
        font-size: 5.56vw;
    }

    .technology-service-bnnr-content.contact p {
        font-size: 2.08vw;
    }

    .contact-info-main {
        padding: 1.39vw;
        border-radius: 0.69vw;
    }

    .contact-rw {
        --bs-gutter-x: 2.43vw;
    }

    .contact-map-wrppr {
        border: 0.14vw solid var(--blueColor);
        border-radius: 0.69vw;
    }

    .each-contact-location {
        padding: 2.08vw;
        border-radius: 0.14vw;
        border: 0.14vw solid var(--lightGrayColor) !important;
    }

    .each-contact-location:not(:last-child) {
        margin-bottom: 0.69vw;
    }

    .each-contact-location>p {
        font-size: 4.17vw;
    }

    .each-contact-location-txt p {
        margin-bottom: 1.04vw;
    }

    .contact-all-map-main {
        height: 75vw;
    }

    /* Sitecore Page */

    .partner-logo-bnnr .technology-service-bnnr-content {
        padding-left: 5.21vw;
    }

    .partner-logo-bnnr .prev-arrw-span {
        width: 1.53vw;
        margin-bottom: 1.39vw;
    }

    .partner-logo-bnnr .technology-service-bnnr-content h1 span {
        font-size: 5.9vw;
    }

    .partner-logo-bnnr .innr-bnnr-info {
        padding-top: 1.04vw;
    }

    .logo-each-wrppr {
        padding: 0.35vw 1.04vw;
        border-radius: 0.56vw;
    }

    .partner-logo-bnnr .innr-bnnr-info p {
        padding-left: 1.39vw;
    }

    .card-group-each.partner {
        min-height: 31.74vw;
    }

    .card-group-each.partner h3 span {
        font-size: 3.33vw;
    }

    .card-group-rw.partner-rw:not(:last-child) {
        margin-bottom: 4.17vw;
    }

    .what-we-do-sec.partner .cmn-head-wrppr {
        margin-bottom: 4.51vw;
    }

    .card-group-main.partner>p {
        font-size: 1.94vw;
        margin-bottom: 2.78vw;
    }

    .card-group-main.partne {
        padding-bottom: 7.99vw;
    }

    .service-capabilities-sec.partner {
        padding-bottom: 3.47vw;
    }

    .service-capabilities-sec.partner .cmn-head-wrppr {
        margin-bottom: 5.83vw;
    }

    .team-partner-head-outtr {
        margin-bottom: 4.44vw;
    }

    .team-partner-head-outtr .cmn-head-wrppr {
        margin-bottom: 5.56vw;
    }

    .service-team-sec.partner .service-team-count-wrppr {
        min-height: 40.49vw;
        padding-right: 6.25vw;
    }

    .service-capabilities-sec.partner-part .each-explore-more-col {
        min-height: 36.81vw;
    }

    /* Office Location page */

    .each-location-office-wrppr {
        padding-bottom: 9.03vw;
    }

    .each-location-office-wrppr:first-child {
        padding-top: 9.03vw;
    }

    .each-location-office-info {
        width: 25.42vw;
    }

    .each-location-office-info h3 {
        font-size: 8.33vw;
        margin-bottom: 1.74vw;
    }

    .each-location-office-info p {
        margin-bottom: 1.04vw;
    }

    .each-location-office-img-wrppr {
        margin-right: calc(((100vw - 85.08vw) / 2) * -1);
    }

    .office-loaction-sec {
        padding-bottom: 2.08vw;
    }

    .each-location-office-wrppr:nth-child(even) .each-location-office-img-wrppr {
        margin-left: calc(((100vw - 85.08vw) / 2) * -1);
    }

    .each-location-office-wrppr:nth-child(even) .each-location-office-info {
        padding-left: 2.78vw;
    }

    .each-location-office-wrppr:nth-child(even) .each-location-office-info h3 {
        margin-left: -3.47vw;
    }

    /* Timberland page */

    .bnnr-sec.land-bnnr .technology-service-bnnr-content {
        max-width: 48.61vw;
    }

    .bnnr-sec.land-bnnr .prev-arrw-span {
        margin-bottom: 0.69vw;
    }

    .bnnr-sec.land-bnnr .subtitle-land {
        font-size: 3.47vw;
        margin-bottom: 5.21vw;
    }

    .bnnr-sec.land-bnnr .technology-service-bnnr-content h1 {
        font-size: 4.17vw;
    }

    .bnnr-sec.land-bnnr .bnnr-content-main.technology-service-bnnr-innr {
        padding: 10.42vw 0;
    }

    .industry-loaction-top-part {
        max-width: 94.44vw;
        padding: 0 1.04vw;
    }

    .industry-loaction-main {
        padding: 2.22vw 3.96vw;
    }

    .each-industry-loaction-info {
        padding: 1.94vw;
        border-right: 0.07vw solid #b2bdd9;
    }

    .each-industry-loaction-info p {
        font-size: 1.74vw;
    }

    .industry-content-innr {
        padding: 11.46vw 0;
    }

    .industry-content-innr p {
        font-size: 4.17vw;
    }

    .project-sec::before {
        top: 1.04vw;
    }

    .project-sec .cmn-head-wrppr {
        margin-bottom: 10.21vw;
    }

    .project-details-wrppr {
        max-width: 36.81vw;
        padding-top: 9.38vw;
    }

    .project-details-wrppr p {
        font-size: 2.08vw;
    }

    .project-img-wrppr {
        margin-bottom: -1.04vw;
    }

    .industry-solution-sec .industry-content-innr p {
        font-size: 2.08vw;
    }

    .partner-page-screenshot-main figure:not(:last-child) {
        margin-bottom: 8.33vw;
    }

    .future-sec {
        padding-bottom: 10.42vw;
    }

    .future-sec .cmn-head-wrppr {
        margin-bottom: 8.33vw;
    }

    .future-content {
        margin-bottom: 9.72vw;
    }

    .future-content p {
        font-size: 2.08vw;
    }

    .future-summary-service-rw {
        --bs-gutter-x: 6.94vw;
    }

    .future-summary-service-wrppr h3 {
        font-size: 2.78vw;
        margin-bottom: 2.78vw;
    }

    .future-summary-service-wrppr li {
        font-size: 2.08vw;
        padding-left: 2.08vw;
    }

    .future-summary-service-wrppr li::before {
        width: 0.56vw;
        height: 0.56vw;
        top: 1.25vw;
    }

    .techonology-sec {
        padding-bottom: 9.38vw;
    }

    .techonology-sec .cmn-head-wrppr {
        margin-bottom: 8.68vw;
    }

    .technology-logo-list {
        margin: 0 -2.78vw -3.47vw;
    }

    .technology-logo-list li {
        padding: 0 2.78vw 3.47vw;
    }

    .technology-logo-wrppr span {
        width: 2.78vw;
    }

    .technology-logo-wrppr p {
        padding-left: 1.39vw;
        font-size: 1.74vw;
    }

    .partner-logo-bnnr.microsoft .innr-bnnr-info p {
        max-width: 28.47vw;
        padding-left: 2.29vw;
    }

    #parentVerticalTab .each-capabilities-tab-imf-wrppr {
        height: 11.11vw;
    }

    .bnnr-sec.adobe .logo-each-wrppr {
        width: 26.6vw;
        padding: 0.69vw 1.04vw;
    }

    .service-capabilities-sec.partner.adobe {
        padding-bottom: 11.67vw;
    }

    /* Step form */

    .header-step-btn {
        padding: 1.18vw 1.11vw 0.9vw 1.11vw !important;
        border-radius: 0.56vw !important;
    }

    .step-frm-main {
        transform: translateY(2.08vw);
    }

    .step-frm-main.show {
        transform: translateY(0vw);
    }

    .step-hdr-innr {
        padding: 2.29vw 0;
    }

    .step-close-btn {
        width: 3.06vw;
        height: 3.06vw;
        padding: 0.63vw;
        border-radius: 0.56vw;
    }

    .step-frm-content-innr {
        padding: 6.94vw 0;
    }

    .step-frm-head .subtitle-step {
        font-size: 3.47vw;
        margin-bottom: 0.69vw;
    }

    .step-frm-head h2 {
        font-size: 5.56vw;
    }

    .step-frm-head {
        margin-bottom: 4.86vw;
    }

    .step-field-wrppr {
        max-width: 69.44vw;
        margin-bottom: 2.78vw;
    }

    .step-field-wrppr input[type="text"],
    .step-field-wrppr input[type="email"],
    .step-field-wrppr textarea {
        border-bottom: 0.14vw solid rgba(0, 0, 0, 0.15);
        font-size: 2.08vw;
        padding: 0.69vw;
    }

    .step-frm-btn {
        padding: 1.11vw 1.11vw 0.76vw;
        min-width: 13.26vw;
        border: 0.07vw solid var(--blueColor) !important;
        border-radius: 0.56vw !important;
        font-size: 1.39vw !important;
    }

    .step-radiobtn-list {
        margin-bottom: 3.47vw;
    }

    .step-radiobtn-list label {
        margin-right: 1.39vw;
        margin-bottom: 1.39vw;
    }

    .step-radiobtn-list label span {
        font-size: 1.39vw;
        padding: 1.18vw 1.11vw 0.9vw;
        border: 0.07vw solid var(--blueColor);
        border-radius: 0.56vw;
    }

    .step-btn-wrppr>*:first-child {
        margin-right: 2.08vw;
    }

    [data-pin-anim] .card-group-each h3 {
        font-size: 3.06vw;
    }

    [data-pin-anim] .three-card-grup-wrppr .card-group-each {
        min-height: 17.71vw;
    }

    [data-pin-anim] .card-group-each p {
        font-size: 1.94vw;
    }

    .progress-slider {
        width: 15.63vw;
    }

    /* 21.05.2025 start */

    .process-card-innr-info p {
        font-size: 2.08vw;
    }

    .certification-info p {
        font-size: 1.39vw;
    }

    .card-group-main>p {
        font-size: 1.94vw;
    }

    .service-team-sec.solution .service-team-count-wrppr h3 {
        font-size: 3.47vw;
    }

    /* 21.05.2025 end */

    /* 03.11.25 start */

    .hme-teams-sec .cmn-head-wrppr {
        margin-top: -1.04vw;
    }

    .hme-service-sec .cmn-head-wrppr {
        margin-bottom: 3.96vw;
    }

    .newsletter-innr h2 {
        font-size: 3.13vw;
    }

    .what-we-do-sec.new-v2 {
        padding-top: 0;
    }

    .case-studie-new-ovrly,
    .about-img-txt-sec.new-v2::before,
    .new-team-sec::before,
    .new-team-sec::before {
        top: 1.39vw;
    }

    .new-tech-case-study-sec .each-case-stuies {
        padding-bottom: 7.64vw;
    }

    .new-tech-case-study-sec .cmn-head-wrppr {
        margin-bottom: 9.79vw;
    }

    .explore-more-wrppr a span {
        width: 3.06vw;
        margin-bottom: 0.42vw;
    }

    .each-explore-more-col:last-child .explore-more-wrppr a h3 {
        margin-bottom: 0;
    }

    .each-explore-more-col:last-child .explore-more-wrppr a span {
        margin: 0;
    }

    /* 04.11.25 start */

    .solution-bnnr .technology-service-bnnr-content h1 span.block-line.top-gap {
        margin-top: 1.39vw;
    }

    .each-case-stuies-img-outtr.one.new>span {
        bottom: -0.35vw;
        left: -5.21vw;
    }

    .new-meet-about-main {
        max-width: 76.88vw;
    }

    .new-abut-cntnt-innr {
        padding: 2.78vw 8.61vw;
    }

    .new-abut-cntnt-innr p {
        font-size: 1.94vw;
    }

    .new-team-card-info {
        padding: 0 1.11vw 1.11vw;
    }

    .new-team-card-info h3 {
        font-size: 2.22vw;
        -webkit-text-stroke: 0.07vw #000000;
        margin-top: -0.83vw;
    }

    .new-team-card-info p {
        font-size: 1.25vw;
        margin-top: 0.69vw;
    }

    .new-team-listing-outtr {
        padding-bottom: 1.04vw;
    }

    .new-team-rw {
        --bs-gutter-x: 0.42vw;
        --bs-gutter-y: 0.97vw;
    }

    .new-team-card-info {
        padding: 0 1.11vw 1.11vw;
    }

    .new-team-listing-outtr {
        padding-bottom: 5.56vw;
    }

    .new-team-card-wrppr:hover .new-team-card-info {
        padding-bottom: 1.11vw;
    }

    /* 04.11.25 end */

    /* 05.11.25 start */

    .capabilities-main {
        padding-top: 1.39vw;
    }

    .capabilities-main.expertise .capabilities-each:not(:last-child) {
        margin-bottom: 1.39vw;
    }

    .bnnr-sec.new-case-studies-bnnr .bnnr-content-main {
        padding: 6.94vw 0;
    }

    .bnnr-sec.new-case-studies-bnnr .technology-service-bnnr-content {
        min-height: 20.63vw;
    }

    .bnnr-sec.new-case-studies-bnnr .subtitle-land {
        margin-bottom: 1.67vw;
    }

    .bnnr-sec.new-case-studies-bnnr .technology-service-bnnr-content h1 {
        margin-bottom: 1.67vw;
    }

    .new-case-studies-banner-btm-wrap a {
        font-size: 1.67vw;
    }

    .new-case-studies-banner-btm-wrap a img {
        width: 1.53vw;
        margin-right: 0.56vw;
    }

    .project-sec.new-case-study {
        padding-bottom: 10.97vw;
    }

    /* 05.11.25 end */

    .fake-hdr-get-btn-wrppr {
        padding-left: 4.44vw;
    }

    .new_get_in_touch_btn {
        font-size: 1.39vw;
        padding: 0 !important;
    }

    .new_get_in_touch_btn.extra {
        padding: 1.18vw 1.11vw 0.9vw 1.11vw !important;
    }

    .aws-main .service-team-sec.partner .service-team-count-wrppr,
    .ai-auto-main .service-team-sec.partner .service-team-count-wrppr {
        /* min-height: 19.097vw; */
    }

    .aws-main .case-study-sec.solution .case-study-slider-outtr {
        max-width: 73.403vw
    }

    .ai-auto-main .card-group-main.partner>p {
        margin-bottom: 5.556vw;
    }

    .hme-teams-card-wrppr .front-part {
        height: auto;
    }

    .aws-main .bnnr-content-main.technology-service-bnnr-innr {
        padding: 2vw 0 13vw;
    }

    /* 22-apr-2026  */
    .ai-auto-main.ecomm-page-main .innr-bnnr-info {
        margin-left: 25.833vw;
        margin-bottom: 0;
        color: #fff;
        max-width: 30.556vw;
        margin-top: -7.083vw;
        line-height: 1;
    }

    .no-rotate .hme-teams-card-wrppr .back-part h3 {
        font-size: 2.58vw;
    }

    /* 22-apr-2026  */
}

@media (min-width: 992px) and (max-width: 1199px) {
    .bnnr-img-each img:nth-child(2) {
        left: 25vw;
    }
}

@media (max-width: 1299px) {
    .bnnr-img-each.one {
        top: 28vh;
        right: 5vh;
        width: 55vh;
    }

    .navbar-brand-wrppr {
        max-width: 124px;
        height: 124px;
    }

    .navbar-brand {
        padding: 19px;
        width: 100%;
        height: 100%;
    }

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

    .main-head {
        padding: 35px 0;
    }

    /* S.Mv Css Start 14-05-25 */
    .single-post {
        padding-top: 160px;
    }

    /* S.Mv Css End 14-05-25 */
    .aws-main .bnnr-sec.adobe .logo-each-wrppr {
        transform: translateY(-21px);
    }

    .aws-main .partner-logo-bnnr .innr-bnnr-info {
        margin-left: -180px;
        margin-bottom: -115px;
    }

    .ai-auto-main .innr-bnnr-info {
        margin-left: -380px;
    }
}

@media (max-width: 1199px) {
    body {
        font-size: 20px;
    }

    .navbar-brand-wrppr {
        max-width: 140px;
        height: 140px;
    }

    .main-head {
        padding: 36px 0;
    }

    .fake-navbar-wrppr li {
        padding: 0 10px;
        margin: 0 10px;
    }

    .fake-navbar-wrppr li a {
        font-size: 16px;
    }

    .fake-navbar-wrppr {
        padding-right: 35px;
        padding-left: 25px;
    }

    .bnnr-sec {
        padding-top: 140px;
    }

    .bnnr-each-content h1,
    .bnnr-each-content .h1-title {
        font-size: 10vh;
    }

    .bnnr-each-content h1 span,
    .bnnr-each-content .h1-title span {
        font-size: 6vh;
    }

    .bnnr-each-content.one {
        width: 60vh;
        top: 15vh;
        padding-left: 0;
    }

    .cmn-head-wrppr h2::before,
    .cmn-head-wrppr h2::after {
        left: calc(((100vw - 935px) / 2) * -1);
        right: calc(((100vw - 935px) / 2) * -1);
    }

    .cmn-head-btn,
    .cmn-head-wrppr h2 {
        font-size: 24px;
    }

    .cmn-head-wrppr {
        margin-bottom: 35px;
    }

    h2,
    .h2-title {
        font-size: 44px;
    }

    .sec-head-title,
    .sec-head-txt {
        padding: 0 15px;
    }

    .sec-head-main {
        margin: 0 -15px 30px;
    }

    .services-each {
        padding: 20px 35px;
        height: 400px;
    }

    .services-each.one .services-each-img-wrppr {
        width: 360px;
    }

    .services-each .h2-title {
        min-width: 560px;
    }

    .services-each.two .services-each-img-wrppr {
        width: 355px;
    }

    .services-each.three .services-each-img-wrppr {
        width: 80px;
    }

    .services-each.three.active .services-each-img-wrppr {
        width: 250px;
    }

    .services-each.four .services-each-img-wrppr {
        width: 300px;
    }

    .hme-service-sec {
        padding: 45px 0;
    }

    .hme-solution-sec .cmn-head-wrppr {
        margin-bottom: 65px;
    }

    .hme-solution-card-wrppr {
        padding: 30px;
        min-height: 480px;
    }

    .hme-solution-card-wrppr.one .card-img {
        padding: 15px 20px;
    }

    .hme-solution-card-content h3 {
        font-size: 34px;
        padding-bottom: 45px;
        margin-bottom: 45px;
    }

    .hme-solution-card-content h3::after {
        height: 5px;
    }

    .hme-solution-sec {
        padding-bottom: 70px;
    }

    .sec-head-txt .sub-title-head {
        font-size: 34px;
    }

    .home-team-head .men-img {
        max-width: 170px;
        top: calc(100% + 25px);
    }

    .home-team-head .line-purple {
        height: 40px;
        top: 84%;
    }

    .home-team-head-outtr {
        margin-bottom: 85px;
    }

    .hme-teams-card-wrppr {
        height: 400px;
    }

    .hme-teams-card-wrppr .front-part {
        height: 100%;
        padding: 18px 54px 18px 18px;
    }

    .hme-teams-card-wrppr .back-part {
        padding: 18px 54px 18px 18px;
    }

    .hme-teams-card-wrppr .back-part p {
        font-size: 24px;
    }

    .hme-teams-card-wrppr h3 {
        font-size: 30px;
    }

    .hme-teams-sec {
        padding-bottom: 100px;
    }

    .hme-teams-sec::before {
        height: 48%;
    }

    .process-card-innr-info {
        padding: 0 25px;
    }

    .process-card-innr-info h3 {
        font-size: 30px;
    }

    .process-sec {
        padding-bottom: 55px;
    }

    .our-partners-sec {
        padding-bottom: 45px;
    }

    .our-partners-innr {
        padding: 45px 0;
    }

    .testimonial-outtr {
        max-width: 780px;
    }

    .testimonial-item p {
        font-size: 26px;
    }

    .feed-quote {
        padding: 24px;
        max-width: 135px;
    }

    .feed-quote.one {
        border-radius: 60px 8px 8px;
    }

    .feed-quote.two {
        padding: 20px;
        border-radius: 8px 8px 60px;
        max-width: 115px;
    }

    .slider-quote-wrppr {
        padding: 25px 20px;
    }

    .testimonial-slider {
        padding: 45px 110px 50px 130px;
        border-radius: 20px 100px 20px 100px;
    }

    .testimonial-sec {
        padding-bottom: 35px;
    }

    .each-certification-label {
        width: 160px;
        height: 250px;
        padding: 20px 20px 95px;
        margin: 0 40px;
    }

    .certification-info h3 {
        font-size: 28px;
    }

    .certification-box {
        height: 145px;
    }

    .certification-box .bttm-part {
        width: 116px;
        height: 116px;
    }

    .certification-box .bttm-part::after {
        width: 140px;
        height: 140px;
    }

    .each-certification-label::before {
        transform: translate(-53%, 45%) rotate(45deg);
    }

    .each-certification-label::after {
        transform: translate(53%, 45%) rotate(45deg);
    }

    .hme-certification-main {
        margin-bottom: 25px;
    }

    .blog-sec .cmn-head-wrppr {
        margin-bottom: 40px;
    }

    .blog-each-itm-wrppr {
        padding: 15px;
    }

    .blog-date-cetagories-wrppr p {
        padding: 8px 14px;
        min-width: 100px;
        font-size: 18px;
    }

    .blog-itm-img-wrppr .white-arrw {
        width: 45px;
        height: 45px;
    }

    .blog-content-wrppr {
        padding-top: 25px;
    }

    .blog-content-wrppr h3 {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .blog-content-wrppr p {
        font-size: 20px;
    }

    .newsletter-sec {
        padding: 35px 0;
    }

    footer.footer {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .fttr-rw {
        --bs-gutter-x: 40px;
        --bs-gutter-y: 30px;
    }

    .fttr-head {
        margin-bottom: 15px;
    }

    .fttr-head p {
        font-size: 22px;
    }

    .explore-fttr-col li a {
        font-size: 20px;
    }

    .locate-fttr-innr>p {
        font-size: 20px;
        line-height: 1.8;
    }

    /* CUSTOM MENU */

    .menu-innr-brand {
        max-width: 160px;
    }

    .menu-open-top-wrppr {
        padding: 20px 0;
    }

    .navbar-collapse::before {
        height: 70px;
    }

    .navbar-collapse .navbar-toggler {
        width: 50px;
        height: 50px;
        padding: 10px;
    }

    .navbar-nav-outtr {
        padding: 40px 15px;
    }

    .navbar-nav>li {
        padding: 10px;
    }

    .navbar-nav>li>a {
        font-size: 18px;
    }

    .nav-gettouch-col p {
        font-size: 22px;
    }

    /* About page */

    .technology-service-bnnr-content h1,
    .technology-service-bnnr-content .h1-title {
        font-size: 90px;
        width: 100%;
        margin-bottom: 20px;
    }

    .technology-service-bnnr-content h1 span.smll,
    .technology-service-bnnr-content .h1-title span.smll {
        font-size: 54px;
    }

    .technology-service-bnnr-content.about-bnnr-content {
        padding-left: 60px;
    }

    .innr-bnnr-info {
        padding-left: 0;
    }

    .about-slider-outtr {
        padding-right: 110px;
    }

    .progress-arrw-main {
        padding-top: 30px;
        right: 0;
    }

    .about-slider-sec .cmn-head-wrppr {
        margin-bottom: 60px;
    }

    .about-slider-sec {
        padding-bottom: 85px;
    }

    .about-user-img {
        width: 45px;
        height: 45px;
    }

    .abut-user-info h3 {
        font-size: 24px;
    }

    .abut-user-info p {
        font-size: 20px;
        margin-bottom: 0;
    }

    .about-user-wrppr {
        padding: 35px 20px 20px;
    }

    /* .about-slide-item {
        padding-top: 40px;
        padding-bottom: 35px;
    } */
    .abut-user-info>span {
        font-size: 18px;
        right: -10px;
        top: 8px;
    }

    .about-para-wrppr p,
    .about-infow-rppr p,
    .who-we-work-wrppr p {
        font-size: 24px;
    }

    .about-img-txt-sec .cmn-head-wrppr,
    .who-we-work-sec.brand-bridge-team .cmn-head-wrppr,
    .testimonial-sec .cmn-head-wrppr {
        margin-bottom: 35px;
    }

    .who-we-work-wrppr h3 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .who-we-work-img-wrppr {
        width: 120px;
    }

    .who-we-work-sec.brand-bridge-team {
        padding-bottom: 50px;
    }

    /* Step form */

    .step-hdr-innr {
        padding: 20px 0;
    }

    .step-frm-content-innr {
        padding: 60px 0;
    }

    .step-frm-head .subtitle-step {
        font-size: 38px;
    }

    .step-frm-head h2 {
        font-size: 62px;
    }

    .step-frm-head {
        margin-bottom: 40px;
    }

    .step-field-wrppr {
        margin-bottom: 25px;
    }

    .step-field-wrppr input[type="text"],
    .step-field-wrppr input[type="email"],
    .step-field-wrppr textarea {
        font-size: 24px;
    }

    .step-radiobtn-list label {
        margin-right: 15px;
        margin-bottom: 15px;
    }

    .step-radiobtn-list {
        margin-bottom: 30px;
    }

    /* Technology Service page */

    .technology-service-bnnr-content p {
        width: 100%;
        padding-left: 0;
        font-size: 22px;
        max-width: 680px;
    }

    .what-we-do-sec {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .what-we-do-sec .cmn-head-wrppr {
        margin-bottom: 40px;
    }

    .card-group-each h3 {
        font-size: 44px;
    }

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

    .card-group-each {
        padding: 20px;
        min-height: 480px;
    }

    .card-group-col.half .card-group-each {
        min-height: 350px;
    }

    .capabilities-card-wrppr {
        padding: 40px 0;
    }

    .capabilities-card-innr h3 {
        font-size: 44px;
        padding-right: 30px;
    }

    .capabilities-card-innr p,
    .service-team-count-wrppr p {
        font-size: 24px;
    }

    .service-team-sec .cmn-head-wrppr,
    .capabilities-tab-sec .cmn-head-wrppr,
    .who-we-work-sec .cmn-head-wrppr {
        margin-bottom: 55px;
    }

    .service-team-count-wrppr h3 {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .service-team-count-wrppr {
        padding: 30px;
    }

    .hover-service-card {
        min-height: 480px;
    }

    .hover-service-card .icon.one {
        bottom: -45px;
        left: 90px;
        min-width: 560px;
    }

    .hover-service-card .icon.three {
        min-width: 460px;
        right: 110px;
    }

    .hover-service-card .icon.four {
        min-width: 480px;
    }

    .hover-service-card .icon.five {
        min-width: 495px;
        bottom: 100px;
        left: 70px;
    }

    .hover-service-card .icon.two {
        min-width: inherit;
        width: 490px;
        top: -55px;
        left: -165px;
    }

    .each-capabilities-tab-content li a,
    .capabilities-tab-list-col ul li {
        font-size: 24px;
        padding: 18px 20px 16px;
    }

    .case-study-sec {
        padding-bottom: 70px;
    }

    .case-study-sec .cmn-head-wrppr {
        margin-bottom: 80px;
    }

    .each-case-study-item p {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .each-case-study-item h3 {
        font-size: 40px;
        line-height: 1.3;
    }

    .case-study-slider {
        margin-bottom: 45px;
    }

    .who-we-work-main>p {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .who-we-work-rw {
        margin-bottom: 40px;
    }

    .explore-more-wrppr h3 {
        font-size: 50px;
    }

    .explore-more-wrppr>*:not(:last-child) {
        margin-bottom: 25px;
    }

    .explore-more-wrppr p {
        font-size: 24px;
    }

    .each-explore-more-col {
        padding: 50px 80px;
    }

    /* Business support service */

    .technology-service-bnnr-content {
        padding-left: 40px;
    }

    .technology-service-bnnr-content.business-service h1 {
        text-align: left;
    }

    .technology-service-bnnr-content.business-service h1 span {
        font-size: 68px;
    }

    .how-it-wrk-right p {
        font-size: 24px;
    }

    .how-it-wrk-right {
        padding-top: 100px;
    }

    .capabilities-tab-sec.stack {
        padding-bottom: 75px;
    }

    .expertise-head-main .cmn-head-wrppr {
        margin-bottom: 40px;
    }

    .expertise-head-main>p {
        font-size: 24px;
    }

    .expertise-head-main {
        margin-bottom: 30px;
    }

    .brand-single-logo-wrppr {
        max-width: 250px;
        padding-top: 30px;
        padding-bottom: 60px;
        margin: 0 auto 25px;
        min-height: 285px;
    }

    .brand-single-logo-wrppr img {
        max-width: 130px;
        margin: 0 auto 25px;
    }

    .brand-single-itm p {
        font-size: 24px;
    }

    .brand-single-slider {
        margin: 0 auto 40px;
    }

    .brand-multiple-slider .slick-list {
        padding-left: 70px !important;
        padding-right: 70px !important;
    }

    .how-it-innr p {
        font-size: 24px;
    }

    /* Solutions page */

    .solution-bnnr .technology-service-bnnr-content h1 span {
        font-size: 75px;
    }

    .solution-bnnr .technology-service-bnnr-content h1 span.block-line {
        margin-top: 20px;
    }

    .new-card-left-col {
        width: 45%;
    }

    .new-card-right-col {
        width: 55%;
    }

    .service-team-count-wrppr.solution h3 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .service-team-count-wrppr.solution p {
        font-size: 24px;
    }

    .service-team-sec,
    .who-we-work-sec {
        padding-bottom: 60px;
    }

    /* Expertise page */

    .technology-service-bnnr-content.expertise .innr-bnnr-info p {
        line-height: 1.3;
    }

    .card-group-col.full .card-group-each.certification-card {
        min-height: 320px;
    }

    .what-we-offer-sec {
        padding-bottom: 60px;
    }

    .capabilities-card-innr span {
        width: 60px;
    }

    .sec-innr-head h3 {
        font-size: 48px;
    }

    .sec-innr-head p {
        font-size: 24px;
    }

    /* Case studies page */

    .bnnr-sec.case-studies-bnnr .technology-service-bnnr-content h1 span {
        font-size: 60px;
    }

    .bnnr-sec.case-studies-bnnr .technology-service-bnnr-content h1 {
        margin-bottom: 35px;
    }

    .each-case-stuies {
        padding: 80px 0;
    }

    .each-case-stuies-content .subtitle {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .each-case-stuies-content h3 {
        font-size: 50px;
        margin-bottom: 35px;
    }

    .each-case-stuies-img-outtr.one>span {
        left: -90px;
        width: 230px;
    }

    .each-case-stuies-img-outtr.two {
        padding-bottom: 80px;
    }

    .each-case-stuies-img-outtr.two>span {
        left: -110px;
        width: 240px;
    }

    .each-case-stuies-img-outtr.three>span {
        right: 150px;
        width: 135px;
    }

    .each-case-stuies-img-outtr.four>span {
        bottom: 30px;
        left: -55px;
        width: 155px;
    }

    /* Blog page */

    .bnnr-sec.blog-bnnr {
        background-color: #f9f9f1;
        height: 600px;
        min-height: inherit;
    }

    .blog-cetagories-list-wrppr {
        margin-bottom: 45px;
    }

    .blog-load-btn-wrppr {
        padding-top: 60px;
    }

    /* Contact page */

    .technology-service-bnnr-content.contact h1 span {
        font-size: 70px;
    }

    /* .technology-service-bnnr-content.contact h1 {
        max-width: 520px;
    } */
    .technology-service-bnnr-content.contact p {
        font-size: 24px;
    }

    .each-contact-location>p {
        font-size: 44px;
    }

    .each-contact-location {
        padding: 20px;
    }

    .contact-all-map-main {
        height: 700px;
    }

    /* Office location page */

    .each-location-office-info h3 {
        font-size: 90px;
    }

    .each-location-office-info {
        width: 270px;
    }

    .each-location-office-img-wrppr {
        margin-right: calc(((100vw - 930px) / 2) * -1);
    }

    .each-location-office-wrppr {
        padding-bottom: 70px;
    }

    .each-location-office-wrppr:first-child {
        padding-top: 70px;
    }

    .each-location-office-wrppr:nth-child(even) .each-location-office-img-wrppr {
        margin-left: calc(((100vw - 930px) / 2) * -1);
    }

    .each-location-office-wrppr:nth-child(even) .each-location-office-info h3 {
        margin-left: -80px;
    }

    .each-location-office-wrppr:nth-child(even) .each-location-office-info {
        padding-left: 15px;
    }

    /* Timberland page */

    .industry-content-innr {
        padding: 85px 0;
    }

    .project-sec .cmn-head-wrppr {
        margin-bottom: 55px;
    }

    .partner-page-screenshot-main figure:not(:last-child) {
        margin-bottom: 80px;
    }

    .future-content p {
        font-size: 24px;
    }

    .future-summary-service-wrppr li {
        font-size: 24px;
        line-height: 1.5;
        padding-left: 25px;
    }

    .future-summary-service-wrppr li::before {
        top: 12px;
    }

    .future-content {
        margin-bottom: 80px;
    }

    .future-summary-col {
        width: 60%;
    }

    .future-service-col {
        width: 40%;
    }

    .techonology-sec {
        padding-bottom: 80px;
    }

    .techonology-sec .cmn-head-wrppr {
        margin-bottom: 80px;
    }

    .technology-logo-list li {
        padding: 0 40px 30px;
    }

    .future-sec {
        padding-bottom: 80px;
    }

    .service-team-sec.partner .service-team-count-wrppr {
        min-height: 400px;
        padding-right: 30px;
    }

    .capabilities-tab-sec {
        padding-bottom: 60px;
    }

    .bnnr-sec.adobe .logo-each-wrppr {
        width: 270px;
    }

    .brand-multiple-slider .slick-track {
        margin-left: 10px !important;
    }

    .hme-certify-slider .slick-list {
        margin: 0 -45px;
    }

    [data-pin-anim] .card-group-each h3 {
        font-size: 42px;
    }

    /* S.Mv Css Start 14-05-25 */
    .single-post-outer h1 {
        font-size: 38px;
    }

    .single-post-outer h2 {
        font-size: 35px;
    }

    .single-post-outer h3 {
        font-size: 32px;
    }

    .single-post-outer h4 {
        font-size: 30px;
    }

    /* S.Mv Css End 14-05-25 */

    /* 30/6/25 work start */
    .bnnr-each-content.one,
    .bnnr-each-content.two,
    .bnnr-each-content.three,
    .bnnr-each-content.four,
    .bnnr-each-content.five {
        width: 60vh;
        top: 15vh;
        left: 0px;
        padding-left: 0;
    }

    /* 30/6/25 work end */

    /* 04.11.25 start */

    .new-tech-case-study-sec .cmn-head-wrppr {
        margin-bottom: 80px;
    }

    .new-tech-case-study-sec .each-case-stuies {
        padding-bottom: 60px;
    }

    .new-abut-content-outtr {
        padding-bottom: 16%;
        padding-top: 26%;
    }

    .new-abut-cntnt-innr {
        padding: 14px 65px;
    }

    .new-abut-cntnt-innr p {
        font-size: 24px;
    }

    .new-team-card-info h3 {
        font-size: 30px;
        -webkit-text-stroke: 1px #000000;
    }

    .new-team-card-info p {
        margin-top: 10px;
        line-height: 1;
    }

    .new-team-listing-outtr {
        padding-bottom: 60px;
    }

    .new-team-sec .cmn-head-wrppr {
        margin-bottom: 60px;
    }

    .project-sec.new-case-study {
        padding-bottom: 100px;
    }

    .main-wrapper.new-microsoft-page .bnnr-content-main.technology-service-bnnr-innr {
        padding: 80px 0 140px;
    }

    .main-wrapper.new-microsoft-page .case-study-sec .cmn-head-wrppr {
        margin-bottom: 140px;
    }

    .main-wrapper.new-microsoft-page .case-study-sec {
        padding-bottom: 80px;
    }

    .main-wrapper.new-microsoft-page .who-we-work-sec .who-we-work-wrppr p {
        font-size: 22px;
    }

    .main-wrapper.new-microsoft-page .who-we-work-sec .who-we-work-main>p:last-child {
        font-size: 28px;
    }

    .page-id-722 .main-wrapper.new-microsoft-page .service-capabilities-sec.partner {
        padding-bottom: 80px;
    }

    .new_get_in_touch_btn {
        font-size: 16px;
    }

    .fake-hdr-get-btn-wrppr {
        padding-left: 40px;
    }

    .page-id-702 .main-wrapper.new-microsoft-page .bnnr-content-main.technology-service-bnnr-innr {
        padding: 80px 0 100px;
    }

    .aws-main .partner-logo-bnnr .innr-bnnr-info {
        width: 100%;
        margin-left: 0;
        margin-bottom: 0;
    }

    .ai-auto-main .innr-bnnr-info {
        margin-left: 0;
    }

    .hme-teams-card-wrppr .front-part {
        height: auto;
        padding: 28px 54px 28px 32px;
    }

    .aws-main .bnnr-sec.business-service-bnnr {
        min-height: 80vh;
    }

    .aws-main .bnnr-sec.adobe .logo-each-wrppr {
        transform: translateY(-6px);
        width: 190px;
        height: 82px;
    }

    .ai-auto-main.ecomm-page-main .innr-bnnr-info {
        margin-left: 292px;
        margin-top: -101px;
    }
    /* 24.4.26 */

.service-team-count-col.col_odd_12 .hover-service-card .icon.five {
    min-width: auto;
    bottom: 10px;
    left: 130px;
    max-width: 490px;
    width: 100%;
    top: -20px;
}
    /* 24.4.26 */

}

@media (max-width: 991px) {
    .navbar-toggler {
        margin-left: 0;
        width: 43px;
        height: 43px;
    }

    .main-head {
        padding: 18px 0;
    }

    .main-head-innr {
        padding: 5px 0;
    }

    .bnnr-each-content h1,
    .bnnr-each-content .h1-title {
        font-size: 90px;
    }

    .bnnr-each-content h1 span,
    .bnnr-each-content .h1-title span {
        font-size: 64px;
        display: inline-block;
    }

    .bnnr-txt-wrppr p {
        font-size: 20px;
    }

    .bnnr-each-content.one {
        width: 100%;
        top: 5vh;
        padding-left: 0;
    }

    .bnnr-each-shpe img {
        object-position: 85%;
    }

    .bnnr-each-shpe.one {
        height: 19vh;
    }

    .bnnr-img-each.one {
        top: auto;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 70%;
        transform: translateX(-50%);
    }

    .cmn-head-wrppr h2::before,
    .cmn-head-wrppr h2::after {
        left: calc(((100vw - 695px) / 2) * -1);
        right: calc(((100vw - 695px) / 2) * -1);
    }

    .sec-head-main {
        margin: 0 0 30px;
    }

    .sec-head-title,
    .sec-head-txt {
        padding: 0;
        width: 100%;
    }

    h2,
    .h2-title {
        font-size: 40px;
    }

    .sec-head-title h2 {
        margin-bottom: 15px;
    }

    .services-each .h2-title {
        min-width: 100%;
    }

    .hme-solution-rw {
        --bs-gutter-x: 0;
        --bs-gutter-y: 20px;
    }

    .hme-solution-card-content h3 {
        width: 100%;
    }

    .home-team-head-info-innr {
        margin-bottom: 210px;
    }

    .home-team-head .men-img {
        max-width: 130px;
        top: calc(100% + 15px);
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .hme-teams-card-rw-outtr {
        max-width: 480px;
    }

    .home-team-head-outtr {
        margin-bottom: 45px;
    }

    .hme-teams-card-rw {
        flex-wrap: wrap;
    }

    .hme-teams-card-wrppr {
        height: auto;
        padding: 100% 0 0 0;
    }

    .hme-teams-card-wrppr h3 {
        position: absolute;
        left: 0;
        bottom: 40px;
        padding-left: 20px;
        width: 70%;
    }

    .hme-teams-sec::before {
        height: 45%;
        clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    }

    .hme-teams-sec::after {
        height: calc(45% - 40px);
        clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    }

    .each-partners-logo-wrppr {
        padding: 0 30px 30px;
        width: 33.33%;
        text-align: center;
    }

    .our-partners-main {
        justify-content: center;
        margin: 0 -30px -30px;
    }

    .testimonial-item p {
        line-height: 1.5;
    }

    .fttr-rw>* {
        width: 50%;
    }

    .explore-fttr-col,
    .social-fttr-col {
        order: -1;
    }

    .newsletter-innr {
        flex-wrap: wrap;
    }

    .newsletter-innr h2 {
        margin-bottom: 15px;
        width: 100%;
    }

    .testimonial-item p {
        font-size: 20px;
    }

    .nav-service-col {
        width: 44%;
    }

    .nav-gettouch-col {
        width: 28%;
    }

    .process-card-innr-info {
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
    }

    .process-card-wrppr.first .process-card-innr-info {
        top: 0;
        left: auto;
        bottom: auto;
        right: 0;
    }

    .process-card-innr-info p {
        font-size: 22px;
        margin-top: 40px;
    }

    .hme-teams-card-wrppr .back-part p {
        font-size: 20px;
    }

    .navbar-brand-wrppr {
        max-width: 92px;
        height: 92px;
    }

    .navbar-brand {
        padding: 15px;
    }

    .fake-navbar-wrppr li a {
        font-size: 14px;
    }

    .fake-navbar-wrppr {
        padding-right: 10px;
        padding-left: 15px;
        margin-left: auto;
    }

    .main-head .container {
        max-width: 770px;
    }

    .fake-navbar-wrppr li {
        padding: 0px 6px;
        line-height: 0;
    }

    /* About page */

    .bnnr-sec {
        padding-top: 90px;
    }

    .technology-service-bnnr-content.about-bnnr-content {
        padding-left: 0;
    }

    .technology-service-bnnr-content .innr-bnnr-info p {
        max-width: 100%;
        font-size: 20px;
        line-height: 1.2;
    }

    .bnnr-content-main.technology-service-bnnr-innr {
        padding: 60px 0;
    }

    .bnnr-sec.business-service-bnnr {
        min-height: inherit;
    }

    .about-slider-sec .cmn-head-wrppr {
        margin-bottom: 35px;
    }

    .about-infow-rppr {
        max-width: 100%;
        margin-bottom: 25px;
    }

    .about-slider-outtr {
        padding-right: 0;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .about-slider {
        width: 100%;
        max-width: 325px;
    }

    .progress-arrw-main {
        position: static;
        height: auto;
        padding-left: 25px;
        align-items: flex-start;
    }

    .progress-slider {
        transform-origin: top;
        transform: rotate(-90deg) translateY(calc(-100% - 28px)) translateX(calc(-36%));
    }

    .about-para-wrppr p,
    .about-infow-rppr p,
    .who-we-work-wrppr p {
        font-size: 20px;
    }

    .who-we-work-rw {
        --bs-gutter-x: 0;
        --bs-gutter-y: 25px;
    }

    /* Step form */

    .step-radiobtn-list label span {
        font-size: 18px;
    }

    .step-frm-head h2 {
        font-size: 50px;
    }

    /* Technology service page */

    .technology-service-bnnr-content {
        padding-left: 0;
    }

    .bnnr-sec.technology-service-bnnr {
        height: inherit;
    }

    .card-group-each h3 {
        font-size: 30px;
    }

    .card-group-each p {
        font-size: 20px;
    }

    .card-group-col.full .card-group-each p {
        padding-left: 15px;
    }

    .card-group-each {
        padding: 15px;
        min-height: 400px;
    }

    .card-group-col.half .card-group-each {
        min-height: 300px;
    }

    .card-group-rw {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }

    .what-we-do-sec {
        padding-bottom: 40px;
    }

    .capabilities-card-innr h3 {
        font-size: 34px;
        padding-right: 20px;
    }

    .capabilities-card-innr p,
    .service-team-count-wrppr p,
    .who-we-work-main>p {
        font-size: 20px;
    }

    .capabilities-card-wrppr {
        padding: 25px 0;
    }

    .service-team-sec {
        padding-bottom: 40px;
    }

    .each-capabilities-tab-content li a,
    .capabilities-tab-list-col ul li {
        font-size: 20px;
    }

    .service-team-sec .cmn-head-wrppr,
    .capabilities-tab-sec .cmn-head-wrppr,
    .who-we-work-sec .cmn-head-wrppr,
    .service-capabilities-sec.how-it-sec .cmn-head-wrppr {
        margin-bottom: 35px;
    }

    .capabilities-tab-sec {
        padding-bottom: 55px;
    }

    .who-we-work-sec {
        padding-bottom: 50px;
    }

    .explore-more-wrppr h3 {
        font-size: 34px;
    }

    .explore-more-wrppr p {
        font-size: 20px;
    }

    /* Business support service page */

    .what-we-offer-sec {
        padding-bottom: 65px;
    }

    .how-it-innr p,
    .how-it-wrk-right p,
    .expertise-head-main>p {
        font-size: 20px;
    }

    .how-it-wrk-left {
        width: 25%;
        top: 10px;
    }

    .how-it-wrk-right {
        padding-top: 40px;
        padding-bottom: 25px;
        width: 73%;
    }

    .brand-multiple-wrppr {
        max-width: 235px;
        height: 180px;
        padding: 20px 20px 50px;
    }

    .brand-multiple-wrppr p {
        font-size: 20px;
        margin-top: 15px;
    }

    .brand-single-logo-wrppr {
        max-width: 210px;
        height: 241px;
        min-height: inherit;
        padding-top: 30px;
        padding-bottom: 75px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .brand-single-logo-wrppr img {
        max-width: 120px;
    }

    .brand-single-itm p {
        font-size: 20px;
    }

    .brand-single-itm p br {
        display: none;
    }

    .brand-single-slider {
        margin: 0 auto 25px;
        padding: 25px;
        border-radius: 25px;
    }

    /* Solutions page */

    .solution-bnnr .technology-service-bnnr-content h1 {
        font-size: 80px;
    }

    .solution-bnnr .technology-service-bnnr-content h1 span {
        font-size: 60px;
    }

    .hme-solution-card-wrppr.solution .hme-solution-card-content h3 {
        font-size: 42px;
    }

    .hme-solution-card-wrppr.solution .hme-solution-card-content h3 span {
        font-size: 38px;
    }

    .three-card-grup-wrppr .card-group-each {
        min-height: 210px;
    }

    .service-team-count-wrppr.solution h3 {
        font-size: 32px;
    }

    .service-team-count-wrppr.solution p {
        font-size: 20px;
    }

    .each-case-study-item h3 {
        font-size: 34px;
    }

    /* Expertise page */

    .technology-service-bnnr-content.expertise h1 {
        width: 100%;
    }

    .technology-service-bnnr-content.expertise .innr-bnnr-info p {
        max-width: 100%;
    }

    /* Case studies page */

    .bnnr-sec.case-studies-bnnr .technology-service-bnnr-content h1 span {
        font-size: 50px;
    }

    .each-case-stuies-content .subtitle {
        font-size: 36px;
        margin-bottom: 5px;
    }

    .each-case-stuies-content {
        margin-bottom: 35px;
    }

    .each-case-stuies-img-wrppr {
        padding-left: 60px;
    }

    .each-case-stuies-img-outtr.one>span,
    .each-case-stuies-img-outtr.two>span,
    .each-case-stuies-img-outtr.four>span {
        left: 0;
    }

    /* Blog page */

    .bnnr-sec.blog-bnnr {
        height: 500px;
    }

    .blog-cetagories-rw {
        --bs-gutter-x: 40px;
        --bs-gutter-y: 50px;
    }

    .blog-each-itm-wrppr.blog-cetagories .blog-content-wrppr h3 {
        margin-bottom: 15px;
    }

    .blog-cetagories-sec {
        padding-bottom: 60px;
    }

    /* Blog page */

    .technology-service-bnnr-content.contact h1 span {
        font-size: 60px;
    }

    .technology-service-bnnr-content.contact h1 {
        /* max-width: 450px; */
        font-size: 72px;
        margin-bottom: 20px;
    }

    .each-contact-location>p {
        font-size: 32px;
    }

    .each-contact-location.resp-tab-active p {
        color: var(--white);
    }

    .contact-all-map-main {
        height: 600px;
    }

    .each-contact-location-txt p {
        font-family: var(--josefinSans);
    }

    /* Office location page */

    .each-location-office-info h3 {
        font-size: 70px;
    }

    .each-location-office-img-wrppr {
        margin-right: calc(((100vw - 695px) / 2) * -1);
    }

    .each-location-office-wrppr:nth-child(even) .each-location-office-img-wrppr {
        margin-left: calc(((100vw - 695px) / 2) * -1);
    }

    .each-location-office-info p {
        font-size: 18px;
    }

    .each-location-office-wrppr:nth-child(even) .each-location-office-info h3 {
        margin-left: -30px;
    }

    .each-location-office-wrppr {
        padding-bottom: 50px;
    }

    .each-location-office-wrppr:first-child {
        padding-top: 50px;
    }

    /* Timberland page */

    .bnnr-sec.land-bnnr .bnnr-content-main.technology-service-bnnr-innr {
        padding: 60px 0;
    }

    .bnnr-sec.land-bnnr .subtitle-land {
        font-size: 40px;
        margin-bottom: 35px;
    }

    .each-industry-loaction-info {
        padding: 15px;
    }

    .industry-loaction-main {
        padding: 20px 25px;
    }

    .industry-content-innr p {
        font-size: 40px;
    }

    .project-details-wrppr p {
        font-size: 22px;
    }

    .project-details-wrppr {
        padding-top: 95px;
    }

    .industry-solution-sec .industry-content-innr p,
    .future-content p,
    .future-summary-service-wrppr li {
        font-size: 22px;
    }

    .technology-logo-wrppr p {
        padding-left: 15px;
        font-size: 20px;
    }

    /* detail page */

    .partner-logo-bnnr .technology-service-bnnr-content {
        padding-left: 0;
    }

    .partner-logo-bnnr .technology-service-bnnr-content h1 span {
        font-size: 70px;
    }

    .partner-logo-bnnr .innr-bnnr-info {
        padding-top: 0;
    }

    .partner-logo-bnnr .innr-bnnr-info {
        flex-direction: column;
    }

    .logo-each-wrppr {
        width: 100%;
        max-width: 300px;
    }

    .technology-service-bnnr-content .innr-bnnr-info p {
        padding-left: 0;
        padding-top: 20px;
    }

    .what-we-do-sec.partner .cmn-head-wrppr {
        margin-bottom: 35px;
    }

    .card-group-main.partner>p {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .card-group-each.partner h3 span {
        font-size: 30px;
    }

    .card-group-each.partner {
        min-height: 340px;
    }

    .card-group-rw.partner-rw:not(:last-child) {
        margin-bottom: 40px;
    }

    .service-capabilities-sec.partner .cmn-head-wrppr {
        margin-bottom: 45px;
    }

    .service-capabilities-sec.partner .capabilities-card-innr h3,
    .service-capabilities-sec.partner .capabilities-card-innr p {
        width: 50%;
    }

    .col-lg-12.who-we-work-col .who-we-work-img-wrppr {
        width: 120px;
        height: 265px;
    }

    .col-lg-12.who-we-work-col .who-we-work-info {
        justify-content: flex-start;
    }

    .service-capabilities-sec.partner-part .each-explore-more-col {
        min-height: 250px;
    }

    .partner-logo-bnnr .innr-bnnr-info {
        width: 100%;
        flex: 0 0 auto;
    }

    .bnnr-sec.adobe .logo-each-wrppr {
        width: 280px;
        left: 97%;
    }

    .hover-service-card .icon.one {
        bottom: -45px;
        left: 50px;
        min-width: 450px;
    }

    .hover-service-card .icon.three {
        min-width: 400px;
    }

    .hover-service-card .icon.four {
        min-width: 350px;
    }

    .hover-service-card .icon.five {
        min-width: 355px;
        bottom: auto;
        left: 90px;
        top: -110px;
    }

    .hover-service-card .icon.two {
        min-width: inherit;
        width: 370px;
        top: -35px;
        left: -105px;
    }

    .hover-service-card {
        min-height: 420px;
    }

    .brand-multiple-slider .slick-track {
        margin-left: 10px !important;
    }

    [data-pin-anim] .card-group-each h3 {
        font-size: 36px;
    }

    [data-pin-anim] .card-group-each p {
        font-size: 22px;
    }

    .bnnr-sec.blog-bnnr .blg-bnnr-img-wrppr {
        width: 50%;
        left: 50%;
        transform: translateX(-50%);
    }

    /* S.Mv Css Start 14-05-25 */
    .single-post {
        padding-top: 120px;
    }

    .single-post-outer h1 {
        font-size: 34px;
    }

    .single-post-outer h2 {
        font-size: 32px;
    }

    .single-post-outer h3 {
        font-size: 30px;
    }

    .single-post-outer h4 {
        font-size: 26px;
    }

    .single-post-outer h5 {
        font-size: 24px;
    }

    .single-post-outer h6 {
        font-size: 20px;
    }

    /* S.Mv Css End 14-05-25 */

    /* 30/6/25 work start */
    .bnnr-each-content.one,
    .bnnr-each-content.two,
    .bnnr-each-content.three,
    .bnnr-each-content.four,
    .bnnr-each-content.five {
        width: 100%;
        top: 0;
        padding-left: 0;
        left: 0;
    }

    .bnnr-each-shpe {
        height: 32vh !important;
    }

    .bnnr-sec {
        display: flex;
        flex-direction: column;
        height: inherit;
    }

    .bnnr-img-main {
        order: 2;
    }

    .bnnr-img-each.one,
    .bnnr-img-each.two,
    .bnnr-img-each.three,
    .bnnr-img-each.four,
    .bnnr-img-each.five {
        position: static !important;
        transform: none !important;
        transform: inherit;
        width: 85% !important;
        margin: 0 auto;
    }

    .bnnr-img-each img:not(:first-child) {
        top: auto;
    }

    .bnnr-each-content.one {
        position: static;
        margin-bottom: 35px;
    }

    .bnnr-content-main {
        padding-top: 15px;
    }

    .bnnr-img-each img {
        max-height: 500px;
        object-fit: contain;
    }

    /* 30/6/25 work end */

    /* 04.11.25 start */

    .each-case-stuies-txt-col,
    .each-case-stuies-img-col {
        width: 100%;
    }

    .each-case-stuies-img-outtr.one.new>span {
        bottom: 0;
        left: 0;
    }

    .new-tech-case-study-sec .cmn-head-wrppr {
        margin-bottom: 60px;
    }

    .solution-bnnr .technology-service-bnnr-content h1 span.block-line.top-gap {
        margin-top: 10px;
    }

    .card-group-main>p {
        font-size: 24px;
    }

    .newsletter-innr h2 {
        font-size: 40px;
    }

    .new-abut-cntnt-innr p {
        font-size: 20px;
    }

    .new-abut-cntnt-innr {
        padding: 15px 50px;
    }

    .new-case-studies-banner-btm-wrap a {
        font-size: 20px;
    }

    .new-case-studies-banner-btm-wrap a img {
        width: 15px;
        margin-right: 5px;
    }

    .bnnr-sec.new-case-studies-bnnr .technology-service-bnnr-content h1 {
        margin-bottom: 15px;
    }

    .project-sec.new-case-study {
        padding-bottom: 80px;
    }

    .each-case-stuies-content {
        max-width: 100%;
    }

    .each-case-stuies-col:first-child {
        width: 100%;
    }

    .each-case-stuies-col:last-child {
        width: 100%;
    }

    .each-case-stuies-img-wrppr {
        padding-left: 0;
    }

    .each-case-stuies.case-study-1 .each-case-stuies-img-outtr>span {
        left: 0vw;
    }

    .each-case-stuies.case-study-2 .each-case-stuies-img-outtr>span {
        left: -2vw;
    }

    .each-case-stuies.case-study-4 .each-case-stuies-img-outtr>span {
        left: -2.7vw;
    }

    .each-case-stuies.case-study-5 .each-case-stuies-img-outtr>span {
        bottom: 11vw;
        left: -3vw;
    }

    .new_get_in_touch_btn {
        font-size: 14px;
    }

    .fake-hdr-get-btn-wrppr {
        padding-left: 32px;
    }

    /* 16.4.26 */
    .three-card-grup-wrppr .card-group-each {
        min-height: auto;
    }

    .hme-solution-card-wrppr.solution {
        min-height: 190px;
    }

    .certification-info h3 {
        font-size: 22px;
    }

    .certification-info p {
        font-size: 16px;
    }

    .header-step {
        font-size: 20px !important;
    }

    /* 16.4.26 */
    .aws-main .bnnr-sec.adobe.partner-logo-bnnr .innr-wrppr {
        width: 100%;
    }

    .hme-teams-card-wrppr h3 {
        padding-left: 40px;
        bottom: 60px;
    }

    .hme-teams-sec .hme-teams-card-col .cmn-btn {
        padding: 13px 0 13px 12px;
    }

    .main-wrapper.new-microsoft-page .bnnr-content-main.technology-service-bnnr-innr {
        padding: 70px 0 100px;
    }

    .aws-main .bnnr-sec.adobe .logo-each-wrppr {
        width: 186px;
        transform: translateY(-13px);
        height: 80px;
    }

    .each-partners-logo-wrppr {
        width: auto;
    }

    .hme-teams-card-wrppr h3 {
        padding-left: 30px;
    }

    .no-rotate .hme-teams-card-wrppr h3 {
        position: static;
        padding-left: 0;
    }

    .no-rotate .hme-teams-card-wrppr .back-part h3 {

        bottom: auto;
        font-size: 30px;
    }

    .ai-auto-main.ecomm-page-main .innr-bnnr-info {
        margin-left: 220px;
    }
    /* 24.4.26 */
  .service-team-count-col.col_odd_12  .hover-service-card .icon.five { 
    max-width: 330px; 
}
    /* 24.4.26 */

}

@media (max-width: 767px) {

    /* existing hover (keep for desktop) */
    .hme-teams-card-wrppr:hover>.back-part {
        transform: perspective(600px) rotateY(0deg);
    }

    /* new mobile class */
    .hme-teams-card-wrppr.is-flipped>.back-part {
        transform: perspective(600px) rotateY(0deg);
    }

    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }

    .fake-navbar-wrppr {
        display: none;
    }

    .navbar-toggler {
        margin-left: auto;
        width: 55px;
        height: 45px;
    }

    .bnnr-each-content h1,
    .bnnr-each-content .h1-title {
        font-size: 80px;
        line-height: 0.85;
        margin-bottom: 10px;
    }

    .bnnr-each-content h1 span,
    .bnnr-each-content .h1-title span {
        font-size: 50px;
    }

    .bnnr-txt-wrppr {
        flex-direction: column;
    }

    .bnnr-txt-wrppr .h1-title {
        margin-bottom: 15px;
    }

    .bnnr-sec {
        display: flex;
        flex-direction: column;
        padding-bottom: 120px;
        height: inherit;
    }

    .bnnr-img-main {
        order: 2;
    }

    .bnnr-img-each.one,
    .bnnr-img-each.two,
    .bnnr-img-each.three,
    .bnnr-img-each.four,
    .bnnr-img-each.five {
        position: static !important;
        transform: inherit;
        width: 85% !important;
        margin: 0 auto;
    }

    .bnnr-img-each img {
        max-height: 400px;
        object-fit: contain;
    }

    .bnnr-shpe-main {
        z-index: 1;
        pointer-events: none;
    }

    .bnnr-each-content.one {
        position: static;
        margin-bottom: 35px;
    }

    /* .bnnr-content-main {
        padding-top: 60px;
    } */

    .bnnr-each-shpe.one {
        height: 32vh;
    }

    .bnnr-txt-wrppr p {
        font-size: 18px;
    }

    .cmn-head-wrppr h2::before,
    .cmn-head-wrppr h2::after {
        left: calc(((100vw - 510px) / 2) * -1);
        right: calc(((100vw - 510px) / 2) * -1);
    }

    .cmn-head-wrppr h2 {
        padding-top: 30px;
    }

    .services-each {
        height: 300px;
    }

    h2,
    .h2-title {
        font-size: 32px;
    }

    .hme-solution-card-wrppr {
        min-height: 556px;
    }

    .home-team-head .line-purple {
        top: 68%;
    }

    .feed-quote {
        padding: 14px;
        max-width: 95px;
    }

    .feed-quote.one {
        border-radius: 40px 8px 8px;
    }

    .feed-quote.two {
        padding: 15px;
        border-radius: 8px 8px 40px;
        max-width: 85px;
    }

    .testimonial-slider {
        padding: 30px 70px 30px 90px;
        border-radius: 20px 70px 20px 70px;
    }

    .hme-certification-main {
        flex-wrap: wrap !important;
        width: 100%;
        overflow: hidden;
    }

    .each-certification-label {
        width: 190px;
        height: 280px;
        padding: 20px 20px 100px;
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .certification-box {
        height: 62%;
    }

    .certification-box .bttm-part {
        width: 70%;
        height: 76%;
    }

    .certification-box .bttm-part::after {
        width: 115%;
        height: 115%;
    }

    .hme-certification-sec .cmn-head-wrppr {
        margin-bottom: 40px;
    }

    .blog-slider .slick-list {
        padding-right: 100px;
    }

    .services-each.one .services-each-img-wrppr {
        width: 260px;
    }

    .services-each.two .services-each-img-wrppr {
        width: 255px;
    }

    .services-each.two.active .services-each-img-wrppr {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .services-each.three.active .services-each-img-wrppr {
        width: 180px;
    }

    .services-each.four .services-each-img-wrppr {
        width: 220px;
    }

    .menu-innr-brand {
        max-width: 120px;
    }

    .navbar-collapse .navbar-toggler {
        width: 40px;
        height: 40px;
    }

    .navbar-nav-outtr {
        padding: 30px 0;
    }

    .all-navlist-col {
        width: 50%;
    }

    .nav-service-col {
        width: 50%;
    }

    .nav-gettouch-col {
        width: 100%;
        text-align: center;
        padding-top: 25px;
        padding-bottom: 0;
    }

    .nav-gettouch-col p {
        max-width: 100%;
    }

    .nav-gettouch-col>*:not(:last-child) {
        margin-bottom: 15px;
    }

    .nav-gettouch-col ul {
        justify-content: center;
    }

    .navbar-nav>li>a,
    .nav-head-wrppr p {
        font-size: 16px;
    }

    .nav-gettouch-col p {
        font-size: 18px;
    }

    /* About page */

    .technology-service-bnnr-content h1,
    .technology-service-bnnr-content .h1-title {
        font-size: 75px;
    }

    .technology-service-bnnr-content h1 span.smll,
    .technology-service-bnnr-content .h1-title span.smll {
        font-size: 48px;
    }

    .bnnr-sec.business-service-bnnr {
        padding-bottom: 10px;
    }

    .about-img-txt-sec figure {
        height: 570px;
    }

    .about-img-txt-sec figure img {
        height: 100%;
        object-fit: cover;
    }

    .about-slider-sec {
        padding-bottom: 60px;
    }

    /* .header-step-btn {
        margin: 0 auto;
    } */

    /* Technology Service page */

    .bnnr-sec.technology-service-bnnr {
        padding-bottom: 0;
    }

    .technology-service-bnnr-content p {
        font-size: 20px;
        line-height: 1.3;
    }

    .what-we-do-sec .cmn-head-wrppr {
        margin-bottom: 25px;
    }

    .card-group-col {
        width: 50%;
    }

    .card-group-rw {
        justify-content: center;
    }

    .card-group-each h3 {
        font-size: 26px;
    }

    .card-group-each,
    .card-group-col.half .card-group-each {
        min-height: 300px;
    }

    .capabilities-card-innr h3 {
        font-size: 26px;
    }

    .technology-service-bnnr-content p,
    .capabilities-card-innr p,
    .service-team-count-wrppr p,
    .who-we-work-main>p,
    .card-group-each p,
    .explore-more-wrppr p {
        font-size: 18px;
    }

    .service-team-count-wrppr h3 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .each-capabilities-tab-content li a,
    .capabilities-tab-list-col ul li {
        font-size: 18px;
        padding: 15px 15px 11px;
    }

    .capabilities-tab-sec {
        padding-bottom: 40px;
    }

    .case-study-sec .cmn-head-wrppr {
        margin-bottom: 50px;
    }

    .each-case-study-item p {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .each-case-study-item h3 {
        font-size: 28px;
    }

    .case-study-slider {
        margin-bottom: 30px;
    }

    .case-study-sec {
        padding-bottom: 50px;
    }

    .who-we-work-main>p {
        margin-bottom: 20px;
    }

    .who-we-work-sec {
        padding-bottom: 30px;
    }

    .explore-more-wrppr h3 {
        font-size: 30px;
    }

    .each-explore-more-col {
        padding: 40px 25px;
    }

    /* Business support service page */

    .technology-service-bnnr-content.business-service h1 span {
        font-size: 55px;
    }

    .card-group-col.full .card-group-each {
        flex-direction: column;
        align-items: flex-start;
        min-height: 300px;
    }

    .card-group-col.full .card-group-each p {
        flex: 0 0 auto;
        padding-left: 0;
        margin-top: auto;
    }

    .card-group-col.full {
        width: 50%;
    }

    .card-group-col.full .card-group-each h3 {
        width: 100%;
    }

    .how-it-innr p,
    .how-it-wrk-right p,
    .expertise-head-main>p {
        font-size: 18px;
    }

    .how-it-wrk-right {
        padding-top: 15px;
        padding-bottom: 15px;
        width: 100%;
    }

    .how-it-wrk-innr {
        flex-direction: column-reverse;
        display: flex;
    }

    .how-it-wrk-left {
        width: 35%;
        margin: 0 auto -18%;
        position: static;
    }

    .capabilities-tab-sec.stack {
        padding-bottom: 50px;
    }

    /* Solutions page */

    .solution-bnnr .technology-service-bnnr-content h1 {
        font-size: 60px;
    }

    .solution-bnnr .technology-service-bnnr-content h1 span {
        font-size: 46px;
    }

    .new-card-left-col,
    .new-card-right-col {
        width: 100%;
    }

    .hme-solution-card-wrppr {
        min-height: 435px;
        padding: 25px;
    }

    /* .hme-solution-card-wrppr.solution .card-img {
        padding: 20px 0 !important;
    } */

    .card-group-each h3 br {
        display: none;
    }

    .hme-solution-card-wrppr.solution .hme-solution-card-content h3 {
        font-size: 34px;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .service-team-count-wrppr.solution h3 {
        font-size: 26px;
    }

    .service-team-count-wrppr.solution p {
        font-size: 16px;
    }

    .col-lg-12.who-we-work-col .who-we-work-img-wrppr {
        width: 120px;
    }

    .each-case-study-item h3 {
        font-size: 24px;
    }

    /* Expertise page */

    .sec-innr-head h3 {
        font-size: 40px;
    }

    .sec-innr-head p {
        font-size: 20px;
    }

    .card-group-col.full .card-group-each.certification-card {
        min-height: 300px;
    }

    /* Case studies page */

    .each-case-stuies-content h3 {
        font-size: 44px;
    }

    .each-case-stuies-content h3 br {
        display: none;
    }

    .each-case-stuies-img-outtr.one,
    .each-case-stuies-img-outtr.three,
    .each-case-stuies-img-outtr.two {
        padding-bottom: 0;
    }

    .each-case-stuies-img-wrppr {
        padding-left: 0;
    }

    .each-case-stuies-img-outtr.one>span,
    .each-case-stuies-img-outtr.two>span {
        left: auto;
        right: 20px;
        bottom: auto;
        top: -80px;
        width: 180px;
    }

    .each-case-stuies-img-outtr.three>span {
        right: 50px;
        width: 110px;
        bottom: auto;
        top: -70px;
    }

    .each-case-stuies-img-outtr.four>span {
        left: auto;
        right: 20px;
        bottom: auto;
        top: -80px;
        width: 140px;
    }

    /* Blog page */

    .bnnr-sec.blog-bnnr .technology-service-bnnr-content h1 {
        align-items: flex-start;
        flex-direction: column;
    }

    .bnnr-sec.blog-bnnr .technology-service-bnnr-content h1 span:not(:last-child) {
        margin-bottom: 15px;
    }

    .bnnr-sec.blog-bnnr {
        height: 450px;
    }

    .each-blog-cetagories {
        margin-bottom: 10px;
    }

    .each-blog-cetagories:not(:last-child) {
        margin-right: 10px;
    }

    .blog-cetagories-list-wrppr {
        margin-bottom: 35px;
    }

    .blog-content-wrppr {
        padding-top: 15px;
    }

    .blog-each-itm-wrppr.blog-cetagories .blog-content-wrppr h3 {
        line-height: 1.55;
    }

    .blog-cetagories-rw {
        --bs-gutter-x: 0;
        --bs-gutter-y: 40px;
    }

    .blog-load-btn-wrppr {
        padding-top: 40px;
    }

    /* contact page */

    .contact-info-col {
        display: none;
    }

    .contact-map-col {
        width: 100%;
    }

    .contact-all-map-main {
        height: inherit;
    }

    .contact-map-wrppr {
        height: 300px;
        position: relative;
        display: none;
        transform: translateY(0);
        transition: none;
        margin-bottom: 25px;
    }

    .contact-all-map-main h2.resp-accordion {
        display: block;
        background: transparent !important;
        border-radius: 6px;
        border: 2px solid var(--lightGrayColor) !important;
        padding: 15px;
    }

    .contact-all-map-main h2.resp-accordion>p {
        font-size: 30px;
        text-transform: uppercase;
        margin-bottom: 0;
        transition: 0.3s all;
    }

    .contact-all-map-main h2.resp-accordion.resp-tab-active>p {
        color: var(--white) !important;
    }

    .contact-all-map-main h2.resp-accordion.resp-tab-active {
        background: var(--blueColor) !important;
        border-color: var(--blueColor) !important;
    }

    .contact-all-map-main h2.resp-accordion.resp-tab-active .each-contact-location-txt {
        display: block;
        font-family: var(--josefinSans);
        font-size: 16px;
        padding-top: 35px;
        color: var(--white);
    }

    /* Office location page */

    .each-location-office-wrppr {
        padding-bottom: 40px;
    }

    .each-location-office-wrppr:first-child {
        padding-top: 40px;
    }

    .each-location-office-info {
        width: 100%;
    }

    .each-location-office-col {
        flex: 0 0 auto;
        width: 100%;
        padding-top: 25px;
    }

    .each-location-office-img-wrppr {
        margin-right: 0;
        width: 100%;
    }

    .each-location-office-wrppr:nth-child(even) .each-location-office-info h3 {
        margin-left: 0;
    }

    .each-location-office-wrppr:nth-child(even) .each-location-office-img-wrppr {
        margin-left: 0;
    }

    .each-location-office-wrppr:nth-child(even) .each-location-office-info {
        padding-left: 0;
    }

    .each-location-office-info h3 {
        font-size: 60px;
    }

    /* Timberland page */

    .bnnr-sec.land-bnnr .technology-service-bnnr-content h1 {
        font-size: 46px;
    }

    .bnnr-sec.land-bnnr {
        padding-bottom: 0;
    }

    .each-industry-loaction-info p {
        font-size: 20px;
    }

    .industry-content-innr {
        padding: 60px 0;
    }

    .industry-content-innr p {
        font-size: 32px;
    }

    .project-sec {
        margin-top: -15px;
    }

    .project-txt-col,
    .project-img-col {
        width: 100%;
    }

    .project-details-wrppr {
        padding-top: 0;
        margin-bottom: 25px;
    }

    .project-details-wrppr p {
        font-size: 20px;
    }

    .project-img-wrppr {
        margin: 0 auto -15px;
        max-width: 250px;
    }

    .industry-solution-sec .cmn-head-wrppr {
        margin-bottom: 0;
    }

    .partner-page-screenshot-main figure:not(:last-child) {
        margin-bottom: 60px;
    }

    .future-sec .cmn-head-wrppr {
        margin-bottom: 60px;
    }

    .future-content {
        margin-bottom: 40px;
    }

    .future-summary-service-rw {
        --bs-gutter-x: 0;
        --bs-gutter-y: 30px;
    }

    .future-summary-col,
    .future-service-col {
        width: 100%;
    }

    .future-summary-service-wrppr h3 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .future-sec {
        padding-bottom: 60px;
    }

    .techonology-sec .cmn-head-wrppr {
        margin-bottom: 60px;
    }

    /* detail page */

    .partner-logo-bnnr .technology-service-bnnr-content h1 {
        font-size: 64px;
        margin-bottom: 5px;
    }

    .partner-logo-bnnr .technology-service-bnnr-content h1 span {
        font-size: 50px;
    }

    .logo-each-wrppr {
        max-width: 220px;
    }

    .card-group-col.full .card-group-each.partner {
        min-height: 340px;
    }

    .card-group-rw.partner-rw:not(:last-child) {
        margin-bottom: 20px;
    }

    .card-group-main.partner>p {
        font-size: 20px;
    }

    .service-team-sec.partner .service-team-count-wrppr {
        min-height: 350px;
        padding-right: 20px;
    }

    .bnnr-sec.adobe .logo-each-wrppr {
        width: 180px;
        left: 94%;
    }

    .hover-service-card .icon.one {
        bottom: -35px;
        left: 70px;
        min-width: 360px;
    }

    .hover-service-card .icon.three {
        min-width: 300px;
    }

    .hover-service-card .icon.four {
        min-width: 300px;
    }

    .hover-service-card .icon.five {
        min-width: 285px;
        bottom: auto;
        left: 30px;
        top: -50px;
    }

    .hover-service-card .icon.two {
        width: 270px;
        top: -15px;
        left: -85px;
    }

    .brand-multiple-slider .slick-track {
        margin-left: -90px !important;
    }

    [data-pin-anim] .card-group-rw {
        position: static;
    }

    .hme-solution-card-wrppr.solution {
        overflow: hidden;
        height: auto;
        min-height: 250px;
        margin-bottom: 25px;
    }

    [data-pin-anim] .three-card-grup-wrppr .card-group-each {
        min-height: inherit;
    }

    .what-we-do-sec.solution {
        padding-bottom: 40px;
    }

    .bnnr-sec.blog-bnnr .blg-bnnr-img-wrppr {
        width: 65%;
        left: auto;
        right: 0;
        transform: translateX(0);
    }

    /* S.Mv Css Start 14-05-25 */

    .single-post-outer h1 {
        font-size: 30px;
    }

    .single-post-outer h2 {
        font-size: 28px;
    }

    .single-post-outer h3 {
        font-size: 26px;
    }

    .single-post-outer h4 {
        font-size: 24px;
    }

    .single-post-outer h5 {
        font-size: 22px;
    }

    /* S.Mv Css End 14-05-25 */

    /* 04.11.25 start */

    .each-case-stuies-img-outtr.one.new>span {
        bottom: auto;
        left: auto;
    }

    .explore-more-wrppr a span {
        width: 20px;
    }

    .service-team-sec.solution .service-team-count-wrppr h3 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .card-group-main>p {
        font-size: 20px;
    }

    .what-we-do-sec.solution.new-v2 [data-pin-anim] .card-group-rw {
        width: auto;
    }

    .newsletter-innr h2 {
        font-size: 34px;
    }

    .project-sec.new-case-study {
        padding-bottom: 60px;
    }

    .project-sec.new-case-study .project-txt-col,
    .project-sec.new-case-study .project-img-col {
        width: 100%;
    }

    .project-sec.new-case-study .project-img-wrppr {
        max-width: 100%;
    }

    .main-wrapper.new-microsoft-page .who-we-work-sec .who-we-work-main>p:last-child {
        font-size: 22px;
    }

    .main-wrapper.new-microsoft-page .bnnr-content-main.technology-service-bnnr-innr {
        padding: 70px 0 100px;
    }

    .main-wrapper.new-microsoft-page .case-study-sec .cmn-head-wrppr {
        margin-bottom: 60px;
    }

    .main-wrapper.new-microsoft-page .case-study-sec {
        padding-bottom: 60px;
    }

    .each-case-stuies-img-outtr.one>span,
    .each-case-stuies-img-outtr.two>span {
        top: -37px;
        width: 160px;
    }

    #case-studies-categories {
        font-size: 16px;
    }

    .technology-service-bnnr-content.contact h1 {
        font-size: 54px;
    }

    .technology-service-bnnr-content.contact p {
        font-size: 20px;
    }

    .partner-logo-bnnr.microsoft .innr-bnnr-info p {
        padding-left: 0;
        padding-top: 0;
    }

    .technology-service-bnnr-content .innr-bnnr-info p {
        padding-top: 0;
    }

    .page-id-702 .main-wrapper.new-microsoft-page .bnnr-content-main.technology-service-bnnr-innr {
        padding: 70px 0 80px;
    }

    /* 15.4.26 */
    .slide-newww .card-group-rw {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
    }

    /* 15.4.26 */
    /* 16.4.26 */
    .hme-solution-card-wrppr.solution {
        min-height: 190px;
    }

    /* 16.4.26 */
    .aws-main .bnnr-sec.adobe .logo-each-wrppr {
        width: 160px;
        transform: translateY(-13px);
    }

    .aws-main .service-team-sec.partner .service-team-count-wrppr,
    .ai-auto-main .service-team-sec.partner .service-team-count-wrppr {
        /* min-height: 170px; */
    }

    .aws-main .bnnr-sec.adobe .logo-each-wrppr {
        width: 150px;
        transform: translateY(-13px);
        height: 64px;
    }

    .ai-auto-main.ecomm-page-main .innr-bnnr-info {
        margin-left: 160px;
        margin-top: -71px;
        max-width: 350px;
        font-size: 17px;
    }
}

@media (max-width: 575px) {
    .hme-teams-card-rw-outtr {
        max-width: 380px;
    }

    .fttr-rw {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 30px;
    }

    .testimonial-slider {
        padding: 70px 30px 60px 30px;
    }

    .cmn-head-wrppr h2::before,
    .cmn-head-wrppr h2::after {
        left: -15px;
        right: -15px;
    }

    .cmn-head-wrppr h2 {
        padding-top: 25px;
        padding-bottom: 6px;
    }

    .bnnr-each-content h1,
    .bnnr-each-content .h1-title {
        font-size: 70px;
        line-height: 0.75;
    }

    .bnnr-each-content h1 span,
    .bnnr-each-content .h1-title span {
        font-size: 40px;
    }

    .how-it-wrk-shpe {
        margin-bottom: -25px;
    }

    .solution-bnnr .technology-service-bnnr-content h1 {
        font-size: 55px;
    }

    .solution-bnnr .technology-service-bnnr-content h1 span {
        font-size: 40px;
    }

    .solution-bnnr .technology-service-bnnr-content h1 span.gap-span {
        margin-left: 40px;
    }

    .each-location-office-img-wrppr {
        margin-right: -12px;
        margin-left: -12px;
        width: auto;
    }

    .each-location-office-col {
        padding-top: 15px;
    }

    .each-location-office-info h3 {
        font-size: 46px;
    }

    .partner-logo-bnnr .technology-service-bnnr-content h1 {
        font-size: 60px;
    }

    .bnnr-sec.adobe .logo-each-wrppr {
        width: 160px;
        left: 100%;
    }

    /* S.Mv Css Start 14-05-25 */

    .single-post-outer h1 {
        font-size: 28px;
    }

    .single-post-outer h2 {
        font-size: 26px;
    }

    .single-post-outer h3 {
        font-size: 24px;
    }

    .single-post-outer h4 {
        font-size: 22px;
    }

    .single-post-outer h5 {
        font-size: 20px;
    }

    .single-post-outer h5 {
        font-size: 18px;
    }

    .single-post-outer {
        padding-bottom: 60px;
    }

    /* S.Mv Css End 14-05-25 */

    /* 1/7/25 work start */
    .bnnr-img-each img {
        max-height: 350px;
        object-fit: contain;
    }

    .bnnr-img-each img.bnnr-img-five {
        max-height: 250px;
    }

    .bnnr-each-content .bnnr-txt-wrppr p {
        padding: 0px !important;
        max-width: 100%;
    }

    .bnnr-each-content .bnnr-txt-wrppr {
        max-width: 100% !important;
    }

    .bnnr-each-content h1,
    .bnnr-each-content .h1-title {
        font-size: 45px;
    }

    .bnnr-each-content .h1-title {
        width: 100% !important;
    }

    .bnnr-each-content.two p {
        font-size: 16px;
    }

    img.bnnr-img-four {
        margin-top: 50px;
    }

    .bnnr-each-content.three .bnnr-txt-wrppr .h1-title {
        font-size: 30px;
    }

    .bnnr-img-each.one {
        margin-top: 50px;
    }

    img.bnnr-line-two {
        opacity: 0 !important;
    }

    img.bnnr-line-three {
        opacity: 0 !important;
    }

    img.bnnr-line-one {
        opacity: 1 !important;
    }

    .business-service-bnnr.new-v2 .technology-service-bnnr-content .innr-bnnr-info p {
        padding-top: 0;
    }

    .card-group-main>p {
        font-size: 16px;
    }

    /* 1/7/25 work end */
    .main-wrapper.new-microsoft-page .who-we-work-sec .who-we-work-main>p:last-child {
        font-size: 18px;
    }

    .main-wrapper.new-microsoft-page .bnnr-content-main.technology-service-bnnr-innr {
        padding: 60px 0;
    }

    .main-wrapper.new-microsoft-page .who-we-work-sec .who-we-work-wrppr p {
        font-size: 18px;
    }

    .page-id-702 .main-wrapper.new-microsoft-page .bnnr-content-main.technology-service-bnnr-innr {
        padding: 60px 0;
    }

    .contact-page-footer .social-fttr-col {
        align-items: flex-start;
    }

    /* 14.4.26 */
    .brand-multiple-slider .slick-list {
        padding-left: 45px !important;
        padding-right: 45px !important;
    }

    .brand-multiple-wrppr {
        padding: 20px 38px 80px;
        max-width: 175px;
        height: 200px;
    }

    /* 14.4.26 */
    /* 16.4.26 */
    .hme-solution-card-wrppr.solution {
        min-height: 190px;
    }

    /* 16.4.26 */
    .aws-main .service-team-sec.partner .service-team-count-wrppr,
    .ai-auto-main .service-team-sec.partner .service-team-count-wrppr {
        /* min-height: 140px; */
    }

    .aws-main .bnnr-sec.business-service-bnnr {
        min-height: 74vh;
    }

    .aws-main .bnnr-sec.adobe .logo-each-wrppr {
        width: 140px;
        transform: translateY(-8px);
        height: 59px;
    }

    .front-part.home-flip-card-front .cmn-btn span img {
        width: 24px;
    }

    .ai-auto-main.ecomm-page-main .innr-bnnr-info {
        margin-left: 140px;
        margin-top: -65px;
        max-width: 310px;
    }
    /* 24.4.26 */
    .service-team-count-col.col_odd_12 .hover-service-card .icon.five {
    left: 30px; 
}
    /* 24.4.26 */
}

@media (max-width: 479px) {
    .navbar-brand-wrppr {
        max-width: 92px;
        height: 92px;
    }

    .navbar-brand {
        padding: 20px;
    }

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

    .navbar-toggler {
        width: 43px;
        height: 43px;
    }

    .main-head {
        padding: 13px 0;
    }

    .bnnr-each-content h1,
    .bnnr-each-content .h1-title {
        line-height: 0.65;
    }

    .bnnr-each-content h1 span,
    .bnnr-each-content .h1-title span {
        font-size: 30px;
    }

    .bnnr-txt-wrppr p {
        font-size: 14px;
        max-width: 345px;
    }

    .bnnr-txt-wrppr .h1-title {
        margin-bottom: 20px;
    }

    .bnnr-img-each.one {
        width: 85% !important;
    }

    .bnnr-sec {
        padding-top: 95px;
        padding-bottom: 90px;
    }

    .bnnr-each-shpe.one {
        height: 33vh !important;
    }

    .hme-service-sec {
        padding: 28px 0;
    }

    .cmn-head-btn,
    .cmn-head-wrppr h2 {
        font-size: 20px;
    }

    .cmn-head-wrppr {
        margin-bottom: 28px;
    }

    h2,
    .h2-title {
        font-size: 30px;
    }

    body {
        font-size: 16px;
        line-height: 1.2;
    }

    .sec-head-title h2 {
        line-height: 1.2;
    }

    .cmn-btn,
    .stiky-header-btn-innr .navbar-toggler {
        font-size: 14px;
        min-width: 135px;
    }

    .sec-head-main {
        margin-bottom: 28px;
    }

    .services-each {
        height: 161px;
        padding: 10px 15px;
    }

    .services-each .h2-title {
        font-size: 20px;
    }

    .services-each.one .services-each-img-wrppr,
    .services-each.two .services-each-img-wrppr {
        width: 140px;
    }

    .services-each.three .services-each-img-wrppr {
        width: 90px;
        left: 10px;
    }

    .services-each.three.active .services-each-img-wrppr {
        width: 90px;
        left: auto;
        right: 0;
    }

    .services-each.four .services-each-img-wrppr {
        width: 130px;
    }

    .cmn-head-wrppr h2 {
        font-weight: 700;
    }

    .hme-solution-sec .cmn-head-wrppr {
        margin-bottom: 28px;
    }

    .hme-solution-card-wrppr {
        padding: 60px;
    }

    .hme-solution-card-content h3 {
        font-size: 30px;
        padding-bottom: 75px;
        margin-bottom: 75px;
    }

    .hme-solution-sec {
        padding-bottom: 28px;
    }

    .hme-teams-sec .sec-head-title h2 {
        margin-bottom: 0;
    }

    .home-team-head .men-img {
        max-width: 100px;
        left: 60%;
        top: 100%;
    }

    .home-team-head .line-purple {
        height: 30px;
    }

    .home-team-head-info-innr {
        margin-bottom: 150px;
    }

    .sec-head-txt .sub-title-head {
        font-size: 20px;
        margin-bottom: 7px;
    }

    .home-team-head-outtr {
        margin-bottom: 55px;
    }

    .hme-teams-card-rw-outtr {
        max-width: 240px;
    }

    .hme-teams-card-wrppr {
        padding: 120% 0 0 0;
    }

    .hme-teams-card-wrppr h3 {
        font-size: 20px;
        bottom: 25px;
    }

    .hme-teams-sec::before {
        height: 40%;
        clip-path: polygon(0 13%, 100% 0, 100% 100%, 0% 100%);
    }

    .hme-teams-sec::after {
        height: calc(40% - 30px);
        clip-path: polygon(0 14%, 100% 0, 100% 100%, 0% 100%);
    }

    .hme-teams-sec {
        padding-bottom: 40px;
    }

    .hme-teams-sec {
        padding-bottom: 40px;
    }

    .process-card-wrppr img {
        width: 100%;
        height: 100%;
        padding: 25px;
        object-fit: contain;
    }

    .process-card-innr-info {
        padding: 0px 10px;
    }

    .process-card-innr-info h3 {
        font-size: 20px;
    }

    .process-sec {
        padding-bottom: 40px;
    }

    .each-partners-logo-wrppr {
        width: 50%;
    }

    .testimonial-sec .cmn-head-wrppr {
        margin-bottom: 41px;
    }

    .feed-quote {
        padding: 12px;
        max-width: 70px;
    }

    .feed-quote.one {
        border-radius: 20px 8px 8px;
    }

    .feed-quote.two {
        padding: 9px;
        border-radius: 8px 8px 20px;
        max-width: 53px;
    }

    .testimonial-slider {
        padding: 30px 50px 35px 60px;
    }

    .testimonial-item p {
        font-size: 18px;
        line-height: 1.2;
    }

    .testimonial-sec {
        padding-bottom: 15px;
    }

    .hme-certification-sec .cmn-head-wrppr {
        margin-bottom: 90px;
    }

    .each-certification-label {
        width: 206px;
    }

    .each-certification-label::before {
        width: 150px;
        height: 150px;
        transform: translate(-50%, 50%) rotate(45deg);
    }

    .each-certification-label::after {
        width: 150px;
        height: 150px;
        transform: translate(50%, 50%) rotate(45deg);
    }

    .certification-box .bttm-part {
        width: 146px;
        height: 146px;
    }

    .certification-info h3 {
        font-size: 40px;
    }

    .certification-info p {
        font-size: 20px;
    }

    .hme-certification-main {
        justify-content: center;
        margin-bottom: 50px;
    }

    .each-certification-label:not(:last-child) {
        margin-bottom: 100px;
    }

    .blog-slider .slick-list {
        padding-right: 0;
    }

    .blog-slider-outtr {
        margin: 0 -12px;
    }

    .blog-each-itm-wrppr {
        padding: 24px 16px;
    }

    .blog-date-cetagories-wrppr p {
        padding: 16px 14px;
        font-size: 20px;
    }

    .blog-date-cetagories-wrppr {
        top: -24px;
    }

    .blog-itm-img-wrppr .white-arrw {
        width: 57px;
        height: 57px;
        bottom: -1px;
        right: -1px;
    }

    .blog-content-wrppr {
        padding-top: 35px;
    }

    .blog-content-wrppr h3 {
        font-size: 25px;
        margin-bottom: 61px;
        font-weight: 600;
    }

    .blog-content-wrppr p {
        font-size: 24px;
    }

    .newsletter-sec {
        padding: 50px 0;
    }

    footer.footer {
        padding-top: 24px;
        padding-bottom: 75px;
    }

    footer.footer .container {
        padding: 0 32px;
    }

    .fttr-rw {
        --bs-gutter-x: 0;
        --bs-gutter-y: 20px;
    }

    .fttr-rw>* {
        width: 100%;
    }

    .explore-fttr-col {
        order: inherit;
    }

    .social-fttr-col {
        order: 1;
    }

    .fttr-head p {
        font-size: 30px;
        line-height: 1.2;
    }

    .fttr-head {
        margin-bottom: 30px;
    }

    .explore-fttr-col li a {
        font-size: 16px;
    }

    .locate-fttr-innr>p {
        font-size: 16px;
        line-height: 1.25;
    }

    .social-fttr-col li a {
        width: 24px;
        height: 24px;
    }

    .social-fttr-col>a {
        font-size: 20px;
    }

    .menu-innr-brand {
        max-width: 100px;
    }

    .menu-open-top-wrppr {
        padding: 15px 0;
    }

    .navbar-collapse::before {
        height: 50px;
    }

    .navbar-nav-outtr {
        padding: 20px 0 30px;
    }

    .all-navlist-col,
    .nav-service-col {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .navbar-nav>li {
        padding: 7px;
    }

    .nav-gettouch-col {
        padding-top: 15px;
    }

    .navbar-nav>li>a {
        line-height: 1.2;
    }

    .process-card-innr-info p {
        font-size: 16px;
        margin-top: 30px;
    }

    .hme-teams-card-wrppr .back-part p {
        font-size: 18px;
    }

    /* About page */

    .who-we-work-img-wrppr {
        width: 90px;
    }

    .who-we-work-wrppr {
        padding: 15px;
        border-radius: 14px;
    }

    .who-we-work-info {
        padding-left: 15px;
    }

    .who-we-work-wrppr h3 {
        font-size: 26px;
    }

    .about-para-wrppr p,
    .about-infow-rppr p,
    .who-we-work-wrppr p {
        font-size: 16px;
    }

    .who-we-work-sec.brand-bridge-team {
        padding-bottom: 40px;
    }

    .about-img-txt-sec figure {
        height: 500px;
    }

    .about-slider {
        max-width: 100%;
    }

    .progress-arrw-main {
        padding-top: 25px;
        display: flex;
        flex-direction: row;
        padding-left: 0;
        width: 100%;
    }

    .progress-slider {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        min-height: 70px;
        transform: inherit;
        width: 195px;
    }

    .progress-slide-itm:not(:last-child) {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .abut-user-info h3 {
        font-size: 20px;
    }

    .progress-itm-innr {
        width: 45px;
        height: 45px;
        transform: inherit;
    }

    .progress-slide-itm.active .progress-itm-innr {
        width: 70px;
        height: 70px;
    }

    .about-slider-outtr {
        flex-wrap: wrap;
    }

    .technology-service-bnnr-content h1,
    .technology-service-bnnr-content .h1-title {
        font-size: 60px;
    }

    .technology-service-bnnr-content h1 span.smll,
    .technology-service-bnnr-content .h1-title span.smll {
        font-size: 38px;
    }

    .technology-service-bnnr-content .innr-bnnr-info p {
        font-size: 16px;
    }

    .bnnr-content-main.technology-service-bnnr-innr {
        padding: 30px 0;
    }

    .abut-user-info>span {
        font-size: 18px;
        right: 10px;
        top: 5px;
    }

    .about-img-txt-sec .cmn-head-wrppr,
    .who-we-work-sec.brand-bridge-team .cmn-head-wrppr,
    .testimonial-sec .cmn-head-wrppr {
        margin-bottom: 25px;
    }

    /* Step form */

    .step-close-btn {
        width: 35px;
        height: 35px;
        padding: 6px;
    }

    .step-frm-content-innr {
        padding: 30px 0;
    }

    .step-frm-head .subtitle-step {
        font-size: 26px;
    }

    .step-frm-head h2 {
        font-size: 36px;
    }

    .step-hdr-innr {
        padding: 15px 0;
    }

    .step-frm-head {
        margin-bottom: 25px;
    }

    .step-field-wrppr input[type="text"],
    .step-field-wrppr input[type="email"],
    .step-field-wrppr textarea {
        font-size: 16px;
    }

    .step-frm-btn {
        padding: 13px 10px 9px;
        min-width: 140px;
        font-size: 16px !important;
    }

    .step-radiobtn-list label span {
        font-size: 15px;
        padding: 13px 10px 9px;
        line-height: 1.2;
    }

    #scroll {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }

    /* Technology service page */

    .technology-service-bnnr-content p,
    .capabilities-card-innr p,
    .service-team-count-wrppr p,
    .who-we-work-main>p,
    .card-group-each p,
    .explore-more-wrppr p {
        font-size: 14px;
    }

    .card-group-col,
    .card-group-col.half {
        width: 100%;
    }

    .card-group-each,
    .card-group-col.half .card-group-each {
        min-height: inherit;
    }

    .card-group-each h3 {
        font-size: 24px;
        margin-bottom: 25px !important;
    }

    .card-group-col.full .card-group-each h3 {
        width: 100%;
    }

    .card-group-col.full .card-group-each p {
        padding-left: 0;
    }

    .capabilities-card-innr h3 {
        font-size: 24px;
        width: 100%;
        padding-right: 0;
        margin-bottom: 10px;
    }

    .capabilities-card-innr p {
        padding-left: 0;
    }

    .service-team-count-col {
        width: 100%;
    }

    .service-team-count-wrppr {
        padding: 20px;
        border-right: none;
    }

    .capabilities-tab-list-col {
        display: none;
    }

    .capabilities-tab-list-col,
    .capabilities-tab-content-col {
        width: 100%;
    }

    h2.resp-accordion {
        margin-top: 15px;
        display: block;
        line-height: 1;
        color: var(--grayColor);
        width: 100%;
        background-color: var(--white) !important;
        border: none !important;
        margin-bottom: 2px;
        transition: 0.3s all;
        cursor: pointer;
        font-size: 16px;
        padding: 15px 15px 11px;
        font-family: var(--josefinSans);
        font-weight: 400;
        border-bottom: 2px solid var(--blueSecndColor) !important;
    }

    h2.resp-accordion.resp-tab-active {
        color: var(--white);
        background-color: var(--blueColor) !important;
    }

    .each-capabilities-tab-content.resp-tab-content {
        height: auto;
    }

    .each-capabilities-tab-content.resp-tab-content.resp-accordion-closed {
        display: none !important;
    }

    #parentVerticalTab .each-capabilities-tab-imf-wrppr {
        height: auto;
        flex: 0 0 auto;
    }

    .each-capabilities-tab-imf-wrppr img {
        position: static;
        height: inherit;
    }

    .each-capabilities-tab-content li a {
        font-size: 14px;
        padding: 15px 15px 11px;
    }

    .each-case-study-item h3 {
        font-size: 24px;
    }

    .feed-cmn-arrw {
        width: 30px;
        height: 30px;
    }

    .each-explore-more-col {
        padding: 25px 0;
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #f0f0f0;
    }

    .explore-more-wrppr>*:not(:last-child) {
        margin-bottom: 15px;
    }

    .explore-more-wrppr h3 {
        font-size: 24px;
    }

    .about-para-wrppr p,
    .about-infow-rppr p,
    .who-we-work-wrppr p {
        font-size: 14px;
    }

    .feed-cmn-arrw {
        width: 30px;
        height: 30px;
        padding: 4px;
    }

    .about-slider-sec {
        padding-bottom: 40px;
    }

    /* Business support service page */

    .technology-service-bnnr-content.business-service h1 span {
        font-size: 45px;
    }

    .card-group-col.full {
        width: 100%;
    }

    .card-group-col.full .card-group-each {
        min-height: inherit;
    }

    .what-we-offer-sec,
    .capabilities-tab-sec.stack,
    .expertise-sec {
        padding-bottom: 40px;
    }

    .how-it-innr p,
    .how-it-wrk-right p,
    .expertise-head-main>p {
        font-size: 16px;
    }

    .brand-multiple-wrppr {
        max-width: 175px;
        height: 200px;
        padding: 20px 20px 60px;
    }

    .brand-multiple-slider .slick-list {
        padding-left: 85px !important;
        padding-right: 85px !important;
    }

    .brand-multiple-wrppr {
        justify-content: flex-start;
        padding-top: 35px;
    }

    /* Solutions page */

    .solution-bnnr .technology-service-bnnr-content h1 {
        text-align: center;
    }

    .solution-bnnr .technology-service-bnnr-content h1 span {
        font-size: 34px;
    }

    .solution-bnnr .technology-service-bnnr-content h1 span.gap-span {
        margin-left: 0;
    }

    .new-card-left-col .hme-solution-card-wrppr {
        padding: 20px;
        height: 80vh;
    }

    .col-lg-12.who-we-work-col .who-we-work-img-wrppr {
        width: 90px;
    }

    /* Expertise page */

    .sec-innr-head h3 {
        font-size: 30px;
    }

    .sec-innr-head p {
        font-size: 16px;
    }

    .service-capabilities-sec.specialism .cmn-head-wrppr {
        margin-bottom: 35px;
    }

    .capabilities-card-innr span {
        width: 40px;
    }

    .sec-innr-head {
        margin-bottom: 30px;
    }

    .card-group-col.full .card-group-each.certification-card {
        min-height: 220px;
    }

    /* Case studies page */

    .bnnr-sec.case-studies-bnnr .bnnr-content-main.technology-service-bnnr-innr {
        padding: 50px 0;
    }

    .bnnr-sec.case-studies-bnnr .technology-service-bnnr-content h1 span {
        font-size: 36px;
    }

    .each-case-stuies-img-outtr.one,
    .each-case-stuies-img-outtr.three,
    .each-case-stuies-img-outtr.two {
        padding-top: 20px;
    }

    .each-case-stuies-img-outtr.one>span,
    .each-case-stuies-img-outtr.two>span {
        left: auto;
        right: 20px;
        bottom: auto;
        top: -30px;
        width: 140px;
    }

    .each-case-stuies-content .subtitle {
        font-size: 30px;
    }

    .each-case-stuies-content h3 {
        font-size: 34px;
    }

    .each-case-stuies {
        padding: 45px 0;
    }

    .each-case-stuies-img-outtr.three>span {
        right: 45px;
        width: 100px;
        top: -40px;
    }

    .each-case-stuies-img-outtr.four>span {
        top: -60px;
        width: 120px;
    }

    /* Blog page */

    .bnnr-sec.blog-bnnr {
        height: 400px;
    }

    .blog-each-itm-wrppr.blog-cetagories .blog-date-cetagories-wrppr {
        top: 0;
    }

    /* contact page */

    .technology-service-bnnr-content.contact h1 span {
        font-size: 50px;
    }

    .contact-all-map-main h2.resp-accordion {
        font-family: var(--impact);
        margin-top: 0;
        margin-bottom: 15px;
    }

    .contact-map-wrppr {
        margin-bottom: 15px;
    }

    .contact-all-map-main h2.resp-accordion>p {
        font-size: 26px;
    }

    /* Timberland page */

    .bnnr-sec.land-bnnr .bnnr-content-main.technology-service-bnnr-innr {
        padding: 30px 0 40px;
    }

    .bnnr-sec.land-bnnr .subtitle-land {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .bnnr-sec.land-bnnr .technology-service-bnnr-content h1 {
        font-size: 32px;
    }

    .each-industry-loaction-info {
        padding: 16px 10px 10px;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #b2bdd9;
    }

    .each-industry-loaction-info:last-child {
        border-bottom: none;
    }

    .industry-loaction-main {
        padding: 10px 15px;
    }

    .industry-content-innr p {
        font-size: 24px;
    }

    .project-details-wrppr p,
    .industry-solution-sec .industry-content-innr p,
    .future-content p,
    .future-summary-service-wrppr li {
        font-size: 16px;
    }

    .technology-logo-wrppr p {
        font-size: 14px;
    }

    .technology-logo-wrppr span {
        width: 30px;
    }

    .technology-logo-list {
        margin: 0 -15px -20px;
    }

    .technology-logo-list li {
        padding: 0 15px 20px;
    }

    /* detail page */

    .partner-logo-bnnr .technology-service-bnnr-content h1 {
        font-size: 48px;
    }

    .partner-logo-bnnr .technology-service-bnnr-content h1 span {
        font-size: 40px;
    }

    .logo-each-wrppr {
        max-width: 200px;
    }

    .card-group-main.partner>p {
        font-size: 16px;
    }

    .card-group-col.full .card-group-each.partner {
        /* min-height: 200px; */
        min-height: inherit;
    }

    .card-group-each.partner {
        min-height: inherit;
    }

    .card-group-col.full .card-group-each.partner h3 {
        margin-bottom: 0 !important;
    }

    .service-capabilities-sec.partner .capabilities-card-innr h3,
    .service-capabilities-sec.partner .capabilities-card-innr p {
        width: 100%;
    }

    .service-team-sec.partner .service-team-count-wrppr {
        min-height: inherit;
    }

    .col-lg-12.who-we-work-col .who-we-work-img-wrppr {
        height: 200px;
    }

    .service-capabilities-sec.partner-part .each-explore-more-col {
        min-height: 100px;
    }

    .bnnr-sec.adobe .logo-each-wrppr {
        width: 120px;
        left: 100%;
        padding: 10px;
        top: -3px;
    }

    .hover-service-card {
        min-height: 230px !important;
    }

    .hover-service-card .icon.one {
        bottom: -115px;
        left: 20px;
        min-width: inherit;
        width: 90%;
    }

    .hover-service-card .icon.three {
        min-width: inherit;
        right: 20px;
        width: 90%;
    }

    .hover-service-card .icon.five {
        min-width: inherit;
        left: 40px;
        top: -70px;
        width: 70%;
    }

    .hover-service-card .icon.two {
        width: 85%;
        top: -75px;
        left: 30px;
    }

    .brand-multiple-slider .slick-track {
        margin-left: 10px !important;
    }

    [data-pin-anim] .card-group-each h3 {
        font-size: 30px;
    }

    .hme-solution-card-wrppr.solution {
        height: auto;
    }

    [data-pin-anim] .card-group-each p {
        font-size: 16px;
    }

    /* 1/7/25 work start */
    .bnnr-img-each.one {
        margin-top: 20px;
    }

    .bnnr-img-each img {
        max-height: 280px;
    }

    .bnnr-each-shpe.one {
        height: 33vh !important;
    }

    .bnnr-sec {
        padding-bottom: 140px;
    }

    /* 1/7/25 work end */

    /* 04.11.25 start */

    .explore-more-wrppr a span {
        width: 15px;
    }

    .newsletter-innr h2 {
        font-size: 30px;
    }

    .new-abut-bg-wrppr {
        top: 45%;
    }

    .new-abut-content-outtr {
        padding-bottom: 15%;
        padding-top: 15%;
    }

    .new-abut-cntnt-innr {
        padding: 10px 30px 15px;
    }

    .new-abut-cntnt-innr p {
        font-size: 16px;
    }

    .new-team-sec .cmn-head-wrppr {
        margin-bottom: 40px;
    }

    .new-team-listing-outtr {
        padding-bottom: 40px;
    }

    .new-case-studies-banner-btm-wrap a {
        font-size: 20px;
    }

    .technology-service-bnnr-content.contact h1 {
        font-size: 44px;
    }

    .technology-service-bnnr-content.contact p {
        font-size: 18px;
    }

    .page-id-722 .main-wrapper.new-microsoft-page .technology-service-bnnr-content .innr-bnnr-info p {
        max-width: 100%;
    }

    .main-wrapper.new-microsoft-page .partner-logo-bnnr .innr-bnnr-info {
        padding-top: 15px;
    }

    /* Single Case study details*/

    .single-our-case-studies .bnnr-sec.land-bnnr .subtitle-land {
        font-size: 40px;
    }

    .single-our-case-studies .bnnr-sec.land-bnnr .technology-service-bnnr-content h1 {
        font-size: 50px;
    }

    .single-our-case-studies .new-case-studies-banner-btm-wrap a {
        font-size: 24px;
    }

    .single-our-case-studies .cmn-head-wrppr h2 {
        font-weight: 400;
    }

    .single-our-case-studies .project-details-wrppr {
        margin-bottom: 45px;
    }

    .single-our-case-studies .newsletter-innr h2 {
        font-size: 24px;
    }

    .trigger_getin_touch_btn {
        margin-left: unset;
    }

    .single-our-case-studies .future-content ul li::before {
        height: 6px;
        width: 6px;
        top: 5px;
    }

    /* Microsoft page template */
    .page-template-microsoft .partner-logo-bnnr .technology-service-bnnr-content h1 {
        font-size: 40px;
    }

    .page-template-microsoft .partner-logo-bnnr .technology-service-bnnr-content h1 span {
        font-size: 35px;
    }

    .page-template-microsoft .technology-service-bnnr-content .innr-bnnr-info p {
        font-size: 14px;
    }

    .page-template-microsoft .card-group-each h3 {
        font-size: 20px;
    }

    .page-template-microsoft .card-group-each.partner h3 span {
        font-size: 20px;
    }

    /* .page-template-microsoft .solution-card-group-rw-outtr .card-group-col{
        margin-top: 0;
    } */
    .page-template-microsoft .row.card-group-rw.partner-rw {
        margin-top: 20px;
    }

    /* 14.4.26 */
    .brand-multiple-slider .slick-list {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }

    .brand-multiple-wrppr {
        /* height: 160px; */
        padding: 20px 38px 50px;
    }

    /* 14.4.26 */
    /* 16.4.26 */
    .hme-solution-card-wrppr.solution {
        min-height: 190px;
    }

    .hme-teams-card-rw-outtr {
        max-width: 260px;
    }

    .hme-teams-card-wrppr .back-part .cmn-btn img {
        width: 15px;
    }

    /* 16.4.26 */

    .aws-main .bnnr-sec.adobe.partner-logo-bnnr .innr-wrppr {
        width: 86%;
    }

    .aws-main .bnnr-sec.adobe .logo-each-wrppr {
        width: 90px;
        transform: translateY(-5px);
        height: 40px;
        padding: 5px;
        margin-bottom: -4px;
    }

    .hme-teams-card-wrppr h3 {
        bottom: 40px;
    }

    .hme-teams-sec .hme-teams-card-col .cmn-btn {
        padding: 6px 0 8px 8px;
    }

    .aws-main .bnnr-sec.business-service-bnnr {
        min-height: 60vh;
    }

    .hme-teams-card-wrppr .back-part,
    .hme-teams-card-wrppr .front-part {
        padding: 20px;
    }

    .arr-btn {
        gap: 12px;
        font-size: 14px;
    }

    .arr-btn i {
        width: 30px;
        height: 30px;
    }

    .arr-btn i svg {
        width: 16px;

    }

    .icon-back {
        max-width: 40px;
    }

    .no-rotate .hme-teams-card-wrppr .back-part h3 {
        font-size: 20px;
    }

    .no-rotate .hme-teams-card-wrppr .back-part p {
        font-size: 15px;
    }

    .ai-auto-main.ecomm-page-main .innr-bnnr-info {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }

    .ecomm-page-main .partner-logo-bnnr .innr-bnnr-info p {
        padding-left: 0px;
    }
    /* 24.4.26 */
    .service-team-count-col.col_odd_12  .hover-service-card .icon.five {
    max-width: 230px;
}
    /* 24.4.26 */
}

@media (max-width: 360px) {

    .bnnr-each-content h1,
    .bnnr-each-content .h1-title,
    .technology-service-bnnr-content h1,
    .technology-service-bnnr-content .h1-title {
        font-size: 46px;
    }

    .technology-service-bnnr-content h1 span.smll,
    .technology-service-bnnr-content .h1-title span.smll {
        font-size: 32px;
    }

    .cmn-head-btn,
    .cmn-head-wrppr h2 {
        font-size: 18px;
    }

    .who-we-work-wrppr h3 {
        font-size: 22px;
    }

    .testimonial-slider {
        padding: 50px 15px 30px 15px;
        border-radius: 20px 30px 20px 30px;
    }

    .testimonial-item p {
        font-size: 16px;
        line-height: 1.5;
    }

    .each-case-study-item h3 {
        font-size: 20px;
    }

    .hme-solution-card-wrppr.solution .hme-solution-card-content h3 {
        font-size: 30px;
    }

    .solution-bnnr .technology-service-bnnr-content h1 {
        font-size: 48px;
    }

    .solution-bnnr .technology-service-bnnr-content h1 span {
        font-size: 32px;
    }

    .solution-bnnr .technology-service-bnnr-content h1 span.block-line {
        text-align: center;
    }

    .capabilities-card-innr span {
        width: 25px;
    }

    .each-case-stuies-content h3 {
        font-size: 30px;
    }

    .each-case-stuies-img-outtr.four>span {
        top: -40px;
        width: 90px;
    }

    .each-case-stuies-img-outtr.three>span {
        width: 80px;
        top: -25px;
    }

    .each-case-stuies-img-outtr.one>span,
    .each-case-stuies-img-outtr.two>span {
        width: 100px;
    }

    .blog-content-wrppr h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .blog-content-wrppr p {
        font-size: 16px;
    }

    .each-blog-cetagories span {
        font-size: 14px;
        padding: 9px 10px 6px;
    }

    .blog-date-cetagories-wrppr p {
        padding: 12px 10px;
        font-size: 14px;
        min-width: 80px;
    }

    .blog-itm-img-wrppr .white-arrw {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .blog-content-wrppr {
        padding-top: 20px;
    }

    .blog-content-wrppr h3 {
        font-size: 16px;
    }

    .each-location-office-info h3 {
        font-size: 36px;
    }

    .bnnr-sec.adobe .logo-each-wrppr {
        width: 150px;
        position: static;
    }

    .bnnr-sec.adobe.partner-logo-bnnr .innr-wrppr {
        width: 100%;
    }

    .service-team-sec.solution .service-team-count-wrppr h3 {
        font-size: 30px;
    }
}