.blue {
    color: hsl(var(--blue));
}
.blue-back {
    background-color: hsl(var(--blue));
}

.white {
    color: hsl(var(--white));
}
.white-back {
    background-color: hsl(var(--white));
}

.black {
    color: hsl(var(--black));
}
.black-back {
    background-color: hsl(var(--black));
}

body { 
    color: hsl(var(--white-dark2)); 
    background: hsl(var(--black));
}

.site-header {
    background: linear-gradient(to bottom, hsl(var(--black)) 0%, hsl(var(--black-light1)) 100%);
	color: hsl(var(--white));
    position: relative;
}
.site-header:after {
    content: ""; 
    height: 5px;
    border-radius: 50%;
    box-shadow: 0 0 11px hsl(var(--blue));
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: auto;
    z-index: -1; 
}
.logo {
    width: 200px;
    display: flex;
    align-items: center;
}
.site-header .shopify-plus {
	width: 120px;
	justify-self: flex-end;
}
.pre-title {
    display: flex;
    flex-flow: wrap;
    gap: 0.5em;
}

.pre-title .icon {
    height: 1.5em;
    width: 1.5em;
}

.pre-title .upwork-logo {
    height: 1.5em;
    min-width: 5.5em;
}

@media screen and (max-width: 749px) {

.logo {
    width: 150px;
}

    .site-header .shopify-plus {
        width: 100px; 
    }
}


.masked {
    width: auto;
    height: 100%;
    mask-image: url('image-mask.svg');
    -webkit-mask-image: url('image-mask.svg');
    mask-repeat: no-repeat;
    mask-size: cover;
    overflow: hidden;
    display: flex;
    aspect-ratio: 1;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: absolute;
    left: 0;
    right: 0;
}