@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Color variables */
:root {
    --white: #fff;
    --light1: #F5F5F5;
    --light2: #D2D5DA;
    --primary: #121317;
    --text-light: #494E5B;
    --icon-light: #6E7588;
    --bg-dark: #20242E;
    --bg-dark2: #2F323B;
    --orange-main: #FF5722;
    --button-secondary: #292A2E;
    --divider1: #E6E8EC;
    --divider2: #8B8C9E;
}

/* Main styles */
html {
	line-height: 1.3;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: var(--primary);
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 10px;
}
p {
    margin: 0 0 15px;
}
li  {
    margin-bottom: 0;
}
button, input, textarea {
    font-family: 'Plus Jakarta Sans', sans-serif;
}
input::placeholder, textarea::placeholder {
    color: #BFBCBC;
}
button {
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
	  vertical-align: middle;

}
h1, .h1 {
    font-size: 64px;
}
h2, .h2 {
    font-size: 58px;
}
h3, .h3 {
    font-size: 40px;
}
h4, .h4 {
    font-size: 32px;
}
h5, .h5 {
    font-size: 24px;
}
h6, .h6 {
    font-size: 20px;
}
a {
	background-color: transparent;
    text-decoration: none;
    transition: ease all .3s;
    color: var(--primary);
}
a:hover {
    text-decoration: none;
}
img {
	display: block;
    max-width: 100%;
}
.bg-dark {
    background: var(--bg-dark);
}
.bg-dark-secondary {
    background: var(--bg-dark2);
}
.bg-grey {
    background: #fafafa;
}
.orange {
    color: var(--orange-main);
}
.container {
    max-width: 1170px;
    margin: 0 auto;
}
.text-center {
    text-align: center;
}
.text-big {
    font-size: 24px;
}
.text-medium {
    font-size: 20px;
}
.bold {
    font-weight: 600;
}
.text-small {
    font-size: 14px;
}
.white {
    color: var(--white);
}
.text-light {
    color: var(--text-light);
}
.flex {
	display: flex;
	gap: 5px;
}
.button {
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    padding: 12px 24px;
    display: inline-block;
    background: var(--orange-main);
    transition: ease all .3s;
    border: none;
    cursor: pointer;
}
.header-button.button {
    padding-top: 16px;
    padding-bottom: 16px;
}
.button:hover {
    background: var(--button-secondary);
    box-shadow: 1px 1px 15px 5px rgba(0, 0, 0, .2);
}
.button.with-arrow:hover svg path {
    fill: var(--white) !important;
}
.button.secondary {
    background: var(--button-secondary);
	  align-items: center;
}
.button.secondary:hover {
    color: var(--white);
    background: var(--orange-main);
}
.button.secondary.with-arrow:hover svg path {
	fill: var(--white) !important;
}
.main {
    max-width: 100%;
    overflow-x: hidden;
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
}
.nowrap {
    flex-wrap: nowrap;
}
.jcsb {
    justify-content: space-between;
}
.jcc {
    justify-content: center;
}
.aic {
    align-items: center;
}
.w25 {
    flex: 0 0 25%;
}
.w30 {
    flex: 0 0 30%;
}
.w47 {
    flex: 0 0 47%;
}
.w60 {
    flex: 0 0 60%;
}
.w65 {
    flex: 0 0 65%;
}
.mb0 {
    margin-bottom: 0;
}
header {
    padding: 24px 0;
}
.main-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}
.logo {
    margin-right: 40px;
    height: 56px;
}
.header-inner {
    padding: 0 40px;
}
.main-menu li a {
    display: inline-block;
    padding: 16px 24px;
    margin-right: 8px;
    /*text-transform: lowercase;*/
    font-weight: 600;
}
.main-menu li.current-menu-item a, .main-menu li.current-menu-parent a {
    border-bottom: 3px solid var(--orange-main);
    background-color: #fafafa;
}
.main-menu .sub-menu, .mobile-menu-button {
    display: none;
}
.main-menu li a:hover, .main-menu li a:focus {
    background: var(--light1);
}
.subheader {
    background: var(--bg-dark);
}
.subheader-inner li a {
    color: var(--white);
    padding: 24px;
    position: relative;
    display: inline-block;
    transition: ease all .3s;
}
.subheader-inner li.current-menu-item a:before {
    content: url(../images/menu-arrow.svg);
    background-color: var(--orange-main);
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    padding: 5px 3px 0px 3px;
    border-radius: 50%;
}
.subheader-inner li.current-menu-item a {
    display: flex;
    align-items: center;
    background-color: var(--bg-dark2);
}
.subheader-inner li a:hover {
    background: var(--bg-dark2);
}
.subheader-inner {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}
section {
    position: relative;
    padding: 20px 0 40px 0;
}
.hero-section {
    padding: 32px 0;
}
.hero-slide-text, .hero-slide-image {
    flex: 0 0 47%;
}
.hero-slide-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-slide {
    padding: 0 3px;
}
.hero-slide .button, .hero-slide-text .button {
   padding: 16px 24px;
}
.hero-slide-image img {
    max-height: 465px;
    object-fit: cover;
    width: 100%;
}
.hero-slide-text p {
    margin-bottom: 32px;
}
.hero-slider-controls {
    gap: 40px;
    padding: 20px;
    justify-content: flex-end;
}
.hero-slider-counter {
    gap: 5px;
}
.count {
    color: var(--light2);
}
.hero-slider-arrow {
    cursor: pointer;
}
.hero-slider-arrows {
    gap: 28px;
}
.services-section-help.bg-dark {
    background: var(--bg-dark2);
}
.project-content-section {
    padding: 40px 0 0;
}
.services-content-item:not(.active) {
    display: none;
}
.main-project-content-holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.main-project-content {
    flex: 0 0 65%;
}
.main-project-client-logo {
    flex: 0 0 240px;
    height: 210px;
    display: flex;
    align-items: center;
    background: #FAFAFA;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 240px;
}
.main-project-content-item {
    margin-top: 50px;
}
.main-project-content-section a, .project-content-section a {
    color: var(--orange-main);
    text-decoration: underline;
}
.main-project-content-section a:hover, .project-content-section a:hover {
    text-decoration: none;
}
/* .main-project-content-section a[target="_blank"], .project-content-section a[target="_blank"],
.post-content-holder a[target="_blank"], .service-content-bullets-item a[target="_blank"] {
    display: inline-flex;
    gap: 4px;
    align-items: center;
} */
.main-project-content ul li, .project-content-inner ul li {
    margin-bottom: 30px;
}
.project-content-inner {
    max-width: 65%;
}
.main-project-content-section {
    padding: 40px 0 0;
}
.services-content-bottom-items {
    gap: 24px;
}
.services-content-bottom-item {
    flex: 0 0 18%;
    padding: 24px 30px;
}
.services-content-bottom-item p {
    margin: 0;
}
.services-content-bottom-item.flex-auto {
    flex: 0 0 auto;
}
.services-content-bottom-item h2, .services-content-bottom-item h3 {
    margin-bottom: 15px;
}
.service-case-study-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.service-case-study-text, .service-case-study-image {
    flex: 0 0 50%;
}
.service-case-study-image {
    background: #FAFAFA;
    display: flex;
    align-items: center;
}
.service-case-study-image-inner {
    padding: 0 20px;
}
.service-case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-case-study-text {
    background: #FAFAFA;
}
.service-case-study-text-hh {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    gap: 20px;
    justify-content: center;
    min-height: 425px;
}
.cta.services-list {
    gap: 40px;
}
.cta .services-list-item {
    height: 240px;
    flex: 0 0 24%;
}
.cta .services-list-item-inner {
    gap: 40px;
}
.services-list-item-top {
    gap: 15px;
}
.services-list {
    gap: 16px;
}
.services-list-item-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    height: 100%;
}
.services-list-item-inner img {
    height: 54px;
    width: auto;
    object-fit: cover;
}
.services-list-item-inner .services-list-item-top {
    flex-grow: 2;
}
.services-list-item {
    gap: 20px;
    padding: 40px;
    transition: ease all .3s;
    flex: 0 0 25%;
    background: var(--bg-dark2);
}
.cta .services-list-item {
    background: var(--bg-dark);
}
.cta .services-list-item.light {
    background: #fafafa;
}
.services-item-arrow {
    flex: 0 0 24px;
    padding: 10px;
    border-radius: 50%;
}
.services-list-item .services-item-arrow path {
    fill: var(--button-secondary);
}
.services-list-item:hover, {
    box-shadow: -4px 0px 32px 0px rgba(0, 0, 0, 0.12), 4px 0px 32px 0px rgba(0, 0, 0, 0.12);
}
.services-list-item.active .services-item-arrow,
.services-list-item:hover .services-item-arrow {
    background: #fff;
}
.services-list-item.active .services-item-arrow path,
.services-list-item:hover .services-item-arrow path {
    fill: var(--orange-main);
}
.services-content-item-text {
    margin-bottom: 32px;
    line-height: 1.65;
}
.services-content-item-bottom hr {
    width: 155px;
    margin-left: 0;
    background: #000;
}
.clients-section {
    padding: 40px 0;
}
.clients-title {
    margin-bottom: 48px;
}
.clients-item {
    flex: 0 0 24.8%;
    height: 80px;
}
.clients-item.slick-slide {
    display: flex !important;
    padding: 20px;
}
.clients-item img {
    filter: grayscale(1);
    max-height: 100%;
}
.works-title {
    margin-bottom: 32px;
}
.works-title a:hover {
	color: var(--orange-main);
	text-decoration: underline;
}
.works-holder {
    gap: 40px;
}
.works-item, .topics-wrapper {
    flex: 0 0 31%;
    flex-direction: column;
    display: flex;
    transition: ease all .3s;
}
.works-item-title-link:hover h5 {
	color: var(--orange-main);
	text-decoration: underline;
}
.topics-holder {
    gap: 10px;
}
.topics-holder a {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid var(--primary);
    height: 44px;
    padding: 0 24px;
    align-items: center;
    display: flex;
}
.topics-wrapper {
    padding: 40px 0;
}
.topics-holder a:hover, .topics-holder a.active {
    background-color: #fff;
    border-color: #dfdede;
}
.works-item-image img {
    width: 100%;
	height: 170px;
	object-fit: cover;
}
.works-item-bottom {
    padding: 24px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    flex-grow: 2;
    align-items: flex-start;
}
.works-item-bottom .works-item-desc {
    color: var(--text-light);
    flex-grow: 2;
    margin: 15px 0;
}
.works-item-desc a {
    color: var(--orange-main);
}
.works-item-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.works-item:hover {
    box-shadow: 1px 1px 15px 5px rgba(0,0,0,.2);
}
.button.with-arrow {
    display: flex;
    align-items: center;
    line-height: 24px;
    gap: 15px;
}
.donwload-template-btn {
    padding: 12px ;
	display: flex;
	gap: 15px;
}
.footer-new-section {
    background: var(--bg-dark2);
    padding: 70px 0;
}
.footer-new-section-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
footer {
    padding: 30px 0;
    background: var(--bg-dark);
}
.footer-subtitle {
    color: #8A8E99;
}
.footer-logo-text {
    color: var(--light2);
    margin-top: 24px;
}
.footer-top-left, .footer-bottom-menus {
    flex: 0 0 60%;
}
.footer-bottom {
    padding-top: 40px;
    align-items: flex-start;
}
.footer-external-logos {
    display: flex;
    gap: 24px;
}
.footer-external-logos-item .clutch {
    background: #fff;
    border-radius: 50%;
    display: flex;
    padding: 7.5px;
    justify-content: center;
    align-items: center;
}
.footer-external-logos-item .clutch img {
    width: 25px;
    height: 25px;
}
.footer-bottom-col {
    flex: 0 0 50%;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-external-logos-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.footer-menu a {
    color: var(--light2);
    display: inline-block;
    margin-bottom: 12px;
    border-bottom: 2px solid transparent;
}
.footer-col-title {
    margin-bottom: 24px;
    display: inline-block;
    border-bottom: 2px solid transparent;
}
.footer-menu a:hover, .footer-col-title:hover {
    border-color: var(--orange-main);
}
.footer-socials {
    margin-top: 60px;
    gap: 20px;
}
.footer-copyright-holder {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 40px;
    align-items: flex-end;
}
.footer-copyright-holder.no-margin {
    margin-top: 0;
}
.footer-copyright-holder * {
    color: var(--light2);
    font-size: 12px;
}
.footer-copyright-holder a {
    border-bottom: 1px solid transparent;
}
.footer-copyright-holder a:hover {
    border-color: var(--orange-main);
}
.banner-section {
    padding: 64px 0;
}
.rates-item-icon {
    background: #000;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.rates-holder {
    gap: 24px;
}
.rates-item {
    flex: 0 0 43%;
    padding: 20px;
    min-height: 280px;
    background: #fff;
}
.mobile-hamburger, .mobile-close {
    display: none;
}
.input-holder {
    margin-bottom: 20px;
}
.input-holder label {
    display: block;
    margin-bottom: 4px;
}
.input-holder label span {
    color: #9CA0AB;
}
.contact-button {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 32px;
}
input[type=text], input[type=email], textarea {
    border: 1px solid var(--divider2);
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 18px;
    font-size: 16px;
}
.contact-subtitle-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-subtitle-list {
    margin-top: 32px;
}
.contact-subtitle-list li {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    padding-left: 48px;
    line-height: 32px;
}
.contact-subtitle-list li:before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background: url(../images/checkmark_circle_regular.svg) center center no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
input:focus {
    border: 1px solid var(--bg-dark);
    border-radius: 0;
}
.projects-item {
    flex: 0 0 48.2%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: ease all .3s;
}
.projects-item:hover {
    box-shadow: 1px 1px 15px 5px rgba(0,0,0,.2);
}
.projects-holder {
    gap: 40px;
    margin-top: 48px;
}
.project-item-text {
    padding: 16px 24px;
    background-color: #FAFAFA;
    flex-grow: 2;
}
.project-item-text p {
    margin: 0;
}
.project-item-text .projects-item-category {
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-light)
}
.projects-item-title:hover {
    color: var(--orange-main);
    text-decoration: underline;
}
.field-group-holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.field-group-holder .mc-field-group {
    flex: 0 0 49%;
}
.field-group-holder .mc-field-group.textarea {
    flex: 0 0 100%;
}
.each-div p {
    color: #8B8C9E;
    margin-bottom: 20px;
}
.mailchimp-custom-title {
    margin-bottom: 70px;
}
.mailchimp-custom-subtitle {
    margin-bottom: 32px;
}
.mailchimp-custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    margin-bottom: 70px;
}
.mailchimp-custom-list li {
    flex: 0 0 31%;
    background-color: #fafafa;
    overflow: hidden;
    padding-bottom: 30px;
}
.mailchimp-custom-list input {
    display: none;
}
.mailchimp-custom-list label {
    font-size: 32px;
    font-weight: 600;
    padding: 40px;
    background-color: #fafafa;
    display: block;
    position: relative;
    height: 100%;
    cursor: pointer;
}
.mailchimp-custom-list label:before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border: 3px solid #000;
    border-radius: 50%;
    margin-bottom: 40px;
}
.mailchimp-custom-list input:checked + label:before {
    background-color: var(--orange-main);
    border-color: var(--orange-main);
}
.mailchimp-custom-list input:checked + label:after {
    content: '';
    display: inline-block;
    transform: rotate(45deg);
    height: 21px;
    width: 11px;
    border-bottom: 5px solid var(--white);
    border-right: 5px solid var(--white);
    position: absolute;
    top: 44px;
    left: 52px;
}
.schedule-chat-section {
    padding: 100px 0;
}
.mailchimp-input-inner {
    position: relative;
}
.mailchimp-input-inner input {
    padding-left: 40px;
}
.mailchimp-input-inner svg {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}
.schedule-form-message {
    display: none;
}
.mailchimp-show-form-subtitle {
    margin: 32px 0;
}
.partnership-text-part {
    flex: 0 0 70%;
}
.industry-domains-section {
    background-color: #FAFAFA;
}
.industry-domains-holder {
    margin-top: 24px;
}
.service-single-featured-img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 50px;
    max-height: 460px;
}
.single-post .service-single-featured-img {
	margin-bottom: 0;
}
.service-content-bullets {
    margin-top: 20px;
    max-width: 930px;
}
.service-content-bullets br {
	display: none;
}
.service-content-bullets-item p {
    margin-bottom: 0;
}
.service-content-bullets-item:not(:last-child) {
    margin-bottom: 40px;
}
.service-content-bullets-item-top {
    gap: 15px;
	margin-bottom: 15px;
}
.service-content-bullets-item-top h5 {
	margin: 0;
}
.under-projects {
    margin-top: 30px;
}
.under-projects h4 {
    margin-bottom: 32px;
}
.footer-squares {
    display: flex;
    gap: 24px;
    margin-top: 30px;
	flex: 0 0 30%;
}
.footer-external-logos-wrapper {
	flex: 0 0 30%;
}
.footer-square {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--orange-main);
}
.our-team-banner-section {
    background-color: #191f2d;
}
.our-story-col {
    flex: 0 0 100%;
}
.our-story-row {
    margin-top: 56px;
}
.team-holder {
    gap: 40px;
    margin-top: 40px;
}
.team-item {
    background-color: var(--white);
    flex: 0 0 31%;
    transition: ease all .3s;
    display: flex;
    flex-direction: column;
}
.team-item.hidden {
    display: none;
}
.team-item-title, .team-item-bottom {
    flex-grow: 1;
}
.team-item-descr {
    flex-grow: 2;
}
.team-item:hover, .filling-block:hover, .partners-item:hover {
    box-shadow: -4px 0px 32px 0px rgba(0, 0, 0, 0.12), 4px 0px 32px 0px rgba(0, 0, 0, 0.12);
}
.team-item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--bg-dark);
}
.services-filling, .filling-block {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.filling-block {
    background: #fff;
    flex-direction: column;
    gap: 30px;
	margin-bottom: 3%;
}
.filling-block.big, .services-filling.big {
    flex: 0 0 65.5%;
}
.filling-block.small, .services-filling.small {
    flex: 0 0 31%;
}
.filling-block-inner {
    flex-direction: column;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}
.team-item-text {
    padding: 24px;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    flex-grow: 2;
}
.team-item-bottom {
    display: flex;
    gap: 20px;
}
.innovation-section {
    background: var(--bg-dark2);
}
.innovation-holder {
    flex-direction: column;
    gap: 40px;
    width: 75%;
    align-items: flex-start;
}
.service-content-additional-item-col {
    flex: 0 0 47%;
}
.service-content-additional-item {
    margin-top: 48px;
}
.service-content-additional-item h3 {
    margin-bottom: 20px;
}
#mc_embed_signup div.mce_inline_error {
    margin-bottom: 0 !important;
}
.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
/* #mce-success-response {
    position: fixed;
    top: 125px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}*/
.close-form-container {
    gap: 10px;
    padding: 15px;
}
.conclusion-image {
    margin-top: 40px;
}
.project-navigation-section {
    background-color: #FAFAFA;
    padding: 40px 0;
}
.project-navigation-holder a {
    width: 180px;
    justify-content: center;
    padding: 12px 0;
}
.project-navigation-holder {
    max-width: 700px;
    margin: 0 auto;
}
.works-item-image.blog img {
    width: 100%;
    height: 205px;
    object-fit: cover;
}
.works-holder.latest {
    margin-bottom: 40px;
}
.all-link {
    display: flex;
    align-items: center;
    gap: 10px;
}
.works-holder.latest {
    justify-content: space-between;
}
.post-content {
    flex: 0 0 70%;
    max-width: 70%;
}
.post-content-holder br {
	display: none;
}
.post-sidebar {
    flex: 0 0 25%;
}
.topics-desc {
    margin: 15px 0 40px;
}
.post-meta {
    margin: 24px 0;
}
.post-meta .author {
	color: #494E5B;
	font-weight: 500;
}
.post-disclaimer {
    margin-bottom: 40px;
}
.partners-holder {
    margin-top: 48px;
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.partners-item {
    flex: 0 0 31%;
    transition: ease all .3s;
    margin-bottom: 2%;
}
.partners-item-footer {
    padding: 24px;
    background-color: var(--white);
    min-height: 192px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 2;
}
.partners-item-footer p, .partners-item-footer h5 {
    flex-grow: 2;

}
.categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    margin-top: 40px;
}
.categories-wrapper .partners-item {
    margin-bottom: 3%;
    display: flex;
    flex-direction: column;
}
.in-development-section {
    padding: 80px 0 120px;
}
.in-development-holder {
    display: flex;
    align-items: center;
    gap: 5%;
}
.in-development-text {
    font-weight: 600;
}
.in-development-text p:not(:last-child) {
    margin-bottom: 30px;
}
.in-development-text p:last-child {
    margin-bottom: 0;
}
.our-story-row-item, .partners-subtitle {
    max-width: 70%;
}
.our-story-row-item-title-holder {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.our-story-row-item h4 {
    margin: 0;
}
.partners-cta-block {
    margin: 40px 0 0;
}
.partners-cta-block-inner {
    background: #fff;
    padding: 60px 135px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.research-partners {
    margin-top: 60px;
}
.global-overlay {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}
.global-loader {
    display: flex;
    gap: 15px;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.dot-loader {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #f44336;
  position: relative;
  -webkit-animation: 1.2s grow ease-in-out infinite;
  animation: 1.2s grow ease-in-out infinite;
}

.dot-loader--2 {
  -webkit-animation: 1.2s grow ease-in-out infinite 0.15555s;
  animation: 1.2s grow ease-in-out infinite 0.15555s;
  margin: 0 20px;
}
.dot-loader--3 {
  -webkit-animation: 1.2s grow ease-in-out infinite 0.3s;
  animation: 1.2s grow ease-in-out infinite 0.3s;
}
.industry-domains-column p {
    margin-bottom: 5px;
}
.post-content-text {
    line-height: 1.6;
}
.post-content-text ul li, .post-content-text ol li {
    margin-bottom: 15px;
}
.post-content-text ul, .post-content-text ol {
	padding-left: 10px;
	margin: 0;
}
.post-content-text a, .service-content-bullets-item a:not(.button) {
	color: var(--orange-main);
	text-decoration: underline;
}
.post-content-text a:hover, .service-content-bullets-item a:hover {
	text-decoration: none;
}
.button.secondary.with-arrow.sp-subscribe-button {
    height: 48px;
    padding: 0 20px;
}
.post-content-share-holder {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.single-post-subscribe-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
	display: none;
}
.single-post-subscribe-popup {
    background: #fff;
    max-width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 30px;
    transform: translate(-50%, -50%);
    width: 500px;
	display: none;
}
.single-post-subscribe-popup .mc-field-group {
    margin-bottom: 15px;
}
.single-post-subscribe-popup .mc-field-group label {
    display: block;
    margin-bottom: 5px;
}
#mce-error-response {
    color: red;
    font-weight: 700;
    margin: 15px 0;
}
.a2a_full_services .a2a_i, .a2a_full_header, .a2a_full_footer {
	display:none !important;
}
.a2a_full_services .a2a_i[href="/#copy_link"], .a2a_full_services .a2a_i[href="/#email"], .a2a_full_services .a2a_i[href="/#linkedin"] {
	display: inline-block !important;
	text-align: center;
}
.a2a_full_services {
	overflow: auto !important;
	padding: 30px !important;
	height: auto !important;
	left: 50% !important;
}
.a2a_full {
	height: auto !important;
	transform: translate(-50%, -50%);
	top: 50% !important;
	margin-left: 0 !important;
}
.hero-section-new {
    padding: 40px 0;
    background: #2F323B;
}
.hero-section-new-wrapper {
    height: 480px;
    display: flex;
    align-items: center;
    padding: 0 80px;
}
.hero-section-new-text {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.team-member-top-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.team-member-top-buttons-holder {
    display: flex;
    align-items: center;
    gap: 20px;
}
.team-member-top-img {
    flex: 0 0 30%;
}
.team-member-top-text {
    flex: 0 0 70%;
}
.team-member-top-img img {
    width: 100%;
}
.team-member-top-text {
    align-self: stretch;
    background: #FAFAFA;
    display: flex;
    align-items: center;
}
.team-member-top-text-holder {
    padding: 0 70px;
}
.team-member-top-text-holder {
    padding: 0 70px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.team-member-accordion-item-title {
    display: flex;
    align-items: center;
    gap: 15px;
}
.team-member-accordion-inner {
    max-width: 65%;
}
.team-member-accordion-item {
    margin-bottom: 50px;
}
.team-member-accordion-item-title {
    margin-bottom: 10px;
}
.team-member-accordion-item-title h4 {
    margin: 0;
}
.development-partners-title {
    display: flex;
    align-items: center;
    gap: 15px;
}
.phonefield.phonefield-us {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.phonefield.phonefield-us input {
    width: 32%;
}
.thank-you-inner {
    display:flex;
    flex-direction:column;
    align-items:flex-start; 
    padding:30px;
    height: 60vh;
}
.thank-you-inner h1 {
    margin-bottom: 30px;
}
.thank-you-inner p {
    font-weight: 500;
    font-size: 16px;
}
#mc-embedded-subscribe[disabled] {
    opacity: .3;
    cursor: not-allowed;
    background: var(--button-secondary);
}
.red-asterisk {
    color: red !important;
}
.post-content figure {
    max-width: 100% !important;
}
.testimonials-slider .testimonials-slide-inner {
    margin: 15px;
    box-shadow: 1px 1px 15px 5px rgba(0, 0, 0, .2);
    padding: 30px;
    height: calc(100% - 93px);
}
.testimonials-slide-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 30px;
}
.testimonials-slide-logo img {
	height: 40px;
	max-width: 100%;
	object-fit: cover;
}
.testimonials-slide-text {
	margin-bottom: 20px;
	font-family: "Plus Jakarta Sans";
	font-size: 16px;
	font-style: italic;
	font-weight: 600;
	line-height: 1.3;
	color: #121317;
}
.testimonials-slide-name, .testimonials-slide-position {
	color:  #494E5B;
	font-family: "Plus Jakarta Sans";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
}
.testimonials-slide-name {
	margin-bottom: 5px;
}
.testimonials-slider .slick-track {
  display: flex;
  align-items: stretch; 
}

.testimonials-slider .slick-slide {
  height: auto; 
}
.testimonials-section {
	padding: 50px 0;
}
.footer-affiliates-row {
    margin-bottom: 30px;
}
@media(max-width: 1199px) {
    h1, .h1 {
        font-size: 48px;
    }
    h2, .h2 {
        font-size: 44px;
    }
    .container {
        max-width: 100%;
        padding: 0 24px;
    }
    .projects-item {
        flex: 0 0 47.2%;
    }
    .cta.services-list {
        gap: 24px;
    }
    .cta .services-list-item {
        height: auto;
        padding: 30px;
        flex: 0 0 25%;
    }
    .cta .services-list-item h4 {
        font-size: 30px;
    }
    .team-holder {
        gap: 24px;
    }
    .team-item {
        flex: 0 0 31.5%;
    }
    .services-list-item {
        padding: 30px;
    }
    .service-case-study-text-hh {
        min-height: unset;
    }
    .service-case-study-inner {
        flex-direction: column;
    }
}
@media(max-width: 991px) {
    h3 {
        font-size: 32px;
    }
    section, .hero-section, .clients-section {
        padding: 32px 0;
    }
    .hero-slide-holder {
        flex-direction: column-reverse;
    }
    .hero-slide-text, .hero-slide-image {
        width: 100%;
    }
    .hero-slide-image img {
        max-height: 295px;
        margin-bottom: 24px;
    }
    .services-holder {
        flex-direction: column;
    }
    .services-content {
        margin-bottom: 32px;
    }
    .services-list-item {
        flex: 0 0 42%;
        padding: 24px;
    }
    .clients-holder {
        gap: 32px;
    }
    .works-item, .topics-wrapper {
        flex: 0 0 48%;
    }
    footer {
        padding: 24px;
    }
    .footer-top {
        gap: 32px;
    }
    .footer-bottom-col {
        flex: 0 0 48%;
        margin-bottom: 24px;
    }
    .footer-bottom-col.logo {
        flex: 0 0 100%;
    }
    .footer-col-title {
        margin: 16px 0;
    }
    .footer-copyright-holder {
        margin-top: 40px;
        justify-content: flex-start;
    }
    .footer-socials {
        margin-top: 24px;
    }
    .footer-bottom {
        padding-top: 25px;
    }
    .mobile-hamburger {
        display: block;
    }
    .main-menu {
        position: absolute;
        top: 106px;
        width: 100%;
        background: #fff;
        left: 0;
        display: none;
        z-index: 5;
        padding: 24px 0;
    }
    .main-menu li > a {
        display: block;
        font-size: 18px;
        font-weight: 600;
        text-transform: capitalize;
    }
    .main-menu li.current-menu-item a, .main-menu li.current-menu-parent a {
        border: none;
    }
    .main-menu .sub-menu {
        display: block;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .main-menu .sub-menu li a {
        font-size: 16px;
        /*text-transform: lowercase;*/
        font-weight: 400;
    }
    .main-menu .sub-menu li.current-menu-item a {
        border-left: 3px solid var(--orange-main);
        background: #FAFAFA;
    }
    .header-inner .button, .subheader, .menu-holder.opened .mobile-hamburger {
        display: none;
    }
    .menu-holder {
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .is_form .menu-holder {
        width: auto;
    }
    .menu-holder.opened .mobile-close {
        display: block;
    }
    .mobile-menu-button {
        display: block;
        margin-top: 40px;
    }
    .main-menu .mobile-menu-button a {
        text-align: center;
        color: var(--white);
        background-color: var(--orange-main);
        margin-left: 24px;
        margin-right: 24px;
        text-transform: uppercase;
        font-weight: 500;
    }
    header {
        position: relative;
    }
    .flex-container.mobile-col {
        flex-direction: column;
        align-items: flex-start;
    }
    .help-section h2, .provide-section h2, .rates-section h2 {
        margin-bottom: 32px;
        font-size: 40px;
    }
    .rates-item {
        flex: 0 0 100%;
        min-height: 275px;
        padding: 32px;
        max-width: calc(100% - 64px);
    }
    .mobile-col .w47 {
        flex: 0 0 100%;
        width: 100%;
    }
    .contact-text-holder {
        margin-bottom: 12px;
    }
    .services-content-bottom-item {
        flex: 0 0 37%;
    }
    .mailchimp-custom-list label {
        font-size: 23px;
        padding: 20px;
    }
    .mailchimp-custom-list input:checked + label:after {
        top: 25px;
        left: 33px;
    }
    .partnership-text-part {
        margin-bottom: 15px;
        flex: 0 0 100%;
    }
    .industry-domains-column {
        flex: 0 0 48%;
    }
    .cta .services-list-item {
        flex: 0 0 40%;
        height: 220px;
    }
    .team-item {
        flex: 0 0 48%;
    }
    .innovation-holder {
        width: 100%;
    }
    .filling-block, .services-filling {
        display: none;
    }
    .in-development-holder {
        flex-direction: column;
    }
    .in-development-text {
        text-align: center;
        margin-top: 40px;
    }
    .in-development-text p:not(:last-child) {
        margin-bottom: 15px;
    }
    .in-development-section {
        padding: 60px 0;
    }
    .partners-cta-block-inner {
        padding: 60px;
    }
    .partners-item {
        flex: 0 0 48%;
    }
    .works-holder {
        gap: 20px;
    }
}
@media(max-width: 767px) {
    section, .hero-section, .clients-section, .footer-new-section {
        padding: 24px 0;
    }
    .container {
        padding: 0 15px;
    }
    h1, h2, .h1, .h2 {
        font-size: 32px;
    }
    h3, .h3 {
        font-size: 24px;
    }
    h4, .h4 {
        font-size: 22px;
    }
    h5, .h5 {
        font-size: 20px;
    }
    body, .text-medium {
        font-size: 14px;
    }
    .hero-slide-text p {
        margin-bottom: 24px;
    }
    .hero-slide-image img {
        max-height: 195px;
    }
    .hero-slider-controls {
        justify-content: center;
        margin-top: 30px;
    }
    .hero-slide-text .button {
        display: flex;
        width: 100%;
        text-align: center;
        padding: 16px 0;
		justify-content: center;
    }
    .services-content-item-text {
        line-height: 1.3;
    }
    .services-list-item-top {
        flex-wrap: nowrap;
    }
    .services-list-item {
        padding: 15px;
    }
    .clients-title {
        margin-bottom: 24px;
    }
    .works-item-bottom {
        padding: 24px;
    }
    .footer-bottom-col.logo {
        margin-right: 0;
    }
    .footer-bottom-col {
        flex: 0 0 100%;
    }
    footer {
        padding: 24px 0;
    }
    .contact-subtitle-list li {
        margin-bottom: 16px;
        line-height: 1.3;
    }
    .works-item, .topics-wrapper {
        flex: 0 0 100%;
    }
    .services-list {
        flex-direction: column;
    }
    .services-content-bottom-item {
        padding: 24px 13px;
    }
    .mailchimp-custom-list label {
        font-size: 16px;
        padding: 10px;
        display: flex;
        gap: 15px;
        align-items: center;
    }
    .mailchimp-custom-list label:before {
        width: 24px;
        height: 24px;
        margin-bottom: 0;
    }
    .mailchimp-custom-list input:checked + label:after {
        top: 50%;
        transform: translateY(-60%) rotate(45deg);
        height: 15px;
        width: 7px;
        left: 18px;
    }
    .mailchimp-custom-list {
        flex-wrap: wrap;
    }
    .mailchimp-custom-list li {
        flex: 0 0 100%;
    }
    .schedule-chat-section {
        padding: 40px 0;
    }
    .mailchimp-custom-title {
        margin-bottom: 40px;
    }
    .field-group-holder .mc-field-group {
        flex: 0 0 100%;
    }
    .text-big {
        font-size: 16px;
    }
    .industry-domains-column {
        flex: 0 0 100%;
    }
    .projects-holder {
        flex-direction: column;
    }
    .team-item {
        flex: 0 0 100%;
    }
    .our-story-row {
        flex-direction: column;
        gap: 24px;
    }
    .service-content-additional-item {
        margin-top: 30px;
    }
    .service-content-additional-item-holder {
        flex-direction: column;
        gap: 15px;
    }
    .header-inner {
        padding: 0 15px;
    }
    .project-navigation-holder {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .partners-item-footer {
        min-height: 100px;
    }
    .in-development-section {
        padding: 30px 0;
    }
    .our-story-row-item, .partners-subtitle {
        max-width: 100%;
    }
	.hero-section-new, .hero-section-new .container {
		padding: 0;
	}
	.hero-section-new-wrapper {
		padding: 30px;
		height: auto;
        background-position-x: left !important;
        background-size: initial !important;
	}
	.hero-section-new-wrapper h1 {
		font-size: 48px;
		margin: 0 0 20px;
        text-align: center;
	}
	.hero-section-new-wrapper .text-big {
		font-size: 24px;
	}
	.hero-section-new-text {
		align-items: normal;
	}
	.hero-section-new-text .button.with-arrow {
		justify-content: center;
	}
	.hero-section-new-text p {
		margin: 0 0 20px;
        text-align: center;
	}
    .partners-cta-block-inner {
        padding: 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .partners-cta-block-inner h4 {
        text-align: center;
    }
    .main-project-content-holder {
        flex-direction: column-reverse;
        gap: 30px;
        align-items: center;
    }
    .main-project-client-logo {
        position: static;
    }
    .project-content-inner {
        max-width: 100%;
    }
    .categories-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 25px;
    }
    .footer-new-section-inner {
        text-align: center;
        align-items: center;
    }
    .post-content {
        max-width: 100%;
    }
    .post-content-holder {
        flex-direction: column;
    }
}

@keyframes grow {
  0%, 40%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*OVERRIDE*/
.icon-trail {display: flex; gap: 4px; align-items: center;}
.wrap {display: inline;}
.icon-bullet {width:40px; height: 40px;}