/* TYPOGRAPHY START*/
* {
    box-sizing: border-box;
}

.btn:active,
*:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent;
}

textarea.form-control {
    resize: none;
    overflow: hidden;
}

figure {
    margin-bottom: 0;
}

html {
    scroll-behavior: smooth;
}
html,
body {
    width: 100%;
}

body {
    padding: 0;
    margin: 0;
    background: #fff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Sora Regular';
    font-weight: normal;
    font-style: normal;
    color: #000;
    line-height: 1.5;
}

img {
    max-width: 100%;
}

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

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}


h1 {
    color: #141414;
    font-size: 5.73vw;
    line-height: 6.77vw;
    font-weight: normal;
    font-style: normal;
    margin-bottom: 0;
    font-weight: 500;
    font-family: 'Sora Medium';
}

h1 strong {
    color: #141414;
}

h2 {
    font-size: 4.17vw;
    line-height: 4.69vw;
    color: #141414;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 0;
    font-family: 'Sora Medium';
}

h3 {
    font-size: 2.08vw;
    line-height: 2.6vw;
    color: #141414;
    font-weight: normal;
    font-style: normal;
    margin-bottom: 0;
}


h4,
h6,
h5 {
    font-size: 1.04vw;
    line-height: 1.35vw;
    color: #141414;
    font-weight: normal;
    font-style: normal;
    margin-bottom: 0;
}

p {
    font-size: 0.89vw;
    color: #141414;
    line-height: 1.56vw;
    margin-bottom: 0.52vw;
}
p:last-child {
    margin-bottom: 0;
}

ul {
    padding: 0;
    margin: 0;
}

ol {
    padding-left: 0;
    padding-bottom: 0;
    counter-reset: listitem;
}

ol li {
    list-style: none;
    position: relative;
    padding-left: 1.77vw;
}

ol li::before {
    counter-increment: listitem;
    content: counters(listitem, '.')'.';
    color: #141414;
    display: inline-block;
    left: 0;
}

li {
    font-size: 0.89vw;
    color: #141414;
    line-height: 1.56vw;
    margin-bottom: 0.52vw;
    font-style: normal;
}
li:last-child{
    margin-bottom: 0;
}

li a {
        color: #141414;
}

li a:hover {
    color: #141414;
}

a {
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
}

a:hover {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
}

.btn {
    background: #fff;
    border-radius: 2.604vw;
    min-height: 3.283vw;
    color: #414141;
    font-size: 0.885vw;
    line-height: 1;
    font-family: 'Sora Light';
    font-weight: 300;
    font-style: normal;
    padding: 1.094vw 2.604vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    overflow: hidden;
    position: relative;
    border: 0.05vw #414141 solid;
}
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    border-radius: 1.771vw;
    background-color: #BDF01A;
    z-index: -1;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
}
.btn:hover:before {
    left: 0;
}
.btn:hover{
    color: #000;
    border-color: #BDF01A;
}
.btn.btn-white {
    background: #fff;
    color: #141414;
}
.btn.btn-white:hover {
    background: #3d5a8c;
    color: #fff;
}
body.mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden;
}

.btn-border {
    background: transparent;
    color: #fff;
    font-size: 0.885vw;
    line-height: 1;
    font-family: 'Sora Light';
    font-weight: 300;
    font-style: normal;
    border: 0.052vw solid #fff;
    border-radius: 1.771vw;
    position: relative;
    overflow: hidden;
    padding: 1.094vw 2.604vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
.btn-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    border-radius: 1.771vw;
    background-color: #fff;
    z-index: -1;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
}
.btn-border:hover:before {
    left: 0;
}
.btn-border:hover {
    color: #000;
}
.circle-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    font-family: 'Sora Light';
    font-weight: 300;
    font-style: normal;
    font-size: 0.885vw;
    position: relative;
    z-index: 0;
    padding: 0 1.271vw;
}
.circle-arrow svg {
    margin-left: 2.135vw;
}
.btn-circle-shape {
    position: absolute;
    top: 50%;
    right: 0;
    width: 3.281vw;
    height: 3.281vw;
    background: #BDF01A;
    border-radius: 2.08vw;
    z-index: -1;
    transition: .5s ease-in-out;
    transform: translateY(-50%);
}
.circle-arrow:hover {
    color: #141414;
}
.circle-arrow:hover .btn-circle-shape {
    width: 100%;
}
/* TYPOGRAPHY END*/

/** ================== // HEADER CSS START // ================== **/

.header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: transparent;
    -webkit-transition: top 1s ease;
    -moz-transition: top 1s ease;
    -o-transition: top 1s ease;
    transition: top 1s ease;
    z-index: 9;
    padding: 1.719vw 0;
    transition: all 500ms ease;
    border-bottom: 0;
}

.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
    padding: 0;
}

.logo {
	margin: 0;
    width: 4.207vw;
    text-align: center;
}

.logo a img {
    width:100%;
}
/** ================== // HEADER CSS END // ================== **/



/** ================== // HERO SECTION CSS START // ================== **/
.hero-section {
    background-color: #141414;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.hero-section::before {
    content: "";
    background-image: url('../images/hero-bg-color-top.png');
    background-repeat: no-repeat;
    background-position: left top;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background-size: 100%;
}
.hero-section .container,
.hero-wrapper {
    height: 100%;
    display: block;
}

.hero-heading,
.hero-description {
    opacity: 0;
    transition: .5s;
}
.hero-section.text-show .hero-heading,
.hero-section.text-show .hero-description {
    opacity: 1;
}
.hero-wrapper {
    position: relative;
}
.hero-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 10.61vw;
    width: 100%;
    right: 0;
    flex-wrap: wrap;
}
.hero-heading h1, .hero-heading h2 {
    color: #fff;
    font-size: 5.73vw;
    line-height: 6.77vw;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    column-gap: 0.63vw;
    font-family: 'Sora Regular';
    font-weight: normal;
}
.hero-heading h1 img{
    width: 5.21vw;
}
.hero-heading h2 img{
    width: 6.72vw;
}
.hero-heading h1 .waviy.active span, .hero-heading h2 .waviy.active span {
    animation: waviy 1.8s;
    animation-delay: calc(.1s * var(--i));
    color: #BDF018;
}
@keyframes waviy {
    0%,40%,100% {
      transform: translateY(0)
    }
    20% {
      transform: translateY(-1.04vw)
    }
  }

.waviy {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: .55s ease-in;
    top: 0;
    color: #BDF018;
}
.hero-heading h1 .waviy.active, .hero-heading h2 .waviy.active {
    opacity: 1;
    visibility: visible;
}
.hero-description {
    position: absolute;
    right: 0;
    bottom: 4.69vw;
    width: 25.146vw;
    text-align: left;
}
.hero-description p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.15vw;
    line-height: 1.56vw;
    font-family: 'Sora Regular';
    font-weight: normal;
    font-style: normal;
    margin: 0 0 1.719vw;
}
.hero-description p strong{
    color: rgba(255, 255, 255, 1);
    font-family: 'Sora Regular';
    font-weight: normal;
}
.scroll-top {
    position: absolute;
    bottom: 4.69vw;
    left: 0;
    transition: 1s;
    animation: jumb-scroll 3s infinite;
}
@keyframes jumb-scroll {
    0%,40%,100% {
      transform: translateY(0)
    }
    20% {
      transform: translateY(-1.04vw)
    }
  }
.scroll-top p{
    color: rgba(255, 255, 255, 0.55);
    display: block;
}
.scroll-top img{
    margin-bottom: 0.52vw;
    width: 1.04vw;
}
/** ================== // HERO SECTION CSS END // ================== **/

/** ================== // WHY IT WORKS FOR STARTUPS SECTION START // ================== **/
.work-startups-section {
    background: #F4F4F4;
    border-radius: 1.563vw 1.563vw;
    overflow: hidden;
    margin: -2.344vw 0 0 0;
    padding: 8.33vw 0 11.51vw;
    z-index: 1;
    position: relative;
}
.work-startups-section::after {
    content: "";
    background-image: url('../images/radial-gradient-01.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    position: absolute;
    left:0;
    bottom:0;
    top: 0;
    right: 0;
    z-index: -1;
}
.about-wrapper {
    padding: 7.552vw 0 9.427vw 0;
}
.heading{
    text-align: center;
    margin-bottom: 7.14vw;
}
.heading h2{
    text-transform: uppercase;
}

.white-text *{
    color: #fff;
}
.startups-item-repeat {
    margin: 0 0 6.51vw;
    padding: 0 0 0.94vw;
    border-bottom: 0.05vw #000 solid;
}
.startups-item-repeat:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.works-info-startups {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.nmber {
    width: 2%;
}
.nmber span {
    font-size: 0.94vw;
    display: block;
}
.work-tittle{
    width: 63%;
    text-align: left;
    padding-left: 8.91vw;
}
.work-tittle h3{
    text-transform: uppercase;
}
.work-description{
    width: 35%;
    text-align: right;
}
.work-description p{
    font-size: 1.15vw;
    font-family: 'Sora Light';
    font-weight: 300;
}
.about-heading-animate-wrapper {
    text-align: center;
}
.about-heading-animate-wrapper h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 5.729vw;
    line-height: 6.37vw;
    color: #141414;
}
.about-heading-animate-wrapper h2 img {
    margin: 0 1.042vw;
    width: 4.1vw;
}
.about-heading-animate-wrapper h2 img.icon-top {
    margin-top: -7.823vh;
    margin-right: 0;
    width: 2.32vw;
    position: absolute;
    right: 5vw;
}
.imgwith-01{
    width: 4.17vw;
}
.imgwith-02{
    width: 2.34vw;
}
.mirror-text-wrapper {
    font-size: 0;
    position: relative;
    width: 100vw;
    left: 6vw;
}
.mirror-heading-col.divided {
    width: 25vw;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
}
.mirror-heading-col h2 {
    display: flex;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.about-heading-animate-wrapper.aos-animate .mirror-heading-col .c-tagline_item_inner h2 {
    transition-duration: 1s;
    transform: translate3d(0, 0, 0) !important;
}
.mirror-heading-col:first-child .c-tagline_item_inner h2:nth-child(1) {
    transition-delay: .1s;
    transform: translate3d(-5%, 0, 0);
}
.mirror-heading-col:first-child .c-tagline_item_inner h2:nth-child(2) {
    transition-delay: .2s;
    transform: translate3d(-5%, 0, 0);
}
.mirror-heading-col:first-child .c-tagline_item_inner h2:nth-child(3) {
    transition-delay: .3s;
    transform: translate3d(-5%, 0, 0);
}
.mirror-heading-col:first-child .c-tagline_item_inner h2:nth-child(4) {
    transition-delay: .4s;
    transform: translate3d(-5%, 0, 0);
}
.mirror-heading-col:first-child .c-tagline_item_inner h2:nth-child(5) {
    transition-delay: .5s;
    transform: translate3d(-5%, 0, 0);
}
.mirror-heading-col:nth-child(2) .c-tagline_item_inner {
    margin-left: -25vw;
}
.mirror-heading-col:nth-child(2) .c-tagline_item_inner h2:nth-child(1) {
    transition-delay: .1s;
    transform: translate3d(-16%, 0, 0);
}
.mirror-heading-col:nth-child(2) .c-tagline_item_inner h2:nth-child(2) {
    transition-delay: .2s;
    transform: translate3d(-12%, 0, 0);
}
.mirror-heading-col:nth-child(2) .c-tagline_item_inner h2:nth-child(3) {
    transition-delay: .3s;
    transform: translate3d(-8%, 0, 0);
}
.mirror-heading-col:nth-child(2) .c-tagline_item_inner h2:nth-child(4) {
    transition-delay: .4s;
    transform: translate3d(-4%, 0, 0);
}
.mirror-heading-col:nth-child(2) .c-tagline_item_inner h2:nth-child(5) {
    transition-delay: .4s;
    transform: translate3d(-4%, 0, 0);
}
.mirror-heading-col:nth-child(3) .c-tagline_item_inner {
    margin-left: -50vw;
}
.mirror-heading-col:nth-child(3) .c-tagline_item_inner h2:nth-child(1) {
    transition-delay: .1s;
    transform: translate3d(22%, 0, 0);
}
.mirror-heading-col:nth-child(3) .c-tagline_item_inner h2:nth-child(2) {
    transition-delay: .2s;
    transform: translate3d(19%, 0, 0);
}
.mirror-heading-col:nth-child(3) .c-tagline_item_inner h2:nth-child(3) {
    transition-delay: .3s;
    transform: translate3d(16%, 0, 0);
}
.mirror-heading-col:nth-child(3) .c-tagline_item_inner h2:nth-child(4) {
    transition-delay: .4s;
    transform: translate3d(13%, 0, 0);
}
.mirror-heading-col:nth-child(3) .c-tagline_item_inner h2:nth-child(5) {
    transition-delay: .4s;
    transform: translate3d(13%, 0, 0);
}
.mirror-heading-col:nth-child(4) .c-tagline_item_inner {
    margin-left: -75vw;
}
.mirror-heading-col:nth-child(4) .c-tagline_item_inner h2:nth-child(1) {
    transition-delay: .1s;
    transform: translate3d(25%, 0, 0);
}
.mirror-heading-col:nth-child(4) .c-tagline_item_inner h2:nth-child(2) {
    transition-delay: .2s;
    transform: translate3d(30%, 0, 0);
}
.mirror-heading-col:nth-child(4) .c-tagline_item_inner h2:nth-child(3) {
    transition-delay: .3s;
    transform: translate3d(35%, 0, 0);
}
.mirror-heading-col:nth-child(4) .c-tagline_item_inner h2:nth-child(4) {
    transition-delay: .4s;
    transform: translate3d(40%, 0, 0);
}
.mirror-heading-col:nth-child(4) .c-tagline_item_inner h2:nth-child(5) {
    transition-delay: .4s;
    transform: translate3d(40%, 0, 0);
}
.c-tagline_item_inner {
    width: 87.5vw;
    padding: 3.13vw 0;
    margin: 0 auto;
}
.mirror-heading-col.full {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: -0.05vw;
    color: transparent;
}
/** ================== // WHY IT WORKS FOR STARTUPS SECTION END // ================== **/

/** ================== // CREATIVE THAT MOVES THE NEEDLE SECTION START // ================== **/
.creative-moves-section {
    margin: -2vw 0 0;
    padding: 6.58vw 0 10.33vw;
    background: #141414;
    position: relative;
    overflow: hidden;
}

.creative-moves-section .about-heading-animate-wrapper h2{
    color: #fff;
}
.creative-moves-section .mirror-text-wrapper {
    left: 2vw;
}
.creative-service-warpper{
    margin: 0;
    padding: 0;
}
.creative-service-repeat {
    margin: 0;
    padding: 4.79vw 0 4.79vw;
    border-bottom: 0.05vw rgba(255,255,255,0.5) solid;
}
.creative-service-repeat:first-child {
    padding-top: 0;
}
.creative-service-repeat:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.creative-service-row-outer{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.82vw;
}

.creative-service-col-left{
    width: 50%;
    padding: 0 1.82vw;
}

.creative-service-text-info{
    margin: 0;
    padding: 0;
}

.creative-service-text-info h3{
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.89vw;
}

.creative-service-text-info p{
    color: #fff;
    font-size: 1.15vw;
    line-height: normal;
    font-family: 'Sora Light';
    font-weight: 300;
}
.creative-service-text-info p b{
    color: #BDF018;
    font-weight: 300;
}

.count-number{
    font-size: 5.73vw;
    display: block;
    color: #BDF018;
    line-height: normal;
    font-family: 'Sora Medium';
    font-weight: 500;
}

.count-number span{
    font-size: 4.5vw;
   /* transform: rotate(-90deg);*/
    line-height: normal;
    display: inline-block;
   /* margin-right: -1.3vw;*//
}
.helped-nb-startup{
    padding-top: 7vw;
}

.service-slider-item{
    margin: 0;
    padding: 0;
}
.creative-service-slider{
    pointer-events: none;
}

.creative-service-col-right{
    margin: 0;
    padding: 0 1.82vw;
    width: 50%;
}

.service-slider-item img{
    border-radius: 1.56vw;
    width: 100%;
}
.service-slider-item video{
    border-radius: 1.56vw;
    width: 100%;
}

.creative-service-repeat:nth-child(even) .creative-service-row-outer{
    flex-direction: row-reverse;
}

.helped-nb-startup h4 {
    color: #BDF018;
    font-size: 2.08vw;
    line-height: 2.34vw;
    font-weight: 500;
    margin-right: 12vw;
}

/** ================== // CREATIVE THAT MOVES THE NEEDLE SECTION END // ================== **/


/** ================== // DESIGN SECTION CSS START // ================== **/
.design-claim-section {
    margin: -2vw 0 0;
    padding: 9.27vw 0 12.4vw;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 1.56vw;
}
.design-claim-section .mirror-heading-col:nth-child(4) .c-tagline_item_inner {
    margin-left: -75.61vw;
}
.design-claim-section .mirror-heading-col:nth-child(3) .c-tagline_item_inner {
    margin-left: -50.5vw;
}
.design-claim-section .mirror-heading-col:nth-child(2) .c-tagline_item_inner {
    margin-left: -25.5vw;
}
.design-claim-section .mirror-heading-col:nth-child(1) .c-tagline_item_inner h2:nth-child(2) {
    margin-left: -1.2vw;
}
.design-claim-section .mirror-text-wrapper {
    left: 2vw;
}
.design-claim-wrapper {
    padding: 0 28vw;
}
.design-claim-wrapper p {
    font-size: 1.15vw;
    text-align: center;
    font-family: 'Sora Light';
    font-weight: 300;
}
.book-btn {
    margin: 2.08vw 0 0;
    text-align: center;
}
.btn-bg {
    background: #BDF01A;
    border-radius: 2.604vw;
    min-width: 23.7vw;
    min-height: 3.28vw;
    color: #000;
    font-size: 0.885vw;
    line-height: 1;
    font-family: 'Sora Light';
    font-weight: 300;
    font-style: normal;
    padding: 1.094vw 2.604vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    overflow: hidden;
    position: relative;
}
.btn-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    border-radius: 2.604vw;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
}
.btn-bg:hover {
    color: #000;
    border-color: #fff;
}
.btn-bg:hover:before {
    left: 0;
}

.work-together-contact-left-info {
    width: 70.47vw;
    margin: 0 auto 11.77vw;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.228);
    backdrop-filter: blur(2.604vw);
    border-radius: 1.56vw;
    padding: 5.73vw  7.29vw 6.46vw;
    text-align: center;
}
.work-together-contact-left-info h2 {
    color: #fff;
    font-size: 4.17vw;
    line-height: 4.69vw;
    font-family: 'Sora Regular';
    font-weight: normal;
    margin: 0 0 2.08vw;
}
.work-together-contact-left-info p {
    color: #fff;
    font-size: 2.08vw;
    line-height: 2.6vw;
    font-family: 'Sora Regular';
    font-weight: normal;
    padding: 0 8vw 3.44vw;
    margin: 0;
}
.work-together-cmn-icon {
    position: absolute;
    top: 0;
}
.work-together-icon1 {
    width: 12.031vw;
    top: 5.208vw;
}
.work-together-icon2 {
    top: -2.9vw;
    left: 4.01vw;
    width: 7.5vw;
}
.work-together-icon3 {
    top: 1vw;
    right: 2vw;
    width: 5.26vw;
}
.work-together-icon4 {
    top: auto;
    bottom: -2.608vw;
    left: 16.67vw;
    width: 6.094vw;
}
.work-together-bottom-arrow-icon {
    position: absolute;
    z-index: 1;
    left: 6.51vw;
    bottom: -1.042vw;
}
.work-together-bottom-arrow-icon img {
    width: 5.313vw;
}
/** ================== // DESIGN SECTION CSS END // ================== **/

/** ================== // HOW WE DELIVER RESULTS SECTION START // ================== **/
.deliver-results-section{
    margin: 0;
    padding: 8.23vw 0;
    background: #1963B3;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.deliver-results-section .container {
    padding: 0 5.05vw;
}
.deliver-results-section::after{
    content: "";
    background-image: url('../images/radial-gradient-02.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: right bottom;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 65.1vw;
    height: 48.7vw;
    z-index: -1;
}

.deliver-results-section .heading {
    margin-bottom: 2.6vw;
}
.deliver-results-section .heading h2{
    text-transform: none;
    font-family: 'Sora Medium';
    font-weight: 500;
    font-size: 5.73vw;
    line-height: 5.73vw;
}

.deliver-results-box-warp{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.56vw;
    row-gap: 1.56vw;
}

.deliver-results-box-col-4{
    width: 33.33%;
    padding: 0 1.56vw;
}

.deliver-results-box-info {
    border: 0.05vw #fff solid;
    padding: 3.75vw 2.47vw 2.24vw;
    border-radius: 1.56vw;
    height: 31.41vw;
    display: flex;
    flex-wrap: wrap;
    transition: 0.7s;
    z-index: 1;
    position: relative;
    cursor: pointer;
}
.deliver-results-box-info:hover{
    transform: rotate(5deg);
}
.deliver-results-box-info::after {
    content: "";
    position: absolute;
    background: #BCF018;
    top: 0;
    left: -1.3vw;
    right: 2vw;
    bottom: 1vw;
    border-radius: 1.56vw;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: 0.7s;
}
.deliver-results-box-info::before {
    content: "";
    position: absolute;
    background: #1963b3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.56vw;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.7s;
}

.deliver-results-box-info:hover::after{
    opacity: 1;
    visibility: visible;
    transform: rotate(-5deg);
}
.deliver-results-box-info:hover::before{
    opacity: 1;
    visibility: visible;
}
.deliver-results-box-info img{
    margin-bottom: 1.46vw;
    width: 1.41vw;
}
.deliver-results-box-info h3{
    color: #fff;
    width: 100%;
}
.deliver-results-box-info p{
    color: #fff;
    font-size: 1.15vw;
    font-family: 'Sora Light';
    font-weight: 300;
}

.dr-box-content{
    margin-top: auto;
    position: relative;
    z-index: 1;
}
.dr-box-heading{
    position: relative;
    z-index: 1;
}
/** ================== // HOW WE DELIVER RESULTS SECTION END // ================== **/

/** ================== // SITE FOOTER CSS START // ================== **/
.footer {
    background: #000;
    padding-top: 8.33vw;
    padding-bottom: 1.563vw;
    position: relative;
}
.footer-logo {
    margin-top: -1.198vw;
    position: relative;
    left: 0.208vw;
}
.footer-logo img {
    width: 91.198vw;
    margin: 0 auto;
    display: block;
}
.footer-logo-smile-icon {
    position: absolute;
    top: 4.427vw;
    left: 23.802vw;
}
.footer-logo .footer-logo-smile-icon img {
    width: 8.75vw;
}
.footer-copyright-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.footer-copyright-wrap ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style-type: none;
}
.footer-copyright-wrap ul li {
    padding: 0;
    margin: 0 0 0 3.49vw;
    position: relative;
}
.footer-copyright-wrap ul li:first-child {
    margin-left: 0;
}
.footer-copyright-wrap ul li a svg {
    height: 1.719vw;
    width: 1.719vw;
}
.footer-copyright-wrap ul li a svg path {
    transition: 0.6s;
}
.footer-copyright-wrap ul li a:hover svg path {
    fill: #B1DE21;
}
.footer-copyright {
    margin-top: 2.083vw;
}
.footer-copyright-right {
    position: absolute;
    right: 0;
    top: 0.729vw;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.footer-copyright-right p {
    font-family: 'Sora Light';
    font-weight: 300;
    font-style: normal;
    color: #fff;
    font-size: 0.729vw;
}
.footer-copyright-left {
    position: relative;
    left: 0.521vw;
}
/** ================== // SITE FOOTER CSS END // ================== **/
.btn-close {
    position: absolute;
    right: 2vw;
    top: 1vw;
    background: none;
    width: 2vw;
    height: 2vw;
    opacity: 1;
}
.btn-close img{
    width: 100%;
}
.calendly-popup-section .modal-dialog {
    max-width: 800px;
}
.calendly-popup-section  .modal-content {
    padding: 0;
    margin: 0;
    background: #fff;
    border: none;
    border-radius:1.09vw;
    overflow: hidden;
}
.calendly-popup-section  .modal-body {
    padding: 0;
}



/** ================== // CASE STUDY DETAIL PAGE CSS START // ================== **/

.hero-case-study-section {
    height: 32.46vw;
    position: static;
}
.hero-case-study-section .hero-heading h1, .hero-case-study-section .hero-heading h2 {
    display: block;
    font-family: 'Sora Medium';
}
.hero-case-study-section .hero-heading h2{
    color: #BDF018;
}
.hero-case-study-section .hero-heading h1 img {
    transform: rotate(159deg);
}
.hero-case-study-section::before{
    background-image: url(../images/case-study-detail-bg.png);
    background-position: right top;
    right: 0;
    left: auto;
    height: 48.7vw;
    width: 64%;
    background-size: 100%;
}
.our-company-section {
    background: #141414;
    padding: 3.65vw 0vw 4.69vw 0vw;
}
.our-company-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.our-company-left {
    width: 25%;
    padding-left: 1.56vw;
    position: sticky;
    height: 100%;
    top: 2.6vw;
}
.our-company-right {
    width: 75%;
    padding-right: 0.94vw;
}
.project-title span {
    color: #fff;
    font-size: 0.78vw;
    line-height: 1.56vw;
    text-transform: uppercase;
    font-family: 'Sora SemiBold';
    margin-bottom: 0.36vw;
    display: block;
}
.our-company-left-info {
    padding-left: 1.09vw;
    border-left: 0.05vw solid #707070;
    padding-right: 5.21vw;
}
.project-title {
    margin-bottom: 2.08vw;
}
.thumbail-picture img {
    width: 100%;
    border-radius: 1.56vw;
}
.project-title p {
    font-size: 1.15vw;
    color: #fff;
    line-height: 1.56vw;
    font-family: 'Sora Light';
    margin-bottom: 0vw;
}
.project-title .website-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.project-title .website-link img {
    width: 0.78vw;
    margin-left: 0.57vw;
    transition: 0.6s all;
}
.website-link:hover.website-link img {
    margin-left: 1.35vw;
}
.challenge-title {
    margin: 4.69vw 0vw 4.53vw 0vw;
}
.challenge-title h2 {
    color: #fff;
    margin-bottom: 0.78vw;
}
.challenge-title ul {
    padding: 0vw 0vw 0vw 3.13vw;
    margin: 0.89vw 0vw;
}
.challenge-title p, .challenge-title ul li {
    font-family: 'Sora ExtraLight';
    color: #fff;
    font-size: 1.15vw;
    line-height: 1.56vw;
    margin-bottom: 1.3vw;
}
.challenge-title ul li {
    margin-bottom: 0.42vw;
}
.challenge-title p:last-child{
    margin-bottom: 0vw;
}

.refining-data {
    padding-top: 1.56vw;
}
.refining-data-wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0vw -1.56vw;
}
.refining-data-col {
    width: 50%;
    padding: 0vw 1.56vw;
}
.refining-data-picture{
    border-radius: 1.56vw;
}
.refining-data-picture img {
    width: 100%;
    border-radius: 1.56vw;
    border: 0.05vw solid #707070;
}
.process-step-inner h3 {
    color: #fff;
}
.process-title h2 {
    margin-bottom: 2.34vw;
}
.process-step-inner{
    margin-bottom: 4.01vw;
}
.process-step-inner:last-child{
    margin-bottom: 0vw;
}
.process-step-inner h3 {
    margin-bottom: 0.94vw;
    font-family: 'Sora Medium';
    text-transform: uppercase;
}
.refining-data-features-picture {
    border-radius: 1.56vw;
}
.refining-data-features-picture img {
    border-radius: 1.56vw;
    width: 100%;
}
.footer-change-bg{
    background: #141414;
}
.hero-heading h2 img.head_icon {
    width: 5.21vw;
}
.challenge-sub-title h3 {
    color: #fff;
    font-family: 'Sora Bold';
    font-weight: bold;
    margin: 0;
    font-size: 2.08vw;
    line-height: 2.6vw;
    margin-bottom: 3.33vw;
}
/** ================== // CASE STUDY DETAIL PAGE CSS END // ================== **/
