/*

Idearium stylesheet
Author: Lee Frankis
Copyright: 2025 Idearium

*/

/****************************************************************************************************/
/* Custom root styles */

@font-face {
    font-family: "Geist";
    src: url('assets/fonts/Geist-VariableFont_wght.ttf');
    font-display: swap;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --pink: #E00744;
    --gap: 8px;
    --gap-2x: calc(var(--gap) * 2);
    --gap-3x: calc(var(--gap) * 3);
    --gap-4x: calc(var(--gap) * 4);
    --gap-6x: calc(var(--gap) * 6);
    --gap-8x: calc(var(--gap) * 8);
    --gap-12x: calc(var(--gap) * 12);
    --section-gap: 120px;
    --padding-x: 48px;
    --padding-y: 120px;
    --cta-padding-y: 48px;
    --border-radius: 8px;
    --block-top-radius: 32px 32px 0 0;
    --block-top-padding: 100px;
    --block-top-padding-alt: 80px;
}


/****************************************************************************************************/
/* Idearium default styles */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-size: 16px; /* root em */
}

body {
    margin: 0;
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
}

button {
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    text-align: inherit;
    font: inherit;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* flex utilities */

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

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

.flex-ctr {
    justify-content: center;
    align-items: center;
}

.flex-start {
    align-items: flex-start;
}

.align-items-ctr {
    align-items: center;
}

.justify-ctr {
    justify-content: center;
}

.flex-right {
    margin-left: auto;
}

.fill-width {
    width: 100%;
}

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

.push-bottom {
    margin-top: auto;
}

.push-right {
    margin-left: auto;
}

/* gap */
.gap {
    gap: var(--gap);
}

.gap-2x {
    gap: var(--gap-2x);
}

.gap-3x {
    gap: var(--gap-3x);
}

.gap-4x {
    gap: var(--gap-4x);
}

.gap-6x {
    gap: var(--gap-6x);
}

.gap-8x {
    gap: var(--gap-8x);
}

.gap-12x {
    gap: var(--gap-12x);
}

.row-gap-6x {
    row-gap: var(--gap-6x);
}

/* animated menu icon  */
.menu-icon-container {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
}

.menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: auto;
}

.menu-icon span {
    position: absolute;
    display: block;
    height: 2px;
    width: 22px;
    background-color: var(--black);
    transform: rotate(0);
    transition: all 200ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.menu-icon span.one {
    top: 15px;
}

.menu-icon span.two {
    top: 23px;
}

.clicked .one {
    transform: translateY(4px) rotate(45deg);
}

.clicked .two {
    transform: translateY(-4px) rotate(-45deg);
}

/* hide / show */
.hidden-sm {
    display: flex;
}

.visible-sm {
    display: none;
}

/* wp editor */
.wp-block {
    max-width: 1200px;
    margin: 0 auto 20px auto;
}

li.wp-block {
    margin: 0 auto 8px auto;
}

/****************************************************************************************************/
/* Custom stylesheet start */

/* Wordpress admin bar */
body:has(#wpadminbar) {
    top: 32px;
}
body:has(#wpadminbar) .menu-bar {
    top: 32px;
}

/* colors */
.gradient {
    background: #E00744!important;
    background: linear-gradient(135deg, rgba(224, 7, 68, 1) 40%, rgba(206, 0, 124, 1) 100%)!important;
}

.grey {
    background-color: #f6f6f6;
}

/* fonts */
h1, h2, h3, h4, h5, p {
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    max-width: 75ch;
}

.h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.h2 {
    font-size: 2rem;
    line-height: 1.2;
}

.h3 {
    font-size: 1.5rem;
    line-height: 1.2;
}

.h4 {
    font-size: 1.25rem;
    line-height: 1.2;
}

.p {
    font-size: 1rem;
    line-height: 1.4;
}

.small {
    font-size: 0.75rem;
}

.white {
    color: var(--white)!important;
}

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

.no-limit {
    max-width: 100%;
}

.max-25ch {
    max-width: 25ch;
}

.max-50ch {
    max-width: 50ch;
}

.faded {
    opacity: 0.6;
}

.rotate-90 {
    transform: rotate(-90deg);
}

.basic-list {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.basic-list a,.unstyled-list a {
    color: inherit;
}

.unstyled-list {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style-type: none;
}


/* card button hover */
.card-img-holder {
    position: relative;
}

.card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.card-img-holder .img-holder {
    position: relative;
    z-index: 10;
}

.btn-card {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.btn-card .btn-primary {
    visibility: hidden;
    opacity: 0;
    text-decoration: none;
    transition: opacity 0.2s ease-in-out;
    font-size: 1rem;
}

.btn-card .btn-primary:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-card:hover .btn-primary {
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
}

/* images */
.img-holder {
    background-color: #f0f0f0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.img-holder-round {
    width: 90px;
    height: 90px;
    border-radius: 90px;
    overflow: hidden;
}

.img-holder-author {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    overflow: hidden;
}

.img-holder img,
.img-holder-round img,
.img-holder-author img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.aspect-ratio-2-1 {
    aspect-ratio: 2 / 1;
}

.aspect-ratio-4-5 {
    aspect-ratio: 4 / 5;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
}

img.blur-up {
    filter: blur(12px);
    opacity: 0;
    transition: filter .6s ease, opacity .6s ease;
}

img.blur-up.loaded {
    filter: blur(0);
    opacity: 1;
}

/* make blur-up elements visible inside the block editor */
.block-editor .blur-up {
    opacity: 1 !important;
	filter: blur(0) !important;
}

/* buttons */
.btn-primary {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid black;
    background: var(--black);
    color: var(--white);
    width: fit-content;
    text-decoration: none;
    font-size: 1.25rem;
    white-space: nowrap;
    transition: color 0.3s ease, background 0.3s ease;
}

.btn-giant {
    display: flex;
    padding: 48px 48px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 100px;
    border: 1px solid black;
    background: var(--black);
    color: var(--white);
    width: 100%;
    text-decoration: none;
    font-size: 4rem;
    transition: color 0.3s ease, background 0.3s ease;
}

.btn-primary:hover, .btn-giant:hover {
    color: var(--black);
    background-color: transparent;
}

.btn-primary.gradient {
    border: 0;
}

.btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: inherit;
    white-space: nowrap;
    text-decoration: underline;
}

.basic-link {
    color: inherit;
    font-weight: 500;
}

/* page */
.max-width {
    width: 100%;
    padding-left: var(--padding-x);
    padding-right: var(--padding-x);
}

.page-width {
    width: 100%;
    max-width: 1440px;
    padding-left: var(--padding-x);
    padding-right: var(--padding-x);
    margin: 0 auto;
}

.article-width {
    width: 100%;
    max-width: 1200px;
    padding-left: var(--padding-x);
    padding-right: var(--padding-x);
    margin: 0 auto;
}

.article-width p {
    max-width: 100%;
}

main {
    padding-top: 72px;
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
}

/* blocks */
.block-padding {
    padding-top: var(--padding-y);
    padding-bottom: var(--padding-y);
}

.block-top-padding {
    padding-top: var(--block-top-padding);
}

.block-top-padding-alt {
    padding-top: var(--block-top-padding-alt);
}

.block-bottom-padding {
    padding-bottom: var(--section-gap);
}

.article-margin {
    margin-top: var(--cta-padding-y);
    margin-bottom: var(--cta-padding-y);
}

.block-top-radius {
    border-radius: var(--block-top-radius);
}

/* header */
.menu-bar {
    display: flex;
    justify-content: space-between;
    background-color: var(--white);
    padding: 16px var(--padding-x);
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.main-nav ul {
    list-style-type: none;
    display: flex;
    gap: var(--gap-2x);
}

.main-nav ul li a {
    color: var(--black);
    text-decoration: none;
}

.main-nav ul li a:hover {
    text-decoration: underline;
}

.main-nav ul li a.active {
    color: var(--white);
    background-color: var(--black);
    padding: 2px 12px;
    border-radius: 100px;
}

.menu-icon-container {
    display: none;
}

.mobile-menu {
    padding-left: var(--padding-x);
    padding-right: var(--padding-x);
    background-color: var(--white);
    z-index: 99;
    width: 100%;
    height: 0;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: hidden;
}

.mobile-nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: var(--gap-3x);
}

.mobile-nav ul li a {
    color: var(--black);
    text-decoration: none;
    font-size: 1.75rem;
}

.mobile-nav ul li a.active {
    text-decoration: underline;
}

.mobile-menu .btn-primary {
    width: calc(100% - 32px);
    position: absolute;
    bottom: 32px;
}

/* footer */
footer {
    background-color: var(--black);
}

.footer-links {
    color: var(--white);
}

.footer-links-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: var(--gap-2x);
}

.footer-links-list a {
    color: var(--white);
    text-decoration: none;
}

.footer-links-list a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* team block */
.employee-name {
    font-size: 1.5rem;
}

.position {
    opacity: 0.7;
}

/* review block */
.review-author {
    font-size: 1.25rem;
}
.review-source {
    color: rgba(0,0,0,0.6);
}

/* cards */

.card-50 {
    flex: 1 1 calc((100% - (1 * 24px)) / 2);
    max-width: calc((100% - (1 * 24px)) / 2);
}

.card-33 {
    flex: 1 1 calc((100% - (2 * 48px)) / 3);
    max-width: calc((100% - (2 * 48px)) / 3);
}

.card-25 {
    flex: 1 1 calc((100% - (3 * 24px)) / 4);
    max-width: calc((100% - (3 * 24px)) / 4);
}



/* hr */
hr {
    border: none;
    height: 1px;
    border-top: 1px solid rgba(0,0,0,0.5);
}

.light {
    border-top: 1px solid rgba(0,0,0,0.15);
}

/* contact */
.contact .menu-bar {
    background-color: transparent;
}

.contact hr.light {
    border-top: 1px solid rgba(255,255,255,0.5);
}

/* forms */
/* .form-holder {
    background-color: white;
    border-radius: 100px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25);
    padding: 8px;
}

input {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid black;
  border-radius: 100px;
  font-size: 1.25rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

input[type="submit"] {
    background-color: black;
    color: white;
    cursor: pointer;
} */


/* On focus */
input:focus {
  border-color: black;
  box-shadow: 0 0 0 2px black;
  outline: none;
}

/* Placeholder style */
input::placeholder {
  color: rgba(0,0,0,0.5);
}

/* ticker */
.ticker {
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
}

.ticker-wrap {
  display: inline-flex;
}

.ticker-item {
  display: inline-block;
  padding: 0 2rem;
}

.ticker-item img {
  display: block;
  width: auto;
}

/* pricing */
.hourly-rate {
    font-size: 4rem;
}

.compare-rate {
    font-size: 2rem;
    text-decoration: line-through;
}

/* FAQs */
.faq-item {
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-item a {
    color: inherit;
}

/* services */
.row-number {
    width: 60px;
}

/* projects */
.label {
    padding: 4px 8px;
    border-radius: 100px;
    border: 1px solid var(--black);
    font-size: 0.75rem;
    line-height: 1;
    word-wrap: nowrap;
}

/* featured work */
.featured-work-container {
    overflow: hidden;
}

.featured-work-card-3 {
    flex: 0 1 65%;
}

.featured-link {
    text-decoration: none;
    color: inherit;
}

.featured-work-card-2-spacer {
    height: 300px;
}

.project-content .stats,
.project-content .testimonial,
.project-content .two-column-text,
.project-content .honorable-mentions {
    margin-top: 64px;
    margin-bottom: 64px;
}

.project-content .stats:first-child,
.project-content .two-column-text:first-child {
    margin-top: 0;
    margin-bottom: 64px;
}

.project-content .honorable-mentions:last-child {
    margin-bottom: 0;
}

.project-content .single-image,
.project-content .double-image {
    margin-top: 24px;
    margin-bottom: 24px;
}

.project-content .single-image:first-child,
.project-content .double-image:first-child {
    margin-top: 0;
}

.project-content .single-image:last-child,
.project-content .double-image:last-child {
    margin-bottom: 0;
}

.two-column-text {
	column-count: 2;
	column-gap: var(--gap-3x);
}

.two-column-text p {
	display: inline;
	margin-bottom: 0;
}

/* fade up */
.fade-up {
  visibility: hidden; /* hide before GSAP runs */
}

/* Make fade-up elements visible inside the block editor */
.block-editor .fade-up {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}


/* home */
main.home {
    padding-top: 0;
}

.hero {
    background-color: #f0f0f0;
    width: 100%;
    height: 100svh;
    position: relative;
}

.hero .layer-0 {
    position: absolute;
    inset-inline: 0; 
    bottom: 5svh;
    margin-inline: auto;
    width: 90%;
    max-width: 1920px;
    z-index: 40;
}

.hero .layer-0 .container {
    max-width: 30px;
    margin-left: auto;
}

.hero .layer-1 {
    position: absolute;
    inset-inline: 0; 
    bottom: 22svh;
    margin-inline: auto;
    width: 90%;
    max-width: 1920px;
    z-index: 30;
}

.hero .layer-1 .container {
    max-width: 480px;
}

.hero .layer-2 {
    position: absolute;
    inset-inline: 0; 
    bottom: 0;
    margin-inline: auto;
    width: fit-content;
    z-index: 20;
}

.hero-ani-1 {
    max-height: 80svh;
    height: auto;
    max-width: 100%;
}

.hero .layer-3 {
    position: absolute;
    inset-inline: 0; 
    top: 5svh;
    margin-inline: auto;
    width: 90%;
    max-width: 1920px;
    z-index: 10;
    overflow: hidden;
}

.hero-ani-2 {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.hero-ani-1,
.hero-ani-2 {
  visibility: hidden;
}

header.home {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

/* loading */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading img {
    width: 200px;
    height: auto;
}

/* article */
.article-content h2 {
    margin-top: 36px;
    margin-bottom: 20px;
}

.article-content h3 {
    margin-top: 24px;
    margin-bottom: 16px;
}

.article-content h2:first-child {
    margin-top: 0;
    margin-bottom: 24px;
}

.article-content p {
    margin-bottom: 12px;
}

.article-content ul {
    padding-left: 18px;
    margin-bottom: 24px;
}

.article-content ul li {
    margin-bottom: 8px;
}

.article-content > .single-image,
.article-content > .double-image {
    margin-top: 36px;
    margin-bottom: 32px;
}

.article-cta h2, 
.article-cta h3,
.article-cta p {
    margin: 0!important;
    margin-bottom: 0!important;
    margin-top: 0!important;
}

.article-content a {
    color: inherit;
}

/* form */
.idea-form {
    width: 100%!important;
    margin: 0!important;
}

.idea-form form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3x);
    margin: 1px;
}

.idea-form label {
    font-size: 1rem!important;
    font-weight: 400!important;
    margin-bottom: 0;
}

.idea-form input, .idea-form textarea {
    background-color: transparent;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    font-size: 1rem;
    color: var(--white);
    font-family: inherit;
    width: 100%;
	border-radius: 0;
	-webkit-border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
}

.idea-form input:focus, .idea-form textarea:focus {
	box-shadow: none;
    outline: none;
    border-bottom: 1px solid white;
}

.idea-form textarea {
    resize: vertical;
}

.idea-form .idea-field p {
    max-width: 100% !important;
}

.idea-form .idea-submit p {
    display: flex;
	flex-direction: column;
    gap: var(--gap);
    max-width: 100% !important;
}

.idea-form .idea-field p label {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.idea-form .btn-primary {
    width: 100%;
    padding: 24px;
    color: var(--white);
    background-color: var(--black);
    border: 0;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 400;
	border-radius: 100px!important;
}

input[type="submit"] {
  font-weight: 400;
}

input[type="submit"]:focus {
  border-bottom: none;
}

.wpcf7-spinner {
    display: none!important;
}

.wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.wpcf7-response-output {
    border-radius: 0!important;
    border-color: none!important;
    border: none!important;
    margin: 0!important;
    padding: 0!important;
    color: var(--black);
    font-size: 1.5rem;
}

.wpcf7-not-valid-tip {
    color: var(--white)!important;
    opacity: 0.8;
}

.wpcf7-list-item {
    margin: 0!important;
    width: 100%;
}

.wpcf7-list-item label {
    display: flex;
    flex-direction: row!important;
    gap: var(--gap);
    align-items: center;
    margin: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  /* Use a large inset box-shadow to cover the browser's default background */
  -webkit-box-shadow: 0 0 0 1000px var(--pink) inset !important;
  /* Change the text color to match your design */
  -webkit-text-fill-color: #ffffff !important;
}

.grecaptcha-badge { 
	visibility: hidden !important; 
}


/****************************************************************************************************/
/* media queries */

/* Large screens */
@media screen and (max-width: 1260px) {
    .hero-text {
        padding: 12px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 20px;
    }
    .featured-work-card-2-spacer {
        height: 200px;
    }
}

/* Medium screens */
@media screen and (max-width: 992px) {
    .flex-col-md {
        flex-direction: column;
    }
    /* gap */
    .gap-2x-md {
        gap: var(--gap-2x);
    }
    .gap-3x-md {
        gap: var(--gap-3x);
    }
    .gap-4x-md {
        gap: var(--gap-4x);
    }
    .gap-6x-md {
        gap: var(--gap-6x);
    }
    .gap-8x-md {
        gap: var(--gap-8x);
    }
    .gap-12x-md {
        gap: var(--gap-12x);
    }
    .row-gap-6x-md {
        row-gap: var(--gap-6x);
    }
    /* cards */
    .card-50-md {
        flex: 1 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
    /* order */
    .order-1-md {
        order: 1;
    }
    .order-2-md {
        order: 2;
    }
    /* featured work */
    .featured-work-card-2-spacer {
        height: 160px;
    }
}

/* Small screens */
@media screen and (max-width: 660px) {
:root {
    --white: #ffffff;
    --black: #000000;
    --gap: 8px;
    --gap-2x: calc(var(--gap) * 2);
    --gap-3x: calc(var(--gap) * 3);
    --gap-4x: calc(var(--gap) * 4);
    --gap-6x: calc(var(--gap) * 6);
    --gap-8x: calc(var(--gap) * 8);
    --gap-12x: calc(var(--gap) * 12);
    --section-gap: 80px;
    --padding-x: 16px;
    --padding-y: 96px;
    --border-radius: 8px;
    --block-top-radius: 32px 32px 0 0;
    --block-top-padding: 80px;
    --block-top-padding-alt: 48px;
}
/* gap */
    .gap-sm {
        gap: var(--gap);
    }
    .gap-2x-sm {
        gap: var(--gap-2x);
    }
    .gap-3x-sm {
        gap: var(--gap-3x);
    }
    .gap-4x-sm {
        gap: var(--gap-4x);
    }
    .gap-6x-sm {
        gap: var(--gap-6x);
    }
    .gap-8x-sm {
        gap: var(--gap-8x);
    }
    .gap-12x-sm {
        gap: var(--gap-12x);
    }
    .row-gap-8x-sm {
        row-gap: var(--gap-8x);
    }
    .row-gap-4x-sm {
        row-gap: var(--gap-4x);
    }
    /* header */
    .main-nav {
        display: none;
    }
    .menu-icon-container {
        display: flex;
    }
    /* footer */
    .footer-links-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    /* flex utils */
    .flex-col-sm {
        flex-direction: column;
    }
    /* fonts */
    .h1 {
        font-size: 2.25rem;
    }

    .h2 {
        font-size: 1.75rem;
    }

    .h3 {
        font-size: 1.35rem;
    }
    /* cards */
    .card-50, .card-33 {
        flex: 0 1 100%;
        max-width: 100%;
    }
    /* forms */
    /* .form-holder {
        border-radius: 32px;
    } */
    /* ticker */
    .ticker-item img {
        height: 32px;
    }
    /* pricing */
    .hourly-rate {
        font-size: 3rem;
    }
    .compare-rate {
        font-size: 1.5rem;
    }
    /* featured work */
    .featured-work-card-2-spacer {
        height: 100px;
    }

    /* .hero .layer-1 .container {
        display: none;
    } */
    /* btns */
    .btn-giant {
        font-size: 2.5rem;
        padding: 40px 40px;
    }
    /* hide / show */
    .hidden-sm {
        display: none;
    }
    .visible-sm {
        display: flex;
    }
	/* project */
    .project-content .stats,
    .project-content .testimonial,
    .project-content .two-column-text,
    .project-content .honorable-mentions {
        margin-top: 48px;
        margin-bottom: 48px;
    }
    .project-content .stats:first-child,
    .project-content .two-column-text {
        margin-bottom: 48px;
    }
    .project-content .honorable-mentions:last-child {
        margin-top: 48px;
    }
	.two-column-text {
        column-count: 1;
        column-gap: 0;
    }
	.two-column-text p {
		display: inline-block;
        margin-bottom: 20px;
    }
}

/* Tiny screens */
@media screen and (max-width: 450px) {
   /* flex utils */
    .flex-col-xs {
        flex-direction: column;
    } 
    /* cards */
    .card-25 {
        flex: 0 1 100%;
        max-width: 100%;
    }
    /* featured work */
    .featured-work-card-2-spacer {
        height: 80px;
    }
}