/**** General CSS *****/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    word-break: break-word;
    font: 15px/25px 'Now-Regular';
    color: #393939;
    overflow-x: hidden;
}

::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar
{
    width: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
    background-color: #35b280;  
    background-image: -webkit-linear-gradient(45deg,
                                              rgba(255, 255, 255, .2) 25%,
                                              transparent 25%,
                                              transparent 50%,
                                              rgba(255, 255, 255, .2) 50%,
                                              rgba(255, 255, 255, .2) 75%,
                                              transparent 75%,
                                              transparent)
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    line-height: 1.6;
    font-size: 16px;
    color: #000;
}


/***** Font Files *****/

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}
@font-face {
  font-family: 'Now-Regular';
  src: url(../fonts/Now-Regular.otf);
}
@font-face {
  font-family: 'Now-light';
  src: url(../fonts/Now-Light.otf);
}
.fixed-page p {
    font-family: 'Now-light';
}
h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 65px;
    line-height: 1.3;
    color: #fff;
    font-weight: bold;
    margin: 0 0 20px;
}

h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

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

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

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

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.theme-btn:focus {
    color: #fff;
}

.banr_btnn.arow_down:hover > i {
    transform: rotate(90deg);
}

.banr_btnn.arow_down > i {
    transform: rotate(90deg);
}

.nav_bttn a i {
    font-size: 29px;
    color: #fff;
    font-weight: 300;
    transform: rotateY(180deg);
}

.nav_bttn>a {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    opacity: 0.6;
    background-color: transparent;
    position: fixed;
    z-index: 999;
    top: 12%;
    left: 0;
    border: none;
    width: 36px;
    height: 36px;
    outline: none;
    transition: opacity 0.2s ease-out 0s;
    right: 0;
    margin: 0 auto;
}

.menu-toggle::after {
    opacity: 0;
    content: "\f00d";
    color: white;
    position: absolute;
    top: 16px;
    left: 2px;
    font-family: "Font Awesome 5 Pro";
    font-size: 50px;
    line-height: 0;
    transition: opacity 0.4s ease-out 0s;
}

.menu-toggle:active {
    transform: translateY(2px);
}

.menu-toggle:hover {
    opacity: 1;
}

.open .menu-toggle {
    opacity: 1;
}

.open button::before {
    opacity: 0;
    width: 0px;
}

.open button::after {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) rotate(360deg);
    transition: transform 0.4s ease-out 1s, opacity 0.4s ease-out 1s;
}

nav {
    z-index: 99;
    position: fixed;
    top: -100%;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: translate3d(0px, 0px, 0px);
    backface-visibility: hidden;
    overflow: hidden;
}

nav::before {
    content: "";
    position: absolute;
    inset: 0px;
    margin: auto;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 0px;
    padding-bottom: 100%;
    border-radius: 0;
    overflow: hidden;
    z-index: 999 !important;
}

.open nav {
    top: 0px;
}

/*.open nav::before {
    animation: 0.8s ease-out 0s 1 normal forwards running menu-animation;
}*/

ul.menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0px);
    backface-visibility: hidden;
    color: white;
}

ul.menu li {
    opacity: 0;
    text-align: center;
    transform: translate3d(0px, 36px, 0px);
}

ul.menu li::before {
    content: "";
    position: absolute;
    inset: 0px 0px 0px auto;
    margin: auto;
    background-color: #35b280;
    height: 120%;
    width: 0px;
    overflow: hidden;
    transition: width 0.14s ease-out 0s;
    z-index: -1;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

ul.menu li::after {
    opacity: 0;
    content: "";
    z-index: -1;
    position: absolute;
    transition: transform 0.1s ease-out 0s, opacity 0.1s ease-out 0s;
    background-color: #fff;
    width: 15px;
    height: 120%;
    left: -10px;
    top: -3px;
}

ul.menu li:hover::before {
    left: -10px;
    right: 0px;
    width: 110%;
}

ul.menu li:hover::after {
    opacity: 1;
    /* transform: translate(0px, 6px); */
    transition: transform 0.2s ease-out 0.14s, opacity 0.2s ease-out 0.14s;
}

.open ul.menu li {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
    transition: transform 0.2s ease-out 0s, opacity 0.2s ease-out 0s;
}

.menu.poppup-mnu a {
    font-size: 25px;
    color: white;
    font-weight: 200;
    z-index: 9;
    padding: 0 30px;
}

.menu.poppup-mnu li {
    margin-bottom: 40px;
}

ul.menu.poppup-mnu {
    z-index: 9999;
}


header {
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 20px 0px;
    transition: 0.3s ease-in-out;
}

header.sticky {
    position: fixed;
    background: #fff;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

header.sticky .container {
    border: transparent;
    padding-bottom: 0;
    transition: 0.3s ease-in-out;
}

header.sticky .nav_bttn>a>span {
    color: #000;
}

header.sticky .nav_bttn a i {
    color: #000;
}

header.sticky .theme-btn:after {
    background-color: #000;
}

.logo-here>img {
    width: 30%;
}
header .row {
    align-items: center;
}
header ul {
    margin: 0;
    gap: 60px;
    align-items: center;
}

.nav_bttn>a>span {
    color: #fff;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
}


/*header css end */


/* banner */

.banner {
    position: relative;
    height: 850px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
}

.banner>.mainvideo {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.banner>.mainvideo {
    position: absolute;
    left: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    z-index: -2;
    right: 0;
}

.banner:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    top: 0;
    background: #00000047;
}

.theme-btn {
    background-color: #35b280;
    font-size: 16px;
    color: #fff;
    font-family: 'Now-Regular';
    width: fit-content;
    display: flex;
    height: 45px;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    transition: 0.2s all;
    position: relative;
    clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 100% 100%, 0% 100%);
    font-weight: 300;
    text-transform: uppercase;
}

.theme-btn:hover {
    transition: 0.2s all;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
    color: #fff;
}

.theme-btn:after {
    position: absolute;
    content: "";
    background-color: #fff;
    width: 0;
    height: 100%;
    left: 0;
    transition: 0.2s all;
}

.theme-btn:hover:after {
    width: 10%;
}

.banner-text>h1>span {
    display: block;
}

.banner-text {
    width: 90%;
}

.banner-text>h1 {
    font-weight: bold;
    line-height: 1.3;
    font-size: 45px;
    position: relative;
}
.role_secc.role-baner-in.home-banner-form {
    background: #ffffffc9;
}
.banner-text>p {
    color: #fff;
    width: 100%;
    line-height: 1.4;
    margin-bottom: 3%;
    transition: 0.3s ease-in-out;
    font-size: 30px;
    font-weight: 200;
    margin-top: 40px;
}

.banner-text>h1>span:after {
    position: absolute;
    content: "";
    width: 80px;
    height: 2px;
    left: 0;
    top: 40%;
}

.banner .cust-prev>span {
    color: #fff;
    font-size: 16px;
    display: block;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

header>.container {
    border-bottom: 1px solid #45546b;
    padding-bottom: 30px;
    transition: 0.3s ease-in-out;
}

.theme-btn>i {
    margin-left: 10px;
    transform: rotate(-35deg);
    transition: 0.3s ease-in-out;
}

.theme-btn:hover i {
    transform: rotate(0deg);
}

.banner-text>h1:after {
    position: absolute;
    content: "";
    background: #35b280;
    width: 140px;
    height: 1px;
    left: 0;
    bottom: -25px;
}

.banner_btm_logos {
    background-color: #102039e8;
    padding: 50px 0px;
    margin-top: -125px;
    z-index: 1;
    position: relative;
}

.banner_btm_logos .slick-slide {
    opacity: 1;
}

.banner_btm_logos .slick-slide img {
    height: 25px;
    width: 170px;
    object-fit: contain;
}


/* banner */


/* top services */

.all-sec {
    padding: 60px 0px;
}

.theme-heading>h2 {
    color: #000;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 40px;
    font-family: 'Now-Regular';
}

.serv-box {
    position: relative;
    background-color: #ecf7f3;
    padding: 30px 30px;
    z-index: 1;
    height: 260px;
    transition: 0.3s cubic-bezier(0.4, 0, 1, 1);
    display: flex;
    align-items: end;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 5px;
}

.serv-box>ul {
    margin-bottom: 0;
    display: flex;
    align-items: end;
    width: 100%;
}

.serv-box>ul>* {
    width: 50%;
}

.serv-box>img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.serv-box>ul>li>h3 {
    color: #242424;
    font-size: 25px;
    margin-bottom: 0;
    line-height: 1.3;
}

.serv-box:after {
    position: absolute;
    content: "";
    background: transparent;
    width: 10%;
    height: 20%;
    left: 0;
    top: 0;
    z-index: -1;
    border-top: 5px solid #F67023;
    border-left: 5px solid #f67023;
    transition: 0.3s ease-in-out;
}

.serv-box:hover:after {
    width: 20%;
    height: 40%;
    transition: 0.3s ease-in-out;
}

.serv-box:hover img {
    transform: scale(1.1) rotate(-6deg);
}

.serv-box>ul>li>ul>li {
    font-size: 18px;
    margin-bottom: 14px;
    font-family: 'Now-Regular';
    font-weight: 300;
    color: #464a48;
    position: relative;
    width: fit-content;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.serv-box>ul>li>ul>li:last-child {
    margin: 0;
}

.serv-box>ul>li>ul {
    margin: 0;
}

.serv-box>ul>li>ul>li>i {
    color: #f67023;
    font-size: 16px;
    position: absolute;
    left: 0px;
    top: 3px;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.serv-box:hover ul>li>ul>li>i {
    transform: translate(-21px, 0px);
    opacity: 1;
}


/* top services */


/* Services */

.serv-wrpp.one1>a {
    position: relative;
    overflow: hidden;
    transition: 0.2s ease-in-out;
    display: block;
    height: 100%;
}

.serv-wrpp.one1>a>img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
    transition: 0.3s ease-in-out;
}

.serv-wrpp.one1>a>.serv-txt-wrpp {
    position: absolute;
    top: 20%;
    left: 15%;
    padding-right: 50px;
}

.serv-wrpp.one1>a>.serv-txt-wrpp>span {
    font-size: 22.44px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.serv-wrpp.one1>a>.serv-txt-wrpp>h3 {
    font-size: 40px;
    color: #fff;
    font-family: 'Now-Regular';
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
}

.services-secc .col-lg-6 {
    padding: 0;
    margin: 0;
}

.services-secc .row>.col-lg-6:nth-child(2) a>ul {
    margin: 0;
    align-items: center;
}

.services-secc .row>.col-lg-6:nth-child(2) a>ul>li>img {
    width: 100%;
    display: block;
    height: 300px;
    transition: 0.3s ease-in-out;
    object-fit: cover;
}

.services-secc .row>.col-lg-6:nth-child(2) a>ul>li {
    width: 100%;
    overflow: hidden;
    background: #f8f8f8;
    height: 300px;
    display: flex;
    align-items: center;
}

.services-secc .row>.col-lg-6:nth-child(2) a {
    overflow: hidden;
}

.services-secc .row>.col-lg-6:nth-child(2) a>ul>li>.serv-textt-two {
    padding-left: 30px;
}

.services-secc .row>.col-lg-6:nth-child(2) a>ul>li>.serv-textt-two>span {
    font-size: 17.97px;
    color: #233169;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.services-secc .row>.col-lg-6:nth-child(2) a>ul>li>.serv-textt-two>h3 {
    font-size: 30px;
    font-family: 'Now-Regular';
    text-transform: capitalize;
    line-height: 1.3;
}

.services-secc .row>.col-lg-6:nth-child(2) a>ul>li>.serv-textt-two>h3>img {
    width: 25px;
    object-fit: contain;
    vertical-align: baseline;
}

.services-secc .serv-three>a {
    padding-left: 21%;
    display: block;
}

.services-secc .serv-three>a>img {
    display: block;
    margin-bottom: 20px;
    width: 90px;
}

.services-secc .serv-three>a>span {
    font-size: 18px;
    text-transform: uppercase;
    color: #233169;
    font-family: 'Now-Regular';
    letter-spacing: 2px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.services-secc .serv-three>a>span>img {
    vertical-align: bottom;
    transition: 0.3s ease-in-out;
    transform: rotate(90deg) !IMPORTANT;
}

.services-secc .serv-three.current-tbb>a>span>img {
    transform: rotate(-90deg) !IMPORTANT;
    transition: 0.3s ease-in-out;
}

.services-secc .serv-three {
    padding: 15.8% 0px;
    height: 300px;
    display: flex;
    align-items: center;
}

.services-secc .serv-three>a>p {
    font-size: 13px;
    font-family: 'Now-light';
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    width: 70%;
    color: #000;
}

.services-secc .serv-4>img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    object-position: top;
    transition: 0.3s ease-in-out;
}

.services-secc .serv-4 {
    display: block;
    height: 100%;
    overflow: hidden;
}

.services-secc .serv-three>a>h4 {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    font-family: "Montserrat", sans-serif;
    margin: 0;
    line-height: 1;
}

.services-secc>.row>.col-lg-6:last-child .serv-three {
    padding: 22.4% 0%;
    height: 100%;
    height: 300px;
}

.serv-wrpp.one1 {
    overflow: hidden;
    background: #86d6f4;
    height: 100%;
}

.serv-wrpp.one1:hover a>img {
    transform: scale(1.2);
}

.services-secc .row>.col-lg-6:nth-child(2) a>ul:hover li img {
    transition: 0.3s ease-in-out;
    transform: scale(1.2);
}

.services-secc .serv-4:hover img {
    transition: 0.3s ease-in-out;
    transform: scale(1.2);
}

.services-secc .row>.col-lg-6:nth-child(2) a>ul>li>.serv-textt-two>p {
    font-size: 16px;
    color: #4a4a4a;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

.services-secc .row>.col-lg-6:nth-child(2) a:last-child ul>li:first-child {
    background: #233169;
    height: 300px;
}

.services-secc .row>.col-lg-6:nth-child(2) a:last-child ul>li>.serv-textt-two>h3>img {
    transform: rotate(175deg);
}

.services-secc>.row>.col-lg-6:last-child .serv-three>a {
    padding-left: 50px;
}

.services-secc>.row>.col-lg-6:last-child .serv-three>a span {
    font-size: 30px;
    color: #000;
    text-transform: capitalize;
    letter-spacing: 0;
    line-height: 1.3;
    font-weight: bold;
}

.services-secc>.row>.col-lg-6:last-child .serv-three>a span>img {
    transform: rotate(-90deg) !IMPORTANT;
}


/* Services */


/* achievements */

.achiv_boxx {
    padding: 15px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
}
.achiv_boxx img {
    width: 100%;
}

.achiv_boxx>.row {
    align-items: center;
}

.achiv_boxx h2 {
    font-size: 35px;
    color: #000;
    width: 80%;
    margin: 0 auto;
    font-weight: 600;
}


/* achievements */


/* Power Your Business */

.power-your-business-secc {
    z-index: 1;
}

.power_box>span {
    height: 250px;
    display: block;
    width: 100%;
    background: #000000;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.power_box>.power_box_textt {
    background: #0c326b;
    padding: 40px 20px 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    gap: 30px;
}

.power_box>.power_box_textt>h3 {
    font-size: 24px;
    color: #fff;
    width: 100%;
    font-weight: 500;
    margin-bottom: 0px;
}

.power_box>.power_box_textt>p {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.power_box>.power_box_textt>a {
    color: #fff;
    font-size: 16.44px;
    font-family: 'Now-Regular';
    font-weight: 500;
}

.power_box>span>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.power-heading-wrpp>h2 {
    font-size: 35px;
    color: #000;
    font-weight: bold;
    width: 80%;
    margin-bottom: 15px;
    line-height: 1.4;
}

.power-heading-wrpp>p {
    font-size: 16px;
    width: 100%;
    line-height: 1.6;
}

.power-heading-wrpp {
    margin-top: 18%;
    margin-left: 5%;
}

.power-your-business-secc:before {
    position: absolute;
    content: "";
    background-color: #e0fff4;
    width: 370px;
    height: 220px;
    z-index: -1;
    bottom: 10px;
    left: 40%;
}

.power-your-business-secc:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 80%;
    background: #faf9f9;
    left: 0;
    top: 0;
    z-index: -2;
}


/* Power Your Business */


/* client-secc all-sec */

.client-box-wrpp {
    background-color: #f7f7f7;
    position: relative;
}

.client-box-wrpp>img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
}

.client-box-wrpp>.client-box-wrpp-inner {
    padding: 50px 30px 30px;
}

.client-box-wrpp>.client-box-wrpp-inner>p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
}

.client-box-wrpp>.client-box-wrpp-inner>a {
    color: #0c3068;
    font-size: 22px;
    font-weight: 500;
    width: fit-content;
    margin-inline-start: auto;
    display: flex;
}

.client-box {
    width: 92%;
    margin-inline-start: auto;
}

.client-secc .slick-slide {
    opacity: 1;
}

.client-secc .slick-prev:before {
    display: none;
}

.client-secc .slick-next:before {
    display: none;
}

ul.cust_slider_btn {
    margin-bottom: 0;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

ul.cust_slider_btn>li>i {
    color: #0f346d;
    font-size: 30px;
    border: 2px solid;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

ul.cust_slider_btn>li>i:hover {
    color: #fff;
    background: #0f346d;
}

.client-box-wrpp:after {
    position: absolute;
    content: "";
    background: #ee6c22;
    width: 7px;
    height: 70px;
    left: 30px;
    bottom: -40px;
    transition: 0.5s ease-in-out;
    transform: translate(0px, -40px);
    opacity: 0;
}

.client-secc .slick-list {
    padding-bottom: 40px;
}

.slick-current .client-box-wrpp:after {
    opacity: 1;
    transform: translate(0px, 0px);
}


/* client-secc all-sec */


/* contact form */


/* add this to your :root variables */

.checkbox {
    --light: rgba(207, 205, 205, 0.425);
    --primary-color: #8c00ff;
    --duration: 0.3s;
    --ease: ease-in-out;
    margin-bottom: 20px;
}


/* hide checkbox */

.checkbox input[type="checkbox"] {
    display: none;
}

.checkbox label {
    align-items: center;
    cursor: pointer;
    display: flex;
}

.checkbox label span {
    margin-left: 8px;
    font-size: 14px;
    color: #000;
    font-family: 'Now-light';
}

.checkbox svg {
    height: 20px;
    width: 20px;
}


/* svg rectangle property */

.checkbox svg>rect {
    fill: var(--light);
    stroke: #35b280;
    /* responsive values */
    stroke-dasharray: 400%;
    stroke-dashoffset: 400%;
    transition: var(--duration) stroke-dashoffset var(--ease);
}


/* svg check property */

.checkbox svg path {
    stroke: #35b280;
    /* responsive values */
    stroke-dasharray: 100%;
    stroke-dashoffset: 100%;
    transition: var(--duration) stroke-dashoffset var(--ease);
}

.checkbox input[type="checkbox"]:checked+label svg>rect,
.checkbox input[type="checkbox"]:checked+label svg path {
    stroke-dashoffset: 0;
}

.contact-secc {
    background-color: #e8f6fc;
}

.contact-secc form {
    width: 85%;
    position: relative;
}

.contact-secc form select {
    width: 100%;
    height: 50px;
    border: 1px solid #d9d9d9;
    border-radius: 0;
    margin-bottom: 30px;
    color: #000;
    font-family: 'Now-Regular';
    font-size: 16px;
    padding: 10px 20px;
}

.contact-secc form input {
    width: 100% !important;
    height: 50px;
    margin-bottom: 20px;
    padding: 10px 20px;
    border: 1px solid #d9d9d9;
}

.contact-secc form input::placeholder {
    color: #000;
}

.contact-secc form .iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}

.contact-secc form textarea {
    width: 100%;
    resize: none;
    padding: 10px 20px;
    height: 130px;
    border: 1px solid #d9d9d9;
    margin-bottom: 14px;
}

.contact-secc form:after {
    position: absolute;
    content: "";
    background: #f67023;
    width: 5px;
    height: 270px;
    top: 0;
    right: -10%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-secc form button {
    border: 0;
}


/* contact form */


/* footer */

footer {
    background: #233169;
    padding: 40px 0px 20px;
}

footer .ftr-logo {
    text-align: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

footer ul {
    margin: 0;
}

footer ul>li>ul {
    gap: 20px;
}

footer ul>li>ul>li>a {
    color: #fff;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}

footer ul>li p {
    color: #fff;
    margin: 0;
}


/* footer */


/* float form */

.fload_form {
    width: 20%;
    padding: 15px;
    background: linear-gradient(0deg, rgb(248 248 248) 0%, rgb(248 248 248) 100%);
    position: fixed;
    top: 30%;
    right: 0%;
    z-index: 9999;
    transform: translate(100%, 0px);
    transition: 0.5s ease-in-out;
    opacity: 0;
    box-shadow: rgb(0 0 0 / 3%) 20px 0px 13px;
}

.fload_form form input {
    width: 100%;
    height: 40px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    margin-bottom: 5px;
    padding: 10px 20px;
}

.fload_form form input::placeholder {
    color: #000;
    font-size: 14px;
    font-family: 'Now-Regular';
}

.fload_form form textarea {
    width: 100%;
    height: 80px;
    padding: 10px 20px;
    resize: none;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    margin-bottom: 0;
}

.fload_form form button {
    width: 80%;
    margin: 0 auto;
    border: 0;
}

.fload_form>form textarea::placeholder {
    color: #000;
    font-size: 14px;
    font-family: 'Now-Regular';
}

.fload_form_inner {
    position: relative;
}

.fload_form_inner>span {
    position: absolute;
    left: -60px;
    top: -15px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    cursor: pointer;
    background-color: #f8f8f8;
    color: #000;
    font-size: 20px;
    font-family: 'Now-Regular';
    font-weight: 500;
    width: fit-content;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 253px;
    justify-content: center;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: rgb(0 0 0 / 3%) 20px 0px 13px;
}

.float-form-show .fload_form {
    transform: translate(0px, 0px);
}

.fload_form_inner span i {
    animation: tada 1.5s ease infinite;
}

.fload_form_inner>span>p {
    margin: 0;
    transform: rotate(180deg);
}

.fload_form form .iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
    margin-bottom: 5px;
}

@keyframes tada {
    0% {
        transform: scale(1);
    }

    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

.fload_form_inner .theme-btn:after {
    background: #000;
}

/* float form */

html {
    overflow-x: hidden;
}


/* blog page */

.blog_secc {
    padding-top: 140px;
    padding-bottom: 60px;
}

body.blog_pagee .logo-here>img {
    filter: brightness(0);
}

body.blog_pagee .nav_bttn>a>span {
    color: #000;
}

body.blog_pagee .nav_bttn a i {
    color: #000;
}

.main_blog_box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
}

.main_blog_box ul {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 14px;
    width: fit-content;
}

.main_blog_box ul>li {
    border: 1px solid #35b280;
    font-size: 16px;
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.3s;
    color: #35b280;
}

.main_blog_box ul>li:hover {
    background: linear-gradient(0deg, rgba(35, 49, 105, 1) 0%, rgba(53, 178, 128, 1) 100%);
    color: #fff;
    transition: 0.3s;
}

.main_blog_box span {
    font-size: 14px;
    color: #000;
    display: block;
    margin-bottom: 20px;
}

.main_blog_box h2 {
    font-size: 45px;
    color: #000;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.main_blog_box p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.main_blog_box .theme-btn:after {
    background: #000;
}

.blog_small_boxx {
    margin-top: 15%;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
}

.blog_small_boxx>img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog_small_boxx>span {
    font-size: 16px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.blog_small_boxx>h2 {
    font-size: 25px;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 20px;
}

.blog_small_boxx>ul {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog_small_boxx>ul>li {
    border: 1px solid #35b280;
    color: #35b280;
    font-size: 16px;
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.3s;
}

.blog_small_boxx>ul>li:hover {
    background: linear-gradient(0deg, rgba(35, 49, 105, 1) 0%, rgba(53, 178, 128, 1) 100%);
    color: #fff;
    transition: 0.3s;
}

.blog_small_boxx a.theme-btn {
    width: fit-content;
    margin-inline-start: auto;
}

.blog_small_boxx a.theme-btn:after {
    background: #000;
}


/* blog page */

.blog_Detail {
    padding: 150px 0 60px 0;
    position: relative;
}

.blog_Detail .fixed_bx {
    position: sticky;
    border-radius: 10px;
    top: 14%;
}

.blog_Detail .fixed_bx .fixed_bx-inner {
    padding: 30px 50px 20px 20px;
    background: #233169;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog_Detail .fixed_bx h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}

.deatil_cntnt img {
    margin: 0 0 50px 0;
    width: 100%;
    height: 490px;
    object-fit: cover;
}

.deatil_cntnt p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 1.5;
}

.deatil_cntnt ul li {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 1.5;
}

.deatil_cntnt h4 {
    margin-top: 50px;
    font-weight: 700;
    color: #233169;
}

ul.banner-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.banner-btn li {
    margin: 0 !important;
}
.box_summary {
    padding: 30px 50px;
    text-align: center;
    background: #35b280;
    border-radius: 30px;
    margin-top: 40px
}

.box_summary p {
    color: #fff;
}

.box_summary h4 {
    margin-top: 0;
    color: #fff;
}

.main_blog_detail_content {
    padding: 80px 0;
    background: #f2f2f2;
}

.main_blog_detail_content h1 {
    font-size: 43px;
    color: #000;
    font-weight: 600;
}

.how_to_setup_heading p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 1.6;
    width: 90%;
    margin: 0 auto;
}

.pt-8 {
    padding-top: 80px;
}

.overflow_body {
    overflow-x: clip;
}

.blog_Detail .fixed_bx ul {
    background: #fff;
    padding: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    margin-bottom: 0;
}

.blog_Detail .fixed_bx ul>li>a {
    font-size: 15px;
    color: #000;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
    transition: 0.2s;
    line-height: 1.3;
}

.blog_Detail .fixed_bx ul>li:last-child a {
    margin: 0;
}

.blog_Detail .fixed_bx ul>li>a:hover {
    color: #35b280;
}

.sb_boxx>img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.sb_boxx {
    margin: 20px 0px;
}

.sb_boxx>span {
    font-size: 25px;
    color: #000;
    font-weight: 600;
}


/* blog page */


/*  full stack web developer page  */

.full_stack_web_page .banner-text {
    width: 100%;
    margin-top: 50px;
}

.full_stack_web_page .banner-text>h1 {
    font-size: 53px;
}

.full_stack_web_page .banner-text ul>li {
    color: #fff;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.full_stack_web_page .banner-text ul {
    margin-bottom: 0;
    margin-top: 40px;
}

.full_stack_web_page .banner-text ul>li:last-child {
    margin: 0;
}

.full_stack_web_page .banner-text>p {
    font-size: 27px;
}

.full_stack_web_page .banner-text ul>li>i {
    color: #35b280;
    font-size: 25px;
    font-weight: bold;
}

.full_stack_web_page .banner-text ul>li>i {
    color: #35b280;
    font-size: 25px;
    font-weight: bold;
}

.banner .role_secc {
    background-color: #fff;
    padding: 30px 20px;
    margin-top: 50px;
    border-radius: 5px;
}

.banner .role_secc>p {
    font-size: 21px;
    margin-bottom: 9px;
    line-height: 1;
    color: #737272;
    font-weight: 500;
}

.banner .role_secc>p {
    display: flex;
    align-items: center;
    gap: 5px;
    /* margin-left: -19px !important; */
    margin: 15px 0px;
}

.banner .role_secc>p>i {
    color: #f8741a;
    font-size: 16px;
    margin-top: 4px;
}

.banner .role_secc>span {
    color: #000;
    font-size: 21px;
    display: block;
    font-weight: 700;
    margin-bottom: 17px;
}

.banner .role_secc>span:last-child {
    margin: 0;
}

.devs__sec {
    background-color: #ecf7f3;
    padding: 40px 0px;
}

.devs__sec .devs_boxx>img {
    width: 50px;
    display: block;
    margin-bottom: 10px;
    height: 60px;
    object-fit: contain;
}

.devs__sec .devs_boxx>h3 {
    color: #242424;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    height: 40px;
    margin-top: 20px !important;
    !i;
    !;
    !m;
    !;
    !O;
    !OI;
    !OIm;
    !OI;
    !O;
    !;
}
.devs__sec .devs_boxx>h3 span {
    display: inline;
}
.devs__sec .devs_boxx>p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.devs__sec .devs_boxx {
    position: relative;
    margin-top: 14%;
    z-index: 1;
    height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 10px;
}

.devs__sec .devs_boxx:after {
    position: absolute;
    content: "";
    background-color: #35b280;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -20px;
    transition: 0.3s ease-in-out;
    right: 0;
    margin: 0 auto;
    transition-delay: 0.3s;
}

.devs__sec .devs_boxx:hover:after {
    width: 100%;
    transition-delay: 0s;
}

.devs__sec .devs_boxx:before {
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgb(53 178 128 / 43%) 0%, rgb(53 178 128 / 43%) 100%);
    width: 100%;
    height: 0;
    left: 0;
    bottom: -18px;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.devs__sec .devs_boxx:hover:before {
    height: 120%;
    transition-delay: 0.3s;
}

.mvp-sticky-box>.mvp_box-wrpp {
    background-color: #e8f6fc;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.mvp-sticky-box>.mvp_box-wrpp>h2 {
    font-size: 25px !important;
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 23px;
}

.mvp-sticky-box>.mvp_box-wrpp .theme-btn:after {
    background: #000;
}

.mvp-sticky-box>ul {
    padding: 30px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.mvp-sticky-box>ul>li {
    font-size: 18px;
    color: #242424;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.mvp-sticky-box>ul>li:hover {
    color: #35b280;
}

.mvp-sticky-box>ul>li:last-child {
    margin: 0;
}

.mvp_bluids_secc {
    padding: 90px 0px;
    position: relative;
}

.devs-parent-box {
    width: 95%;
    margin-inline-start: auto;
}

.devs-parent-box .theme-heading>h2 {
    font-size: 35px;
    width: 90%;
    margin-bottom: 17px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px !IMPORTANT;
    !I;
    !;
    
    
    
    !;
}

.devs-parent-box .theme-heading>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.devs-parent-box .theme-heading {
    margin-bottom: 7%;
}

.devs-parent-box>.developer-main-box {
    background-color: #ecf7f3;
    padding: 40px 30px;
}

.devs-parent-box>.developer-main-box>.developer-small-box {
    background-color: #ffffff;
    padding: 13px;
}

.devs-parent-box>.developer-main-box>.developer-small-box h3 {
    font-size: 23px;
    color: #242424;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 17px;
    font-weight: bold;
}

.devs-parent-box>.developer-main-box>.developer-small-box h3>img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.devs-parent-box>.developer-main-box>.developer-small-box h3>span {
    font-size: 20px;
    color: #505050;
    font-weight: 400;
    margin: 0;
}

.devs-parent-box>.developer-main-box>.developer-small-box ul.verify_box {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
    position: relative;
}

.devs-parent-box>.developer-main-box>.developer-small-box ul.verify_box>li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #505050;
    font-family: "Montserrat", sans-serif;
}

.devs-parent-box>.developer-main-box>.developer-small-box ul.verify_box:after {
    position: absolute;
    content: "";
    background: #f8741a;
    width: 40%;
    height: 2px;
    bottom: -18px;
}

.devs-parent-box>.developer-main-box>.developer-small-box ul.verify_box>li>img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.devs-parent-box>.developer-main-box>.developer-small-box span {
    display: flex;
    color: #676767;
    font-size: 23px;
    margin-bottom: 15px;
}

.devs-parent-box>.developer-main-box>.developer-small-box ul.skils_boxx {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    display: block !important;
}

.devs-parent-box>.developer-main-box>.developer-small-box ul.skils_boxx li {
    font-size: 14px;
    color: #4e4e4e;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    background: #f4f5f7;
    padding: 6px 12px;
    transition: 0.3s ease-in-out;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

.devs-parent-box>.developer-main-box>.developer-small-box ul.skils_boxx li:last-child {
    margin-bottom: 0;
}

.devs-parent-box>.developer-main-box>.developer-small-box ul.skils_boxx li:hover {
    transition: 0.3s ease-in-out;
    border-color: #35b280;
    border-radius: 5px;
}

.devs-parent-box>.developer-main-box>.developer-small-box p {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 40px;
}

.devs-parent-box>.developer-main-box>.developer-small-box .theme-btn:after {
    background: #000;
}

.devs-parent-box>.developer-main-box>.developer-small-box .devs_main_imgg {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
}

.mvp_bluids_secc .mvp-sticky-box {
    position: sticky;
    top: 15%;
}

body.full_stack_web_page {
    overflow-x: visible;
}

.mvp_bluids_secc .theme-heading.heading_wrpp_two {
    margin-top: 8%;
}

.mvp_bluids_secc .theme-heading.heading_wrpp_two h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.mvp_bluids_secc .theme-heading.heading_wrpp_two p {
    font-size: 18px;
    font-weight: 400;
    width: 90%;
    margin: 0 auto;
    line-height: 1.5;
}

.mvp_bluids_secc .theme-heading.heading_wrpp_two ul {
    margin-bottom: 0;
    margin-top: 40px;
    gap: 10px;
    justify-content: center;
}

.mvp_bluids_secc .theme-heading.heading_wrpp_two ul>li>.theme-btn:after {
    background: #000;
}

.mvp_bluids_secc .theme-heading.heading_wrpp_two ul li>a.theme-btn.btnn1 {
    background: #0c326b;
}

.mvp_bluids_secc .theme-heading.heading_wrpp_two ul li>a.theme-btn.btnn2 {
    background: #f8741a;
}

.hire__developer_secc {
    background: #faf9f9;
}

.hire__developer_secc .theme-heading>h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hire__developer_secc .theme-heading>p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 30px;
}

.hire__developer_secc .theme-heading .theme-btn:after {
    background: #000;
}

.hire-devs_boxx>img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 10px;
}

.hire-devs_boxx>h4 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 0px;
}

.hire-devs_boxx>h4>img {
    width: 25px;
    height: 25px;
}

.hire-devs_boxx>span {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    padding-left: 0;
}

.hire__developer_secc .slick-slide {
    opacity: 1;
    margin: 0 10px;
}

.hire__developer_secc {
    position: relative;
    z-index: 1;
}

.hire__developer_secc:after {
    position: absolute;
    content: "";
    background: #e0fff4;
    width: 20%;
    height: 60%;
    right: 30%;
    top: 5%;
    z-index: -1;
}

.developer_expertise_secc {
    position: relative;
    padding: 90px 0px 60px;
    z-index: 1;
}

.developer_expertise_secc .theme-heading>h2 {
    font-size: 40px;
    text-align: center;
}

.expertise_boxx {
    background-color: #35b280;
    margin-bottom: 25px;
    padding: 50px 20px;
    position: relative;
    transition: 0.3s ease-in-out;
    z-index: 1;
    height: 250px;
    border-radius: 5px;
}

.expertise_boxx>h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: capitalize;
}

.expertise_boxx>p {
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 0;
}

.expertise_boxx:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(35, 49, 105, 1) 0%, rgba(53, 178, 128, 1) 100%);
    transition: 0.3s ease-in-out;
    border-radius: 5px;
}

.expertise_boxx:hover:after {
    height: 100%;
}

.developer_expertise_secc:after {
    position: absolute;
    content: "";
    background: #e8f6fc;
    width: 25%;
    height: 100%;
    right: 20%;
    top: 0;
    z-index: -1;
}

.developer_expertise_secc:after {
    position: absolute;
    content: "";
    background: #e8f6fc;
    width: 25%;
    height: 100%;
    right: 20%;
    top: 0;
    z-index: -1;
}

.how_it_works_secc .theme-heading>h2 {
    font-size: 40px;
}

.how-it-works-boxx {
    background-color: #f9fafb;
    position: relative;
    padding-left: 110px;
    padding-right: 120px;
    margin-bottom: 40px;
    border-radius: 5px;
}

.how-it-works-boxx img {
    width: 100%;
}

.how-it-works-boxx .works_textt-box {
    display: flex;
    align-items: baseline;
    gap: 30px;
}

.how-it-works-boxx .works_textt-box>div>span {
    background: #35b280;
    color: #fff;
    width: 50px;
    display: flex;
    font-size: 30px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 9;
}

.how-it-works-boxx .works_textt-box>div>h3 {
    color: #242424;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 14px;
}

.how-it-works-boxx .works_textt-box>div>p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.how-it-works-boxx:after {
    position: absolute;
    content: "";
    background-color: #f8741a;
    width: 2px;
    height: 90%;
    left: 10.5%;
    top: 44%;
    z-index: 1;
}

.how-it-works-boxx.second-last-boxx:after {
    height: 98%;
}

.how-it-works-boxx.last-boxx:after {
    display: none;
}

.devs__sec.devs_bottom_secc .theme-heading>h2 {
    font-size: 42px;
}

.devs__sec.devs_bottom_secc .devs_boxx {
    margin-top: 6%;
    height: 270px;
    display: block;
}

.devs__sec.devs_bottom_secc {
    padding-bottom: 60px;
}

.devs__sec.devs_bottom_secc .devs_boxx>h3 {
    font-size: 21px;
    margin-bottom: 20px;
    height: 40px;
}

.devs__sec.devs_bottom_secc .devs_boxx>img {
    margin-bottom: 30px;
}

.accordion_secc .theme-heading>h2 {
    font-size: 42px;
    text-align: center;
}

.accordion-box .accordion-button {
    font-size: 25px;
    color: #242424;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    padding: 30px 10px;
    border-bottom: 3px solid #f8741a;
}

.accordion-box .accordion-button:not(.collapsed) {
    background: #f8741a1a;
    box-shadow: none;
}

.accordion-box .accordion-button:focus {
    box-shadow: none;
}

.accordion-box .accordion-body {
    padding: 0 10px;
    margin-top: 30px;
}

.accordion-box .accordion-item {
    border-bottom: 0;
}

.accordion-box .accordion-body>p {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.accordion-box .accordion-button::after {
    background-image: none;
    content: "+";
    transform: none;
}

.accordion-box .accordion-button:not(.collapsed)::after {
    content: "-";
}

.new__contact__form {
    padding-top: 70px;
}

.new__contact__form .new__contact__form_boxx {
    background-color: #e8f6fc;
    padding: 40px 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.new__contact__form .new__contact__form_boxx span {
    font-size: 28px;
    color: #242424;
    font-weight: 500;
}

.new__contact__form .new__contact__form_boxx h2 {
    font-size: 40px;
    color: #242424;
    margin-top: 20px;
    font-weight: 600;
    width: 100%;
    line-height: 1.3;
}

.new__contact__form .new__contact__form_boxx p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
}

.new__contact__form .new__contact__form_boxx .new__contact__form_boxx-main {
    background-color: #ffffff;
    padding: 40px 20px;
    margin-bottom: 7px;
}

.new__contact__form .new__contact__form_boxx .new__contact__form_boxx-main h3 {
    font-size: 28px;
    color: #242424;
    margin-bottom: 30px;
}

.new__contact__form .new__contact__form_boxx .new__contact__form_boxx-main form label {
    font-size: 16px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    display: block;
    margin-bottom: 5px;
}

.new__contact__form .new__contact__form_boxx .new__contact__form_boxx-main form input {
    width: 100%;
    border: 0;
    padding: 10px;
    height: 50px;
    background: #ecf7f3;
    margin-bottom: 20px;
}

.new__contact__form .new__contact__form_boxx .new__contact__form_boxx-main form button {
    border: 0;
    width: 100%;
    background-color: #0c326b;
}

.new__contact__form .new__contact__form_boxx .new__contact__form_boxx-main form .theme-btn:after {
    background: #000;
}


/*  full stack web developer page  */


/*RUBY RAILS PAGE CSS*/

.ruby_rails_web_page .banner-text h1 {
    font-size: 48px;
}

.ruby_rails_web_page .banner-text>p {
    font-size: 21px;
}

.time_wise_box {
    padding: 50px 25px;
    width: 96%;
    margin: 0 auto;
    position: relative;
}

.time_wise_box::before {
    content: '';
    z-index: -1;
    position: absolute;
    width: 60px;
    height: 60px;
    top: -5px;
    left: -5px;
    transition: 0.3s ease-in-out;
    background-color: #f67023;
}

.time_wise_box:hover:before {
    width: 101%;
    height: 101%;
    transition: 0.3s ease-in-out;
}

.time_wise_box h4 {
    font-size: 26px;
    font-weight: 600;
    color: #000;
}

.time_wise_box p {
    color: #65736e;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
}

section.part_time_Sec {
    padding: 80px 0;
}

.time_wise_box1 {
    background-color: #e8f6fc;
}

.time_wise_box2 {
    background-color: #e0fff4;
}

.time_wise_box3 {
    background-color: #e8f6fc;
}

a.theme-btn.btn1 {
    background: #0c326b;
}

.buttons_list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mt-8 {
    margin-top: 80px;
}

.brands_slider .slick-track {
    display: flex;
    align-items: center;
}

.brands_slider .slick-slide {
    opacity: 1;
}

.brands_slider .slick-slide img {
    width: 60%;
    margin: 0 auto;
}

section.top_companies_logos {
    padding-bottom: 80px;
}

.slick-prev:before {
    content: '\f053';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 600;
    color: #000;
}

.slick-next:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 600;
    color: #000;
}

.top_companies_logos h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.transform_content h2 {
    font-size: 42px;
    font-weight: 900;
    color: #000;
}

.transform_sec {
    padding: 80px 0;
    background-color: #faf9f9;
}

.outsource_Step_box {
    position: relative;
}

.outsource_Step_box h5 {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 20px;
    color: #000;
}

.outsource_Step_box h5:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #f8741a;
    border-radius: 50px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #fff;
}

.outsource_Step_box h5 span {
    width: 110%;
    display: inline-block;
    position: absolute;
    height: 1px;
    background: #f8741a;
    left: -14px;
    bottom: -23px;
}

.outsource_Step_box p {
    font-size: 15px;
    color: #737373;
    line-height: 1.5;
    font-weight: 500;
}

section.out_sourcing_Section {
    padding: 80px 0 0;
}

.outsource_heading h2 span {
    font-size: 35px;
    font-weight: 400;
}

.outsource_heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
}

section.dev_the_best {
    padding-top: 80px;
}

.dev_the_best_content h2 {
    font-size: 40px;
    color: #242424;
    font-weight: bold;
    line-height: 1.3;
}

.devs-parent-box>.theme-heading>h6 {
    margin-bottom: 0;
    color: #232e5d;
    font-weight: 400;
    font-size: 20px;
    margin-top: 20px;
}


/*LARAVEL SECTION*/

.engineer_better_content h2 {
    font-size: 37px;
    font-weight: 800;
    color: #000;
}

.engineer_better_content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #737373;
}

.engineer_better_img img {
    width: 100%;
    object-fit: cover;
    height: 550px;
}

.engineer_better_img {
    position: relative;
}

.engineer_better_img:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e8f6fc;
    right: 30px;
    top: 0;
    z-index: -1;
}

.outsource_heading_laravel h2 {
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: bold;
    color: #242424;
}


/* Developer slider  */

section.developer-detail {
    padding: 50px 0;
    background: #faf9f9;
    position: relative;
    margin-top: 50px;
}

section.developer-detail:before {
    position: absolute;
    content: '';
    background: #fff;
    left: 0;
    top: 0;
    width: 70px;
    height: 100%;
    z-index: 9;
}

.wrap-dev ul li h3 {
    font-size: 28px;
    font-weight: 600;
}

.wrap-dev ul li p {
    font-size: 16px;
    line-height: 1.6;
}

li.purp-clr {
    background: #232f63;
    border-radius: 5px;
}

.wrap-dev ul li {
    padding: 20px;
    height: 210px;
}

.wrap-dev ul li.purp-clr h3,
.wrap-dev ul li.purp-clr p {
    color: #fff;
}

.wrap-dev ul li:first-child {
    margin-bottom: 20px;
}

li.purp-clr.green {
    background: #35b280;
    border-radius: 5px;
}

li.blue {
    background: #e8f6fc;
    border-radius: 5px;
}

li.light-g {
    background: #ecf7f3;
    border-radius: 5px;
}

section.developer-detail .container-fluid {
    padding-left: 110px;
}

section.developer-detail .slick-slide {
    opacity: 1;
}

section.developer-detail .slick-dots li button:before {
    font-size: 10px;
    content: "";
    background: #000;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

section.developer-detail .slick-dots li button:before,
section.developer-detail .slick-dots li.slick-active button:before {
    color: #000;
    opacity: 1 !important;
}

section.developer-detail .slick-dots {
    bottom: -40px;
}

section.developer-detail ul.slick-dots li {
    margin: 0;
}

.wrap-dev ul li img {
    width: 90%;
}


/* end  */









/*MOBILE APP PAGE*/
.courses_box_cont h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.courses_box_cont p {
    font-size: 14px;
    width: 80%;
    margin: 0 auto;
}

.coursesSlider .slick-slide {
    opacity: 1;
}

.courses_main_img {
    text-align: center;
    position: relative;
    width: 90%;
    margin: 0 auto 20px;
    height: 352px;
    display: flex;
    align-items: center;
}

.courses_main_img img {
    width: 80%;
    height: 300px;
    object-fit: contain;
    margin: 0 auto;
}

.courses_box_main {
    position: relative;
}

.courses_main_img.color1:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #e0fff4;
    left: 0;
    border-radius: 100%;
    z-index: -1;
}

.courses_main_img.color2:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #e8f6fc;
    left: 0;
    border-radius: 100%;
    z-index: -1;
}

section.why_diy.mvp_bluids_secc .theme-heading.heading_wrpp_two.text-center {
    margin-top: 0;
}

.our_mobile_first_content.text-center h2 {
    font-size: 40px;
    color: #000;
    font-weight: 700;
}

.first_child h3 {
    margin-bottom: 15px !important;
}

.developer-detail2 .wrap-dev li h3 {
    margin-bottom: 40px;
}

.developer-detail2 .wrap-dev li h3+b {
    margin-bottom: 15px !important;
    display: block;
    color: #000;
}

.developer-detail2 .wrap-dev ul li {
    padding: 20px;
    height: 300px;
}

.contact-secc .theme-btn:after {
    background: #000;
}

.contact-secc .sharib_box img {
    width: 100%;
    display: block;
    margin-bottom: 40px;
    object-fit: contain;
}
.contact-secc .sharib_box ul {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    border-top: 1px solid #c0c9c6;
    padding-top: 30px;
}

.contact-secc .sharib_box ul>li>h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 5px;
    color: #242424;
    margin-top: 0;
}
.contact-secc .sharib_box ul>li>p {
    font-size: 12px;
    color: #000;
    font-weight: bold;
    margin: 0;
}

.contact-secc .sharib_box ul>li>img {
    width: 70px;
}

.contact-secc .sharib_box ul>li>a {
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}

.contact-secc .sharib_box ul>li>a>img {
    width: 60px;
    border-radius: 100%;
}

.theme-heading>h2 {
    margin-bottom: 40px !important;
}

.contact-secc .sharib_box ul>li>a>i {
    color: #0077b5;
    font-size: 30px;
    margin-top: 10px;
}

.devs-parent-box .theme-btn:after {
    background: #000;
}

.buttons_list .theme-btn:after {
    background: #000;
}

.power_box>.power_box_textt>a:hover {
    text-decoration: underline;
}

section.developer-detail:before {
    display: none !important; 
}

/* banner new changes */

.banner-text .pages_div {
    position: absolute;
    bottom: 30px;
    display: block;
    transform: translate(0px, 50px);
    opacity: 0;
    transition: 0.3s ease-in-out;
    z-index: -1;
    width: 42%;
}

.banner-text .pages_div > a {
    display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 300;
    padding: 8px 27px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    margin-right: 10px;
    margin-bottom: 20px;
    transition: 0.4s ease-in-out;
}

.banner-text .pages_div > a:hover {
    background: #35b280
}

.banner-text .pages_div.showMore {
    transform: translate(0px, 0px);
    opacity: 1;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

/* nav new changes */

nav .customContainer {
    padding: 60px;
    height: 100%;
    width: 100%;
}

nav .customContainer ul.menu {
    position: relative;
    top: 0 !important;
    right: 0 !important;
    transform: translate(0px, 0px);
    left: 0 !important;
    /* height: 100%; */
    text-align: left;
    display: block;
    margin: 0;
    /* column-count: 2; */
    /* margin-top: 70px; */
    margin-bottom: 30px;
    width: 90%;
    margin: 0;
}

nav .customContainer ul.menu > li {
    text-align: left;
    width: fit-content;
    margin-bottom: 15px;
}

.menu-toggle {
    margin: 0;
    right: 4%;
    left: unset;
    top: 6%;
}

.customContainer ul.menu li::after {
    height: 117%;
}

nav::before {
    background: #233169;
    z-index: -999 !important;
}

.video_boxx>video {
    width: 100%;
    box-shadow: rgb(0 0 0 / 24%) 0px 0px 40px;
    height: 550px;
    border-radius: 6px;
    transform: translate3d(0px, 36px, 0px);
    opacity: 0;
    object-fit: cover;
}

.open .video_boxx>video {
    transform: translate3d(0px, 0px, 0px);
    transition: transform 0.2s ease-out 0s, opacity 0.2s ease-out 0s;
    opacity: 1;
}

.open .customContainer .video_boxx>.row {
    transform: translate3d(0px, 0px, 0px);
    transition: transform 0.2s ease-out 0s, opacity 0.2s ease-out 0s;
    opacity: 1;
}

.customContainer .video_boxx>.row {
    transform: translate3d(0px, 36px, 0px);
    opacity: 0;
}
.customContainer .video_boxx h3 {
    color: #fff;
    font-size: 25px;
    margin: 20px 0 20px;
}

.customContainer .video_boxx ul {
    display: flex;
    margin-bottom: 10px;
    gap: 20px;
}

.customContainer .video_boxx ul > li > a > i {
    color: #fff;
    width: 50px;
    height: 50px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    font-size: 20px;
}

.customContainer .video_boxx ul > li > a > i:hover {
    background: #ff6800;
    box-shadow: rgb(255, 255, 255) 0px 2px 40px -5px;
    border-style: dashed;
    transform: rotate(15deg);
}

.customContainer .video_boxx p {
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.customContainer .video_boxx .follow__us a {
    font-size: 20px;
    color: #ffff;
    border-bottom: 1px solid;
    line-height: 40px;
}

.customContainer .video_boxx .follow__us h3 {
    margin-bottom: 6px;
}

.customContainer ul.menu li::before {
    display: none;
}

.customContainer ul.menu li::after {
    display: none;
}

.customContainer .menu.poppup-mnu a {
    border: 1px solid;
    padding: 5px 0px;
    border-radius: 5px;
    border-style: dashed;
    border-color: #e26a1800;
    transition: 0.3s ease-in-out;
}

.customContainer .menu.poppup-mnu a > i {
    transition: 0.3s ease-in-out;
    margin-right: 15px;
    transform: translate(0px, 0px);
}

.customContainer .menu.poppup-mnu a:hover i {
    color: #e16918;
    transform: translate(-5px, 0px);
}

nav .customContainer ul.menu > h2 {
    color: #fff;
    font-weight: bold;
    font-size: 29px;
    transform: translate3d(0px, 36px, 0px);
    opacity: 0;
    margin-bottom: 10px;
}

.open nav .customContainer ul.menu > h2 {
    transform: translate3d(0px, 0px, 0px);
    transition: transform 0.2s ease-out 0s, opacity 1s ease-out 0s;
    opacity: 1;
}


.menu.poppup-mnu a {
    font-size: 18px !important;
}

/* nav new changes */

/* banner new changes 


/* react native page */

.react-native-pagee .banner_native_btnn > li {
    margin: 0 !important;
}

.react-native-pagee .banner_native_btnn {
    gap: 20px;
}

.react-native-pagee .banner_native_btnn > li:last-child a {
    background: #f8741a;
}

.react_dev_heading .theme-heading>h2 {
    font-size: 42px;
    font-weight: bold;
    margin: 0;
}

.brands_slider .slick-slide img {
    width: 140px !important;
    height: 50px !important;
    object-fit: contain;
}

.react-native-pagee .outsource_heading.outsource_heading_laravel > p {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    width: 70%;
    line-height: 1.4;
    margin-bottom: 40px !important;
    margin: 0 auto;
    margin-top: 20px;
}

/* react native page end*/

/* front end page */

.front-end-pagee .developer_expertise_secc .theme-heading>h2 {
    margin-bottom: 15px;
}

.front-end-pagee .developer_expertise_secc .theme-heading>p {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-bottom: 40px;
}

.front-end-pagee .dev_the_best_content p {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    width: 70%;
    margin: 0 auto;
    line-height: 1.3;
}

/* front end page */

/* popup css */

.popup_boxx {
    position: fixed;
    top: 15%;
    z-index: 9999;
    width: 60%;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: none;
}

.popup_boxx>.popup_inner {
    display: flex;
    align-items: center;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: #fff;
    border-radius: 10px;
}

.popup_boxx>.popup_inner>.popup_form {
    background: #ffffff;
    padding: 30px 20px;
    height: 510px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.popup_boxx>.popup_inner>.popup_form>h2 {
    font-size: 35px;
    color: #233169;
    font-family: 'Now-Regular';
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
}

.popup_boxx>.popup_inner>.popup_form>form>label {
    font-size: 17px;
    color: #000;
    display: block;
    margin-bottom: 7px;
}

.popup_boxx>.popup_inner>.popup_form>form>input {
    width: 100%;
    height: 45px;
    padding: 15px;
    border: 0;
    background: #ecf7f3;
    margin-bottom: 13px;
}

.popup_boxx>.popup_inner>* {
    width: 50%;
}

.popup_boxx>.popup_inner>.popup_form>form>button {
    width: 100%;
    border: 0;
    background: #233169;
    font-weight: 700;
}

.popup_boxx>.popup_inner>.popup_form>form>button:after {
    background: #000;
}

.popup_boxx>.popup_inner>.popup_textt {
    background-color: #233169;
    padding: 10px 20px;
    height: 510px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.popup_boxx>.popup_inner>.popup_form>* {
    width: 100%;
}

.popup_boxx>.popup_inner>.popup_textt>span>img {
    display: block;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    object-fit: cover;
}

.popup_boxx>.popup_inner>.popup_textt>span {
    background: #dedede;
    border-radius: 50%;
    border: 2px solid #35b280;
    display: block;
    margin-bottom: 20px;
}

.popup_boxx>.popup_inner>.popup_textt>p {
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
}

.popup_boxx>.popup_inner>.popup_textt>h3 {
    font-size: 27px;
    color: #fff;
    font-weight: bold;
    margin: 0;
}

.popup_boxx>.popup_inner>.popup_textt>h3>span {
    font-size: 15px;
}

.popup_boxx>.popup_inner>.popup_textt>img.popvec1 {
    position: absolute;
    left: 40px;
    bottom: 10%;
    z-index: -1;
}

.popup_boxx>.popup_inner>.popup_textt>img.popvec2 {
    position: absolute;
    right: -10px;
    bottom: 0;
    z-index: -1;
}

.popup_boxx>.popup_inner>.popup_textt {
    z-index: 1;
}

.popup_boxx>.popup_inner>.popup_textt>img.popvec3 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.popup_boxx>.popup_inner>.popup_textt>.close_popup {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background: #35b280;
    width: 60px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.overlay {
    background-color: rgb(255 255 255 / 91%);
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    position: fixed;
    left: 0;
}

/* popup css */

/* new footer */

.new_footer .footer_details > img {
    width: 55%;
    margin-bottom: 30px;
}

.new_footer .footer_details > ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.new_footer .footer_details > ul > li > a > i {
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    background-color: #f8f8f8;
    border-radius: 3px;
    box-shadow: rgb(35 49 105) 0px 30px 60px -12px inset, rgb(35 49 105) 0px 18px 36px -18px inset;
}

.new_footer .new_footer_links > h5 {
    font-size: 25px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 25px;
}

.new_footer .new_footer_links > ul > li > a {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    position: relative;
    width: fit-content;
    gap: 20px;
}

.new_footer .new_footer_links > ul > li > a:after {
    position: absolute;
    content: "";
    background: #35b280;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -5px;
    transition: 0.2s ease-in-out;
    right: 0;
    margin: 0 auto;
}

.new_footer .new_footer_links > ul > li > a:hover:after {
    width: 100%;
}

.new_footer .footer_details > p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 40px;
}

.countries_flag {
    display: flex;
    gap: 100px;
}

.countries_flag>div>img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
}

.countries_flag>div>span {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.hashtags_box > ul {
    margin: 0;
    display: flex;
    gap: 30px;
    justify-content: end;
}

.hashtags_box > ul > li > a {
    color: #fff;
    font-size: 20px;
}

.new_footer .row:nth-child(2) {
    border-top: 1px solid #fff;
    padding-top: 15px;
    margin-top: 20px;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.new_footer .copyrights {
    text-align: center;
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

/* new footer */

/* contact page */

.contact-pgg .banner {
    height: 65vh;
}

.contact-secc h2 {
    font-size: 40px;
    color: #000;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 10px;
}

.contact-secc p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    width: 100%;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-secc h3 {
    font-size: 30px;
    font-weight: bold;
    margin: 20px 0px 20px;
}

.contact-secc a {
    font-size: 25px;
    color: #000;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.diiivvv > iframe {
    width: 100%;
    height: 300px;
}

.contact-pgg .contact-secc .sharib_box>ul>li>h3 {
    margin-top: 0;
}

.contact-pgg .contact-secc .sharib_box>ul>li>a {
    margin-bottom: 0;
}

/* contact page */

  /* about page */

  .counter-wrpp {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.counter-wrpp > img {
    width: 40px;
    height: 60px;
    object-fit: contain;
}

.counter-wrpp > div > h3 {
    display: inline-block;
    font-size: 40px;
    margin: 0;
    color: #002767;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.counter-wrpp > div > span {
    display: block;
    font-size: 15px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

.counter-wrpp > div {
    font-size: 40px;
    margin: 0;
    color: #002767;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.counter-boxx {
    width: 90%;
    margin-top: 7%;
}

.counter-boxx .bdr-rght {border-right: 1px solid;border-color: #002767;}

.about-page .lorem-img-wrp>img {
    height: 100%;
}

.text-secc {
    z-index: 1;
    background-color: #233169;
    position: relative;
}

.text-heading-wrppp {
    position: sticky;
    transition: 0.5s ease-in-out;
    top: 35%;
}

.text-secc .text-heading-wrppp>h2 {
    text-align: center;
    font-size: 75px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.text-big-box .texttt-wrpp {
    background-color: #d8f4ff;
    width: 50%;
    padding: 40px 25px;
    position: relative;
    z-index: 1;
    height: 460px;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

.text-big-box .texttt-wrpp > span {
    background-color: #86d6f4;
    width: 80px;
    height: 2px;
    display: block;
    margin-bottom: 30px;
    transition: 0.3s ease-in-out;
}

.text-big-box .texttt-wrpp > h3 {
    font-size: 40px;
    color: #233169;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 15px;
}

.text-big-box .texttt-wrpp > p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.text-big-box .texttt-wrpp > a {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #233169;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    position: absolute;
    right: 5%;
    bottom: 5%;
}

.text-big-box .texttt-wrpp > img {
    position: absolute;
    bottom: 0;
    z-index: -1;
    left: 0;
    transition: 0.3s ease-in-out;
}

.text-big-box .texttt-wrpp.one-boxx {
    margin-inline-start: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}


.text-big-box .texttt-wrpp:hover span {
    width: 100%;
    transition: 0.3s ease-in-out;
}

.text-big-box .texttt-wrpp:hover > img {
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}

.lorem-img-wrp:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #e8f6fc;
    left: -20%;
    top: 0;
    z-index: -1;
}

.about-page .banner {
    height: 65vh;
}

h2.sub-heading {
    font-size: 55px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

p.linee {
    position: relative;
    z-index: 2;
    font-size: 18px;
    color: #000;
    font-weight: 400;
}

.lorem-img-wrp {
    position: relative;
    z-index: 1;
}

.about-page {
    overflow-x: clip;
}

/* about page */

/* some new changes */

.client-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.client-slider .slick-track .slick-slide {
    height: auto;
}

.client-box-wrpp {
    height: 100%;
}

ul.cust_slider_btn {
    margin-top: 20px;
}

.devs-parent-box>.developer-main-box .developer-small-box.dev__hamza .devs_main_imgg {
    object-position: 100% 20%;
}

.html_developers-page .devs__sec .devs_boxx {
    height: 220px;
}

.html_developers-page .devs__sec .devs_boxx>h3 {
    font-size: 19px;
}

.html_developers-page .devs__sec.devs_bottom_secc .devs_boxx {
    height: 290px;
}

/* some new changes */


/* technologies :start */
section.technologies-wrap {
    padding: 100px 0;
}
.technologies-tab .nav-tabs {
    display: block;
    border: unset;
    border-right: 1px solid #00000036;
    height: 100%;
    padding-top: 20px;
}
.technologies-tab .nav-link {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    color: #000;
    font-size: 21px;
    line-height: 50px;
    border: unset !important;
    border-radius: 50px;
    width: 90%;
    text-align: start;
    font-family: 'Now-Regular';
}

.technologies-tab .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link{background: linear-gradient(90deg, rgba(46, 208, 110, .21), rgba(46, 208, 110, 0));font-weight: 500;color: #000;}
    
.mobile-app-lsit h4 {
    font-size: 30px;
    color: #000;
    font-weight: 700;
}
.tect-main-tab {
    border-top: 1px solid #00000036;
}

.tect-main-tab .tab-content {
    padding-top: 20px;
}
.tec-link a {
    background: #f3f4f6;
    display: inline-flex;
    align-items: center;
    border-radius: 60px;
    overflow: hidden;
    padding: 2px 30px 2px 15px;
    color: #000;
    transition: 0.5s;
    margin-bottom: 20px;
    width: 24%;
}

.hoverClassTitle span {
    display: block;
    transform: translate3d(0, -52%, 0);
    transition: 0.2s;
    font-size: 16px;
}

.hoverClassTitle span:first-child {transform: translateY(-32px);}

.hoverClassTitle span:last-child {
    transform: translateY(-14px);
}

.tec-link a img {
    margin-right: 15px;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.tec-link a:hover {
    background: #35b280;
    color: #fff;
}

/*.tec-link a:hover img {*/
/*    filter: invert(1);*/
/*}*/

.hoverClassTitle a:hover span:first-child {transform: translateY(21px) !important;}

.hoverClassTitle a:hover span:last-child {
    transform: translateY(-19px);
}


.tec-link a:hover .hoverClassTitle span:first-child {
    transform: translateY(12px);
}

.tec-link a:hover .hoverClassTitle span:last-child {
    transform: translateY(30px);
}
.technologies-tab {
    width: 85%;
    height: 100%;
}

/* technologies :end */

/* team :start */
.team-text a {
    display: flex;
    justify-content: end;
}
.ceo-socail-link img {
    width: auto !important;
    height: auto !important;
}
ul.team-socail {
    display: flex;
    align-items: center;
    gap: 40px;
    border-bottom: 4px solid #233169;
    padding-bottom: 20px;
    width: 50%;
}

ul.team-socail a {
    color: #0000007d;
    font-size: 30px;
}
section.team-sec h2 {
    color: #000;
    line-height: 60px;
    margin-bottom: 10px;
}
section.team-sec h4 {
    color: #35b280;
    font-weight: 600;
    font-size: 35px;
}
section.team-sec h2 span {
    color: #233169;
}
.team-scl-link {
    width: 10%;
    position: relative;
}

.team-scl-link a {
    background: #35b280;
    color: #fff;
    display: block;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.team-text h4 {
    font-size: 23px;
    margin-bottom: 10px;
}
.team-box:hover .team-img-box img {
    filter: unset;
}
.team-img-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.team-text-bx {
    display: flex;
    /* gap: 40px; */
}
.team-scl-link {
    width: 10%;
    position: relative;
}

.team-scl-link a {
    background: #35b280;
    color: #fff;
    display: block;
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.team-text h4 {
    font-size: 23px;
    margin-bottom: 10px;
}

.team-text * {
    color: #fff;
}

.team-text h5 {
    margin: 0;
    font-weight: f;
    font-size: 13px;
}

.team-box {
    /* text-align: center; */
    /* border: 1px solid #00000045; */
    margin-bottom: 30px;
}
.team-text {
    padding: 20px 0;
    background: #233169;
    width: 90%;
    padding: 20px 20px 20px 62px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}



.team-text .team-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.team-text .team-social a {
    color: #0000004f;
    font-size: 20px;
    border: 1px solid #0000004d;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.team-sec .d-flex {
    align-items: center;
}
section.team-pg {
    padding: 100px 0;
}

.main-text h2 {
    color: #242424;
    font-size: 55.12px;
    font-weight: bold;
    line-height: 1.3;
}
.team-img {
    position: relative;
}

.ceo-socail-link {
    background: #233169;
    position: absolute;
    bottom: -35px;
    right: 0;
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    height: 80px;
}

.ceo-socail-link a {
    color: #fff;
    font-size: 30px;
}
.team-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top;
}
section.team-sec p.linee {
    line-height: 30px;
}
/* team :end */



/* video :start */
section.our-highligts-wrap {
    padding: 100px 0;
    background: #233169;
}

.highligts-tabs .nav-tabs {
    border: unset;
    /* justify-content: center; */
    margin-top: 40px;
}

.highligts-tabs .nav-tabs .nav-link {
    border: unset !important;
    background: unset;
    padding: 10px 20px;
    /* margin-left: 20px; */
    color: #fff;
    border-radius: 0;
    border: 1px solid #fff !important;
}

.our-high-main h2 {
    margin: 0;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 20px;
}

section.our-highligts-wrap .row {
    align-items: center;
}
section.our-highligts-wrap .row {
    align-items: center;
}
.our-high-main p {
    line-height: 28px;
    color: #fff;
}

.our-high-main ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.our-high-main h6 {
    color: #fff;
    margin-bottom: 5px;
}

.our-high-main a {
    color: #35b180;
    font-size: 25px;
}

.our-high-main ul li i {
    border: 1px solid #34af7e;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #32a778;
    font-size: 25px;
}
.video-box {
    position: relative;
}

.video-box i {
    position: absolute;
    top: 35%;
    left: 65px;
    width: 70px;
    height: 70px;
    color: #fff;
    border: 3px dashed;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.video-box video {
    width: 100%;
    object-fit: cover;
    height: 280px;
    border-radius: 10px;
    border: 3px dashed #35b280;
    padding: 5px;
}
.video-sider .slick-slide {
    opacity: 1;
}
.video-sider .slick-slide.slick-current.slick-center .video-box i {
    display: flex;
}

.video-sider .slick-slide {
    margin: 60px 20px;
}
.highligts-tabs .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    background: #35b280;
}
.tab-content>.tab-pane{ display: block; height: 0px; overflow: hidden; }
.tab-content>.active{ height: auto;}
/* video :end */


/*banner form start*/
.banner-in input {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    margin-bottom: 10px;
    border: 1px solid #00000030;
    background: unset;
    border: 1px solid #232e60;
    border-radius: 5px;
}

.banner-in label {
    margin-bottom: 10px;
}

.role_secc button {
    background: #35b280;
    border: unset;
    color: #fff;
    width: 100%;
    height: 45px;
}
.banner-in textarea {
    width: 100%;
    border: 1px solid #0000002e;
    resize: none;
    height: 180px;
    margin-bottom: 10px;
    padding: 10px 10px;
    background: unset;
    border: 1px solid #232e60;
    border-radius: 5px;
}
.role_secc.role-baner-in h2 {
    font-size: 30px;
    color: #232e60;
    font-weight: 600;
    /* background: #35b280; */
    text-align: center;
    position: relative;
    margin: 0;
    font-weight: 800;
}
section.banner .row {
    align-items: center;
}
.role_secc.role-baner-in form {
    /* padding: 30px; */
    margin-top: 25px;
}
.role_secc.role-baner-in h2:before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 22px;
    /* background-image: url(../images/square-line.png); */
    z-index: 1;
}
/*banner form end*/


/* new css */

.about_new_secc {
    padding: 12% 0px 80px;
    height: 100%;
}

/*.aboutnew_page header .logo-here>img {
    filter: brightness(0);
}*/

.aboutnew_page header .nav_bttn>a>span {
    color: #000;
}

.aboutnew_page header .nav_bttn a i {
    color: #000;
}

.about_new_secc .abtnew_box {
    position: relative;
    text-align: center;
}

.about_new_secc .abtnew_box > h2 {
    color: #242424;
    font-size: 55.12px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about_new_secc .abtnew_box > p {
    line-height: 1.6;
    color: #000;
    /*width: 60%;*/
    font-family: 'Now-Regular';
    font-weight: 400;
    font-size: 23px;
}

.about_new_secc .abtnew_box > img.clutch_imgg {
    position: absolute;
    right: 0;
    bottom: 0;
}

.about_new_secc .col-lg-12 > img {
    margin-top: 40px;
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 5px;
}

.abtnew_ceo_sec {
    padding: 80px 0px;
}

.abtnew_ceo_sec .ceo_box_wrpr {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(90deg, rgba(32, 31, 33, 1) 0%, rgb(48 48 48) 35%, rgb(53 53 53) 100%);
    padding: 50px;
    border-radius: 5px;
    width: 90%;
    margin: 0 auto;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    background: linear-gradient(90deg, rgb(53 178 128) 0%, rgb(28 92 67) 35%, rgb(29 145 99) 100%);
    padding: 0  0 0px 50px;
}

.abtnew_ceo_sec .ceo_box_wrpr > .ceo_box_textt {
    width: 70%;
}

.abtnew_ceo_sec .ceo_box_wrpr > .ceo_box_img {
    width: 50%;
    background: #233169;
    border-radius: 5px;
}

.abtnew_ceo_sec .ceo_box_wrpr > .ceo_box_textt > p {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}

.abtnew_ceo_sec .ceo_box_wrpr > .ceo_box_textt > h3 {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
    margin-top: 30px;
    justify-content: space-between;
}

.abtnew_ceo_sec .ceo_box_wrpr > .ceo_box_textt > span {
    color: #fff;
    font-size: 25px;
    line-height: 1;
    display: block;
}

.abtnew_ceo_sec .ceo_box_wrpr > .ceo_box_img > img {
    width: 100%;
    height: 490px;
    border-radius: 5px;
    object-fit: cover;
    object-position: 10% 0px;
}


.abtnew_strip_sec {
    padding: 20px 0px;
}

.abtnew_strip_sec .slick-slide {
    opacity: 1;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: baseline;
}

.abtnew_strip_sec .slick-slide > p {
    margin: 0;
    font-size: 50px;
    color: #000;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    width: auto;
    letter-spacing: -1px;
}

.abtnew_strip_sec .slick-slide > span {
    width: 20px;
    height: 20px;
    display: block;
    background: #000;
    border-radius: 50%;
}

.abtnew_strip_sec > .container-fluid {
    padding: 0;
}

.abtnew_counter_sec {
    padding: 0px 0px 80px;
    text-align: center;
}
.abtnew_counter_sec .theme-heading>h2 {
    margin-bottom: 20px !important;
    text-transform: capitalize;
}

.abtnew_counter_sec .theme-heading>p {
    width: 90%;
    line-height: 1.6;
    margin: 0 auto;
    margin-bottom: 30px;
    font-weight: 400;
}

.abtnew_counter_sec .counter_box {
    padding: 30px;
}

.abtnew_counter_sec .counter_box > h3 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
    color: #242424;
}

.abtnew_counter_sec .counter_box > span {
    font-size: 18px;
    line-height: 1;
    display: block;
}

.podcast_box> .vid {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    z-index: 1;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.podcast_box> .vid>video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.podcast_box> .vid>.play-btn {
    position: absolute;
    font-size: 20px;
    color: #fff;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.podcast_box> .vid>.play-btn:before {
    position: absolute;
    content: "";
    background-image: url(../images/abt-new/vec1.png);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    transform: scale(1.3);
    animation: 3s abc1 linear infinite;
    filter: brightness(0) invert(1);
}

.podcast_box> .vid>.play-btn:after {
    position: absolute;
    content: "";
    background-image: url(../images/abt-new/vec1.png);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    transform: scale(2.2);
    animation: 3s abc linear infinite;
    filter: brightness(0) invert(1);
}

@keyframes abc {
    from {
        transform: rotate(0deg) scale(2.2);
    }

    to {
        transform: rotate(360deg) scale(2.2);
    }
}
@keyframes abc1 {
    from {
        transform: rotate(-0deg) scale(1.3);
    }

    to {
        transform: rotate(-360deg) scale(1.3);
    }
}

.abtnew_video_secc .slick-slide {
    opacity: 1;
}

.podcast_box> .vid:after {
    position: absolute;
    content: "";
    background: #00000078;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1;
}

.abtnew_video_secc .theme-btn:after {
    background: #000;
}

.podcast_box> .vid.asd:after {
    display: none;
}

.podcast_box h3 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #fff;
}

.podcast_box> span {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    margin-bottom: 10px;
    padding: 0 10px;
}

.podcast_box p {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
}
.video-txt {
    padding: 0 10px;
    height: 130px;
}
.abtnew_video_secc {
    padding: 40px 0 80px;
}

.abtnew_video_secc>img.pod_bg {
    width: 100%;
    object-fit: cover;
    height: 400px;
    margin-top: -270px;
    object-position: 100% 72%;
}

.podcast_box {
    padding-bottom: 20px;
    text-align: center;
    background: linear-gradient(90deg, rgba(32, 31, 33, 1) 0%, rgb(48 48 48) 35%, rgb(53 53 53) 100%);
    border-radius: 5px;
}

.abtnew_video_secc .slick-list {padding-bottom: 0;}

.abtnew_video_secc .theme-heading>h2 {
    margin-bottom: 20px ! IMPORTANT;
    font-size: 40px;
    line-height: 1.3;
}

.abtnew_video_secc .theme-heading>p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.abtnew_cultur_secc {
    padding: 0px 0px 80px;
}

.abtnew_cultur_secc .theme-heading>h2 {
    text-transform: capitalize;
}

.abtnew_cultur_secc .big_img img {
    width: 100%;
    border-radius: 5px;
    height: 500px;
    object-fit: cover;
    transition: 0.5s;
}

.abtnew_cultur_secc .small_img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 5px;
    transition: 0.5s;
    margin-bottom: 10px;
}

.abtnew_cultur_secc .col-md-4 > .small_img:nth-child(1) {
    margin-bottom: 20px;
}

.abtnew_awards_sec .theme-heading>h2 {
    text-transform: capitalize;
}

.abtnew_awards_sec {
    padding-bottom: 80px;
}

.abtnew_awards_sec .awards_boxx {
    text-align: center;
    padding: 20px 0;
}

.abtnew_awards_sec .awards_boxx > img {
    width: 210px;
    height: 110px;
    object-fit: contain;
    display: block;
    margin-bottom: 10px !important;
    margin: 0 auto;
}

.abtnew_awards_sec .awards_boxx > span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    display: block;
}

.abtnew_video_secc .row {
    align-items: center;
}

.abtnew_blogs_secc {
    padding-bottom: 80px;
}

.abtnew_blogs_secc .theme-heading>h2 {
    margin-bottom: 20px !IMPORTANT;
}

.abtnew_blogs_secc .theme-heading>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 40px;
}


.abtnew_blogs_secc .blog_box > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.abtnew_blogs_secc .blog_box > .blog_box_text > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 15px 0px;
}

.abtnew_blogs_secc .blog_box > .blog_box_text > ul > li {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

.abtnew_blogs_secc .blog_box > .blog_box_text > ul:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 2px;
    height: 100%;
    left: 50%;
}

.abtnew_blogs_secc .blog_box > .blog_box_text > h3 {
    font-size: 29px;
    line-height: 1;
    margin: 20px 0px;
    color: #fff;
}

.abtnew_blogs_secc .blog_box > .blog_box_text > p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    color: #fff;
}


.abtnew_blogs_secc .blog_box {
    background: linear-gradient(90deg, rgba(32, 31, 33, 1) 0%, rgb(48 48 48) 35%, rgb(53 53 53) 100%);
    border-radius: 20px;
}

.abtnew_blogs_secc .blog_box > .blog_box_text {
    padding: 0px 20px 20px;
}

.aboutnewtwo_page .about_new_secc {
    padding-top: 80px;
}

.aboutnewtwo_page .abtnew_video_secc .theme-heading>p {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
}


.development-box-new {
    background: rgb(241, 241, 241);
    padding: 40px 40px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.development-box-new h2 {
    color: #000;
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 700;
}

.development-box-new h3 {
    color: #000;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.development-box-new p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
}
/* new css end */



/*blogs start*/

span.date-box {
    width: 100px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: #35b280;
    bottom: -35px;
    left: 30px;
    color: #fff;
    flex-direction: column;
    font-size: 14px;
    transition: 1s;
    font-weight: 600;
    border-radius: 10px;
    /* padding-top: 10px; */
}

.blog-img-box {
    border-radius: 5px;
    position: relative;
}

span.date-box>span {
    font-size: 47px;
    font-weight: 100;
    margin-bottom: 5px;
    line-height: 45px;
}

.upper-tilte {
    margin: 0 0 10px
}

.blog-cont-box {
    padding: 50px 20px 30px;
    margin-bottom: 50px;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 15px 0 #0000001f;
    background: #ffffff;
    margin-top: -5px;
}

.upper-tilte a {
    color: #606060;
    font-weight: 600;
    font-size: 14px;
    margin-right: 20px
}

.upper-tilte a i {
    margin-right: 5px;
    color: #ffbfa6;
    font-size: 16px
}

.blog-cont-box>h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 35px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-cont-box>a,
.sec_head h3 {
    font-weight: 500;
    text-transform: uppercase
}

.bar-blg {
    margin: 15px 0;
    border-bottom: 1px solid #35b280;
    position: relative;
}

.bar-blg:before {
    height: 5px;
    content: '';
    width: 10%;
    position: absolute;
    bottom: 0;
    transition: 2s;
    background: #35b280;
}
.blog-wrapper:hover .bar-blg:before {
    width: 100%;
}
.blog-cont-box>a {
    color: #000;
    font-size: 18px;
    text-decoration: underline
}
.blog-wrapper:hover span.date-box {
    left: 70%
}

.blog-wrapper:hover .blog-img-box img {
    box-shadow: 0 0 10px 1px #8383837e
}

.blog-cont-box p {
    font-size: 14px;
    line-height: 25px;
    color: #5d5d5d;
    font-weight: 500;
}
.blog-img-box img {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.new_footer_links ul li img {
    width: 30px;
    height: 20px;
    object-fit: contain;
}
ul.growth-list {
    display: flex;
    gap: 40px;
    margin-bottom: 0;
    margin-top: 20px;
}

li.growth-img {
    display: flex;
    align-items: center;
    width: 60%;
}

li.growth-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-right: -20px;
}

ul.growth-list p {
    margin: 0;
}
.mvp_box-wrpp .theme-btn {
    text-transform: uppercase;
}
section.future__developer_secc.all-sec {
    background: #faf9f9;
    padding: 100px 0;
    overflow-x: hidden;
}

section.future__developer_secc.all-sec p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.theme-heading.Future-text h2 {
    color: #0c326a;
    font-weight: bold;
    font-size: 40px;
}
.how-it-works-boxx .works_textt-box>div>h3 span {
    display: block;
}
.hire-laravel-dev.all-sec {
    background: #fff;
}
section.why_diy.mvp_bluids_secc.Secure-sec.mb-5 {
    background: #e8f6fc;
}


/* new css */

.new_banner_add > header.sticky {
    position: fixed;
    padding: 15px 0;
}
header.new-header.sticky {
    padding: 30px 0;
    box-shadow: rgb(0 0 0 / 3%) 0px 3px 8px;
}
.new_banner_add header .theme-btn:after {
    background: #000;
}



.new_banner_srv.banner>.container>img {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
    z-index: -1;
}

.new_banner_srv.banner>.container > .row {
    align-items: center;
}

section.new_banner_srv.banner .new_banner_textt > h1 {
    font-size: 47px;
    color: #fff;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 30px;
}

section.new_banner_srv.banner .new_banner_textt > p {
    color: #fff;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
}

section.new_banner_srv.banner .new_banner_textt > h1:after {
    position: absolute;
    content: "";
    background: #35b280;
    width: 120px;
    height: 2px;
    left: 0;
    bottom: 0;
}

section.new_banner_srv.banner .new_banner_textt > .theme-btn {
    /* border-radius: 5px; */
    margin-top: 20px;
}

section.new_banner_srv.banner .new_banner_textt > ul {
    margin-bottom: 0;
    margin-top: 30px;
}

section.new_banner_srv.banner .new_banner_textt > ul > li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 200;
}

section.new_banner_srv.banner .new_banner_textt > ul > li:last-child {
    margin: 0;
}

section.new_banner_srv.banner .new_banner_textt > ul > li > i {
    color: #35b280;
}

section.new_banner_srv.banner .banner-in input {outline: none;}

section.new_banner_srv.banner .role_secc {
    margin-top: 0;
    margin-bottom: 20px;
}

section.new_banner_srv.banner .role_secc button:after {
    background: #000;
}

.new_banner_add .devs__sec {
    background: #fff;
}

.new_banner_add .devs__sec > .container {
    background: #ecf7f3;
    height: 100%;
    padding: 30px;
    border-radius: 5px;
}

.new_banner_add .devs__sec .devs_boxx {
    height: auto;
    margin: 0;
}

.new_banner_add .devs__sec .devs_boxx:before {
    display: none;
}

.new_banner_add .devs__sec .devs_boxx:after {
    display: none;
}

.new_banner_add .devs__sec .devs_boxx>h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.devs-parent-box > .devsnew_box_wrpr {
    background: #faf9f9;
    padding: 40px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.devs-parent-box > .devsnew_box_wrpr:last-child {
    margin: 0;
}

.devs-parent-box > .devsnew_box_wrpr .row {
    align-items: center;
}

.devs-parent-box > .devsnew_box_wrpr .row > * > img {
    width: 100%;
}

.devs-parent-box > .devsnew_box_wrpr h3 {
    font-size: 35px;
    color: #000;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
}

.devs-parent-box > .devsnew_box_wrpr span {
    font-size: 20px;
    color: #000;
    display: block;
    line-height: 1.1;
    margin-bottom: 20px;
}

.devs-parent-box > .devsnew_box_wrpr ul {
    margin: 0;
}

.devs-parent-box > .devsnew_box_wrpr ul > li {
    display: inline-block;
    padding: 5px 15px;
    margin: 3px 0px;
    background: #35b280;
    color: #fff;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 500;
}

.hire-devs_boxx>span {
    line-height: 1.2;
    display: block;
    margin-top: 5px;
}

body.contact-pgg.new_banner_add section.new_banner_srv.banner .new_banner_textt > h1:after {
    margin: 0 auto;
    right: 0;
}

body.about-page.new_banner_add section.new_banner_srv.banner .new_banner_textt > h1:after {
    margin: 0 auto;
    right: 0;
}

nav .customContainer img.logo_add {
    margin-bottom: 40px;
    width: 210px;
    filter: brightness(0) invert(1);
}
.small_img.ofc-img-new img {
    object-position: top;
}
.big_img {
    overflow: hidden;
    border-radius: 5px;
}

section.abtnew_cultur_secc img:hover {
    transform: scale(1.2);
    transition: 0.5s;
}

.small_img {
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
}

/*/* new css */

.abtnew_ceo_sec .ceo_box_wrpr > .ceo_box_textt > h3 > a > i {
    background: #5384fe;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px 0px #00000036;
    border-radius: 5px;
    font-size: 25px;
}

.abtnew_ceo_sec .ceo_box_wrpr > .ceo_box_textt > h3 {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cultur_slider .slick-slide {
    opacity: 1;
}

nav .customContainer .follow_div_up {
    margin-top: -140px;
}

.how-it-works-boxx.second-last-boxx.commencement_box:after {
    height: 90%;
}

.how-it-works-boxx.consultation_box:after {top: 47%;height: 93%;}

.how-it-works-boxx.second-last-boxx.consultation_box:after {
    top: 50%;
    height: 92%;
}

.how-it-works-boxx.proposals_box:after {
    height: 96%;
}

.how-it-works-boxx.second-last-boxx.proposals_box:after {
    top: 50%;
    height: 90%;
}

.mvp_bluids_secc .theme-heading.heading_wrpp_two h2 > br {
    display: none !important;
}
header.sticky img.new_filter {
    filter: invert(1);
}
section.about_new_secc video {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
}
body.aboutnew_page .logo-here>img {
    filter: invert(1);
}
img.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    width: 100%;
}

.contact-pgg img.banner-img {
    object-position: 0px -40px;
}

section.technologies-wrap .theme-heading>h2 {
    margin: 0 !important;
}
section.abtnew_awards_sec .col {
    flex: unset;
    width: 20%;
}


/*new css start*/
section.operate-at-peak {
    padding: 100px 0 0;
}

.operate-at-peak-text h4 {
    font-size: 23px;
    color: rgb(35, 46, 93);
}

.operate-at-peak-text h2 {
    color: rgb(36, 36, 36);
    font-size: 25px;
    font-weight: 600;
}

.operate-at-peak-text p {
    line-height: 30px;
    font-weight: 500;
    padding-right: 10px;
}
.d-flex {
    align-items: center;
}

.operate-right-side {
    border-bottom: 1px solid #dfdfdf;
    padding: 40px 0 40px 20px;
    border-left: 1px solid #dfdfdf;
}

.operate-right-side p {
    margin: 0;
    line-height: 30px;
    font-weight: 500;
}

.operate-right-side h4 {
    color: #000;
    font-weight: 700;
    font-size: 28px;
}
.operate-right-side.brd-btm {
    border-bottom: unset;
}
.operate-img img {
    width: 100%;
    object-fit: cover;
    height: 450px;
    border-radius: 5px;
}

/*new css end*/


.latest-banner:after {
    display: none;
}

.latest-banner h1 {
    color: #233064 !important;
}

.latest-banner p {
    color: #233064 !important;
    font-size: 20px !important;
    font-weight: 500;
}
.latest-banner h4 {
    color: #233064;
}

.menu ul {
    display: flex;
    gap: 0;
    justify-content: space-between;
}

.menu a {
    color: #233064;
    font-weight: 500;
    font-size: 16px;
    transition: 0.5s;
    position: relative;
}
.menu a:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: #35b280;
    margin: 0 auto;
    right: 0;
    transition: 0.5s;
}

.menu a:hover:before {
    width: 100%;
}
header.new-header .container {
    padding: 0;
    border: unset;
}
.banner-new-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
}

.banner-new-img img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.header-btn {
    text-align: end;
}

.header-btn a {
    color: #fff;
    border-radius: 50px;
    padding: 12px 35px;
    color: #000;
    background: #fff;
    border: 1px solid #fff;
}
.case-study ul {
    margin: 0;
    display: flex;
    align-items: end;
    font-size: large;
    gap: 50px;
}

.case-study {
    background-image: -webkit-linear-gradient( 0deg, rgb(40,49,142) 0%, rgb(164,246,211) 91%);
    padding: 20px 40px;
}

.case-study h4 {
    color: #fff;
    font-size: 15px;
}

.case-study h3 {
    /*font-size: 16px;*/
    font-size: 14px;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.case-study a {
    border: 1px solid;
    color: #fff;
    border-radius: 50px;
    padding: 4px 21px;
    font-size: 20px;
}

header.new-header {
    padding: 20px 0;
}

.new-form input {
    border: unset;
    border-bottom: 1px solid #233064;
    width: 70%;
    padding: 15px 10px;
    color: #233064;
    font-weight: 500;
}

.new-form input::placeholder {
    color: #233064;
    font-weight: 500;
    font-size: 12px;
    opacity:0.7;
    text-transform:none !important;
}

.operate-right-side a:hover {
    text-decoration: underline;
}

.hrlnk{
    
}

.hrlnk:hover {
    text-decoration: underline;
}


.new-form button {
    width: 30%;
    background: unset;
    border: 1px solid #000000;
    border-radius: 50px;
    height: 45px;
    color: #233064;
    font-weight: 500;
    font-size: 18px;
}

.new-form form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
}
.development-box-new h4 {
    color: #35b280;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}
section.break-free {
    padding: 100px 0;
}

.break-free-text h4 {
    color: #233064;
}
.break-free-text h3 {
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 1.3;
    color: #242424;
}
.mastery-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.5s;
}

.mastery-text h4 {
    color: rgb(35, 46, 93);
    /* margin-bottom: 0px; */
}

.mastery-text h2 {
    font-size: 40px;
    margin-bottom: 25px !important;
}

section.exclusivity-wrap.all-sec .theme-heading.mastery-text p {
    width: 80%;
    margin: 0 auto;
}

.theme-heading.mastery-text p {
    line-height: 30px !important;
    font-size: 16px !important;
}
.white-label-digital-img img {
    height: auto;
}
header.new-header.sticky .header-btn a {
    color: #233169;
    border-color: #233169;
}
.operate-at-peak-text1 {
    margin-top: 120px;
}
.fixed-page {
    font-family: 'Now-Regular';
}

.fixed-page h1, h2, h3, h4, h5, h6, p, input, button {
    font-family: 'Now-Regular';
}
.latest-banner {
    height: 800px;
}
.fixed-page h1:after {
    display: none;
}
.fixed-page .expertise_boxx>h4 {
    font-weight: 500;
}

.fixed-page .expertise_boxx>p {
    line-height: 28px;
    color: rgba(255, 255, 255, 0.702);
}
.fixed-page h1 {
    font-size: 44px !important;
}
.fixed-page h1 span {
    display: block;
}
.expand-sec {
    background: unset !important;
    padding-top: 20px !important;
}

.carrer-img img {
    height: 750px;
}
.join-family-text h4 {
    color: #232e5d;
}

.join-family-text h2 {
    color: #000;
    font-size: 40px;
    font-weight: 600;
}

section.join-family-wrap {
    padding: 50px 0;
}

.join-family-text p {
    width: 95%;
    margin: 0 auto;
}

.family_slider .slick-slide {
    opacity: 1;
}
.skills_vid_wrpnew {
    position: relative;
}

.skills_vid_wrpnew i {
    /* position: absolute; */
    top: 45%;
    left: 48%;
    color: #fff;
    font-size: 30px;
    border: 5px solid;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
video.play_video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}
.hiring-box {
    border-radius: 5px;
    background-color: rgb(239, 239, 239);
    padding: 60px 30px;
    height: 230px;
}

.hiring-box h4 {
    font-size: 25px;
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    font-weight: 600;
}
section.hiring-process-wrap .join-family-text h2 {
    margin-bottom: 10px;
}
.job-wrap .theme-heading>h2 {
    margin-bottom: 10px !important;

}
.job-wrap:after {
    display: none;
}
a.job-btn {
    border: 1px solid;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    display: inline-block;
    margin-top: 30px;
}
.job-wrap .expertise_boxx {
    height: 280px;
}

.job-wrap .expertise_boxx p {
    height: 80px;
}
.perks-img img {
    height: auto;
}
.mastery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 95%;
    margin: 0 auto;
}

.mastery-img:hover img {
    /* transform: scale(1.3); */
}
.work-wrap .expertise_boxx {
    height: 250px;
}
.work-wrap {
    background: #faf9f9;
}
a.play-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}


 a.play-btn > h3 {
    font-size: 61.98px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Sofia Pro';
    font-weight: bold;
    text-shadow: 0px 5px 12px #00000073;
    font-family: "Montserrat", sans-serif;
}
section.skill-360-wrap .skills_vid_wrpnew i {
    border: unset;
    font-size: 80px;
}
.mastery-text h2 span {
    display: block;
}
.Workforce-wrap {
    padding-top: 60px !important;
    
}

.new-btn {
    border: 1px solid #000000;
    border-radius: 50px;
    padding: 12px 40px;
    color: #233064;
}
.probyte-solutions-banner {
    position: relative;
}

.probyte-solutions-banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 30%;
    background: #0c326b;
    z-index: -1;
}

.probyte-solutions-banner-img {position: relative;bottom: 0;right: 80px;/* width: 40%; */margin-right: -380px;margin-left: 30px;left: -40px;}

.probyte-solutions-banner-img img {
    width: 100%;
}

section.new_banner_srv.banner.latest-banner.probyte-solutions-banner {
    height: auto;
    padding: 140px 0 0;
}
section.boost-employee-retention {
    background: #faf9f9;
    padding: 100px 0;
    overflow-x: hidden;
}

.boost-employe-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 5px;
    filter: brightness(.8);
}

.boost-employe-box {
    position: relative;
}

.boost-employe-text {
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 95%;
    z-index: 999;
}

.boost-employe-text h4 {
    color: #fff;
    font-size: 20px;
}

.boost-employe-text p {
    color: #fff;
}

.boost-employe-box:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: linear-gradient(#ff000000, #00603ae0);
    z-index: 2;
    border-radius: 10px;
}
.slick-slide {
    opacity: 1;
}
.boost-employe-slider {
    margin-right: -650px;
}
.boost-employe-slider.slick-initialized.slick-slider .slick-list.draggable {
    padding-left: 0 !important;
}
.exclusivity-main {
    background-image: url(../images/new-img/exclusivity-slider-img1.jpg);
    background-size: cover;
    padding: 80px 0;
    border-radius: 20px;
    background-attachment: fixed;
    background-position: bottom;
    box-shadow: 0 0 8px 3px #0000002e;
}
section.exclusivity-wrap.all-sec {
    padding-top: 100px;
}
.exclusivity-main1 {
    background-image: url(../images/new-img/exclusivity-slider-img-back.jpg);
    background-size: cover;
    padding: 80px 0;
    background-attachment: fixed;
    background-position: bottom;
}
section.exclusivity-wrap1 {
    padding-top: 100px;
}


.boost-employee-retention .slick-dots li button:before {
    position: absolute;
    content: "";
    background: #999999;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.boost-employee-retention .slick-dots li button {
    width: 7px;
    height: 7px;
    padding: 0;
    margin: 0;
}

.boost-employee-retention .slick-dots li {
    width: 7px;
    height: 7px;
    opacity: 1;
    margin: 0;
    transition: 0.3s ease-in-out;
}

.boost-employee-retention .slick-dots {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 10px;
    bottom: -40px;
}

/*.boost-employee-retention .slick-dots li.slick-active {*/
/*    width: 30px;*/
/*}*/

.boost-employee-retention .slick-dots li.slick-active button:before {
    background: #35b280;
    /*width: 34px;*/
}

.boost-employee-retention .slick-slide {
    margin: 0 10px;
}

section.exclusivity-wrap.all-sec .slick-arrow > i {
    font-size: 20px;
    color: #068351;
    width: 60px;
    height: 60px;
    border: 1px solid #35b280;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: inset 0 0 19px 6px #35b2808a;
}

section.exclusivity-wrap.all-sec .slick-arrow:before {
    display: none;
}

section.exclusivity-wrap.all-sec .slick-arrow {
    width: 60px;
    height: 60px;
    z-index: 1;
}

section.exclusivity-wrap.all-sec .slick-prev {
    left: -14%;
}

section.exclusivity-wrap.all-sec .slick-next {
    right: -14%;
}

section.exclusivity-wrap.all-sec .slick-slide {
    margin: 0 20px;
}

.staf_aug_pgg .latest-banner {
    height: 100vh;
}

.pro_solu_pgg section.new_banner_srv.banner.latest-banner.probyte-solutions-banner {
    height: 100vh;
}


/* new page */

.pro_solu_pgg_two .probyte-solutions-banner:before {
    background: url(../images/new-imgs/prob_sol_bg1.jpg);
    background-size: cover;
}

.pro_solu_pgg_two .probyte-solutions-banner-img {
    margin-right: -540px;
    left: -60px;
    bottom: -50px;
}


.cross_functional_secc {
    padding: 80px 0px;
}

.cross_functional_secc .cross_functional_img_wrp {
    position: relative;
}

.cross_functional_secc .cross_functional_img_wrp > img {
    width: 100%;
}

.cross_functional_secc .cross_functional_img_wrp > a {
    background: #8e6afb;
    color: #fff;
    font-size: 16px;
    height: 45px;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    border-radius: 10px;
    position: absolute;
    top: 30%;
    left: -100px;
    /*transition: 0.3s ease-in-out;*/
    /*-webkit-animation: 2s cubic-bezier(.25,0,0,1) 3s infinite pulse;*/
    /*animation: 2s cubic-bezier(.25,0,0,1) 3s infinite pulse;*/
    /*box-shadow: 0 0 0 2px #8e6afb;*/
        cursor: context-menu;
}


/*@-webkit-keyframes pulse {*/
/*    to {*/
/*        box-shadow:0 0 0 18px rgba(255,255,255,0)*/
/*    }*/
/*}*/

/*@keyframes pulse { */
/*    to {*/
/*        box-shadow:0 0 0 18px rgba(255,255,255,0)*/
/*    }*/
/*}*/


.cross_functional_secc .cross_functional_textt_wrp > h2 {
    font-size: 38px;
    line-height: 1.4;
    font-weight: 700;
    color: #000;
}

.cross_functional_secc .cross_functional_textt_wrp > p {
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
}

.cross_functional_secc .cross_functional_textt_wrp > p:last-child {
    margin: 0;
}

.cross_functional_secc .row {
    align-items: center;
}

.pro_solu_pgg_two .operate-img img {
    margin-left: -15px;
    margin-bottom: -26px;
}

.promedic_patient_secc {
    background: #f3fbff;
    padding: 80px 0px;
}

.promedic_patient_secc > .container > .row {
    align-items: center;
}

.promedic_patient_secc .promedic_textt > h2 {
    font-size: 40px;
    color: #000;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.promedic_patient_secc .promedic_textt > p {
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 16px;
}

.promedic_patient_secc .promedic_img > img {
    width: 100%;
}

.promedic_bottom_wrp > .container-fluid {
    padding-right: 0;
    padding-left: 95px;
}

.promedic_patient_secc .promedic_bottom_wrp {
    margin-top: 40px;
}

.promedic_patient_secc .promedic_bottom_wrp .promedic_box_wrp {
    position: relative;
    height: 300px;
    border-radius: 5px;
    z-index: 1;
    padding: 30px 20px;
    overflow: hidden;
}

.promedic_patient_secc .promedic_bottom_wrp .promedic_box_wrp > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 5px;
}

.promedic_patient_secc .promedic_bottom_wrp .promedic_box_wrp > h3 {
    font-size: 28px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.promedic_patient_secc .promedic_bottom_wrp .promedic_box_wrp > p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    opacity: .8;
}

.pro_solu_pgg_two section.break-free {
    background: #faf9f9;
}

.btn2 {
    background: #35b280;
    color: #fff;
    font-size: 16px;
    height: 45px;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    border-radius: 30px;
    border: 1px solid #35b280;
    transition: 0.3s ease-in-out;
}

.btn2:hover {color: #35b280;background: #35b28026;transition: 0.3s ease-in-out;}
a.btn-blue {
    border: 1px solid #000000;
    color: #233064;
}
section.new_banner_srv.banner.latest-banner.solution-banner {
    height: 950px;
}
.olp-wrap .theme-heading.mastery-text p {
    width: 100% !important;
   
}
.complete-control .mvp-sticky-box {
    padding: 70px 0;
}
.Optimizing-wrap {
    background: #f3fbff !important;
  
}
.border-btm {
    border-bottom: unset;
}
.optimizing-slider-box .boost-employe-img {
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.optimizing-slider-box .boost-employe-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #35b280d9;
    z-index: 1;
    border-radius: 10px;
}


.optimizing-slider-box .boost-employe-img img {
    border-radius: 10px;
}

.optimizing-slider-box .boost-employe-text {
    left: 30px;
}
.optimizing-slider-text {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 99;
}
.optimizing-slider-text h4 span {
    display: block;
    line-height: 30px;
}
.optimizing-slider-text * {
    color: #fff;
}

.optimizing-slider-text p {
    font-size: 18px !important;
    line-height: 28px !important;
}

.optimizing-slider {
    margin-right: -650px;
}
.optimizing-slider .boost-employe-img img {
    height: 300px;
}
.optimizing-slider-box {
    position: relative;
}
section.learning-management {
    padding: 100px 0;
    background: #faf9f9;
}


section.learning-management .break-free-text a {
    background: #35b281;
    color: #fff;
    border-radius: 50px;
    padding: 12px 40px;
    display: inline-block;
}
.olp-app-img {
    margin-left: -80px;
}


/* new css */


header.new-header .menu > #menu > li {
    position: relative;
}



header.new-header .menu > #menu > li > ul.dropdown_box_new > li > a {
    padding: 15px 20px;
    width: 100%;
    display: block;
    transition: 0.2s ease-in-out;
}

header.new-header .menu > #menu > li > ul.dropdown_box_new > li {
    display: block;
    width: 100%;
}

header.new-header .menu > #menu > li > ul.dropdown_box_new > li > a:before {
    display: none;
}

header.new-header .menu > #menu > li > ul.dropdown_box_new > li > a:hover {
    background: #35b280;
    color: #fff;
}

header.new-header .menu > #menu > li.curr > ul.dropdown_box_new {
    display: flex;
}

.new-header {
    padding: 30px 0 !Important;
}

.new-header.currShow {
    background: #e7ecf8;
}

header.new-header .menu > #menu > li >a >i {
    margin-left: 6px;
}

.career_newpage .header-btn a {
    background: #fff;
    color: #000;
}


.career_newpage .case-study h4 > a {
    border: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0077B5;
    font-size: 20px;
    border-radius: 5px;
}

.career_newpage .case-study h4 {
    display: flex;
    align-items: center;
    gap: 20px;
}


.new_banner_srv.banner .new_banner_textt > span.bannr_tag {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 14px;
    border: 1px solid #000;
    width: fit-content;
    padding: 0 30px;
    height: 35px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    margin-bottom: 20px;
    background: #233064;
}

.developer_expertise_secc:after {
    display: none;
}

.case_studypagee .header-btn a {
    color: #233064;
}

.aboutnew_page .header-btn a {
    color: #233064;
    font-weight: 500;
}

body.contact-pgg.new_banner_add .banner:after {
    display: none;
}

.contact-pgg.new_banner_add .header-btn a {
    color: #233064;
    font-weight: 500;
    border: 1px solid;
}

body.contact-pgg.new_banner_add section.new_banner_srv.banner .new_banner_textt > h1 {
    color: #000;
}



/*new header css start*/
header.new-header .menu > #menu > li > ul.dropdown_box_new {
    position: absolute;
    flex-direction: column;
    width: 930px;
    align-items: baseline;
    gap: 0;
    top: 57px;
    background: #E7ECF8;
    /* border: 1px solid #35b280; */
    display: none;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    left: -220px;
}
.mega-menu-wrp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
}

ul.resources-menu-items {
    flex-direction: column !important;
    align-items: flex-start;
    display: flex;
    gap: clamp(20px, 2vw, 20px);
    margin-bottom: 0;
}

.res-menu-left {
    width: calc(50% - 6px);
    padding: 32px;
    background-color: #fff;
    border-radius: 5px;
    height: 100%;
    height: 467px;
}
.res-menu-right {
    width: calc(50% - 3px);
    padding: 32px;
    border-radius: 5px;
    background-color: #233064;
    height: 100%;
}

a.featured-box img {
    height: 282px;
    border-radius: 5px;
}

ul.resources-menu-items li a {
    display: flex;
    gap: 16px;
    align-items: center;
    text-transform: capitalize;
}

p.item-heading {
    margin-bottom: 0;
}

a.featured-box {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    position: relative;
}
.header-menu .featured-box {
    display: flex;
    flex-direction: column;
    padding: clamp(16px, 1.5vw, 22px) 2px 2px;
    border-radius: 8px;
    background-color: var(--white);
    position: relative;
}

h2.right-box-heading {
    font-size: 30px;
    color: #fff;
}

p.right-box-desc {
    padding: 0 12px;
}

span.card-chip {
    position: absolute;
    bottom: 14px;
    left: 18px;
    color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: .39px;
    padding: 4px 8px;
    background-color: #0755e9;
    border-radius: 12px;
}
.drop-img-span {
    width: 50px;
    height: 50px;
    /* background: #e7ecf8; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-img-span img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
ul.resources-menu-items li a:before {
    display: none;
}

.res-menu-center {
    width: calc(27% - 6px);
    padding: 32px;
    background-color: #fff;
    border-radius: 12px;
}

.solutions-dropdown {
    left: -330px;
    width: 1330px !important;
}
.res-menu-center  h2 {
    font-size: 35px;
    color: #233064;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 0px;
}

.solutions-dropdown .res-menu-center {padding: 20px 20px 185px;}
.mega-menu-wrp .menu-right {
    width: calc(50% - 4px);
    background-color: #233064;
    border-radius: 5px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mega-menu-wrp .menu-heading {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 10px;
}
.menu-right .menu-links-wrp ul li a {
    display: inline-block;
    padding: 6px clamp(12px, 0.9vw, 16px);
    border-radius: 100px;
    background-color: #35b28000;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    line-height: normal;
    border: 1px solid #35b280;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: 0.3s ease-in-out;
}

.menu-new {
    display: block !important;
  
}


.menu-new li {
    display: inline-block;
}
.menu-right .menu-links-wrp ul li a:before {
    display: none;
}
.solutions-dropdown .res-menu-left {
    width: calc(50% - 6px);
    padding: 20px 20px 223px;
    height: 569px;
}




.menu-advisory-container ul {
    display: block;
}

.menu-advisory-container li {
    line-height: 40px;
}
.res-menu-left h2 {
    color: #233064;
    font-size: 25px;
    font-weight: 600;
    margin: 20px 0;
}
h3.box-heading {
    margin-bottom: 10px;
    font-size: 18px;
}
.solution-box {
    width: 49%;
    display: inline-block;
}

.whats-new p {
    font-size: 12px;
}


.solutions-dropdown .whats-new img {
    height: 110px;
    object-fit: cover;
    border-radius: 5px;
}

.solutions-dropdown .menu-right {
    padding: 15px;
}


a.featured-box:before {
    display: none;
}
/*new header css end*/

.new-form input::placeholder {
    text-transform: capitalize;
}

.contact-secc form textarea::placeholder {
    color: #000;
}

.menu-right .menu-links-wrp ul li a:hover {
    background: #35b280;
}

.menu-right .menu-links-wrp.parent-expertise ul li a {
    border-color: #f67023;
}

.menu-right .menu-links-wrp.parent-expertise ul li a:hover {
    background: #f67023;
}

header.new-header .menu > #menu > li > ul.dropdown_box_new.solutions-dropdown {
    left: -240px !IMPORTANT;
}

ul.resources-menu-items li a p {
    margin: 0;
    font-size: 14px;
    margin-top: 3px;
}

ul.resources-menu-items li {
    margin-bottom: 20px;
}

header.new-header .menu > #menu > li.curr > a > i {
    transform: rotate(180deg);
}

header.new-header .menu > #menu > [data-drop] > a:before {
    display: none;
}

body.full_stack_web_page.front-end-pagee.new_banner_add.fixed-page.web_dev_page .expertise_boxx {
    height: 280px;
}

ul.dropdown_box_new.solutions-dropdown.services ul.resources-menu-items li a {
    position: relative;
    padding-left: 20px;
}

ul.dropdown_box_new.solutions-dropdown.services ul.resources-menu-items li a:after {
    position: absolute;
    content: "";
    background: #233064;
    width: 7px;
    height: 7px;
    left: 0;
    top: 7px;
    border-radius: 50%;
}

/* new page */

.inventory_pagee .boost-employe-img img {
    height: 350px;
}

.inventory_pagee .boost-employe-box:before {
    height: 100%;
    background-image: linear-gradient(#0cad6dd4, #00603ae0);
}

.inventory_pagee section.boost-employee-retention .row {
    align-items: center;
}

.inventory_pagee .boost-employee-retention .slick-dots {
    display: none !important;
}

.inventory_pagee .olp-app-img {
    margin: 0;
}


.inventory_pagee .probyte-solutions-banner-img >img.ban_vecimg1 {
    position: absolute;
    width: auto;
    height: auto;
    right: 6%;
    top: 20%;
}

.inventory_pagee .probyte-solutions-banner-img >img.ban_vecimg2 {
    position: absolute;
    width: auto;
    height: auto;
    bottom: 0;
    left: 50px;
}

/* new css */


.probyte-solutions-banner-img.proplus_ban > img {width: auto;}

.probyte-solutions-banner-img.proplus_ban {margin-right: -400px;left: -70px;}

.probyte-solutions-banner-img.proplus_ban > img.banprop_vec1 {
    position: absolute;
    top: 14%;
    left: -30px;
    border-radius: 5px;
    width: 260px;
}

.probyte-solutions-banner-img.proplus_ban > img.banprop_vec2 {
    position: absolute;
    top: 30%;
    right: -11%;
    border-radius: 14px;
    width: 300px;
}

.probyte-solutions-banner-img.proplus_ban > img.banprop_vec3 {
    position: absolute;
    bottom: 10px;
    left: 10%;
    border-radius: 12px;
    width: 280px;
}

.probyte-solutions-banner-img.proplus_ban > img.banprop_icon1 {
    position: absolute;
    top: 13%;
    right: 26%;
    width: 80px;
}

.probyte-solutions-banner-img.proplus_ban > img.banprop_icon2 {
    position: absolute;
    top: 42%;
    left: 24%;
    width: 80px;
}

.probyte-solutions-banner-img.proplus_ban > img.banprop_icon3 {
    position: absolute;
    bottom: 7%;
    right: 25%;
    width: 80px;
}

.probyte-solutions-banner-img.proplus_ban > img.prop_banimg {
    width: 40%;
    display: block;
    margin: 0 auto;
}


.probyte-solutions-banner-img.promedic_banimg_wrp > img {
    width: auto;
}

.probyte-solutions-banner-img.promedic_banimg_wrp > img.medic_banvec1 {
    position: absolute;
    top: 20%;
    left: 6%;
    border-radius: 10px;
    width: 180px;
    filter: drop-shadow(2px 4px 6px #00000017);
}

.probyte-solutions-banner-img.promedic_banimg_wrp > img.medic_banvec2 {
    position: absolute;
    bottom: 50px;
    border-radius: 14px;
    filter: drop-shadow(2px 4px 6px #00000017);
    left: -50px;
}

.probyte-solutions-banner-img.promedic_banimg_wrp > img.medic_banvec3 {
    position: absolute;
    top: 53%;
    right: 110px;
    border-radius: 12px;
    filter: drop-shadow(2px 4px 6px #00000017);
}

.probyte-solutions-banner-img.promedic_banimg_wrp > img.medic_banimg {
    display: block;
    margin: 0 auto;
    width: 69%;
}


.probyte-solutions-banner-img.olpro_ban_wrpr > img {
    width: auto;
}

.probyte-solutions-banner-img.olpro_ban_wrpr > img.olban_img {
    display: block;
    margin: 0 auto;
    width: 55%;
}

.probyte-solutions-banner-img.olpro_ban_wrpr > img.olban_vec1 {
    position: absolute;
    top: 0;
    left: 12%;
}

.probyte-solutions-banner-img.olpro_ban_wrpr > img.olban_vec2 {
    position: absolute;
    top: 13%;
    right: 4%;
    filter: drop-shadow(2px 4px 6px #0000003b);
    width: 244px;
}

.probyte-solutions-banner-img.olpro_ban_wrpr > img.olban_vec3 {
    position: absolute;
    bottom: -6%;
    left: 10%;
    filter: drop-shadow(2px 4px 6px #0000003b);
    width: 165px;
}


/* new footer */


.new_footer_wrpr .container-fluid {
    padding: 0 9%;
}

.new_footer_wrpr > .new_footer_wrp_one .new_footr_linkbox > h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 26px;
}

footer.new_footer_wrpr {
    background: #233169;
    padding: 70px 0 0px;
}

.new_footer_wrpr > .new_footer_wrp_one .new_footr_linkbox > ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.new_footer_wrpr > .new_footer_wrp_one .new_footr_linkbox > ul > li > a {
    transition: 0.2s ease-in-out;
    color: #b8b8b8;
    font-size: 15px;
}

.new_footer_wrpr > .new_footer_wrp_one .new_footr_linkbox > ul > li > a:hover {
    color: #fff;
}

.new_footer_wrpr > .new_footer_wrp_one .new_footr_linkbox > p {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    font-weight: 300;
}

.new_footer_wrpr > .new_footer_wrp_one .new_footr_linkbox > form > input {
    width: 100%;
    height: 50px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 8px;
        outline: none;
}

.new_footer_wrpr > .new_footer_wrp_one .new_footr_linkbox > form > input::placeholder {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.new_footer_wrpr > .new_footer_wrp_one .new_footr_linkbox > form {
    margin-bottom: 20px;
}

.new_footer_wrpr > .new_footer_wrp_one .new_footr_linkbox > ul.social_med {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.new_footer_wrpr > .new_footer_wrp_one .new_footr_linkbox > ul.social_med > li > a > i {
    font-size: 25px;
    color: #b8b8b8;
    transition: 0.3s ease-in-out;
}

.new_footer_wrpr > .new_footer_wrp_one .new_footr_linkbox > ul.social_med > li > a > i:hover {
    color: #fff;
}

footer.new_footer_wrpr > .new_footer_wrp_two {
    border-top: 1px solid #ffffff0f;
    padding-top: 50px;
    margin-top: 50px;
    border-bottom: 1px solid #ffffff0f;
    padding-bottom: 50px;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp > a > img {
    width: auto;
    display: block;
    margin-bottom: 20px;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp > p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    width: 80%;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp > h4 {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 26px;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp > h4 > img {
    width: 40px;
    margin-top: -3px;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp > a {
    color: #b8b8b8;
    font-size: 15px;
    width: 80%;
    display: block;
    transition: 0.2s ease-in-out;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp > a:hover {
    color: #fff;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp > ul > li > a {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    color: #b8b8b8;
    font-size: 15px;
    transition: 0.2s ease-in-out;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp > ul > li > a:hover {
    color: #fff;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp > .otherflags_wrp {
    display: flex;
    align-items: center;
    gap: 20px;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp > .otherflags_wrp > a > img {
    width: 50px;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp > ul {
    margin: 0;
}

footer.new_footer_wrpr > p {
    text-align: center;
    margin: 0;
    padding: 30px 0px;
    font-size: 16px;
    color: #FFF;
    font-weight: 400;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp {
    position: relative;
}

footer.new_footer_wrpr > .new_footer_wrp_two .footer_info_wrp:after {position: absolute;content: "";background: #ffffff0f;width: 1px;height: 228px;top: -50px;right: 30px;}

.new_footer_wrpr > .new_footer_wrp_one .new_footr_linkbox > form >  button {
    width: 100%;
    border: 0;
    border-radius: 5px;
    height: 50px;
}


body.privacy_pagee .header-btn a {
    border-color: #233064;
    color: #233064;
}

.privacy_policy_secc {
    padding: 10% 0 100px;
}

.privacy_policy_secc h1 {
    color: #000;
    text-align: center;
    margin-bottom: 40px;
    font-size: 60px;
    font-weight: 700;
    font-family: 'Now-Regular';
}

.privacy_policy_secc h2 {
    font-size: 35px;
    font-weight: 600;
    color: #000;
    margin: 30px 0px;
}

.privacy_policy_secc ul > li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 16px;
    color: #000;
}

.privacy_policy_secc p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy_policy_secc ul > li:after {
    position: absolute;
    content: "";
    background: #233064;
    width: 7px;
    height: 7px;
    left: 0;
    top: 6px;
    border-radius: 50%;
}

.new_footer_wrp_two .row > *:last-child > .footer_info_wrp:after {
    display: none;
}

ul.resources-menu-items li a p {
    position: relative;
}

ul.resources-menu-items li a p:after {
    position: absolute;
    content: "";
    background: #233064;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    transition: 0.3s ease-in-out;
}

ul.resources-menu-items li a:hover p:after {
    width: 98%;
}

ul.dropdown_box_new.solutions-dropdown.services ul.resources-menu-items li a .item-data {
    position: relative;
}
ul.dropdown_box_new.solutions-dropdown.services ul.resources-menu-items li a .item-data:after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    left: 0;
    bottom: -5px;
    background: #233064;
    transition: 0.3s ease-in-out;
}

ul.dropdown_box_new.solutions-dropdown.services ul.resources-menu-items li:hover a .item-data:after {
    width: 100%;
}

footer.new_footer_wrpr .new_footer_wrp_three {
    padding: 20px 0px;
}

footer.new_footer_wrpr .new_footer_wrp_three ul {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 30px;
}

footer.new_footer_wrpr .new_footer_wrp_three .row {
    align-items: center;
}

footer.new_footer_wrpr .new_footer_wrp_three ul > li > a {
    transition: 0.2s ease-in-out;
    color: #b8b8b8;
    font-size: 15px;
}

footer.new_footer_wrpr .new_footer_wrp_three ul > li > a:hover {
    color: #fff;
}

footer.new_footer_wrpr .new_footer_wrp_three p {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 15px;
}

footer.new_footer_wrpr .new_footer_wrp_three .row > *:last-child > ul {
    justify-content: end;
}


/* css slider */


.exclusivityslider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.exclusivityslider {
  display: flex;
  align-items: center;
  justify-content: start;
  animation: slide 70s linear infinite;
  gap: 30px;
  height: 100%;
}

.exclusivityslide {
    min-width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-420%);
  }
}

.exclusivityslider-container:hover .exclusivityslider {
  animation-play-state: paused;
}

/* css slider end */


.exclusivity-main.newcss_addng {
    padding: 70px 0px;
}

/* css slider 2 */

.exclusivity-main.newcss_addng .exclusivity-slider > div > img {
    width: 95%;
    margin: 0 auto;
    display: block;
}


.exclusivityslider-container2 {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.exclusivityslider2 {
  display: flex;
    align-items: center;
  justify-content: start;
  animation: slide2 90s linear infinite;
  gap: 30px;
}

.exclusivityslide2 {
    min-width: 80%;
    height: 920px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-500%);
  }
}

.exclusivityslider-container2:hover .exclusivityslider2 {
  animation-play-state: paused;
}

/* css slider 2 end */

/* css slider 3 */


.exclusivityslider-container3 {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.exclusivityslider3 {
  display: flex;
    align-items: center;
  justify-content: start;
  animation: slide3 40s linear infinite;
  gap: 30px;
}

.exclusivityslide3 {
    min-width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

@keyframes slide3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-110%);
  }
}

.exclusivityslider-container3:hover .exclusivityslider3 {
  animation-play-state: paused;
}

.exclusivityslide3 > img {
    width: 100%;
}

/* css slider 3 end */

/* css slider 4 */


.exclusivityslider-container4 {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.exclusivityslider4 {
  display: flex;
    align-items: center;
  justify-content: start;
  animation: slide4 60s linear infinite;
  gap: 30px;
}

.exclusivityslide4 {
    min-width: 80%;
    height: 920px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

@keyframes slide4 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-240%);
  }
}

.exclusivityslider-container4:hover .exclusivityslider4 {
  animation-play-state: paused;
}

.exclusivityslide4 > img {
    width: 100%;
    height: 100%;
}

/* css slider 4 end */


/* css slider 5 */


.exclusivityslider-container5 {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.exclusivityslider5 {
  display: flex;
    align-items: center;
  justify-content: start;
  animation: slide5 40s linear infinite;
  gap: 30px;
}

.exclusivityslide5 {
    min-width: 40%;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

@keyframes slide5 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-160%);
  }
}

.exclusivityslider-container5:hover .exclusivityslider5 {
  animation-play-state: paused;
}

.exclusivityslide4 > img {
    width: 100%;
    height: 100%;
}

.exclusivityslide5 > img {
    width: 100%;
}

/* css slider 5 end */


.header-btn a {
    transition: 0.3s ease-in-out;
}

.header-btn a:hover {box-shadow: inset 0 0 5px 3px #0c326b9e;}

.new-btn {
    transition: 0.3s ease-in-out;
}

.new-btn:hover {
    box-shadow: inset 0 0 5px 3px #0c326b9e;
    transition: 0.3s ease-in-out;
}


/* new popup form */


/*.new_popupform_wrpr {*/
/*    position: fixed;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    right: 0;*/
/*    width: 25%;*/
/*    background: #ffffff;*/
/*    border: 1px solid #000000;*/
/*    padding: 40px 20px 20px;*/
/*    transform: translate(-50%, -50%);*/
/*    z-index: 9999;*/
/*    border-radius: 10px;*/
/*    display: none;*/
/*}*/

/*.new_popupform_wrpr > .new_popupform_inner {*/
/*    position: relative;*/
/*}*/

/*.new_popupform_wrpr > .new_popupform_inner > span {*/
/*    position: absolute;*/
/*    top: -50px;*/
/*    right: -30px;*/
/*    background: #ffffff;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    border-radius: 50%;*/
/*    border: 1px solid #000000;*/
/*    cursor: pointer;*/
/*}*/

/*.new_popupform_wrpr > .new_popupform_inner > span > i {*/
/*    font-size: 20px;*/
/*    line-height: 1;*/
/*    color: #000000;*/
/*}*/

/*.new_popupform_wrpr > .new_popupform_inner > form > input {*/
/*    width: 100%;*/
/*    height: 50px;*/
/*    padding: 10px;*/
/*    border: 1px solid #000000;*/
/*    border-radius: 5px;*/
/*    margin-bottom: 20px;*/
/*    font-size: 14px;*/
/*    color: #000;*/
/*}*/

/*.new_popupform_wrpr > .new_popupform_inner > form > button {*/
/*    margin: 0 auto;*/
/*    display: flex;*/
/*    background: #fff;*/
/*}*/

/*.newpopup-show {*/
/*    position: relative;*/
/*}*/

/*.newpopup-show:after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    background: #0000007d;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*    z-index: 999;*/
/*    backdrop-filter: blur(10px);*/
/*}*/

/*.newpopup-show .new_popupform_wrpr {*/
/*    display: block;*/
/*}*/

.new_popupform_wrpr {
    position: fixed;
    top: 50%;
    left: 50%;
    right: 0;
    width: 60%;
    background: #ffffff;
    border: 1px solid #000000;
    padding: 0;
    transform: translate(-50%, -50%);
    z-index: 9999;
    border-radius: 30px;
    display: none;
    overflow: hidden;
}

.new_popupform_wrpr > .new_popupform_inner {
    position: relative;
}

.new_popupform_wrpr > .new_popupform_inner > span {
    position: absolute;
    top: -50px;
    right: -30px;
    background: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #000000;
    cursor: pointer;
}

.new_popupform_wrpr > .new_popupform_inner > span > i {
    font-size: 20px;
    line-height: 1;
    color: #000000;
}

.new_popupform_wrpr > .new_popupform_inner > form > input {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #000;
}

.new_popupform_wrpr > .new_popupform_inner > form > button {
    margin: 0 auto;
    display: flex;
    background: #fff;
}

.newpopup-show {
    position: relative;
}

.newpopup-show:after {
    position: absolute;
    content: "";
    background: #0000007d;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.newpopup-show .new_popupform_wrpr {
    display: block;
}
.pop_up_img img {
    height: 550px;
    object-fit: cover;
    width: 100%;
    border-radius: 30px;
}
.new_popupform_inner {
    padding: 30px;
}
.new_popupform_wrpr .new_popupform_close{
    position: absolute;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 16px;
    color: #233064;
    font-weight: 600;
    top: 10px;
}
.new_popupform_inner h3 {
    color: #333333;
    font-weight: 700;
    font-size: 30px;
}

.new_popupform_inner h3 span {
    color: #233064;
    display: block;
}
.new_popupform_inner form.form-get-quote input {
    width: 100%;
    height: 50px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f4f4f4;
    padding-left: 15px;
    margin-bottom: 10px;
}
.new_popupform_inner form.form-get-quote input::placeholder{
    font-size: 16px;
    color: #858585;
}
.new_popupform_inner form.form-get-quote button{
    margin-top: 20px;
}


ul#menu-new {
    display: none;
}

.how-it-works-boxx .works_textt-box>div>span {
    font-family: 'Now-Regular';
}

    .engineer_better_content p {
    color: #000;
}

    .accordion-box .accordion-button {
    font-family: 'Now-light';
}

.operate-right-side h2 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.skillshub_pgg section.new_banner_srv.banner .new_banner_textt > ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.skillshub_pgg section.new_banner_srv.banner .new_banner_textt > ul > li > a >img {
    width: 140px;
}

.skillshub_pgg section.new_banner_srv.banner .new_banner_textt > ul > li {
    margin: 0;
}

.skillshub_pgg section.new_banner_srv.banner .new_banner_textt > ul > li {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    font-family: 'FontAwesome';
}

/* banner slider */

.banner_case_slider .slick-slide {
    margin: 0;
}

.banner_case_slider .slick-slide > img {
    width: 100%;
    
    object-fit: cover;
}

/* banner slider */

.fixedprice_pgg .latest-banner {
    height: 740px;
}

.skillshub_pgg .latest-banner {
    height: 750px;
}

.skillshub_pgg section.new_banner_srv.banner .new_banner_textt > span {
    font-size: 20px;
    font-weight: 700;
    color: #233064;
    display: block;
    margin-bottom: -10px;
}

.fload_form_inner>form>.row>*:first-child {
    padding-right: 2px;
}

.fload_form_inner>form>.row>*:last-child {
    padding-left: 2px;
}


.carrer_pggg .case-study > ul > li {
    display: flex;
    align-items: baseline;
    flex-direction: row-reverse;
    gap: 20px;
}

.carrer_pggg .case-study > ul > li > h4 {
    margin-bottom: 0;
    gap: 10px;
}

.carrer_pggg .case-study > ul {
    position: relative;
}

.carrer_pggg .case-study > ul > li:last-child {
    position: absolute;
    right: 0;
    top: 0;
}

.career_newpage .case-study h4 > a {
    padding: 0;
    font-size: 14px;
    width: 30px;
    height: 30px;
}

.banner-new-img {
    height: 737px;
}

.newpopup-show .new_popupform_wrpr > .row {
    align-items: center;
}

/* industry pages */

.industry_banner {
    margin-top: 90px;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: start;
    z-index: 1;
    height: 640px;
    padding-bottom: 110px;
}

.industry_banner > img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    object-position: top;
}

.industry_page .header-btn a {
    border-color: #233064;
    color: #233064;
}

.industry_banner h1 {
    font-size: 53px !IMPORTANT;
    line-height: 1.2;
    margin-bottom: 20px;
}

.industry_banner p {
    margin-bottom: 0;
    color: #fff;
    font-size: 20px;
    text-shadow: 0px 11px 13.92px rgba(22, 33, 76, 0.49);
}

.industry_page section.future__developer_secc.all-sec {
    background: #fff;
}

.industry_page .mastery-img img {
    height: 400px;
}

.industry_page .operate-img img {
    height: 300px;
}

body.industry_page {
    overflow-x: clip;
}

.industry_page .new-header {
    top: 0;
}


/* .achievements_awards_wrpr */

.achiv_boxx .achievements_awards_wrpr > ul > li > img {
    width: 150px;
    object-fit: contain;
    height: 130px;
}

.achiv_boxx .achievements_awards_wrpr > ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achiv_boxx .achievements_awards_wrpr > ul > li {padding: 20px;border: 1px solid #dedede;}

.achiv_boxx .achievements_awards_wrpr > ul > li {
}

.achiv_boxx .achievements_awards_wrpr > ul:first-child > li {
    border-bottom: 0;
    border-top: 0;
    position: relative;
}

.achiv_boxx .achievements_awards_wrpr > ul:first-child > li:first-child {
    border-left: 0;
}

.achiv_boxx .achievements_awards_wrpr > ul:first-child > li:nth-child(2) {
    border-left: 0;
}

.achiv_boxx .achievements_awards_wrpr > ul:first-child > li:nth-child(3) {
    border-left: 0;
}

.achiv_boxx .achievements_awards_wrpr > ul:first-child > li:last-child {
    border-left: 0;
    border-right: 0;
}

.achiv_boxx .achievements_awards_wrpr > ul:last-child > li:first-child {
    border-left: 0;
}

.achiv_boxx .achievements_awards_wrpr > ul:last-child > li {
    border-bottom: 0;
}

.achiv_boxx .achievements_awards_wrpr > ul:last-child > li:nth-child(2) {border-left: 0;}

.achiv_boxx .achievements_awards_wrpr > ul:last-child > li:nth-child(3) {
    border-left: 0;
}

.achiv_boxx .achievements_awards_wrpr > ul:last-child > li:nth-child(4) {
    border-left: 0;
    border-right: 0;
}

.achiv_boxx .achievements_awards_wrpr > ul:first-child > li:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #f67023;
    bottom: -6px;
    right: -6px;
    border-radius: 50%;
}

.achiv_boxx .achievements_awards_wrpr > ul:first-child {
    position: relative;
}

.achiv_boxx .achievements_awards_wrpr > ul:first-child:after {
    position: absolute;
    content: "";
    background: #f67023;
    width: 10px;
    height: 10px;
    left: 0;
    bottom: -5px;
    border-radius: 50%;
}

/* .achievements_awards_wrpr */

.industry_banner a {
    margin-top: 40px;
    display: block;
    font-size: 16px;
    color: #fff;
    text-decoration: underline;
    transition: 0.3s ease-in-out;
}

.industry_banner a:hover {
    color: #35b280;
}

/* new header css */

header.new-header .menu > #menu > li > ul.dropdown_box_new.solutions-dropdown {
    left: -340px ! IMPORTANT;
    width: 1580px !important;
}

header.new-header .menu > #menu > li > ul.dropdown_box_new.solutions-dropdown .res-menu-left {
    width: calc(60% - 6px);
}

header.new-header .menu > #menu > li > ul.dropdown_box_new.solutions-dropdown .menu-right {
    width: calc(40% - 4px);
}

header.new-header .menu > #menu > li > ul.dropdown_box_new.solutions-dropdown .res-menu-left > .solution-box {
    width: 32.9%;
    position: relative;
}

.solutions-dropdown .res-menu-left h2 {
    font-size: 20px;
    margin: 30px 0px;
}

.solutions-dropdown ul.resources-menu-items li {
    margin-bottom: 5px;
}

header.new-header .menu > #menu > li > ul.dropdown_box_new.solutions-dropdown .res-menu-left > .solution-box:after {
    position: absolute;
    content: "";
    background: #e5e5e5;
    width: 1px;
    height: 450px;
    top: 0;
    right: 40px;
}

header.new-header .menu > #menu > li > ul.dropdown_box_new.solutions-dropdown .res-menu-left > .solution-box:last-child:after {
    display: none;
}


/* new header css */


.trustpilot-widget > *:first-child {
    left: -58px;
}

.trustpilot-widget {
    margin-top: 20px;
    width: fit-content;
}


/* about new secc  */

.cultur_newsecc {
    padding: 70px 0px;
    position: relative;
}

.cultur_newsecc .culter_heading_wrpr {
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: -110px;
}

.cultur_newsecc .culter_heading_wrpr > h2 {
    color: #000;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: 'Now-Regular';
    text-transform: capitalize;
}

.cultur_newsecc .culter_heading_wrpr > p {
    font-size: 16px;
    color: #000;
}

.cultur_newsecc > .container-fluid {
    padding: 0;
}

.cultur_newsecc ul {
    display: flex;
    align-items: end;
    gap: 20px;
    justify-content: center;
}

.cultur_newsecc ul > * {
    width: 25%;
}

.cultur_newsecc ul > * > .cultr_two_imgbox > img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    height: 500px;
}

.cultur_newsecc ul > * > .cultr_two_imgbox > img:first-child {
    height: 200px;
}

.cultur_newsecc ul > * > .cultr_two_imgbox {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cultur_newsecc ul > * > .cultr_one_imgbox > img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.cultur_newsecc ul > *:nth-child(2) > .cultr_one_imgbox > img {
    height: 520px;
}

.cultur_newsecc ul > *:nth-child(3) > .cultr_one_imgbox > img {
    height: 350px;
}

.cultur_newsecc ul > *:nth-child(4) > .cultr_one_imgbox > img {
    height: 520px;
}

/*.cultur_newsecc:after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    bottom: 90px;*/
/*    background: linear-gradient(0deg, #ffffff 0.02%, rgba(255, 255, 255, 0) 30%);*/
/*}*/

/* about new secc  */


/* leadership sec */

.leadership_secc_new {
    padding: 20px 0px 70px;
}

.leadership_secc_new h2 {
    text-align: center;
    color: #000;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 40px;
    font-family: 'Now-Regular';
}
.leadership_secc_new .leadership_box_wrpr {
    position: relative;
    z-index: 1;
}
.leadership_secc_new .leadership_box_wrpr > img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border-radius: 50%;
    box-shadow: 9px 7px 20px 1px #0000001f;
    border: 2px solid #2330641a;
    transition: 0.3s ease-in-out;
}

.leadership_secc_new .leadership_box_wrpr > .leadership_box_text_wrpr {
    padding: 30px;
    background: #23306412;
    backdrop-filter: blur(40px);
    padding-top: 130px;
    margin-top: -90px;
    position: relative;
    z-index: -1;
    border-radius: 5px;
    border: 2px solid #2330641a;
    text-align: center;
    border-top-right-radius: 150px;
    border-top-left-radius: 150px;
    box-shadow: 9px 7px 20px 1px #0000001f;
    transition: 0.3s ease-in-out;
}

.leadership_secc_new .leadership_box_wrpr > .leadership_box_text_wrpr > h3 {
    font-size: 25px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 5px;
}

.leadership_secc_new .leadership_box_wrpr > .leadership_box_text_wrpr > h3 > span {
    color: #233064;
}

.leadership_secc_new .leadership_box_wrpr > .leadership_box_text_wrpr > span {
    font-size: 16px;
    display: block;
    margin-bottom: 20px;
    color: #233064;
}

.leadership_secc_new .leadership_box_wrpr > .leadership_box_text_wrpr > p {
    font-size: 14px;
    line-height: 1.67;
    width: 90%;
    margin: 0 auto;
}

.leadership_secc_new .leadership_box_wrpr > .leadership_box_text_wrpr > ul {
    margin-bottom: 0;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.leadership_secc_new .leadership_box_wrpr > .leadership_box_text_wrpr > ul > li > a > i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid #233064;
    border-radius: 50%;
    background: #233064;
    transition: 0.3s ease-in-out;
}

.leadership_secc_new .leadership_box_wrpr > .leadership_box_text_wrpr > ul > li > a > i:hover {
    background: transparent;
    color: #233064;
}

.leadership_slider .slick-list {
    padding-bottom: 30px !important;
    padding-top: 20px !important;
}

.slick-center .leadership_box_wrpr > .leadership_box_text_wrpr {
    border-color: #233064;
}

.slick-center  .leadership_box_wrpr > img {
    border-color: #233064;
}

.leadership_slider .slick-slide {
    margin: 0 30px;
}

.leadership_slider .slick-arrow:before {
    background: #eff0f4;
    width: 50px;
    color: #233064;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    border-radius: 50%;
    border: 2px solid #233064;
    transition: 0.3s ease-in-out;
}

.leadership_slider .slick-arrow:hover:before {
    background: #233064;
    color: #fff;
}

.leadership_slider .slick-arrow {
    top: 60%;
    width: 50px;
    height: 50px;
}

.leadership_slider .slick-next {
    right: -70px;
}

.leadership_slider .slick-prev {
    left: -70px;
}

/* leadership sec */

/* new drop-down add in header */

a.featured-box img {
    object-fit: cover;
}

.resources_wrpr h2.right-box-heading {
    font-size: 25px;
}

.whats-new p {
    padding: 0;
    text-align: center;
    margin-bottom: 5px;
}

.resources_wrpr a.featured-box img {
    height: 245px;
}

.resources_wrpr .res-menu-left {
    height: 414px;
}

ul.resources-menu-items li a p {
    font-size: 12px;
}

/* new drop-down add in header */


.career-banner {
    z-index: -1;
    top: -143px;
    width: auto;
    right: -58px;
}
.banner-new-img.career-banner:before {
    content: '';
    background-image: -webkit-linear-gradient( 90deg, rgb(152,217,255) 0%, rgb(255,255,255) 100%);
    opacity: 0.361;
    position: absolute;
    left: -87px;
    top: -254px;
    width: 60px;
    height: 980px;
    z-index: -1;
    transform: rotate(-45deg);
}
.career-banner img {
    height: 880px;
    width: auto;
    object-fit: cover;
}
.family_slider .big_img img {
    height: 600px;
    object-fit: cover;
}
.mastery-img.augmentation-img img {
    height: auto;
}