/* 
Here will go all custom scss for theme
*/

img {
    border-radius: 10px;
}

@font-face {
    font-family: 'Apercu Pro';
    src: url("../fonts/ApercuPro.woff2") format("woff2"), url("../fonts/ApercuPro.woff") format("woff"), url("../fonts/ApercuPro.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk Ex Trial';
    src: url("../fonts/AktivGroteskExTrial-Bold.woff2") format("woff2"), url("../fonts/AktivGroteskExTrial-Bold.woff") format("woff"), url("../fonts/AktivGroteskExTrial-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

div#page {
    overflow: hidden;
}

body {
    font-family: 'Apercu Pro';
    background: #E1E1E6;
    font-size: 24px;
    line-height: 34px;
}

@media (min-width: 992px) {
    body {
        color: #000;
        font-size: 26px;
        line-height: 36px;
        font-weight: 400;
    }
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body .aktiv {
    font-family: 'Aktiv Grotesk Ex Trial';
}

.container {
    max-width: 1440px;
}

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

.button-border {
    border: 3px solid rgba(225, 225, 230, 0.3);
    box-sizing: border-box;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    padding: 2px 28px 2px 28px;
    color: #000000;
    font-size: 18px;
    line-height: 44px;
    transition: all 0.5s;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.button-border:hover {
    color: #000;
}

.button-border:hover:before {
    right: 19px;
}

.button-border:after {
    content: '';
    width: 16px;
    height: 3px;
    background: #000000;
    display: block;
    margin-left: 18px;
}

.button-border:before {
    content: '';
    width: 16px;
    height: 3px;
    background: #000000;
    display: block;
    margin-left: 18px;
    position: absolute;
    right: 28px;
    transition: all 0.4s;
}

.button-border-white {
    border: 3px solid #fff;
    box-sizing: border-box;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    padding: 2px 28px 2px 28px;
    color: #000000;
    font-size: 18px;
    line-height: 44px;
    transition: all 0.5s;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.button-border-white:hover {
    color: #000;
}

.button-border-white:hover:before {
    right: 19px;
}

.button-border-white:before {
    content: '';
    width: 16px;
    height: 3px;
    background: #000000;
    display: block;
    margin-left: 18px;
    position: absolute;
    right: 28px;
    transition: all 0.4s;
}

.button-border-white:after {
    content: '';
    width: 16px;
    height: 3px;
    background: #000000;
    display: block;
    margin-left: 18px;
}

@media (max-width: 992px) {
    .row.padding-mobile {
        padding: 10px;
    }
}

@media (max-width: 992px) {
    .col,
    .col-1,
    .col-10,
    .col-11,
    .col-12,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-auto,
    .col-lg,
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-auto,
    .col-md,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-auto,
    .col-sm,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-auto,
    .col-xl,
    .col-xl-1,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-auto {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.site-hamburger {
    width: 84px;
    height: 53px;
    /* Grey */
    border: 3px solid transparent;
    box-sizing: border-box;
    border-radius: 100px;
    display: flex;
    position: absolute;
    z-index: 9;
    right: 10px;
    top: 5px;
}

.site-hamburger.open {
    border: 3px solid #E1E1E6;
}

#nav-icon3 {
    width: 30px;
    height: 45px;
    position: absolute;
    right: 11px;
    top: 13px;
    transform: rotate(0deg);
    cursor: pointer;
    z-index: 9;
}

@media (min-width: 1200px) {
    #nav-icon3 {
        display: none;
    }
}

#nav-icon3.open {
    right: 24px;
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
}


/* Icon 3 */

#nav-icon3 span:nth-child(1) {
    top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 9px;
}

#nav-icon3 span:nth-child(4) {
    top: 18px;
}

#nav-icon3.open span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2) {
    transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
    transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2),
#nav-icon3.open span:nth-child(3) {
    top: 10px;
    height: 2px;
}

header#hamburger {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 0 10px;
}

@media (min-width: 1200px) {
    header#hamburger {
        padding: 15px 0 25px;
    }
}

header#hamburger .navbar-nav {
    justify-content: space-between;
    width: 100%;
}

header#hamburger .navbar-nav li a {
    color: #2a2b4b;
}

@media (max-width: 1200px) {
    header#hamburger .logo-header {
        position: relative;
        z-index: 99999;
    }
}

@media (max-width: 380px) {
    header#hamburger .logo-header {
        width: 200px;
    }
}

@media (max-width: 1199px) {
    header#hamburger .navbar div#main-nav {
        background: #fff;
        position: absolute;
        left: -20px;
        right: -20px;
        flex-grow: unset;
        text-align: left;
        top: -60px;
        padding: 100px 20px 0px 20px;
        border-radius: 0 0 30px 30px;
    }
    header#hamburger .navbar div#main-nav ul {
        align-items: flex-start;
    }
    header#hamburger .navbar div#main-nav ul li {
        margin-bottom: 24px;
    }
    header#hamburger .navbar div#main-nav ul li.black-button {
        margin-left: 24px;
    }
    header#hamburger .navbar div#main-nav ul li.black-button a {
        padding: 14px 20px;
        font-size: 18px;
    }
    header#hamburger .navbar div#main-nav ul li a {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    header#hamburger .navbar div#main-nav ul {
        align-items: flex-start;
    }
    header#hamburger .navbar div#main-nav ul li.black-button {
        margin-left: 0px;
    }
}

@media (min-width: 992px) {
    header#hamburger .navbar ul {
        justify-content: flex-end;
        align-items: center;
    }
}

header#hamburger .navbar ul li.black-button {
    margin-left: 30px;
}

header#hamburger .navbar ul li.black-button a {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.4s;
}

header#hamburger .navbar ul li.black-button a:hover {
    opacity: 0.8;
}

header#hamburger .navbar ul li a {
    color: #000;
    font-size: 18px;
    line-height: 24px;
    padding: 0;
    transition: all 0.4s;
}

header#hamburger .navbar ul li a:hover {
    opacity: 0.45;
}

@media (min-width: 992px) {
    header#hamburger .navbar ul li a {
        padding: 0px 0 0px 22px;
    }
}

header#hamburger .navbar ul li a span {
    font-size: 16px;
    line-height: 16px;
    /* or 100% */
    text-align: right;
    /* Grey */
    color: #E1E1E6;
    background-color: #000;
    display: inline-block;
    border-radius: 4px;
    padding: 5px 8px 5px 7px;
}

.banner {
    background: linear-gradient(180deg, #7278FF 0%, #E1E1E6 63.99%);
    padding: 80px 0 10px;
}

@media (min-width: 992px) {
    .banner {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 200px;
        padding-bottom: 60px;
    }
}

.banner h1,
.banner h2 {
    color: #000;
    font-size: 66px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .banner h1,
    .banner h2 {
        font-size: 44px;
        line-height: 48px;
    }
}

.banner p {
    color: #000;
    font-size: 26px;
    line-height: 36px;
}

@media (max-width: 991px) {
    .banner p {
        font-size: 24px;
        line-height: 34px;
    }
}

.banner .banner-image {
    max-width: 1500px;
    margin: 0 auto;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .banner .banner-image {
        margin-top: -20px;
    }
}

.solutions .container {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.solutions .container span {
    color: #717173;
    font-size: 18px;
    line-height: 32px;
    display: block;
}

.solutions .container h2 {
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .solutions .container h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

.solutions .mySwiperSolutions {
    overflow: visible;
    position: relative;
    left: -4px;
}

.solutions .mySwiperSolutions .swiper-slide {
    width: 92%;
}

.solutions .mySwiperSolutions .swiper-slide img {
    width: 100%;
    height: auto;
}

.offer {
    padding: 30px 0;
}

@media (min-width: 992px) {
    .offer {
        padding: 70px 0;
    }
}

.offer .container span {
    color: #717173;
    font-size: 18px;
    line-height: 32px;
    display: block;
}

.offer .container h2 {
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .offer .container h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

.offer .container .single {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .offer .container .single {
        min-height: 205px;
    }
}

.offer .container .single span {
    display: block;
    margin-top: 50px;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}

.offer .container .single img {
    width: 29px;
    height: auto;
}

@media (max-width: 992px) {
    .offer .row.padding-mobile {
        padding: 10px;
    }
}

@media (max-width: 992px) {
    .offer .col,
    .offer .col-1,
    .offer .col-10,
    .offer .col-11,
    .offer .col-12,
    .offer .col-2,
    .offer .col-3,
    .offer .col-4,
    .offer .col-5,
    .offer .col-6,
    .offer .col-7,
    .offer .col-8,
    .offer .col-9,
    .offer .col-auto,
    .offer .col-lg,
    .offer .col-lg-1,
    .offer .col-lg-10,
    .offer .col-lg-11,
    .offer .col-lg-12,
    .offer .col-lg-2,
    .offer .col-lg-3,
    .offer .col-lg-4,
    .offer .col-lg-5,
    .offer .col-lg-6,
    .offer .col-lg-7,
    .offer .col-lg-8,
    .offer .col-lg-9,
    .offer .col-lg-auto,
    .offer .col-md,
    .offer .col-md-1,
    .offer .col-md-10,
    .offer .col-md-11,
    .offer .col-md-12,
    .offer .col-md-2,
    .offer .col-md-3,
    .offer .col-md-4,
    .offer .col-md-5,
    .offer .col-md-6,
    .offer .col-md-7,
    .offer .col-md-8,
    .offer .col-md-9,
    .offer .col-md-auto,
    .offer .col-sm,
    .offer .col-sm-1,
    .offer .col-sm-10,
    .offer .col-sm-11,
    .offer .col-sm-12,
    .offer .col-sm-2,
    .offer .col-sm-3,
    .offer .col-sm-4,
    .offer .col-sm-5,
    .offer .col-sm-6,
    .offer .col-sm-7,
    .offer .col-sm-8,
    .offer .col-sm-9,
    .offer .col-sm-auto,
    .offer .col-xl,
    .offer .col-xl-1,
    .offer .col-xl-10,
    .offer .col-xl-11,
    .offer .col-xl-12,
    .offer .col-xl-2,
    .offer .col-xl-3,
    .offer .col-xl-4,
    .offer .col-xl-5,
    .offer .col-xl-6,
    .offer .col-xl-7,
    .offer .col-xl-8,
    .offer .col-xl-9,
    .offer .col-xl-auto {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.home .our-approach {
    padding: 630px 0 120px;
    background: linear-gradient(360deg, #E1E1E6 0%, #6970FD 39.06%, #6B72FE 61.46%, #E1E1E6 100%);
    margin-top: -570px;
}

@media (max-width: 992px) {
    .home .our-approach {
        padding: 630px 0 60px;
    }
}

.our-approach {
    background: linear-gradient(180deg, #7278FF 0%, #E1E1E6 63.99%);
    padding: 100px 0;
}

.our-approach .col-span {
    position: relative;
}

.our-approach .col-span:before {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    background: #000000;
    opacity: 0.3;
    margin-bottom: 3rem;
}

.our-approach .col-span span {
    color: #000;
    font-size: 18px;
    line-height: 32px;
    display: block;
}

.our-approach .row-head p {
    color: #000;
    font-size: 56px;
    font-weight: 400;
    line-height: 66px;
}

@media (max-width: 992px) {
    .our-approach .row-head p {
        font-size: 34px;
        line-height: 40px;
    }
}

.our-approach .row .person {
    display: flex;
    align-items: center;
}

.our-approach .row .person-data {
    margin-left: 24px;
}

.our-approach .row .person-data .name {
    font-size: 26px;
    line-height: 36px;
    color: #000;
}

.our-approach .row .person-data .place {
    font-size: 18px;
    line-height: 28px;
    color: #000;
    opacity: .5;
}

@media (max-width: 992px) {
    .our-approach a.button-border {
        margin-top: 44px;
    }
}

.banner-page {
    background: linear-gradient(180deg, #7278FF 0%, #E1E1E6 63.99%);
    padding-top: 100px;
    padding-bottom: 0px;
}

@media (max-width: 992px) {
    .banner-page {
        background: linear-gradient(180deg, #7278FF 0%, #E1E1E6 100%);
        padding-top: 420px;
        padding-bottom: 0px;
    }
}

@media (min-width: 992px) {
    .banner-page {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 180px;
        padding-bottom: 680px;
        margin-bottom: -670px;
    }
}

.banner-page h1,
.banner-page h2 {
    color: #000;
    font-size: 66px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .banner-page h1,
    .banner-page h2 {
        font-size: 46px;
        line-height: 46px;
    }
}

.banner-page p {
    color: #000;
    font-size: 26px;
    line-height: 36px;
}

@media (max-width: 992px) {
    .banner-page .container {
        margin-top: -320px;
        margin-bottom: -229px;
    }
}

.container-padding {
    padding: 0 20px;
}

@media (max-width: 480px) {
    .container-padding {
        padding: 0 10px;
    }
}

.news-slider .arrow-swiper,
.use-cases .arrow-swiper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    z-index: 1;
}

.news-slider .arrow-swiper>div,
.use-cases .arrow-swiper>div {
    display: flex;
    width: 84px;
    height: 53px;
    right: 64px;
    border: 3px solid #E1E1E6;
    box-sizing: border-box;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-right: 20px;
    cursor: pointer;
    transition: all 0.4s;
}

@media (max-width: 768px) {
    .news-slider .arrow-swiper>div,
    .use-cases .arrow-swiper>div {
        margin-left: 0;
        margin-right: 20px;
    }
}

.news-slider .arrow-swiper>div.swiper-button-disabled,
.use-cases .arrow-swiper>div.swiper-button-disabled {
    opacity: 0.3;
}

.news-slider .arrow-swiper>div img,
.use-cases .arrow-swiper>div img {
    width: 19px;
    height: auto;
}

.news-slider .arrow-swiper .swiper-button-prev-custom img,
.use-cases .arrow-swiper .swiper-button-prev-custom img {
    transform: rotate(180deg);
}

.page-id-19 .grid-cases .container .single a h2 {
    margin: 14px 0 5px;
}

@media (min-width: 992px) {
    .page-id-19 .grid-cases .container .single a h2 {
        min-height: 72px;
    }
}

.col-lg-12.cv {
    height: 80px;
}

.single-casestudy .our-clients {
    margin-top: -28px !important;
    margin-bottom: -140px !important;
}

@media (min-width: 992px) {
    section.single-post .container,
    section.single-casestudy .container {
        padding: 25px 41px !important;
    }
    .single-casestudy .our-clients {
        margin-top: -28px !important;
        margin-bottom: -80px !important;
    }
}

.our-clients .row-head p i {
    font-style: normal;
}

@media (max-width: 380px) {
    .page-id-13 .banner-page .container {
        margin-bottom: -190px;
    }
}

.columns-icons .container {
    background-color: #fff;
    border-radius: 15px;
}

.columns-icons .container h2 {
    margin: 0 0 25px 0;
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .columns-icons .container h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

.columns-icons .container .row-icons .single {
    background: #E1E1E6;
    border-radius: 10px;
    padding: 15px;
}

.columns-icons .container .row-icons .single span {
    display: block;
    margin-top: 50px;
    font-size: 26px;
    line-height: 36px;
    color: #000;
}

@media (min-width: 992px) {
    .columns-icons .container .row-icons .single span {
        margin-top: 100px;
    }
}

@media (max-width: 992px) {
    .page-id-13 .our-clients {
        margin-top: -200px;
    }
}

@media (max-width: 992px) {
    .page-id-13 .skills-gaps {
        padding: 10px 0 0px;
    }
    .page-id-13 .skills-gaps .container-padding {
        padding: 0 10px;
    }
}

@media (max-width: 992px) {
    .page-id-15 section.use-cases {
        position: relative;
        margin-top: 35px !important;
    }
    .page-id-15 section.use-cases .container-padding,
    .page-id-15 .tabs-section .container-padding {
        padding: 0 10px;
    }
}

.page-id-16 .tags {
    opacity: 1 !important;
}

@media (max-width: 992px) {
    .page-id-18 .careers-vision .container-padding {
        padding: 0px 10px;
    }
}

@media (max-width: 992px) {
    .page-id-18 section.offers-careers .container {
        margin-top: 0 !important;
        padding-top: 60px !important;
    }
}

@media (max-width: 992px) {
    section.single-casestudy>.container-padding>.container {
        padding: 12px 15px !important;
    }
    section.single-casestudy .container h1 {
        margin-bottom: -11px;
        padding-bottom: 0;
    }
    section.single-casestudy .container .short-desc {
        margin-bottom: -29px;
    }
    .offers-careers .form-recrut {
        padding: 15px !important;
    }
    .offers-careers .form-recrut h3 {
        font-size: 24px;
    }
    .form-control::placeholder {
        font-size: 17px;
    }
    .offers-careers .form-recrut form .send:after {
        right: 0;
        left: calc(50% + 23px);
    }
    footer .footer-contact span {
        color: #717173;
        font-size: 18px;
    }
    footer .row-copy {
        padding-top: 10px !important;
    }
    ul.socialmedia.menu {
        position: absolute;
        right: 0;
        width: 50%;
        padding-left: 12px;
    }
    .footer-contact .contact {
        flex: 0 0 51%;
        max-width: 51%;
    }
    footer .col-big {
        margin-bottom: 50px;
    }
    .banner-image-mobile {
        padding: 0 10px;
    }
    .banner h1 {
        padding-bottom: 0;
    }
    .banner {
        background: linear-gradient(180deg, #7278FF 0%, #E1E1E6 85.99%);
    }
    .form-recrut .img-file {
        top: 12px !important;
    }
}

@media (min-width: 992px) {
    footer .row-copy br {
        display: none;
    }
}

.cv .cv-file {
    height: 58px;
}

span.text-cv span {
    font-size: 16px !important;
}

.we-deliver {
    padding: 120px 0 50px;
}

@media (max-width: 992px) {
    .we-deliver {
        padding: 60px 0;
        margin: 0 -8px;
    }
}

.we-deliver img {
    border-radius: 10px;
}

.we-deliver h2 {
    margin: 0 0 25px 0;
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .we-deliver h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

.we-deliver p {
    font-size: 24px;
    line-height: 34px;
}

@media (min-width: 992px) {
    .we-deliver p {
        font-size: 26px;
        line-height: 36px;
    }
}

.skills-gaps {
    padding: 60px 0 0px;
}

.skills-gaps .container {
    background-color: #fff;
    border-radius: 15px;
}

.skills-gaps .container h2 {
    margin: 0 0 25px 0;
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .skills-gaps .container h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

.skills-gaps .container p {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .skills-gaps .container p {
        font-size: 26px;
        line-height: 36px;
    }
}

.our-clients {
    background: linear-gradient(0deg, #E1E1E6 0%, #6970FD 39.06%, #6B72FE 61.46%, #E1E1E6 100%);
    padding: 200px 0;
    margin-top: -150px;
    margin-bottom: -140px;
}

@media (max-width: 992px) {
    .our-clients {
        margin-bottom: -150px;
    }
}

.our-clients .swiper-slide {
    opacity: 0;
    transition: all 0.4s;
    padding-left: 4px;
}

.our-clients .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.our-clients .arrow-swiper {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row-reverse;
    z-index: 1;
}

@media (max-width: 768px) {
    .our-clients .arrow-swiper {
        position: relative;
        justify-content: flex-end;
        margin-top: 30px;
    }
}

.our-clients .arrow-swiper>div {
    display: flex;
    width: 84px;
    height: 53px;
    right: 64px;
    border: 3px solid #E1E1E6;
    box-sizing: border-box;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-left: 20px;
    cursor: pointer;
    transition: all 0.4s;
}

@media (max-width: 768px) {
    .our-clients .arrow-swiper>div {
        margin-left: 0;
        margin-right: 20px;
    }
}

.our-clients .arrow-swiper>div.swiper-button-disabled {
    opacity: 0.3;
}

.our-clients .arrow-swiper>div img {
    width: 19px;
    height: auto;
}

.our-clients .arrow-swiper .swiper-button-prev-custom img {
    transform: rotate(180deg);
}

.our-clients .container {
    background-color: #fff;
    border-radius: 15px;
}

.our-clients .col-span {
    position: relative;
}

.our-clients .col-span span {
    color: #717173;
    font-size: 18px;
    line-height: 32px;
    display: block;
}

.our-clients .row-head p {
    color: #000;
    font-size: 30px;
    font-weight: 400;
    line-height: 35px;
}

@media (min-width: 992px) {
    .our-clients .row-head p {
        font-size: 33px;
        line-height: 46px;
    }
}

.our-clients .row .person {
    display: flex;
    align-items: center;
}

.our-clients .row .person-data {
    margin-left: 24px;
}

.our-clients .row .person-data .name {
    font-size: 26px;
    line-height: 36px;
    color: #000;
}

.our-clients .row .person-data .place {
    font-size: 18px;
    line-height: 28px;
    color: #000;
    opacity: .5;
}

.tabs-section {
    padding-bottom: 70px;
}

@media (max-width: 992px) {
    .tabs-section {
        padding-bottom: 45px;
    }
}

.tabs-section .container {
    background-color: #fff;
    border-radius: 15px;
}

@media (max-width: 992px) {
    .tabs-section .container {
        overflow: hidden;
    }
}

.tabs-section .images-content img {
    padding: 10px;
    border-radius: 20px;
}

.tabs-section .images-content img:nth-child(1),
.tabs-section .images-content img:nth-child(4) {
    width: calc(40% - 10px);
    height: 247px;
    object-fit: cover;
    object-position: center;
}

.tabs-section .images-content img:nth-child(2),
.tabs-section .images-content img:nth-child(3) {
    width: calc(60% - 30px);
    height: 247px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 992px) {
    .tabs-section .mySwiperCarerrsVision {
        overflow: visible;
        position: relative;
        left: -4px;
    }
}

.tabs-section .mySwiperCarerrsVision .swiper-slide {
    width: 70%;
}

.tabs-section .mySwiperCarerrsVision .swiper-slide img {
    width: 100%;
    height: 247px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .tabs-section .mySwiperCarerrsVision .swiper-slide img {
        height: 500px;
    }
}

.tabs-section .accordion-list {
    margin-bottom: 30px;
}

.tabs-section .accordion-list li {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.tabs-section .accordion-list li:hover h3:before {
    transform: rotate(0deg);
}

.tabs-section .accordion-list li:nth-child(1) {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.tabs-section .accordion-list li:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.tabs-section .accordion-list li h3 {
    font-family: 'Apercu Pro';
    margin: 0;
    position: relative;
    padding-right: 35px;
    font-size: 25px;
    line-height: 36px;
    font-weight: 400;
}

.tabs-section .accordion-list li h3:before {
    content: '';
    background: url(/wp-content/uploads/2021/12/arrow-akssio.svg);
    width: 26px;
    height: 27px;
    position: absolute;
    top: 4px;
    right: 0;
    transition: all 0.4s;
    transform: rotate(90deg);
}

.tabs-section .accordion-list li .answer {
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: -20px;
}

.tabs-section .accordion-list li.active h3:before {
    transform: rotate(-90deg);
}

.industries span {
    color: #717173;
    font-size: 18px;
    line-height: 32px;
    display: block;
    margin-bottom: 12px;
}

.industries h2 {
    margin: 0 0 25px 0;
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .industries h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

.industries .row {
    justify-content: space-between;
}

.industries .single {
    max-width: 100%;
    flex: 0 0 100%;
    background-color: #fff;
    position: relative;
    min-height: 150px;
    border-radius: 10px;
    margin-bottom: 6px;
    padding: 10px;
    display: flex;
    align-items: flex-end;
}

.industries .single h3 {
    font-size: 26px;
    font-weight: 400;
    line-height: 36px;
    margin: 0;
    font-family: 'Apercu Pro';
}

.industries .single:before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    left: 10px;
    top: 10px;
    background: #E1E1E6;
    border-radius: 100px;
}

@media (min-width: 640px) {
    .industries .single {
        max-width: 49%;
        flex: 0 0 49%;
        min-height: 196px;
    }
}

@media (min-width: 992px) {
    .industries .single {
        max-width: 32.333%;
        flex: 0 0 32.3333%;
    }
}

@media (min-width: 1199px) {
    .industries .single {
        max-width: calc(20% - 6px);
        flex: 0 0 calc(20% - 6px);
    }
}

@media (min-width: 992px) {
    .page-id-15 section.use-cases {
        margin-top: 66px !important;
    }
}

.about-team .container {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.about-team .row-first span {
    color: #717173;
    font-size: 18px;
    line-height: 32px;
    display: block;
    margin-bottom: 12px;
}

.about-team .row-first h2 {
    margin: 0 0 25px 0;
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .about-team .row-first h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

.about-team .row-second .row-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #E1E1E6;
    margin-top: 20px;
    padding: 40px 0 15px;
}

.about-team .row-second .row-images img {
    width: 24%;
    height: auto;
    border-radius: 10px;
}

.about-team .row-second .mySwiperTeam {
    padding-left: 7px !important;
    overflow: visible;
}

.about-team .row-second .mySwiperTeam .swiper-slide {
    width: 85%;
}

.about-team .row-second .mySwiperTeam .swiper-slide img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.our-solutions {
    background: linear-gradient(0deg, #E1E1E6 0%, #6970FD 39.06%, #6B72FE 61.46%, #E1E1E6 100%);
    padding: 120px 0 670px;
    margin-bottom: -700px;
}

@media (max-width: 992px) {
    .our-solutions {
        padding: 96px 0 670px;
        margin-bottom: -710px;
    }
}

.our-solutions .row:nth-child(1) {
    position: relative;
}

.our-solutions .row:nth-child(1):before {
    content: '';
    width: 100%;
    height: 1px;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    display: block;
    left: 15px;
    position: absolute;
    right: 15px;
    top: -36px;
}

.our-solutions .col-lg-12 span {
    color: #000000;
    font-size: 18px;
    line-height: 32px;
    display: block;
    margin-bottom: 32px;
}

.our-solutions .position {
    color: #717173;
    font-size: 18px;
    margin: 5px 0 29px;
}

@media (max-width: 992px) {
    .team {
        margin-top: 55px !important;
    }
}

.team span {
    color: #000;
    font-size: 18px;
    line-height: 32px;
    display: block;
    margin-bottom: 15px;
}

.team h2 {
    margin: 0 0 25px 0;
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .team h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

.team .row .single {
    padding: 5px;
}

@media (max-width: 992px) {
    .team .row .single {
        padding: 5px 0;
    }
}

.team .row .single .single-content {
    min-height: 264px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team .row .single .single-content .image-person {
    margin-bottom: 48px;
}

.team .row .single .single-content .image-person img {
    width: 98px;
    height: 98px;
}

.team .row .single .single-content .name {
    font-size: 26px;
    line-height: 36px;
}

.team .row .single .single-content .position {
    font-size: 18px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.5);
}

.team .row .single.single-join .single-content {
    background-color: #000;
}

.team .row .single.single-join .single-content .image-person {
    margin-bottom: 65px;
}

.team .row .single.single-join .single-content img {
    width: 47px;
    height: auto;
}

.team .row .single.single-join .single-content .name {
    color: #fff;
    margin-bottom: 10px;
}

.team .row .single.single-join .single-content a {
    color: #fff;
}

.team .row .single.single-join .single-content a:after {
    background: #fff;
}

.team .row .single.single-join .single-content a:before {
    background-color: #fff;
}

.phd {
    font-size: 18px;
    width: 58px;
    height: 28px;
    border: 2px solid #E1E1E6;
    box-sizing: border-box;
    border-radius: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 24px;
}

.grid-cases .container {
    background-color: #fff;
    border-radius: 15px;
}

.grid-cases .container .single {
    margin-bottom: 25px;
    transition: all 1s;
}

.grid-cases .container .single:hover {
    transform: translateY(-20px);
}

@media (min-width: 992px) {
    .grid-cases .container .single {
        margin-bottom: 100px;
    }
}

.grid-cases .container .single a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

@media (min-width: 480px) {
    .grid-cases .container .single a img {
        height: 220px;
    }
}

@media (min-width: 640px) {
    .grid-cases .container .single a img {
        height: 260px;
    }
}

@media (min-width: 768px) {
    .grid-cases .container .single a img {
        height: 300px;
    }
}

@media (min-width: 992px) {
    .grid-cases .container .single a img {
        height: 350px;
    }
}

@media (min-width: 1199px) {
    .grid-cases .container .single a img {
        height: 420px;
    }
}

.grid-cases .container .single a h2 {
    color: #000;
    font-size: 24px;
    line-height: 34px;
    margin: 22px 0 10px;
    padding: 0;
    font-family: 'Apercu Pro';
    font-weight: 400;
}

@media (max-width: 992px) {
    .grid-cases .container .single a h2 {
        margin: 9px 0 1px;
    }
}

@media (min-width: 992px) {
    .grid-cases .container .single a h2 {
        font-size: 26px;
        line-height: 36px;
    }
}

.grid-cases .container .single .tags {
    font-size: 18px;
    color: #000;
    opacity: 0.5;
}

.grid-cases .container .single .tags span a {
    color: #6A71FE;
    font-size: 17px;
    line-height: 24px;
}

.careers-vision .container {
    background-color: #fff;
    border-radius: 15px;
}

@media (max-width: 992px) {
    .careers-vision .container {
        overflow: hidden;
    }
}

.careers-vision .images-content img {
    padding: 10px;
    border-radius: 20px;
}

.careers-vision .images-content img:nth-child(1),
.careers-vision .images-content img:nth-child(4) {
    width: calc(40% - 10px);
    height: 247px;
    object-fit: cover;
    object-position: center;
}

.careers-vision .images-content img:nth-child(2),
.careers-vision .images-content img:nth-child(3) {
    width: calc(60% - 30px);
    height: 247px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 992px) {
    .careers-vision .mySwiperCarerrsVision {
        overflow: visible;
        position: relative;
        left: -4px;
    }
}

.careers-vision .mySwiperCarerrsVision .swiper-slide {
    width: 70%;
}

.careers-vision .mySwiperCarerrsVision .swiper-slide img {
    width: 100%;
    height: 247px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .careers-vision .mySwiperCarerrsVision .swiper-slide img {
        height: 500px;
    }
}

.careers-vision .row-first {
    font-size: 18px;
    line-height: 28px;
}

.careers-vision .row-first span {
    color: #717173;
    font-size: 18px;
    line-height: 32px;
    display: block;
    margin-bottom: 12px;
}

.careers-vision .row-first h2 {
    margin: 0 0 25px 0;
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .careers-vision .row-first h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

.careers-vision .row-first h3,
.careers-vision .row-first h4,
.careers-vision .row-first h5,
.careers-vision .row-first h6 {
    font-weight: 400;
    font-family: 'Apercu Pro';
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 5px;
}

.offers-careers {
    margin-top: 65px;
}

@media (max-width: 992px) {
    .offers-careers {
        margin-top: -5px;
    }
}

.offers-careers span {
    color: #717173;
    font-size: 18px;
    line-height: 32px;
    display: block;
    margin-bottom: 12px;
}

.offers-careers h2 {
    margin: 0 0 25px 0;
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .offers-careers h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

.offers-careers .offer-content {
    margin-top: 7px;
}

.offers-careers .offer-content .single-offer_content {
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 6px;
}

.offers-careers .offer-content .single-offer_content h3 {
    margin-top: 0;
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 0px;
    font-family: 'Apercu Pro';
    font-weight: 400;
}

.offers-careers .offer-content .single-offer_content span {
    font-size: 18px;
    line-height: 28px;
    display: block;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.offers-careers .offer-content .single-offer_content .excerpt {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
}

.offers-careers .offer-content .single-offer_content button {
    background-color: #fff;
    border-color: #E1E1E6;
}

.offers-careers .form-recrut {
    background: #FFFFFF;
    border-radius: 15px;
}

.offers-careers .form-recrut.open-form {
    display: block;
}

.offers-careers .form-recrut h3 {
    font-family: 'Apercu Pro';
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
    margin-top: 0;
}

.offers-careers .form-recrut form .send {
    display: flex;
    flex: unset !important;
    max-width: unset !important;
    width: unset !important;
}

.offers-careers .form-recrut form .send:after {
    content: '';
    width: 16px;
    height: 3px;
    background: #000000;
    display: block;
    position: absolute;
    right: 38px;
    top: 25px;
}

.offers-careers .form-recrut form span.wpcf7-spinner {
    display: none;
}

.offers-careers .form-recrut form .send input {
    padding-right: 50px !important;
}

.offers-careers .form-recrut form .cv .cv-file {
    border: 1px dashed #E1E1E6;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 0px;
    font-size: 15px;
}

.offers-careers .form-recrut form .input input {
    height: 58px;
    background: #E1E1E6;
    border-radius: 10px;
    width: 100%;
    border: 0;
    text-indent: 10px;
    outline: 0;
    box-shadow: unset;
}

.offers-careers .form-recrut form .text textarea {
    height: 114px;
    resize: none;
    background: #E1E1E6;
    border-radius: 10px;
    width: 100%;
    border: 0;
    text-indent: 10px;
    padding-top: 15px;
    outline: 0;
    box-shadow: unset;
}

.offers-careers .form-recrut form .io {
    font-size: 18px;
    color: #717173;
}

.offers-careers .form-recrut form .io a {
    color: #6A71FE;
}

.offers-careers .form-recrut form .send {
    margin-top: 15px;
}

.offers-careers .form-recrut form .send .btn-primary {
    border: 3px solid rgba(225, 225, 230, 0.3);
    box-sizing: border-box;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    padding: 2px 28px 2px 28px;
    color: #000000;
    font-size: 18px;
    line-height: 44px;
    transition: all 0.5s;
    text-decoration: none;
    background: transparent;
}

.wpcf7-response-output {
    background: #e95252;
    border: 0 !important;
    color: #fff;
    font-size: 15px;
    line-height: 21px;
    padding: 20px !important;
}

form.sent .wpcf7-response-output {
    background: #4dd170;
    color: #fff;
    font-size: 15px;
    line-height: 21px;
    padding: 20px;
}

span.wpcf7-not-valid-tip {
    color: #f96969;
    font-size: 12px;
    display: block;
    margin: 0 0 -10px 0;
}

section.single-casestudy {
    padding: 100px 0 0;
}

@media (max-width: 768px) {
    section.single-casestudy {
        padding: 65px 0 0;
    }
}

section.single-casestudy .container {
    background-color: #fff;
    border-radius: 15px;
}

section.single-casestudy .container .back a {
    font-size: 18px;
    line-height: 44px;
    color: #000;
}

section.single-casestudy .container .back a:hover img {
    transform: rotate(-180deg) translateY(4px) translateX(5px);
}

section.single-casestudy .container .back a img {
    transform: rotate(-180deg) translateY(4px);
    margin-right: 10px;
    transition: all 0.4s;
}

section.single-casestudy .container .date {
    color: #000;
    opacity: 0.5;
    font-size: 24px;
    margin: 20px 0 -6px 0;
}

section.single-casestudy .container h1 {
    color: #000;
    font-size: 66px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    section.single-casestudy .container h1 {
        font-size: 35px;
        line-height: 35px;
    }
}

section.single-casestudy .container .tags span a {
    color: #6A71FE;
    font-size: 17px;
    line-height: 24px;
}

section.single-casestudy .container .thumbnail img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    section.single-casestudy .container .thumbnail img {
        width: 100%;
        height: 640px;
        object-fit: cover;
        object-position: center;
    }
}

section.single-casestudy .container .content-single-image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

section.single-casestudy .container .content-text h1,
section.single-casestudy .container .content-text h2,
section.single-casestudy .container .content-text h3,
section.single-casestudy .container .content-text h4,
section.single-casestudy .container .content-text h5,
section.single-casestudy .container .content-text h6,
section.single-casestudy .container .content-text strong,
section.single-casestudy .container .content-text b {
    font-family: 'Apercu Pro';
    color: #717173;
}

section.single-casestudy .container .content-text a {
    color: #6a71fe;
}

section.single-casestudy .container .content-image .single-image .image img {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.single-casestudy {
    background: linear-gradient(180deg, #7278FF 0%, #E1E1E6 26.99%);
}

.single-casestudy .our-clients {
    background: transparent;
}

section.news-slider .container {
    background-color: #fff;
    border-radius: 15px;
    padding-right: 0 !important;
}

section.news-slider span {
    color: #717173;
    font-size: 18px;
    line-height: 32px;
    display: block;
    margin-bottom: 12px;
}

section.news-slider h2 {
    margin: 0 0 25px 0;
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    section.news-slider h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

section.news-slider .mySwiperNews {
    margin-top: 50px;
    margin-right: 5px;
}

@media (min-width: 992px) {
    section.news-slider .mySwiperNews {
        margin-top: 0;
        margin-right: 0;
    }
}

section.news-slider .mySwiperNews .swiper-slide {
    width: 72%;
}

@media (min-width: 768px) {
    section.news-slider .mySwiperNews .swiper-slide {
        width: 60%;
    }
}

@media (min-width: 1199px) {
    section.news-slider .mySwiperNews .swiper-slide {
        width: 41%;
    }
}

section.news-slider .mySwiperNews .swiper-slide .swiper-slide__single a img {
    border-radius: 10px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    section.news-slider .mySwiperNews .swiper-slide .swiper-slide__single a img {
        height: 280px;
    }
}

section.news-slider .mySwiperNews .swiper-slide .swiper-slide__single a h3 {
    font-family: 'Apercu Pro';
    font-size: 26px;
    line-height: 32px;
    color: #000;
    margin-bottom: 2px;
    font-weight: 300;
}

section.news-slider .mySwiperNews .swiper-slide .swiper-slide__single .tags {
    font-size: 18px;
    color: #000;
    opacity: 0.5;
}

@media (min-width: 992px) {
    .home section.use-cases {
        padding-bottom: 60px;
    }
}

section.use-cases {
    position: relative;
}

section.use-cases .arrow-swiper>div {
    background: #131317;
    border: 3px solid #e1e1e645;
}

section.use-cases .arrow-swiper>div img {
    filter: brightness(0) invert(1);
}

section.use-cases .container {
    background-color: #131317;
    border-radius: 15px;
    padding-right: 0 !important;
}

section.use-cases span {
    color: #717173;
    font-size: 18px;
    line-height: 32px;
    display: block;
    margin-bottom: 12px;
}

section.use-cases h2 {
    margin: 0 0 25px 0;
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    section.use-cases h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

section.use-cases .line {
    width: calc(100% - 3rem);
    height: 1px;
    background: #fff;
    opacity: 0.25;
    margin: -10px 0 33px;
}

@media (max-width: 992px) {
    section.use-cases .line {
        width: calc(100% - 1.5rem);
    }
}

section.use-cases .col-flex a {
    color: #fff;
}

section.use-cases .col-flex a:after {
    background-color: #fff;
}

section.use-cases .col-flex a:before {
    background-color: #fff;
}

section.use-cases .mySwiperCase {
    margin-top: 50px;
    margin-right: 5px;
}

@media (min-width: 992px) {
    section.use-cases .mySwiperCase {
        margin-top: 0;
        margin-right: 0;
    }
}

section.use-cases .mySwiperCase .swiper-slide {
    width: 72%;
}

section.use-cases .mySwiperCase .swiper-slide .swiper-slide__single a img {
    border-radius: 10px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    section.use-cases .mySwiperCase .swiper-slide .swiper-slide__single a img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    section.use-cases .mySwiperCase .swiper-slide .swiper-slide__single a img {
        height: 163px;
    }
}

section.use-cases .mySwiperCase .swiper-slide .swiper-slide__single a h3 {
    font-family: 'Apercu Pro';
    font-size: 26px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 11px;
    font-weight: 300;
}

section.use-cases .mySwiperCase .swiper-slide .swiper-slide__single .tags {
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
    color: #6A71FE;
}

section.use-cases .mySwiperCase .swiper-slide .swiper-slide__single .tags a {
    color: #6A71FE;
}

body.error404 section#primary {
    background: linear-gradient(180deg, #7278FF 0%, #E1E1E6 63.99%);
    min-height: 800px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (max-width: 991px) {
    body.error404 section#primary {
        height: auto;
        padding: 90px 0 90px;
    }
}

@media (max-width: 991px) {
    body.error404 section#primary .container {
        height: auto;
        max-width: 500px;
    }
}

@media (min-width: 992px) {
    body.error404 section#primary .container {
        padding: 0 60px;
    }
}

body.error404 section#primary h1 {
    font-size: 36px;
    line-height: 38px;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    body.error404 section#primary h1 {
        font-size: 46px;
        line-height: 50px;
    }
}

@media (min-width: 1199px) {
    body.error404 section#primary h1 {
        font-size: 66px;
        line-height: 70px;
    }
}

body.error404 section#primary .button-border {
    border-color: #ebebed;
}

body.error404 footer {
    display: none;
}

footer {
    padding: 140px 0 10px;
    background: linear-gradient(180deg, #E1E1E6 40.1%, #6970FD 100%);
}

@media (max-width: 992px) {
    footer {
        padding: 80px 0 10px;
    }
}

footer .col-big span {
    font-size: 35px;
    line-height: 35px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
}

@media (min-width: 992px) {
    footer .col-big span {
        font-size: 56px;
        line-height: 64px;
        text-transform: uppercase;
        color: #000000;
    }
}

footer .menu {
    padding: 0;
}

footer .menu li {
    list-style-type: none;
}

footer .menu li a {
    color: #000;
    font-size: 18px;
    line-height: 32px;
    transition: all 0.4s;
}

footer .menu li a:hover {
    opacity: 0.6;
}

footer .footer-contact span {
    display: block;
    margin-bottom: 12px;
}

footer .footer-contact p,
footer .footer-contact a {
    color: #000;
    font-size: 18px;
    line-height: 32px;
}

footer .footer-contact p span,
footer .footer-contact a span {
    font-size: 26px;
}

footer .footer-contact a {
    transition: all 0.4s;
}

footer .footer-contact a:hover {
    opacity: 0.6;
}

footer .row-copy {
    padding-top: 80px;
}

footer .row-copy p {
    font-size: 16px;
    line-height: 24px;
}

.modal-contact-us {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(19, 19, 23, 0.5);
    display: flex;
    justify-content: flex-end;
    z-index: 999999999999999;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s;
    height: 0;
    scrollbar-width: none;
}

.modal-contact-us::-webkit-scrollbar {
    display: none;
}

.modal-contact-us.show-form {
    height: auto;
    overflow: scroll;
    opacity: 1;
}

.modal-contact-us .modal-close-icon img {
    position: absolute;
    right: 20px;
    top: 20px;
    max-width: 84px;
    cursor: pointer;
    background: #fff;
    border-radius: 100px;
    z-index: 2;
}

@media (max-width: 992px) {
    .modal-contact-us .modal-close-icon img {
        right: 10px;
        top: 10px;
    }
}

.modal-contact-us .modal-contact-us__content {
    width: 100%;
    background: #FFFFFF;
    border-radius: 20px 20px 0 0;
    padding: 40px;
    margin-top: 97px;
    overflow: scroll;
    height: 100%;
    /* IE and Edge */
    scrollbar-width: none;
}

@media (max-width: 992px) {
    .modal-contact-us .modal-contact-us__content {
        margin-top: 74px;
    }
}

.modal-contact-us .modal-contact-us__content::-webkit-scrollbar {
    display: none;
}

@media (max-width: 992px) {
    .modal-contact-us .modal-contact-us__content {
        padding: 20px;
        height: calc(100% + 80px);
    }
}

@media (min-width: 992px) {
    .modal-contact-us .modal-contact-us__content {
        width: 75%;
        margin-top: 0;
        border-radius: 20px 0px 0px 20px;
    }
}

.modal-contact-us .modal-contact-us__content h3 {
    margin: 0 0 0px 0;
    font-size: 66px;
    line-height: 70px;
    color: #000;
    text-transform: uppercase;
    max-width: 760px;
}

@media (max-width: 992px) {
    .modal-contact-us .modal-contact-us__content h3 {
        font-size: 35px;
        line-height: 35px;
    }
}

.modal-contact-us .modal-contact-us__content .subtitle {
    font-size: 18px;
    margin: 7px 0 16px;
}

@media (min-width: 992px) {
    .modal-contact-us .modal-contact-us__content .subtitle {
        font-size: 26px;
    }
}

.modal-contact-us .modal-contact-us__content form .cv .cv-file {
    border: 1px dashed #E1E1E6;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 10px;
    font-size: 15px;
}

.modal-contact-us .modal-contact-us__content form .input {
    margin-bottom: 8px;
}

.modal-contact-us .modal-contact-us__content form .input input {
    height: 58px;
    background: #E1E1E6;
    border-radius: 10px;
    width: 100%;
    border: 0;
    text-indent: 10px;
    outline: 0;
    box-shadow: unset;
}

.modal-contact-us .modal-contact-us__content form .text textarea {
    height: 114px;
    resize: none;
    background: #E1E1E6;
    border-radius: 10px;
    width: 100%;
    border: 0;
    text-indent: 10px;
    padding-top: 15px;
    outline: 0;
    box-shadow: unset;
}

.modal-contact-us .modal-contact-us__content form .io {
    font-size: 18px;
    color: #717173;
}

.modal-contact-us .modal-contact-us__content form .io a {
    color: #6A71FE;
}

.modal-contact-us .modal-contact-us__content form .send {
    display: flex;
    flex: unset !important;
    max-width: unset !important;
    width: unset !important;
}

.modal-contact-us .modal-contact-us__content form .send:after {
    content: '';
    width: 16px;
    height: 3px;
    background: #000000;
    display: block;
    position: absolute;
    right: 38px;
    top: 25px;
}

.modal-contact-us .modal-contact-us__content form span.wpcf7-spinner {
    display: none;
}

.modal-contact-us .modal-contact-us__content form .send input {
    padding-right: 50px !important;
}

.modal-contact-us .modal-contact-us__content form .send {
    margin-top: 15px;
}

.modal-contact-us .modal-contact-us__content form .send .btn-primary {
    border: 3px solid rgba(225, 225, 230, 0.3);
    box-sizing: border-box;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    padding: 2px 28px 2px 28px;
    color: #000000;
    font-size: 18px;
    line-height: 44px;
    transition: all 0.5s;
    text-decoration: none;
    background: transparent;
}

.modal-contact-us .modal-info {
    color: #000;
    font-size: 18px;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .modal-contact-us .modal-info {
        font-size: 26px;
    }
}

.modal-contact-us .modal-info span {
    font-size: 18px;
    color: #717173;
}

.modal-contact-us .modal-info a {
    color: #000;
}

.modal-contact-us .modal-info ul {
    padding: 0;
}

.modal-contact-us .modal-info ul li {
    list-style-type: none;
}

.modal-contact-us .modal-info .social-media-modal {
    margin-bottom: 1.5em;
}

.cv-file:after {
    content: attr(data-content);
    display: block;
    width: 100%;
    padding: 0 20px;
    color: #717173;
}

.cv-file input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 2;
}

.img-file {
    position: absolute;
    top: 15px;
    right: 30px;
    z-index: 3;
    cursor: pointer;
    transition: all 0.4s;
    opacity: 0;
}

.img-file.show {
    opacity: 1;
}

.form-recrut .img-file {
    top: 12px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

input.wpcf7-not-valid {
    border: 1px solid #FE6A6A !important;
}

footer .menu li a span {
    font-size: 16px;
    line-height: 16px;
    text-align: right;
    color: #E1E1E6;
    background-color: #000;
    display: inline-block;
    border-radius: 4px;
    padding: 5px 8px 5px 7px;
}

.swiper-button-prev-custom img,
.swiper-button-next-custom img {
    display: none;
}

section.use-cases .swiper-button-prev-custom .arrow:before,
section.use-cases .swiper-button-next-custom .arrow:before {
    filter: brightness(0) invert(1);
}

.swiper-button-next-custom .arrow:before {
    content: '';
    width: 25px;
    height: 25px;
    background: url("/wp-content/uploads/2021/12/arrow-akssio.svg");
    display: block;
    background-size: 100%;
    background-position: -5px 0px;
    background-repeat: no-repeat;
    transition: all 0.4s;
    margin-left: 5px;
}

.swiper-button-next-custom .arrow:hover:before {
    background-position: 0 0;
}

.swiper-button-prev-custom .arrow:before {
    content: '';
    width: 25px;
    height: 25px;
    background: url("/wp-content/uploads/2021/12/arrow-akssio.svg");
    display: block;
    background-size: 100%;
    background-position: -5px 0px;
    background-repeat: no-repeat;
    transition: all 0.4s;
    transform: rotate(180deg);
    margin-left: -5px;
}

.swiper-button-prev-custom .arrow:hover:before {
    background-position: 0 0;
}

span.text-cv strong {
    color: #6a71fe;
    font-weight: 100;
}

span.text-cv {
    font-size: 15px;
    color: #717173;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    text-align: center;
}

.cv-file input {
    width: 94%;
}

.form-recrut span.text-cv {
    font-size: 15px;
    color: #717173;
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    text-align: center;
}

@media (max-width: 992px) {
    .modal-contact-us .modal-contact-us__content form .send,
    .modal-contact-us .modal-contact-us__content form .send .btn-primary,
    .offers-careers .form-recrut form .send .btn-primary,
    .offers-careers .form-recrut form .send {
        width: 100% !important;
        display: flex !important;
        justify-content: center;
    }
    .modal-contact-us .modal-contact-us__content form .send:after {
        right: 0;
        left: calc(50% + 41px);
    }
}

@media (max-width: 992px) {
    .offer .row.padding-mobile {
        margin-top: -27px;
    }
}


/*# sourceMappingURL=style.css.map */