html {
    font-family: 'Clash Display', sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0px;
    scroll-behavior: smooth;
    cursor: none;
    overflow-x: hidden;
    font-family: 'Clash Display', sans-serif;
}

/* start */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    background: #ED1C24;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    z-index: 10000;
    transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,        0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    user-select: none;
    pointer-events: none;
    transform: scale(0.8);
    overflow-y: hidden;
    -webkit-transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,        0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    -moz-transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,        0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    -ms-transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,        0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    -o-transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,        0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
}

.cursor::before {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    /* background-image: url("https://www.pexels.com/photo/man-and-woman-in-front-of-church-building-14656105/"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    opacity: 0;
}

.cursor.active {
    opacity: .5;
    transform: scale(7);
    -webkit-transform: scale(7);
    -moz-transform: scale(7);
    -ms-transform: scale(7);
    -o-transform: scale(7);
}

.cursor.active::before {
    opacity: 1;
}

.cursor-follower {
    position: fixed;
    top: 50%;
    left: 50%;
    border: 2px solid #ED1C24;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    z-index: 10000;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,        0.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    user-select: none;
    pointer-events: none;
    transform: translate(4px, 4px);
    -webkit-transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,;
    -moz-transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,;
    -ms-transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,;
    -o-transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,;
}

.cursor-follower.active {
    opacity: 0.3;
    transform: scale(0);
}

/* end */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #ED1C24;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    height: 50px;
}

::selection {
    background-color: #ED1C24;
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],
template {
    display: none
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html input[type="button"],
input[type="reset"] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],
html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type='checkbox'],
input[type='radio'] {
    box-sizing: border-box;
    padding: 0
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
    height: auto
}

input[type='search'] {
    -webkit-appearance: none
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}

/* ==========================================================================
   Start of base Webflow CSS - If you're looking for some ultra-clean CSS, skip the boilerplate and see the unminified code below.
   ========================================================================== */
@font-face {
    font-family: 'webflow-icons';
    src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format('truetype');
    font-weight: normal;
    font-style: normal
}

[class^="w-icon-"],
[class*=" w-icon-"] {
    font-family: 'webflow-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.w-icon-slider-right:before {
    content: "\e600"
}

.w-icon-slider-left:before {
    content: "\e601"
}

.w-icon-nav-menu:before {
    content: "\e602"
}

.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
    content: "\e603"
}

.w-icon-file-upload-remove:before {
    content: "\e900"
}

.w-icon-file-upload-icon:before {
    content: "\e903"
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    height: 100%
}

body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333
}

img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block
}

html.w-mod-touch * {
    background-attachment: scroll !important
}

.w-block {
    display: block
}

.w-inline-block {
    max-width: 100%;
    display: inline-block
}

.w-clearfix:before,
.w-clearfix:after {
    content: " ";
    display: table;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2
}

.w-clearfix:after {
    clear: both
}

.w-hidden {
    display: none
}

.w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898ec;
    color: #fff;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0
}

input.w-button {
    -webkit-appearance: button
}

html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin-bottom: 10px
}

h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px
}

h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px
}

h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px
}

h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px
}

h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px
}

h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px
}

p {
    margin-top: 0;
    margin-bottom: 10px
}

blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #e2e2e2;
    font-size: 18px;
    line-height: 22px
}

figure {
    margin: 0;
    margin-bottom: 10px
}

figcaption {
    margin-top: 5px;
    text-align: center
}

ul,
ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px
}

.w-list-unstyled {
    padding-left: 0;
    list-style: none
}

.w-embed:before,
.w-embed:after {
    content: " ";
    display: table;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2
}

.w-embed:after {
    clear: both
}

.w-video {
    width: 100%;
    position: relative;
    padding: 0
}

.w-video iframe,
.w-video object,
.w-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0
}

button,
[type='button'],
[type='reset'] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button
}

.w-form {
    margin: 0 0 15px
}

.w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #ddd
}

.w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold
}

.w-input,
.w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc
}

.w-input:-moz-placeholder,
.w-select:-moz-placeholder {
    color: #999
}

.w-input::-moz-placeholder,
.w-select::-moz-placeholder {
    color: #999;
    opacity: 1
}

.w-input:-ms-input-placeholder,
.w-select:-ms-input-placeholder {
    color: #999
}

.w-input::-webkit-input-placeholder,
.w-select::-webkit-input-placeholder {
    color: #999
}

.w-input:focus,
.w-select:focus {
    border-color: #3898ec;
    outline: 0
}

.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
    cursor: not-allowed
}

.w-input[disabled]:not(.w-input-disabled),
.w-select[disabled]:not(.w-input-disabled),
.w-input[readonly],
.w-select[readonly],
fieldset[disabled]:not(.w-input-disabled) .w-input,
fieldset[disabled]:not(.w-input-disabled) .w-select {
    background-color: #eee
}

textarea.w-input,
textarea.w-select {
    height: auto
}

.w-select {
    background-color: #f3f3f3
}

.w-select[multiple] {
    height: auto
}

.w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px
}

.w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px
}

.w-radio:before,
.w-radio:after {
    content: " ";
    display: table;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2
}

.w-radio:after {
    clear: both
}

.w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px
}

.w-radio-input {
    margin-top: 3px
}

.w-file-upload {
    display: block;
    margin-bottom: 10px
}

.w-file-upload-input {
    width: .1px;
    height: .1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -100
}

.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
    display: inline-block;
    color: #333
}

.w-file-upload-error {
    display: block;
    margin-top: 10px
}

.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
    display: none
}

.w-file-upload-uploading-btn {
    display: flex;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid #ccc;
    background-color: #fafafa
}

.w-file-upload-file {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    margin: 0;
    padding: 8px 9px 8px 11px;
    border: 1px solid #ccc;
    background-color: #fafafa
}

.w-file-upload-file-name {
    font-size: 14px;
    font-weight: normal;
    display: block
}

.w-file-remove-link {
    margin-top: 3px;
    margin-left: 10px;
    width: auto;
    height: auto;
    padding: 3px;
    display: block;
    cursor: pointer
}

.w-icon-file-upload-remove {
    margin: auto;
    font-size: 10px
}

.w-file-upload-error-msg {
    display: inline-block;
    color: #ea384c;
    padding: 2px 0
}

.w-file-upload-info {
    display: inline-block;
    line-height: 38px;
    padding: 0 12px
}

.w-file-upload-label {
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid #ccc;
    background-color: #fafafa
}

.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
    display: inline-block;
    margin-right: 8px;
    width: 20px
}

.w-icon-file-upload-uploading {
    height: 20px
}

.w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px
}

.w-container:before,
.w-container:after {
    content: " ";
    display: table;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2
}

.w-container:after {
    clear: both
}

.w-container .w-row {
    margin-left: -10px;
    margin-right: -10px
}

.w-row:before,
.w-row:after {
    content: " ";
    display: table;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2
}

.w-row:after {
    clear: both
}

.w-row .w-row {
    margin-left: 0;
    margin-right: 0
}

.w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px
}

.w-col .w-col {
    padding-left: 0;
    padding-right: 0
}

.w-col-1 {
    width: 8.33333333%
}

.w-col-2 {
    width: 16.66666667%
}

.w-col-3 {
    width: 25%
}

.w-col-4 {
    width: 33.33333333%
}

.w-col-5 {
    width: 41.66666667%
}

.w-col-6 {
    width: 50%
}

.w-col-7 {
    width: 58.33333333%
}

.w-col-8 {
    width: 66.66666667%
}

.w-col-9 {
    width: 75%
}

.w-col-10 {
    width: 83.33333333%
}

.w-col-11 {
    width: 91.66666667%
}

.w-col-12 {
    width: 100%
}

.w-hidden-main {
    display: none !important
}

@media screen and (max-width:991px) {

    .cursor {
        display: none;
    }

    .cursor-follower {
        display: none;
    }

    .w-container {
        max-width: 728px
    }

    .w-hidden-main {
        display: inherit !important
    }

    .w-hidden-medium {
        display: none !important
    }

    .w-col-medium-1 {
        width: 8.33333333%
    }

    .w-col-medium-2 {
        width: 16.66666667%
    }

    .w-col-medium-3 {
        width: 25%
    }

    .w-col-medium-4 {
        width: 33.33333333%
    }

    .w-col-medium-5 {
        width: 41.66666667%
    }

    .w-col-medium-6 {
        width: 50%
    }

    .w-col-medium-7 {
        width: 58.33333333%
    }

    .w-col-medium-8 {
        width: 66.66666667%
    }

    .w-col-medium-9 {
        width: 75%
    }

    .w-col-medium-10 {
        width: 83.33333333%
    }

    .w-col-medium-11 {
        width: 91.66666667%
    }

    .w-col-medium-12 {
        width: 100%
    }

    .w-col-stack {
        width: 100%;
        left: auto;
        right: auto
    }
}

@media screen and (max-width:767px) {
    .w-hidden-main {
        display: inherit !important
    }

    .w-hidden-medium {
        display: inherit !important
    }

    .w-hidden-small {
        display: none !important
    }

    .w-row,
    .w-container .w-row {
        margin-left: 0;
        margin-right: 0
    }

    .w-col {
        width: 100%;
        left: auto;
        right: auto
    }

    .w-col-small-1 {
        width: 8.33333333%
    }

    .w-col-small-2 {
        width: 16.66666667%
    }

    .w-col-small-3 {
        width: 25%
    }

    .w-col-small-4 {
        width: 33.33333333%
    }

    .w-col-small-5 {
        width: 41.66666667%
    }

    .w-col-small-6 {
        width: 50%
    }

    .w-col-small-7 {
        width: 58.33333333%
    }

    .w-col-small-8 {
        width: 66.66666667%
    }

    .w-col-small-9 {
        width: 75%
    }

    .w-col-small-10 {
        width: 83.33333333%
    }

    .w-col-small-11 {
        width: 91.66666667%
    }

    .w-col-small-12 {
        width: 100%
    }
}

@media screen and (max-width:479px) {
    .w-container {
        max-width: none
    }

    .w-hidden-main {
        display: inherit !important
    }

    .w-hidden-medium {
        display: inherit !important
    }

    .w-hidden-small {
        display: inherit !important
    }

    .w-hidden-tiny {
        display: none !important
    }

    .w-col {
        width: 100%
    }

    .w-col-tiny-1 {
        width: 8.33333333%
    }

    .w-col-tiny-2 {
        width: 16.66666667%
    }

    .w-col-tiny-3 {
        width: 25%
    }

    .w-col-tiny-4 {
        width: 33.33333333%
    }

    .w-col-tiny-5 {
        width: 41.66666667%
    }

    .w-col-tiny-6 {
        width: 50%
    }

    .w-col-tiny-7 {
        width: 58.33333333%
    }

    .w-col-tiny-8 {
        width: 66.66666667%
    }

    .w-col-tiny-9 {
        width: 75%
    }

    .w-col-tiny-10 {
        width: 83.33333333%
    }

    .w-col-tiny-11 {
        width: 91.66666667%
    }

    .w-col-tiny-12 {
        width: 100%
    }
}

.w-widget {
    position: relative
}

.w-widget-map {
    width: 100%;
    height: 400px
}

.w-widget-map label {
    width: auto;
    display: inline
}

.w-widget-map img {
    max-width: inherit
}

.w-widget-map .gm-style-iw {
    text-align: center
}

.w-widget-map .gm-style-iw>button {
    display: none !important
}

.w-widget-twitter {
    overflow: hidden
}

.w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: #fff;
    border: #758696 solid 1px;
    border-radius: 3px
}

.w-widget-twitter-count-shim * {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
    position: relative;
    font-size: 15px;
    line-height: 12px;
    text-align: center;
    color: #999;
    font-family: serif
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
    position: relative;
    display: block
}

.w-widget-twitter-count-shim.w--large {
    width: 36px;
    height: 28px
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 18px
}

.w-widget-twitter-count-shim:not(.w--vertical) {
    margin-left: 5px;
    margin-right: 8px
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
    margin-left: 6px
}

.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
    top: 50%;
    left: 0;
    border: solid transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
    border-color: rgba(117, 134, 150, 0);
    border-right-color: #5d6c7b;
    border-width: 4px;
    margin-left: -9px;
    margin-top: -4px
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
    border-width: 5px;
    margin-left: -10px;
    margin-top: -5px
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
    border-color: hsla(0, 0%, 100%, 0);
    border-right-color: #fff;
    border-width: 4px;
    margin-left: -8px;
    margin-top: -4px
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
    border-width: 5px;
    margin-left: -9px;
    margin-top: -5px
}

.w-widget-twitter-count-shim.w--vertical {
    width: 61px;
    height: 33px;
    margin-bottom: 8px
}

.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.w-widget-twitter-count-shim.w--vertical:before {
    border-color: rgba(117, 134, 150, 0);
    border-top-color: #5d6c7b;
    border-width: 5px;
    margin-left: -5px
}

.w-widget-twitter-count-shim.w--vertical:after {
    border-color: hsla(0, 0%, 100%, 0);
    border-top-color: #fff;
    border-width: 4px;
    margin-left: -4px
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 22px
}

.w-widget-twitter-count-shim.w--vertical.w--large {
    width: 76px
}

.w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: #fff
}

.w-background-video>video {
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    right: -100%;
    bottom: -100%;
    top: -100%;
    left: -100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -100
}

.w-background-video>video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none
}

.w-background-video--control {
    position: absolute;
    bottom: 1em;
    right: 1em;
    background-color: transparent;
    padding: 0
}

.w-background-video--control>[hidden] {
    display: none !important
}

.w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #ddd;
    clear: both;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: transparent
}

.w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap
}

.w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left
}

.w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: transparent
}

.w-slider-nav.w-round>div {
    border-radius: 100%
}

.w-slider-nav.w-num>div {
    width: auto;
    height: auto;
    padding: .2em .5em;
    font-size: inherit;
    line-height: inherit
}

.w-slider-nav.w-shadow>div {
    box-shadow: 0 0 3px rgba(51, 51, 51, 0.4)
}

.w-slider-nav-invert {
    color: #fff
}

.w-slider-nav-invert>div {
    background-color: rgba(34, 34, 34, 0.4)
}

.w-slider-nav-invert>div.w-active {
    background-color: #222
}

.w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: hsla(0, 0%, 100%, 0.4);
    cursor: pointer;
    margin: 0 3px .5em;
    transition: background-color 100ms, color 100ms
}

.w-slider-dot.w-active {
    background-color: #fff
}

.w-slider-dot:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff
}

.w-slider-dot:focus.w-active {
    box-shadow: none
}

.w-slider-arrow-left,
.w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: #fff;
    font-size: 40px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.w-slider-arrow-left [class^='w-icon-'],
.w-slider-arrow-right [class^='w-icon-'],
.w-slider-arrow-left [class*=' w-icon-'],
.w-slider-arrow-right [class*=' w-icon-'] {
    position: absolute
}

.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
    outline: 0
}

.w-slider-arrow-left {
    z-index: 3;
    right: auto
}

.w-slider-arrow-right {
    z-index: 4;
    left: auto
}

.w-icon-slider-left,
.w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em
}

.w-slider-aria-label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.w-slider-force-show {
    display: block !important
}

.w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900
}

.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap
}

.w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px
}

.w-dropdown-toggle:focus {
    outline: 0
}

.w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em
}

.w-dropdown-list {
    position: absolute;
    background: #ddd;
    display: none;
    min-width: 100%
}

.w-dropdown-list.w--open {
    display: block
}

.w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222
}

.w-dropdown-link.w--current {
    color: #0082f3
}

.w-dropdown-link:focus {
    outline: 0
}

@media screen and (max-width:767px) {
    .w-nav-brand {
        padding-left: 10px
    }
}

.w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0)
}

.w-lightbox-backdrop,
.w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch
}

.w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden
}

.w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0
}

.w-lightbox-view:before {
    content: "";
    height: 100vh
}

.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
    height: 86vh
}

.w-lightbox-frame,
.w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle
}

.w-lightbox-figure {
    position: relative;
    margin: 0
}

.w-lightbox-group .w-lightbox-figure {
    cursor: pointer
}

.w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none
}

.w-lightbox-image {
    display: block;
    float: none;
    max-width: 100vw;
    max-height: 100vh
}

.w-lightbox-group .w-lightbox-image {
    max-height: 86vh
}

.w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s
}

.w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==")
}

.w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+")
}

.w-lightbox-close {
    right: 0;
    height: 2.6em;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px
}

.w-lightbox-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1vh;
    line-height: 0;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden
}

.w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    box-sizing: content-box;
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0)
}

.w-lightbox-active {
    opacity: .3
}

.w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden
}

.w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0
}

.w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear
}

.w-lightbox-spinner:after {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    border: 3px solid transparent;
    border-bottom-color: #fff;
    border-radius: 50%
}

.w-lightbox-hide {
    display: none
}

.w-lightbox-noscroll {
    overflow: hidden
}

@media (min-width:768px) {
    .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh
    }

    .w-lightbox-view,
    .w-lightbox-view:before {
        height: 96vh
    }

    .w-lightbox-group,
    .w-lightbox-group .w-lightbox-view,
    .w-lightbox-group .w-lightbox-view:before {
        height: 84vh
    }

    .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh
    }

    .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh
    }

    .w-lightbox-left,
    .w-lightbox-right {
        display: block;
        opacity: .5
    }

    .w-lightbox-close {
        opacity: .8
    }

    .w-lightbox-control:hover {
        opacity: 1
    }
}

.w-lightbox-inactive,
.w-lightbox-inactive:hover {
    opacity: 0
}

.w-richtext:before,
.w-richtext:after {
    content: " ";
    display: table;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2
}

.w-richtext:after {
    clear: both
}

.w-richtext[contenteditable="true"]:before,
.w-richtext[contenteditable="true"]:after {
    white-space: initial
}

.w-richtext ol,
.w-richtext ul {
    overflow: hidden
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after {
    outline: 2px solid #2895f7
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7
}

.w-richtext figure.w-richtext-figure-type-video>div:after,
.w-richtext figure[data-rt-type="video"]>div:after {
    content: '';
    position: absolute;
    display: none;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0
}

.w-richtext figure {
    position: relative;
    max-width: 60%
}

.w-richtext figure>div:before {
    cursor: default !important
}

.w-richtext figure img {
    width: 100%
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
    opacity: .6
}

.w-richtext figure div {
    font-size: 0px;
    color: transparent
}

.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type="image"] {
    display: table
}

.w-richtext figure.w-richtext-figure-type-image>div,
.w-richtext figure[data-rt-type="image"]>div {
    display: inline-block
}

.w-richtext figure.w-richtext-figure-type-image>figcaption,
.w-richtext figure[data-rt-type="image"]>figcaption {
    display: table-caption;
    caption-side: bottom
}

.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type="video"] {
    width: 60%;
    height: 0
}

.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type="video"] iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.w-richtext figure.w-richtext-figure-type-video>div,
.w-richtext figure[data-rt-type="video"]>div {
    width: 100%
}

.w-richtext figure.w-richtext-align-center {
    margin-right: auto;
    margin-left: auto;
    clear: both
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image>div,
.w-richtext figure.w-richtext-align-center[data-rt-type="image"]>div {
    max-width: 100%
}

.w-richtext figure.w-richtext-align-normal {
    clear: both
}

.w-richtext figure.w-richtext-align-fullwidth {
    width: 100%;
    max-width: 100%;
    text-align: center;
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: auto
}

.w-richtext figure.w-richtext-align-fullwidth>div {
    display: inline-block;
    padding-bottom: inherit
}

.w-richtext figure.w-richtext-align-fullwidth>figcaption {
    display: block
}

.w-richtext figure.w-richtext-align-floatleft {
    float: left;
    margin-right: 15px;
    clear: none
}

.w-richtext figure.w-richtext-align-floatright {
    float: right;
    margin-left: 15px;
    clear: none
}

.w-nav {
    position: relative;
    background: #ddd;
    z-index: 1000
}

.w-nav:before,
.w-nav:after {
    content: " ";
    display: table;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2
}

.w-nav:after {
    clear: both
}

.w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333
}

.w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto
}

.w-nav-link.w--current {
    color: #0082f3
}

.w-nav-menu {
    position: relative;
    float: right
}

[data-nav-menu-open] {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #c8c8c8;
    text-align: center;
    overflow: visible;
    min-width: 200px
}

.w--nav-link-open {
    display: block;
    position: relative
}

.w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%
}

.w-nav-overlay [data-nav-menu-open] {
    top: 0
}

.w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto
}

.w-nav[data-animation="over-left"] .w-nav-overlay,
.w-nav[data-animation="over-left"] [data-nav-menu-open] {
    right: auto;
    z-index: 1;
    top: 0
}

.w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto
}

.w-nav[data-animation="over-right"] .w-nav-overlay,
.w-nav[data-animation="over-right"] [data-nav-menu-open] {
    left: auto;
    z-index: 1;
    top: 0
}

.w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.w-nav-button:focus {
    outline: 0
}

.w-nav-button.w--open {
    background-color: #c8c8c8;
    color: #fff
}

.w-nav[data-collapse="all"] .w-nav-menu {
    display: none
}

.w-nav[data-collapse="all"] .w-nav-button {
    display: block
}

.w--nav-dropdown-open {
    display: block
}

.w--nav-dropdown-toggle-open {
    display: block
}

.w--nav-dropdown-list-open {
    position: static
}

@media screen and (max-width:991px) {
    .w-nav[data-collapse="medium"] .w-nav-menu {
        display: none
    }

    .w-nav[data-collapse="medium"] .w-nav-button {
        display: block
    }
}

@media screen and (max-width:767px) {
    .w-nav[data-collapse="small"] .w-nav-menu {
        display: none
    }

    .w-nav[data-collapse="small"] .w-nav-button {
        display: block
    }

    .w-nav-brand {
        padding-left: 10px
    }
}

@media screen and (max-width:479px) {
    .w-nav[data-collapse="tiny"] .w-nav-menu {
        display: none
    }

    .w-nav[data-collapse="tiny"] .w-nav-button {
        display: block
    }
}

.w-tabs {
    position: relative
}

.w-tabs:before,
.w-tabs:after {
    content: " ";
    display: table;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2
}

.w-tabs:after {
    clear: both
}

.w-tab-menu {
    position: relative
}

.w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222;
    background-color: #ddd
}

.w-tab-link.w--current {
    background-color: #c8c8c8
}

.w-tab-link:focus {
    outline: 0
}

.w-tab-content {
    position: relative;
    display: block;
    overflow: hidden
}

.w-tab-pane {
    position: relative;
    display: none
}

.w--tab-active {
    display: block
}

@media screen and (max-width:479px) {
    .w-tab-link {
        display: block
    }
}

.w-ix-emptyfix:after {
    content: ""
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.w-dyn-empty {
    padding: 10px;
    background-color: #ddd
}

.w-dyn-hide {
    display: none !important
}

.w-dyn-bind-empty {
    display: none !important
}

.w-condition-invisible {
    display: none !important
}

/* ==========================================================================
      Start of custom Webflow CSS
      ========================================================================== */
.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    outline-style: solid;
    outline-width: 2px;
    outline-offset: 2px;
    outline-color: #3b79c3;
}

.w-users-userformpagewrap {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.w-users-userloginformwrapper {
    position: relative;
    margin-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
}

.w-users-userformheader {
    text-align: center;
}

.w-users-userformbutton {
    width: 100%;
    text-align: center;
}

.w-users-userformfooter {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.w-users-userformerrorstate {
    position: absolute;
    top: 100%;
    left: 0%;
    right: 0%;
    margin-left: 20px;
    margin-right: 20px;
}

.w-users-usersignupformwrapper {
    position: relative;
    margin-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
}

.w-users-userformsuccessstate {
    display: none;
}

.w-checkbox {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px;
}

.w-checkbox::before {
    content: ' ';
    display: table;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
}

.w-checkbox::after {
    content: ' ';
    display: table;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
    clear: both;
}

.w-checkbox-input {
    float: left;
    margin-bottom: 0px;
    margin-left: -20px;
    margin-right: 0px;
    margin-top: 4px;
    line-height: normal;
}

.w-checkbox-input--inputType-custom {
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-color: #ccc;
    border-bottom-color: #ccc;
    border-left-color: #ccc;
    border-right-color: #ccc;
    border-top-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-style: solid;
    width: 12px;
    height: 12px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
    background-color: #3898ec;
    border-top-color: #3898ec;
    border-bottom-color: #3898ec;
    border-left-color: #3898ec;
    border-right-color: #3898ec;
    background-image: url(https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
    box-shadow: 0px 0px 3px 1px #3898ec;
}

.w-users-usersignupverificationmessage {
    display: none;
}

.w-users-userresetpasswordformwrapper {
    position: relative;
    margin-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
}

.w-users-userupdatepasswordformwrapper {
    position: relative;
    margin-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
}

.w-users-useraccountwrapper {
    width: 100%;
    min-height: 100vh;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #f5f5f5;
}

.w-users-blockheader {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 20px;
    padding-left: 20px;
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: #e6e6e6;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #e6e6e6;
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: #e6e6e6;
    border-left-style: solid;
    border-left-width: 1px;
    border-left-color: #e6e6e6;
    background-color: #fff;
}

.w-users-blockcontent {
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #e6e6e6;
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: #e6e6e6;
    border-left-style: solid;
    border-left-width: 1px;
    border-left-color: #e6e6e6;
    background-color: #fff;
}

.w-users-useraccountformsavebutton {
    text-align: center;
    margin-right: 8px;
}

.w-users-useraccountformcancelbutton {
    text-align: center;
    background-color: #d3d3d3;
    color: #333;
}

body {
    background-color: #000;
    font-family: 'Clash Display', sans-serif;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
}

.menu-items {
    display: -ms-grid;
    display: grid;
    overflow: visible;
    width: 100%;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 63px;
    flex-direction: column;
    justify-content: start;
    justify-items: start;
    align-items: flex-start;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    -ms-grid-columns: 35% 30%;
    grid-template-columns: 35% 30%;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
}

.navbar {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    z-index: 300;
    display: flex;
    height: 0px;
    max-height: 0px;
    padding: 0px;
    justify-content: center;
    align-items: flex-start;
    background-color: hsla(0, 0%, 100%, 0);
}

.lottie-animation {
    display: flex;
    width: 32px;
    justify-content: center;
    align-items: center;
}

.menu-content {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 25;
    display: block;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr auto;
    grid-template-rows: 1fr auto;
}

.light-separator {
    width: 1px;
    margin-top: 18px;
    margin-bottom: 18px;
    background-color: hsla(0, 0%, 100%, 0.1);
}

.light-separator.dot {
    width: 36px;
    height: 1px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.menu-button {
    z-index: 1000;
    display: flex;
    width: 96px;
    height: 100%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.nav-text {
    font-family: 'Clash Display', sans-serif;
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.navbar-wrapper {
    position: relative;
    z-index: 35;
    display: -ms-grid;
    display: grid;
    width: 100%;
    height: 75px;
    margin-top: 18px;
    margin-right: auto;
    margin-left: auto;
    justify-content: space-between;
    grid-auto-columns: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    border-style: solid;
    border-width: 1px;
    border-color: hsla(0, 0%, 100%, 0.1);
    border-radius: 5px;
    background-color: #000;
    color: #fff;
}

.grid-wrapper {
    position: relative;
    z-index: 20;
    display: -ms-grid;
    display: grid;
    width: 100%;
    margin-bottom: 0px;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 16px;
    -ms-grid-columns: minmax(5vw, 1fr) minmax(auto, 1400px) minmax(5vw, 1fr);
    grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1400px) minmax(5vw, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.grid-wrapper.zero-height {
    width: 90%;
    height: 0px;
}

.nav-right {
    position: relative;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1px 1fr;
    grid-template-columns: 1fr 1px 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.page-title {
    display: flex;
    padding-right: 32px;
    justify-content: center;
    align-items: center;
    cursor: default;
}

.full-screen-menu {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: none;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background-color: #0a0909;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #fff;
}

.dot.large {
    width: 12px;
    height: 12px;
    margin-top: 12px;
    margin-right: 18px;
    margin-left: 18px;
    border-style: solid;
    border-width: 2px;
    border-color: #ed1c24;
    background-color: transparent;
}

.brand {
    z-index: 25;
    display: flex;
    margin-right: -1px;
    margin-left: -1px;
    justify-content: center;
    align-items: center;
    border-right: 1px solid hsla(0, 0%, 100%, 0.1);
    border-left: 1px solid hsla(0, 0%, 100%, 0.1);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nav-link-wrapper {
    overflow: visible;
    height: 100%;
    margin-bottom: 30px;
    line-height: 35px;
    text-decoration: none;
}

.hidden-nav-link {
    display: inline-block;
    margin-right: 15px;
    transition: font-size 200ms ease, color 200ms ease;
    font-family: 'Clash Display', sans-serif;
    color: #fff;
    font-size: 2.1rem;
    line-height: 55px;
    font-weight: 300;
    text-decoration: none;
    text-transform: uppercase;
}

.hidden-nav-link:hover {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 500;
}

.hidden-nav-container {
    overflow: hidden;
    height: 100%;
}

.hidden-nav-divider {
    width: 250px;
    height: 2px;
    margin-top: 30px;
    background-color: #fff;
    transform-origin: 0% 50%;
}

.hidden-nav-divider.sec {
    margin-top: 50px;
}

.hidden-nav-divider.third {
    width: 100%;
    margin-bottom: 30px;
}

.hidden-nav-heading {
    font-family: 'Clash Display', sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
}

.div-block {
    display: flex;
    flex-direction: column;
}

.div-block-2 {
    display: flex;
    flex-direction: column;
}

.div-block-3 {
    max-width: 60%;
}

.last-sec-container {
    display: flex;
    overflow: hidden;
    height: 30px;
    justify-content: space-between;
    align-items: center;
    grid-column-gap: 25px;
}

.nav-social-bar-container {
    margin-top: 60px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 63px;
    padding-left: 63px;
}

.portfolio-item-image {
    width: 550px;
    height: 350px;
    background-color: #000;
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63ebd2f928fdd51ecb722882_19021616.jpg");
    background-position: 50% 40%;
    background-size: cover;
}

.portfolio-item-image._1st-project {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63dc1ac89fa0e9e7e8658fc5_porfolio%20thumbnails.jpg");
}

.portfolio-item-image._3rd-project {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63f389e542772903fa8a9151_mapArtboard%201%20copy%404x.png");
}

.portfolio-item-image._4rth-project {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63f3b1cfd890143bb9b61c68_Group%203.png");
    background-position: 50% 0%;
    background-size: auto 350px;
    background-repeat: no-repeat;
}

.portfolio-item-image._5th-project {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63f3b24b156016f50d02f27c_head%20shot.png");
}

.portfolio-item-image._6th-project {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63f3b24b7effee3c3a86e8d2_armchair-furniture-sketch-plan-draft%201.png");
    background-position: 0% 50%;
}

.footer-p-tags {
    display: block;
    margin-top: 14px;
    margin-bottom: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    text-decoration: none;
}

.footer-p-tags.margin-bot {
    margin-top: 0px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.footer-p-tags.margin-bot {
    margin-bottom: 15px;
}

.footer-p-tags.links {
    margin-top: 6px;
    margin-bottom: 6px;
}

.footer-p-tags.links:hover {
    font-weight: 600;
}

.div-block-5 {
    display: flex;
    margin-top: 0px;
    margin-bottom: 0px;
    flex-direction: row;
    justify-content: flex-end;
    grid-column-gap: 25px;
}

.preloader {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 500;
    display: none;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.subtitle {
    position: relative;
    z-index: 10;
    margin-bottom: 10px;
    font-family: 'Clash Display', sans-serif;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.social-media-link {
    text-decoration: none;
}

.social-media-icon {
    font-family: 'Fa brands 400', sans-serif;
    color: #fff;
    font-size: 1.5rem;
}

.social-media-icon.behance {
    transition: color 300ms ease;
}

.social-media-icon.behance:hover {
    color: #0057f2;
}

.social-media-icon.linkedin {
    transition: color 300ms ease;
}

.social-media-icon.linkedin:hover {
    color: #0966c2;
}

.social-media-icon.deribble {
    transition: color 300ms ease;
    color: #fff;
    font-size: 1.5rem;
}

.social-media-icon.deribble:hover {
    color: #db4982;
}

.social-media-icon.instagram {
    transition: color 300ms ease;
    color: #fff;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
}

.social-media-icon.instagram:hover {
    background-image: linear-gradient(243deg, #664ece, #c7298b 34%, #f36a34 66%, #f9d475);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-media-icon.facebook {
    transition: color 300ms ease;
    color: #fff;
}

.social-media-icon.facebook:hover {
    color: #1672e6;
}

.social-media-icon.twitter {
    transition: color 300ms ease;
}

.social-media-icon.twitter:hover {
    color: #1a95e4;
}

.social-media-icon.youtube {
    transition: color 300ms ease;
}

.social-media-icon.youtube:hover {
    color: #f20000;
}

.icon {
    display: inline-block;
    font-family: 'Fa solid 900', sans-serif;
    color: #fff;
    font-size: 1.8rem;
}

.tracker {
    position: relative;
    z-index: 35;
    width: 100%;
    height: 5px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
    background-color: #ed1c24;
    transform-origin: 0% 50%;
}

.loader {
    position: static;
    display: block;
    height: 4px;
    border-radius: 2px;
    background-color: #111;
}

.loader.upper-side {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 20;
    background-color: #fff;
    transform-origin: 0% 50%;
}

.div-block-11 {
    position: relative;
}

.btn-wrapper {
    z-index: 3;
    display: flex;
    width: 45%;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
}

.btn-wrapper.footer {
    width: 100%;
    justify-content: space-between;
}

.btn-wrapper.main-btn-wrapper {
    position: absolute;
    left: auto;
    top: auto;
    right: auto;
    bottom: 10%;
}

.main-sec-sm-container.image-main {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-sec-hi-there {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #bbb8b8;
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
}

.main-sec-intro-txt {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 2.2rem;
    line-height: 39px;
    font-weight: 300;
    text-align: center;
}

.container-3 {
    background-color: #000;
}

.sec-sec-1 {
    margin-right: 100px;
    padding-right: 150px;
    font-size: 5rem;
    line-height: 4rem;
    text-align: center;
}

.sec-sec-3 {
    margin-left: 100px;
    padding-left: 150px;
    font-size: 5rem;
    line-height: 4rem;
    text-align: center;
}

.special-a-creator-txt-1 {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c716f05cfe174f695b8c70_text%20shape%201.png");
    background-position: 50% 50%;
    background-size: auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 130px;
    background-color: #000;
}

.section.design-process {
    padding-bottom: 150px;
}

.section.video-sec {
    padding-bottom: 0px;
}

.section.carousel {
    padding-bottom: 150px;
}

.section.portfolio-main-sec {
    overflow: visible;
    margin-top: 0px;
    padding-top: 120px;
}

.section.main {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/64238644ec26c1e764f2ea19_4025199e%403x%201.png");
    background-position: 0px 0px;
    background-size: auto;
}

.section.img-only-sec {
    display: none;
    justify-content: center;
    align-items: center;
}

.section.multi-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-me-txt-wrapper {
    display: flex;
    width: 55%;
    margin-bottom: 30px;
    flex-direction: column;
}

.about-me-txt-wrapper._2nd-wrapper {
    position: absolute;
    left: 210px;
    top: auto;
    bottom: 25%;
    align-items: flex-end;
}

.about-me-txt {
    font-size: 1.4rem;
    line-height: 1.5rem;
}

.about-me-txt.txt3 {
    font-weight: 300;
}

.about-me-txt.txt2 {
    font-weight: 300;
}

.about-me-txt.txt4 {
    font-weight: 300;
}

.about-me-txt.txt1 {
    font-weight: 300;
}

.about-me-h1 {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 3rem;
    line-height: 2.7rem;
    font-weight: 500;
}

.hero-wrapper {
    position: relative;
    z-index: 25;
    display: -ms-grid;
    display: grid;
    margin-top: 100px;
    margin-bottom: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
    transform: rotate(-2deg);
}

.p-tag-wrapper {
    overflow: hidden;
    height: 35px;
}

.about-me-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.about-me-sec-div {
    display: flex;
    margin-top: 169px;
    margin-bottom: 160px;
    flex-direction: column;
    align-items: center;
}

.hero-content-2 {
    position: relative;
    z-index: 35;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    padding-bottom: 18px;
    flex-direction: column;
    justify-content: end;
    justify-items: end;
    align-items: flex-end;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    color: #fff;
}

.rotating-text-wrapper {
    position: relative;
    left: 0%;
    top: 0%;
    right: auto;
    bottom: 0%;
    display: -ms-grid;
    display: grid;
    justify-content: stretch;
    justify-items: center;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    white-space: nowrap;
}

.rotating-text-wrapper.bottom-text {
    left: auto;
    right: 0px;
    display: -ms-grid;
    display: grid;
    justify-content: end;
    justify-items: end;
    grid-auto-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.rotate-heading {
    font-size: 2vw;
    line-height: 1.6em;
    font-weight: 300;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.text-container {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
}

.text-block-7 {
    overflow: hidden;
    color: #707070;
    font-size: 1rem;
}

.rotate-text-wrapper {
    display: -ms-grid;
    display: grid;
    justify-content: flex-start;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    white-space: nowrap;
}

.rotate-text-wrapper.top-text {
    position: relative;
    z-index: 20;
    display: -ms-grid;
    display: grid;
    align-items: center;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    white-space: normal;
}

.rotate-text-wrapper.bottom-text {
    align-items: center;
}

.animation-div {
    overflow: hidden;
}

.animation-div.p-margin {
    margin-bottom: 50px;
}

.animation-div.h1-margin {
    overflow: hidden;
    margin-bottom: 20px;
}

.animation-div.portfolio {
    height: 90px;
}

.animation-div.portfolio.experiment {
    height: auto;
}

.animation-div.carousel {
    height: 30px;
    flex-direction: column;
    justify-content: space-between;
}

.animation-div.special {
    margin-top: 20px;
}

.about-me-sec-img {
    width: 330px;
    height: 500px;
    border-radius: 10px;
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c718786e26bad3023a40fb_AdobeStock_516960199%201.jpg");
    background-position: 45% 100%;
    background-size: auto 600px;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.div-block-12 {
    position: relative;
    width: 400px;
}

.design-process-p {
    margin-bottom: 80px;
    font-size: 1rem;
    text-align: center;
}

.design-process-p.normal-animated-txt {
    margin-bottom: 0px;
    font-size: 1.1rem;
    font-weight: 300;
}

.container-8 {
    display: flex;
    margin-bottom: 50px;
    flex-direction: column;
    align-items: center;
}

.sec-3-heading {
    margin-bottom: 30px;
    font-size: 2.3rem;
    font-weight: 300;
}

.sec-3-heading.normal-animated-txt {
    overflow: visible;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 2.2rem;
    line-height: 3rem;
    font-weight: 400;
}

.sec-3-heading.normal-animated-txt {
    overflow: visible;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 3rem;
    font-weight: 400;
}

.p-wrapper {
    overflow: hidden;
    margin-bottom: 80px;
}

.p-wrapper.special {
    margin-bottom: 0px;
}

.my-design-process-sec {
    background-color: #000;
}

.margin-bottom-medium {
    overflow: hidden;
    margin-bottom: 30px;
}

.timeline-main_heading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
}

.container-9 {
    width: 90vw;
    max-width: 1360px;
    margin-right: auto;
    margin-left: auto;
}

.timeline_progress-bar {
    position: fixed;
    left: auto;
    top: 0px;
    right: auto;
    bottom: 50vh;
    z-index: -1;
    width: 3px;
    height: 50vh;
    background-color: #fff;
    background-image: linear-gradient(180deg, #ff7448, #ff4848 51%, #6248ff);
}

.text-block-3 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: none;
}

.timeline_item {
    position: relative;
    z-index: 2;
    display: -ms-grid;
    display: grid;
    padding-top: 80px;
    padding-bottom: 80px;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr 180px 1fr;
    grid-template-columns: 1fr 180px 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.margin-bottom-xlarge {
    margin-bottom: 56px;
}

.inline-block {
    display: inline-block;
}

.overlay-fade-top {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    height: 80px;
    min-width: 100vh;
    background-image: linear-gradient(180deg, #000, rgba(10, 10, 10, 0));
}

.text-colour-lightgrey {
    color: hsla(0, 0%, 100%, 0.65);
    font-size: 0.9rem;
}

.timeline_date-text {
    position: -webkit-sticky;
    position: sticky;
    top: 50vh;
    color: #fff;
    font-size: 2.7rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.text-block-5 {
    font-size: 0.9rem;
}

.timeline_circle {
    position: -webkit-sticky;
    position: sticky;
    top: 50vh;
    width: 15px;
    height: 15px;
    max-height: 15px;
    max-width: 15px;
    min-height: 15px;
    min-width: 15px;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0 0 0 8px #0a0a0a;
}

.link-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.timeline_component {
    position: relative;
    display: flex;
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.timeline_centre {
    display: flex;
    justify-content: center;
}

.overlay-fade-bottom {
    position: absolute;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    height: 80px;
    background-image: linear-gradient(0deg, #000, rgba(10, 10, 10, 0));
}

.timeline_left {
    justify-content: flex-end;
    align-items: stretch;
    text-align: right;
}

.timeline_milestone-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #fff;
    color: #161616;
    font-size: 14px;
    line-height: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.timeline_progress {
    position: absolute;
    z-index: -2;
    width: 3px;
    height: 100%;
    background-color: #414141;
}

.section-timeline {
    position: relative;
    z-index: -3;
    background-color: #000;
}

.timeline_link {
    display: flex;
    align-items: center;
    border-radius: 8px;
    opacity: 0.6;
    transition: opacity 300ms ease;
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
}

.timeline_link:hover {
    opacity: 1;
}

.timeline_image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    background-image: linear-gradient(138deg, #000, transparent 28%), none;
    background-position: 0px 0px, 0px 0px;
    background-size: auto, cover;
}

.timeline_text {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 500;
}

.sec-row-imgs {
    max-height: 250px;
    margin-top: 150px;
    padding-right: 10px;
    padding-left: 10px;
}

.last-row {
    max-height: 250px;
}

.sec-4-photo-collage {
    overflow: hidden;
    margin-top: 80px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.sec-4-photo-collage.video-editing {
    width: 100vw;
    margin-top: 120px;
}

.container-4 {
    display: flex;
    min-height: 500px;
    flex-direction: column;
    align-items: center;
}

.image-8 {
    position: absolute;
    left: 479px;
    top: 226px;
}

.image-8.normal-animated-txt {
    position: static;
    width: 100px;
    margin-right: 9px;
    margin-left: 9px;
}

.center-img {
    margin-top: 300px;
}

.center-img.img-shadow {
    max-height: 250px;
    margin-top: 350px;
    padding-right: 10px;
    padding-left: 10px;
}

._1st-row {
    max-height: 250px;
    margin-top: 250px;
    padding-right: 0px;
}

._1st-row.special {
    padding-right: 0px;
}

.impactful-sec-txt {
    display: inline-block;
    font-size: 2.7rem;
    line-height: 3.5rem;
    font-weight: 500;
    text-align: left;
}

.impactful-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.impactful-secondary-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.container-5 {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec-5-heading-1 {
    position: relative;
    margin-bottom: 0px;
    font-size: 2.7rem;
    font-weight: 300;
    text-align: center;
}

.sec-5-heading-1.final-sec-h1 {
    margin-top: 0px;
    line-height: 3.7rem;
    font-weight: 600;
    text-align: center;
}

.sec-5-heading-1.final-sec-h1.contact-me-h1 {
    text-align: left;
}

.black-animated-h1 {
    color: #000;
    font-weight: 600;
}

.dash-line {
    position: absolute;
    right: -25.1094px;
    bottom: 10px;
    width: 400px;
    height: 8px;
    background-color: #ed1c24;
    transform-origin: 0% 50%;
}

.sec-5-heading-2 {
    margin-bottom: 60px;
    font-size: 2.7rem;
    font-weight: 600;
    text-align: center;
}

.paragraph-3 {
    max-width: 600px;
    margin-bottom: 0px;
    font-size: 1rem;
    line-height: 1.3rem;
    text-align: center;
}

.paragraph-3.contact-me-p {
    text-align: left;
}

.paragraph-3.ps-p {
    font-weight: 300;
}

.paragraph-3.black-p {
    max-width: 600px;
    color: #000;
}

.paragraph-3.black-p.special {
    font-weight: 500;
}

.div-block-13 {
    position: relative;
}

.frame {
    display: flex;
}

.cover-item-header {
    margin-bottom: 20px;
    color: #000;
    font-size: 3rem;
}

.camera-2 {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.portfolio-sec {
    width: 100%;
    height: 6600px;
    background-color: #000;
}

.text-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.item {
    width: 100vw;
    height: 100vh;
    padding: 40px;
    flex: 0 0 auto;
}

.item.cover-item {
    display: flex;
    overflow: hidden;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.portfolio-img-wrapper {
    min-width: 300px;
}

.image-10 {
    width: 184px;
}

.last-sec-img-wrapper {
    display: -ms-grid;
    display: grid;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    grid-auto-columns: 1fr;
    grid-column-gap: 320px;
    grid-row-gap: 200px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
}

.div-block-14 {
    position: relative;
}

.logo-breakdown-sec {
    position: static;
    display: flex;
    padding-top: 150px;
    padding-bottom: 150px;
    flex-direction: column;
    align-items: center;
}

.logo-breakdown-sec.special {
    padding-bottom: 150px;
}

.image-13 {
    width: 184px;
}

.section-2 {
    background-color: #000;
}

.section-2.cont-me {
    background-color: #000;
}

.image-14 {
    position: absolute;
    left: 100px;
    top: 48px;
    z-index: 5;
    width: 486px;
}

.contact-me-wrapper {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c71f90a0678558a7ebad20_mapArtboard%201.svg");
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container-10 {
    display: flex;
    height: 550px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: padding 400ms ease;
}

.footer-copyright {
    color: #fff;
}

.footer-block-two {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}

.footer-wrapper-two {
    display: -ms-grid;
    display: grid;
    justify-content: space-between;
    align-items: flex-start;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 36px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.text-span {
    color: #ed1c24;
    text-transform: uppercase;
}

.footer-brand {
    margin-bottom: 28px;
}

.container-11 {
    width: 100%;
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
}

.section-3 {
    position: relative;
    z-index: -3;
}

.background-video-2 {
    z-index: 100;
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
}

.body {
    align-items: center;
}

.footer-light-2 {
    position: relative;
    padding: 80px 30px 40px;
    background-color: #000;
}

.footer-icons {
    display: flex;
    justify-content: flex-end;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}

.div-block-16 {
    overflow: hidden;
}

.div-block-17 {
    overflow: hidden;
}

.hero__person-count-span {
    display: inline-block;
    width: 100%;
    flex: 0 0 auto;
    font-size: 14px;
    text-align: left;
}

.hero__person-img {
    position: relative;
    z-index: 0;
    display: block;
    height: 115%;
    min-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero__person-img.mod--2 {
    height: 100%;
}

.hero__person-img.mod--1 {
    height: 100%;
}

.hero__person-txt-less {
    position: absolute;
    bottom: 80px;
    display: flex;
    width: 120px;
    height: 120px;
    justify-content: flex-start;
    align-items: center;
    opacity: 1;
    transform: rotate(-90deg);
}

.hero__person-txt-less.mod--1 {
    right: auto;
}

.hero__person-count {
    display: flex;
    overflow: hidden;
    height: 0%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    transition: all 600ms ease;
    font-size: 52px;
    text-align: center;
}

.hero__person-title {
    flex: 0 0 auto;
    font-size: 34px;
    line-height: 1.1em;
    font-weight: 500;
}

.hero__persons {
    position: relative;
    z-index: 0;
    display: flex;
    height: 590px;
    max-width: 100%;
    justify-content: flex-end;
}

.hero__person-grad {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(180deg, transparent 33%, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.hero__person-cont {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.hero__person-txt-more {
    position: absolute;
    bottom: 78px;
    display: flex;
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
}

.hero__person-txt-more.mod--1 {
    width: 400px;
    padding-left: 50px;
    flex-direction: column;
    align-items: flex-start;
    grid-row-gap: 10px;
}

.hero__person-txt-more.mod--3 {
    width: 400px;
    padding-left: 50px;
    flex-direction: column;
    align-items: flex-start;
    grid-row-gap: 10px;
}

.hero__person-txt-more.mod--2 {
    width: 400px;
    padding-left: 50px;
    flex-direction: column;
    align-items: flex-start;
    grid-row-gap: 10px;
}

.hero__person {
    position: relative;
    overflow: hidden;
    width: 21%;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 20px;
    cursor: pointer;
}

.hero__person.mod--3 {
    height: 500px;
}

.hero__person.mod--2 {
    height: 500px;
}

.hero__person.mod--1 {
    height: 500px;
}

.p-tag {
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;
}

.p-tag.design-process-p {
    width: 60%;
}

.impactful-p-tag {
    margin-top: 40px;
    margin-bottom: 40px;
}

.about-section {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.project-content-container {
    position: relative;
    overflow: visible;
    width: 540px;
    height: 350px;
    margin: 220px 300px auto 250px;
    flex: 0 0 auto;
}

.project-content-container._1st-project {
    margin-right: 300px;
    margin-left: 550px;
}

.project-content-container._2nd-project {
    margin-right: 300px;
}

.project-content-container._3rd-project {
    margin-right: 300px;
}

.project-content-container._4th-project {
    margin-right: 300px;
}

.project-content-container._5th-project {
    margin-right: 300px;
}

.project-content-container._6th-project {
    margin-right: 300px;
}

.project-content-container.experiment {
    width: 450px;
    height: 250px;
    margin: 0px;
}

.heading {
    position: absolute;
    left: -7%;
    top: -56px;
    z-index: 10;
    overflow: hidden;
    width: 500px;
    color: #fff;
    font-size: 8vw;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    white-space: normal;
}

.heading._2nd-project {
    width: 600px;
}

.heading._3rd-peoject {
    width: 600px;
}

.image-container {
    position: relative;
    overflow: hidden;
    width: 550px;
    height: 350px;
    border-radius: 10px;
    text-decoration: none;
}

.image-container.experiment {
    width: 450px;
    height: 250px;
}

.image-overlay {
    position: absolute;
    left: auto;
    top: auto;
    right: 0%;
    bottom: 0%;
    z-index: 2;
    width: 100%;
    height: 70%;
    background-image: linear-gradient(340deg, rgba(0, 0, 0, 0.5), transparent 35%);
}

.project-content-details {
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 10;
    width: 100%;
    max-width: 250px;
    padding: 40px 40px 30px;
    color: #fff;
}

.project-content-container-2 {
    position: relative;
    overflow: visible;
    width: 50vw;
    height: 50vh;
    margin-top: 250px;
}

.image-container-2 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: none;
}

.portfolio-project-p-tag {
    text-align: right;
}

.heading-5 {
    font-size: 6rem;
}

.heading-5.experiment {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 5rem;
    line-height: 70px;
}

.body-2 {
    max-width: 100%;
}

.image-15 {
    padding-top: 3px;
}

.link-block {
    display: -ms-grid;
    display: grid;
    padding-right: 32px;
    padding-left: 32px;
    align-items: center;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    text-decoration: none;
}

.animation-header-container.centered {
    display: flex;
    justify-content: center;
}

.animation-paragraph-container {
    margin-top: 50px;
    margin-bottom: 100px;
}

.animation-paragraph-container.ps-p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.animation-paragraph-container.small-spacing {
    margin-bottom: 10px;
}

.lets-meet-p-div {
    margin-top: 40px;
    margin-bottom: 30px;
}

.main-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: #ed1c24;
    transition: padding 300ms ease;
    text-decoration: none;
    cursor: pointer;
    margin-right: 15px;
}

.mg-right {
    margin-right: 30px;
}


.main-btn:hover {
    padding-right: 6px;
    padding-left: 6px;
}

.main-btn.outline {
    border-style: solid;
    border-width: 1px;
    border-color: #ed1c24;
    background-color: transparent;
}

.btn-txt {
    display: block;
    width: 160px;
    margin-right: 10px;
    margin-left: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    transition: padding 500ms ease;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
}

.btn-txt.sml {
    width: 100px;
}

.btn-txt.medium {
    width: 130px;
}

.btn-txt.black-btn {
    color: #000;
}

.lets-meet-wrapper {
    margin-left: 15px;
}

.blur-background {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 1000;
    display: none;
    width: 100vw;
    height: 100vh;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.76);
}

.blur-background._1st {
    display: none;
}

.blur-background._2nd {
    display: none;
}

.blur-background._3rd {
    display: none;
}

.blur-background._4th {
    display: none;
}

.blur-background._5th {
    display: none;
}

.blur-background._6th {
    display: none;
}

.contact-us-popout-wrapper {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: flex;
    overflow: hidden;
    width: 1050px;
    height: 550px;
    margin: auto;
    flex-direction: row;
    justify-content: flex-start;
    border-radius: 15px;
    background-color: #fff;
}

.navigation {
    display: flex;
    padding: 22px;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.navigation._2nd {
    justify-content: space-between;
}

.navigation._3rd {
    justify-content: space-between;
}

.navigation._5th {
    justify-content: space-between;
}

.popup-header {
    width: 85%;
    margin-bottom: 40px;
}

.popup-header._2nd {
    margin-bottom: 25px;
}

.popup-header._5th {
    margin-bottom: 20px;
}

.popup-choices {
    display: flex;
    width: 70%;
    justify-content: space-around;
    grid-column-gap: 10px;
}

.popup-choices._5th {
    width: 85%;
}

.popup-btn {
    display: flex;
    align-items: center;
}

.popup-content-wrapper {
    display: flex;
    width: 100%;
    margin-top: 60px;
    padding-right: 90px;
    padding-left: 90px;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}

.popup-content-wrapper._5th {
    margin-top: 0px;
}

.popup-content-wrapper.thx-message {
    margin-top: 101px;
}

.heading-6 {
    margin-top: 0px;
    margin-bottom: 0px;
    color: #000;
    font-size: 2.5rem;
    line-height: 3.3rem;
    font-weight: 500;
    text-align: center;
}

.heading-6.thx-slide-subh {
    color: #8a8a8a;
    font-size: 1.5rem;
    font-weight: 400;
}

.image-16 {
    cursor: pointer;
}

.link-block-3 {
    margin-top: 40px;
    text-decoration: none;
}

.content-container {
    display: flex;
    width: 100%;
}

.content-container._1st {
    flex-direction: column;
    flex: 0 0 auto;
}

.content-container._2nd {
    flex-direction: column;
    flex: 0 0 auto;
}

.content-container._3rd {
    flex-direction: column;
    flex: 0 0 auto;
}

.content-container._4th {
    flex-direction: column;
    flex: 0 0 auto;
}

.content-container._5th {
    flex-direction: column;
    flex: 0 0 auto;
}

.content-container._6th {
    flex-direction: column;
    flex: 0 0 auto;
}

.margins {
    margin-top: 20px;
    margin-bottom: 10px;
}

.main-btn-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: #ed1c24;
    transition: padding 300ms ease;
    text-decoration: none;
}

.main-btn-2:hover {
    padding-right: 6px;
    padding-left: 6px;
}

.main-btn-2.contact-us-btn {
    background-color: #000;
}

.main-btn-2.contact-us-btn {
    flex-direction: row;
    background-color: #000;
}

.small-highlights-2 {
    padding-right: 5px;
    color: #838383;
    font-size: 0.9rem;
    text-align: center;
}

.textarea-2 {
    max-height: 110px;
    max-width: 100%;
    min-height: 110px;
    min-width: 100%;
    padding-top: 12px;
    padding-left: 15px;
    border-style: none;
    border-width: 1px;
    border-color: #e5e5e5;
    border-radius: 5px;
    background-color: #e5e5e5;
    font-size: 1rem;
    font-weight: 500;
}

.form-block-2 {
    width: 70%;
    height: 110px;
    margin-bottom: 25px;
}

.image-18 {
    display: block;
    cursor: pointer;
}

.form-2 {
    width: 100%;
    height: 110px;
}

.text-span-2 {
    font-family: 'Fa solid 900', sans-serif;
    font-size: 1rem;
}

.form-block-3 {
    width: 100%;
}

.form-3 {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.text-field {
    display: inline-block;
    width: 49%;
    border: 1px none #e5e5e5;
    border-radius: 5px;
    background-color: #e5e5e5;
    font-size: 1rem;
    font-weight: 500;
}

.big-text-field {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background-color: #e5e5e5;
    font-size: 1rem;
    font-weight: 500;
}

.div-block-19 {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.contact-camera {
    display: flex;
    width: 100%;
    transform: none;
}

.photo-collage-wrapper {
    display: flex;
    overflow: hidden;
    width: 100vw;
    justify-content: space-around;
    align-items: center;
}

.creative-animation-container {
    position: absolute;
    bottom: 165.422px;
    overflow: hidden;
    width: 100%;
}

.main-image-container {
    position: relative;
    z-index: 2;
    width: 45%;
}

.image-23 {
    width: 100%;
    opacity: 1;
}

.main-img {
    width: 100%;
}

.main-txt-container {
    margin-top: 10px;
}

.lottie-animation-2 {
    display: flex;
    width: 32px;
    justify-content: center;
    align-items: center;
    filter: none;
}

.services-mobile {
    display: none;
}

.text-span-3 {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/64135a7af8145928dd603416_AdobeStock_270972208%202.png");
    background-position: 1% 50%;
    background-size: 417px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-span-4 {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/64135a7af8145928dd603416_AdobeStock_270972208%202.png");
    background-position: 0px 0px;
    background-size: auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.image-24 {
    width: 120px;
}

.video-portfolio-container {
    position: relative;
    display: flex;
    overflow: visible;
    width: 100%;
    margin-top: 60px;
    justify-content: space-between;
    flex: 0 0 auto;
}

.video-portfolio-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thumbnail-container {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 30%;
    height: 150px;
    margin-right: 10px;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    border-radius: 5px;
    background-color: red;
}

.thumbnail-container.hovered {
    display: flex;
    width: 18%;
    justify-content: center;
    align-items: center;
    background-color: #636060;
}

.play-btn {
    padding: 15px;
    border-radius: 100px;
    font-family: 'Fa solid 900', sans-serif;
    color: #ed1c24;
    font-size: 1.5rem;
    text-align: center;
}

.play-btn-container {
    position: absolute;
    display: none;
    border-radius: 50px;
}

.play-btn-container.hovered {
    display: block;
}

.portfolio-iitem-1-img {
    width: 140%;
    max-width: none;
}

.portfolio-iitem-1-img.special {
    width: 100%;
}

.video-transparent-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.video-transparent-bg.hovered {
    display: none;
}

.video-transparent-bg._1st {
    display: none;
}

.text-block-8 {
    position: absolute;
    left: 5%;
    top: auto;
    right: 0%;
    bottom: 5%;
}

.video-portfolio-img-container {
    width: 100%;
    height: 100%;
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/64138c928f2c7473d4c89183_version%205.jpg");
    background-position: 50% 50%;
    background-size: 300px;
}

.video-portfolio-img-container._2nd {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/64138cac315bd66e6b574fd1_version%201.jpg");
}

.video-portfolio-img-container._3rd {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/64138c34cdb2ed3282fa365a_thumbnail%402x%201.jpg");
    background-position: 20% 50%;
}

.video-portfolio-img-container._4th {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/64138c3200bac83fdbb7b127_y2mate.com%20-%20Food%20Reel%20%20FH%20Studio_1080p.00_00_19_04%201.jpg");
}

.video-portfolio-img-container._5th {
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/64138ca25fd56df4d0f9b679_move%20video%20thumbnail.jpg");
}

.section-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.div-block-23 {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.div-block-23.fixed {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    width: 100vw;
    padding-top: 120px;
    background-color: #000;
    box-shadow: 0 10px 20px 7px #000;
}

.div-block-24 {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0px;
    width: 100vw;
    height: 100px;
    background-color: #000;
}

.image-26 {
    margin-bottom: 40px;
}

.container-12 {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
}

.next-icon {
    padding: 9px 20px;
    border-style: solid;
    border-width: 1px;
    border-color: #ed1c24;
    border-radius: 20px;
    font-family: 'Fa solid 900', sans-serif;
    color: #ed1c24;
    font-size: 1.3rem;
    line-height: 10px;
}

.next-icon:hover {
    color: #000;
    font-weight: 400;
}

.next-icon-container {
    position: static;
    left: auto;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 3;
    display: inline-block;
    margin-left: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: all 400ms ease;
    cursor: pointer;
}

.next-icon-container:hover {
    background-color: #ed1c24;
}

.next-icon-container.left {
    left: 0%;
    top: 0%;
    right: auto;
    bottom: 0%;
}

.next-icon-container.back {
    display: none;
}

.video-carousel-wrapper {
    width: 100%;
}

.movement-control-wrapper {
    display: flex;
    width: 240px;
    height: 4px;
    justify-content: space-between;
}

.movement-controller {
    width: 17%;
    height: 100%;
    border-radius: 20px;
    background-color: #fff;
}

.movement-controller._2nd {
    background-color: #363535;
}

.slide {
    width: 50%;
    background-image: url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/64138c34cdb2ed3282fa365a_thumbnail%402x%201.jpg");
    background-position: 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.video-carousel-info-wrapper {
    display: flex;
    margin-top: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.carousel-txt-info {
    display: none;
    flex: 0 0 auto;
    font-size: 1rem;
    line-height: 29px;
}

.carousel-txt-info._1st {
    display: block;
}

.carousel-txt-info._2nd {
    display: none;
}

.carousel-name-dot {
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 20px;
    background-color: #ed1c24;
}

.project-name-wrapper {
    position: absolute;
    left: 0%;
    top: auto;
    right: auto;
    bottom: 0%;
    display: flex;
    width: 19%;
    height: 33px;
    padding-right: 14px;
    padding-left: 14px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: #ed1c24;
    border-radius: 20px;
}

.name-controller-wrapper {
    display: flex;
}

.carousel-controler-wrapper {
    margin-left: 10px;
}

.camera {
    overflow: hidden;
}

.parallex-slider {
    height: 220px;
    margin-top: 60px;
    background-color: transparent;
}

.parallex-mask {
    overflow: visible;
    width: 30%;
    height: auto;
}

.parallex-slide {
    margin-right: 10px;
}

.parallex-slider-button {
    left: 21%;
    top: auto;
    right: auto;
    bottom: 0%;
    width: 66px;
    height: 33px;
}

.parallex-slider-button.forward-btn {
    left: 29%;
}

.parallex-slide-nav {
    left: auto;
    top: auto;
    right: 0%;
    bottom: 0%;
    display: flex;
    width: 240px;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
}

.ratio-60 {
    position: relative;
    height: 140px;
    padding-top: 60%;
}

.image-cover {
    position: absolute;
    left: 0%;
    top: 0%;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    -o-object-fit: cover;
    object-fit: cover;
}

.container-13 {
    overflow: hidden;
    flex-direction: column;
    align-items: center;
}

.carousel-next-icon {
    display: flex;
    width: 66px;
    height: 33px;
    justify-content: center;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: #ed1c24;
    border-radius: 50px;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}

.carousel-next-icon:hover {
    background-color: #ed1c24;
}

.carousel-next-icon.forward-btn {
    margin-left: 23px;
}

.carousel-next-icon.forward-btn:hover {
    color: #fff;
}

.lightbox-link {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.main-video-page-img {
    display: block;
}

.image-27 {
    border-radius: 15px;
}

.main-portfolio-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.main-portfolio-container.space {
    padding-bottom: 150px;
}

.portfolio-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio-p {
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
}

.ps-red-outline-text {
    color: transparent;
    -webkit-text-stroke: 2px #ED1C24;
}

.ps-white-outline-text {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.ps-black-outline-text {
    color: transparent;
    -webkit-text-stroke: 1px #000;
}

.portfolio-sec-h1 {
    position: -webkit-sticky;
    position: sticky;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 600;
}

.first-ps-image {
    width: 90%;
    margin-top: 50px;
}

.image-29 {
    width: 100%;
}

.ps-info-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.ps-info-container.space {
    padding-top: 140px;
}

.ps-info-txt {
    margin-bottom: 40px;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
}

.h1-red-dot {
    color: #ed1c24;
}

.yt-video-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
}

.ps-cc-container {
    display: flex;
    padding-bottom: 150px;
    flex-direction: column;
    align-items: center;
}

.ps-cc-containers {
    display: flex;
    padding-bottom: 150px;
    flex-direction: column;
    align-items: center;
}

.ps-btn-wrapper {
    display: flex;
    margin-bottom: 60px;
    justify-content: space-between;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
}

.div-block-25 {
    background-color: #3e4c35;
    transition: background-color 500ms ease;
}

.div-block-25:hover {
    background-color: #ed1c24;
}

.logo-variations {
    width: 30rem;
}

.color-palette-img {
    width: 80%;
}

.ps-first-mockups {
    width: 80%;
}

.typo-img {
    width: 60%;
}

.mockups {
    width: 80%;
    padding-bottom: 220px;
}

.mockups.small {
    width: 70%;
}

.mockups.multishot {
    padding-right: 40px;
}

.mutli-img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mutli-img-wrapper.special {
    margin-top: 150px;
}

.full-screen-img {
    width: 100vw;
    margin-top: 50px;
}

.ps-logo-animation {
    width: 50%;
    border-radius: 10px;
}

.ps-logo-breakdown {
    min-width: 70vw;
}

.ps-red-text {
    color: #ed1c24;
}

.image-30 {
    width: 60vw;
    margin-top: 50px;
    border-radius: 12px;
}

.ps-h1 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 2.7rem;
    line-height: 3.7rem;
    font-weight: 600;
}

.mockup-div {
    display: flex;
    width: 100vw;
    flex-direction: row;
    justify-content: center;
}

@media screen and (min-width: 1280px) {
    .menu-items {
        padding-left: 52px;
    }

    .menu-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .full-screen-menu {
        display: none;
    }

    .hidden-nav-divider.third {
        max-width: 1530px;
    }

    .nav-social-bar-container {
        padding-right: 152px;
        padding-left: 52px;
    }

    .btn-wrapper.main-btn-wrapper {
        position: absolute;
        top: 408.766px;
    }

    .main-sec-sm-container.image-main {
        position: relative;
        flex-direction: column;
        align-items: center;
        background-image: none;
    }

    .container-3 {
        max-width: 100vw;
    }

    .sec-sec-1 {
        padding-right: 200px;
    }

    .sec-row-imgs {
        max-height: 26vw;
        padding-right: 10px;
        padding-left: 10px;
    }

    .last-row {
        max-height: 26vw;
    }

    .sec-4-photo-collage {
        justify-content: space-between;
    }

    .center-img.img-shadow {
        max-height: 26vw;
    }

    ._1st-row {
        max-height: 26vw;
    }

    .div-block-20 {
        max-width: 1500px;
    }

    .nav-menu-items-wrapper {
        width: 95%;
    }

    .image-19 {
        width: 50%;
    }

    .experiment-div {
        position: static;
        top: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .experiment-div.img {
        position: absolute;
        width: 100%;
    }

    .experiment-div.creative {
        position: absolute;
        top: 183px;
    }

    .image-20 {
        width: 100%;
    }

    .div-block-21 {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .btn {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .img {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .creative {
        position: absolute;
        left: 0%;
        top: 35%;
        right: 0%;
        bottom: auto;
        z-index: -3;
    }

    .creative-animated-div {
        position: absolute;
        left: 0%;
        top: 22%;
        right: 0%;
        bottom: auto;
        z-index: 0;
        width: 100%;
    }

    .image-21 {
        width: 100%;
    }

    .image-22 {
        width: 50%;
    }

    .div-block-22 {
        position: relative;
        z-index: 1;
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .thumbnail-container {
        display: flex;
        height: 170px;
        justify-content: center;
        align-items: center;
    }

    .thumbnail-container._1st {
        background-image: linear-gradient(180deg, null, null), url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/64138c928f2c7473d4c89183_version%205.jpg");
        background-size: auto, 300px;
    }

    .play-btn {
        padding: 0px;
        background-color: transparent;
    }

    .play-btn-container {
        display: none;
        padding: 20px;
        justify-content: center;
        align-items: center;
        border-radius: 100px;
        background-color: #ed1c24;
    }

    .main-video-page-img {
        width: 100vw;
    }

    .portfolio-sec-h1 {
        margin-bottom: 20px;
        font-size: 3.3rem;
    }

    .first-ps-image {
        width: 100%;
    }

    .logo-variations {
        width: 40vw;
    }

    .ps-logo-animation {
        width: 60%;
    }

    .ps-logo-breakdown {
        width: 40vw;
    }

    .image-30 {
        width: 50vw;
    }
}

@media screen and (max-width: 991px) {
    .menu-items {
        grid-column-gap: 143px;
        -ms-grid-columns: 35% 40%;
        grid-template-columns: 35% 40%;
        text-align: center;
    }

    .light-separator.dot {
        display: block;
    }

    .menu-button {
        width: 70px;
        margin-left: 20px;
    }

    .navbar-wrapper {
        height: 65px;
        -ms-grid-columns: 1fr auto;
        grid-template-columns: 1fr auto;
    }

    .grid-wrapper.zero-height {
        width: 90%;
    }

    .page-title {
        display: block;
    }

    .full-screen-menu {
        display: none;
    }

    .dot.large {
        margin-right: 2px;
        margin-left: -2px;
    }

    .brand {
        margin-right: 0px;
        margin-left: 0px;
        border-left-style: none;
    }

    .hidden-nav-link {
        font-weight: 300;
        text-align: left;
    }

    .hidden-nav-container {
        text-align: left;
    }

    .hidden-nav-divider.third {
        max-width: 650px;
        margin-bottom: 15px;
    }

    .hidden-nav-heading {
        text-align: left;
    }

    .footer-p-tags {
        font-size: 0.9rem;
    }

    .footer-p-tags.margin-bot {
        margin-bottom: 0px;
    }

    .footer-p-tags.links {
        font-size: 0.9rem;
    }

    .btn-wrapper {
        width: 50%;
    }

    .btn-wrapper.footer {
        width: 100%;
        justify-content: space-between;
    }

    .main-sec-hi-there {
        font-size: 1.4rem;
    }

    .main-sec-intro-txt {
        font-size: 2.1rem;
    }

    .sec-sec-1 {
        margin-bottom: 0px;
        font-size: 3.5rem;
        line-height: 3rem;
    }

    .sec-sec-3 {
        margin-top: 10px;
        font-size: 3.5rem;
        line-height: 3rem;
    }

    .section.main-sec-tablet {
        padding-bottom: 0px;
    }

    .section.carousel {
        padding-bottom: 150px;
    }

    .about-me-txt-wrapper {
        padding-left: 25px;
    }

    .about-me-txt-wrapper._2nd-wrapper {
        left: 215px;
    }

    .about-me-txt.txt3 {
        font-size: 1.3rem;
    }

    .about-me-txt.txt2 {
        font-size: 1.3rem;
    }

    .about-me-txt.txt4 {
        font-size: 1.3rem;
    }

    .about-me-txt.txt1 {
        font-size: 1.3rem;
    }

    .about-me-h1 {
        font-size: 2.5rem;
        line-height: 2rem;
    }

    .rotate-heading {
        font-size: 3vw;
    }

    .text-container {
        margin-bottom: 60px;
    }

    .rotate-text-wrapper.top-text {
        grid-column-gap: 12px;
    }

    .animation-div.portfolio {
        height: 80px;
    }

    .about-me-sec-img {
        width: 300px;
        height: 470px;
    }

    .div-block-12 {
        padding-left: 25px;
    }

    .design-process-p.normal-animated-txt {
        font-size: 1rem;
    }

    .sec-3-heading.normal-animated-txt {
        font-size: 2.1rem;
    }

    .sec-3-heading.normal-animated-txt {
        font-size: 2rem;
    }

    .overlay-fade-top {
        min-width: 100vw;
    }

    .timeline_date-text {
        font-size: 2.2rem;
    }

    .timeline_date-text.animated-txt {
        font-size: 2.2rem;
    }

    .timeline_text {
        font-size: 1.3rem;
    }

    .sec-row-imgs {
        max-height: 25vw;
        margin-top: 100px;
    }

    .last-row {
        max-height: 26vw;
    }

    .sec-4-photo-collage {
        margin-top: 0px;
    }

    .image-8.normal-animated-txt {
        width: 80px;
    }

    .center-img.img-shadow {
        max-height: 26vw;
        margin-top: 300px;
    }

    ._1st-row {
        max-height: 26vw;
        margin-top: 200px;
    }

    ._1st-row.special {
        padding-right: 0px;
    }

    .impactful-sec-txt {
        font-size: 2.2rem;
        line-height: 3rem;
    }

    .sec-5-heading-1 {
        font-size: 2.2rem;
    }

    .sec-5-heading-1.final-sec-h1 {
        line-height: 2.8rem;
    }

    .dash-line {
        width: 330px;
    }

    .sec-5-heading-2 {
        margin-top: 15px;
        font-size: 2.2rem;
        line-height: 33px;
    }

    .paragraph-3 {
        font-size: 0.9rem;
    }

    .frame {
        padding-bottom: 100px;
        flex-direction: column;
        align-items: center;
    }

    .camera-2 {
        overflow: visible;
        width: auto;
        height: auto;
    }

    .portfolio-sec {
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .item {
        height: 50vh;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .image-10._1st-img {
        width: 164px;
    }

    .image-10._2st-img {
        width: 164px;
    }

    .last-sec-img-wrapper {
        grid-column-gap: 290px;
        grid-row-gap: 182px;
    }

    .image-13._3rd-img {
        width: 164px;
    }

    .image-13._4th-img {
        width: 164px;
    }

    .image-14 {
        left: 118px;
        width: 420px;
    }

    .container-10 {
        height: 400px;
    }

    .footer-logo {
        width: 150px;
    }

    .footer-wrapper-two {
        flex-wrap: wrap;
    }

    .container-11 {
        max-width: 728px;
    }

    .section-3 {
        z-index: -3;
    }

    .background-video-2 {
        max-height: 350px;
        max-width: 600px;
    }

    .hero__person-count-span {
        width: 300px;
        font-size: 12px;
    }

    .hero__person-txt-less {
        display: none;
    }

    .hero__person-txt-less.mod--2 {
        display: flex;
    }

    .hero__person-txt-less.mod--1 {
        display: flex;
    }

    .hero__person-txt-less.mod--3 {
        display: flex;
    }

    .hero__person-title {
        font-size: 1.5rem;
    }

    .hero__persons {
        margin-right: 10px;
    }

    .hero__person-txt-more {
        bottom: 20px;
        padding-right: 16px;
        padding-left: 16px;
        opacity: 1;
    }

    .hero__person-txt-more.mod--1 {
        padding-left: 16px;
        opacity: 0;
    }

    .hero__person-txt-more.mod--3 {
        opacity: 0;
    }

    .hero__person-txt-more.mod--2 {
        opacity: 0;
    }

    .hero__person {
        width: 240px;
        height: 376px;
        padding-right: 0px;
        padding-left: 0px;
    }

    .hero__person.mod--3 {
        width: 20%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .hero__person.mod--2 {
        width: 20%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .hero__person.mod--1 {
        width: 20%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .p-tag {
        font-size: 0.9rem;
    }

    .p-tag.design-process-p {
        width: 80%;
    }

    .project-content-container {
        width: 500px;
        height: 300px;
        margin-right: 0px;
        margin-left: 0px;
    }

    .project-content-container._1st-project {
        margin-right: 0px;
        margin-left: 0px;
    }

    .project-content-container._2nd-project {
        margin-right: 0px;
    }

    .project-content-container._3rd-project {
        margin-right: 0px;
    }

    .project-content-container._4th-project {
        margin-right: 0px;
    }

    .project-content-container._5th-project {
        margin-right: 0px;
    }

    .project-content-container._6th-project {
        margin-right: 0px;
    }

    .heading {
        font-size: 4vw;
    }

    .image-container {
        width: 500px;
        height: 300px;
    }

    .heading-5 {
        font-size: 5.4rem;
        line-height: 30px;
    }

    .link-block {
        display: none;
    }

    .main-btn.outline {
        display: block;
    }

    .main-btn.outline.cotnact-btn {
        display: none;
    }

    .btn-txt {
        margin-right: 0px;
        margin-left: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 1rem;
    }

    .project-name-wrapper {
        width: 25%;
    }

    .parallex-slider-button {
        left: 28%;
    }

    .parallex-slider-button.forward-btn {
        left: 38%;
    }

    .image-28 {
        width: 80%;
    }

    .logo-variations {
        width: 25rem;
    }

    .image-30 {
        margin-top: 20px;
    }

    .ps-h1 {
        font-size: 2.2rem;
        line-height: 2.8rem;
    }
}

@media screen and (max-width: 767px) {
    .menu-items {
        grid-column-gap: 58px;
        -ms-grid-columns: 40% 40%;
        grid-template-columns: 40% 40%;
    }

    .menu-button {
        width: 84px;
    }

    .navbar-wrapper {
        grid-column-gap: 18px;
    }

    .page-title {
        padding-right: 18px;
    }

    .full-screen-menu {
        display: none;
    }

    .dot.large {
        width: 8px;
        height: 8px;
        margin-right: 8px;
        margin-left: 8px;
        border-width: 1px;
    }

    .brand {
        padding-right: 24px;
        padding-left: 24px;
        font-size: 18px;
    }

    .nav-link-wrapper {
        margin-bottom: 10px;
    }

    .nav-link-wrapper.w--current {
        margin-bottom: 10px;
    }

    .hidden-nav-link {
        font-size: 1.7rem;
    }

    .hidden-nav-divider {
        width: 180px;
    }

    .portfolio-item-image {
        width: 420px;
        height: 250px;
    }

    .portfolio-item-image._1st-project {
        width: 420px;
        height: 250px;
    }

    .portfolio-item-image._4rth-project {
        background-position: 50% 0%;
    }

    .social-media-icon {
        font-size: 1.2rem;
    }

    .social-media-icon.deribble {
        font-size: 1.2rem;
    }

    .btn-wrapper {
        width: 65%;
    }

    .container-2 {
        margin-top: 33px;
    }

    .main-sec-hi-there {
        font-size: 1.2rem;
        line-height: 20px;
    }

    .main-sec-intro-txt {
        margin-top: 10px;
        font-size: 1.8rem;
        line-height: 20px;
    }

    .sec-sec-1 {
        padding-right: 100px;
        font-size: 2.8rem;
    }

    .sec-sec-3 {
        padding-left: 100px;
        font-size: 2.8rem;
    }

    .section {
        padding-top: 140px;
        padding-bottom: 0px;
    }

    .section.special {
        padding-bottom: 100px;
    }

    .section.main-sec {
        padding-top: 80px;
    }

    .about-me-txt-wrapper {
        padding-left: 28px;
    }

    .about-me-txt-wrapper._2nd-wrapper {
        left: 156px;
    }

    .about-me-txt.txt3 {
        font-size: 1rem;
    }

    .about-me-txt.txt2 {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .about-me-txt.txt4 {
        font-size: 1rem;
    }

    .about-me-txt.txt1 {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .about-me-h1 {
        margin-top: 0px;
        font-size: 2.2rem;
    }

    .hero-wrapper {
        margin-top: 20px;
        margin-bottom: 20px;
        padding-top: 0px;
        grid-row-gap: 10px;
    }

    .p-tag-wrapper.mask2 {
        height: auto;
    }

    .p-tag-wrapper.mask3 {
        height: auto;
    }

    .p-tag-wrapper.mask1 {
        height: auto;
    }

    .p-tag-wrapper.mask4 {
        height: auto;
    }

    .about-me-wrapper {
        align-items: center;
    }

    .about-me-sec-div {
        margin-bottom: 80px;
    }

    .rotate-heading {
        font-size: 4vw;
    }

    .text-container {
        margin-top: 0px;
        margin-bottom: 30px;
    }

    .rotate-text-wrapper.top-text {
        grid-column-gap: 9px;
    }

    .animation-div.portfolio {
        height: 60px;
    }

    .about-me-sec-img {
        width: 250px;
        height: 370px;
        background-position: 50% 0%;
        background-size: cover;
    }

    .div-block-12 {
        margin-left: 50px;
        padding-left: 43px;
    }

    .design-process-p.normal-animated-txt {
        font-size: 0.8rem;
    }

    .padding-vertical-xlarge {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .timeline_item {
        width: 100%;
        -ms-grid-columns: 64px 1fr;
        grid-template-columns: 64px 1fr;
    }

    .margin-bottom-xlarge {
        margin-bottom: 48px;
    }

    .timeline_date-text {
        margin-bottom: 24px;
        font-size: 2rem;
    }

    .timeline_date-text.animated-txt {
        font-size: 2rem;
    }

    .timeline_centre {
        justify-content: flex-start;
    }

    .timeline_left {
        font-size: 1rem;
        text-align: left;
    }

    .timeline_progress {
        left: 6px;
    }

    .timeline_text {
        font-size: 16px;
        font-weight: 400;
    }

    .timeline_text.animated-txt {
        font-size: 16px;
    }

    .sec-4-photo-collage.video-editing {
        display: flex;
        flex-direction: column;
    }

    .impactful-sec-txt {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .sec-5-heading-1 {
        font-size: 2rem;
    }

    .sec-5-heading-2 {
        font-size: 2rem;
    }

    .portfolio-sec {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .item {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .image-10 {
        width: 120px;
    }

    .image-10._1st-img {
        width: 120px;
    }

    .image-10._2st-img {
        width: 120px;
    }

    .last-sec-img-wrapper {
        grid-column-gap: 189px;
        grid-row-gap: 137px;
    }

    .image-13._3rd-img {
        width: 120px;
    }

    .image-13._4th-img {
        width: 120px;
    }

    .image-14 {
        left: 51px;
        top: 26px;
        width: 320px;
    }

    .footer-copyright {
        font-size: 14px;
        line-height: 20px;
    }

    .background-video-2 {
        max-height: 300px;
        max-width: 500px;
    }

    .footer-light-2 {
        padding-right: 25px;
        padding-left: 25px;
    }

    .hero__persons {
        display: none;
    }

    .project-content-container {
        width: auto;
        height: auto;
    }

    .image-container {
        width: 420px;
        height: 250px;
    }

    .image-overlay {
        background-image: linear-gradient(340deg, rgba(0, 0, 0, 0.5) 24%, transparent 51%);
    }

    .heading-5 {
        font-size: 4rem;
    }

    .btn-txt {
        width: 145px;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 0.9rem;
    }

    .lets-meet-wrapper {
        margin-left: 25px;
    }

    .main-image-container {
        width: 55%;
    }

    .services-mobile {
        display: flex;
        justify-content: center;
    }

    .service {
        display: flex;
        width: 150px;
        height: 150px;
        border-radius: 10px;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
        background-position: 0px 0px, 0px 0px;
        background-size: auto, auto;
    }

    .service.service-1 {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c71a9e7cf4b61bc11a1aab_Frame%20242.jpg");
        background-position: 0px 0px, 50% 50%;
        background-size: auto, 230px;
        transition: all 275ms ease;
    }

    .service.service-1:hover {
        background-image: linear-gradient(180deg, null, null), url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c71a9e7cf4b61bc11a1aab_Frame%20242.jpg");
        background-size: auto, 300px;
    }

    .service.service-2 {
        margin-right: 20px;
        margin-left: 20px;
        padding-right: 0px;
        padding-bottom: 0px;
        justify-content: center;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c71a9fed338ecc2bebf9ef_Frame%20241.jpg");
        background-position: 0px 0px, 50% 50%;
        background-size: auto, 230px;
        transition: all 275ms ease;
    }

    .service.service-2:hover {
        background-image: linear-gradient(180deg, null, null), url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c71a9fed338ecc2bebf9ef_Frame%20241.jpg");
        background-size: auto, 300px;
    }

    .service.service-3 {
        justify-content: center;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c71aa0f8811c2b56d28593_Frame%20240.jpg");
        background-position: 0px 0px, 50% 50%;
        background-size: auto, 280px;
        transition: all 275ms ease;
    }

    .service.service-3:hover {
        background-image: linear-gradient(180deg, null, null), url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c71aa0f8811c2b56d28593_Frame%20240.jpg");
        background-size: auto, 330px;
    }

    .services-icon {
        font-family: 'Fa solid 900', sans-serif;
        font-size: 2.6rem;
        font-weight: 400;
    }

    .services-cont-container {
        display: flex;
        margin-top: 7px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .services-sec-txt {
        margin-top: 25px;
        font-size: 1.5rem;
        line-height: 1.5rem;
        text-align: center;
    }

    .image-24 {
        width: 100px;
    }

    .project-name-wrapper {
        display: none;
    }

    .parallex-slider {
        height: 200px;
    }

    .parallex-mask {
        width: 45%;
    }

    .parallex-slider-button {
        left: 4%;
    }

    .parallex-slider-button.forward-btn {
        left: 18%;
    }

    .parallex-slide-nav {
        margin-right: 20px;
    }

    .container-13 {
        padding-right: 30px;
        padding-left: 30px;
    }

    .main-video-page-img {
        min-width: 120%;
    }

    .portfolio-sec-h1 {
        font-size: 2.6rem;
    }

    .logo-variations {
        width: 70vw;
    }

    .mockups {
        width: 80%;
    }

    .mutli-img-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .ps-logo-animation {
        width: 80%;
    }

    .image-30 {
        width: 90%;
    }

    .ps-h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 479px) {
    .menu-items {
        padding-left: 15px;
        grid-column-gap: 17px;
    }

    .lottie-animation {
        width: 30px;
    }

    .menu-content {
        padding-top: 80px;
    }

    .light-separator.dot {
        display: none;
    }

    .navbar-wrapper {
        height: 60px;
        grid-column-gap: 0px;
    }

    .page-title {
        display: none;
    }

    .full-screen-menu {
        display: none;
    }

    .dot.large {
        width: 6px;
        height: 6px;
        margin-right: 9px;
        margin-left: 9px;
        border-width: 1px;
    }

    .brand {
        justify-content: flex-start;
    }

    .hidden-nav-link {
        font-size: 1.3rem;
        white-space: nowrap;
    }

    .hidden-nav-link:hover {
        font-size: 1.4rem;
    }

    .hidden-nav-divider {
        width: 120px;
        margin-top: 20px;
    }

    .hidden-nav-divider.sec {
        margin-top: 40px;
    }

    .last-sec-container {
        justify-content: space-around;
    }

    .nav-social-bar-container {
        display: flex;
        padding-right: 15px;
        padding-left: 15px;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
    }

    .portfolio-item-image {
        width: 235px;
        height: 300px;
    }

    .portfolio-item-image._1st-project {
        width: 235px;
        height: 300px;
    }

    .footer-p-tags {
        font-size: 0.7rem;
    }

    .footer-p-tags.margin-bot {
        display: none;
    }

    .footer-p-tags.links {
        font-size: 0.7rem;
    }

    .preloader {
        display: none;
    }

    .social-media-icon {
        font-size: 1.3rem;
    }

    .btn-wrapper.main-btn-wrapper {
        width: 80%;
    }

    .main-sec-intro-txt {
        margin-top: 0px;
        font-size: 1.4rem;
        line-height: 25px;
    }

    .sec-sec-1 {
        margin-right: 60px;
        padding-right: 0px;
        font-size: 2.1rem;
        line-height: 2rem;
    }

    .sec-sec-3 {
        margin-top: 0px;
        margin-left: 60px;
        padding-left: 0px;
        font-size: 2.1rem;
        line-height: 2rem;
    }

    .section.design-process {
        padding-bottom: 0px;
    }

    .section.main-sec {
        padding-top: 70px;
    }

    .section.portfolio-main-sec {
        padding-top: 90px;
    }

    .about-me-txt-wrapper {
        width: 220px;
        margin-bottom: 10px;
        padding-left: 0px;
        align-items: flex-start;
    }

    .about-me-txt-wrapper._2nd-wrapper {
        left: 100px;
        bottom: 12%;
    }

    .about-me-txt.txt3 {
        font-size: 0.7rem;
        line-height: 1rem;
        text-align: center;
    }

    .about-me-txt.txt2 {
        font-size: 0.7rem;
        line-height: 1rem;
        text-align: center;
    }

    .about-me-txt.txt4 {
        font-size: 0.7rem;
        line-height: 1rem;
        text-align: center;
    }

    .about-me-txt.txt1 {
        font-size: 0.7rem;
        line-height: 1rem;
        text-align: center;
    }

    .about-me-h1 {
        font-size: 2rem;
    }

    .hero-wrapper {
        grid-row-gap: 80px;
    }

    .about-me-wrapper {
        align-items: center;
    }

    .hero-content-2 {
        padding-top: 24px;
        padding-bottom: 0px;
    }

    .rotate-heading {
        font-size: 3vw;
    }

    .rotate-text-wrapper.bottom-text {
        grid-column-gap: 12px;
    }

    .animation-div.h1-margin {
        margin-bottom: 10px;
    }

    .animation-div.portfolio {
        height: 50px;
    }

    .about-me-sec-img {
        width: 220px;
        height: 300px;
    }

    .div-block-12 {
        display: flex;
        width: 100%;
        margin-left: 0px;
        padding-left: 0px;
        flex-direction: column;
        align-items: center;
    }

    .design-process-p.normal-animated-txt {
        font-size: 0.6rem;
        line-height: 15px;
    }

    .sec-3-heading.normal-animated-txt {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

    .sec-3-heading.normal-animated-txt {
        line-height: 1.9rem;
    }

    .margin-bottom-medium {
        margin-bottom: 24px;
    }

    .padding-vertical-xlarge {
        padding-bottom: 60px;
    }

    .timeline_item {
        -ms-grid-columns: 48px 1fr;
        grid-template-columns: 48px 1fr;
    }

    .timeline_date-text {
        font-size: 1.7rem;
    }

    .timeline_date-text.animated-txt {
        font-size: 1.7rem;
    }

    .timeline_text {
        font-size: 14px;
    }

    .sec-row-imgs {
        max-height: 33vw;
    }

    .image-8.normal-animated-txt {
        width: 50px;
        margin-right: 5px;
        margin-left: 5px;
    }

    .center-img.img-shadow {
        max-height: 33vw;
    }

    ._1st-row {
        max-height: 33vw;
    }

    ._1st-row.special {
        max-height: 33vw;
    }

    .impactful-sec-txt {
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .sec-5-heading-1 {
        font-size: 1.3rem;
        line-height: 30px;
    }

    .sec-5-heading-1.final-sec-h1 {
        line-height: 1.7rem;
    }

    .dash-line {
        right: -17.1094px;
        bottom: 11px;
        width: 200px;
        height: 5px;
    }

    .sec-5-heading-2 {
        margin-top: 0px;
        font-size: 1.3rem;
        line-height: 28px;
    }

    .paragraph-3 {
        font-size: 0.6rem;
        line-height: 0.8rem;
    }

    .cover-item-header {
        font-size: 1.5rem;
    }

    .portfolio-sec {
        overflow: hidden;
    }

    .text-wrapper {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }

    .item {
        padding: 10px 20px;
    }

    .image-10 {
        width: 70px;
    }

    .image-10._1st-img {
        width: 70px;
    }

    .image-10._2st-img {
        width: 70px;
    }

    .last-sec-img-wrapper {
        grid-column-gap: 134px;
        grid-row-gap: 106px;
    }

    .logo-breakdown-sec {
        padding-bottom: 0px;
    }

    .image-13._3rd-img {
        width: 70px;
    }

    .image-13._4th-img {
        width: 70px;
    }

    .image-14 {
        left: 38px;
        width: 200px;
    }

    .container-10 {
        height: 300px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-block-two {
        margin-top: 40px;
    }

    .footer-wrapper-two {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        grid-column-gap: 6px;
    }

    .container-11 {
        max-width: none;
    }

    .background-video-2 {
        max-height: 170px;
        max-width: 300px;
    }

    .footer-icons {
        display: none;
    }

    .hero__person {
        border-radius: 14px;
    }

    .p-tag {
        font-size: 0.7rem;
    }

    .p-tag.design-process-p {
        width: 90%;
    }

    .impactful-p-tag {
        flex-direction: column;
    }

    .project-content-container {
        width: 235px;
        height: 300px;
    }

    .heading {
        left: -1%;
        top: -8px;
        margin-top: 0px;
        margin-bottom: 0px;
        transform: translate(-5vw, -10vw);
        font-size: 15vw;
    }

    .image-container {
        width: 235px;
        height: 300px;
    }

    .project-content-details {
        padding-right: 20px;
    }

    .project-content-container-2 {
        width: 80vw;
        height: 50vh;
    }

    .image-container-2 {
        width: 80vw;
        height: 50vh;
    }

    .heading-5 {
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 3rem;
        line-height: 52px;
    }

    .animation-paragraph-container.small-space {
        margin-bottom: 40px;
    }

    .main-btn.outline {
        display: none;
    }

    .btn-txt {
        width: 100px;
        margin-right: 8px;
        margin-left: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
        font-size: 0.7rem;
    }

    .main-image-container {
        width: 75%;
    }

    .services-mobile {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .service {
        width: 250px;
        height: 100px;
        margin-bottom: 20px;
    }

    .service.service-1 {
        background-image: linear-gradient(180deg, null, null), url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c71a9e7cf4b61bc11a1aab_Frame%20242.jpg");
        background-size: auto, 300px;
    }

    .service.service-1:hover {
        background-image: linear-gradient(180deg, null, null), url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c71a9e7cf4b61bc11a1aab_Frame%20242.jpg");
        background-size: auto, 340px;
    }

    .service.service-2 {
        background-image: linear-gradient(180deg, null, null), url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c71a9fed338ecc2bebf9ef_Frame%20241.jpg");
        background-size: auto, 300px;
    }

    .service.service-2:hover {
        background-image: linear-gradient(180deg, null, null), url("https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c71a9fed338ecc2bebf9ef_Frame%20241.jpg");
        background-size: auto, 340px;
    }

    .services-cont-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }

    .services-sec-txt {
        margin-top: 0px;
        font-size: 1.3rem;
    }

    .parallex-mask {
        width: 75%;
    }

    .parallex-slider-button {
        left: 1%;
    }

    .parallex-slider-button.forward-btn {
        left: 26%;
    }

    .parallex-slide-nav {
        display: none;
        width: 200px;
    }

    .container-13 {
        padding-right: 20px;
        padding-left: 20px;
    }

    .main-video-page-img {
        min-width: 140%;
    }

    .image-28 {
        width: 90%;
    }

    .main-portfolio-container.space {
        padding-bottom: 100px;
    }

    .portfolio-sec-h1 {
        margin-bottom: 0px;
        font-size: 1.3rem;
    }

    .ps-info-container {
        padding-right: 20px;
        padding-left: 25px;
    }

    .ps-info-container.space {
        padding-top: 0px;
    }

    .ps-info-wrapper {
        padding-right: 25px;
    }

    .ps-info-txt {
        font-size: 0.7rem;
    }

    .ps-cc-container {
        padding-bottom: 0px;
    }

    .ps-cc-containers {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .ps-btn-wrapper {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
    }

    .logo-variations {
        width: 70vw;
    }

    .mockups {
        width: 90%;
        padding-bottom: 100px;
    }

    .mockups.multishot {
        padding-right: 20px;
    }

    .mutli-img-wrapper.special {
        margin-top: 0px;
    }

    .ps-logo-animation {
        width: 70%;
        border-radius: 5px;
    }

    .ps-logo-breakdown {
        width: 70vw;
    }

    .image-30 {
        margin-top: 0px;
    }

    .ps-h1 {
        font-size: 1.3rem;
        line-height: 1.7rem;
    }
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d4f-a30e7d5f {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-align: center;
    align-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d50-a30e7d5f {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d54-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d57-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d5a-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d5e-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d61-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d64-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d67-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d6a-a30e7d5f {
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-align: end;
    justify-self: end;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d6e-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d71-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d74-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d77-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d7b-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d7e-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d81-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-b5ba099d-1ff2-4fe1-8add-4f1ce7b96d84-a30e7d5f {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

#w-node-_2553bc16-1f59-3f3f-1b6b-e41c2b4a8bf4-a30e7d5f {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
}

#w-node-_8f950395-38b9-3f74-fd33-4f008c1a8aae-8c1a8aab {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd59cf-ecfd59ca {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd59d0-ecfd59ca {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd59d2-ecfd59ca {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd59d4-ecfd59ca {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd59d9-ecfd59ca {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd59e1-ecfd59ca {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd59eb-ecfd59ca {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd59ed-ecfd59ca {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd5a07-ecfd59ca {
    -ms-grid-column: span 3;
    grid-column-start: span 3;
    -ms-grid-column-span: 3;
    grid-column-end: span 3;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    max-width: 90vw;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd5a08-ecfd59ca {
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd5a09-ecfd59ca {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd5a0a-ecfd59ca {
    -ms-grid-row-align: center;
    align-self: center;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd5a0d-ecfd59ca {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-column-span: 2;
    grid-column-end: 4;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
}

#w-node-_18d56390-5c24-db92-27a3-d2f8ecfd5a10-ecfd59ca {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
}

@media screen and (max-width: 991px) {
    #w-node-_18d56390-5c24-db92-27a3-d2f8ecfd5a0d-ecfd59ca {
        -ms-grid-column-span: 1;
        grid-column-end: span 1;
        -ms-grid-column: span 1;
        grid-column-start: span 1;
        -ms-grid-row: span 1;
        grid-row-start: span 1;
        -ms-grid-row-span: 1;
        grid-row-end: span 1;
    }
}

@media screen and (max-width: 767px) {
    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d7b9-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 3;
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-row-span: 1;
        grid-row-end: 2;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d7bc-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 2;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row-span: 2;
        grid-row-end: 3;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d7be-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: span 1;
        -ms-grid-column: span 1;
        grid-column-start: span 1;
        -ms-grid-row-span: 1;
        grid-row-end: span 1;
        -ms-grid-row: span 1;
        grid-row-start: span 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d7c5-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 3;
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-row-span: 1;
        grid-row-end: 2;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d7c8-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 2;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row-span: 2;
        grid-row-end: 3;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d7d8-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 3;
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-row-span: 1;
        grid-row-end: 2;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d7db-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 2;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row-span: 2;
        grid-row-end: 3;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d7ea-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 3;
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-row-span: 1;
        grid-row-end: 2;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d7ed-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 2;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row-span: 2;
        grid-row-end: 3;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d7fa-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 3;
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-row-span: 1;
        grid-row-end: 2;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d7fd-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 2;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row-span: 2;
        grid-row-end: 3;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d80a-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 3;
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-row-span: 1;
        grid-row-end: 2;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d80d-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 2;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row-span: 2;
        grid-row-end: 3;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d81b-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 3;
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-row-span: 1;
        grid-row-end: 2;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d81e-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 2;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row-span: 2;
        grid-row-end: 3;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d82e-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 3;
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-row-span: 1;
        grid-row-end: 2;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d831-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 2;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row-span: 2;
        grid-row-end: 3;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d842-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 3;
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-row-span: 1;
        grid-row-end: 2;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    #w-node-_4043fcc7-6568-b11f-fac8-68aaf1e9d845-a30e7d5f {
        -ms-grid-column-span: 1;
        grid-column-end: 2;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row-span: 2;
        grid-row-end: 3;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }
}

@media screen and (max-width: 479px) {
    #w-node-_8f950395-38b9-3f74-fd33-4f008c1a8ac2-8c1a8aab {
        -ms-grid-row: span 1;
        grid-row-start: span 1;
        -ms-grid-row-span: 1;
        grid-row-end: span 1;
        -ms-grid-column: span 2;
        grid-column-start: span 2;
        -ms-grid-column-span: 2;
        grid-column-end: span 2;
    }

    #w-node-_18d56390-5c24-db92-27a3-d2f8ecfd59ce-ecfd59ca {
        -ms-grid-column-align: center;
        justify-self: center;
        -ms-grid-row-align: center;
        align-self: center;
    }
}

@font-face {
    font-family: 'Fa v4compatibility';
    src: url('https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c58e1c3d364302534bfa36_fa-v4compatibility.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fa brands 400';
    src: url('https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c58e1bf0dae7626ce109ab_fa-brands-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fa 400';
    src: url('https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c58e1b665c5cacd085c085_fa-regular-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fa solid 900';
    src: url('https://uploads-ssl.webflow.com/63c2b7056a006227920e7d5e/63c58e1b4f4e80287e548234_fa-solid-900.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}