 /* PLEASE DONT LOOK AT MY CODE - this was made in a rush */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
button {
    font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
    
}
/* http://meyerweb.com/eric/tools/css/reset/ 
    v2.0 | 20110126
    License: none (public domain)
 */
 
 html, body, div, span, applet, object, iframe,
 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
 a, abbr, acronym, address, big, cite, code,
 del, dfn, em, img, ins, kbd, q, s, samp,
 small, strike, strong, sub, sup, tt, var,
 b, u, i, center,
 dl, dt, dd, ol, ul, li,
 fieldset, form, label, legend,
 table, caption, tbody, tfoot, thead, tr, th, td,
 article, aside, canvas, details, embed, 
 figure, figcaption, footer, header, hgroup, 
 menu, nav, output, ruby, section, summary,
 time, mark, audio, video {
     margin: 0;
     padding: 0;
     border: 0;
     font-size: 100%;
     font: inherit;
     vertical-align: baseline;
 }
 /* HTML5 display-role reset for older browsers */
 article, aside, details, figcaption, figure, 
 footer, header, hgroup, menu, nav, section {
     display: block;
 }
 body {
    line-height: 160%!important;
    overflow-x: hidden;
 }
 ol, ul {
     list-style: none;
 }
 blockquote, q {
     quotes: none;
 }
 blockquote:before, blockquote:after,
 q:before, q:after {
     content: '';
     content: none;
 }
 table {
     border-collapse: collapse;
     border-spacing: 0;
 }


/* Custom css */
:root {
    --background: #f2f2f2;
    --brand: #549183;
    --brand-strong: #398e5f;
    --brand-text: #549183;
    --secondary: #9aedd9;
    --secondary-dark: #78d1bd;
    --secondary-light: #b9feee;
    --link: #247448;
    --white: #f8f8f8;
    --purewhite: #fff;
    --dark-font: #cecece;
    --darker-font: #0e0e0e;
    --medium-font: #232323;
    --lighter-font: #343434;
    --font: #161616;
  }

@font-face {
    font-family: 'Rethink Sans';
    src: url('fonts/Rethink_Sans/RethinkSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 500;
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'Quicksand';
    src: url('fonts/Quicksand/Quicksand-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 800;
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'Nothing You Could Do';
    src: url('fonts/Nothing_You_Could_Do/NothingYouCouldDo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

body {
    background: var(--background);
    background: linear-gradient(340deg, rgb(255, 255, 255) 0%, rgb(238, 235, 238) 6%, rgb(236, 244, 255) 25%, rgb(252, 238, 254) 34%, rgb(255, 255, 255) 100%);
    color: var(--font);
    display: flex;
    font-family: "Quicksand", serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 300;
    flex-direction: column;
    height: 100%;
    overflow-x: hidden;
    min-height: 100vh;
}

.mb0 {
    margin-bottom: 0!important;
}

p {
    margin-bottom: .8em!important;
    line-height: 160%!important;
}

li {
    line-height: 160%!important;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
    font-family: "Rethink Sans", "Quicksand", serif!important;
    font-weight: 500!important;
    margin-bottom: .8em!important;
}
h4, .h4, h5, .h5 {
    font-weight: 400!important;
}

h1, .h1 {
    font-size: 28px!important;
}

h2, .h2 {
    font-size: 24px!important;
    color: var(--medium-font);
}

h3, .h3 {
    font-size: 20px!important;
    color: var(--medium-font);
}

h4, .h4 {
    font-size: 16px!important;
    color: var(--medium-font);
}


.button, button {
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid;
    display: inline-block;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    column-gap: 8px;
    font-family: "Rethink Sans", "Quicksand", serif!important;
}

.button svg, button svg {
    width: 12px;
}

.button--primary {
    background: linear-gradient(37deg, #247448, #21664d);
    color: var(--white);
    transition: all .3s;
    flex-shrink: 0;
    border-color: var(--brand);
}

.button--primary:hover, .button--primary:active, .button--primary:focus {
    background: linear-gradient(37deg, #14492c, #21664d);
    box-shadow: 0 8px 10px #0d3e085c;
}

.button--primary svg {
    fill: var(--white);
}

.button--secondary {
    background: #ffffff08;
    color: var(--brand-text);
    transition: all .3s;
    flex-shrink: 0;
    border-color: var(--brand);
}

.button--secondary svg {
    fill: var(--brand-strong);
}

.button--secondary:hover, .button--secondary:active, .button--secondary:focus {
    background: #e9fff12a;
    box-shadow: 0 8px 10px #c4c4c45c;
}

.button--ghost {
    color: var(--brand-text);
    transition: all .3s;
    display: inline-block;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    column-gap: 8px;
    font-family: "Rethink Sans", "Quicksand", serif!important;
}
.button--ghost svg {
    fill: var(--brand-strong);
    width: 12px;

}

a.logo.link {
    font-family: "Nothing You Could Do", serif;
    font-weight: 400;
    font-style: normal;
    color: var(--medium-font)!important;
    height: 44px;
    display: flex;
    align-items: center;
}

a.logo::after {
    display: none!important;
}

.logo span {
    background-color: var(--brand);
    width: 6px;
    height: 6px;
    border-radius: 2px;
    bottom: 17px;
    position: absolute;
    right: -12px;
    transition: all .3s;
    display: flex!important;
    align-items: center;
    justify-content: center;
}

.logo span svg{
    height: 0;
    width: 0;
    color: transparent;
    fill: var(--white);
}

.logo:hover span, .logo:active span, .logo:focus span {
    width: 14px;
    height: 14px;
    right: -20px;
}
.logo:hover span svg, .logo:active span svg, .logo:focus svg {
    width: 10px;
    height: 10px;
}

a.link {
    color: var(--link);
    text-decoration: none;
    display: inline-block;
    position: relative;
}

a.link::after {
    content: "";
    display: inline-block;
    height: 1px;
    background-color: var(--link);
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    transition: all .3s;
}

a.link:hover:after {
    height: 2px;
    bottom: -3px;
}

a.link:active:after {
    height: 2px;
    bottom: -3px;
    width: calc(100%)+4px;
}

.brand-text {
    color: var(--brand-text);
}

.brand {
    color: var(--brand);
    fill: var(--brand);
}

.cv-prompt {
    background: rgb(0 0 0 / 30%);
}
    .cv-prompt_intro {
        color: var(--brand-text);
    }

body > main, body > section, body > header, body > footer {
    align-items: center;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
    margin-bottom: 100px;
}

main > section, header > .container, footer > .container, .cv-prompt > .container, main > section > .container > .portfolio {
    padding: 32px 24px;
    box-sizing: border-box; 
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main > section > .container > .portfolio {
    align-items: flex-start;
    padding: 0;
}

main > section.coloured {
    background: #a7c0ff12;
    padding: 64px 24px;
}

main > section.white {
    background: #ffffff97;
    padding: 64px 24px;
}

header .header {
    display: flex;
    justify-content: space-between!important;
    max-width: unset;
    flex-direction: row;
}

/* Burger menu button - hidden on desktop */
.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 14px 12px;
    box-sizing: border-box;
    z-index: 1001; /* above nav */
    transition: transform 0.3s ease;
}

.burger-menu:hover, .burger-menu.active{
    background-color: var(--secondary);
}

.burger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--medium-font);
    border-radius: 1.5px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hide nav on mobile by default */
/* header nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 16px 24px;
    box-sizing: border-box;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 1000;
} */

/* Hover/focus: subtle slide and scale animation */
.burger-menu:hover .burger-bar:nth-child(1),
.burger-menu:focus-visible .burger-bar:nth-child(1) {
    transform: translateX(3px) scaleX(1.1);
}

.burger-menu:hover .burger-bar:nth-child(2),
.burger-menu:focus-visible .burger-bar:nth-child(2) {
    transform: translateX(-3px) scaleX(0.9);
}

.header nav ul {
    display: flex;
    flex-direction: row;
    column-gap: 12px;
    list-style: none!important;
}

.header nav .link {
    padding: 6px 6px;
    min-height: calc(44px - 12px);
    color: var(--medium-font)!important;
    display: flex;
    align-items: center;
}

.header nav .link::after{
    background-color: transparent;
}
.header nav .link:hover::after{
    background-color: var(--medium-font);
}

.header nav .show-for-desktop {
    display: none;
}

.header nav .screen-too-small {
    display: none;
}
@media only screen and (min-width: 690px) {
    .header nav .show-for-desktop {
        display: inline-flex;
    }
    .header nav .show-for-mobile {
        display: none;
    }
    .header nav .screen-too-small {
        display: inline-flex;
    }
}
@media only screen and (min-width: 420px) {
    .header nav .screen-too-small {
        display: inline-flex;
    }
}

/* Show mobile-only classes */
.show-for-mobile {
    display: inline;
}

header nav {
    display: none;
}

@media (max-width: 819.98px) {
    header nav.active {
        display: inline-flex;
    }

    .header nav ul {
        flex-direction: column;
        margin-left: 0;
        padding: 8px;
    }
    
    header nav {
        position: absolute;
        top: 76px;
        right: 24px;
        border-radius: 2px;
        box-shadow: 0 4px 10px #5d56fd5c;
        max-width: 272px;
        background: var(--white);
        z-index: 1;
    }

    header nav ul li {
        margin-bottom: 0!important;
        flex-direction: column;
    }
}

/* Hide burger menu on desktop */
@media (min-width: 820px) {

    header nav {
        display: inline-flex;
    }
    .burger-menu {
        display: none;
    }
    
    header nav ul {
        flex-direction: row;
        column-gap: 12px;
        row-gap: 0;
    }
    .show-for-desktop {
        display: inline-flex !important;
    }
    .show-for-mobile {
        display: none !important;
    }

    header nav .cv .link {
        background: linear-gradient(120deg, #508B7F, #4a8075);
        color: white!important;
        border-radius: 8px;
    }
}

/* Nav ul vertical on mobile */
header nav ul {
    flex-direction: column;
    row-gap: 12px;
}

/* Links full width on mobile */
header nav ul li a.link {
    display: block;
    padding: 12px 0;
    font-size: 18px;
}


main > .container > section, main > section {
    margin-bottom: 48px;
}

.sub-section {
    margin-bottom: 46px;
}

.sub-section * {
    width: 100%;
}

.container {
    max-width: 1300px;
    width: 100%;
}

.medium-font {
    color: var(--medium-font);
}

section.secondary-hero {
    margin-bottom: 0!important;
} 

.hero-display {
    font-size: 20px;
    max-width: 700px;
    line-height: 140% !important;
}

.hero-display > span, 
.hero-display > em,
.hero-display > strong {
    color: var(--brand-strong)!important;
}

.hero {
    align-items: flex-start !important
}

@media only screen and (min-width: 400px) {
    .hero {
        padding: 100px 0 48px!important;
        max-width: 800px;
    }

    .hero.secondary-hero {
        padding: 100px 0 50px!important;
    }
}
h1.home_h1 {
    font-weight: 400!important;
    font-size: 48px!important;
    line-height: 1;
    margin-bottom: 16px!important;
}

h1.home_h1 span {
    color: #549183;
    background: -webkit-linear-gradient(120deg, #549183, #4c8578);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(40px 20px 75px #549183);
}

h2.home_h2 {
    color: var(--lighter-font);
    font-weight: 400!important;
    font-size: 34px!important;
    line-height: 1;
    margin-bottom: 24px;
}

@media only screen and (min-width: 370px) {
    h1.home_h1 {
        font-size: 48px!important;
    }
}

@media only screen and (min-width: 680px) {
    h1.home_h1 {
        font-size: 72px!important;
    }
}

h1.home_h1 span {
    font-weight: 600!important;
}

.home_intro {
    color: var(--medium-font);
    font-size: 16px;
    max-width: 700px;
    margin-bottom: .5em;
}
.home_intro strong {
    color: var(--font);
    font-weight: 400;
}

@media only screen and (min-width: 400px) {
    .home_intro {
        font-size: 24px;
    }
}

.home_intro-sub {
    font-size: 16px;
    color: var(--medium-font);
}
.home_intro-sub .link {
    opacity: 0.6;
}

.design-home {
    display: flex;
    flex-direction: column;
    column-gap: 16px;
    row-gap: 16px;
}

@media only screen and (min-width: 700px) {
    .design-home {
        flex-direction: row!important;
        align-items: stretch!important;
    }
}

.design-home--item {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.design-home--item:nth-of-type(2) {
    background: #f2e7ff2e;
}

.design-home--item div > svg {
    width: 44px;
    padding: 8px;
    background: #99a9ff;
    border-radius: 16px;
    border: 1px solid #6ea7ff;
    fill: white;
    box-shadow: 0px 3px 4px 0px #00000029;
    margin-bottom: 12px;
    filter: drop-shadow(3px 23px 20px rgba(0, 0, 0, .05));
}

.design-design {
    display: flex;
    flex-direction: column;
    column-gap: 16px;
    row-gap: 16px;
    max-width: 850px;
}

@media only screen and (min-width: 700px) {
    .design-design {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.design-design--item {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    border: none!important;
}

.design-design--item.highlight {
    width: 100%;
    max-width: initial!important;
}

@media only screen and (min-width: 700px) {
    .design-design--item {
        width: calc(50% - 11px);
    }
}

.badge {
    font-size: small;
    padding: 8px;
    background: var(--secondary);
    border-radius: 6px;
}

.philosophy-list-home {
    display: flex;
    column-gap: 16px;
    row-gap: 16px;
    flex-wrap: wrap;
}

.philosophy-list-home--item {
    padding: 12px;
    background: #ffffff0f;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px;
    flex-basis: calc(33.33% - 48px);
    min-width: calc(33.33% - 48px);
    max-width: calc(33.33% - 48px);
}

.portfolio_home {
    justify-content: start;
}

.portfolio_items {
    display: flex;
    column-gap: 16px;
    justify-content: start;
    flex-direction: column;
    row-gap: 12px;
}

.portfolio_items-more {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.portfolio_item_logo {
    transition: .3s;
    display: inline-flex;
}

.portfolio_item_logo img {
    border-radius: 16px;
    width: 52px; 
    /* To make these 62px then we need to 
       adapt the media query that changes the width of the boxes 
       to stop the role going onto two lines. 
       
       When we do this, there doesnt seem a reason that the two 
       tags need to be on two lines at sizes bigger than the smallest screens.
       */
    height: 52px;
    box-shadow: 0px 3px 4px 0px #00000029;
    border-style: solid;
    border-width: 1px;
    box-sizing: border-box;
}

.portfolio_item_image_container {
    display: flex;
    justify-content: flex-end;
}

@media only screen and (min-width: 900px) {
    .portfolio_item_image_container {
        margin-top: -130px;
    }
}

.portfolio_item_image {
    transition: transform .3s;
    max-height: 400px;
    transform: translate(130px, -8px);
    max-height: 270px!important;
    object-fit: cover;
    object-position: top;
    border-radius: 20px 0 0 20px;
    filter: drop-shadow(-10px -10px 7px #e1e8eb);
    height: 140px;
}

@media only screen and (min-width: 850px) {
    .portfolio_item_image {
        height: initial;
    }
}

@media only screen and (min-width: 1200px) {
    .portfolio_item_image {
        max-height: 100%;
    }
}

.portfolio_item_button {
    position: relative;
    overflow: hidden;
    display: flex;
    background: none;
    border: 1px solid rgb(53 45 62 / 8%);
    border-radius: 0;
    padding: 0;
    background: var(--purewhite);
    transition: 0.3s;
    cursor: pointer;
    height: 100%;
    width: 100%;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0px 5px 12px #00000003;
}

.portfolio_item_button:hover .portfolio_item_image, .portfolio_item_button:active .portfolio_item_image, .portfolio_item_button:focus .portfolio_item_image {
    transform: scale(105%) translate(120px, -12px);
}
.portfolio_item_button:hover .portfolio_item_logo, .portfolio_item_button:active .portfolio_item_logo, .portfolio_item_button:focus .portfolio_item_logo {
    transform: scale(1.1);
}
.portfolio_item_button:hover .portfolio_item_logo img, .portfolio_item_button:active .portfolio_item_logo img, .portfolio_item_button:focus .portfolio_item_logo img{
    box-shadow: 0px 3px 12px 0px #00000029;
}

.portfolio_item_content {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: start;
    text-align: left;
    width: calc(100% - 48px);
    row-gap: 16px;
}

.portfolio_item_content-body {
    gap: 4px;
    display: flex;
    flex-direction: column;
}

.portfolio_item p {
    color: var(--medium-font);
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.portfolio_item_content-header {
    display: inline-flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 12px;
    width: calc(100% - 40px);
}

.portfolio_item_content-header-details {
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

@media only screen and (min-width: 550px) {
    .portfolio_item_content-header-details {
        flex-direction: row;
        align-items: center;
    }
}

.portfolio_item--main {
    margin-bottom: 12px;
}


.portfolio_item--main > .portfolio_item_button {
    min-height: 400px;
}

@media only screen and (min-width: 1000px) {
    .portfolio_item_content-header {
        flex-direction: column;
    }

    .portfolio_item--main {
        align-self: flex-start;
    }
    
    .portfolio_item--main .portfolio_item_image {
        display: block;
    }
}

.portfolio_item--main .portfolio_item_content-header {
    flex-direction: column;
}

.portfolio_item_content--dark h3, .portfolio_item_content--dark p{
    color: var(--darker-font)!important;
}

.portfolio_item {
    flex-basis: 100%;
}

@media only screen and (min-width: 850px) {
    .portfolio_item {
        flex-basis: calc(50% - 8px);
    }
}

@media only screen and (min-width: 1250px) {
    .portfolio_item {
        flex-basis: calc(33.33% - 11px);
    }
}

.portfolio_item_tags {
    display: inline-flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}

@media only screen and (min-width: 430px) {
    .portfolio_item_tags {
        flex-direction: row;
    }
}

.portfolio_item a {
    text-decoration: none;
}

.portfolio_item a:hover {
    transform: scale(1.02);
}

.portfolio_item a .portfolio_item_icon {
    position: absolute;
    top: 26px;
    right: 36px;
    width: 0;
    height: 0;
    fill: transparent;
    transition: all .3s ease;
}

.portfolio_item a:hover .portfolio_item_icon, .portfolio_item a:active .portfolio_item_icon, .portfolio_item a:focus .portfolio_item_icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    fill: var(--darker-font);
}
.portfolio_item a:hover .portfolio_item_icon--dark, .portfolio_item a:active .portfolio_item_icon--dark, .portfolio_item a:focus .portfolio_item_icon--dark {
    fill: var(--darker-font)!important;
}

.what-i-do {
    width: 100%;
    box-sizing: border-box;
}

@media only screen and (min-width: 1200px) {
    .what-i-do {
        margin-bottom: 42px;
    }
}

.what-i-do_list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 6px;
    row-gap: 6px;
    list-style:none!important;
    margin-left: 0!important;
    padding-bottom: 24px;
}

.what-i-do_list li, .tag {
    padding: 4px 10px;
    background: #ffffff7a;
    border-radius: 100px;
    border: 1px solid var(--white);
    color: var(--font);
    display: flex;
    align-items: center;
    box-shadow: 0px 2px 8px 0px #0000000a;
    font-weight: bolder;
}

.what-i-do_list li.tag--strong, .tag.tag--strong {
    color: var(--white);
    background: var(--brand-strong);
    font-family: "Rethink Sans", "Quicksand", serif;
}

.my-processes span {
    display: block;
    color: var(--medium-font);
}

.about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    font-size: 18px;
}

.about_content {
    max-width: 600px;
}
.portrait {
    border-radius: 100%;
    filter: saturate(0) grayscale(1) contrast(2);
    width: 77px;
    height: 77px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.contact {
    display: flex;
    flex-direction: column;
    margin-top: 48px;
    color: var(--medium-font);
}

.contact a {
    display: inline-block;
    width: fit-content;
    margin-bottom: 1em;
}


@media only screen and (min-width: 920px) {
    .about {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .about_content {
        max-width: 600px;
    }
    .portrait {
        border-radius: 100%;
        filter: saturate(0) grayscale(1) contrast(2);
        width: 270px;
        height: 270px;
    }
}

@media only screen and (min-width: 1050px) {
    .portrait {
        width: min-content;
        height: min-content;
        max-width: 400px;
    }
}

.secondary_h1 {
    font-size: 48px!important;
    margin-bottom: .4em!important;
    line-height: 98%;
}
.secondary_h2 {
    font-weight: 300!important;
}

.secondary_sub {
    max-width: 750px;
}

.portfolio > section {
    margin-bottom: 92px;
}

.portfolio > section > *:not(.wide) {
    max-width: 750px;
}

.portfolio > section > ul:not(.wide),
.portfolio > section > ol:not(.wide) {
    max-width: 735px;
}

.portfolio .what-i-do_list {
    margin-bottom: 24px;
}

strong {
    font-weight: 500;
}

ul {
    list-style: inside!important;
    margin-left: 15px; /* if change this then change line with this text - ABCDEFG */
}

ol, ul {
    margin-bottom: 24px!important;
}

ol li, ul li {
    list-style-position: outside;
}

ol ul, ol ol, ul ol, ul ul {
    margin-bottom: 12px !important;
    padding-left: 12px;
}

ol li {
    counter-increment: count;
}

ul li:not(.what-i-do_list li),
ol li {
    margin-bottom: 14px;
}

ol li:before {
    color: #549183;
    content: counter(count) ". ";
    min-width: 2px;
    display: inline-block;
    font-weight: 800;
}

ol {
    list-style: none;
    counter-reset: count;
}

ol:last-child, ul:last-child, ol li:last-child, ul li:last-child {
    margin-bottom: 0!important;
}

.figma-iframe iframe{
    width: 100%;
}
.squared-box {
    background: #e4d0fc2e;
    border-radius: 8px;
    border: 1px solid rgb(53 45 62 / 15%);
    padding: 24px;
    margin-bottom: 24px;
}

.portfolio > section > .squared-box {
    max-width: calc(750px - 48px);
}

.portfolio_images {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.portfolio_images img, .portfolio_image {
    width: 100%;
    background-color: var(--purewhite);
}

.portfolio_images--scroll {
    display: flex;
    align-items: start;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0 24px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    column-gap: 16px;
    margin-bottom: 92px;
    position: relative;
    padding-top: 42px;
}

@media only screen and (min-width: 1340px) {
    .portfolio_images--scroll {
        padding-left: calc(50vw - 1300px / 2 + 4px);
        padding-right: 24px;
    }
}

@media only screen and (min-width: 600px) {
    .portfolio_images--scroll img {
        width: calc(100% - 24px );
        max-width: 800px;
    }
}

.portfolio_images--scroll::-webkit-scrollbar {
    display: none;
}

.scroll-indicator {
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(34, 34, 34, 0.2);
    background: rgba(35, 35, 35, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scroll-indicator 1s linear infinite alternate;
    position: absolute;
    top: 0;
}

@keyframes scroll-indicator {
    0% {
        background-color: hsl(293, 100%, 97%);
    }
    100% {
        background-color: hsl(200, 72%, 89%);
    }
}

.portfolio_image {
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 18px;
        box-shadow: 0 3px 3px #eeeeee;
}

@media only screen and (min-width: 1200px) {
    .testimonials-home {
        margin-bottom: 100px;
    }
}

.testimonials-home-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    row-gap: 14px;
}

.testimonial-home-cta {
    background: linear-gradient(to bottom, #ffffff00, #eaeef5);
    position: absolute;
    z-index: 1;
    display: flex;
    bottom: 0;
    width: 100%;
    justify-content: center;
    padding: 24px 0;
    border-radius: 0 0 8px 8px;
}

@media only screen and (min-width: 600px) {
    .testimonial-home-cta {
        right: 0;
        width: initial;
        padding: 0 24px;
        background: linear-gradient(to right, #ffffff00, #eaeef5);
        height: 100%;
        border-radius: 0 8px 8px 0;
    }

    .testimonials-home-flex::after {
        height: 100%;
        width: 32%;
        background: linear-gradient(to right, #ffffff00, #eaeef5);
        right: 0;
        top: 0;
        left: initial;
        bottom: initial;
    }
}

.testimonial-home-cta .button {
    align-self: center;
}

.testimonial-home, .testimonial {
    font-size: 15px;
    flex-basis: 100%;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 0;
}

.testimonial-home::before, .testimonial::before {
    content: "\201C";
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 84px;
    color: var(--dark-font);
}

@media only screen and (min-width: 600px) {
    .testimonial-home {
        flex-basis: 32%;
    }
}

.testimonial-home blockquote .quote {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-home-name, .testimonial-name{
    display: block;
    font-weight: 800;
}

.testimonial-home cite, .testimonial cite {
    display: block;
    margin-top: 12px;
    text-wrap: wrap;
}

.testimonial-home cite span {
    display: inline-block;
}

.testimonials {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    column-gap: 16px;
    margin-bottom: 92px;
    padding: 0 24px;
    padding-top: 58px;
}

@media only screen and (min-width: 1200px) {
    .testimonials {
        padding-left: calc(50vw - 1300px / 2 + 4px);
        padding-right: 24px;
    }
}

.testimonials .testimonial {
    max-width: 280px;
    flex: 0 0 auto;
}

@media only screen and (min-width: 600px) {
    .testimonials .testimonial {
        max-width: 400px;
    }
}