:root {
    --black: #0a0a0a;
    --blue: #1f2a44;

    /* темніший, серйозний синій */
    --white: #f9f9f9;
    --header-color: #eef2f7;

    /* світлий корпоративний фон */
    --header-color-text: #1c1c1e;
    --primary-button: #1f2a44;

    /* професійний синій */
    --primary-button--text: #ffffff;
    --primary-button-hover: #162036;

    /* темніший при наведенні */
    --secondary-button: #aed9f2;
    --secondary-button--text: #1f2a44;
    --secondary-button-hover: #d1d6de;
    --border-radius: 10px;

    /* трохи менш округле, для серйозного вигляду */
    --footer-color: #151a24;

    /* майже чорний із синім відтінком */
    --footer-color-text: #cccccc;
    --footer-color-text-hover: #ffffff;
    --card-color: #f4f6f9;

    /* ледь синюватий для блоків */
    --bg-color: #e9edf4;

    /* загальний мʼякий фон */
}

.wrapper {
    background-color: var(--bg-color);
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

body {
    color: #1a1b1f;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

h1 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 44px;
    font-weight: 400;
    line-height: 62px;
}

h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 400;
    line-height: 50px;
}

h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 400;
    line-height: 46px;
}

h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 400;
    line-height: 38px;
}

h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 34px;
}

h6 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

p {
    margin-bottom: 10px;
}

a {
    color: #1a1b1f;
    text-decoration: underline;
    transition: opacity .2s;
    display: block;
}

a:hover {
    color: #32343a;
}

a:active {
    color: #43464d;
}

ul {
    margin-top: 20px;
    margin-bottom: 10px;
    padding-left: 40px;
    list-style-type: disc;
}

li {
    margin-bottom: 10px;
}

img {
    display: block;
    border-radius: var(--border-radius);
}

label {
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

blockquote {
    border-left: 5px solid #e2e2e2;
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 15px 30px;
    font-size: 20px;
    line-height: 34px;
}

figcaption {
    opacity: 1;
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
    line-height: 26px;
}

.divider {
    background-color: #eee;
    height: 1px;
}

.styleguide-content-wrap {
    text-align: center;
}

.section {
    margin-left: 30px;
    margin-right: 30px;
}

.section.cc-cta {
    background-color: var(--card-color);
    padding: 100px 80px;
    border-radius: var(--border-radius);
}

.section.cc-home-wrap {
    padding-top: 0;
    padding-bottom: 0;
}

.section.cc-store-home-wrap {
    padding-top: 0;
}

.styleguide-block {
    text-align: left;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 80px;
    display: block;
}

.container {
    width: 95%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.paragraph-tiny {
    font-size: 12px;
    line-height: 20px;
}

.paragraph-bigger {
    opacity: 1;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
}

.paragraph-bigger.cc-bigger-light,
.paragraph-bigger.cc-bigger-white-light {
    opacity: .6;
}

.primary-button {
    color: var(--primary-button--text);
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: var(--primary-button);
    border-radius: var(--border-radius);
    padding: 12px 25px;
    font-size: 12px;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .4s, opacity .4s, color .4s;
}

.primary-button:hover {
    color: #fff;
    background-color: var(--primary-button-hover);
}

.primary-button:active {
    background-color: #43464d;
}

.primary-button.cc-jumbo-button {
    padding: 16px 35px;
    font-size: 14px;
    line-height: 26px;
}

.primary-button.cc-contact-us {
    z-index: 5;
    position: relative;
}

.primary-button.cc-white-button {
    color: #202020;
    background-color: #fff;
    padding: 16px 35px;
    font-size: 14px;
    line-height: 26px;
}

.primary-button.cc-white-button:hover {
    background-color: #fffc;
}

.primary-button.cc-white-button:active {
    background-color: #ffffffe6;
}

.label {
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.label.cc-styleguide-label {
    margin-bottom: 25px;
}

.label.cc-light {
    opacity: .6;
}

.label.cc-blog-date {
    opacity: .6;
    margin-top: 20px;
}

.heading-jumbo-tiny {
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
}

.rich-text {
    width: 70%;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}

.rich-text p {
    opacity: .6;
    margin-top: 15px;
    margin-bottom: 25px;
}

.rich-text figcaption {
    opacity: .6;
}

.rich-text figure {
    margin-top: 25px;
    padding-bottom: 20px;
}

.paragraph-light {
    opacity: .6;
}

.heading-jumbo {
    text-transform: none;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 64px;
    line-height: 80px;
}

.heading-jumbo-small {
    text-transform: none;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 36px;
    font-weight: 400;
    line-height: 50px;
}

.styleguide-button-wrap {
    margin-top: 10px;
    margin-bottom: 10px;
}

.styleguide-header-wrap {
    color: #fff;
    text-align: center;
    background-color: #1a1b1f;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 460px;
    padding: 30px;
    display: flex;
}

.paragraph-small {
    font-size: 14px;
    line-height: 26px;
}

.logo-link {
    z-index: 1;
}

.logo-link:hover {
    opacity: .8;
}

.logo-link:active {
    opacity: .7;
}

.menu {
    z-index: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 0%;
}

.navigation-wrap {
    flex: 1;
    justify-content: space-between;
    align-items: center;
    display: flex;
    position: relative;
}

.navigation {
    background-color: #0000;
    align-items: center;
    padding: 30px 50px;
    display: flex;
}

.navigation-item {
    opacity: .6;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.navigation-item:hover {
    opacity: .9;
}

.navigation-item:active {
    opacity: .8;
}

.navigation-item.w--current {
    opacity: 1;
    color: #1a1b1f;
    font-weight: 600;
}

.navigation-item.w--current:hover {
    opacity: .8;
    color: #32343a;
}

.navigation-item.w--current:active {
    opacity: .7;
    color: #32343a;
}

.logo-image {
    display: block;
    width: 60px;
}

.navigation-items {
    flex: none;
    justify-content: center;
    align-items: center;
    display: flex;
    color: red;
}

.footer-wrap {
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
    display: flex;
}

.webflow-link {
    opacity: .5;
    align-items: center;
    text-decoration: none;
    transition: opacity .4s;
    display: flex;
}

.webflow-link:hover {
    opacity: 1;
}

.webflow-link:active {
    opacity: .8;
}

.webflow-logo-tiny {
    margin-top: -2px;
    margin-right: 8px;
}

.cta-text {
    width: 70%;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
}

.cta-wrap {
    text-align: center;
    justify-content: center;
    display: flex;
}

.intro-header {
    color: #fff;
    background-color: #f4f4f4;
    background-image: url('../images/portfolio-2---wide.svg');
    background-position: 0 0;
    background-size: cover;
    justify-content: center;
    align-items: center;
    height: 620px;
    margin-bottom: 100px;
    display: flex;
}

.intro-header.cc-subpage {
    background-color: var(--black);
    background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--secondary-button--text) 72%, var(--primary-button));
    color: #fff;
    border-radius: var(--border-radius);
    height: 480px;
}

.intro-header.cc-subpage.business-modal {
    background-image: linear-gradient(#00000080, #00000080), url('https://images.unsplash.com/photo-1644497074272-92ef8976f96b?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wyMDkyMnwwfDF8c2VhcmNofDIzfHxsZWdhbHxlbnwwfHx8fDE3NTIyMzIzNjV8MA&ixlib=rb-4.1.0&q=80&w=1080');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.intro-header.cc-subpage.contact {
    background-image: linear-gradient(#00000080, #00000080), url('../images/melinda-gimpel-5Ne6mMQtIdo-unsplash.webp');
    background-position: 0 0, 50%;
    background-size: auto, cover;
}

.intro-content {
    text-align: center;
    width: 70%;
    max-width: 1140px;
}

.intro-content.cc-homepage {
    margin-bottom: 20px;
}

.motto-wrap {
    text-align: center;
    width: 80%;
    margin-bottom: 85px;
    margin-left: auto;
    margin-right: auto;
}

.about-story-wrap {
    text-align: center;
    width: 80%;
    margin: 80px auto;
}

.our-services-grid {
    grid-column-gap: 80px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: ". . ."
                       ". . .";
    margin-bottom: 120px;
}

.section-heading-wrap {
    text-align: center;
    margin-bottom: 80px;
}

.service-icon {
    margin-bottom: 30px;
}

.status-message {
    color: #fff;
    text-align: center;
    background-color: #202020;
    padding: 9px 30px;
    font-size: 14px;
    line-height: 26px;
}

.status-message.cc-success-message {
    background-color: #12b878;
}

.status-message.cc-error-message {
    background-color: #db4b68;
}

.status-message.cc-no-data {
    width: 70%;
    margin: 100px auto;
    display: block;
}

.contact-form-wrap {
    border: 1px solid #eee;
    padding: 45px 50px 50px;
}

.contact-form-grid {
    grid-column-gap: 80px;
    grid-row-gap: 30px;
    grid-template: ". ."
  / 2.5fr 1fr;
    align-items: start;
}

.details-wrap {
    margin-bottom: 30px;
}

.get-in-touch-form {
    flex-direction: column;
    display: flex;
}

.text-field {
    border: 1px solid #e4e4e4;
    border-radius: var(--border-radius);
    margin-bottom: 18px;
    padding: 21px 20px;
    font-size: 14px;
    line-height: 26px;
    transition: border-color .4s;
}

.text-field:hover {
    border-color: #e3e6eb;
}

.text-field:active,
.text-field:focus {
    border-color: #43464d;
}

.text-field::placeholder {
    color: #32343a66;
}

.text-field.cc-contact-field {
    margin-bottom: 25px;
}

.text-field.cc-textarea {
    height: 200px;
    padding-top: 12px;
}

.contact-form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.contact-form-heading-wrap {
    margin-bottom: 40px;
}

.contact-heading {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 400;
}

.map {
    height: 460px;
    line-height: 20px;
}

.contact-team-name-wrap {
    margin-bottom: 30px;
}

.our-contacts {
    grid-column-gap: 80px;
    grid-row-gap: 60px;
    text-align: center;
    grid-template: ". . ."
  / 1fr 1fr 1fr;
}

.contact-team-details-wrap {
    margin-top: 30px;
}

.contact-team-pic {
    background-color: #f4f4f4;
    height: 150px;
    margin-bottom: 30px;
}

.team-pic {
    background-color: #f4f4f4;
    width: 100%;
    height: 420px;
    margin-bottom: 40px;
}

.team-members {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: ". . ."
                       ". . .";
}

.team-member-title-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
    display: flex;
}

.team-member-name {
    opacity: 1;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
}

.projects-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template: "."
                 "."
                 "."
                 / 1fr;
}

.project-name-wrap {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
    display: flex;
}

.project-name-link {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    text-decoration: none;
}

.project-name-link:hover {
    opacity: .8;
}

.project-name-link:active {
    opacity: .7;
}

.project-cover-link {
    margin-bottom: 40px;
}

.project-cover-link:hover {
    opacity: .8;
}

.project-cover-link:active {
    opacity: .7;
}

.project-overview-header {
    color: #fff;
    background-color: #f4f4f4;
    background-image: url('../images/portfolio-1---wide.svg');
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    height: 620px;
    display: flex;
}

.project-overview-header.cc-project-2-header {
    background-image: url('../images/portfolio-2---wide.svg');
    background-position: 50%;
}

.project-overview-header.cc-project-3-header {
    background-image: url('../images/portfolio-3---wide.svg');
    background-size: cover;
}

.project-details-grid {
    grid-column-gap: 80px;
    grid-row-gap: 30px;
    grid-template: ". ."
  / 1fr 2fr;
    align-items: start;
}

.detail-image {
    width: 100%;
    margin-bottom: 30px;
}

.blog-detail-header-wrap {
    width: 70%;
    margin: 60px auto;
}

.detail-header-image {
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0 0;
    background-size: cover;
    width: 100%;
    height: 620px;
    margin-bottom: 60px;
    display: block;
}

.detail-header-image.w--current {
    margin-bottom: 60px;
}

.blog-list-wrap {
    margin-bottom: 100px;
}

.blog-item {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.blog-preview-image {
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0 0;
    background-size: cover;
    width: 100%;
    height: 620px;
    margin-bottom: 45px;
    transition: opacity .6s;
    display: block;
}

.blog-preview-image:hover {
    opacity: .8;
}

.blog-preview-image:active {
    opacity: .7;
}

.blog-summary-wrap {
    text-align: left;
    width: 70%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.blog-heading-link {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 400;
    line-height: 46px;
    text-decoration: none;
}

.blog-heading-link:hover {
    opacity: .8;
}

.blog-heading-link:active {
    opacity: .7;
}

.contact-email-link {
    opacity: .6;
    margin-bottom: 5px;
}

.contact-email-link:hover {
    opacity: 1;
}

.contact-email-link:active {
    opacity: .8;
}

.protected-form {
    flex-direction: column;
    display: flex;
}

.protected-wrap {
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 100px;
    display: flex;
}

.protected-heading {
    margin-bottom: 30px;
}

.utility-page-wrap {
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    padding: 30px;
    display: flex;
}

._404-wrap {
    background-color: #1a1b1f;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
}

._404-content-wrap {
    margin-bottom: 20px;
}

.home-content-wrap {
    margin-top: 80px;
}

.home-section-wrap {
    margin-bottom: 30px;
}

.section-heading {
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-grid {
    grid-column-gap: 80px;
    grid-row-gap: 30px;
    grid-template: ". ."
  / 1fr 2fr;
    align-items: center;
    margin-bottom: 80px;
}

.about-grid.cc-about-2 {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: ". .";
}

.intro-text {
    width: 80%;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
}

.collection-wrap {
    flex-wrap: wrap;
    place-content: flex-start center;
    align-items: flex-start;
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
}

.work-heading {
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 400;
}

.blog-heading {
    text-align: center;
    margin-bottom: 60px;
}

.blog-preview-wrap {
    width: 33.33%;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 45px;
}

.business-article-heading {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
    text-decoration: none;
}

.business-article-heading:hover {
    opacity: .8;
}

.business-article-heading:active {
    opacity: .7;
}

.secondary-button {
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #fff;
    padding: 12px 25px;
    font-size: 12px;
    line-height: 20px;
    text-decoration: none;
}

.secondary-button.cc-jumbo-button {
    padding: 16px 35px;
    font-size: 14px;
    line-height: 26px;
}

.testimonial-image {
    object-fit: cover;
    border-radius: var(--border-radius);
    width: 60px;
    height: 60px;
    margin-right: 16px;
}

.footer-social-link {
    margin-left: 12px;
}

.footer-dark {
    background-color: var(--footer-color);
    border-bottom: 1px solid #e4ebf3;
    padding: 50px 30px 15px;
    position: relative;
}

.testimonial-main-heading {
    margin-bottom: 2px;
    font-weight: 600;
}

.container-2 {
    width: 100%;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.navigation-2 {
    background-color: #0000;
    align-items: center;
    padding: 0 50px;
    display: flex;
}

.title-small {
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
}

.footer-social-block {
    justify-content: flex-start;
    align-items: center;
    margin-top: 12px;
    margin-left: -12px;
    display: flex;
}

.heading-jumbo-2 {
    text-transform: none;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 50px;
}

.bnw-heading-1 {
    color: #1a1a1a;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3em;
    line-height: 1.3em;
}

.testimonial-column-light {
    border-bottom: 1px solid #e4ebf3;
    padding: 80px 30px;
    position: relative;
}

.bnw-container-1 {
    width: 100%;
    max-width: 88em;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-info-three {
    background-color: #f5f7fa;
    align-items: center;
    padding: 24px 16px;
    display: flex;
}

.secondary-button-2 {
    color: var(--secondary-button--text);
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: var(--secondary-button);
    border-radius: var(--border-radius);
    padding: 12px 25px;
    font-size: 12px;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .4s, opacity .4s, color .4s;
}

.secondary-button-2:hover {
    background-color: var(--secondary-button-hover);
    color: var(--secondary-button--text);
}

.bnw-text-1 {
    color: #1a1a1a;
    text-align: center;
    margin-top: 2em;
    font-size: 1.4em;
    line-height: 1.3em;
}

.testimonial-text-two {
    margin-bottom: 52px;
}

.centered-heading {
    text-align: center;
    margin-bottom: 16px;
}

.bnw-text-2 {
    color: #1a1a1a;
    text-align: center;
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.3em;
}

.bnw-selection-1 {
    margin-top: 10em;
    margin-bottom: 10em;
    padding: 5em;
    font-size: 1vw;
}

.testimonial-grid-two {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 50px;
    display: grid;
}

.heading-jumbo-small-2 {
    text-transform: none;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.bnw-pic-1 {
    height: 2em;
}

.footer-wrapper {
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    padding: 0;
}

.intro-header-2 {
    color: #fff;
    background-color: #f4f4f4;
    background-image: linear-gradient(#00000080, #00000080), url('https://images.unsplash.com/photo-1589578527966-fdac0f44566c?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wyMDkyMnwwfDF8c2VhcmNofDV8fGxlZ2FsfGVufDB8fHx8MTc1MjIzMTU2M3ww&ixlib=rb-4.1.0&q=80&w=1080');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
    justify-content: center;
    align-items: center;
    height: 620px;
    margin-bottom: 100px;
    display: flex;
    border-radius: var(--border-radius);
}

.intro-header-2.about-us {
    background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--secondary-button--text) 72%, var(--primary-button));
}

.bnw-wrap-1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.footer-link {
    color: var(--footer-color-text);
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--footer-color-text-hover);
}

.footer-content {
    grid-column-gap: 70px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: auto auto 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.footer-block {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    color: var(--footer-color-text);
}

.bnw-wrap-2 {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 5em;
    display: grid;
}

.bnw-grid-1 {
    background-color: #f6f7f9;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3em;
    display: flex;
}

.footer-copyright-center {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    color: var(--footer-color-text);
}

.bnw-paragraph-1 {
    color: #1a1a1a;
    text-align: center;
    flex: 1 0 auto;
    margin-top: 3em;
    margin-bottom: 3em;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.4em;
}

.testimonial-card-two {
    border: 1px solid #e4ebf3;
    flex-direction: column;
    padding: 32px 16px 16px;
    display: flex;
}

.footer-divider {
    background-color: #e4ebf3;
    width: 100%;
    height: 1px;
    margin-top: 70px;
    margin-bottom: 15px;
}

.container-3 {
    width: 100%;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.navigation-3 {
    background-color: #0000;
    align-items: center;
    padding: 0 50px;
    display: flex;
}

.bnw-selection-1-2 {
    padding: 5em;
    font-size: 1vw;
}

.bnw-grid-1-2 {
    background-color: #f6f7f9;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3em;
    display: flex;
}

.heading-jumbo-small-3 {
    text-transform: none;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.primary-button-2 {
    background-color: var(--primary-button);
    color: var(--primary-button--text);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    padding: 12px 25px;
    font-size: 12px;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .4s, opacity .4s, color .4s;
    z-index: 9;
}

.primary-button-2:hover {
    color: #fff;
    background-color: var(--primary-button-hover);
}

.primary-button-2:active {
    background-color: var(--primary-button-hover);
}

.primary-button-2.cc-jumbo-button {
    padding: 12px 35px;
    font-size: 14px;
    line-height: 26px;
}

.pricing-overview {
    border-bottom: 1px solid #e4ebf3;
    padding: 80px 30px;
    position: relative;
}

.container-4 {
    width: 100%;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.centered-heading-2 {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-description {
    text-align: center;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    grid-column-gap: 64px;
    grid-row-gap: 50px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 50px;
    display: grid;
}

.pricing-card-three {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    flex-direction: column;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    place-items: stretch center;
    display: grid;
}

.pricing-image {
    object-fit: cover;
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.pricing-card-text {
    text-align: left;
    margin-bottom: 20px;
}

.text-link-arrow {
    color: #1a1b1f;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    display: flex;
}

.arrow-embed {
    margin-left: 2px;
    display: flex;
}

.underlay-pc {
    height: 120px;
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
}

.underlay-pc.top {
    background-color: #f7c330;
}

.underlay-pc.mid {
    background-color: #f6882f;
}

.underlay-pc.bottom {
    background-color: #6a7c90;
}

.pricing-table-wrap {
    justify-content: center;
    align-items: flex-end;
    width: 80%;
    margin-top: 50px;
    display: flex;
}

.pc-heading {
    z-index: 5;
    position: relative;
}

.pricing-column {
    z-index: 1;
    text-align: center;
    background-color: #fff;
    border: 1px solid #66666640;
    border-radius: var(--border-radius);
    flex-direction: column;
    flex: 1;
    justify-content: space-around;
    align-items: center;
    height: 500px;
    margin-bottom: 100px;
    margin-left: 5px;
    padding: 20px;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 10px #00000040;
}

.pricing-column.middle {
    z-index: 2;
    height: 475px;
}

.pricing-column.small {
    height: 450px;
}

.border-grow {
    transform-origin: 50% 0;
    background-color: #6a7c90;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.border-grow.mid {
    background-color: #f6882f;
}

.border-grow.top {
    background-color: #f7c330;
}

.flex-container {
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
}

.button {
    text-align: center;
    letter-spacing: 1px;
    text-transform: capitalize;
    background-color: var(--primary-button);
    border-radius: var(--border-radius);
    padding: 15px 30px;
    font-size: 20px;
    transition: background-color .5s;
}

.button:hover {
    background-color: var(--primary-button-hover);
}

.button.alt {
    background-color: #6a7c90;
}

.button.alt:hover {
    background-color: #f6882f;
}

.large {
    margin-top: -30px;
    font-size: 55px;
    line-height: 1em;
}

.policy-section {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1280px) {
    .bnw-selection-1,
    .bnw-selection-1-2 {
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .section.cc-cta {
        padding-left: 0;
        padding-right: 0;
    }

    .styleguide-block {
        text-align: center;
    }

    .primary-button {
        justify-content: center;
    }

    .primary-button.cc-contact-us {
        display: none;
    }

    .heading-jumbo {
        font-size: 56px;
        line-height: 70px;
    }

    .logo-link.w--current {
        flex: 1;
    }

    .menu-icon {
        display: block;
        border-radius: 0;
    }

    .menu {
        margin-left: 30px;
        position: static;
    }

    .navigation-wrap {
        background-color: var(--header-color);
    }

    .navigation {
        padding: 25px 30px;
    }

    .navigation-item {
        text-align: center;
        padding: 15px 30px;
        transition: background-color .4s, opacity .4s, color .4s;
        background-color: var(--header-color);
        color: var(--header-color-text);
    }

    .navigation-item:hover {
        background-color: var(--header-color-text);
        color: var(--header-color);
    }

    .navigation-item:active {
        background-color: #eef0f3;
    }

    .menu-button {
        padding: 0;
    }

    .menu-button.w--open {
        background-color: #0000;
    }

    .cta-text {
        width: auto;
    }

    .cta-wrap {
        width: auto;
        padding: 80px 50px 90px;
    }

    .our-services-grid {
        text-align: center;
        grid-template: ". ."
                   ". ."
                   ". ."
                   / 1fr 1fr;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .service-icon {
        display: inline-block;
    }

    .contact-form-grid {
        grid-row-gap: 50px;
        text-align: center;
        grid-template: "."
                   "."
                   / 1fr;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .get-in-touch-form {
        text-align: left;
    }

    .our-contacts {
        grid-template: "."
                   "."
                   "."
                   / 1fr;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .team-members {
        grid-template: ". ."
                   ". ."
                   ". ."
                   / 1fr 1fr;
    }

    .team-member-title-wrap {
        margin-bottom: 30px;
    }

    .project-details-grid {
        grid-row-gap: 50px;
        text-align: center;
        grid-template: "."
                   "."
                   / 1fr;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-detail-header-wrap {
        width: 70%;
    }

    .detail-header-image {
        height: 460px;
    }

    .blog-item {
        width: 80%;
    }

    .blog-preview-image {
        height: 460px;
    }

    .blog-summary-wrap {
        width: 100%;
    }

    .about-grid {
        grid-row-gap: 50px;
        text-align: center;
        grid-template: "."
                   "."
                   / 1fr;
    }

    .about-grid.cc-about-2 {
        grid-template-columns: 1fr;
        grid-template-areas: "."
                         ".";
    }

    .intro-text {
        width: auto;
    }

    .collection-wrap {
        flex-flow: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }

    .blog-preview-wrap {
        text-align: center;
        width: 80%;
        padding-right: 15px;
    }

    .container-2 {
        max-width: 728px;
    }

    .navigation-2 {
        padding: 25px 30px;
    }

    .heading-jumbo-2 {
        font-size: 56px;
        line-height: 70px;
    }

    .testimonial-info-three {
        flex-direction: column;
    }

    .bnw-selection-1 {
        padding: 3em;
        font-size: 1.3vw;
    }

    .testimonial-grid-two {
        grid-column-gap: 30px;
    }

    .footer-content {
        grid-column-gap: 60px;
    }

    .container-3 {
        max-width: 728px;
    }

    .navigation-3 {
        padding: 25px 30px;
    }

    .bnw-selection-1-2 {
        padding: 3em;
        font-size: 1.3vw;
    }

    .bnw-grid-1-2 {
        background-color: #cedbf7;
        border-radius: var(--border-radius);
    }

    .primary-button-2 {
        border-radius: var(--border-radius);
        justify-content: center;
    }

    .container-4 {
        max-width: 728px;
    }

    .pricing-grid {
        grid-column-gap: 30px;
    }

    .pricing-table-wrap {
        width: 100%;
    }

    .flex-container {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .section {
        margin-left: 15px;
        margin-right: 15px;
    }

    .section.cc-cta {
        padding: 15px;
    }

    .section.cc-home-wrap,
    .section.cc-store-home-wrap {
        margin-left: 15px;
        margin-right: 15px;
    }

    .container {
        text-align: center;
    }

    .paragraph-bigger {
        font-size: 16px;
        line-height: 28px;
    }

    .rich-text {
        text-align: left;
        width: 90%;
        max-width: 470px;
    }

    .heading-jumbo {
        font-size: 50px;
        line-height: 64px;
    }

    .heading-jumbo-small {
        font-size: 30px;
        line-height: 52px;
    }

    .logo-link {
        padding-left: 0;
    }

    .navigation {
        padding: 20px 30px;
    }

    .cta-wrap {
        padding-left: 30px;
        padding-right: 30px;
    }

    .intro-content {
        width: 80%;
    }

    .our-services-grid {
        grid-row-gap: 60px;
        grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
    }

    .status-message.cc-no-data {
        width: 80%;
        max-width: 470px;
    }

    .contact-form-wrap {
        padding: 30px;
    }

    .text-field.cc-contact-field,
    .text-field.cc-textarea {
        text-align: left;
    }

    .team-pic {
        height: 300px;
        margin-bottom: 30px;
    }

    .team-member-name {
        font-size: 16px;
        line-height: 28px;
    }

    .project-name-wrap {
        margin-bottom: 30px;
    }

    .project-name-link {
        font-size: 16px;
        line-height: 28px;
    }

    .detail-image {
        margin-bottom: 15px;
    }

    .blog-detail-header-wrap {
        text-align: left;
        width: 90%;
        max-width: 470px;
    }

    .blog-item {
        width: 90%;
        max-width: 470px;
    }

    .blog-summary-wrap {
        text-align: center;
    }

    .utility-page-wrap {
        padding: 15px;
    }

    ._404-wrap {
        padding: 30px;
    }

    .footer-social-link {
        margin-left: 20px;
    }

    .footer-dark {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navigation-2 {
        padding: 20px 30px;
    }

    .footer-social-block {
        margin-top: 20px;
        margin-left: -20px;
    }

    .heading-jumbo-2 {
        font-size: 50px;
        line-height: 64px;
    }

    .testimonial-column-light {
        padding: 60px 15px;
    }

    .testimonial-info-three {
        flex-direction: row;
    }

    .bnw-selection-1 {
        padding: 3em;
        font-size: 1.69vw;
    }

    .testimonial-grid-two {
        grid-template-columns: 1fr;
    }

    .heading-jumbo-small-2 {
        font-size: 30px;
        line-height: 52px;
    }

    .footer-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .footer-link:hover {
        color: #1a1b1fbf;
    }

    .footer-content {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .footer-block {
        align-items: center;
    }

    .bnw-wrap-2 {
        grid-template-columns: 1fr 1fr;
    }

    .footer-divider {
        margin-top: 60px;
    }

    .navigation-3 {
        padding: 20px 30px;
    }

    .bnw-selection-1-2 {
        padding: 3em;
        font-size: 1.69vw;
    }

    .heading-jumbo-small-3 {
        font-size: 30px;
        line-height: 52px;
    }

    .pricing-overview {
        padding: 60px 15px;
    }

    .pc-heading {
        font-size: 20px;
    }

    .pricing-column {
        padding: 10px;
    }

    .button.alt {
        font-size: 16px;
    }

    .large {
        font-size: 40px;
    }

    .heading {
        font-size: 20px;
    }

    .section-2 {
        text-align: left;
    }
}

@media screen and (max-width: 479px) {
    h1 {
        font-size: 36px;
        line-height: 52px;
    }

    .rich-text {
        width: 100%;
        max-width: none;
    }

    .heading-jumbo {
        font-size: 36px;
        line-height: 48px;
    }

    .menu {
        margin-left: 15px;
    }

    .navigation {
        padding-left: 20px;
        padding-right: 20px;
    }

    .menu-button,
    .menu-button.w--open {
        flex: none;
    }

    .cta-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }

    .status-message.cc-no-data,
    .contact-form-grid {
        width: 100%;
    }

    .our-contacts {
        width: 90%;
    }

    .team-members {
        grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
    }

    .project-details-grid {
        width: 100%;
    }

    .blog-detail-header-wrap,
    .blog-item {
        width: 100%;
        max-width: none;
    }

    .container-2 {
        max-width: none;
    }

    .navigation-2 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .heading-jumbo-2 {
        font-size: 36px;
        line-height: 48px;
    }

    .centered-heading {
        margin-bottom: 24px;
    }

    .bnw-selection-1 {
        font-size: 2.5vw;
    }

    .bnw-wrap-2 {
        grid-template-columns: 1fr;
    }

    .container-3 {
        max-width: none;
    }

    .navigation-3 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bnw-selection-1-2 {
        font-size: 2.5vw;
    }

    .container-4 {
        max-width: none;
    }

    .centered-heading-2 {
        margin-bottom: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-table-wrap {
        flex-direction: column;
        align-items: center;
    }

    .pricing-column {
        flex: none;
        height: 400px;
        margin-bottom: 25px;
        margin-left: 0;
        padding: 25px;
    }

    .pricing-column.middle,
    .pricing-column.small {
        height: 400px;
        margin-left: 0;
        padding: 25px;
    }
}

#w-node-edebd8d7-12a8-545d-dc05-51f07037983d-40077aec {
    grid-area: 1 / 1 / 2 / 2;
}

#w-node-edebd8d7-12a8-545d-dc05-51f070379848-40077aec,
#w-node-edebd8d7-12a8-545d-dc05-51f07037984a-40077aec {
    grid-area: 1 / 2 / 2 / 3;
}

#w-node-edebd8d7-12a8-545d-dc05-51f070379855-40077aec {
    grid-area: 1 / 1 / 2 / 2;
}

#w-node-edebd8d7-12a8-545d-dc05-51f07037985f-40077aec,
#w-node-edebd8d7-12a8-545d-dc05-51f070379866-40077aec,
#w-node-edebd8d7-12a8-545d-dc05-51f07037986c-40077aec,
#w-node-_83bab8f4-bcb9-5f75-8de2-06f60f60c22b-51e627e8,
#w-node-_83bab8f4-bcb9-5f75-8de2-06f60f60c234-51e627e8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83bab8f4-bcb9-5f75-8de2-06f60f60c23f-51e627e8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: end;
}

#w-node-_3f61509a-fac7-b0d5-3763-509be70585a6-40077af1 {
    grid-area: 1 / 2 / 2 / 3;
}

#w-node-dc0c4015-c723-cfcb-24ab-51bf6737cba7-40077af5 {
    grid-area: 1 / 1 / 2 / 2;
}

#w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbad-40077af5 {
    grid-area: 1 / 2 / 2 / 3;
}

#w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbb3-40077af5 {
    grid-area: 1 / 3 / 2 / 4;
}

#w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbb9-40077af5 {
    grid-area: 2 / 3 / 3 / 4;
}

#w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbbf-40077af5 {
    grid-area: 2 / 1 / 3 / 2;
}

#w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbc6-40077af5 {
    grid-area: 2 / 2 / 3 / 3;
}

@media screen and (max-width: 991px) {
    #w-node-edebd8d7-12a8-545d-dc05-51f07037983d-40077aec {
        grid-area: 2 / 1 / 3 / 2;
    }

    #w-node-edebd8d7-12a8-545d-dc05-51f070379848-40077aec {
        grid-area: 1 / 1 / 2 / 2;
    }

    #w-node-edebd8d7-12a8-545d-dc05-51f07037984a-40077aec {
        grid-area: 2 / 1 / 3 / 2;
    }

    #w-node-edebd8d7-12a8-545d-dc05-51f070379855-40077aec {
        grid-area: 1 / 1 / 2 / 2;
    }

    #w-node-_3f61509a-fac7-b0d5-3763-509be70585a6-40077af1,
    #w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbb3-40077af5 {
        grid-area: 2 / 1 / 3 / 2;
    }

    #w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbb9-40077af5 {
        grid-area: 3 / 2 / 4 / 3;
    }

    #w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbbf-40077af5 {
        grid-area: 2 / 2 / 3 / 3;
    }

    #w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbc6-40077af5 {
        grid-area: 3 / 1 / 4 / 2;
    }
}

@media screen and (max-width: 767px) {
    #w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbad-40077af5 {
        grid-area: 2 / 1 / 3 / 2;
    }

    #w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbb3-40077af5 {
        grid-area: 3 / 1 / 4 / 2;
    }

    #w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbb9-40077af5 {
        grid-area: 6 / 1 / 7 / 2;
    }

    #w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbbf-40077af5 {
        grid-area: 4 / 1 / 5 / 2;
    }

    #w-node-dc0c4015-c723-cfcb-24ab-51bf6737cbc6-40077af5 {
        grid-area: 5 / 1 / 6 / 2;
    }
}


