/*  Colors */

/** size variables **/

/** transition variables **/

/** fonts **/

/** font sizing variables **/

/*  ---------------------------------------------------------
  RESPONSIVE MIXINS
--------------------------------------------------------- */

html {
    box-sizing: border-box !important;
    font-size: 16px;
    height: 100%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

img, picture {
    max-width: 100%;
    height: auto;
    display: block;
}

img[width][height] {
    height: auto;
}

img[style*="aspect-ratio"] {
    object-fit: cover;
}

blockquote {
    margin: 0;
}

@font-face {
    font-family: "San Francisco";
    font-weight: 400;
    src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
}

body {
    font-family: "Inter", "Helvetica", "Arial", sans-serif;
    font-size: 18px;
    line-height: 28.8px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: #232340;
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }
}

.small-title {
    color: #377DFF;
    font-weight: 600;
    font-family: "Poppins";
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 24px;
}

@media (max-width: 481px) {
    .small-title {
        margin-bottom: 30px;
    }
}

.small-title::before {
    content: "";
    width: 52px;
    height: 2px;
    background: #377DFF;
    display: inline-block;
    transform: translateY(-4px);
    margin-right: 17px;
}

@media (max-width: 481px) {
    .small-title::before {
        margin-right: 16px;
    }
}

.section-title {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 62px;
    line-height: 1.31em;
    letter-spacing: -0.5px;
    color: #232340;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .section-title br {
        display: none;
    }
}

@media (max-width: 481px) {
    .section-title {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1.08em;
        margin-bottom: 30px;
    }
}

.article-content-text h2 {
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 26px;
}

@media (max-width: 481px) {
    .article-content-text h2 {
        font-size: 38px;
    }
}

.article-content-text h3 {
    font-size: 28px;
    line-height: 1.21em;
    font-weight: 600;
    margin-bottom: 26px;
}

@media (max-width: 481px) {
    .article-content-text h3 {
        font-size: 26px;
    }
}

.article-content-text p {
    font-weight: 500;
    color: #858A8F;
    line-height: 1.75em;
    font-size: 20px;
    margin-bottom: 40px;
}

@media (max-width: 481px) {
    .article-content-text p {
        font-size: 18px;
    }
}

.article-content-text figure {
    margin: 0;
    max-width: 100%;
    margin-bottom: 34px;
}

.article-content-text figure img {
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}

.article-content-text figure figcaption {
    text-align: center;
    font-size: 18px;
    line-height: 1.22em;
    padding-top: 25px;
    font-weight: 600;
    color: #858A8F;
}

.article-content-text blockquote {
    background: #F5F6FA;
    padding: 58px 74px 64px;
    margin-bottom: 80px;
    border-radius: 10px;
}

@media (max-width: 481px) {
    .article-content-text blockquote {
        padding: 30px;
    }
}

@media (max-width: 375px) {
    .article-content-text blockquote {
        padding: 15px;
    }
}

.article-content-text blockquote .quote-text {
    font-size: 40px;
    line-height: 1.2em;
    color: #232340;
    font-weight: 600;
    font-family: "Poppins";
    margin-bottom: 36px;
}

@media (max-width: 481px) {
    .article-content-text blockquote .quote-text {
        font-size: 30px;
    }
}

@media (max-width: 375px) {
    .article-content-text blockquote .quote-text {
        font-size: 22px;
    }
}

.article-content-text blockquote .quote-author {
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 375px) {
    .article-content-text blockquote .quote-author {
        font-size: 18px;
    }
}

.article-content-text ul {
    list-style: disc;
    margin-bottom: 40px;
}

.article-content-text ol {
    list-style: decimal;
    margin-bottom: 40px;
}

.article-content-text li {
    margin-bottom: 22px;
    font-weight: 500;
    color: #858A8F;
    line-height: 1.75em;
    font-size: 20px;
    list-style-position: inside;
}

@media (max-width: 481px) {
    .article-content-text li {
        font-size: 18px;
    }
}

.article-content-text li:last-child {
    margin-bottom: 0;
}

.buttons-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .buttons-wrapper {
        flex-direction: column;
    }

    .buttons-wrapper .button:first-child {
        margin-bottom: 20px;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-decoration: none;
    outline: 0;
    border: 0;
    cursor: pointer;
    text-align: center;
}

.button.cta {
    min-width: 180px;
    height: 64px;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 600;
    line-height: 1.2em;
    font-family: "Inter";
    margin-right: 32px;
    padding-left: 20px;
    padding-right: 20px;
}

.button.cta:last-child {
    margin-right: 0;
}

@media (max-width: 481px) {
    .button.cta {
        max-width: 100%;
        width: auto;
        min-width: 200px;
        font-size: 18px;
    }
}

.button.blue {
    background-color: #377DFF;
    color: white;
}

.button.light-blue {
    background-color: #E5F1FF;
    color: #377DFF;
}

.button.home-contact-submit {
    min-width: 322px;
}

@media (max-width: 481px) {
    .button.home-contact-submit {
        max-width: 100%;
        width: auto;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .button.header-contact {
        display: none;
    }
}

.popup-nav-wrapper {
    background: #377DFF;
    height: 100vh;
    position: fixed;
    padding: 130px 0 30px 30px;
    top: 0;
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100vw;
    right: -100vw;
}

.mobile-nav-trigger {
    display: none;
    width: 40px;
    height: 33px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 481px) {
    .mobile-nav-trigger {
        width: 25px;
        height: 21px;
    }
}

.mobile-nav-trigger .line {
    background: #232340;
    display: block;
    height: 5px;
    width: 100%;
}

@media (max-width: 481px) {
    .mobile-nav-trigger .line {
        height: 3px;
    }
}

@media (max-width: 1024px) {
    .mobile-nav-trigger {
        display: flex;
    }
}

.nav-popup-visible .popup-nav-wrapper {
    visibility: visible;
    opacity: 1;
    right: 0;
}

.mobile-nav-trigger-close {
    width: 22px;
    height: 22px;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 50px;
    z-index: 40;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-trigger-close .line {
    background: white;
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 50%;
    border-radius: 5px;
}

.mobile-nav-trigger-close .line:first-child {
    transform: rotate(45deg);
}

.mobile-nav-trigger-close .line:last-child {
    transform: rotate(-45deg);
}

.nav-primary-mobile {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    padding-right: 35px;
}

.nav-primary-mobile > ul > li {
    margin-bottom: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.nav-primary-mobile > ul > li:last-child {
    margin-bottom: 0;
}

.nav-primary-mobile > ul > li > a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 31px;
    line-height: 1.1em;
    font-family: "Poppins";
    display: block;
}

.nav-primary-mobile > ul > li .sub-menu {
    padding-top: 16px;
    padding-bottom: 6px;
    display: none;
}

.nav-primary-mobile > ul > li .sub-menu li {
    padding-top: 4px;
    padding-bottom: 4px;
    margin-bottom: 16px;
}

.nav-primary-mobile > ul > li .sub-menu li:last-of-type {
    margin-bottom: 0;
}

.nav-primary-mobile > ul > li .sub-menu li a {
    text-decoration: none;
    color: white;
    font-family: "Poppins";
    font-size: 24px;
    display: block;
    line-height: 1.2em;
}

.blog-articles-carousel .slick-track,
.blog-articles-carousel .slick-list,
.blog-articles-carousel .slick-slide {
    height: 100%;
}

form .form-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 62px;
}

form .form-row:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    form .form-row {
        flex-wrap: wrap;
        margin-bottom: 0;
    }
}

form .form-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: 1 1 auto;
}

form .form-block.halved {
    flex: 0 1 calc(50% - 17.25px);
}

@media (max-width: 768px) {
    form .form-block.halved {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}

form label {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.21em;
    text-align: left;
    margin-bottom: 27px;
}

@media (max-width: 768px) {
    form label {
        font-size: 20px;
        line-height: 1.45em;
        margin-bottom: 20px;
    }
}

form input[type=text],
form input[type=password],
form input[type=tel],
form input[type=email],
form input[type=search],
form input[type=url] {
    width: 100%;
    height: 65px;
    border: 2px solid #F5F6FA;
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding-left: 24px;
    padding-right: 24px;
    line-height: 65px;
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 400;
    outline: 0;
}

form input[type=text]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=email]:focus,
form input[type=search]:focus,
form input[type=url]:focus {
    border-color: #606060;
}

form textarea {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    resize: none;
    height: 300px;
    border: 2px solid #F5F6FA;
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 18px 24px;
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 400;
    outline: 0;
    line-height: 1.81em;
}

form textarea:focus {
    border-color: #606060;
}

form .submit-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    form .submit-row {
        flex-direction: column;
        align-items: stretch;
    }
}

form.home-contact-form .textarea-row {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    form.home-contact-form .textarea-row {
        margin-bottom: 30px;
    }
}

form.leave-message-form {
    max-width: 816px;
    margin: 0 auto;
}

form.leave-message-form .form-row {
    margin-bottom: 42px;
}

@media (max-width: 768px) {
    form.leave-message-form .form-row {
        margin-bottom: 0;
    }
}

form.leave-message-form .form-block.halved {
    flex: 0 1 calc(50% - 16px);
}

@media (max-width: 768px) {
    form.leave-message-form .form-block.halved {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}

form.leave-message-form .textarea-row {
    margin-bottom: 42px;
}

@media (max-width: 768px) {
    form.leave-message-form .textarea-row {
        margin-bottom: 30px;
    }
}

form.leave-message-form .submit-row .button {
    min-width: 286px;
}

@media (max-width: 481px) {
    form.leave-message-form .submit-row .button {
        min-width: 0;
        max-width: 100%;
    }
}

.columns {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.columns .column {
    flex: 1 1 auto;
}

.floating-label {
    background: white;
    position: absolute;
    box-shadow: 0px 49.3373px 41.1144px rgba(67, 67, 68, 0.109804);
    padding: 18px 22px 16px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    border-radius: 8px;
}

@media (max-width: 481px) {
    .floating-label {
        border-radius: 5px;
        padding: 8px 14px;
    }
}

.floating-label.simple {
    align-items: center;
    padding: 30px;
}

@media (max-width: 481px) {
    .floating-label.simple {
        border-radius: 5px;
        padding: 8px 14px;
    }
}

.floating-label.simple .icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    margin-right: 32px;
}

@media (max-width: 481px) {
    .floating-label.simple .icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        margin-right: 14px;
    }
}

.floating-label.simple .text {
    justify-content: center;
}

.floating-label.simple .text p {
    font-size: 18px;
    line-height: 1.5em;
}

@media (max-width: 481px) {
    .floating-label.simple .text p {
        font-size: 12px;
    }
}

.floating-label .icon {
    flex: 0 0 68px;
    height: 68px;
    margin-right: 24px;
}

.floating-label .icon img {
    width: 100%;
    height: auto;
}

@media (max-width: 481px) {
    .floating-label .icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        margin-right: 14px;
    }
}

.floating-label .text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex: 1 1 auto;
}

.floating-label .text .category {
    color: #606060;
    font-family: "Inter";
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2em;
    margin-bottom: 5px;
}

@media (max-width: 481px) {
    .floating-label .text .category {
        font-size: 10px;
        margin-bottom: 2px;
    }
}

.floating-label .text p {
    font-weight: 600;
    color: #232340;
    font-size: 17px;
    line-height: 1.47em;
}

@media (max-width: 481px) {
    .floating-label .text p {
        font-size: 12px;
    }
}

.floating-label .label-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.scrolldown-label {
    display: flex;
    position: absolute;
    bottom: 96px;
    width: 270px;
    left: 30px;
    height: 80px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 8px;
}

@media (max-width: 481px) {
    .scrolldown-label {
        display: none;
    }
}

.scrolldown-label .label {
    font-family: "Poppins";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #232340;
}

.scrolldown-label .icon {
    flex: 0 0 80px;
    height: 80px;
    margin-right: 24px;
    background: url(/images/icon-scrolldown.svg?6ad38b60d40e65cbb7b522fa85e69f63) center center no-repeat;
    background-size: 22px 22px;
    border-radius: 50%;
    box-shadow: 0px 49.3373px 41.1144px rgba(67, 67, 68, 0.109804);
}

.scrolldown-label .icon img {
    width: 100%;
    height: auto;
}

.scrolldown-label .label-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

body {
    background: white;
    height: 100%;
}

.wrap {
    overflow: hidden;
    position: relative;
}

.container {
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1230px;
}

.container.full-width {
    max-width: 100%;
}

.container.narrow {
    max-width: 930px;
}

@media (max-width: 1024px) {
    .container {
        width: 100%;
        max-width: 100%;
    }
}

.main-header {
    height: 128px;
    padding-top: 64px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

@media (max-width: 481px) {
    .main-header {
        padding-top: 60px;
        height: 110px;
    }
}

.main-header .logo {
    flex: 0 0 140px;
    text-decoration: none;
    background: url(/images/bg-logo.svg?11c94ee18dc14a287678b65f13ac9752) center center no-repeat;
    background-size: 100% auto;
    height: 55px;
}

@media (max-width: 1024px) {
    .main-header .logo {
        transform: translateX(40px);
    }
}

@media (max-width: 768px) {
    .main-header .logo {
        transform: translateX(-20px);
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 481px) {
    .main-header .logo {
        width: 117px;
        height: 32px;
        transform: translateX(-12.5px);
    }
}

@media (max-width: 375px) {
    .main-header .logo {
        transform: none;
    }
}

.main-header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.main-header .main-nav {
    flex: auto;
}

@media (max-width: 1024px) {
    .main-header .main-nav {
        display: none;
    }
}

.main-header .main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.main-header .main-nav ul li {
    margin-left: 24px;
    margin-right: 24px;
    font-size: 18px;
    line-height: 1.33em;
    font-weight: 500;
}

.main-header .main-nav ul li:first-child {
    margin-left: 0;
}

.main-header .main-nav ul li:last-child {
    margin-right: 0;
}

.main-header .main-nav ul li a {
    text-decoration: none;
    font-family: "Poppins";
    color: #8B8B8B;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-header .main-nav ul li a:hover {
    color: #ADADAD;
}

.main-header .main-nav ul li.current-menu-item a {
    color: #377DFF;
}

.main-header .language-selector {
    margin-right: 2rem;
    overflow: hidden;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-footer.page-footer {
    background: white;
}

.main-footer.page-footer > .container {
    padding-top: 137px;
    padding-bottom: 142px;
}

@media (max-width: 768px) {
    .main-footer.page-footer > .container {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

.main-footer.page-footer .social-media-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .main-footer.page-footer .social-media-wrapper {
        flex-wrap: wrap;
    }
}

.main-footer.page-footer .social-media-wrapper a {
    flex: 0 0 50px;
    height: 50px;
    background: #F5F6FA;
    margin-right: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .main-footer.page-footer .social-media-wrapper a {
        margin-right: 15px;
        margin-bottom: 15px;
    }
}

.main-footer.page-footer .social-media-wrapper a:last-child {
    margin-right: 0;
}

.main-footer.page-footer .social-media-wrapper a img {
    width: 29px;
    height: auto;
}

.main-footer.page-footer .social-media-wrapper a.facebook img {
    width: 14px;
}

.main-footer.page-footer .footer-columns {
    margin-bottom: 95px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .main-footer.page-footer .footer-columns {
        flex-wrap: wrap;
    }
}

@media (max-width: 481px) {
    .main-footer.page-footer .footer-columns {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: nowrap;
        margin-bottom: 45px;
    }
}

.main-footer.page-footer .footer-columns .footer-column {
    flex: 0 1 calc(210px - 43px);
    padding-top: 15px;
}

@media (max-width: 768px) {
    .main-footer.page-footer .footer-columns .footer-column {
        flex: 1 1 calc(25% - 10px);
    }
}

@media (max-width: 481px) {
    .main-footer.page-footer .footer-columns .footer-column {
        margin-bottom: 30px;
    }
}

.main-footer.page-footer .footer-columns .footer-column .column-title {
    font-weight: 600;
    font-size: 24px;
    font-size: 1.21em;
    font-family: "Inter";
    margin-bottom: 26px;
}

@media (max-width: 768px) {
    .main-footer.page-footer .footer-columns .footer-column .column-title {
        font-size: 20px;
    }
}

@media (max-width: 481px) {
    .main-footer.page-footer .footer-columns .footer-column .column-title {
        font-size: 24px;
    }
}

.main-footer.page-footer .footer-columns .footer-column ul li {
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .main-footer.page-footer .footer-columns .footer-column ul li {
        margin-bottom: 8px;
    }
}

.main-footer.page-footer .footer-columns .footer-column ul li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2em;
    color: #858A8F;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 768px) {
    .main-footer.page-footer .footer-columns .footer-column ul li a {
        font-size: 16px;
    }
}

@media (max-width: 481px) {
    .main-footer.page-footer .footer-columns .footer-column ul li a {
        font-size: 20px;
    }
}

.main-footer.page-footer .footer-columns .footer-column ul li a:hover {
    color: #232340;
}

.main-footer.page-footer .footer-columns .footer-column.main-column {
    flex: 0 0 425px;
    padding-right: 43px;
    padding-top: 0;
}

@media (max-width: 1255px) {
    .main-footer.page-footer .footer-columns .footer-column.main-column {
        flex: 0 0 300px;
        padding-right: 30px;
    }
}

@media (max-width: 1024px) {
    .main-footer.page-footer .footer-columns .footer-column.main-column {
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    .main-footer.page-footer .footer-columns .footer-column.main-column {
        flex: 0 0 100%;
        margin-bottom: 30px;
        padding-right: 0;
    }
}

@media (max-width: 481px) {
    .main-footer.page-footer .footer-columns .footer-column.main-column {
        flex: 1 1 auto;
    }
}

.main-footer.page-footer .footer-columns .footer-column.main-column .logo {
    display: block;
    width: 140px;
    text-decoration: none;
    background: url(/images/bg-logo.svg?11c94ee18dc14a287678b65f13ac9752) center center no-repeat;
    background-size: 100% auto;
    height: 55px;
    margin-bottom: 45px;
}

.main-footer.page-footer .copyright {
    font-size: 18px;
    line-height: 1.22em;
    font-weight: 500;
    color: #89858A;
}

.main-footer.home-footer {
    background: #377DFF;
    margin-top: -1px;
}

@media (max-width: 768px) {
    .main-footer.home-footer .columns {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
}

.main-footer.home-footer .footer-top {
    padding-bottom: 210px;
    padding-top: 88px;
}

@media (max-width: 1024px) {
    .main-footer.home-footer .footer-top {
        padding-bottom: 100px;
    }
}

@media (max-width: 481px) {
    .main-footer.home-footer .footer-top {
        padding-top: 55px;
        padding-bottom: 48px;
    }
}

.main-footer.home-footer .footer-bottom {
    padding-top: 45px;
    position: relative;
    padding-bottom: 55px;
}

@media (max-width: 481px) {
    .main-footer.home-footer .footer-bottom {
        padding-top: 21px;
        padding-bottom: 70px;
    }
}

.main-footer.home-footer .footer-bottom::after {
    height: 1px;
    width: calc(1230px + 74px);
    content: "";
    background: rgba(219, 222, 225, 0.2);
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    max-width: 95%;
}

@media (max-width: 1024px) {
    .main-footer.home-footer .footer-bottom::after {
        width: calc(100% - 60px);
    }
}

.main-footer.home-footer .footer-bottom > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.main-footer.home-footer .footer-bottom .copyright {
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: white;
}

.main-footer.home-footer .footer-bottom .back-to-top {
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-footer.home-footer .footer-bottom .back-to-top:hover {
    opacity: 0.3;
}

@media (max-width: 481px) {
    .main-footer.home-footer .footer-bottom .back-to-top {
        display: none;
    }
}

.main-footer.home-footer .section-title {
    color: white;
    font-size: 72px;
    line-height: 1.17em;
    font-weight: 600;
    font-family: "Poppins";
    letter-spacing: -1px;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .main-footer.home-footer .section-title {
        font-size: 56px;
    }
}

@media (max-width: 481px) {
    .main-footer.home-footer .section-title {
        font-size: 42px;
        line-height: 1.43em;
    }
}

.main-footer.home-footer .home-footer-nav {
    flex: 0 0 205px;
    margin-left: 120px;
    padding-top: 20px;
}

@media (max-width: 1024px) {
    .main-footer.home-footer .home-footer-nav {
        flex: 1 1 150px;
        margin-left: 60px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .main-footer.home-footer .home-footer-nav {
        flex: 1 1 auto;
        margin-left: 0;
        padding-right: 0;
        padding-top: 60px;
    }
}

@media (max-width: 481px) {
    .main-footer.home-footer .home-footer-nav {
        display: none;
    }
}

.main-footer.home-footer .home-footer-nav ul li {
    margin-bottom: 22px;
    line-height: 1.44em;
}

.main-footer.home-footer .home-footer-nav ul li:last-child {
    margin-bottom: 0;
}

.main-footer.home-footer .home-footer-nav ul li a {
    font-family: "Poppins";
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    color: white;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-footer.home-footer .home-footer-nav ul li a:hover {
    opacity: 0.3;
}

.page-section.page-banner-section > .container {
    padding-top: calc(80px + 128px);
}

@media (max-width: 481px) {
    .page-section.page-banner-section > .container {
        padding-top: calc(50px + 110px);
    }
}

.page-section.page-banner-section h1 {
    font-family: "Poppins";
    font-weight: 600;
    color: #232340;
    font-size: 80px;
    line-height: 1.08em;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .page-section.page-banner-section h1 {
        font-size: 64px;
    }
}

@media (max-width: 481px) {
    .page-section.page-banner-section h1 {
        font-size: 50px;
        margin-bottom: 30px;
    }
}

.page-section.page-banner-section .intro-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6em;
    margin-bottom: 40px;
    color: #232340;
}

@media (max-width: 1024px) {
    .page-section.page-banner-section .intro-text {
        font-size: 18px;
    }

    .page-section.page-banner-section .intro-text br {
        display: none;
    }
}

.page-section.home-top-section {
    position: relative;
}

.page-section.home-top-section > .container {
    padding-bottom: 190px;
    position: relative;
}

@media (max-width: 481px) {
    .page-section.home-top-section > .container {
        padding-top: calc(38px + 110px);
        padding-bottom: 50px;
    }
}

.page-section.home-top-section .home-top-text {
    padding-top: 42px;
    flex: 0 0 465px;
}

@media (max-width: 1024px) {
    .page-section.home-top-section .home-top-text {
        flex: 1 0 50%;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.home-top-section .home-top-text {
        padding-top: 20px;
        flex: 1 1 auto;
        margin-bottom: 102px;
        padding-right: 0;
    }
}

@media (max-width: 481px) {
    .page-section.home-top-section .home-top-text {
        padding-top: 0;
        margin-bottom: 82px;
    }
}

@media (max-width: 768px) {
    .page-section.home-top-section .columns {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
}

.page-section.home-top-section .home-top-illustration {
    flex: 0 0 535px;
    padding: 58px 43px 64px 0;
    position: relative;
    background: url(/images/bg-home-banner-illustration.svg?1dc35ff5baedf48aac5f8890bc6d85c3) right top no-repeat;
    background-size: 100% auto;
}

@media (max-width: 1024px) {
    .page-section.home-top-section .home-top-illustration {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .page-section.home-top-section .home-top-illustration {
        flex: 1 1 auto;
        padding-bottom: 90px;
    }
}

@media (max-width: 481px) {
    .page-section.home-top-section .home-top-illustration {
        padding: 40px 24px 50px 0;
    }
}

.page-section.home-top-section .home-top-illustration img {
    border-radius: 34.518px;
    width: 100%;
    height: auto;
}

@media (max-width: 481px) {
    .page-section.home-top-section .home-top-illustration img {
        border-radius: 20px;
    }
}

.page-section.home-top-section .home-top-illustration .floating-label {
    bottom: 136px;
    left: -153px;
    width: 322px;
}

@media (max-width: 1024px) {
    .page-section.home-top-section .home-top-illustration .floating-label {
        left: -70px;
        bottom: 90px;
    }
}

@media (max-width: 768px) {
    .page-section.home-top-section .home-top-illustration .floating-label {
        left: 30px;
        bottom: 120px;
    }
}

@media (max-width: 481px) {
    .page-section.home-top-section .home-top-illustration .floating-label {
        width: 202px;
        left: -19px;
        bottom: 93px;
    }
}

.page-section.about-top-section > .container {
    padding-top: calc(70px + 128px);
    padding-bottom: 64px;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1024px) {
    .page-section.about-top-section > .container {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: calc(90px + 128px);
    }
}

@media (max-width: 768px) {
    .page-section.about-top-section > .container {
        padding-top: calc(80px + 110px);
        padding-bottom: 50px;
    }
}

@media (max-width: 481px) {
    .page-section.about-top-section > .container {
        padding-top: calc(38px + 110px);
    }
}

@media (max-width: 768px) {
    .page-section.about-top-section .columns {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
}

.page-section.about-top-section .about-top-text {
    padding-top: 175px;
    flex: 0 0 500px;
    margin-left: 118px;
    order: 2;
}

@media (max-width: 1255px) {
    .page-section.about-top-section .about-top-text {
        flex: 1 1 auto;
        margin-left: 45px;
    }
}

@media (max-width: 1024px) {
    .page-section.about-top-section .about-top-text {
        flex: 1 0 50%;
        padding-left: 30px;
        margin-left: 0;
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    .page-section.about-top-section .about-top-text {
        padding-top: 20px;
        flex: 1 1 auto;
        order: 1;
        margin-bottom: 102px;
        margin-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 481px) {
    .page-section.about-top-section .about-top-text {
        padding-top: 0;
        margin-bottom: 35px;
    }
}

.page-section.about-top-section .section-title {
    font-family: "Poppins";
    font-weight: 700;
    color: #232340;
    font-size: 60px;
    line-height: 1.22em;
    letter-spacing: 0;
    margin-bottom: 36px;
}

@media (max-width: 1024px) {
    .page-section.about-top-section .section-title {
        font-size: 64px;
    }
}

@media (max-width: 481px) {
    .page-section.about-top-section .section-title {
        font-size: 50px;
        margin-bottom: 30px;
    }
}

.page-section.about-top-section .illustration {
    flex: 0 0 624px;
    padding: 60px 20px 60px 0;
    position: relative;
    order: 1;
    background-image: url(/images/bg-about-illustration.svg?a15e79f8f0e7bf984da07f7f6fe525b4);
    background-position: 80px top;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

@media (max-width: 1024px) {
    .page-section.about-top-section .illustration {
        flex: 0 0 50%;
        background-size: auto 80%;
    }
}

@media (max-width: 768px) {
    .page-section.about-top-section .illustration {
        flex: 1 1 auto;
        padding: 60px 0;
        background-size: auto 100%;
    }
}

@media (max-width: 481px) {
    .page-section.about-top-section .illustration {
        padding: 45px 0;
        background-size: 260px auto;
        background-position: center top;
    }
}

.page-section.about-top-section .illustration img {
    border-radius: 10px;
    box-shadow: 0px 63px 50px rgba(67, 67, 68, 0.0705882);
}

@media (max-width: 768px) {
    .page-section.about-top-section .illustration img {
        margin: 0 auto;
    }
}

@media (max-width: 481px) {
    .page-section.about-top-section .illustration img {
        border-radius: 20px;
    }
}

.page-section.about-top-section .illustration .floating-label {
    top: 70px;
    left: -14px;
    width: 360px;
}

@media (max-width: 768px) {
    .page-section.about-top-section .illustration .floating-label {
        left: -15px;
    }
}

@media (max-width: 481px) {
    .page-section.about-top-section .illustration .floating-label {
        width: 230px;
    }
}

.page-section.about-top-section .intro-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.75em;
    margin-bottom: 40px;
    color: #858A8F;
}

@media (max-width: 1024px) {
    .page-section.about-top-section .intro-text {
        font-size: 18px;
    }

    .page-section.about-top-section .intro-text br {
        display: none;
    }
}

.page-section.what-weare-about > .container {
    padding-top: 45px;
    padding-bottom: 154px;
}

@media (max-width: 768px) {
    .page-section.what-weare-about > .container {
        padding-bottom: 45px;
    }
}

.page-section.what-weare-about .section-title {
    font-family: "Poppins";
    font-weight: 700;
    color: #232340;
    font-size: 60px;
    line-height: 1.22em;
    letter-spacing: 0;
    margin-bottom: 36px;
    text-align: center;
}

@media (max-width: 1024px) {
    .page-section.what-weare-about .section-title {
        font-size: 64px;
    }
}

@media (max-width: 481px) {
    .page-section.what-weare-about .section-title {
        font-size: 50px;
        margin-bottom: 30px;
    }
}

@media (max-width: 375px) {
    .page-section.what-weare-about .section-title {
        font-size: 40px;
    }
}

.page-section.what-weare-about .intro-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.75em;
    margin-bottom: 40px;
    text-align: center;
    color: #858A8F;
}

@media (max-width: 1024px) {
    .page-section.what-weare-about .intro-text {
        font-size: 18px;
    }

    .page-section.what-weare-about .intro-text br {
        display: none;
    }
}

.page-section.what-weare-about .buttons-wrapper {
    justify-content: center;
    margin-bottom: 90px;
}

@media (max-width: 768px) {
    .page-section.what-weare-about .buttons-wrapper {
        align-items: center;
    }
}

.page-section.what-weare-about .buttons-wrapper .button {
    min-width: 286px;
}

@media (max-width: 481px) {
    .page-section.what-weare-about .buttons-wrapper .button {
        min-width: 0;
        width: 286px;
        max-width: 100%;
    }
}

.page-section.what-weare-about .tech-icon-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .page-section.what-weare-about .tech-icon-list {
        flex-wrap: wrap;
    }
}

.page-section.what-weare-about .tech-icon-list .tech-icon {
    margin-left: 29px;
    margin-right: 29px;
}

@media (max-width: 768px) {
    .page-section.what-weare-about .tech-icon-list .tech-icon {
        flex: 0 1 30%;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.page-section.what-weare-about .tech-icon-list .tech-icon:first-child {
    margin-left: 0;
}

@media (max-width: 768px) {
    .page-section.what-weare-about .tech-icon-list .tech-icon:first-child {
        margin-left: 10px;
    }
}

.page-section.what-weare-about .tech-icon-list .tech-icon:last-child {
    margin-right: 0;
}

@media (max-width: 768px) {
    .page-section.what-weare-about .tech-icon-list .tech-icon:last-child {
        margin-right: 10px;
    }
}

.page-section.services-top-section {
    background-image: url(/images/bg-services.svg?8e509641a53939d590853a42c524ee1f);
    background-repeat: no-repeat;
    background-position: right calc((100vw - 1230px) / 2 - 35px) top 238px;
    background-size: 652px auto;
}

@media (max-width: 1024px) {
    .page-section.services-top-section {
        background-size: 55% auto;
        background-position: right -30px top 200px;
    }
}

@media (max-width: 768px) {
    .page-section.services-top-section {
        background-image: none;
    }
}

.page-section.services-top-section > .container {
    padding-top: calc(150px + 128px);
    padding-bottom: 104px;
}

@media (max-width: 768px) {
    .page-section.services-top-section > .container {
        padding-top: calc(80px + 110px);
        padding-bottom: 50px;
    }
}

@media (max-width: 481px) {
    .page-section.services-top-section > .container {
        padding-top: calc(38px + 110px);
    }
}

@media (max-width: 768px) {
    .page-section.services-top-section .columns {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
}

.page-section.services-top-section .services-top-text {
    padding-top: 122px;
    flex: 0 0 500px;
    margin-right: 84px;
}

@media (max-width: 1255px) {
    .page-section.services-top-section .services-top-text {
        flex: 1 1 auto;
        margin-right: 45px;
    }
}

@media (max-width: 1024px) {
    .page-section.services-top-section .services-top-text {
        flex: 1 0 50%;
        padding-right: 30px;
        margin-right: 0;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .page-section.services-top-section .services-top-text {
        padding-top: 20px;
        flex: 1 1 auto;
        margin-bottom: 102px;
        margin-right: 0;
        padding-right: 0;
    }
}

@media (max-width: 481px) {
    .page-section.services-top-section .services-top-text {
        padding-top: 0;
        margin-bottom: 35px;
    }
}

.page-section.services-top-section .section-title {
    font-family: "Poppins";
    font-weight: 700;
    color: #232340;
    font-size: 60px;
    line-height: 1.22em;
    letter-spacing: 0;
    margin-bottom: 36px;
}

@media (max-width: 1024px) {
    .page-section.services-top-section .section-title {
        font-size: 64px;
    }
}

@media (max-width: 481px) {
    .page-section.services-top-section .section-title {
        font-size: 50px;
        margin-bottom: 30px;
    }
}

.page-section.services-top-section .service-illustration {
    flex: 0 0 600px;
    padding: 0 0 105px 56px;
    position: relative;
}

@media (max-width: 1024px) {
    .page-section.services-top-section .service-illustration {
        flex: 0 0 50%;
        padding: 0 0 50px 25px;
    }
}

@media (max-width: 768px) {
    .page-section.services-top-section .service-illustration {
        flex: 1 1 auto;
        padding-bottom: 90px;
        padding-top: 45px;
        padding-left: 0;
        background-image: url(/images/bg-services.svg?8e509641a53939d590853a42c524ee1f);
        background-position: center top;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }
}

@media (max-width: 481px) {
    .page-section.services-top-section .service-illustration {
        padding: 45px 0;
    }
}

.page-section.services-top-section .service-illustration img {
    border-radius: 34.518px;
}

@media (max-width: 768px) {
    .page-section.services-top-section .service-illustration img {
        margin: 0 auto;
    }
}

@media (max-width: 481px) {
    .page-section.services-top-section .service-illustration img {
        border-radius: 20px;
    }
}

.page-section.services-top-section .service-illustration .floating-label {
    top: 70px;
    left: -14px;
    width: 360px;
}

@media (max-width: 768px) {
    .page-section.services-top-section .service-illustration .floating-label {
        left: -15px;
    }
}

@media (max-width: 481px) {
    .page-section.services-top-section .service-illustration .floating-label {
        width: 230px;
    }
}

.page-section.services-top-section .intro-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.75em;
    margin-bottom: 40px;
    color: #858A8F;
}

@media (max-width: 1024px) {
    .page-section.services-top-section .intro-text {
        font-size: 18px;
    }

    .page-section.services-top-section .intro-text br {
        display: none;
    }
}

.page-section.single-service-top-section {
    background: #ffffff url(/images/bg_single_service_bottom.png?d19737c7e83bd16d2a529dfce3112b8e) left bottom repeat-x;
}

@media (max-width: 768px) {
    .page-section.single-service-top-section {
        background-size: 1px 150px;
    }
}

.page-section.single-service-top-section > .container {
    padding-top: calc(100px + 128px);
    padding-left: 0;
    padding-bottom: 50px;
    padding-right: 0;
}

@media (max-width: 1024px) {
    .page-section.single-service-top-section > .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.single-service-top-section > .container {
        padding-top: calc(80px + 110px);
    }
}

@media (max-width: 481px) {
    .page-section.single-service-top-section > .container {
        padding-top: calc(38px + 110px);
    }
}

.page-section.single-service-top-section .section-title {
    text-align: center;
    font-weight: 700;
    font-family: "Poppins";
    font-size: 60px;
    line-height: 1.22em;
    margin-bottom: 35px;
}

@media (max-width: 481px) {
    .page-section.single-service-top-section .section-title {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1.08em;
        margin-bottom: 30px;
    }
}

.page-section.single-service-top-section .intro-text {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 48px;
}

.page-section.single-service-top-section .intro-text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.75em;
    color: #858A8F;
}

@media (max-width: 481px) {
    .page-section.single-service-top-section .intro-text p {
        font-size: 18px;
        line-height: 1.78em;
    }
}

.page-section.single-service-top-section .buttons-wrapper {
    justify-content: center;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .page-section.single-service-top-section .buttons-wrapper {
        align-items: center;
    }
}

.page-section.text-block > .container {
    padding-top: 140px;
    padding-bottom: 120px;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1255px) {
    .page-section.text-block > .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 1024px) {
    .page-section.text-block > .container {
        padding-top: 100px;
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .page-section.text-block > .container {
        padding-top: 50px;
    }

    .page-section.text-block > .container:first-child {
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    .page-section.text-block .columns {
        flex-direction: column;
    }
}

.page-section.text-block .columns .column {
    flex: 0 1 50%;
}

.page-section.text-block .columns .image-column {
    position: relative;
    padding-top: 15px;
}

@media (max-width: 1024px) {
    .page-section.text-block .columns .image-column {
        flex: 0 0 40%;
    }
}

@media (max-width: 768px) {
    .page-section.text-block .columns .image-column {
        order: 1;
        margin-bottom: 60px;
    }
}

.page-section.text-block .columns .image-column .floating-label {
    bottom: 125px;
    left: -75px;
}

@media (max-width: 1024px) {
    .page-section.text-block .columns .image-column .floating-label {
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.text-block .columns .image-column .floating-label {
        left: -15px;
    }
}

.page-section.text-block .columns .image-column > img {
    border-radius: 10px;
    box-shadow: 0px 50px 50px rgba(55, 55, 55, 0.109804);
}

@media (max-width: 1024px) {
    .page-section.text-block .columns .text-column {
        flex: 1 1 auto;
    }

    .page-section.text-block .columns .text-column br {
        display: none;
    }
}

.page-section.text-block:nth-child(odd) .text-column {
    padding-right: 115px;
}

@media (max-width: 768px) {
    .page-section.text-block:nth-child(odd) .text-column {
        order: 2;
        padding-right: 0;
    }
}

.page-section.text-block:nth-child(even) .text-column {
    order: 2;
    padding-left: 115px;
}

@media (max-width: 768px) {
    .page-section.text-block:nth-child(even) .text-column {
        padding-left: 0;
    }
}

.page-section.text-block:nth-child(even) .image-column .floating-label {
    bottom: 135px;
    left: auto;
    right: -75px;
}

@media (max-width: 1024px) {
    .page-section.text-block:nth-child(even) .image-column .floating-label {
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.text-block:nth-child(even) .image-column .floating-label {
        right: -15px;
    }
}

.page-section.text-block .section-title {
    font-family: "Inter";
    font-weight: 700;
    font-size: 60px;
    line-height: 1.22em;
}

@media (max-width: 768px) {
    .page-section.text-block .section-title br {
        display: none;
    }
}

@media (max-width: 481px) {
    .page-section.text-block .section-title {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1.08em;
        margin-bottom: 30px;
    }
}

.page-section.text-block .block-text p,
.page-section.text-block .block-text li {
    margin-bottom: 1em;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.94em;
    color: #858A8F;
}

.page-section.text-block .block-text h1,
.page-section.text-block .block-text h2,
.page-section.text-block .block-text h3,
.page-section.text-block .block-text h4,
.page-section.text-block .block-text h5,
.page-section.text-block .block-text h6 {
    font-weight: bold;
    margin-bottom: 1em;
}

.page-section.text-block .block-text ul,
.page-section.text-block .block-text ol {
    padding-left: 1em;
    margin-bottom: 1em;
}

.page-section.text-block .block-text ul li,
.page-section.text-block .block-text ol li {
    margin-bottom: 0;
}

.page-section.text-block .block-text ul li {
    list-style: disc;
}

.page-section.text-block .block-text ol li {
    list-style: decimal;
}

.page-section.service-category:last-child {
    padding-bottom: 124px;
}

@media (max-width: 481px) {
    .page-section.service-category:last-child > .container {
        padding-bottom: 0;
    }
}

.page-section.service-category:nth-child(odd) .category-illustration {
    order: 1;
    margin-right: 84px;
}

.page-section.service-category:nth-child(odd) .category-text {
    order: 2;
}

@media (max-width: 1255px) {
    .page-section.service-category:nth-child(odd) .category-illustration {
        margin-right: 40px;
    }
}

@media (max-width: 768px) {
    .page-section.service-category:nth-child(odd) .category-illustration {
        margin-right: 0;
    }
}

.page-section.service-category:nth-child(even) .category-illustration {
    order: 2;
    margin-left: 84px;
}

.page-section.service-category:nth-child(even) .category-text {
    order: 1;
}

@media (max-width: 768px) {
    .page-section.service-category:nth-child(even) .category-category-text {
        order: 2;
    }
}

@media (max-width: 1255px) {
    .page-section.service-category:nth-child(even) .category-illustration {
        order: 1;
        margin-left: 40px;
    }

    .page-section.service-category:nth-child(even) .category-text {
        order: 2;
    }
}

@media (max-width: 768px) {
    .page-section.service-category:nth-child(even) .category-illustration {
        order: 1;
        margin-left: 0;
    }

    .page-section.service-category:nth-child(even) .category-text {
        order: 2;
    }
}

.page-section.service-category > .container {
    padding-top: 105px;
    padding-bottom: 80px;
    padding-right: 0;
}

@media (max-width: 1024px) {
    .page-section.service-category > .container {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-right: 30px;
    }
}

.page-section.service-category .section-title {
    font-family: "Inter";
    font-weight: 700;
    color: #232340;
    font-size: 60px;
    line-height: 1.22em;
    letter-spacing: 0;
    margin-bottom: 35px;
    padding-top: 45px;
}

@media (max-width: 768px) {
    .page-section.service-category .section-title br {
        display: none;
    }
}

@media (max-width: 481px) {
    .page-section.service-category .section-title {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1.08em;
        margin-bottom: 30px;
    }
}

.page-section.service-category .intro-text p {
    font-family: "Inter";
    font-weight: 500;
    font-size: 20px;
    line-height: 1.75em;
    color: #858A8F;
    margin-bottom: 28px;
}

@media (max-width: 481px) {
    .page-section.service-category .intro-text p {
        font-size: 18px;
        line-height: 1.78em;
    }
}

.page-section.service-category .button {
    min-width: 212px;
}

@media (max-width: 768px) {
    .page-section.service-category .columns {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
}

.page-section.service-category .category-text {
    flex: 1 0 560px;
}

@media (max-width: 1255px) {
    .page-section.service-category .category-text {
        flex: 0 1 50%;
    }
}

@media (max-width: 481px) {
    .page-section.service-category .category-text {
        flex: 1 1 auto;
    }
}

.page-section.service-category .category-illustration {
    flex: 0 0 560px;
    position: relative;
}

@media (max-width: 1024px) {
    .page-section.service-category .category-illustration {
        flex: 0 1 50%;
    }
}

@media (max-width: 481px) {
    .page-section.service-category .category-illustration {
        flex: 1 1 auto;
        margin-bottom: 25px;
    }
}

.page-section.service-category .category-illustration.image img {
    display: block;
    margin: 0 auto;
}

.page-section.service-category .category-illustration.image img.border {
    border: 2px solid #F5F6FA;
    border-radius: 9px;
}

.page-section.service-category .category-illustration.image img.shadow {
    box-shadow: 0px 58.4106px 46.3577px rgba(67, 67, 68, 0.0705882);
}

.page-section.service-category .category-illustration.image .floating-label:nth-child(2) {
    top: 184px;
    left: -30px;
}

@media (max-width: 1024px) {
    .page-section.service-category .category-illustration.image .floating-label:nth-child(2) {
        left: -15px;
        top: 150px;
    }
}

.page-section.service-category .category-illustration.image .floating-label:nth-child(3) {
    left: auto;
    right: -47px;
    bottom: 203px;
}

@media (max-width: 1024px) {
    .page-section.service-category .category-illustration.image .floating-label:nth-child(3) {
        right: -15px;
        bottom: 150px;
    }
}

.page-section.service-category .category-illustration pre {
    background: #232340;
    display: block;
    color: white;
    max-width: 500px;
    box-shadow: 0px 63px 50px rgba(67, 67, 68, 0.0705882);
    border-radius: 7px;
    padding: 112px 70px 100px;
    font-family: "Consolas", "monaco", monospace;
    font-size: 20px;
    line-height: 1.25em;
    font-weight: 400;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .page-section.service-category .category-illustration pre {
        padding: 50px 35px 50px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-section.service-category .category-illustration pre {
        max-width: 100%;
    }
}

@media (max-width: 481px) {
    .page-section.service-category .category-illustration pre {
        white-space: pre-line;
    }
}

.page-section.service-category .subcategories {
    margin-top: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

@media (max-width: 1255px) {
    .page-section.service-category .subcategories {
        flex-direction: column;
        align-items: stretch;
    }
}

.page-section.service-category .subcategories.rows .subcategory-block {
    flex: 1 1 100%;
}

@media (max-width: 1024px) {
    .page-section.service-category .subcategories.rows .subcategory-block {
        flex: 1 1 auto;
    }
}

.page-section.service-category .subcategories.rows .subcategory-block:last-child {
    margin-bottom: 0;
}

.page-section.service-category .subcategories .subcategory-block {
    flex: 0 0 calc(50% - 5px);
    background: white;
    position: relative;
    margin-bottom: 22px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .page-section.service-category .subcategories .subcategory-block {
        margin-bottom: 40px;
        flex: 1 1 100%;
        height: auto;
        margin-right: 0;
    }
}

@media (max-width: 481px) {
    .page-section.service-category .subcategories .subcategory-block {
        margin-bottom: 25px;
    }
}

.page-section.service-category .subcategories .subcategory-block .subcategory-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.21em;
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 481px) {
    .page-section.service-category .subcategories .subcategory-block .subcategory-name {
        font-size: 20px;
        margin-bottom: 4px;
    }
}

.page-section.service-category .subcategories .subcategory-block .subcategory-text {
    flex: 1 1 auto;
}

.page-section.service-category .subcategories .subcategory-block .subcategory-link {
    display: inline-block;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2em;
    text-decoration: none;
    color: #377DFF;
    background: url(/images/icon-arrow-right.svg?6064596f7e569bb4681025c20a0fa45f) right center no-repeat;
    padding-right: 32px;
    background-size: 20px auto;
}

@media (max-width: 481px) {
    .page-section.service-category .subcategories .subcategory-block .subcategory-link {
        font-size: 18px;
    }
}

.page-section.service-category .subcategories .subcategory-block .subcategory-link:hover {
    text-decoration: underline;
}

.page-section.service-category .subcategories .subcategory-block .icon {
    flex: 0 0 74px;
    align-self: flex-start;
    background: #EAF0F6;
    height: 74px;
    width: 74px;
    border-radius: 50%;
    margin-right: 32px;
}

@media (max-width: 481px) {
    .page-section.service-category .subcategories .subcategory-block .icon {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        margin-right: 16px;
    }
}

.page-section.service-category .subcategories .subcategory-block .icon.stat-blue {
    background: #E5F1FF url(/images/icon-stat-blue.svg?dc5e3a2d120dfa42e7b8706d614f7713) center center no-repeat;
    background-size: 29px auto;
}

.page-section.service-category .subcategories .subcategory-block .icon.stat-green {
    background: #EAFAF3 url(/images/icon-stat-green.svg?c389aacc96e00a0b9b710a31ce4a2ea3) center center no-repeat;
    background-size: 29px auto;
}

.page-section.service-category .subcategories .subcategory-block .icon.stat-yellow {
    background: #FFF2D8 url(/images/icon-stat-yellow.svg?a74916ea4e747d5aa226760e9d7940fe) center center no-repeat;
    background-size: 29px auto;
}

.page-section.service-category .subcategories .subcategory-block .icon.stat-red {
    background: #FFE3DE url(/images/icon-stat-red.svg?8c63033ed2d5f06abda42fbaa660eca0) center center no-repeat;
    background-size: 29px auto;
}

.page-section.case-studies {
    background: #F5F6FA;
}

.page-section.case-studies > .container {
    padding-top: 70px;
    padding-bottom: 70px;
}

.page-section.case-studies .case-study-box {
    margin-bottom: 60px;
}

.page-section.case-studies .case-study-box .thumbnail-wrapper {
    display: block;
    margin-bottom: 24px;
}

.page-section.case-studies .case-study-box .thumbnail-wrapper img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 350px;
}

@media (max-width: 768px) {
    .page-section.case-studies .case-study-box .thumbnail-wrapper img {
        height: auto;
        margin: 0 auto;
    }
}

.page-section.case-studies .case-study-box .case-study-text {
    padding-left: 28px;
}

@media (max-width: 768px) {
    .page-section.case-studies .case-study-box .case-study-text {
        text-align: center;
        padding-left: 0;
    }
}

.page-section.case-studies .case-study-box .case-study-text .case-study-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.21em;
    font-family: "Poppins";
    margin-bottom: 11px;
}

@media (max-width: 481px) {
    .page-section.case-studies .case-study-box .case-study-text .case-study-title {
        font-size: 20px;
    }
}

.page-section.case-studies .case-study-box .case-study-text .case-study-title a {
    text-decoration: none;
    color: #232340;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.page-section.case-studies .case-study-box .case-study-text .case-study-title a:hover {
    color: #377DFF;
}

.page-section.case-studies .case-study-box .case-study-text .case-study-category p {
    font-family: "Inter";
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2em;
    color: #858A8F;
}

@media (max-width: 481px) {
    .page-section.case-studies .case-study-box .case-study-text .case-study-category p {
        font-size: 16px;
    }
}

.page-section.case-studies .section-title {
    text-align: center;
    font-family: "Inter";
    font-weight: 700;
    font-size: 60px;
    line-height: 1.22em;
}

@media (max-width: 768px) {
    .page-section.case-studies .section-title br {
        display: none;
    }
}

@media (max-width: 481px) {
    .page-section.case-studies .section-title {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1.08em;
        margin-bottom: 30px;
    }
}

.page-section.case-studies .intro-text {
    text-align: center;
    margin-bottom: 60px;
}

.page-section.case-studies .intro-text p {
    font-size: 20px;
    line-height: 1.75em;
    font-weight: 500;
    color: #858A8F;
}

@media (max-width: 768px) {
    .page-section.case-studies .intro-text p br {
        display: none;
    }
}

@media (max-width: 481px) {
    .page-section.case-studies .intro-text p {
        font-size: 18px;
    }
}

.page-section.case-studies .columns {
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-section.case-studies .columns {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
    }
}

.page-section.case-studies .columns .column {
    flex: 0 1 calc(50% - 20px);
}

@media (max-width: 768px) {
    .page-section.case-studies .columns .column {
        flex: 1 1 100%;
    }
}

.page-section.case-studies .buttons-wrapper {
    justify-content: center;
}

@media (max-width: 768px) {
    .page-section.case-studies .buttons-wrapper {
        align-items: center;
    }
}

.page-section.companies {
    background: #F5F6FA url(/images/symbol-green-circle.svg?66f8c013bcab2beefd4c3fb69b38c128) right -70px top 134px;
    background-repeat: no-repeat;
    background-size: 180px 180px;
}

@media (max-width: 1024px) {
    .page-section.companies {
        background-position: right -90px top 50px;
    }
}

.page-section.companies > .container {
    padding-top: 106px;
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1255px) {
    .page-section.companies > .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 1024px) {
    .page-section.companies > .container {
        padding-top: 100px;
    }
}

.page-section.companies .section-title {
    text-align: center;
    font-family: "Poppins";
    font-weight: 700;
    font-size: 60px;
    line-height: 1.22em;
}

@media (max-width: 768px) {
    .page-section.companies .section-title br {
        display: none;
    }
}

@media (max-width: 481px) {
    .page-section.companies .section-title {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1.08em;
        margin-bottom: 30px;
    }
}

.page-section.companies .intro-text {
    text-align: center;
    margin-bottom: 88px;
}

.page-section.companies .intro-text p {
    font-weight: 500;
    font-family: "Inter";
    font-size: 20px;
    line-height: 1.75em;
    color: #858A8F;
}

@media (max-width: 1024px) {
    .page-section.companies .intro-text p {
        font-size: 18px;
    }

    .page-section.companies .intro-text p br {
        display: none;
    }
}

.page-section.companies .companies-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

@media (max-width: 481px) {
    .page-section.companies .companies-wrapper {
        flex-direction: column;
    }
}

.page-section.companies .companies-wrapper .company-block {
    flex: 0 1 calc(33% - 21.33px);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .page-section.companies .companies-wrapper .company-block {
        flex: 0 1 calc(50% - 8px);
    }
}

@media (max-width: 481px) {
    .page-section.companies .companies-wrapper .company-block {
        flex: 1 1 100%;
        margin-bottom: 60px;
    }
}

.page-section.companies .companies-wrapper .company-block .thumbnail {
    background: white;
    height: 230px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    margin-bottom: 22px;
}

@media (max-width: 768px) {
    .page-section.companies .companies-wrapper .company-block .thumbnail {
        height: 180px;
    }
}

.page-section.companies .companies-wrapper .company-block .description {
    text-align: center;
}

.page-section.companies .companies-wrapper .company-block .description p {
    font-family: "Inter";
    font-weight: 500;
    font-size: 18px;
    line-height: 1.94em;
    color: #858A8F;
}

@media (max-width: 768px) {
    .page-section.companies .companies-wrapper .company-block .description p {
        font-size: 14px;
    }
}

.page-section.leave-message {
    background-color: #F5F6FA;
    background-image: url(/images/symbol-yellow-stripes.svg?a57bca792d8ed5ed25d8c6a4832b0b67), url(/images/symbol-green-circle.svg?66f8c013bcab2beefd4c3fb69b38c128);
    background-position: left -38px top 20px, right -72px bottom 32px;
    background-size: 136px auto, 180px auto;
    background-repeat: no-repeat;
}

@media (max-width: 481px) {
    .page-section.leave-message {
        background-position: left -110px top 20px, right -130px bottom 32px;
    }
}

.page-section.leave-message.light {
    background-color: white;
    background-image: none;
}

.page-section.leave-message > .container {
    padding-top: 120px;
    padding-bottom: 124px;
}

@media (max-width: 768px) {
    .page-section.leave-message > .container {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 481px) {
    .page-section.leave-message > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.page-section.leave-message .section-title {
    text-align: center;
    font-family: "Poppins";
    font-weight: 700;
    font-size: 48px;
    line-height: 1.21em;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .page-section.leave-message .section-title br {
        display: none;
    }
}

@media (max-width: 481px) {
    .page-section.leave-message .section-title {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1.08em;
        margin-bottom: 30px;
        text-align: left;
    }
}

.page-section.leave-message .intro-text {
    text-align: center;
    margin-bottom: 52px;
}

.page-section.leave-message .intro-text p {
    font-size: 20px;
    line-height: 1.75em;
    font-weight: 500;
    color: #858A8F;
}

@media (max-width: 768px) {
    .page-section.leave-message .intro-text p br {
        display: none;
    }
}

@media (max-width: 481px) {
    .page-section.leave-message .intro-text p {
        font-size: 18px;
        line-height: 1.78em;
        text-align: left;
    }
}

.page-section.home-what-we-do {
    background: #F5F6FA url(/images/bg-what-we-do.svg?357cad5ab0c9bb1a3340d672a9f11a60) right 245px no-repeat;
    background-size: 594px 711px;
}

@media (max-width: 768px) {
    .page-section.home-what-we-do {
        background: #F5F6FA url(/images/symbol-green-circle.svg?66f8c013bcab2beefd4c3fb69b38c128) left -80px bottom 68px no-repeat;
        background-size: 180px auto;
    }
}

.page-section.home-what-we-do > .container {
    padding-top: 140px;
    padding-bottom: 170px;
}

@media (max-width: 768px) {
    .page-section.home-what-we-do > .container {
        padding-top: 80px;
        padding-bottom: 156px;
    }
}

.page-section.home-what-we-do .what-we-do-text {
    padding-top: 128px;
    flex: 1 1 auto;
}

@media (max-width: 1024px) {
    .page-section.home-what-we-do .what-we-do-text {
        margin-bottom: 60px;
        padding-right: 120px;
        padding-top: 0;
    }
}

@media (max-width: 481px) {
    .page-section.home-what-we-do .what-we-do-text {
        padding-right: 0;
    }
}

.page-section.home-what-we-do .intro-text p {
    font-family: "Poppins";
    font-weight: 400;
    font-size: 18px;
    line-height: 1.78em;
}

@media (max-width: 1024px) {
    .page-section.home-what-we-do .columns {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
}

.page-section.home-what-we-do .project-types {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 0 0 650px;
    margin-left: 102px;
}

@media (max-width: 1255px) {
    .page-section.home-what-we-do .project-types {
        margin-left: 60px;
        flex: 0 1 auto;
    }
}

@media (max-width: 1024px) {
    .page-section.home-what-we-do .project-types {
        margin-left: 0;
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    .page-section.home-what-we-do .project-types {
        flex-wrap: nowrap;
        flex: 1 1 100%;
        margin-right: -30px;
        overflow-x: auto;
        padding-bottom: 30px;
    }

    .page-section.home-what-we-do .project-types::after {
        width: 20px;
        flex: 0 0 20px;
        content: "";
        height: 20px;
    }
}

.page-section.home-what-we-do .project-types .project-type-block {
    flex: 0 0 calc(50% - 16px);
    background: white;
    padding: 32px 22px 36px 32px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1255px) {
    .page-section.home-what-we-do .project-types .project-type-block {
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-section.home-what-we-do .project-types .project-type-block {
        flex: 0 0 285px;
        margin-right: 10px;
        margin-bottom: 0;
    }
}

.page-section.home-what-we-do .project-types .project-type-block:hover {
    box-shadow: 0px 63px 50px rgba(67, 67, 68, 0.0906);
    z-index: 5;
}

.page-section.home-what-we-do .project-types .project-type-block .type-name {
    font-weight: 700;
    font-size: 26px;
    line-height: 1.19em;
    margin-bottom: 19px;
}

.page-section.home-what-we-do .project-types .project-type-block .description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.67em;
    color: #606060;
}

.page-section.home-what-we-do .project-types .project-type-block .icon {
    flex: 0 0 80px;
    margin-bottom: 18px;
    align-self: flex-start;
    background: #EAF0F6;
    height: 80px;
    width: 80px;
    border-radius: 50%;
}

.page-section.home-what-we-do .project-types .project-type-block .icon.research {
    background: #E5F1FF url(/images/icon-research.svg?eb149d50252d98dfd4de0fe0019bec63) center center no-repeat;
}

.page-section.home-what-we-do .project-types .project-type-block .icon.app-dev {
    background: #EAFAF3 url(/images/icon-phone-2.svg?b6d3696a4a6001c9e5b209e7fe071267) center center no-repeat;
}

.page-section.home-what-we-do .project-types .project-type-block .icon.product-dev {
    background: #FFF2D8 url(/images/icon-code.svg?908a7eb983c8f8a711b39e5ac5fab33b) center center no-repeat;
}

.page-section.home-what-we-do .project-types .project-type-block .icon.web-dev {
    background: #FFE3DE url(/images/icon-webdev.svg?519b15c953d4fb40100f0228bd6f3b2f) center center no-repeat;
    background-size: 34px auto;
}

.page-section.home-what-we-do .project-types .project-type-block .block-link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.page-section.our-work > .container {
    padding-top: 130px;
    padding-bottom: 150px;
}

@media (max-width: 481px) {
    .page-section.our-work > .container {
        padding-top: 60px;
        padding-bottom: 30px;
    }
}

@media (max-width: 481px) {
    .page-section.our-work .section-title {
        margin-bottom: 70px;
    }
}

.page-section.our-work .tabs-wrapper {
    margin-bottom: 70px;
}

@media (max-width: 481px) {
    .page-section.our-work .tabs-wrapper {
        margin-bottom: 40px;
    }
}

.page-section.our-work .tabs-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

@media (max-width: 481px) {
    .page-section.our-work .tabs-wrapper ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-right: -30px;
    }

    .page-section.our-work .tabs-wrapper ul:after {
        flex: 0 0 20px;
        width: 20px;
        height: 20px;
        content: "";
    }
}

.page-section.our-work .tabs-wrapper ul li {
    margin-right: 92px;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
}

@media (max-width: 481px) {
    .page-section.our-work .tabs-wrapper ul li {
        margin-right: 20px;
    }
}

.page-section.our-work .tabs-wrapper ul li:last-child {
    margin-right: 0;
}

.page-section.our-work .tabs-wrapper ul li a {
    text-decoration: none;
    font-weight: 500;
    font-family: "Poppins";
    font-size: 16px;
    line-height: 1.5em;
    color: #9F9FA9;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: none;
    outline: 0;
}

.page-section.our-work .tabs-wrapper ul li a:hover {
    color: #232340;
}

.page-section.our-work .tabs-wrapper ul li.active {
    border-bottom: 2px solid #377DFF;
}

.page-section.our-work .tabs-wrapper ul li.active a {
    color: #232340;
}

.page-section.our-work .tab-content-wrapper .tab-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 0;
}

.page-section.our-work .tab-content-wrapper .tab-content.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.page-section.our-work .tab-content-wrapper .tab-content .columns {
    align-items: stretch;
}

@media (max-width: 1024px) {
    .page-section.our-work .tab-content-wrapper .tab-content .columns {
        flex-wrap: nowrap;
        flex: 1 1 100%;
        margin-right: -30px;
        overflow-x: auto;
        padding-bottom: 30px;
    }

    .page-section.our-work .tab-content-wrapper .tab-content .columns::after {
        width: 15px;
        height: 15px;
        content: "";
        flex: 0 0 15px;
    }
}

.page-section.our-work .tab-content-wrapper .tab-content .reference-box {
    position: relative;
    background: white;
    border-radius: 24px;
    flex: 0 0 calc(50% - 16px);
    padding-bottom: 28px;
    z-index: 1;
    box-shadow: 0px 15.75px 25px rgba(67, 67, 68, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-section.our-work .tab-content-wrapper .tab-content .reference-box:hover {
    box-shadow: 0px 63px 50px rgba(67, 67, 68, 0.05);
    z-index: 5;
}

@media (max-width: 1024px) {
    .page-section.our-work .tab-content-wrapper .tab-content .reference-box {
        flex: 0 0 70%;
        margin-right: 15px;
    }
}

@media (max-width: 481px) {
    .page-section.our-work .tab-content-wrapper .tab-content .reference-box {
        flex: 0 0 276px;
    }
}

@media (max-width: 375px) {
    .page-section.our-work .tab-content-wrapper .tab-content .reference-box {
        flex: 0 0 230px;
    }
}

.page-section.our-work .tab-content-wrapper .tab-content .reference-box .reference-link {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.page-section.our-work .tab-content-wrapper .tab-content .reference-box .thumbnail-wrapper {
    height: 426px;
    background: black;
    aspect-ratio: 675/510;
    margin-bottom: 48px;
    aspect-ratio: 675/510; /* Fixed aspect ratio to prevent CLS */
}

@media (max-width: 481px) {
    .page-section.our-work .tab-content-wrapper .tab-content .reference-box .thumbnail-wrapper {
        height: 208px;
        margin-bottom: 24px;
        aspect-ratio: 675/510;
    }
}

.page-section.our-work .tab-content-wrapper .tab-content .reference-box .thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -o-object-position: center center;
    object-position: center center;
}

.page-section.our-work .tab-content-wrapper .tab-content .reference-box .reference-title {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5em;
    letter-spacing: -0.15px;
    color: #232340;
    margin-bottom: 8px;
}

@media (max-width: 481px) {
    .page-section.our-work .tab-content-wrapper .tab-content .reference-box .reference-title {
        font-size: 16px;
        letter-spacing: -0.07px;
    }
}

.page-section.our-work .tab-content-wrapper .tab-content .reference-box .reference-text {
    padding: 0 48px 48px;
}

@media (max-width: 481px) {
    .page-section.our-work .tab-content-wrapper .tab-content .reference-box .reference-text {
        padding: 0 23px 31px;
    }
}

.page-section.our-work .tab-content-wrapper .tab-content .reference-box .description p {
    font-family: "Poppins";
    font-weight: 400;
    font-size: 18px;
    color: #232340;
    line-height: 1.78em;
}

@media (max-width: 481px) {
    .page-section.our-work .tab-content-wrapper .tab-content .reference-box .description p {
        font-size: 13px;
    }
}

.page-section.blog-articles > .container {
    padding-top: 140px;
    padding-bottom: 105px;
}

@media (max-width: 768px) {
    .page-section.blog-articles > .container {
        padding-top: 70px;
    }
}

@media (max-width: 481px) {
    .page-section.blog-articles > .container {
        padding-top: 60px;
        padding-bottom: 50px;
    }
}

@media (max-width: 481px) {
    .page-section.blog-articles .intro-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-section.blog-articles .intro-text br {
        display: none;
    }
}

@media (max-width: 481px) {
    .page-section.blog-articles .section-title {
        margin-bottom: 0;
    }
}

.page-section.blog-articles .section-top {
    position: relative;
    margin-bottom: 102px;
}

@media (max-width: 481px) {
    .page-section.blog-articles .section-top {
        margin-bottom: 0;
    }
}

.page-section.blog-articles .section-top .blog-archive-link {
    position: absolute;
    top: 56px;
    right: 0;
    width: 64px;
    height: 64px;
    background: #377DFF url(/images/icon-arrow-right-white.svg?9ffeaf408e15f66e3f0b5b51fa0d255a) center center no-repeat;
    background-size: 20px auto;
    border-radius: 50%;
}

@media (max-width: 481px) {
    .page-section.blog-articles .section-top .blog-archive-link {
        background: none;
        width: 100%;
        height: 50%;
        border-radius: 0;
        bottom: 0;
        top: auto;
        left: 0;
    }
}

.page-section.blog-articles .blog-articles-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
}

@media (max-width: 768px) {
    .page-section.blog-articles .blog-articles-wrapper {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
}

@media (max-width: 481px) {
    .page-section.blog-articles .blog-articles-wrapper {
        padding-top: 60px;
    }
}

.page-section.blog-articles .blog-articles-wrapper article {
    flex: 0 0 calc(50% - 67.5px);
}

@media (max-width: 1024px) {
    .page-section.blog-articles .blog-articles-wrapper article {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .page-section.blog-articles .blog-articles-wrapper article {
        margin-bottom: 50px;
    }

    .page-section.blog-articles .blog-articles-wrapper article:last-of-type {
        margin-bottom: 0;
    }
}

.page-section.blog-articles .blog-articles-wrapper article .thumbnail {
    /*height: 500px;*/
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    aspect-ratio: 400/250; /* Fixed aspect ratio to prevent CLS */
}

@media (max-width: 768px) {
    .page-section.blog-articles .blog-articles-wrapper article .thumbnail {
        height: 0;
        padding-top: 62.5%; /* 250/400 = 0.625 for 400x250 aspect ratio */
        position: relative;
        aspect-ratio: 400/250;
    }
}

@media (max-width: 481px) {
    .page-section.blog-articles .blog-articles-wrapper article .thumbnail {
        margin-bottom: 30px;
    }
}

.page-section.blog-articles .blog-articles-wrapper article .thumbnail a {
    display: block;
    height: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .page-section.blog-articles .blog-articles-wrapper article .thumbnail a {
        position: absolute;
        left: 0;
        top: 0;
    }
}

.page-section.blog-articles .blog-articles-wrapper article .thumbnail a img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

@media (max-width: 768px) {
    .page-section.blog-articles .blog-articles-wrapper article .thumbnail a img {
        -o-object-position: center top;
        object-position: center top;
    }
}

.page-section.blog-articles .blog-articles-wrapper article h3 {
    margin-bottom: 23px;
}

@media (max-width: 481px) {
    .page-section.blog-articles .blog-articles-wrapper article h3 {
        margin-bottom: 20px;
    }
}

.page-section.blog-articles .blog-articles-wrapper article h3 a {
    text-decoration: none;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -0.4px;
    text-align: left;
    color: #232340;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 481px) {
    .page-section.blog-articles .blog-articles-wrapper article h3 a {
        font-size: 35px;
    }
}

.page-section.blog-articles .blog-articles-wrapper article h3 a:hover {
    color: #377DFF;
}

.page-section.blog-articles .blog-articles-wrapper article .excerpt {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.78em;
    text-align: left;
}

.page-section.home-contact {
    background-color: white;
    background-image: url(/images/bg-letswork.svg?73206bddf1600408615fec03a0737937), url(/images/bg-home-contact.svg?a2195412af9292830754b57a7a728b50);
    background-position: center 230px, left bottom;
    background-repeat: no-repeat;
    background-size: 1432px 1250px, 100% auto;
}

@media (max-width: 1024px) {
    .page-section.home-contact {
        background-size: 120% auto, 100% auto;
        background-position: center bottom 40px, left bottom;
    }
}

@media (max-width: 768px) {
    .page-section.home-contact {
        background-image: url(/images/bg-home-contact-mobile-2.svg?4cec23f38ac62e444ea79c0b5ea08283), url(/images/bg-home-contact-mobile.svg?55a6894e21684a34543cada056f241a0), url(/images/symbol-yellow-stripes.svg?a57bca792d8ed5ed25d8c6a4832b0b67);
        background-position: center bottom, left bottom, left 109px;
        background-size: 120% auto, 100% auto, 90px auto;
    }
}

.page-section.home-contact > .container {
    padding-top: 105px;
    padding-bottom: 86px;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1255px) {
    .page-section.home-contact > .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.home-contact > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.page-section.home-contact .form-wrapper {
    box-shadow: 0px -16.2488px 60.9329px 28.4354px rgba(0, 0, 0, 0.05);
    border-radius: 48.7463px;
    background: white;
    padding: 102px 170px 102px 178px;
}

@media (max-width: 1024px) {
    .page-section.home-contact .form-wrapper {
        padding: 102px 60px 50px 60px;
    }
}

@media (max-width: 768px) {
    .page-section.home-contact .form-wrapper {
        padding: 82px 20px 68px;
        border-radius: 30px;
    }
}

.page-section.home-contact .form-wrapper .section-top .section-title {
    margin-bottom: 63px;
}

@media (max-width: 768px) {
    .page-section.home-contact .form-wrapper .section-top .section-title {
        margin-bottom: 40px;
    }
}

.page-section.home-contact .form-wrapper .address-info {
    margin-bottom: 84px;
    padding-left: 22px;
}

@media (max-width: 768px) {
    .page-section.home-contact .form-wrapper .address-info {
        padding-left: 0;
        margin-bottom: 65px;
    }
}

.page-section.home-contact .form-wrapper .address-info li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 18px;
    line-height: 1.81em;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .page-section.home-contact .form-wrapper .address-info li {
        font-size: 17px;
        margin-bottom: 22px;
    }
}

.page-section.home-contact .form-wrapper .address-info li:last-child {
    margin-bottom: 0;
}

.page-section.home-contact .form-wrapper .address-info .icon {
    flex: 0 0 24px;
    margin-right: 35px;
}

.page-section.home-contact .form-wrapper .address-info a {
    text-decoration: none;
    color: #232340;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.page-section.home-contact .form-wrapper .address-info a:hover {
    color: #377DFF;
}

.page-section.what-people-say {
    background: #F5F6FA;
}

.page-section.what-people-say > .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .page-section.what-people-say > .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.page-section.what-people-say .section-top {
    text-align: center;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .page-section.what-people-say .section-top {
        text-align: left;
        margin-bottom: 50px;
    }
}

.page-section.what-people-say .links-wrapper {
    text-align: center;
}

.page-section.what-people-say .see-all {
    display: inline-block;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2em;
    text-decoration: none;
    color: #377DFF;
    background: url(/images/icon-arrow-right.svg?6064596f7e569bb4681025c20a0fa45f) right center no-repeat;
    padding-right: 32px;
    background-size: 20px auto;
}

.page-section.what-people-say .testimonials-carousel {
    margin-bottom: 98px;
    margin-left: -30px;
    margin-right: -30px;
}

@media (max-width: 1024px) {
    .page-section.what-people-say .testimonials-carousel {
        flex-wrap: nowrap;
        flex: 1 1 100%;
        margin-right: -30px;
        overflow-x: auto;
        padding-bottom: 30px;
        display: flex;
        margin-left: 0;
    }

    .page-section.what-people-say .testimonials-carousel::after {
        width: 20px;
        height: 20px;
        content: "";
        flex: 0 0 20px;
    }
}

@media (max-width: 768px) {
    .page-section.what-people-say .testimonials-carousel {
        margin-bottom: 40px;
    }
}

.page-section.what-people-say .testimonials-carousel .slide {
    padding-left: 13px;
    padding-right: 13px;
    opacity: 0.4;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: 0;
    border: 0;
}

@media (max-width: 1024px) {
    .page-section.what-people-say .testimonials-carousel .slide {
        flex: 0 0 90%;
        padding-left: 0;
        padding-right: 10px;
        opacity: 1;
    }
}

.page-section.what-people-say .testimonials-carousel .slide.slick-current {
    opacity: 1;
}

.page-section.what-people-say .testimonials-carousel .slide .slide-content {
    background: white;
    border-radius: 20px;
    padding: 48px 36px 76px 52px;
}

@media (max-width: 481px) {
    .page-section.what-people-say .testimonials-carousel .slide .slide-content {
        padding: 23px 22px 28px;
        border-radius: 9.7px;
    }
}

.page-section.what-people-say .testimonials-carousel .slide .slide-content .quote {
    margin-bottom: 45px;
}

.page-section.what-people-say .testimonials-carousel .slide .slide-content .quote p {
    font-family: "Poppins";
    font-weight: 400;
    font-size: 21px;
    line-height: 1.73em;
    letter-spacing: -0.08px;
}

@media (max-width: 481px) {
    .page-section.what-people-say .testimonials-carousel .slide .slide-content .quote p {
        font-size: 15px;
        line-height: 1.47em;
        letter-spacing: -0.04px;
    }
}

.page-section.what-people-say .testimonials-carousel .slide .slide-content .person-info {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
}

.page-section.what-people-say .testimonials-carousel .slide .slide-content .person-info .name {
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35em;
    text-align: left;
    margin-bottom: 0;
}

@media (max-width: 481px) {
    .page-section.what-people-say .testimonials-carousel .slide .slide-content .person-info .name {
        font-size: 14px;
    }
}

.page-section.what-people-say .testimonials-carousel .slide .slide-content .person-info .company {
    font-family: "Poppins";
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
}

@media (max-width: 481px) {
    .page-section.what-people-say .testimonials-carousel .slide .slide-content .person-info .company {
        font-size: 12px;
    }
}

.page-section.what-people-say .testimonials-carousel .slide .slide-content .avatar {
    flex: 0 0 53px;
    height: 53px;
    margin-right: 14px;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
}

@media (max-width: 481px) {
    .page-section.what-people-say .testimonials-carousel .slide .slide-content .avatar {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        margin-right: 9px;
        aspect-ratio: 1;
    }
}

.page-section.what-people-say .testimonials-carousel .slide .slide-content .avatar img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

.page-section.contact-top-section {
    background-color: #F5F6FA;
    background-image: url(/images/symbol-red-circle.svg?38aebf1896719d1674a4a1c9919cd199), url(/images/symbol-yellow-stripes.svg?a57bca792d8ed5ed25d8c6a4832b0b67);
    background-position: left -67px top 344px, right -85px bottom 0;
    background-repeat: no-repeat;
    background-size: 137.5px auto;
}

@media (max-width: 1024px) {
    .page-section.contact-top-section {
        background-position: left -90px top 150px, right -85px bottom 0;
    }
}

.page-section.contact-top-section > .container {
    padding-top: 240px;
    padding-bottom: 140px;
}

.page-section.contact-top-section .section-title {
    font-family: "Inter";
    font-weight: 700;
    color: #232340;
    font-size: 60px;
    line-height: 1.22em;
    text-align: center;
    margin-bottom: 35px;
}

@media (max-width: 768px) {
    .page-section.contact-top-section .section-title br {
        display: none;
    }
}

@media (max-width: 481px) {
    .page-section.contact-top-section .section-title {
        font-size: 40px;
        line-height: 1.08em;
        margin-bottom: 30px;
    }
}

.page-section.contact-top-section .intro-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.75em;
    margin-bottom: 56px;
    text-align: center;
    color: #858A8F;
}

@media (max-width: 1024px) {
    .page-section.contact-top-section .intro-text {
        font-size: 18px;
    }

    .page-section.contact-top-section .intro-text br {
        display: none;
    }
}

.page-section.contact-top-section .columns {
    margin-left: -30px;
    margin-right: -30px;
    align-items: stretch;
}

@media (max-width: 1255px) {
    .page-section.contact-top-section .columns {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-section.contact-top-section .columns {
        flex-direction: column;
        justify-content: flex-start;
    }
}

.page-section.contact-top-section .columns .contact-column {
    background: white;
    flex: 0 1 calc(33.33% - 21.33px);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 768px) {
    .page-section.contact-top-section .columns .contact-column {
        margin-bottom: 30px;
        flex: 1 1 100%;
    }

    .page-section.contact-top-section .columns .contact-column:last-child {
        margin-bottom: 0;
    }
}

.page-section.contact-top-section .columns .contact-column:hover {
    box-shadow: 0px 63px 50px rgba(67, 67, 68, 0.0705882);
    z-index: 5;
}

.page-section.contact-top-section .columns .contact-column .icon {
    width: 80px;
    margin-bottom: 30px;
}

.page-section.contact-top-section .columns .contact-column h2 {
    font-family: "Inter";
    font-weight: bold;
    font-size: 28px;
    line-height: 1.21em;
    color: #232340;
    margin-bottom: 22px;
}

.page-section.contact-top-section .columns .contact-column p {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.67em;
    margin-bottom: 16px;
    color: #858A8F;
}

.page-section.contact-top-section .columns .contact-column a {
    color: #377DFF;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 600;
}

.page-section.contact-top-section .columns .contact-column a:hover {
    text-decoration: underline;
}

.page-section.why-working-with-us {
    background: url(/images/bg-whywork-illustration.svg?b8c181d684cc946f8803682f3694c9a0);
    background-repeat: no-repeat;
    background-size: 700px auto;
    background-position: left calc((100vw - 1230px) / 2 - 58px) top 202px;
}

@media (max-width: 1024px) {
    .page-section.why-working-with-us {
        background-size: 500px auto;
        background-position: left -30px top 150px;
    }
}

@media (max-width: 768px) {
    .page-section.why-working-with-us {
        background-size: 110% auto;
        background-position: center top 150px;
    }
}

.page-section.why-working-with-us > .container {
    padding-top: 113px;
    padding-bottom: 113px;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1255px) {
    .page-section.why-working-with-us > .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.why-working-with-us > .container {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 481px) {
    .page-section.why-working-with-us > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.page-section.why-working-with-us .section-title {
    font-family: "Inter";
    font-weight: 700;
    color: #232340;
    font-size: 60px;
    line-height: 1.22em;
    letter-spacing: 0;
    margin-bottom: 35px;
}

@media (max-width: 768px) {
    .page-section.why-working-with-us .section-title br {
        display: none;
    }
}

@media (max-width: 481px) {
    .page-section.why-working-with-us .section-title {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1.08em;
        margin-bottom: 30px;
    }
}

.page-section.why-working-with-us .intro-text {
    margin-bottom: 42px;
}

.page-section.why-working-with-us .intro-text p {
    font-family: "Inter";
    font-weight: 500;
    font-size: 20px;
    line-height: 1.75em;
    color: #858A8F;
    margin-bottom: 28px;
}

@media (max-width: 481px) {
    .page-section.why-working-with-us .intro-text p {
        font-size: 18px;
        line-height: 1.78em;
    }
}

.page-section.why-working-with-us .columns {
    justify-content: space-between;
}

@media (max-width: 768px) {
    .page-section.why-working-with-us .columns {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
}

.page-section.why-working-with-us .column-text {
    flex: 1 0 560px;
    margin-left: 108px;
}

@media (max-width: 1255px) {
    .page-section.why-working-with-us .column-text {
        flex: 0 1 50%;
    }
}

@media (max-width: 1024px) {
    .page-section.why-working-with-us .column-text {
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    .page-section.why-working-with-us .column-text {
        margin-left: 0;
        padding-top: 45px;
    }
}

@media (max-width: 481px) {
    .page-section.why-working-with-us .column-text {
        flex: 1 1 auto;
    }
}

.page-section.why-working-with-us .illustration {
    flex: 0 0 600px;
    position: relative;
}

@media (max-width: 1255px) {
    .page-section.why-working-with-us .illustration {
        flex: 0 1 50%;
    }
}

@media (max-width: 1024px) {
    .page-section.why-working-with-us .illustration {
        flex: 0 1 50%;
    }
}

@media (max-width: 768px) {
    .page-section.why-working-with-us .illustration img {
        margin: 0 auto;
        margin-bottom: 25px;
        flex: 1 1 auto;
    }
}

.page-section.why-working-with-us .reasons-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
}

.page-section.why-working-with-us .reasons-wrapper .reason-block {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-bottom: 40px;
}

@media (max-width: 375px) {
    .page-section.why-working-with-us .reasons-wrapper .reason-block {
        flex-direction: column;
        align-items: stretch;
    }
}

.page-section.why-working-with-us .reasons-wrapper .reason-block:last-child {
    margin-bottom: 0;
}

.page-section.why-working-with-us .reasons-wrapper .reason-block .icon {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    margin-right: 32px;
}

@media (max-width: 375px) {
    .page-section.why-working-with-us .reasons-wrapper .reason-block .icon {
        margin-right: 0;
        margin-bottom: 25px;
    }
}

.page-section.why-working-with-us .reasons-wrapper .reason-block .reason-name {
    font-family: "Inter";
    font-weight: 600;
    font-size: 24px;
    line-height: 1.21em;
    margin-bottom: 23px;
}

.page-section.why-working-with-us .reasons-wrapper .reason-block .description {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.67em;
    color: #858A8F;
}

.page-section.about-text-block > .container {
    padding-top: 140px;
    padding-bottom: 140px;
}

@media (max-width: 768px) {
    .page-section.about-text-block > .container {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .page-section.about-text-block > .container:first-child {
        padding-top: 100px;
    }
}

.page-section.about-text-block:nth-child(odd) {
    background: #F5F6FA;
}

.page-section.about-text-block:nth-child(even) {
    background: white;
}

.page-section.our-team-members > .container {
    padding-top: 108px;
    padding-bottom: 140px;
}

@media (max-width: 1024px) {
    .page-section.our-team-members > .container {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .page-section.our-team-members > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.page-section.our-team-members .section-title {
    font-family: "Poppins";
    font-weight: 700;
    color: #232340;
    font-size: 60px;
    line-height: 1.22em;
    letter-spacing: 0;
    margin-bottom: 36px;
    text-align: center;
}

@media (max-width: 1024px) {
    .page-section.our-team-members .section-title {
        font-size: 64px;
    }
}

@media (max-width: 481px) {
    .page-section.our-team-members .section-title {
        font-size: 50px;
        margin-bottom: 30px;
    }
}

.page-section.our-team-members .intro-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.75em;
    margin-bottom: 98px;
    text-align: center;
    color: #858A8F;
}

@media (max-width: 1024px) {
    .page-section.our-team-members .intro-text {
        font-size: 18px;
    }

    .page-section.our-team-members .intro-text br {
        display: none;
    }
}

.page-section.our-team-members .team-members-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

@media (max-width: 481px) {
    .page-section.our-team-members .team-members-wrapper {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
}

.page-section.our-team-members .team-members-wrapper .team-member-card {
    flex: 0 1 33.33%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 48px;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 768px) {
    .page-section.our-team-members .team-members-wrapper .team-member-card {
        flex: 0 1 50%;
    }
}

@media (max-width: 481px) {
    .page-section.our-team-members .team-members-wrapper .team-member-card {
        flex: 1 1 auto;
        padding-left: 0;
        padding-right: 0;
    }
}

.page-section.our-team-members .team-members-wrapper .team-member-card .avatar {
    margin-bottom: 28px;
    width: 182px;
    height: 182px;
}

.page-section.our-team-members .team-members-wrapper .team-member-card .avatar img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    -o-object-position: center top;
    object-position: center top;
    -o-object-fit: cover;
    object-fit: cover;
}

.page-section.our-team-members .team-members-wrapper .team-member-card .name {
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 600;
    font-family: "Inter";
    text-align: center;
    margin-bottom: 14px;
}

.page-section.our-team-members .team-members-wrapper .team-member-card .position {
    margin-bottom: 18px;
    text-align: center;
    font-size: 18px;
    line-height: 1.22em;
    font-weight: 500;
    color: #858A8F;
}

.page-section.our-team-members .team-members-wrapper .social-links-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.page-section.our-team-members .team-members-wrapper .social-links-wrapper a {
    display: block;
    flex: 0 0 25px;
    margin-left: 13px;
    margin-right: 13px;
}

.page-section.our-team-members .team-members-wrapper .social-links-wrapper a:first-child {
    margin-left: 0;
}

.page-section.our-team-members .team-members-wrapper .social-links-wrapper a:last-child {
    margin-right: 0;
}

.page-section.our-team-members .buttons-wrapper {
    justify-content: center;
}

.page-section.our-team-members .buttons-wrapper .button {
    min-width: 604px;
}

@media (max-width: 768px) {
    .page-section.our-team-members .buttons-wrapper .button {
        min-width: 0;
        max-width: 100%;
        width: 604px;
    }
}

.page-section.single-case-study-top-section {
    background-color: white;
}

.page-section.single-case-study-top-section > .container {
    padding-top: calc(100px + 128px);
    padding-left: 0;
    padding-bottom: 50px;
    padding-right: 0;
}

@media (max-width: 1255px) {
    .page-section.single-case-study-top-section > .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.single-case-study-top-section > .container {
        padding-top: calc(80px + 110px);
    }
}

@media (max-width: 481px) {
    .page-section.single-case-study-top-section > .container {
        padding-top: calc(38px + 110px);
    }
}

.page-section.single-case-study-top-section .case-study-categories {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 36px;
}

@media (max-width: 768px) {
    .page-section.single-case-study-top-section .case-study-categories {
        flex-wrap: wrap;
    }
}

.page-section.single-case-study-top-section .case-study-categories .case-study-category {
    margin-left: 15px;
    margin-right: 15px;
    background: #E5F1FF;
    color: #377DFF;
    flex: 0 1 auto;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 18px;
    line-height: 1.22em;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
}

@media (max-width: 768px) {
    .page-section.single-case-study-top-section .case-study-categories .case-study-category {
        margin-left: 7px;
        margin-right: 7px;
        margin-bottom: 15px;
        height: 60px;
        border-radius: 15px;
    }
}

@media (max-width: 481px) {
    .page-section.single-case-study-top-section .case-study-categories .case-study-category {
        flex: 0 1 120px;
        margin-left: 4px;
        margin-right: 4px;
        margin-bottom: 8px;
        font-size: 14px;
        height: 40px;
    }
}

.page-section.single-case-study-top-section .section-title {
    text-align: center;
    font-weight: 700;
    font-family: "Poppins";
    font-size: 60px;
    line-height: 1.22em;
    margin-bottom: 35px;
}

@media (max-width: 481px) {
    .page-section.single-case-study-top-section .section-title {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1.08em;
        margin-bottom: 30px;
    }
}

.page-section.single-case-study-top-section .intro-text {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 48px;
}

.page-section.single-case-study-top-section .intro-text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.75em;
    color: #858A8F;
}

@media (max-width: 481px) {
    .page-section.single-case-study-top-section .intro-text p {
        font-size: 18px;
        line-height: 1.78em;
    }
}

.page-section.single-case-study-top-section .case-study-main-thumb img {
    margin: 0 auto;
}

.page-section.single-case-study-top-section .buttons-wrapper {
    justify-content: center;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .page-section.single-case-study-top-section .buttons-wrapper {
        align-items: center;
    }
}

.page-section.case-study-info-section > .container {
    padding-top: 50px;
    padding-bottom: 124px;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1255px) {
    .page-section.case-study-info-section > .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.case-study-info-section > .container {
        padding-top: 0;
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .page-section.case-study-info-section .columns {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
}

.page-section.case-study-info-section .case-study-images-column {
    flex: 0 0 605px;
    padding-top: 8px;
}

@media (max-width: 1255px) {
    .page-section.case-study-info-section .case-study-images-column {
        flex: 0 0 50%;
    }
}

@media (max-width: 1024px) {
    .page-section.case-study-info-section .case-study-images-column {
        flex: 1 1 50%;
    }
}

@media (max-width: 768px) {
    .page-section.case-study-info-section .case-study-images-column {
        flex: 1 1 100%;
    }
}

.page-section.case-study-info-section .case-study-images-column img {
    margin-bottom: 52px;
    border-radius: 10px;
}

.page-section.case-study-info-section .case-study-images-column img:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-section.case-study-info-section .case-study-images-column img {
        margin: 0 auto 52px;
    }

    .page-section.case-study-info-section .case-study-images-column img:last-child {
        margin-bottom: 0;
    }
}

.page-section.case-study-info-section .case-study-info-column {
    flex: 1 1 auto;
    margin-left: 106px;
}

@media (max-width: 1024px) {
    .page-section.case-study-info-section .case-study-info-column {
        flex: 1 1 50%;
        margin-left: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.case-study-info-section .case-study-info-column {
        flex: 1 1 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-section.case-study-info-section .case-study-info-column {
        padding-top: 50px;
    }
}

.page-section.case-study-info-section .case-study-continued .case-study-info-column {
    padding-top: 46px;
    margin-left: 0;
}

.page-section.case-study-info-section .case-study-info-column .case-study-description {
    padding-bottom: 46px;
    border-bottom: 2px solid #F5F6FA;
}

.page-section.case-study-info-section .case-study-info-column .case-study-description h1,
.page-section.case-study-info-section .case-study-info-column .case-study-description h2,
.page-section.case-study-info-section .case-study-info-column .case-study-description h3,
.page-section.case-study-info-section .case-study-info-column .case-study-description h4,
.page-section.case-study-info-section .case-study-info-column .case-study-description h5,
.page-section.case-study-info-section .case-study-info-column .case-study-description h6 {
    font-size: 40px;
    line-height: 1.2em;
    font-family: "Poppins";
    font-weight: 600;
    margin-bottom: 26px;
    color: #232340;
}

.page-section.case-study-info-section .case-study-info-column .case-study-description p {
    font-size: 20px;
    line-height: 1.75em;
    color: #858A8F;
    font-weight: 500;
    margin-bottom: 1em;
}

.page-section.case-study-info-section .case-study-info-column .case-study-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 481px) {
    .page-section.case-study-info-section .case-study-info-column .case-study-description p {
        font-size: 18px;
        line-height: 1.78em;
    }
}

.page-section.case-study-info-section .case-study-info-column .case-study-meta-info {
    border-bottom: 2px solid #F5F6FA;
    padding-bottom: 50px;
    padding-top: 46px;
}

.page-section.case-study-info-section .case-study-info-column .case-study-meta-info ul li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    font-size: 20px;
    line-height: 1.2em;
    color: #858A8F;
    margin-bottom: 28px;
}

@media (max-width: 481px) {
    .page-section.case-study-info-section .case-study-info-column .case-study-meta-info ul li {
        font-size: 18px;
    }
}

.page-section.case-study-info-section .case-study-info-column .case-study-meta-info ul li:last-child {
    margin-bottom: 0;
}

.page-section.case-study-info-section .case-study-info-column .case-study-meta-info ul li .label {
    flex: 0 0 138px;
    font-weight: 600;
    color: #232340;
}

@media (max-width: 481px) {
    .page-section.case-study-info-section .case-study-info-column .case-study-meta-info ul li .label {
        flex: 0 0 110px;
    }
}

.page-section.case-study-info-section .case-study-info-column .case-study-meta-info ul li a {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #858A8F;
    text-decoration: none;
}

.page-section.case-study-info-section .case-study-info-column .case-study-meta-info ul li a:hover {
    color: #377DFF;
}

.page-section.case-study-info-section .case-study-info-column .case-study-share {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    font-size: 20px;
    line-height: 1.2em;
    color: #858A8F;
    padding-top: 45px;
    padding-bottom: 45px;
}

@media (max-width: 481px) {
    .page-section.case-study-info-section .case-study-info-column .case-study-share {
        font-size: 18px;
    }
}

.page-section.case-study-info-section .case-study-info-column .case-study-share .label {
    flex: 0 0 138px;
    font-weight: 600;
    color: #232340;
}

@media (max-width: 481px) {
    .page-section.case-study-info-section .case-study-info-column .case-study-share .label {
        flex: 0 0 110px;
    }
}

.page-section.case-study-info-section .case-study-info-column .case-study-share .social-media-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 auto;
}

@media (max-width: 1024px) {
    .page-section.case-study-info-section .case-study-info-column .case-study-share .social-media-wrapper {
        flex-wrap: wrap;
    }
}

@media (max-width: 481px) {
    .page-section.case-study-info-section .case-study-info-column .case-study-share .social-media-wrapper {
        padding-top: 10px;
    }
}

.page-section.case-study-info-section .case-study-info-column .case-study-share .social-media-wrapper a {
    flex: 0 0 30px;
    height: 30px;
    margin-right: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .page-section.case-study-info-section .case-study-info-column .case-study-share .social-media-wrapper a {
        margin-right: 15px;
        margin-bottom: 15px;
    }
}

.page-section.case-study-info-section .case-study-info-column .case-study-share .social-media-wrapper a:last-child {
    margin-right: 0;
}

.page-section.case-study-info-section .case-study-info-column .case-study-share .social-media-wrapper a img {
    width: 29px;
    height: auto;
}

.page-section.case-study-info-section .case-study-info-column .case-study-share .social-media-wrapper a.facebook img {
    width: 14px;
}

.page-section.additional-case-studies {
    background-color: #F5F6FA;
    background-image: url(/images/symbol-yellowsquare-blueslice-right.svg?f1f739df9dec9cf3ab54c65ede60baf5), url(/images/symbol-green-circle.svg?66f8c013bcab2beefd4c3fb69b38c128);
    background-repeat: no-repeat;
    background-position: left -53px top 277px, right 15% bottom -66px;
    background-size: 96px auto, 180px auto;
}

@media (max-width: 1024px) {
    .page-section.additional-case-studies {
        background-position: left -53px top 277px, right -50px bottom -66px;
    }
}

@media (max-width: 481px) {
    .page-section.additional-case-studies {
        background-position: left -53px top 50px, right -50px bottom -66px;
        background-size: 70px auto, 120px auto;
    }
}

.page-section.additional-case-studies > .container {
    padding-left: 0;
    padding-right: 0;
    padding-top: 114px;
    padding-bottom: 110px;
}

@media (max-width: 1255px) {
    .page-section.additional-case-studies > .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.additional-case-studies > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.page-section.additional-case-studies .columns {
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-section.additional-case-studies .columns {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
    }
}

.page-section.additional-case-studies .columns .column {
    flex: 0 1 calc(50% - 20px);
}

@media (max-width: 768px) {
    .page-section.additional-case-studies .columns .column {
        flex: 1 1 100%;
    }
}

.page-section.additional-case-studies .case-study-box {
    margin-bottom: 35px;
}

.page-section.additional-case-studies .case-study-box .thumbnail-wrapper {
    display: block;
    margin-bottom: 24px;
}

.page-section.additional-case-studies .case-study-box .thumbnail-wrapper img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 350px;
}

@media (max-width: 768px) {
    .page-section.additional-case-studies .case-study-box .thumbnail-wrapper img {
        height: auto;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-section.additional-case-studies .case-study-box .case-study-text {
        text-align: center;
        padding-left: 0;
    }
}

.page-section.additional-case-studies .case-study-box .case-study-text .case-study-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.21em;
    font-family: "Poppins";
    margin-bottom: 11px;
}

@media (max-width: 481px) {
    .page-section.additional-case-studies .case-study-box .case-study-text .case-study-title {
        font-size: 20px;
    }
}

.page-section.additional-case-studies .case-study-box .case-study-text .case-study-title a {
    text-decoration: none;
    color: #232340;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.page-section.additional-case-studies .case-study-box .case-study-text .case-study-title a:hover {
    color: #377DFF;
}

.page-section.additional-case-studies .case-study-box .case-study-text .case-study-category p {
    font-family: "Inter";
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2em;
    color: #858A8F;
}

@media (max-width: 481px) {
    .page-section.additional-case-studies .case-study-box .case-study-text .case-study-category p {
        font-size: 16px;
    }
}

.page-section.case-studies-top-section {
    background-color: #F5F6FA;
    background-image: url(/images/symbol-red-circle.svg?38aebf1896719d1674a4a1c9919cd199), url(/images/symbol-green-circle.svg?66f8c013bcab2beefd4c3fb69b38c128);
    background-size: 137px auto, 180px auto;
    background-repeat: no-repeat;
    background-position: right -102px top 162px, left -110px top 330px;
}

@media (max-width: 768px) {
    .page-section.case-studies-top-section {
        background-position: right -102px top 60px, left -110px bottom -70px;
    }
}

.page-section.case-studies-top-section > .container {
    padding-top: calc(100px + 128px);
    padding-left: 0;
    padding-bottom: 50px;
    padding-right: 0;
}

@media (max-width: 1024px) {
    .page-section.case-studies-top-section > .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.case-studies-top-section > .container {
        padding-top: calc(80px + 110px);
    }
}

@media (max-width: 481px) {
    .page-section.case-studies-top-section > .container {
        padding-top: calc(38px + 110px);
    }
}

.page-section.case-studies-top-section .section-title {
    text-align: center;
    font-weight: 700;
    font-family: "Poppins";
    font-size: 60px;
    line-height: 1.22em;
    margin-bottom: 35px;
}

@media (max-width: 481px) {
    .page-section.case-studies-top-section .section-title {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1.08em;
        margin-bottom: 30px;
    }
}

.page-section.case-studies-top-section .intro-text {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 48px;
}

.page-section.case-studies-top-section .intro-text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.75em;
    color: #858A8F;
}

@media (max-width: 481px) {
    .page-section.case-studies-top-section .intro-text p {
        font-size: 18px;
        line-height: 1.78em;
    }
}

.page-section.case-studies-top-section .buttons-wrapper {
    justify-content: center;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .page-section.case-studies-top-section .buttons-wrapper {
        align-items: center;
    }
}

.page-section.case-studies-list > .container {
    padding-top: 110px;
    padding-bottom: 125px;
}

@media (max-width: 768px) {
    .page-section.case-studies-list > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.page-section.case-studies-list .tabs-wrapper {
    margin-bottom: 100px;
}

@media (max-width: 768px) {
    .page-section.case-studies-list .tabs-wrapper {
        margin-bottom: 40px;
    }
}

.page-section.case-studies-list .tabs-wrapper ul {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
}

@media (max-width: 768px) {
    .page-section.case-studies-list .tabs-wrapper ul {
        flex-wrap: wrap;
    }
}

.page-section.case-studies-list .tabs-wrapper ul li {
    margin-left: 15px;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .page-section.case-studies-list .tabs-wrapper ul li {
        flex: 0 1 150px;
        margin-left: 7px;
        margin-right: 7px;
        margin-bottom: 15px;
    }
}

@media (max-width: 481px) {
    .page-section.case-studies-list .tabs-wrapper ul li {
        flex: 0 1 120px;
        margin-left: 4px;
        margin-right: 4px;
        margin-bottom: 8px;
    }
}

.page-section.case-studies-list .tabs-wrapper ul li a {
    color: #858A8F;
    display: block;
    background: transparent;
    text-decoration: none;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 18px;
    line-height: 1.22em;
    display: block;
    height: 40px;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
}

@media (max-width: 768px) {
    .page-section.case-studies-list .tabs-wrapper ul li a {
        height: 60px;
        border-radius: 15px;
    }
}

@media (max-width: 481px) {
    .page-section.case-studies-list .tabs-wrapper ul li a {
        font-size: 14px;
        height: 40px;
    }
}

.page-section.case-studies-list .tabs-wrapper ul li a:hover {
    color: #377DFF;
}

.page-section.case-studies-list .tabs-wrapper ul li.active a {
    background: #E5F1FF;
    color: #377DFF;
}

.page-section.case-studies-list .tab-content-wrapper .tab-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 0;
}

.page-section.case-studies-list .tab-content-wrapper .tab-content.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.page-section.case-studies-list .columns {
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-section.case-studies-list .columns {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
    }
}

.page-section.case-studies-list .columns .column {
    flex: 0 1 calc(50% - 20px);
}

@media (max-width: 768px) {
    .page-section.case-studies-list .columns .column {
        flex: 1 1 100%;
    }
}

.page-section.case-studies-list .case-study-box {
    margin-bottom: 35px;
}

.page-section.case-studies-list .case-study-box .thumbnail-wrapper {
    display: block;
    margin-bottom: 24px;
}

.page-section.case-studies-list .case-study-box .thumbnail-wrapper img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 350px;
}

@media (max-width: 768px) {
    .page-section.case-studies-list .case-study-box .thumbnail-wrapper img {
        height: auto;
        margin: 0 auto;
    }
}

.page-section.case-studies-list .case-study-box .case-study-text {
    padding-left: 28px;
}

@media (max-width: 768px) {
    .page-section.case-studies-list .case-study-box .case-study-text {
        text-align: center;
        padding-left: 0;
    }
}

.page-section.case-studies-list .case-study-box .case-study-text .case-study-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.21em;
    font-family: "Poppins";
    margin-bottom: 11px;
}

@media (max-width: 481px) {
    .page-section.case-studies-list .case-study-box .case-study-text .case-study-title {
        font-size: 20px;
    }
}

.page-section.case-studies-list .case-study-box .case-study-text .case-study-title a {
    text-decoration: none;
    color: #232340;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.page-section.case-studies-list .case-study-box .case-study-text .case-study-title a:hover {
    color: #377DFF;
}

.page-section.case-studies-list .case-study-box .case-study-text .case-study-category p {
    font-family: "Inter";
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2em;
    color: #858A8F;
}

@media (max-width: 481px) {
    .page-section.case-studies-list .case-study-box .case-study-text .case-study-category p {
        font-size: 16px;
    }
}

.page-section.ready-to-work-text {
    background-color: #F5F6FA;
    background-image: url(/images/symbol-blue-circle-slice.svg?20cc5ea6fa254c195f6d7990aa875040), url(/images/symbol-green-circle.svg?66f8c013bcab2beefd4c3fb69b38c128);
    background-size: 90px auto, 184px auto;
    background-repeat: no-repeat;
    background-position: calc(50% + 245px) top, left calc(50% - 214px) bottom -125px;
}

@media (max-width: 768px) {
    .page-section.ready-to-work-text {
        background-position: right -45px top, left -90px bottom -125px;
    }
}

.page-section.ready-to-work-text > .container {
    padding-top: 112px;
    padding-bottom: 125px;
}

@media (max-width: 768px) {
    .page-section.ready-to-work-text > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.page-section.ready-to-work-text .section-title {
    margin-bottom: 38px;
    font-family: "Poppins";
    font-weight: 700;
    color: #232340;
    font-size: 48px;
    line-height: 1.21em;
    text-align: center;
}

@media (max-width: 375px) {
    .page-section.ready-to-work-text .section-title {
        font-size: 40px;
    }
}

.page-section.ready-to-work-text .intro-text {
    margin-bottom: 48px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.75em;
    text-align: center;
    color: #858A8F;
}

@media (max-width: 1024px) {
    .page-section.ready-to-work-text .intro-text {
        font-size: 18px;
    }

    .page-section.ready-to-work-text .intro-text br {
        display: none;
    }
}

.page-section.ready-to-work-text .buttons-wrapper {
    justify-content: center;
}

@media (max-width: 768px) {
    .page-section.ready-to-work-text .buttons-wrapper {
        align-items: center;
    }
}

.page-section.ready-to-work-text .buttons-wrapper .button {
    min-width: 244px;
}

.page-section.article-top-section {
    height: 800px;
    background-color: black;
    position: relative;
    background-position: center top;
    background-size: cover;
    z-index: 1;
}

@media (max-width: 768px) {
    .page-section.article-top-section {
        height: 700px;
    }
}

.page-section.article-top-section .overlay {
    height: 100%;
    background: linear-gradient(0deg, #000000 -15%, rgba(0, 0, 0, 0.0001) 115%);
}

.page-section.article-top-section .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 108px;
    padding-left: 130px;
}

@media (max-width: 1024px) {
    .page-section.article-top-section .container {
        padding-left: 30px;
    }
}

.page-section.article-top-section .article-categories {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 38px;
    background: rgba(255, 255, 255, 0.2);
    padding-left: 33px;
    padding-right: 33px;
    border-radius: 54px;
    font-size: 18px;
    line-height: 1.22em;
    font-weight: 600;
    height: 54px;
}

@media (max-width: 768px) {
    .page-section.article-top-section .article-categories {
        margin-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
        height: 48px;
    }
}

.page-section.article-top-section .article-categories .article-category {
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.page-section.article-top-section .article-categories .article-category.parent-category::after {
    content: "";
    width: 9px;
    height: 12px;
    transform: translateY(1px);
    background: url(/images/icon-category-triangle.svg?0aa268adc36ed23c1c03483cef40c89f) center center no-repeat;
    background-size: 100% auto;
    margin-left: 15px;
}

.page-section.article-top-section .article-categories .article-category.child-category {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .page-section.article-top-section .article-categories .article-category {
        font-size: 14px;
    }
}

.page-section.article-top-section .article-categories .article-category:last-child {
    margin-right: 0;
}

.page-section.article-top-section .article-title {
    font-family: "Poppins";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.21em;
    text-align: left;
    margin-bottom: 52px;
}

@media (max-width: 768px) {
    .page-section.article-top-section .article-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

.page-section.article-top-section .article-title a {
    color: white;
    text-decoration: none;
}

.page-section.article-top-section .article-meta {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.page-section.article-top-section .article-meta .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 25px;
}

@media (max-width: 768px) {
    .page-section.article-top-section .article-meta .avatar {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
}

.page-section.article-top-section .article-meta .avatar img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    width: 100%;
    height: 100%;
}

.page-section.article-top-section .article-meta .text {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    height: 100%;
}

.page-section.article-top-section .article-meta .text .name {
    font-size: 20px;
    line-height: 1.2em;
    color: white;
    font-weight: 600;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .page-section.article-top-section .article-meta .text .name {
        font-size: 18px;
    }
}

.page-section.article-top-section .article-meta .text .date {
    font-size: 18px;
    line-height: 1.22;
    color: #858A8F;
}

@media (max-width: 768px) {
    .page-section.article-top-section .article-meta .text .date {
        font-size: 16px;
    }
}

.page-section.article-content > .container {
    padding-top: 112px;
    padding-bottom: 125px;
}

@media (max-width: 481px) {
    .page-section.article-content > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.page-section.article-content .article-content-text,
.page-section.article-content .article-comments {
    max-width: 830px;
    margin: 0 auto;
}

.page-section.article-content .article-share-box {
    border: 2px solid #F5F6FA;
    border-radius: 10px;
    padding: 45px 73px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 75px;
}

@media (max-width: 768px) {
    .page-section.article-content .article-share-box {
        padding: 30px;
    }
}

@media (max-width: 481px) {
    .page-section.article-content .article-share-box {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 45px;
    }
}

.page-section.article-content .article-share-box .label {
    color: #333333;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2em;
    flex: 0 1 auto;
}

@media (max-width: 481px) {
    .page-section.article-content .article-share-box .label {
        text-align: center;
        flex: 1 1 auto;
        margin-bottom: 30px;
    }
}

.page-section.article-content .social-media-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    padding-left: 15px;
}

@media (max-width: 1024px) {
    .page-section.article-content .social-media-wrapper {
        flex-wrap: wrap;
    }
}

@media (max-width: 481px) {
    .page-section.article-content .social-media-wrapper {
        padding-top: 10px;
        justify-content: center;
        padding-left: 0;
    }
}

.page-section.article-content .social-media-wrapper a {
    flex: 0 0 30px;
    height: 30px;
    margin-right: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .page-section.article-content .social-media-wrapper a {
        margin-right: 15px;
        margin-bottom: 15px;
    }
}

.page-section.article-content .social-media-wrapper a:last-child {
    margin-right: 0;
}

.page-section.article-content .social-media-wrapper a img {
    width: 29px;
    height: auto;
}

.page-section.article-content .social-media-wrapper a.facebook img {
    width: 14px;
}

.page-section.related-articles {
    background-color: #F5F6FA;
    background-repeat: no-repeat;
    background-image: url(/images/symbol-yellowsquare-blueslice-left.svg?5fa7867c342b79a9b290776fccee3e75), url(/images/symbol-green-circle.svg?66f8c013bcab2beefd4c3fb69b38c128);
    background-position: right -23px top 377px, left 66% bottom 16px;
    background-size: 93px auto, 180px auto;
}

.page-section.related-articles > .container {
    padding-top: 108px;
    padding-bottom: 126px;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1255px) {
    .page-section.related-articles > .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.related-articles > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.page-section.related-articles .section-title {
    text-align: center;
    font-weight: 700;
    line-height: 1.22em;
    font-family: "Poppins";
    margin-bottom: 62px;
}

@media (max-width: 481px) {
    .page-section.related-articles .section-title {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1.08em;
        margin-bottom: 50px;
    }
}

.page-section.related-articles .related-articles-wrapper {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    display: flex;
}

@media (max-width: 1024px) {
    .page-section.related-articles .related-articles-wrapper {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .page-section.related-articles .related-articles-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
}

.page-section.related-articles article {
    background: white;
    flex: 0 1 calc(33.33% - 21.33px);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 1024px) {
    .page-section.related-articles article {
        flex: 0 1 calc(50% - 15px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-section.related-articles article {
        flex: 1 1 auto;
    }
}

.page-section.related-articles article:hover {
    box-shadow: 0px 63px 50px rgba(67, 67, 68, 0.0705882);
    z-index: 5;
}

.page-section.related-articles article .thumbnail {
    margin-bottom: 40px;
    height: 298px;
}

.page-section.related-articles article .thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
}

.page-section.related-articles article .icon {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    margin-bottom: 28px;
}

.page-section.related-articles article .icon img {
    width: 100%;
}

@media (max-width: 481px) {
    .page-section.related-articles article .icon {
        margin-bottom: 50px;
    }
}

@media (max-width: 375px) {
    .page-section.related-articles article .icon {
        margin-bottom: 35px;
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }
}

.page-section.related-articles article .article-card-content {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 45px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.page-section.related-articles article .article-title {
    font-size: 32px;
    line-height: 1.22em;
    font-weight: 700;
    margin-bottom: 30px;
}

@media (max-width: 1255px) {
    .page-section.related-articles article .article-title {
        font-size: 28px;
    }
}

@media (max-width: 481px) {
    .page-section.related-articles article .article-title {
        font-size: 26px;
    }
}

.page-section.related-articles article .article-title a {
    color: #232340;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.page-section.related-articles article .article-title a:hover {
    color: #377DFF;
}

.page-section.related-articles article .article-link {
    text-decoration: none;
    color: #377DFF;
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 600;
    background: url(/images/icon-arrow-right.svg?6064596f7e569bb4681025c20a0fa45f) right center no-repeat;
    padding-right: 32px;
    background-size: 20px auto;
    align-self: flex-start;
}

.page-section.related-articles article .article-link:hover {
    text-decoration: underline;
}

@media (max-width: 481px) {
    .page-section.related-articles article .article-link {
        font-size: 18px;
    }
}

.page-section.related-articles article .excerpt {
    font-size: 18px;
    line-height: 1.67em;
    color: #858A8F;
    font-weight: 500;
    margin-bottom: 30px;
}

@media (max-width: 481px) {
    .page-section.related-articles article .excerpt {
        font-size: 16px;
    }
}

.page-section.related-articles article .meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 28px;
}

.page-section.related-articles article .meta .category {
    font-size: 18px;
    line-height: 1.22em;
    text-decoration: none;
    color: #377DFF;
    font-weight: 600;
    margin-right: 24px;
}

@media (max-width: 481px) {
    .page-section.related-articles article .meta .category {
        font-size: 14px;
    }
}

.page-section.related-articles article .meta .category:hover {
    text-decoration: underline;
}

.page-section.related-articles article .meta time {
    font-size: 18px;
    line-height: 1.22em;
    color: #858A8F;
    font-weight: 600;
}

@media (max-width: 481px) {
    .page-section.related-articles article .meta time {
        font-size: 14px;
    }
}

.page-section.related-articles article .meta .like-counter {
    margin-left: auto;
    background: #E5F1FF url(/images/icon-heart.svg?a95763d06802e0c25a51fd6ca1f6e7ac) 14px center no-repeat;
    background-size: 18px auto;
    padding-left: 36px;
    padding-right: 15px;
    height: 36px;
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    align-items: right;
    justify-content: center;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 600;
    color: #377DFF;
}

@media (max-width: 481px) {
    .page-section.related-articles article .meta .like-counter {
        font-size: 16px;
    }
}

.page-section.related-articles article.alternative .article-card-content {
    padding-top: 43px;
    padding-bottom: 46px;
}

.page-section.related-articles article.alternative .meta {
    margin-bottom: 134px;
}

.page-section.related-articles article.alternative .article-title {
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 700;
}

@media (max-width: 1255px) {
    .page-section.related-articles article.alternative .article-title {
        font-size: 35px;
    }
}

@media (max-width: 481px) {
    .page-section.related-articles article.alternative .article-title {
        font-size: 32px;
    }
}

.page-section.related-articles article.alternative .length {
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 600;
    color: #858A8F;
}

@media (max-width: 481px) {
    .page-section.related-articles article.alternative .length {
        font-size: 18px;
    }
}

.page-section.blog-top-section {
    height: 800px;
    background: black;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .page-section.blog-top-section {
        height: 700px;
    }
}

.page-section.blog-top-section .blog-articles-carousel {
    height: 100%;
}

.page-section.blog-top-section .article-slide {
    height: 100%;
    background-position: center top;
    background-size: cover;
}

.page-section.blog-top-section .article-slide .overlay {
    height: 100%;
    background: linear-gradient(0deg, #000000 -15%, rgba(0, 0, 0, 0.0001) 115%);
}

.page-section.blog-top-section .article-slide .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding-bottom: 108px;
    padding-left: 130px;
}

@media (max-width: 1024px) {
    .page-section.blog-top-section .article-slide .container {
        padding-left: 30px;
    }
}

.page-section.blog-top-section .article-slide .article-categories {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 38px;
}

@media (max-width: 768px) {
    .page-section.blog-top-section .article-slide .article-categories {
        margin-bottom: 30px;
    }
}

.page-section.blog-top-section .article-slide .article-categories .article-category {
    text-decoration: none;
    color: white;
    font-size: 18px;
    line-height: 1.22em;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 33px;
    padding-right: 33px;
    margin-right: 15px;
    border-radius: 54px;
}

@media (max-width: 768px) {
    .page-section.blog-top-section .article-slide .article-categories .article-category {
        font-size: 14px;
        padding-left: 20px;
        padding-right: 20px;
        height: 48px;
    }
}

.page-section.blog-top-section .article-slide .article-categories .article-category:last-child {
    margin-right: 0;
}

.page-section.blog-top-section .article-slide .article-title {
    font-family: "Poppins";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.21em;
    text-align: left;
    margin-bottom: 52px;
}

@media (max-width: 768px) {
    .page-section.blog-top-section .article-slide .article-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

.page-section.blog-top-section .article-slide .article-title a {
    color: white;
    text-decoration: none;
}

.page-section.blog-top-section .article-slide .article-meta {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.page-section.blog-top-section .article-slide .article-meta .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 25px;
}

@media (max-width: 768px) {
    .page-section.blog-top-section .article-slide .article-meta .avatar {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
}

.page-section.blog-top-section .article-slide .article-meta .avatar img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    width: 100%;
    height: 100%;
}

.page-section.blog-top-section .article-slide .article-meta .text {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    height: 100%;
}

.page-section.blog-top-section .article-slide .article-meta .text .name {
    font-size: 20px;
    line-height: 1.2em;
    color: white;
    font-weight: 600;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .page-section.blog-top-section .article-slide .article-meta .text .name {
        font-size: 18px;
    }
}

.page-section.blog-top-section .article-slide .article-meta .text .date {
    font-size: 18px;
    line-height: 1.22;
    color: #858A8F;
}

@media (max-width: 768px) {
    .page-section.blog-top-section .article-slide .article-meta .text .date {
        font-size: 16px;
    }
}

.page-section.blog-top-section .blog-articles-dots {
    width: 100%;
    height: 12px;
    position: absolute;
    left: 0;
    bottom: 70px;
}

@media (max-width: 768px) {
    .page-section.blog-top-section .blog-articles-dots {
        bottom: 30px;
    }
}

.page-section.blog-top-section .blog-articles-dots .slick-dots {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.page-section.blog-top-section .blog-articles-dots .slick-dots li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    cursor: pointer;
    margin-left: 8px;
    margin-right: 8px;
}

.page-section.blog-top-section .blog-articles-dots .slick-dots li.slick-active button {
    background: white;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.page-section.blog-top-section .blog-articles-dots .slick-dots button {
    border: 0;
    outline: 0;
    cursor: pointer;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    opacity: 0.2;
    background: white;
    border-radius: 50%;
}

.page-section.blog-articles-list > .container {
    padding-top: 115px;
    padding-bottom: 125px;
}

@media (max-width: 768px) {
    .page-section.blog-articles-list > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .page-section.blog-articles-list .columns {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
}

.page-section.blog-articles-list .columns .blog-articles-sidebar {
    flex: 0 0 390px;
    margin-left: 32px;
}

@media (max-width: 1024px) {
    .page-section.blog-articles-list .columns .blog-articles-sidebar {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .page-section.blog-articles-list .columns .blog-articles-sidebar {
        flex: 1 1 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-section.blog-articles-list .columns .article-list {
        flex: 1 1 100%;
        margin-bottom: 50px;
    }
}

.page-section.blog-articles-list .columns .article-list .pagination {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15px;
}

.page-section.blog-articles-list .columns .article-list .pagination .pagination-link {
    width: 48px;
    height: 48px;
    border: 2px solid #F5F6FA;
    margin-left: 6px;
    margin-right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    color: #858A8F;
    border-radius: 10px;
}

@media (max-width: 481px) {
    .page-section.blog-articles-list .columns .article-list .pagination .pagination-link {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

.page-section.blog-articles-list .columns .article-list .pagination .pagination-link.prev {
    background-image: url(/images/icon-chevron-left.svg?3ccbad6304b53fdd8dae3e04996c033d);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px auto;
}

.page-section.blog-articles-list .columns .article-list .pagination .pagination-link.next {
    background-image: url(/images/icon-chevron-right.svg?71be373a614f73b43331f33753bc4c48);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px auto;
}

.page-section.blog-articles-list .columns .article-list .pagination .pagination-link.current {
    background: #377DFF;
    border-color: #377DFF;
    color: white;
}

.page-section.blog-articles-list .columns .article-list .pagination .pagination-link:first-child {
    margin-left: 0;
}

.page-section.blog-articles-list .columns .article-list .pagination .pagination-link:last-child {
    margin-right: 0;
}

.page-section.blog-articles-list .columns .article-list article {
    border: 2px solid #F5F6FA;
    margin-bottom: 48px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.page-section.blog-articles-list .columns .article-list article:hover {
    box-shadow: 0px 63px 50px rgba(67, 67, 68, 0.0705882);
    z-index: 5;
}

.page-section.blog-articles-list .columns .article-list article:last-child {
    margin-bottom: 0;
}

.page-section.blog-articles-list .columns .article-list article.blog-article .card-content {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: row;
}

@media (max-width: 1024px) {
    .page-section.blog-articles-list .columns .article-list article.blog-article .card-content {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
}

.page-section.blog-articles-list .columns .article-list article.blog-article .card-content .thumbnail {
    flex: 0 0 318px;
    background: black;
    margin-right: 72px;
}

@media (max-width: 1024px) {
    .page-section.blog-articles-list .columns .article-list article.blog-article .card-content .thumbnail {
        margin-right: 0;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .page-section.blog-articles-list .columns .article-list article.blog-article .card-content .thumbnail {
        /*height: 500px;*/
    }
}

@media (max-width: 481px) {
    .page-section.blog-articles-list .columns .article-list article.blog-article .card-content .thumbnail {
        /*height: 300px;*/
    }
}

.page-section.blog-articles-list .columns .article-list article.blog-article .card-content .thumbnail img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
}

@media (max-width: 768px) {
    .page-section.blog-articles-list .columns .article-list article.blog-article .card-content .thumbnail img {
        -o-object-position: center center;
        object-position: center center;
    }
}

.page-section.blog-articles-list .columns .article-list article.blog-article .card-content .text {
    padding-top: 68px;
    padding-bottom: 68px;
    padding-right: 30px;
}

@media (max-width: 1024px) {
    .page-section.blog-articles-list .columns .article-list article.blog-article .card-content .text {
        padding: 34px 30px;
    }
}

.page-section.blog-articles-list .columns .article-list article.blog-article .card-content .categories {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.22em;
    font-weight: 600;
}

.page-section.blog-articles-list .columns .article-list article.blog-article .card-content .categories a {
    text-decoration: none;
    color: #377DFF;
}

.page-section.blog-articles-list .columns .article-list article.blog-article .card-content h2 {
    font-size: 32px;
    line-height: 1.22em;
    font-weight: 700;
    margin-bottom: 36px;
}

@media (max-width: 481px) {
    .page-section.blog-articles-list .columns .article-list article.blog-article .card-content h2 {
        margin-bottom: 20px;
    }
}

@media (max-width: 375px) {
    .page-section.blog-articles-list .columns .article-list article.blog-article .card-content h2 {
        font-size: 20px;
    }
}

.page-section.blog-articles-list .columns .article-list article.blog-article .card-content h2 a {
    color: #232340;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.page-section.blog-articles-list .columns .article-list article.blog-article .card-content h2 a:hover {
    color: #377DFF;
}

.page-section.blog-articles-list .columns .article-list article.blog-article .card-content .excerpt {
    font-size: 18px;
    line-height: 1.67em;
    color: #858A8F;
    font-weight: 500;
    margin-bottom: 30px;
}

@media (max-width: 481px) {
    .page-section.blog-articles-list .columns .article-list article.blog-article .card-content .excerpt {
        font-size: 16px;
    }
}

.page-section.blog-articles-list .columns .article-list article.blog-article .card-content .article-link {
    text-decoration: none;
    color: #377DFF;
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 600;
    background: url(/images/icon-arrow-right.svg?6064596f7e569bb4681025c20a0fa45f) right center no-repeat;
    padding-right: 32px;
    background-size: 20px auto;
}

.page-section.blog-articles-list .columns .article-list article.blog-article .card-content .article-link:hover {
    text-decoration: underline;
}

@media (max-width: 481px) {
    .page-section.blog-articles-list .columns .article-list article.blog-article .card-content .article-link {
        font-size: 18px;
    }
}

.page-section.blog-articles-list .columns .article-list article.alternative {
    padding: 66px 72px;
}

@media (max-width: 1024px) {
    .page-section.blog-articles-list .columns .article-list article.alternative {
        padding: 32px 36px;
    }
}

.page-section.blog-articles-list .columns .article-list article.alternative .categories {
    margin-bottom: 48px;
    font-size: 18px;
    line-height: 1.22em;
    font-weight: 600;
}

.page-section.blog-articles-list .columns .article-list article.alternative .categories a {
    text-decoration: none;
    color: #377DFF;
}

@media (max-width: 375px) {
    .page-section.blog-articles-list .columns .article-list article.alternative .categories {
        margin-bottom: 25px;
    }
}

.page-section.blog-articles-list .columns .article-list article.alternative .content-columns {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 481px) {
    .page-section.blog-articles-list .columns .article-list article.alternative .content-columns {
        flex-direction: column;
    }
}

.page-section.blog-articles-list .columns .article-list article.alternative .content-columns .icon {
    width: 78px;
    height: 78px;
    margin-right: 28px;
    flex: 0 0 78px;
    padding-top: 15px;
}

.page-section.blog-articles-list .columns .article-list article.alternative .content-columns .icon img {
    width: 100%;
}

@media (max-width: 481px) {
    .page-section.blog-articles-list .columns .article-list article.alternative .content-columns .icon {
        margin-bottom: 50px;
    }
}

@media (max-width: 375px) {
    .page-section.blog-articles-list .columns .article-list article.alternative .content-columns .icon {
        margin-bottom: 35px;
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }
}

.page-section.blog-articles-list .columns .article-list article.alternative .content-columns .text h2 {
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 36px;
}

@media (max-width: 1024px) {
    .page-section.blog-articles-list .columns .article-list article.alternative .content-columns .text h2 {
        font-size: 32px;
        line-height: 1.22em;
    }
}

@media (max-width: 375px) {
    .page-section.blog-articles-list .columns .article-list article.alternative .content-columns .text h2 {
        font-size: 20px;
    }
}

.page-section.blog-articles-list .columns .article-list article.alternative .content-columns .text h2 a {
    color: #232340;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.page-section.blog-articles-list .columns .article-list article.alternative .content-columns .text h2 a:hover {
    color: #377DFF;
}

.page-section.blog-articles-list .columns .article-list article.alternative .content-columns .text .description {
    color: #858A8F;
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 600;
}

@media (max-width: 375px) {
    .page-section.blog-articles-list .columns .article-list article.alternative .content-columns .text .description {
        font-size: 16px;
    }
}

.page-section.blog-articles-list .columns .article-list article.alternative .content-columns .text .link {
    font-size: 20px;
    line-height: 1.2em;
    color: #858A8F;
    font-weight: 600;
}

.page-section.blog-articles-list .columns .article-list article.alternative .content-columns .text .link a {
    color: #858A8F;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.page-section.blog-articles-list .columns .article-list article.alternative .content-columns .text .link a:hover {
    color: #377DFF;
}

@media (max-width: 375px) {
    .page-section.blog-articles-list .columns .article-list article.alternative .content-columns .text .link {
        font-size: 16px;
    }
}

.page-section.newsletter-subscription-section {
    background-color: #F5F6FA;
    background-image: url(/images/symbol-green-circle.svg?66f8c013bcab2beefd4c3fb69b38c128), url(/images/symbol-blue-circle-slice.svg?20cc5ea6fa254c195f6d7990aa875040);
    background-repeat: no-repeat;
    background-position: left calc(50% - 120px) bottom -120px, left 72% top 0;
    background-size: 180px auto, 70px 70px;
}

.page-section.newsletter-subscription-section > .container {
    padding-top: 110px;
    padding-bottom: 125px;
}

.page-section.newsletter-subscription-section .section-title {
    font-family: "Poppins";
    font-weight: 700;
    color: #232340;
    font-size: 48px;
    line-height: 1.21em;
    letter-spacing: 0;
    margin-bottom: 36px;
    text-align: center;
}

@media (max-width: 375px) {
    .page-section.newsletter-subscription-section .section-title {
        font-size: 40px;
    }
}

.page-section.newsletter-subscription-section .intro-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.75em;
    margin-bottom: 40px;
    text-align: center;
    color: #858A8F;
}

@media (max-width: 1024px) {
    .page-section.newsletter-subscription-section .intro-text {
        font-size: 18px;
    }

    .page-section.newsletter-subscription-section .intro-text br {
        display: none;
    }
}

.page-section.newsletter-subscription-section .subscribe-newsletter {
    max-width: 772px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-section.newsletter-subscription-section input[type=email] {
        margin-bottom: 30px;
    }
}

.page-section.newsletter-subscription-section .newsletter-signup-submit {
    margin-left: 30px;
}

@media (max-width: 768px) {
    .page-section.newsletter-subscription-section .newsletter-signup-submit {
        margin: 0 auto;
    }
}

@media (max-width: 481px) {
    .page-section.newsletter-subscription-section .newsletter-signup-submit {
        width: 100%;
    }
}

.blog-articles-sidebar .widget {
    margin-bottom: 24px;
    padding-bottom: 50px;
}

.blog-articles-sidebar .widget:last-child {
    margin-bottom: 0;
}

.blog-articles-sidebar .widget h3 {
    color: #232340;
    font-size: 24px;
    line-height: 1.21em;
    font-weight: 600;
    margin-bottom: 25px;
}

.blog-articles-sidebar .widget.newsletter .newsletter-form {
    margin-bottom: 25px;
}

.blog-articles-sidebar .widget.newsletter .newsletter-form input[type=email] {
    margin-bottom: 20px;
}

.blog-articles-sidebar .widget.newsletter .newsletter-form .button {
    width: 100%;
}

.blog-articles-sidebar .widget.newsletter .note {
    font-size: 18px;
    line-height: 1.22em;
    font-weight: 500;
    color: #858A8F;
}

.blog-articles-sidebar .widget.popular-articles .popular-article {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 40px;
}

.blog-articles-sidebar .widget.popular-articles .popular-article:last-child {
    margin-bottom: 0;
}

.blog-articles-sidebar .widget.popular-articles .popular-article .thumbnail {
    flex: 0 0 106px;
    height: 106px;
    margin-right: 22px;
    background: black;
    border-radius: 9px;
    overflow: hidden;
}

.blog-articles-sidebar .widget.popular-articles .popular-article .thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

.blog-articles-sidebar .widget.popular-articles .popular-article .text {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.blog-articles-sidebar .widget.popular-articles .popular-article .text h4 {
    font-size: 24px;
    line-height: 1.21em;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (max-width: 481px) {
    .blog-articles-sidebar .widget.popular-articles .popular-article .text h4 {
        font-size: 16px;
    }
}

.blog-articles-sidebar .widget.popular-articles .popular-article .text h4 a {
    text-decoration: none;
    color: #232340;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-articles-sidebar .widget.popular-articles .popular-article .text h4 a:hover {
    color: #377DFF;
}

.blog-articles-sidebar .widget.popular-articles .popular-article .text .excerpt {
    font-size: 18px;
    line-height: 1.22em;
    font-weight: 500;
    color: #858A8F;
}

.blog-articles-sidebar .widget.popular-articles .popular-article .text .category {
    text-decoration: none;
    line-height: 1.22em;
    font-size: 18px;
    text-decoration: none;
    color: #377DFF;
    font-weight: 600;
}

@media (max-width: 481px) {
    .blog-articles-sidebar .widget.popular-articles .popular-article .text .category {
        font-size: 16px;
    }
}

.blog-articles-sidebar .widget.popular-articles .popular-article .text .category:hover {
    text-decoration: underline;
}

.blog .main-header .logo {
    background: url(/images/bg-logo-white.svg?85f7a852404917980b61221ecbdc71cf) center center no-repeat;
}

.blog .main-header .main-nav ul li a {
    color: white;
    opacity: 0.5;
}

.blog .main-header .main-nav ul li a:hover {
    opacity: 0.7;
}

.blog .main-header .main-nav ul li.current-menu-item a {
    color: white;
    opacity: 1;
}

.blog .mobile-nav-trigger .line {
    background: white;
}

